progmodes/cc-fonts.el (c-font-lock-declarators): Remove check for
[emacs.git] / lisp / ChangeLog
blobf62d0ee3b6632c7051694081dac1c999dc0ff666
1 2014-08-09  Alan Mackenzie  <acm@muc.de>
3         * progmodes/cc-fonts.el (c-font-lock-declarators): Remove check
4         for top-level that can cause unacceptable slow-down in scrolling.
5         See email Subject: Huge {...} blocks in C/C++ again, from Dmitry
6         Antipov from 2013-10-14 in emacs-devel.
8 2014-08-08  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10         * ibuffer.el (ibuffer-mode-map): Use toggle button for
11         `ibuffer-auto-mode' menu entry.
12         (ibuffer-mode-hook): Add `ibuffer-auto-mode' customization option.
14 2014-08-08  Matthias Meulien  <orontee@gmail.com>
16         * progmodes/prog-mode.el (prog-mode-hook): Make customizable.
17         (Bug#16394)
19 2014-08-07  Martin Rudalics  <rudalics@gmx.at>
21         * window.el (window--min-size-1): Explicitly set WINDOW arg in
22         calls of window-min-pixel-height and window-min-pixel-width.
24 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
26         * progmodes/ada-mode.el:
27         * net/tramp.el (tramp-handle-file-symlink-p):
28         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
29         about VMS, which we no longer support.
30         * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
31         and fix a FIXME, using convert-standard-filename in place of
32         removed ada-convert-file-name.
34 2014-08-07  Eli Zaretskii  <eliz@gnu.org>
36         * files.el (auto-mode-alist): Remove support for VMS from a
37         pattern.
39 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
41         Refer to MS-DOS using the same name everywhere.
43         * arc-mode.el: Fix a couple of ``MS-DOG''s missed in the previous
44         commit.
45         * file-mode.el: ditto.
47 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
49         Refer to MS-DOS using the same name everywhere.
51         * arc-mode.el: ``MS-DOG'', ``MSDOG'' and ``msdog'' become
52         ``MS-DOS''.
53         * frame.el: ditto.
55 2014-08-07  Michael Albinus  <michael.albinus@gmx.de>
57         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
58         Use cached "remote-copy-args" value, if available.  (Bug#18199)
60 2014-08-07  Leo Liu  <sdl.web@gmail.com>
62         * help.el (temp-buffer-setup-hook,temp-buffer-show-hook): Revert
63         change on 2014-03-22.
65 2014-08-06  Ulf Jasper  <ulf.jasper@web.de>
67         * calendar/icalendar.el (icalendar--diarytime-to-isotime):
68         (icalendar--convert-ordinary-to-ical): Allow for missing minutes
69         (Bug#13750).
72 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
74         * image-mode.el (image-toggle-display-image): Always rescale images
75         to not be bigger than the current window.
77 2014-08-05  Eric Brown  <brown@fastmail.fm>  (tiny change)
79         * net/eww.el (eww-bookmarks-directory): New variable.
80         (eww-write-bookmarks): Use it.
81         (eww-read-bookmarks): Ditto.
83 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
85         * net/shr.el (shr-copy-url): Also copy the image URL.
87 2014-08-05  Michael Albinus  <michael.albinus@gmx.de>
89         * net/tramp-cache.el (tramp-flush-file-function): Suppress function
90         also for Tramp working buffers.
92 2014-08-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
94         * progmodes/python.el: Fix completions inside (i)pdb.
95         (python-shell-completion-pdb-string-code): Make obsolete.
96         (python-shell-completion-get-completions): Use
97         python-shell-completion-string-code resending setup code
98         continuously for (i)pdb.
100 2014-08-04  Paul Eggert  <eggert@cs.ucla.edu>
102         * rect.el (rectangle--default-line-number-format): Rename
103         from misspelled rectange--default-line-number-format (Bug#18045).
104         All uses changed.
106 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
108         Don't mishandle year-9999 dates (Bug#18176).
109         * calendar/parse-time.el (parse-time-rules):
110         Allow years up to most-positive-fixnum.
111         * calendar/time-date.el (date-to-time):
112         Pass "Specified time is not representable" errors through.
114 2014-08-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
116         * progmodes/python.el: Completion code cleanups.
117         (python-shell-completion-get-completions): Detect and send import
118         statements directly to completion function.
119         (python-shell-completion-at-point): Simplify prompt calculation
120         and import vs input completion logic.
122 2014-08-02  Alan Mackenzie  <acm@muc.de>
124         Fix confusion in C++ file caused by comma in "= {1,2},".  Bug
125         #17756.
126         * progmodes/cc-engine.el (c-beginning-of-statement-1): In checking
127         for a statement boundary marked by "}", check there's no "="
128         before the "{".
129         (c-guess-basic-syntax CASE 9B): Call c-beginning-of-statement with
130         non-nil `comma-delim' argument.
131         * progmodes/cc-fonts.el (c-font-lock-declarators): Parse an
132         initializer expression more accurately.
134         Correct loop termination condition in c-syntactic-skip-backward.
135         * progmodes/cc-engine.el (c-syntactic-skip-backward): Correct for
136         the situation where, after moving back out of a literal,
137         skip-chars-backward doesn't move further, yet checks have still to
138         be done.
140 2014-08-01  Eli Zaretskii  <eliz@gnu.org>
142         * tutorial.el (tutorial--display-changes): Accept punctuation
143         characters before the key binding.  (Bug#18146)
145 2014-07-31  Fabián Ezequiel Gallina  <fgallina@gnu.org>
147         * progmodes/python.el: Shell output capture enhancements.
148         (python-shell-accept-process-output): New function.
149         (inferior-python-mode)
150         (python-shell-send-setup-code): Use it.
152 2014-07-30  Christophe Deleuze  <christophe.deleuze@free.fr>  (tiny change)
154         * calendar/icalendar.el (icalendar--decode-isodatetime): Use
155         actual current-time-zone when converting to local time. (Bug#15408)
157 2014-07-29  Martin Rudalics  <rudalics@gmx.at>
159         * window.el (window--state-put-2): Handle horizontal scroll
160         bars, if present.
162 2014-07-29  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
164         * menu-bar.el (menu-bar-update-buffers): Update item list format
165         in `buffers-menu' to confirm with changes to `get_keyelt'
166         (r117463).  (Bug#18016)
168 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
170         * progmodes/python.el (inferior-python-mode): Make input prompts
171         read-only.
173 2014-07-28  Emilio C. Lopes  <eclig@gmx.net>
175         * net/tramp-sh.el (tramp-get-remote-python): Also search for
176         executables named "python2" or "python3".
177         (tramp-get-remote-uid-with-python): Use parentheses around
178         arguments to `print' to make it compatible with Python 3.
179         (tramp-get-remote-gid-with-python): Ditto.  (Bug#18118)
181 2014-07-28  Eli Zaretskii  <eliz@gnu.org>
183         * window.el (window--pixel-to-total): Use FRAME's root window, not
184         that of the selected frame.  (Bug#18112, Bug#16674)
186 2014-07-28  Andreas Schwab  <schwab@linux-m68k.org>
188         * textmodes/tex-mode.el (tex-font-lock-verb): Doc fix.
189         (Bug#18117)
191 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
193         * progmodes/python.el (inferior-python-mode): Doc fix.
195 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
197         * calendar/todo-mode.el (todo-edit-item--next-key): If next key is
198         not a character, ignore it instead of raising an error.
200         * calendar/todo-mode.el: Fix handling of marked items and make
201         minor code improvements.
202         (todo-edit-item): If there are marked items, ensure user can only
203         invoke editing commands that work with marked items.
204         (todo-edit-item--text): When there are marked items, make it a
205         noop if invoked with point not on an item; otherwise, ensure it
206         applies only to item at point.
207         (todo-item-undone): If there are marked not-done items, return
208         point to its original position before signaling user error.
209         (todo--user-error-if-marked-done-item): New function.
210         (todo-edit-item--header, todo-edit-item--diary-inclusion)
211         (todo-item-done): Use it.
213 2014-07-28  Glenn Morris  <rgm@gnu.org>
215         * files.el (toggle-read-only): Re-add basic doc-string.
216         * vc/vc-hooks.el (vc-toggle-read-only): Tweak obsolescence mesage.
218         * progmodes/prolog.el (prolog-mode-keybindings-edit):
219         Replace missing `switch-to-prolog' with `run-prolog'.
220         (switch-to-prolog): Define as (obsolete) alias, as in 23.4.
222 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
224         * calendar/todo-mode.el (todo-set-top-priorities): Fix overwriting
225         of file-wide setting when changing category-wide setting.
227 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
229         * doc-view.el (doc-view-open-text): Don't require that the
230         document is saved in a file (e.g., email attachment).
232 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
234         Parse completion input in a iPython friendly way.  (Bug#18084)
235         * progmodes/python.el
236         (python-shell-completion-at-point): Rename from
237         python-shell-completion-complete-at-point.
238         (inferior-python-mode): Use it.
239         (python-completion-at-point): Rename from
240         python-completion-complete-at-point.  Parse input up to first
241         backward occurrence of whitespace, open-paren, close-paren or
242         string delimiter.
243         (python-mode): Use it.
245 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
247         Prevent Python process shell buffer to pop twice.
248         * progmodes/python.el (python-shell-switch-to-shell): Do not call
249         pop-to-buffer.
251 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
253         * progmodes/python.el
254         (python-shell-with-shell-buffer): New macro.
255         (python-shell-font-lock-get-or-create-buffer)
256         (python-shell-font-lock-kill-buffer)
257         (python-shell-font-lock-with-font-lock-buffer)
258         (python-shell-font-lock-cleanup-buffer)
259         (python-shell-font-lock-toggle): Use it.
260         (python-shell-font-lock-turn-on)
261         (python-shell-font-lock-turn-off): Use it.  Make command.
263 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
265         Grab all Python process output before inferior-python-mode hooks.
266         * progmodes/python.el (inferior-python-mode): Call
267         accept-process-output and sit-for to ensure all output for process
268         has been received before running hooks.
269         (python-shell-internal-get-or-create-process): Cleanup
270         accept-process-output and sit-for calls.
272 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
274         More robust shell startup and code setup.
275         * progmodes/python.el (python-shell-make-comint): Remove
276         accept-process-output call.
277         (python-shell-get-buffer): Return current buffer if major-mode is
278         inferior-python-mode.
279         (python-shell-get-or-create-process): Use it.
280         (python-shell-send-setup-code): Send all setup code in one string,
281         output success message and accept-process-output.
283 2014-07-27  Eli Zaretskii  <eliz@gnu.org>
285         * scroll-bar.el (scroll-bar-toolkit-horizontal-scroll): Add
286         rudimentary support for bidirectional text.
288 2014-07-27  Martin Rudalics  <rudalics@gmx.at>
290         * frame.el (frame-notice-user-settings): Rewrite using
291         frame-initial-frame-tool-bar-height.
292         * menu-bar.el (menu-bar-horizontal-scroll-bar)
293         (menu-bar-no-horizontal-scroll-bar): New functions.
294         (menu-bar-showhide-scroll-bar-menu): Add bindings for horizontal
295         scroll bars.
296         * scroll-bar.el (scroll-bar-lines)
297         (set-horizontal-scroll-bar-mode)
298         (get-horizontal-scroll-bar-mode, horizontal-scroll-bar-mode)
299         (scroll-bar-horizontal-drag-1, scroll-bar-horizontal-drag)
300         (scroll-bar-toolkit-horizontal-scroll): New functions.
301         (horizontal-scroll-bar-mode)
302         (previous-horizontal-scroll-bar-mode)
303         (horizontal-scroll-bar-mode-explicit): New variables.
304         (horizontal-scroll-bar-mode): New option.
305         (toggle-horizontal-scroll-bar): Do something.
306         (top-level): Bind horizontal-scroll-bar mouse-1.
307         * startup.el (tool-bar-originally-present): Remove variable.
308         (command-line): Don't set tool-bar-originally-present.
309         * window.el (window-min-height): Update doc-string.
310         (window--dump-frame): Dump horizontal scroll bar values.
311         (window--min-size-1): Handle minibuffer window separately.
312         Count in margins and horizontal scroll bar.  Return safe value
313         iff IGNORE equals 'safe.
314         (frame-windows-min-size): New function (used by frame resizing
315         routines).
316         (fit-frame-to-buffer, fit-window-to-buffer): Count in horizontal
317         scroll bars.
318         (window--sanitize-window-sizes): New function.
319         (window-split-min-size): Remove.
320         (split-window): Count divider-width.  Don't use
321         `window-split-min-size' any more.  Reword error messages.
322         Sanitize windows sizes after splitting.
324 2014-07-27  Thien-Thi Nguyen  <ttn@gnu.org>
326         Use `defvar-local' more.
327         * progmodes/hideshow.el
328         (hs-c-start-regexp, hs-block-start-regexp)
329         (hs-block-start-mdata-select, hs-block-end-regexp)
330         (hs-forward-sexp-func, hs-adjust-block-beginning): ...here;
331         remove corresponding `make-variable-buffer-local' top-level calls.
333 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
335         Cleanup error signals.  (Bug#18067)
336         * progmodes/python.el
337         (python-indent-shift-left): Use user-error instead.
338         (python-shell-prompt-detect): Use lwarn with python group.
339         (python-completion-complete-at-point)
340         (python-eldoc--get-doc-at-point): Don't signal error.
342 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
344         Support for packages in Python shell.  (Bug#13570)
345         * progmodes/python.el (python-shell--package-depth): New var.
346         (python-shell-package-enable): New command.
347         (python-util-list-directories, python-util-list-files)
348         (python-util-list-packages): New functions.
350 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
352         Faster comint output.  (Bug#16875)
353         * progmodes/python.el:
354         (python-comint-output-filter-function): Make obsolete.
355         (python-comint-postoutput-scroll-to-bottom): New function.
356         (inferior-python-mode): Set comint-output-filter-functions to a
357         minimum.
359 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
361         * progmodes/python.el (python-shell-font-lock-post-command-hook):
362         Safeguard current point and undo history.
364 2014-07-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
366         Robust shell syntax highlighting.  (Bug#18084, Bug#16875)
367         * progmodes/python.el:
368         (python-shell-prompt-input-regexps): Add iPython block prompt.
369         (python-shell-output-syntax-table): Delete var.
370         (python-shell-font-lock-with-font-lock-buffer): New macro.
371         (python-shell-font-lock-get-or-create-buffer)
372         (python-shell-font-lock-kill-buffer)
373         (python-shell-font-lock-cleanup-buffer)
374         (python-shell-font-lock-post-command-hook)
375         (python-shell-font-lock-turn-off): New functions.
376         (python-shell-font-lock-turn-on): New function.
377         (inferior-python-mode): Use it.
378         (python-shell-font-lock-toggle): New command.
379         (python-shell-font-lock-enable): Rename from
380         python-shell-enable-font-lock.
381         (run-python-internal): Use it.
382         (python-shell-font-lock-comint-output-filter-function): New function.
383         (python-shell-comint-end-of-output-p): New function.
384         (python-shell-output-filter): Use it.
385         (python-util-comint-last-prompt): New function.
386         (python-util-text-properties-replace-name): New function.
388 2014-07-25  Glenn Morris  <rgm@gnu.org>
390         * vc/ediff-init.el (ediff-toggle-read-only-function):
391         * vc/ediff-util.el (ediff-toggle-read-only):
392         Replace obsolete toggle-read-only with read-only-mode.
394 2014-07-24  Michael Albinus  <michael.albinus@gmx.de>
396         * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
397         with `save-match-data'.  (Bug#18095)
399 2014-07-21  Vincent Belaïche  <vincentb1@users.sourceforge.net>
401         * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
402         order to ensure that row and col are lexically bound inside the
403         evaluated sexp.
405 2014-07-21  Glenn Morris  <rgm@gnu.org>
407         * progmodes/hideif.el (hide-ifdef-mode-submap):
408         Also substitute read-only-mode.
409         * bindings.el (mode-line-toggle-read-only):
410         * bs.el (bs-toggle-readonly):
411         * buff-menu.el (Buffer-menu-toggle-read-only):
412         * dired.el (dired-toggle-read-only):
413         * files.el (view-read-only, find-file-read-only)
414         (find-file-read-only-other-window)
415         (find-file-read-only-other-frame):
416         * progmodes/hideif.el (hide-ifdef-toggle-outside-read-only):
417         Doc fixes re toggle-read-only.
419 2014-07-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
421         * progmodes/python.el: Add comment about pipe buffering and
422         solutions for missing/delayed output in inferior Python shells.
423         (Bug#17304)
425         * progmodes/python.el (python-mode): Don't set
426         mode-require-final-newline.  (Bug#17990)
428         Make python.el work with IPython automatically.  (Bug#15510)
429         * progmodes/python.el:
430         (python-shell-completion-setup-code): New value supporting iPython.
431         (python-shell-completion-string-code): New value supporting iPython.
432         (python-shell-completion-get-completions): Use them.
433         (python-shell-completion-module-string-code): Make obsolete.
434         (python-shell-prompt-input-regexps)
435         (python-shell-prompt-output-regexps): Add safeguard for ipdb.
436         (python-shell-output-filter): Fix comment typo.
438         Fix Python shell prompts detection for remote hosts.
439         * progmodes/python.el (python-shell-prompt-detect): Replace
440         call-process with process-file and make it more robust.
442         Autodetect Python shell prompts.  (Bug#17370)
443         * progmodes/python.el:
444         (python-shell-interpreter-interactive-arg)
445         (python-shell-prompt-detect-enabled)
446         (python-shell-prompt-detect-failure-warning)
447         (python-shell-prompt-input-regexps)
448         (python-shell-prompt-output-regexps): New vars.
449         (python-shell-prompt-calculated-input-regexp)
450         (python-shell-prompt-calculated-output-regexp): New vars.
451         (python-shell-get-process-name)
452         (python-shell-internal-get-process-name)
453         (python-shell-output-filter)
454         (python-shell-completion-get-completions): Use them.
455         (python-shell-prompt-detect)
456         (python-shell-prompt-validate-regexps): New functions.
457         (python-shell-prompt-set-calculated-regexps): New function.
458         (inferior-python-mode): Use it.  Also honor overriden
459         python-shell-interpreter and python-shell-interpreter-args.
460         (python-shell-make-comint): Honor overriden
461         python-shell-interpreter and python-shell-interpreter-args.
462         (python-shell-get-or-create-process): Make it testable by allowing
463         to call run-python non-interactively.
464         (python-util-valid-regexp-p): New function.
465         (python-shell-prompt-regexp, python-shell-prompt-block-regexp)
466         (python-shell-prompt-output-regexp)
467         (python-shell-prompt-pdb-regexp): Use it as defcustom :safe.
469 2014-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
471         * emacs-lisp/smie.el (smie-config--guess-1): Split from
472         smie-config--guess.
473         (smie-config--guess): Use it.
475         * emacs-lisp/edebug.el: Use nadvice.
476         (edebug-original-read): Remove.
477         (edebug--read): Rename from edebug-read and add `orig' arg.
478         (edebug-uninstall-read-eval-functions)
479         (edebug-install-read-eval-functions): Use nadvice.
480         (edebug-read-sexp, edebug-read-storing-offsets, edebug-read-symbol)
481         (edebug-read-and-maybe-wrap-form1, edebug-instrument-callee)
482         (edebug-read-string, edebug-read-function): Use just `read'.
483         (edebug-original-debug-on-entry): Remove.
484         (edebug--debug-on-entry): Rename from edebug-debug-on-entry and add
485         `orig' arg.
486         (debug-on-entry): Override with nadvice.
488         * mouse.el (tear-off-window): Rename from mouse-tear-off-window since
489         it also makes sense to bind it to a non-mouse event.
491         * vc/vc-bzr.el (vc-bzr-shelve): Make it operate on fileset.
493 2014-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
495         * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
496         (bug#18015).
498         * rect.el (rectangle--string-preview): Don't assume there
499         a non-nil default (bug#17984).
501 2014-07-16  Glenn Morris  <rgm@gnu.org>
503         * desktop.el (after-init-hook): Disable startup frame restoration
504         in non-graphical situations.  (Bug#17693)
506         * vc/vc-dispatcher.el (vc-log-edit): Do set up the log buffer
507         if it was "empty", or used for a different set of files.  (Bug#17884)
509 2014-07-16  Eli Zaretskii  <eliz@gnu.org>
511         * bindings.el (mode-line-remote): If default-directory is not a
512         string, don't call file-remote-p on it; instead state in the
513         help-echo that it is nil.  (Bug#17986)
515 2014-07-14  Daniel Colascione  <dancol@dancol.org>
517         * progmodes/cc-langs.el: Change comments from `cl-macroexpand-all'
518         to `macroexpand-all'
520         * progmodes/cc-defs.el (c-lang-defconst-eval-immediately):
521         Use `macroexpand-all' instead of `cl-macroexpand-all'.
523 2014-07-12  Paul Eggert  <eggert@cs.ucla.edu>
525         Fix bug: C-x v v discarded existing log message (Bug#17884).
526         * vc/vc-dispatcher.el (vc-log-edit):
527         Don't clobber an already-existing log message.
529 2014-07-12  Glenn Morris  <rgm@gnu.org>
531         * vc/log-edit.el (log-edit-changelog-entries):
532         Check for a visited-but-never-saved ChangeLog.
534 2014-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
536         * vc/log-edit.el (log-edit-changelog-entries): Don't both visiting
537         a non-existing file (bug#17970).
539         * faces.el (face-name): Undo last change.
540         (x-resolve-font-name): Don't call face-name (bug#17956).
542 2014-07-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
544         Fix dedenters and electric colon handling. (Bug#15163)
545         * progmodes/python.el
546         (python-rx-constituents): Add dedenter and block-ender.
547         (python-indent-dedenters, python-indent-block-enders): Delete.
548         (python-indent-context): Return new case for dedenter-statement.
549         (python-indent-calculate-indentation): Handle new case.
550         (python-indent-calculate-levels): Fix levels calculation for
551         dedenter statements.
552         (python-indent-post-self-insert-function): Fix colon handling.
553         (python-info-dedenter-opening-block-message): New function.
554         (python-indent-line): Use it.
555         (python-info-closing-block)
556         (python-info-closing-block-message): Remove.
557         (python-info-dedenter-opening-block-position)
558         (python-info-dedenter-opening-block-positions)
559         (python-info-dedenter-statement-p): New functions.
561 2014-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
563         * files.el (out-of-memory-warning-percentage): New defcustom.
564         (warn-maybe-out-of-memory): Use it.
566 2014-07-11  Michael Albinus  <michael.albinus@gmx.de>
568         * subr.el (read-passwd): Use `read-hide-char' if non-nil.  Bind it
569         when calling `read-string'.  (Bug#17839)
571 2014-07-10  Eli Zaretskii  <eliz@gnu.org>
573         * files.el (warn-maybe-out-of-memory): Fix the wording of the
574         warning.
576 2014-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
578         * files.el (warn-maybe-out-of-memory): New function.
579         (find-file-noselect): Use it.
581 2014-07-09  Sam Steingold  <sds@gnu.org>
583         * progmodes/cperl-mode.el (cperl-block-p): Treat the perl keyword
584         `constant' like `bless', `return' &c
586 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
588         * rect.el (apply-on-rectangle): Check forward-line really moved to the
589         next line.
591 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
593         * progmodes/sh-script.el (sh-smie-sh-rules): Don't align with a && in
594         the middle of a line (bug#17896).
596 2014-07-09  Juri Linkov  <juri@jurta.org>
598         * startup.el (command-line): Append displaying the warning about
599         the errors in the init file to the end of `after-init-hook'.
600         (Bug#17927)
602         * faces.el (face-name): Return input arg `face' as-is
603         when it's not a symbol.
604         (x-resolve-font-name): Don't check if the face is a symbol.
605         (Bug#17956)
607         * facemenu.el (list-colors-print): In help-echo format use %.2f
608         instead of %d because now HSV values are floating-point components
609         between 0.0 and 1.0.
611 2014-07-09  Glenn Morris  <rgm@gnu.org>
613         * emulation/cua-rect.el (cua--activate-rectangle):
614         Avoid setting cua--rectangle to nil.  (Bug#17877)
616 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
618         * calendar/todo-mode.el: Fix wrong-type-argument error when
619         marking multiple consecutive items.
620         (todo-toggle-mark-item): Don't try to mark the empty lines at the
621         end of the todo and done items sections.  Note in doc string that
622         items marked by passing a numeric prefix argument can include the
623         last todo and first done items.
624         (todo-mark-category): Don't try to mark the empty line between the
625         todo and done items sections.
627 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
629         * emacs-lisp/edebug.el (edebug-eval-defun): Print result using
630         proper Lisp quoting (bug#17934).
632         * progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
633         require-final-newline since prog-mode already took care of it (bug#17947).
635 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
637         * calendar/todo-mode.el: Fix two bugs.  Shorten Commentary and
638         refer to the Todo mode Info manual.  Update the comment on
639         requiring cl-lib.
640         (todo-find-filtered-items-file): Add todo-prefix overlays.
641         (todo-filter-items): Reorder a let-bound variable to avoid a
642         wrong-type-argument error on canceling the file choice dialog.
644 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
646         * progmodes/octave.el (inferior-octave-mode):
647         Set comint-input-ring-size to a number (bug#17912).
649 2014-07-09  Juri Linkov  <juri@jurta.org>
651         * desktop.el (desktop-minor-mode-table): Add `defining-kbd-macro'
652         and `isearch-mode' associated with nil.  (Bug#17849)
654 2014-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
656         * linum.el (linum--face-height): New function (bug#17813).
657         (linum-update-window): Use it to adjust margin to linum's width.
659         * leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
660         * eshell/em-smart.el (eshell-smart-scroll-window): Use
661         with-selected-window.
663         * xt-mouse.el (xterm-mouse-translate-1): Intern drag event (bug#17894).
664         Remove also pointless window&mark manipulation.
666         * progmodes/perl-mode.el: Use syntax-ppss; fix one indentation case.
667         (perl-indent-line): Use syntax-ppss to detect we're in a doc-section.
668         (perl-continuation-line-p): Don't skip over anything else than labels.
669         Return the previous char.
670         (perl-calculate-indent): Use syntax-ppss instead of parse-start
671         and update callers accordingly.  For continuation lines, check the
672         the case of array hashes.
673         (perl-backward-to-noncomment): Make it non-interactive.
674         (perl-backward-to-start-of-continued-exp): Rewrite.
676 2014-07-08  Sam Steingold  <sds@gnu.org>
678         * progmodes/inf-lisp.el (lisp-eval-paragraph, lisp-eval-form-and-next):
679         New user commands.
681 2014-07-08  Juri Linkov  <juri@jurta.org>
683         * vc/vc-annotate.el (vc-annotate-background-mode): New defcustom.
684         (vc-annotate-color-map): Use less saturated colors (20%) for
685         background-mode.
686         (vc-annotate-very-old-color): Add default value for background-mode.
687         (vc-annotate-background): Set default value to nil since now text on
688         the default backgrounds should be legible in light and dark modes.
689         (vc-annotate-lines): Use `vc-annotate-background-mode'.  Doc fix.
690         (Bug#17808)
692 2014-07-08  Juri Linkov  <juri@jurta.org>
694         * simple.el (transpose-chars): Don't move point into read-only area.
695         (Bug#17829)
697 2014-07-08  Juri Linkov  <juri@jurta.org>
699         * window.el (with-displayed-buffer-window): New macro.
700         (with-temp-buffer-window, with-current-buffer-window):
701         Use `macroexp-let2' to evaluate and bind variables
702         in the same order as macro arguments.
703         (display-buffer--action-function-custom-type):
704         Add `display-buffer-below-selected' and `display-buffer-at-bottom'.
706         * minibuffer.el (minibuffer-completion-help): Replace
707         `with-output-to-temp-buffer' with `with-displayed-buffer-window'
708         with actions that display *Completions* at-bottom when called
709         from the minibuffer, or below-selected in a normal buffer.
710         Associate `window-height' with `fit-window-to-buffer'.
711         Let-bind `pop-up-windows' to nil.
713         * dired.el (dired-mark-pop-up): Use `with-displayed-buffer-window'
714         instead of `with-current-buffer-window'.  (Bug#17809)
716 2014-07-07  Luke Lee  <luke.yx.lee@gmail.com>
718         * progmodes/hideif.el (hide-ifdef-env): Change to global.
719         (hide-ifdef-env-backup): New variable.
720         (hide-ifdef-expand-reinclusion-protection, hide-ifdef-header-regexp):
721         New customizable variables.
722         (hif-clear-all-ifdef-defined): New defun.
723         (hif-merge-ifdef-region, hide-ifdef-region-internal, hide-ifdef-region)
724         (hif-show-ifdef-region): Merge hidden regions to prevent continuous "...".
725         (hif-tokenize): Fix for MS-DOS/Win EOL style.
726         (hif-endif-to-ifdef, hif-make-range, hif-find-range, hif-possibly-hide):
727         Fix bug to hide the correct #elif region(s).
728         (hif-range-elif): New defun.
729         (hif-recurse-level): New var.
730         (hif-evaluate-region, hif-evaluate-macro): New defun.
731         (hide-ifdef-guts): Prevent reinclusion protected C/C++ headers from
732         fully hidden.
733         (hide-ifdef-define, hide-ifdefs, hide-ifdef-block, show-ifdef-block):
734         Better interaction.
736 2014-07-04  Michael Albinus  <michael.albinus@gmx.de>
738         * net/dbus.el (dbus-peer-handler): New defun.
739         (dbus-register-service): Register it.  (Bug#17858)
740         (dbus-managed-objects-handler): Fix docstring.
742 2014-07-04  Phil Sainty  <psainty@orcon.net.nz>  (tiny change)
744         * emacs-lisp/lisp.el (narrow-to-defun-include-comments): New var.
745         (narrow-to-defun): New arg include-comments, defaulting to it
746         (bug#16328).
748 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
750         * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with
751         different calling convention to rectangle--unhighlight-for-redisplay.
753 2014-07-03  Michael Albinus  <michael.albinus@gmx.de>
755         * net/tramp.el (tramp-call-process): Handle error strings.
757         * net/tramp-adb.el (tramp-adb-sh-fix-ls-output): Use `bolp'.
759         * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime)
760         (tramp-sh-handle-verify-visited-file-modtime): Use `point-at-eol'.
762         * net/trampver.el: Update release number.
764 2014-07-03  Juri Linkov  <juri@jurta.org>
766         * desktop.el (desktop-save): Rename arg `auto-save' to
767         `only-if-changed'.  Doc fix.  (Bug#17873)
769 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
771         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
772         Use insert-for-yank (bug#17271).
774 2014-07-03  Leo Liu  <sdl.web@gmail.com>
776         * emacs-lisp/pp.el (pp-eval-expression, pp-eval-last-sexp):
777         Support lexical-binding.
779 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
781         * vc/log-edit.el (log-edit-goto-eoh): New function.
782         (log-edit--match-first-line): Use it (bug#17861).
784 2014-07-03  Glenn Morris  <rgm@gnu.org>
786         * vc/log-edit.el (log-edit-hook): Add missing :version.
788 2014-07-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
790         * progmodes/python.el (python-indent-post-self-insert-function):
791         Enhancements to electric indentation behavior inside
792         parens. (Bug#17658)
794 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
796         * ps-def.el (ps-generate-postscript-with-faces1): Don't mess with
797         buffer-invisibility-spec (bug#17867).
799 2014-07-03  Andreas Schwab  <schwab@linux-m68k.org>
801         * vc/vc-git.el (vc-git-checkin): When operating on the whole tree
802         pass "-a".
804 2014-07-03  Glenn Morris  <rgm@gnu.org>
806         * cus-edit.el (help):
807         * finder.el (finder-known-keywords):
808         * help.el (help-for-help-internal):
809         * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
810         (ediff-redraw-registry-buffer):
811         * vc/ediff-ptch.el (ediff-patch-file-internal):
812         Doc fixes re "online" help.  (Bug#17803)
814         * progmodes/idlwave.el (idlwave): Update url-link for custom group.
815         (idlwave-mode): Doc URL update.
817 2014-07-01  Juri Linkov  <juri@jurta.org>
819         * man.el: Display man pages immediately and use process-filter
820         to format them asynchronously.
821         (Man-width): Doc fix.
822         (man): Doc fix.
823         (Man-start-calling): Use `with-selected-window' to get
824         `frame-width' and `window-width'.
825         (Man-getpage-in-background): Call `Man-notify-when-ready'
826         immediately after creating a new buffer.  Call `Man-mode' and set
827         `mode-line-process' in the created buffer.  Set process-filter to
828         `Man-bgproc-filter' in start-process branch.  In call-process branch
829         call either `Man-fontify-manpage' or `Man-cleanup-manpage'.
830         Use `Man-start-calling' inside `with-current-buffer'.
831         (Man-fontify-manpage): Don't print messages.  Fix boundary condition.
832         (Man-cleanup-manpage): Don't print messages.
833         (Man-bgproc-filter): New function.
834         (Man-bgproc-sentinel): Add `save-excursion' to keep point when
835         user moved it during asynchronous formatting.  Move calls of
836         `Man-fontify-manpage' and `Man-cleanup-manpage' to
837         `Man-bgproc-filter'.  Move the call of `Man-mode' to
838         `Man-getpage-in-background'.  Use `quit-restore-window'
839         instead of `kill-buffer'.  Use `message' instead of `error'
840         because errors are caught by process sentinel.
841         (Man-mode): Move calls of `Man-build-page-list',
842         `Man-strip-page-headers', `Man-unindent', `Man-goto-page' to
843         `Man-bgproc-sentinel'.  Doc fix.  (Bug#2588, bug#5054, bug#9084, bug#17831)
845         * man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
846         for the message about the man page cleaned up.
848 2014-07-01  Mario Lang  <mlang@delysid.org>
850         * net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
851         cosutomization option `gnutls-verify-error'.
853 2014-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
855         * simple.el (deactivate-mark, set-mark-command, handle-shift-selection):
856         Don't keep transient-mark-mode buffer-local when not needed (bug#6316).
858         * xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
859         (turn-off-xterm-mouse-tracking-on-terminal): Don't burp if the terminal
860         is suspended (bug#17857).
862 2014-07-01  Michael Albinus  <michael.albinus@gmx.de>
864         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
865         Prefer utf-8 coding.  (Bug#17859)
867 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
869         * emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
870         for `reverse'.
872 2014-06-30  Glenn Morris  <rgm@gnu.org>
874         * emacs-lisp/autoload.el (autoload-ensure-writable): New variable.
875         (autoload-ensure-default-file): Maybe make existing output writable.
876         * Makefile.in (AUTOGEN_VCS): Remove.
877         (autoloads): Use autoload-ensure-writable rather than AUTOGEN_VCS.
879 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
881         * emacs-lisp/subr-x.el (string-reverse): Use `reverse'.
883 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
885         New if-let, when-let, thread-first and thread-last macros.
887         * emacs-lisp/subr-x.el
888         (internal--listify, internal--check-binding)
889         (internal--build-binding-value-form, internal--build-binding)
890         (internal--build-bindings): New functions.
891         (internal--thread-argument, thread-first, thread-last)
892         (if-let, when-let): New macros.
894 2014-06-30  Grégoire Jadi  <daimrod@gmail.com>
896         * net/rcirc.el (rcirc-buffer-process): Restore previous
897         behaviour.  (Bug#17772)
899 2014-06-29  Alan Mackenzie  <acm@muc.de>
901         Don't call c-parse-state when c++-template-syntax-table is active.
902         * progmodes/cc-engine.el (c-guess-continued-construct CASE G)
903         (c-guess-basic-syntax CASE 5D.3): Rearrange so that
904         c-syntactic-skip-backwards isn't called with the pertinent syntax table.
906 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
908         * calendar/todo-mode.el (todo-set-top-priorities): Fix logic to
909         account for file-wide setting of todo-top-priorities-overrides.
910         Make code a bit cleaner.
912 2014-06-28  Glenn Morris  <rgm@gnu.org>
914         * net/eww.el (eww-mode) <eww-current-title>: Make local.  (Bug#17860)
916 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
918         * calendar/todo-mode.el (todo-prefix-overlays): If there is no
919         category-wide setting of todo-top-priorities-overrides, check for
920         a file-wide setting and fontify accordingly.
922 2014-06-28  Glenn Morris  <rgm@gnu.org>
924         * subr.el (read-passwd): Warn about batch mode.  (Bug#17839)
926 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
928         * progmodes/hideif.el: Use lexical-binding.  Fix up cl-lib usage.
930 2014-06-28  K. Handa  <handa@gnu.org>
932         Fix Bug#17739.
934         * composite.el: Setup composition-function-table for dotted circle.
935         (compose-gstring-for-dotted-circle): New function.
937         * international/characters.el: Add category "^" to all
938         non-spacing characters.
940 2014-06-28  Glenn Morris  <rgm@gnu.org>
942         * Makefile.in (doit): Remove force rule.
943         (custom-deps, finder-data, autoloads, update-subdirs)
944         (compile-one-process): PHONY targets do not need force rules.
946         * Makefile.in (compile-main, compile, compile-always):
947         No need to explicitly pass variables to ourself in recursive calls.
949 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
951         * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
953 2014-06-26  Glenn Morris  <rgm@gnu.org>
955         * Makefile.in (update-authors): Update for moved authors.el.
957 2014-06-26  Leo Liu  <sdl.web@gmail.com>
959         * skeleton.el (skeleton-end-hook): Default to nil and move the
960         work to skeleton-insert.  (Bug#17850)
962 2014-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
964         * calc/calc-alg.el (math-beforep):
965         * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
966         Simplify because string-lessp can accept symbols as args.
968 2014-06-26  Daiki Ueno  <ueno@gnu.org>
970         * emacs-lisp/package.el (package--check-signature):
971         If package-check-signature is allow-unsigned, don't signal error when
972         we can't verify signature because of missing public key
973         (bug#17625).
975 2014-06-26  Glenn Morris  <rgm@gnu.org>
977         * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
978         Remove outdated declaration.
980         * emacs-lisp/authors.el (authors-valid-file-names)
981         (authors-renamed-files-alist): Additions.
983 2014-06-26  Leo Liu  <sdl.web@gmail.com>
985         * textmodes/picture.el (picture-set-tab-stops):
986         * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
987         (ruler-mode-ruler): Fix to work with nil tab-stop-list.
989         * progmodes/asm-mode.el (asm-calculate-indentation):
990         Use indent-next-tab-stop.
992         * indent.el (indent-accumulate-tab-stops): New function.
994 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
996         * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
997         (package-desc-status): Obey it.
999 2014-06-26  Stephen Berman  <stephen.berman@gmx.net>
1001         * calendar/todo-mode.el: Fix two bugs.
1002         (todo-insert-item--basic): If user cancels item insertion to
1003         another category before setting priority, show original category
1004         whether it is in the same or a different file.
1005         (todo-set-item-priority): After selecting category, instead of
1006         moving point to top, which extends an active region, restore it.
1008 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1010         * help-fns.el (describe-function-1): Check file-name is a string before
1011         calling help-fns--autoloaded-p (bug#17564).
1013 2014-06-26  Juri Linkov  <juri@jurta.org>
1015         * desktop.el (desktop-auto-save-enable)
1016         (desktop-auto-save-disable): New functions.
1017         (desktop-save-mode, desktop-auto-save-timeout): Use them.
1018         (desktop-read): Disable the autosave before loading the desktop,
1019         and enable afterwards.  (Bug#17351)
1021 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1023         Fix some indentation problem with \; and pipes (bug#17842).
1024         * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
1025         (sh-smie--default-forward-token, sh-smie--default-backward-token):
1026         New functions.
1027         (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
1028         (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
1029         (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
1031 2014-06-26  Glenn Morris  <rgm@gnu.org>
1033         * emacs-lisp/find-func.el (find-function-C-source-directory):
1034         Use file-accessible-directory-p.
1036         * ps-samp.el: Make it slightly less awful.
1037         (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
1038         (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
1039         Only set local values.
1040         (ps-article-subject, ps-article-author): Use standard functions
1041         like mail-fetch-field.
1042         (ps-info-file, ps-info-node): Use match-string.
1043         (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
1044         (ps-samp-ps-setup): ... new function.
1046         * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
1047         Optimize away code unneeded on any modern Emacs.
1049         * emacs-lisp/authors.el: Move to ../admin.
1051         * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
1053 2014-06-26  Luke Lee  <luke.yx.lee@gmail.com>
1055         * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
1056         (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
1057         performance enhancements.
1058         (hif-parse-if-exp): Rename to `hif-parse-exp'.  Enhance for macro
1059         expansion.
1060         (hif-factor, hif-string-concatenation, intern-safe): Support string
1061         concatenation and argumented macro expansion.
1062         (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
1063         (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
1064         (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
1065         (hif-canonicalize-tokens, hif-place-macro-invocation)
1066         (hif-parse-macro-arglist): Mostly new functions for supporting
1067         argumented macro expansion.
1068         (hif-string-concatenation, hif-stringify, hif-token-concat)
1069         (hif-token-stringification, hif-token-concatenation):
1070         Stringification and concatenation.
1071         (hif-find-next-relevant): Fix comments.
1072         (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
1073         some cases involving #elif.
1074         (hif-find-define, hif-add-new-defines): New functions for automatically
1075         scanning of defined symbols.
1076         (hide-ifdef-guts): Fix for defined symbol auto scanning.
1077         (hide-ifdef-undef): Fix behavior to match CPP.
1079 2014-06-25  Glenn Morris  <rgm@gnu.org>
1081         * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
1082         ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
1083         ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
1084         files.  They are not relevant to the original issue (bug#1004),
1085         and cause unnecessary recompilation (bug#2151).
1087 2014-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1089         * play/landmark.el: Use lexical-binding and avoid `intangible'.
1090         (landmark--last-pos): New var.
1091         (landmark--intangible-chars): New const.
1092         (landmark--intangible): New function.
1093         (landmark-mode, landmark-move): Use it.
1094         (landmark-mode): Remove properties.
1095         (landmark-plot-square, landmark-point-square, landmark-goto-xy)
1096         (landmark-cross-qtuple):
1097         Don't worry about `intangible' any more.
1098         (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
1099         (landmark-init-display): Don't set `intangible' and `point-entered'.
1100         (square): Remove.  Inline it instead.
1101         (landmark--distance): Rename from `distance'.
1102         (landmark-calc-distance-of-robot-from): Rename from
1103         calc-distance-of-robot-from.
1104         (landmark-calc-smell-internal): Rename from calc-smell-internal.
1106 2014-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
1108         * files.el (dir-locals-find-file, file-relative-name):
1109         * info.el (Info-complete-menu-item):
1110         * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
1111         to compare-strings to avoid out-of-range errors.
1112         * subr.el (string-prefix-p): Adjust to match strict range
1113         checking in compare-strings.
1115 2014-06-24  Leonard Randall  <leonard.a.randall@gmail.com>  (tiny change)
1117         * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
1118         for comment lines non-greedy and stopping at newlines to fix stack
1119         overflows with large files.
1121 2014-06-24  Eli Barzilay  <eli@barzilay.org>
1123         * calculator.el (calculator-last-input): Drop 'ascii-character property
1124         lookup.
1126 2014-06-24  Leo Liu  <sdl.web@gmail.com>
1128         * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
1129         tab-stop-list to nil.  (Bug#16381)
1131         * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
1132         (indent-rigidly-left-to-tab-stop)
1133         (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
1134         (move-to-tab-stop): Change callers.
1136 2014-06-24  Eli Zaretskii  <eliz@gnu.org>
1138         * skeleton.el (skeleton-insert): Yet another fix of the doc string
1139         wrt behavior of \n as the first/last element of a skeleton.
1141 2014-06-24  Michael Albinus  <michael.albinus@gmx.de>
1143         * net/tramp-adb.el (tramp-adb-handle-process-file):
1144         * net/tramp-sh.el (tramp-sh-handle-process-file):
1145         * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
1146         the output buffer when DISPLAY is non-nil.  (Bug#17815)
1148 2014-06-24  Glenn Morris  <rgm@gnu.org>
1150         * play/landmark.el (landmark-move-down, landmark-move-up):
1151         Fix 2007-10-20 change - preserve horizontal position.
1153 2014-06-23  Sam Steingold  <sds@gnu.org>
1155         * simple.el (kill-append): Remove undo boundary depending on ...
1156         (kill-append-merge-undo): New user option.
1158 2014-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1160         * simple.el (handle-shift-selection, exchange-point-and-mark)
1161         (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
1162         (transient-mark-mode): Use&set the global value.
1163         * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
1164         * emulation/edt.el (edt-emulation-off): Save&restore the global
1165         transient-mark-mode setting.
1166         * obsolete/pc-select.el (pc-selection-mode): Use the
1167         transient-mark-mode function.
1169 2014-06-23  Eli Zaretskii  <eliz@gnu.org>
1171         * international/fontset.el (script-representative-chars):
1172         Add representative characters for scripts added in Unicode 7.0.
1173         (otf-script-alist): Synchronize with the latest registry of OTF
1174         script tags.
1176         * international/characters.el (char-script-table): Update for
1177         scripts added and codepoint ranges changed in Unicode 7.0.
1179 2014-06-23  Eli Barzilay  <eli@barzilay.org>
1181         * calculator.el (calculator-standard-displayer): Fix bug in use of
1182         `calculator-groupize-number'.
1183         (calculator-funcall): Fix broken `cl-flet' use by moving it into the
1184         `eval' code, so it works in v24.3.1 too.
1185         (calculator-last-input): Comment to clarify purpose.
1187 2014-06-22  Mario Lang  <mlang@delysid.org>
1189         * textmodes/rst.el (rst-comment-region): From from -> from.
1191         * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
1193 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
1195         * electric.el (electric-layout-post-self-insert-function):
1196         * emacs-lisp/ert.el (ert--insert-infos):
1197         * obsolete/vi.el (vi-set-mark):
1198         * term.el (term-handle-scroll):
1199         * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
1200         * wid-edit.el (widget-editable-list-value-create):
1201         Prefer point-marker to copy-marker of point.
1203 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1205         Fix completion retrieval parsing (bug#17209).
1206         * progmodes/python.el (python-mode):
1207         (python-util-strip-string): New function.
1208         (python-shell-completion-get-completions): Use it.
1210 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
1212         * skeleton.el (skeleton-insert): Fix last change.
1214 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1216         Enhancements for outline integration (bug#17796).
1217         * progmodes/python.el (python-mode): Properly set
1218         outline-heading-end-regexp so that comments after colons for
1219         defuns are supported.
1221 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
1223         * skeleton.el (skeleton-insert): Doc fix.
1225 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1227         * emacs-lisp/smie.el (smie-config--guess): Fix typo.
1228         (smie-config-guess): Use smie-config-local so the rules are obeyed
1229         (bug#17818).
1231         * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
1232         since it's already done inside the loop (bug#17819).
1234 2014-06-21  Martin Rudalics  <rudalics@gmx.at>
1236         * mouse.el (mouse-drag-line): Re-remove code initially removed
1237         on 2013-03-09 and inadvertently reintroduced on 2013-11-30
1238         (Bug#17819).
1240 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1242         * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
1243         align with the surrounding parent (bug#17721).
1245 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
1247         * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
1248         locally to nil.
1249         (texinfo-insert-block, texinfo-insert-@end)
1250         (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
1251         local setting of skeleton-end-newline by adding an explicit \n to
1252         the skeletons where appropriate.  (Bug#17801)
1254 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1256         * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
1257         (smie-indent--hanging-p): Use it.
1258         * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
1260 2014-06-21  Leo Liu  <sdl.web@gmail.com>
1262         * simple.el (read-quoted-char): Don't let help chars pop up help
1263         buffer.  (Bug#16617)
1265 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1267         * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
1268         for | (bug#17621).
1270         * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
1271         Drop unknown events instead of burping.
1273 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
1275         * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
1276         and later.  (Bug#17790)
1278 2014-06-21  Juri Linkov  <juri@jurta.org>
1280         * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
1281         to `soft'.  (Bug#17554)
1283 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1285         * delsel.el (electric-newline-and-maybe-indent): Mark it as well
1286         (bug#17737).
1288 2014-06-21  Dmitry Gutov  <dgutov@yandex.ru>
1290         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
1291         `!' in `!~' with `font-lock-negation-char-face'.  (Bug#17732)
1293 2014-06-21  Michael Albinus  <michael.albinus@gmx.de>
1295         * net/dbus.el (dbus-call-method): Push only non D-Bus events into
1296         `unread-command-events'.
1298 2014-06-19  William Xu  <william.xwl@gmail.com>
1300         * progmodes/hideif.el (hif-string-to-number): Don't return float for
1301         hex integer constants (bug#17807).
1303 2014-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1305         * international/mule-util.el (truncate-string-ellipsis): New var.
1306         (truncate-string-to-width): Use it.
1308 2014-06-19  Robert Brown  <robert.brown@gmail.com>  (tiny change)
1310         * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
1311         (lisp-string-in-doc-position-p): New function, extracted from
1312         lisp-font-lock-syntactic-face-function.
1313         (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
1315 2014-06-19  Grégoire Jadi  <daimrod@gmail.com>
1317         * net/rcirc.el (rcirc-omit-mode): Fix recenter error.  (Bug#17769)
1319 2014-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1321         * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
1322         (bubbles--game-over): Don't add `intangible' properties since they
1323         didn't work anyway.
1325 2014-06-18  Juri Linkov  <juri@jurta.org>
1327         * vc/ediff-init.el (ediff-current-diff-Ancestor)
1328         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
1329         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
1330         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
1331         Add `min-colors 88' version with removed black/white foregrounds.
1332         (Bug#10181)
1334 2014-06-18  Juri Linkov  <juri@jurta.org>
1336         * vc/diff-mode.el (diff-changed): Empty face definition to use
1337         `diff-removed' and `diff-added' on tty as well.  (Bug#10181)
1338         (diff-context): Use darker color on light background and
1339         lighter color on dark background.
1341 2014-06-18  Juri Linkov  <juri@jurta.org>
1343         * vc/diff-mode.el (diff-refine-changed): Rename from
1344         `diff-refine-change' for consistency with `diff-changed'.
1345         (diff-refine-change): Add obsolete face alias.  (Bug#10181)
1347         * vc/smerge-mode.el (smerge-refined-changed): Rename from
1348         `smerge-refined-change'.
1349         (smerge-refined-change): Add obsolete face alias.
1351 2014-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1353         * rect.el (rectangle-preview): New custom.
1354         (rectangle): New group.
1355         (rectangle--pos-cols): Add `window' argument.
1356         (rectangle--string-preview-state, rectangle--string-preview-window):
1357         New vars.
1358         (rectangle--string-flush-preview, rectangle--string-erase-preview)
1359         (rectangle--space-to, rectangle--string-preview): New functions.
1360         (string-rectangle): Use them.
1361         (rectangle--inhibit-region-highlight): New var.
1362         (rectangle--highlight-for-redisplay): Obey it.  Make sure
1363         `apply-on-region' uses the point-crutches of the right window.
1364         Use :align-to rather than multiple spaces.
1366 2014-06-16  Andrea Rossetti  <andrea.rossetti@gmail.com>  (tiny change)
1368         * ruler-mode.el (ruler-mode-window-col)
1369         (ruler-mode-mouse-set-left-margin)
1370         (ruler-mode-mouse-set-right-margin): Fix calculation of column
1371         from mouse position (Bug#17768).
1373 2014-06-16  Ron Schnell  <ronnie@driver-aces.com>
1375         * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
1376         without varname or rhs causes crash.
1377         (dun-ftp): Fix bug where blank ftp password is allowed, making it
1378         impossible to win endgame.
1379         (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
1380         rlogin is anymore.
1381         (dun-help): Bump version number; update contact info.
1383 2014-06-15  Eli Barzilay  <eli@barzilay.org>
1385         * calculator.el (calculator-prompt, calculator-remove-zeros)
1386         (calculator-mode-hook, calculator-operators, calculator-stack)
1387         (calculator-mode): Tweak docstring.
1388         (calculator-user-operators): Tweak docstring, fix a bug in the last
1389         example.
1390         (calculator-displayer): `std' case has an optional boolean.
1391         (calculator-displayers): Use the new boolean to group in decimal mode.
1392         (calculator-mode-map, calculator, calculator-message)
1393         (calculator-op-arity, calculator-add-operators)
1394         (calculator-string-to-number, calculator-displayer-prev)
1395         (calculator-displayer-next, calculator-remove-zeros)
1396         (calculator-eng-display, calculator-number-to-string)
1397         (calculator-update-display, calculator-last-input)
1398         (calculator-clear-fragile, calculator-digit, calculator-decimal)
1399         (calculator-exp, calculator-saved-move, calculator-clear)
1400         (calculator-copy, calculator-put-value, calculator-help)
1401         (calculator-expt, calculator-truncate): Minor code improvements.
1402         (calculator-need-3-lines): New function pulling out code from
1403         `calculator'.
1404         (calculator-get-display): Rename from `calculator-get-prompt', and
1405         improved.
1406         (calculator-push-curnum): Rename from `calculator-curnum-value', and
1407         extended for all uses of it.  All callers changed.
1408         (calculator-groupize-number): New utility for splitting a number into
1409         groups.
1410         (calculator-standard-displayer): Improve code, new optional argument to
1411         use comma-split groups, make second argument optional too to use with
1412         'left/'right inputs.  All callers changed.
1413         (calculator-reduce-stack-once): New utility, doing the meat of what
1414         `calculator-reduce-stack' used to do, much improved (mostly using
1415         `pcase' for conciseness and clarity).
1416         (calculator-reduce-stack): Now doing just the reduction loop using
1417         `calculator-reduce-stack-once'.
1418         (calculator-funcall): Improve code, make it work in v24.3.1 too.
1419         (calculator-last-input): Improve code, remove some old cruft.
1420         (calculator-quit): Kill `calculator-buffer' in electric mode too.
1421         (calculator-integer-p): Remove.
1422         (calculator-fact): Improve code, make it work on non-integer values
1423         too (using truncated numbers).
1425 2014-06-15  Michael Albinus  <michael.albinus@gmx.de>
1427         Sync with Tramp 2.2.10.
1429         * net/tramp.el (tramp-methods): Tweak docstring.
1430         (tramp-handle-file-accessible-directory-p): Check for
1431         `file-readable-p' instead of `file-executable-p'.
1432         (tramp-check-cached-permissions):
1433         Use `tramp-compat-file-attributes'.
1434         (tramp-call-process): Add new argument VEC.  Adapt callees in all
1435         tramp*.el files.
1437         * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
1438         (tramp-adb-maybe-open-connection): Don't set
1439         `tramp-current-*' variables.
1441         * net/tramp-cache.el (tramp-flush-file-function): Do not flush
1442         file properties of temporary buffers.
1444         * net/tramp-ftp.el (top): Remove special handling for URL syntax.
1446         * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
1447         (tramp-gvfs-handle-delete-file): Flush file
1448         properties, not directory properties.
1449         (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
1450         reading "unix::mode".
1451         (tramp-gvfs-handle-file-name-all-completions):
1452         Use "-h" option for "gvfs-ls".
1453         (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
1454         (tramp-gvfs-send-command): Simplify traces.
1456         * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
1457         (vc-git-program, vc-hg-program): Declare.
1458         (tramp-methods) <sftp>: Remove.  It has never worked satisfactorily.
1459         (tramp-methods) <nc>: Add new method.
1460         (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
1461         (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
1462         `tramp-login-args'.
1463         (tramp-default-user-alist): Add "nc".
1464         (top): Remove completion function for "sftp".  Add completion
1465         functions for "nc" and "psftp".
1466         (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
1467         Implement support for "nc" method.
1468         (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
1469         (tramp-remote-coding-commands, tramp-call-local-coding-command):
1470         Tweak docstring.
1471         (tramp-sh-handle-write-region): Tweak error message.
1472         (tramp-sh-handle-vc-registered): Remove backends when the remote
1473         binary does not exist.
1474         (tramp-find-inline-encoding): Do not raise an error.
1475         (tramp-make-copy-program-file-name): Tweak docstring.  Handle also
1476         the "nc" case.  Quote result also locally.
1478         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
1479         (tramp-smb-handle-set-file-acl): Use `start-process'.
1480         (tramp-smb-handle-insert-directory): Use progress reporter.
1481         (tramp-smb-handle-rename-file): Flush also file properties of
1482         FILENAME.
1484         * net/trampver.el: Update release number.
1486 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1488         * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
1489         add-to-list.
1490         (ses-localvars): Remove ses--local-printer-list, unused.
1491         (ses--metaprogramming): New macro.  Use it to defvar variables.
1492         (ses-set-localvars): Simplify.
1493         (ses--locprn, ses-cell): Use defstruct.  Change ses-cell's
1494         property-list into an alist.
1495         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
1496         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
1497         Remove; use defstruct accessors/setters instead.
1498         (ses-cell-formula-aset, ses-cell-printer-aset)
1499         (ses-cell-references-aset): Remove, use setf instead.
1500         (ses--alist-get): New function.
1501         (ses-cell-property): Rename from ses-cell-property-get and rewrite.
1502         Use an alist instead of a plist and don't do move-to-front since the
1503         list is always short.
1504         (ses-cell-property-get-fun, ses-cell-property-delq-fun)
1505         (ses-cell-property-set-fun, ses-cell-property-set)
1506         (ses-cell-property-pop-fun, ses-cell-property-get-handle)
1507         (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
1508         (ses--letref): New macro.
1509         (ses-cell-property-pop): Rewrite.
1510         (ses--cell): Rename from ses-cell and make it into a function.
1511         Make `formula' fallback on `value' if nil.
1512         (ses--local-printer): Rename from ses-local-printer and make it into
1513         a function.
1514         (ses-set-cell): Turn it into a macro so finding the accessor from the
1515         field name is done at compile time.
1516         (ses-repair-cell-reference-all): Test presence of `sym' rather than
1517         `ref' before adding `sym' to :ses-repair-reference.
1518         (ses-calculate-cell): Use ses--letref rather than
1519         ses-cell-property-get-handle.
1520         (ses-write-cells): Use a single prin1-to-string.
1521         (ses-setter-with-undo): New function.
1522         (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
1523         (ses-unset-with-undo): Remove.
1524         (ses-load): Prefer apply' over `eval'.
1525         (ses-read-printer, ses-set-column-width): Use standard "(default
1526         foo)" format.
1528 2014-06-15  Glenn Morris  <rgm@gnu.org>
1530         * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
1532         * progmodes/cc-langs.el: Require cl-lib.  (Bug#17463)
1533         Replace delete-duplicates and mapcan by cl- versions throughout.
1534         And cl-macroexpand-all by macroexpand-all.
1535         (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
1537 2014-06-15  Eli Zaretskii  <eliz@gnu.org>
1539         * subr.el (posn-col-row): Doc fix.  (Bug#17768)
1541 2014-06-15  Juri Linkov  <juri@jurta.org>
1543         * bindings.el: Put `ascii-character' property on keypad keys
1544         mapped to characters.  (Bug#17759)
1546 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1548         * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
1549         bumping forward into a closing paren (bug#17761).
1551         * term/xterm.el (xterm--version-handler): Work around for OSX
1552         Terminal.app (bug#17607).
1554 2014-06-14  Ron Schnell  <ronnie@driver-aces.com>
1556         * play/dunnet.el (dun-describe-room, dun-mode):
1557         If a lamp is in the room, you won't be eaten by a grue.
1559 2014-06-13  Glenn Morris  <rgm@gnu.org>
1561         * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
1562         (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
1563         (compile-always): GNU make automatically passes
1564         command-line arguments to sub-makes.
1566         * calendar/calendar.el (calendar-generate-window):
1567         Remove pointless call to font-lock-fontify-buffer.
1569 2014-06-13  Matthias Meulien  <orontee@gmail.com>
1571         * simple.el (completion-list-mode-map): Navigate with tab and backtab
1572         (bug#17767).
1574 2014-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1576         * simple.el (set-mark-command): Simplify a bit.
1578 2014-06-12  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
1580         * help.el (help--key-binding-keymap): New function.
1581         (help--binding-locus): New function.
1582         (describe-key): Mention the keymap in which the binding was
1583         found. (bug#13948)
1585 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1587         * hippie-exp.el (he--all-buffers): New function.
1588         (try-expand-line-all-buffers, try-expand-list-all-buffers)
1589         (try-expand-dabbrev-all-buffers): Use it.
1591 2014-06-12  Emilio C. Lopes  <eclig@gmx.net>
1593         * hippie-exp.el (try-expand-line-all-buffers)
1594         (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
1595         Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
1596         original buffer, in case they're buffer-local.
1598 2014-06-12  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1600         * ses.el (ses-initial-global-parameters-re): New defconst, a
1601         specific regexp is needed now that ses.el can handle both
1602         file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
1603         local printers.
1604         (ses-localvars): Add local variables needed for local printer handling.
1605         (ses-set-localvars): Handle hashmap initialisation.
1606         (ses-paramlines-plist): Add param-line for number of local printers.
1607         (ses-paramfmt-plist): New defconst, needed for code factorization
1608         between functions `ses-set-parameter' and
1609         `ses-file-format-extend-paramter-list'
1610         (ses-make-local-printer-info): New defsubst.
1611         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
1612         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
1613         (ses-cell-printer-aset): New defmacro.
1614         (ses-local-printer-compile): New defun.
1615         (ses-local-printer): New defmacro.
1616         (ses-printer-validate, ses-call-printer): Add support for local
1617         printer functions.
1618         (ses-file-format-extend-paramter-list): New defun.
1619         (ses-set-parameter): Use const `ses-paramfmt-plist' for code
1620         factorization.
1621         (ses-load): Add support for local printer functions.
1622         (ses-read-printer): Update docstring and add support for local printer
1623         functions.
1624         (ses-refresh-local-printer, ses-define-local-printer): New defun.
1625         (ses-safe-printer): Add support for local printer functions.
1627 2014-06-12  Ivan Andrus  <darthandrus@gmail.com>
1629         * ffap.el (ffap-lax-url): New var (bug#17723).
1630         (ffap-url-at-point): Use it.
1631         (ffap-file-at-point): Avoid returning just "/".
1633 2014-06-12  Matthias Meulien  <orontee@gmail.com>
1635         * progmodes/python.el (import skeleton): New skeleton (bug#17672).
1636         (python-mode-map): Bind it.
1638         * progmodes/python.el (class skeleton): Don't erase last char of class
1639         name (bug#17683).
1641 2014-06-12  Cameron Desautels  <camdez@gmail.com>  (tiny change)
1643         * help.el (where-is): Use `default' arg of completing-read (bug#17705).
1645 2014-06-12  Kevin Ryde  <user42_kevin@yahoo.com.au>
1647         * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
1648         (bug#17745).
1650 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1652         * international/mule-cmds.el: Use lexical-binding.
1653         (ucs-names): Simplify.
1655 2014-05-18  Eric Hanchrow  <eric.hanchrow@gmail.com>
1657         * progmodes/python.el (run-python): Use read-shell-command.
1659 2014-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1661         * rect.el: Make it possible to move bounds past EOL or into TABs.
1662         (operate-on-rectangle): Use apply-on-rectangle.
1663         (rectangle--mark-crutches): New var.
1664         (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
1665         (rectangle--crutches, rectangle--reset-crutches): New functions.
1666         (apply-on-rectangle): Obey crutches.  Avoid setq.
1667         Fix missing final iteration if end is at EOB&BOL.
1668         (rectangle-mark-mode-map): Add remap bindings for
1669         exchange-point-and-mark and char/line movements.
1670         (rectangle--*-char): New function.
1671         (rectangle-exchange-point-and-mark, rectangle-right-char)
1672         (rectangle-left-char, rectangle-forward-char)
1673         (rectangle-backward-char, rectangle-next-line)
1674         (rectangle-previous-line): New commands.
1675         (rectangle--place-cursor): New function.
1676         (rectangle--highlight-for-redisplay): Use it.  Use apply-on-rectangle.
1678 2014-06-08  Glenn Morris  <rgm@gnu.org>
1680         * startup.el (initial-buffer-choice): Doc fix.
1681         Reset :version (adding an option does not merit a :version bump).
1683         * bookmark.el (bookmark-load):
1684         * uniquify.el (uniquify-buffer-name-style): Doc fixes.
1686 2014-06-08  Juri Linkov  <juri@jurta.org>
1688         * desktop.el: Activate auto-saving on window configuration changes.
1689         (desktop-save-mode, desktop-auto-save-timeout): Add/remove
1690         `desktop-auto-save-set-timer' to/from
1691         `window-configuration-change-hook'.
1692         (desktop-auto-save-set-timer): Change REPEAT arg of
1693         `run-with-idle-timer' from t to nil.
1694         http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
1696 2014-06-08  Santiago Payà i Miralta  <santiagopim@gmail.com>
1698         * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
1699         vc-hg-command (bug#17570).
1701 2014-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1703         * international/mule-cmds.el (ucs-names): Add special entry for BEL
1704         (bug#17702).
1706 2014-06-08  Glenn Morris  <rgm@gnu.org>
1708         * startup.el (window-setup-hook): Doc fix.
1710         * emacs-lisp/package.el (package-check-signature)
1711         (package-unsigned-archives): Doc fixes.
1713 2014-06-08  Martin Rudalics  <rudalics@gmx.at>
1715         * window.el (display-buffer-use-some-window): Don't make window
1716         used smaller than it was before (Bug#17671).
1718 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
1720         * menu-bar.el (menu-bar-open): Fix last change: use the PC
1721         'redisplay' instead of '(sit-for 0)'.
1723 2014-06-08  Michael Albinus  <michael.albinus@gmx.de>
1725         * net/tramp.el (tramp-ssh-controlmaster-options):
1726         Improve search regexp.  (Bug#17653)
1728 2014-06-08  Glenn Morris  <rgm@gnu.org>
1730         * emacs-lisp/package.el (package-pinned-packages): Doc fix.
1732 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
1734         * menu-bar.el (menu-bar-open): Fix invocation via M-x.
1736 2014-06-06  Santiago Payà i Miralta  <santiagopim@gmail.com>
1738         * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
1739         (bug#17586).
1741         * vc/vc-hg.el (vc-hg-log-graph): New var.
1742         (vc-hg-print-log): Use it.
1743         (vc-hg-root-log-format): Include branch name and bookmarks; ignore
1744         graph output (bug#17515).
1746 2014-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1748         * mouse.el (mouse-posn-property): Ignore buffer position info when the
1749         even happened elsewhere.
1751 2014-06-06  Mario Lang  <mlang@delysid.org>
1753         * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
1754         `recenter' if `current-buffer' is equal to `window-buffer'.
1756 2014-06-05  Leo Liu  <sdl.web@gmail.com>
1758         * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
1760 2014-06-05  Michal Nazarewicz  <mina86@mina86.com>
1762         * textmodes/tildify.el (tildify-foreach-region-outside-env):
1763         New function which calls a callback on portions of the buffer that are
1764         outside of ignored environments.
1765         (tildify-build-regexp): Remove function since it is now
1766         incorporated in `tildify-foreach-region-outside-env' where it is
1767         optimised and simplified by the use of `mapconcat'.
1768         (tildify-tildify): Return number of substitutions made so that…
1769         (tildify-count): …can be removed.
1770         (tildify-find-env): Accept a new PAIRS argument which was
1771         previously looked up in `tildify-ignored-environments-alist' each
1772         time the function was called.  With this change, the lookup is
1773         performed only once in `tildify-foreach-region-outside-env'.
1774         (tildify-region): Greatly simplify the function since now most of
1775         the work is done by `tildify-foreach-region-outside-env'.
1776         (tildify-mode-alist): Simplify slightly by avoiding if and setq
1777         and instead using or.
1779         * textmodes/tildify.el (tildify-ignored-environments-alist):
1780         Optimise environments regexes
1782         Each time beginning of an environment to ignore is found,
1783         `tildify-find-env' needs to identify regexp for the ending
1784         of the environment.  This is done by trying all the opening
1785         regexes on matched text in a loop, so to speed that up, this
1786         loop should have fewer things to match, which can be done by
1787         using alternatives in the opening regexes.
1789         Coincidentally, this should make matching of the opening
1790         regexp faster as well thanks to the use of `regexp-opt' and
1791         having common prefix pulled from many regexes.
1793         * textmodes/tildify.el (tildify-string-alist)
1794         (tildify-ignored-environments-alist): Add `nxml-mode' to the list
1795         of supported modes since `xml-mode' is no longer a thing but just
1796         an alias to the former.  Also include comments and insides of tags
1797         in `tildify-ignored-environments-alist' for XML modes.  Finally,
1798         since XML does not define “&nbsp;”[1], use a numeric reference for
1799         a no-break space (namely “&#160;”)
1801         [1] XML specification defines only a handful of predefined entities.
1802             The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
1803             and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
1804             >, &, ' and " respectively).  This is in contrast to HTML and even
1805             XHTML which defined a whole bunch of entities including “&nbsp;”.
1807         * textmodes/tildify.el (tildify-pattern-alist)
1808         (tildify-string-alist, tildify-ignored-environments-alist):
1809         Improve defcustom's types by adding more tags explaining what each
1810         value means and replace “sexp” used in
1811         `tildify-ignored-environments-alist' with a full type declaration.
1813         * textmodes/tildify.el (tildify-find-env): Fix matched group
1814         indexes in end-regex building
1816         When looking for a start of an ignore-environment, the regex is built
1817         by concatenating regexes of all the environments configured in
1818         `tildify-ignored-environments-alist'.  So for example, the following
1819         list could be used to match TeX's \verb and \verb* commands:
1821             (("\\\\verb\\(.\\)" . (1))
1822              ("\\\\verb\\*\\(.\\)" . (1)))
1824         This would result in the following regex being used to find the start
1825         of any of the variants of the \verb command:
1827             \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
1829         But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
1830         won't match anything, and thus (match-string 1) will be nil, which
1831         will cause building of the end-matching regex to fail.
1833         Fix this by using capture groups from the time when the opening
1834         regexes are matched individually.
1836         * textmodes/tildify.el (tildify-find-env): Fix end-regex building
1837         in `tildify-find-env'
1839         The `tildify-ignored-environments-alist' allows the end-regex to
1840         be provided not as a static string but mix of strings and indexes
1841         of groups matched the begin-regex.  For example, the “\verb!…!”
1842         TeX-command (where “!” is an arbitrary character) is handled
1843         using:
1845             ("\\\\verb\\*?\\(.\\)" . (1))
1847         In the same way, the following should be supported as well:
1849             ("open-\\(.\\)" . ("end-" 1))
1851         However the tildify-find-env function fails at
1853             (concat result
1854                     (if (stringp (setq aux (car expression)))
1855                          expression  ; BUG: expression is a list
1856                        (regexp-quote (match-string aux))))
1858         where the string part is handled incorrectly.
1860         The most trivial fix would be to replace `expression' in the
1861         true-part of the if-statement with `aux', but instead, this commit
1862         optimises `tildify-find-env' by changing it to use `mapconcat'
1863         rather than open-coded while-loop.
1865 2014-06-05  Mario Lang  <mlang@delysid.org>
1867         * woman.el (woman-mapcan): Remove.
1868         (woman-parse-colon-path): Use cl-mapcan instead.
1870 2014-06-03  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1872         * register.el: Add link to Emacs manual in Commentary.
1874 2014-06-02  Sam Steingold  <sds@gnu.org>
1876         * menu-bar.el (lookup-key-ignore-too-long): Extract from...
1877         (popup-menu): ...here.
1878         (menu-bar-open): Use it to avoid an error when `lookup-key'
1879         returns a number.
1881 2014-06-02  Michael Albinus  <michael.albinus@gmx.de>
1883         * net/tramp.el (tramp-call-process): Add traces.
1884         (tramp-handle-unhandled-file-name-directory): Return "/".
1886 2014-06-02  Wilson Snyder  <wsnyder@wsnyder.org>
1888         Sync with upstream verilog-mode revision 3cd8144.
1889         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
1890         (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
1891         (verilog-type-font-keywords): Add nor.
1892         (verilog-batch-execute-func): Force reading of Local Variables.
1893         Fix printing "no changes to be saved" with verilog-batch.
1894         (verilog-auto-arg-ports): Doc fix.
1895         Add verilog-auto-arg-format to support newlines in AUTOARG.
1896         (verilog-auto-arg): Doc fix.
1898 2014-06-02  Glenn Morris  <rgm@gnu.org>
1900         * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
1901         * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
1902         * emulation/ws-mode.el: Move to obsolete/.
1903         * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
1905 2014-06-02  Eli Zaretskii  <eliz@gnu.org>
1907         * simple.el (keyboard-quit): Force update of mode lines, to remove
1908         the "Def" indicator, if we were defining a macro.  (Bug#17615)
1910 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1912         * minibuffer.el (minibuffer-force-complete-and-exit):
1913         Obey minibuffer-default (bug#17545).
1915         * progmodes/js.el (js-indent-line): Don't mix columns and chars
1916         (bug#17619).
1918         * subr.el (set-transient-map): Don't wait for some "nested"
1919         transient-map to finish if we're only supposed to be active for
1920         the next command (bug#17642).
1922 2014-06-02  Leo Liu  <sdl.web@gmail.com>
1924         * emacs-lisp/gv.el (window-buffer, window-display-table)
1925         (window-dedicated-p, window-hscroll, window-point, window-start):
1926         Fix gv-expander.  (Bug#17630)
1928 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1930         * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
1931         clicks (bug#17633).
1933         * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
1934         for the single comma, since ", " is *very* common in normal French text
1935         (bug#17643).
1937 2014-06-02  Glenn Morris  <rgm@gnu.org>
1939         * emacs-lisp/package.el (package-check-signature)
1940         (package-unsigned-archives): Fix :version.
1942 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1944         * subr.el (sit-for): Don't run input-methods (bug#15614).
1946 2014-06-02  Glenn Morris  <rgm@gnu.org>
1948         * cus-start.el: Fix some :version numbers.
1950 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1952         * simple.el (deactivate-mark): Set mark-active to nil even if
1953         deactivation is done via setting transient-mark-mode to nil,
1954         since one is buffer-local and the other is global.
1956         * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
1957         there can't be more than 2 arguments (bug#17584).
1959 2014-06-02  Glenn Morris  <rgm@gnu.org>
1961         * simple.el (filter-buffer-substring-functions)
1962         (filter-buffer-substring-function, buffer-substring-filters)
1963         (filter-buffer-substring, buffer-substring--filter): Doc fixes.
1965         * minibuffer.el (completion-in-region-functions, completion-in-region)
1966         (completion--in-region): Doc fixes.
1968         * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
1969         (expand-abbrev, abbrev--default-expand): Doc fixes.
1971 2014-06-02  Paul Eggert  <eggert@cs.ucla.edu>
1973         Include sources used to create macuvs.h.
1974         * international/README: Refer to the Unicode Terms of Use rather
1975         than copying it bodily here, as that simplifies maintenance.
1977 2014-06-01  Glenn Morris  <rgm@gnu.org>
1979         * loadup.el (load-prefer-newer): Set non-nil when dumping.  (Bug#17629)
1981 2014-05-31  Glenn Morris  <rgm@gnu.org>
1983         * files.el (locate-dominating-file): Expand file argument.  (Bug#17641)
1985 2014-05-30  Glenn Morris  <rgm@gnu.org>
1987         * loadup.el: Treat `command-line-args' more flexibly.
1989 2014-05-30  Alan Mackenzie  <acm@muc.de>
1991         Guard (looking-at "\\s!") from XEmacs.
1992         * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
1994 2014-05-30    Ken Olum  <kdo@cosmos.phy.tufts.edu>  (tiny change)
1996         * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
1997         The argument COUNT is now optional, to be more backward-compatible.
1998         Doc fix.  (Bug#17560)
2000 2014-05-29  Reuben Thomas  <rrt@sc3d.org>
2002         * whitespace.el (whitespace-report-region):
2003         Simplify documentation.
2004         (whitespace-report-region): Allow report-if-bogus to take the
2005         value `never', for non-interactive use.
2006         (whitespace-report): Refer to whitespace-report-region's
2007         documentation.
2009 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2011         * whitespace.el: Use font-lock-flush.  Minimize refontifications.
2012         Side benefit: it works without jit-lock.
2013         (whitespace-point--used): New buffer-local var.
2014         (whitespace-color-on): Initialize it and flush it.  Use font-lock-flush.
2015         (whitespace-color-off): Use font-lock-flush.
2016         (whitespace-point--used, whitespace-point--flush-used): New functions.
2017         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
2018         (whitespace-empty-at-eob-regexp): Use them.
2019         (whitespace-post-command-hook): Rewrite.
2021         * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
2022         (font-lock-fontify-buffer): Mark interactive-only.
2023         (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
2024         Make buffer-local.
2025         (font-lock-specified-p): Remove redundant boundp check.
2026         (font-lock-flush-function, font-lock-ensure-function): New vars.
2027         (font-lock-turn-on-thing-lock): Set them.
2028         (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
2029         (font-lock-after-change-function): Make `old-len' optional.
2030         (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
2031         Call font-lock-flush, just in case.
2032         * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
2033         recent Emacsen.
2034         * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
2035         (vera-mode-map, vera-mode-menu): Remove bindings to it.
2036         * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
2037         and with-syntax-table.
2038         * textmodes/conf-mode.el (conf-quote-normal):
2039         * progmodes/sh-script.el (sh-set-shell):
2040         * progmodes/prog-mode.el (prettify-symbols-mode):
2041         * progmodes/f90.el (f90-font-lock-n):
2042         * progmodes/cwarn.el (cwarn-mode):
2043         * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
2044         * progmodes/compile.el (compilation-setup, compilation--unsetup):
2045         * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
2046         (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
2047         * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
2048         font-lock-fontify-buffer-function and
2049         font-lock-unfontify-buffer-function.
2050         (rmail-unfontify-buffer-function, rmail-fontify-message):
2051         Use with-silent-modifications.
2052         * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
2053         and font-lock-ensure.
2054         * bs.el (bs-show-in-buffer): Use font-lock-ensure.
2056 2014-05-28  Thien-Thi Nguyen  <ttn@gnu.org>
2058         * emacs-lisp/package.el (package-generate-autoloads):
2059         Inhibit backup files.
2061 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2063         * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
2064         (bug#17608).
2066 2014-05-21  Michal Nazarewicz  <mina86@mina86.com>
2068         * textmodes/tildify.el (tildify-buffer, tildify-region):
2069         Add dont-ask option.
2071 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2073         * subr.el (zerop): Move from C.  Add compiler-macro (bug#17475).
2074         * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
2076         * subr.el (internal--funcall-interactively): New.
2077         (internal--call-interactively): Remove.
2078         (called-interactively-p): Detect funcall-interactively instead of
2079         call-interactively.
2080         * simple.el (repeat-complex-command): Use funcall-interactively.
2081         (repeat-complex-command--called-interactively-skip): Remove.
2083 2014-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2085         * register.el (register-read-with-preview): Don't burp on
2086         frame switches (e.g. due to the frame we just popped).
2088         * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
2089         (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
2091 2014-05-26  Andreas Schwab  <schwab@linux-m68k.org>
2093         * cus-face.el (custom-face-attributes): Add :distant-foreground.
2095 2014-05-26  Martin Rudalics  <rudalics@gmx.at>
2097         * window.el (window--dump-frame): Remove interactive specification.
2099 2014-05-26  Glenn Morris  <rgm@gnu.org>
2101         * hippie-exp.el (he-line-search-regexp):
2102         Handle comint-prompt-regexp containing subgroups.  (Bug#17529)
2104 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
2106         * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
2107         to avoid errors when trying to create or visit a file foo.todo
2108         located outside to todo-directory, and to allow having such files
2109         without them being tied to Todo mode (bug#17482).
2110         (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
2111         (todo-archive-done-item, todo-find-filtered-items-file)
2112         (todo-filter-items, todo-find-item, todo-diary-goto-entry)
2113         (todo-category-completions, todo-read-category): When visiting a
2114         Todo file, make sure we're in the right mode and the buffer local
2115         variables are set.
2116         (todo-make-categories-list, todo-reset-nondiary-marker)
2117         (todo-reset-done-string, todo-reset-comment-string):
2118         After processing all Todo files, kill the buffers of those files that
2119         weren't being visited before the processing.
2120         (todo-display-as-todo-file, todo-add-to-buffer-list)
2121         (todo-visit-files-commands): Comment out.
2122         (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
2123         (auto-mode-alist): Remove add-to-list calls making Todo file
2124         extensions unrestrictedly tied to Todo modes.
2126 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2128         * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
2129         (advice-function-member-p): Tell it to check both names and functions
2130         (bug#17531).
2131         (advice--add-function): Adjust call accordingly.
2133 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
2135         * calendar/todo-mode.el: Miscellaneous bug fixes.
2136         (todo-delete-file): When deleting an archive but not its todo
2137         file, make sure to update the todo file's category sexp.
2138         (todo-move-category): Keep the moved category's name unless the
2139         file moved to already has a category with that name.  If the
2140         numerically last category of the source file was moved, make the
2141         first category current to avoid selecting a nonexisting category.
2142         (todo-merge-category): Fix implementation to make merging to a
2143         category in another file work as documented.  Eliminate now
2144         insufficient and unnecessary renaming of archive category, correct
2145         document string accordingly, and clarify it.  If the numerically
2146         last category of the source file was merged, make the first
2147         category current to avoid selecting a nonexisting category.
2148         (todo-archive-done-item): When there are marked items and point
2149         happens to be on an unmarked item, ignore the latter.  Don't leave
2150         point below last item after archiving marked items.
2151         (todo-unarchive-items): Fix logic to ensure unarchiving an item
2152         from an archive with only one category deletes the archive only
2153         when the category is empty after unarchiving.  Make sure the todo
2154         file's category sexp is updated.
2155         (todo-read-file-name): Allow an existing file name even when it is
2156         not required (todo-move-category needs this to work as documented).
2157         (todo-add-file): Call todo-validate-name to reject the name of an
2158         existing todo file (needed due to fix in todo-read-file-name).
2159         (todo-reset-nondiary-marker): Also reset in filtered items files.
2160         (todo-reset-done-string, todo-reset-comment-string): Also reset in
2161         regexp filtered items files.
2162         (todo-reset-highlight-item): Also reset in filtered items files.
2163         Fix incorrect variable reference in document string.
2165 2014-05-26  Glenn Morris  <rgm@gnu.org>
2167         * window.el (window--dump-frame): Avoid error in --without-x builds.
2169 2014-05-26  Glenn Morris  <rgm@gnu.org>
2171         * nxml/nxml-mode.el (xml-mode): Only define this alias once.
2173 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
2175         * frame.el (set-frame-font): Doc fix.
2177         * menu-bar.el (menu-set-font): Doc fix.  (Bug#17532)
2179 2014-05-26  Dmitry Gutov  <dgutov@yandex.ru>
2181         * emacs-lisp/package.el (package--download-one-archive):
2182         Use `write-region' instead of `save-buffer' to avoid running various
2183         hooks.  (Bug#17155)
2184         (describe-package-1): Same.  Insert newline at the end of the
2185         buffer if appropriate.
2187 2014-05-26  Juri Linkov  <juri@jurta.org>
2189         * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
2190         (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
2191         Add more modifiers: meta, control, shift, hyper, super, alt.
2192         (Bug#17439)
2194         * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
2195         to allow changing its value with `set-variable'.
2197 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2199         * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
2200         #; comments.
2201         (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
2202         New functions.
2203         (scheme-mode-variables): Set syntax-propertize-function instead of
2204         font-lock-syntactic-face-function.
2205         (scheme-font-lock-syntactic-face-function): Delete.
2207         * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
2209         * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
2210         (bug#17392).
2212 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
2214         * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
2215         for a temporary file name.
2217 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
2219         * simple.el (line-move-ignore-invisible): Doc fix.  (Bug#17511)
2221 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
2223         * net/dbus.el (dbus-init-bus, dbus-call-method)
2224         (dbus-call-method-asynchronously, dbus-send-signal)
2225         (dbus-method-return-internal, dbus-method-error-internal):
2226         Check, whether Emacs has been compiled with D-Bus support.  (Bug#17508)
2228 2014-05-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
2230         * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
2231         methods which do not have a doc string.  (Bug#17490)
2233 2014-05-25  Tassilo Horn  <tsdh@gnu.org>
2235         * textmodes/reftex-ref.el (reftex-format-special): Make it work
2236         also for AMS Math's \eqref macro.
2238 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
2240         Arrange to never byte-compile the generated -pkg.el file.
2242         * emacs-lisp/package.el (package-generate-description-file):
2243         Output first-line comment to set buffer-local var `no-byte-compile'.
2244         Suggested by Dmitry Gutov:
2245         <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
2247 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
2249         Fix bug: Properly quote args to generated -pkg.el `define-package'.
2251         * emacs-lisp/package.el (package-generate-description-file):
2252         Inline `package--alist-to-plist'; rewrite to selectively
2253         quote alist values that are not self-quoting.
2254         (package--alist-to-plist): Delete func.
2256 2014-05-25  Andreas Schwab  <schwab@linux-m68k.org>
2258         * term/xterm.el (xterm-function-map): Add mapping for shifted
2259         keypad keys.
2261 2014-05-24  Daniel Colascione  <dancol@dancol.org>
2263         * progmodes/subword.el (subword-find-word-boundary): Move point to
2264         correct spot before search. (Bug#17580)
2266         * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
2267         breaking the build.
2269 2014-05-24  Leo Liu  <sdl.web@gmail.com>
2271         * calc/calc.el (math-bignum): Handle most-negative-fixnum.  (Bug#17556)
2273 2014-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2275         * minibuffer.el (completion--sreverse): Remove.
2276         (completion--common-suffix): Use `reverse' instead.
2277         * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
2279 2014-05-22  Glenn Morris  <rgm@gnu.org>
2281         * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
2283 2014-05-21  Daniel Colascione  <dancol@dancol.org>
2285         * files.el (interpreter-mode-alist): Add mksh.
2287         * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
2288         derivative.
2289         (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
2290         mksh. Improve custom spec; allow regular expressions.
2291         (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
2292         (sh-after-hack-local-variables): New function.
2293         (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
2294         (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
2295         the normalization.
2296         (sh-canonicalize-shell): Rewrite to support regexes.
2298 2014-05-21  Leo Liu  <sdl.web@gmail.com>
2300         * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
2302 2014-05-19  Leo Liu  <sdl.web@gmail.com>
2304         * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
2306 2014-05-18  Glenn Morris  <rgm@gnu.org>
2308         * loadup.el:
2309         * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
2311 2014-05-14  Sam Steingold  <sds@gnu.org>
2313         * progmodes/python.el (python-shell-get-or-create-process):
2314         Do not bind `current-prefix-arg' so that C-c C-z does not talk
2315         back unless requested.
2317 2014-05-14  Glenn Morris  <rgm@gnu.org>
2319         * subr.el (with-file-modes): New macro.
2320         * printing.el (pr-save-file-modes): Make obsolete.
2321         * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
2322         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
2323         Add with-file-modes.
2324         * doc-view.el (doc-view-make-safe-dir):
2325         * epg.el (epg--start):
2326         * files.el (locate-user-emacs-file, make-temp-file)
2327         (backup-buffer-copy, move-file-to-trash):
2328         * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
2329         * eshell/esh-util.el (eshell-with-private-file-modes)
2330         (eshell-make-private-directory):
2331         * net/browse-url.el (browse-url-mosaic):
2332         * obsolete/mailpost.el (post-mail-send-it):
2333         * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
2334         * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
2335         Use with-file-modes.
2337         * vc/emerge.el (emerge-make-temp-file): Simplify.
2339 2014-05-14  Stephen Berman <stephen.berman@gmx.net>
2340             Stefan Monnier  <monnier@iro.umontreal.ca>
2342         * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
2343         suffix (bug#15419).
2345 2014-05-14  Glenn Morris  <rgm@gnu.org>
2347         * vc/emerge.el (emerge-temp-file-prefix):
2348         Make pointless option obsolete.
2349         (emerge-temp-file-mode): Make non-functional option obsolete.
2351 2014-05-14  Michael Albinus  <michael.albinus@gmx.de>
2353         * net/browse-url.el (browse-url):
2354         Use `unhandled-file-name-directory' when setting `default-directory',
2355         in order to circumvent stalled remote connections.  (Bug#17425)
2357 2014-05-14  Glenn Morris  <rgm@gnu.org>
2359         * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
2360         Optimize on Emacs, which has the relevant functions for ages.
2362 2014-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2364         * simple.el (undo-make-selective-list): Obey undo-no-redo.
2366 2014-05-12  Sam Steingold  <sds@gnu.org>
2368         * calendar/time-date.el (seconds-to-string): New function to
2369         pretty print time delay in seconds.
2371 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2373         * mpc.el (mpc-format): Trim Date to the year.
2374         (mpc-songs-hashcons): Shorten the Date field.
2376         * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
2377         into autoloading just because of a silly indirection.
2379 2014-05-12  Santiago Payà i Miralta  <santiagopim@gmail.com>
2381         * vc/vc-hg.el (vc-hg-unregister): New function.  (Bug#17454)
2383 2014-05-12  Glenn Morris  <rgm@gnu.org>
2385         * emacs-lisp/find-gc.el: Move to ../admin.
2387         * printing.el (pr-version):
2388         * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
2390         * net/browse-url.el (browse-url-mosaic):
2391         Create /tmp/Mosaic.PID as a private file.
2393 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2395         * emacs-lisp/nadvice.el: Support adding a given function multiple times.
2396         (advice--member-p): If name is given, only compare the name.
2397         (advice--remove-function): Don't stop at the first match.
2398         (advice--normalize-place): New function.
2399         (add-function, remove-function): Use it.
2400         (advice--add-function): Pass the name, if any, to
2401         advice--remove-function.
2403 2014-05-12  Philipp Rumpf  <prumpf@gmail.com>  (tiny change)
2405         * electric.el (electric-indent-post-self-insert-function): Don't use
2406         `pos' after modifying the buffer (bug#17449).
2408 2014-05-12  Stephen Berman  <stephen.berman@gmx.net>
2410         * calendar/todo-mode.el (todo-insert-item-from-calendar):
2411         Correct argument list to conform to todo-insert-item--basic.
2413 2014-05-12  Glenn Morris  <rgm@gnu.org>
2415         * files.el (cd-absolute): Test if directory is accessible
2416         rather than executable.  (Bug#17330)
2418         * progmodes/compile.el (recompile):
2419         Handle C-u M-x recompile from a non-compilation buffer.  (Bug#17444)
2421         * net/browse-url.el (browse-url-mosaic):
2422         Be careful when writing /tmp/Mosaic.PID.  (Bug#17428)
2423         This is CVE-2014-3423.
2425 2014-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2427         * mouse.el: Use the normal toplevel loop while dragging.
2428         (mouse-set-point): Handle multi-clicks.
2429         (mouse-set-region): Handle multi-clicks for drags.
2430         (mouse-drag-region): Update call accordingly.
2431         (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
2432         Use the normal event loop instead of a local while/read-event loop.
2433         (global-map): Remove redundant bindings for double/triple-mouse-1.
2434         * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
2435         Generate synthetic down events when the protocol only sends up events.
2436         (xterm-mouse-last): Remove.
2437         (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
2438         terminal parameter instead.
2439         (xterm-mouse--set-click-count): New function.
2440         (xterm-mouse-event): Detect/generate double/triple clicks.
2441         * reveal.el (reveal-close-old-overlays): Don't close while dragging.
2443         * info.el (Info-quoted): New face.
2444         (Info-mode-font-lock-keywords): New var.
2445         (Info-mode): Use it.
2447         * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
2448         are a hindrance for C-x C-e.
2450 2014-05-11  Leo Liu  <sdl.web@gmail.com>
2452         * net/rcirc.el (rcirc-sentinel): Fix last change.
2454 2014-05-08  Sam Steingold  <sds@gnu.org>
2456         * net/rcirc.el (rcirc-reconnect-delay): New user option.
2457         (rcirc-sentinel): Auto-reconnect to the server if
2458         `rcirc-reconnect-delay' is non-0 (but not more often than its
2459         value in case the host is off-line).
2461 2014-05-09  Eli Zaretskii  <eliz@gnu.org>
2463         * progmodes/grep.el (lgrep): Fix a typo in last commit.
2465 2014-05-09  Glenn Morris  <rgm@gnu.org>
2467         * files.el (file-expand-wildcards):
2468         * man.el (Man-support-local-filenames):
2469         * printing.el (pr-i-directory, pr-interface-directory):
2470         * progmodes/grep.el (lgrep, rgrep):
2471         * textmodes/ispell.el (ispell-call-process)
2472         (ispell-call-process-region, ispell-start-process)
2473         (ispell-init-process): Use file-accessible-directory-p.
2475 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2477         * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
2478         (xterm-mouse--read-event-sequence-1000): Return nil if something
2479         looks fishy.
2480         (xterm-mouse-event): Propagate it.
2481         (xterm-mouse-translate-1): Handle it.
2483 2014-05-08  Stephen Berman  <stephen.berman@gmx.net>
2485         * calendar/todo-mode.el (todo-insert-item--apply-args): When all
2486         four slots of the parameter list are filled, make sure to pass it
2487         to the argument list of todo-insert-item--basic.
2489 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2491         * emacs-lisp/package.el (package-compute-transaction): Topological sort.
2492         Add optional `seen' argument to detect and break infinite loops.
2494 2014-05-08  Eli Zaretskii  <eliz@gnu.org>
2496         * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
2497         (trace-unsafe, trace-use-tree): Make parentheses style be
2498         according to Emacs style.
2500 2014-05-08  Michael Albinus  <michael.albinus@gmx.de>
2502         * net/tramp-sh.el (tramp-remote-process-environment):
2503         Remove HISTFILE and HISTSIZE; it's too late to set them here.
2504         Add :version entry.
2505         (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
2506         Add "HISTFILE=/dev/null" to the shell's env arguments.  Do not send
2507         extra "PSx=..." commands.
2508         (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
2509         (Bug#17295)
2511         (tramp-uudecode): Replace the hard-coded temporary file name by a
2512         format specifier.
2513         (tramp-remote-coding-commands): Enhance docstring.
2514         (tramp-find-inline-encoding): Replace "%t" by a temporary file
2515         name.  (Bug#17415)
2516         This is CVE-2014-3424.
2518 2014-05-08  Glenn Morris  <rgm@gnu.org>
2520         * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
2521         (find-gc-source-files): Update some names.
2522         (trace-call-tree): Simplify and update.
2523         Avoid predictable temp-file names.  (http://bugs.debian.org/747100)
2524         This is CVE-2014-3422.
2526 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2528         * minibuffer.el (completion--try-word-completion): Revert fix for
2529         Bug#15980 (bug#17375).
2531         * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
2532         Always store button numbers in the same way in xterm-mouse-last;
2533         Don't burp is xterm-mouse-last is not set as expected.
2534         Never return negative indices.
2536 2014-05-08  Dmitry Gutov  <dgutov@yandex.ru>
2538         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2539         Backtrack one char if the global/char-literal var matcher hits
2540         inside a string.  The next char could be the beginning of an
2541         expression expansion.
2543 2014-05-08  Glenn Morris  <rgm@gnu.org>
2545         * help-fns.el (describe-function-1): Test for an autoload before a
2546         macro, since `macrop' works on autoloads.  (Bug#17410)
2548 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2550         * electric.el (electric-indent-functions-without-reindent): Add yaml.
2552         * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
2553         Make sure the new point we return is within the new string (bug#17239).
2555 2014-05-05  Daniel Colascione  <dancol@dancol.org>
2557         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2558         Port `gnu' pattern to rx.
2560 2014-05-05  Jarek Czekalski  <jarekczek@poczta.onet.pl>
2562         Remove unneeded prompt when closing a buffer with active
2563         emacsclient ("Buffer ... still has clients"), #16548.
2564         * server.el (server-start): Remove the only call to:
2565         (server-kill-buffer-query-function): Remove.
2567 2014-05-04  Leo Liu  <sdl.web@gmail.com>
2569         * calendar/diary-lib.el (calendar-chinese-month-name-array):
2570         Defvar to pacify compiler.
2572 2014-05-04  Eli Zaretskii  <eliz@gnu.org>
2574         * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
2576 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2578         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
2579         Use nil rather than `default' for the "default" appearance (bug#17388).
2580         * vc/ediff-util.el (ediff-inferior-compare-regions)
2581         (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
2582         a misleading `default' value when it's really a boolean.
2583         * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
2584         overlay is not visible.
2586 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
2588         * calendar/todo-mode.el (todo-edit-file): Use display-warning.
2589         (todo-menu): Uncomment and update.
2591 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
2593         * calendar/todo-mode.el: Reimplement item editing to have the same
2594         basic user interface as item insertion, and make small UI and
2595         larger internal improvements to the latter.
2596         (todo-insert-item): Add reference to the Todo mode user manual to
2597         the documentation string.
2598         (todo-insert-item--basic): Rename from todo-basic-insert-item and
2599         adjust all callers.  Change signature to combine diary and
2600         nonmarking arguments.  Incorporate functionality of deleted item
2601         copying command and add error checking.  Remove detailed
2602         descriptions of the arguments from the documentation string, since
2603         this is treated in the Todo mode user manual.
2604         (todo-copy-item, todo-edit-multiline-item)
2605         (todo-edit-done-item-comment, todo-edit-item-header)
2606         (todo-edit-item-time, todo-edit-item-date-from-calendar)
2607         (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
2608         (todo-edit-item-date-year, todo-edit-item-date-month)
2609         (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
2610         Remove.
2611         (todo-edit-item): Reimplement as wrapper command for
2612         todo-edit-item--next-key and make it distinguish done and not done
2613         todo items.
2614         (todo-edit-item--text): New function, replacing old command
2615         todo-edit-item and incorporating deleted commands
2616         todo-edit-multiline-item and todo-edit-done-item-comment.
2617         (todo-edit-item--header): Rename from todo-basic-edit-item-header.
2618         Use only numeric value of prefix argument.  Remove detailed
2619         descriptions of the arguments from the documentation string, since
2620         this is treated in the Todo mode user manual.
2621         (todo-edit-item--diary-inclusion): New function, replacing old
2622         command todo-edit-item-diary-inclusion and incorporating and fixing
2623         functionality of deleted command todo-edit-item-diary-nonmarking,
2624         making sure to remove todo-nondiary-marker when adding
2625         diary-nonmarking-symbol.
2626         (todo-edit-category-diary-inclusion): Make sure to delete
2627         diary-nonmarking-symbol when adding todo-nondiary-marker.
2628         (todo-edit-category-diary-nonmarking): Fix indentation.
2629         (todo-insert-item--parameters): Group diary and nonmarking
2630         parameters together.
2631         (todo-insert-item--apply-args): Adjust to signature of
2632         todo-insert-item--basic and incorporate copy parameter.
2633         Make small code improvements.
2634         (todo-insert-item--next-param): Improve prompt and adjust it to
2635         new parameter grouping.  Remove obsolete code.
2636         (todo-edit-item--param-key-alist)
2637         (todo-edit-item--date-param-key-alist)
2638         (todo-edit-done-item--param-key-alist): New defconsts.
2639         (todo-edit-item--prompt): New variable.
2640         (todo-edit-item--next-key): New function.
2641         (todo-key-bindings-t): Bind "e" to todo-edit-item.
2642         Remove bindings of deleted commands.
2644 2014-05-04  Leo Liu  <sdl.web@gmail.com>
2646         * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
2648 2014-05-04  Glenn Morris  <rgm@gnu.org>
2650         * allout-widgets.el (allout-widgets-tally)
2651         (allout-decorate-item-guides):
2652         * menu-bar.el (menu-bar-positive-p):
2653         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
2654         * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
2655         * progmodes/js.el (js--inside-param-list-p)
2656         (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
2657         * progmodes/prolog.el (region-exists-p):
2658         * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
2659         * textmodes/reftex-parse.el (reftex-using-biblatex-p):
2660         Doc fixes (replace `iff').
2662 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2664         * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
2666 2014-05-04  Leo Liu  <sdl.web@gmail.com>
2668         Support Chinese diary entries in calendar and diary.  (Bug#17393)
2669         * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
2670         (calendar-chinese-from-absolute-for-diary)
2671         (calendar-chinese-to-absolute-for-diary)
2672         (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
2673         (diary-chinese-list-entries): New functions to list and mark
2674         Chinese diary entries in the calendar window.
2675         (diary-chinese-anniversary)
2676         (diary-chinese-insert-anniversary-entry)
2677         (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
2678         (diary-chinese-insert-yearly-entry): New commands to insert
2679         Chinese diary entries.
2681         * calendar/diary-lib.el (diary-font-lock-keywords):
2682         Support font-locking Chinese dates.
2684         * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
2685         inserting Chinese diary entries.
2687         * calendar/calendar.el (diary-chinese-entry-symbol):
2688         New customizable variable.
2689         (calendar-mode-map): Add bindings for inserting Chinese diary
2690         entries.
2692 2014-05-03  Juri Linkov  <juri@jurta.org>
2694         * dired.el (dired-check-switches, dired-switches-recursive-p):
2695         New functions.  (Bug#17218)
2696         (dired-switches-escape-p, dired-move-to-end-of-filename):
2697         Use `dired-check-switches'.
2698         (dired-insert-old-subdirs, dired-build-subdir-alist)
2699         (dired-sort-R-check): Use `dired-switches-recursive-p'.
2701 2014-05-01  Barry O'Reilly  <gundaetiapo@gmail.com>
2703         * simple.el (undo-make-selective-list): New algorithm fixes
2704         incorrectness of position adjustments when undoing in region.
2705         (Bug#17235)
2706         (undo-elt-crosses-region): Make obsolete.
2707         (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
2708         New functions to adjust positions using undo-deltas.
2710 2014-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2712         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
2713         the last consecutive closing paren (bug#17345).
2715 2014-04-30  Reuben Thomas  <rrt@sc3d.org>
2717         * dired.el (dired-mode): make terminology for eXpunge command
2718         consistent.  (Bug#17276)
2720 2014-04-30  Eli Zaretskii  <eliz@gnu.org>
2722         * dired.el (dired-initial-position-hook, dired-initial-position):
2723         Doc string fixes.
2725 2014-04-30  Glenn Morris  <rgm@gnu.org>
2727         * mail/rmail.el (rmail-quit): Handle killed summaries.  (Bug#17283)
2729 2014-04-30  Matthias Dahl  <matthias.dahl@binary-island.eu>
2731         * faces.el (face-spec-recalc): Apply X resources only after the
2732         defface spec has been applied. Thus, X resources are no longer
2733         overriden by the defface spec which also fixes issues on win32 where
2734         the toolbar coloring was wrong because it is set through X resources
2735         and was (wrongfully) overriden.  (Bug#16694)
2737 2014-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2739         * textmodes/rst.el (electric-pair-pairs): Declare.
2740         (rst-mode): Set it (bug#17131).
2742 2014-04-30  Juri Linkov  <juri@jurta.org>
2744         * desktop.el (desktop-value-to-string): Let-bind `print-length'
2745         and `print-level' to nil.  (Bug#17351)
2747 2014-04-30  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
2749         * battery.el (battery-update): Handle the case where battery
2750         status is "N/A" (bug#17319).
2752 2014-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2754         * progmodes/ps-mode.el: Use SMIE.  Move string and comment recognition
2755         to syntax-propertize.
2756         (ps-mode-auto-indent): Mark as obsolete.
2757         (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
2758         (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
2759         word regexp operators.
2760         (ps-mode-map): Move initialization into declaration.  Remove binding
2761         for TAB, RET, >, ], and }.
2762         (ps-mode-syntax-table): Move initialization into declaration.
2763         Don't give word syntax to non-word chars.
2764         (ps-run-mode-map): Move initialization into declaration.
2765         (ps-mode-menu-main): Remove auto-indent entry.
2766         (ps-mode-smie-rules): New function.
2767         (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
2768         (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
2769         (ps-mode--string-syntax-table): New const.
2770         (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
2771         New functions.
2772         (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
2773         (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
2775 2014-04-27  Daniel Colascione  <dancol@dancol.org>
2777         * term/xterm.el (xterm-paste): Use large finite timeout when
2778         reading event to avoid putting keys in this-command-keys.
2780 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2782         * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
2783         (perl-syntax-propertize-function): Use it.  Extend handling of
2784         here-docs to the unquoted case.
2786 2014-04-25  Eli Zaretskii  <eliz@gnu.org>
2788         * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
2789         Use equal-including-properties to compare help-echo strings (bug#17331).
2791 2014-04-25  Leo Liu  <sdl.web@gmail.com>
2793         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
2794         Fix syntax for @.  (Bug#17325)
2796 2014-04-25  Daniel Colascione  <dancol@dancol.org>
2798         * emacs-lisp/cl.el (gv): Require gv early to break eager
2799         macro-expansion cycles.
2801 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2803         * simple.el (region-active-p): Check there's a mark (bug#17324).
2805         * simple.el (completion-list-mode-map): Use choose-completion for the
2806         mouse binding as well (bug#17302).
2807         (completion-list-mode, completion-setup-function): Adjust docstring and
2808         echo area message accordingly.
2809         * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
2810         calling convention of choose-completion.
2811         * comint.el (comint-dynamic-list-completions):
2812         * term.el (term-dynamic-list-completions): Accept choose-completion.
2814         * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
2815         &, |, +, - and * can't be a division (bug#17317).
2817         * term/xterm.el (xterm--version-handler): Don't use modern xterm
2818         features on gnome-terminal (bug#16988).
2820 2014-04-25  Thien-Thi Nguyen  <ttn@gnu.org>
2822         Improve Scheme font-locking for (define ((foo ...) ...) ...).
2824         * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
2825         the declared object, ignore zero or more parens, not zero or one.
2827 2014-04-24  Leo Liu  <sdl.web@gmail.com>
2829         * progmodes/xscheme.el (xscheme-expressions-ring)
2830         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
2831         (xscheme-control-g-disabled-p, xscheme-process-filter-state)
2832         (xscheme-allow-output-p, xscheme-prompt)
2833         (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
2835         * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
2836         Comment out unused functions.
2838 2014-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2840         * info.el: Use lexical-binding and cl-lib.
2841         Use defvar-local and setq-local instead of make-local-variable.
2842         (Info-apropos-matches): Avoid add-to-list.
2843         (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
2845 2014-04-24  Daniel Colascione  <dancol@dancol.org>
2847         * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
2849 2014-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2851         * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
2853 2014-04-22  Michael Heerdegen  <michael_heerdegen@web.de>
2855         * dired.el (dired-insert-set-properties): Do not consider
2856         subdirectory headings and empty lines to be information that
2857         `dired-hide-details-mode' should hide.  (Bug#17228)
2859 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
2861         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
2862         Remove test messages.
2863         (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
2864         and `target' twice.
2866 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2868         * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
2869         * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
2871         * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
2873 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
2875         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
2876         Set "IFS=" when using read builtin, in order to preserve spaces in
2877         the file name.  Add test messages for hunting a bug on hydra.
2878         (tramp-get-ls-command): Undo using "-b" argument.  It doesn't help.
2880 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2882         * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
2883         Don't prettify a word within a symbol.
2885 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
2887         * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
2888         possible.
2890 2014-04-22  Daniel Colascione  <dancol@dancol.org>
2892         * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
2893         use defun to define `function-put'.
2895 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2897         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
2898         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
2899         (lisp-mode-variables): Set font-lock-extra-managed-props.
2901         * emacs-lisp/byte-run.el (function-put): New function.
2902         (defun-declarations-alist): Use it.  Add `pure' and `side-effect-free'.
2903         * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
2904         (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
2905         Use them.
2907 2014-04-22  Daniel Colascione  <dancol@dancol.org>
2909         * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
2910         Add `full-p' parameter; when nil, call `macroexpand' instead of
2911         `macroexpand-all'.
2913         * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
2914         Improve docstrings.
2916         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
2917         Use lambda function values, not quoted lambdas.
2918         (byte-compile-recurse-toplevel): Remove extraneous &optional.
2920         * emacs-lisp/cl-macs.el
2921         (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
2922         (cl-struct-slot-value): Conditionally use aref or nth so that the
2923         compiler produces optimal code.
2925 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2927         * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
2928         (inline): Don't inline cl--set-elt.
2929         (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
2930         Define as inlinable instead.
2931         (cl-struct-set-slot-value): Remove.
2933         * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
2934         * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
2935         Use setf instead.
2937 2014-04-21  Daniel Colascione  <dancol@dancol.org>
2939         * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
2940         last two parameters after all.
2941         (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
2942         (cl--compiler-macro-assoc,cl-struct-slot-value)
2943         (cl-struct-set-slot-value): Stop using them.
2945 (2014-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2947         * image-mode.el (image-mode-window-put): Don't assume there's a `t'
2948         entry in image-mode-winprops-alist.
2950 2014-04-21  Daniel Colascione  <dancol@dancol.org>
2952         * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
2953         (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
2954         (byte-compile-toplevel-file-form): Use it.
2956         * emacs-lisp/cl-macs.el:
2957         (cl--loop-let): Properly destructure `while' clauses.
2959 2014-04-20  Daniel Colascione  <dancol@dancol.org>
2961         * vc/vc.el (vc-root-dir): New public autoloaded function for
2962         generically finding the current VC root.
2963         * vc/vc-hooks.el (vc-not-supported): New error.
2964         (vc-call-backend): Signal `vc-not-supported' instead of generic error.
2966 2014-04-20  Daniel Colascione  <dancol@dancol.org>
2968         * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
2969         argument.
2970         (cl--const-expr-val): cl--const-expr-val should macroexpand its
2971         argument in case we're inside a symbol-macrolet.
2972         (cl--do-arglist, cl--compiler-macro-typep)
2973         (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
2974         environment to `cl--const-expr-val'.
2975         (cl-struct-sequence-type,cl-struct-slot-info)
2976         (cl-struct-slot-offset, cl-struct-slot-value)
2977         (cl-struct-set-slot-value): New functions.
2979 2014-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2981         * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
2982         assignments such as "case=hello" (bug#17297).
2984 2014-04-18  Michael Albinus  <michael.albinus@gmx.de>
2986         * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
2987         Do not autoload.
2988         (tramp-file-name-handler, tramp-completion-file-name-handler):
2989         Revert patch from 2014-04-10, it isn't necessary anymore.
2990         (tramp-autoload-file-name-handler)
2991         (tramp-register-autoload-file-name-handlers): New defuns.
2992         (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
2993         (tramp-register-file-name-handlers): Remove also
2994         `tramp-autoload-file-name-handler' from `file-name-handler-list'.
2995         Do not autoload its invocation, but eval it after loading of 'tramp.
2997         * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
2999         * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
3001 2014-04-17  Daniel Colascione  <dancol@dancol.org>
3003         Add support for bracketed paste mode; add infrastructure for
3004         managing terminal mode enabling and disabling automatically.
3006         * xt-mouse.el:
3007         (xterm-mouse-mode): Simplify.
3008         (xterm-mouse-tracking-enable-sequence)
3009         (xterm-mouse-tracking-disable-sequence): New constants.
3010         (turn-on-xterm-mouse-tracking-on-terminal)
3011         (turn-off-xterm-mouse-tracking-on-terminal):
3012         Use tty-mode-set-strings and tty-mode-reset-strings terminal
3013         parameters instead of random hooks.
3014         (turn-on-xterm-mouse-tracking)
3015         (turn-off-xterm-mouse-tracking): Delete.
3017         * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
3018         (xterm-paste-ending-sequence): New constant.
3019         (xterm-paste): New command used for bracketed paste support.
3021         (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
3022         (terminal-init-xterm-bracketed-paste-mode): New function.
3023         (terminal-init-xterm): Call it.
3024         (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
3025         and tty-mode-reset-strings instead of random hooks.
3026         (xterm-turn-on-modify-other-keys)
3027         (xterm-turn-off-modify-other-keys)
3028         (xterm-remove-modify-other-keys): Delete obsolete functions.
3030         * term/screen.el: Rewrite to just use the xterm code.
3031         Add copyright notice.  Mention tmux.
3033 2014-04-17  Ian D  <dunni@gnu.org>  (tiny change)
3035         * image-mode.el (image-mode-window-put): Also update the property of
3036         the "default window".
3037         * doc-view.el (doc-view-new-window-function): If no window
3038         exists, move to the last known page.
3040 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3042         * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
3043         here-documents (bug#17262).
3045 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
3047         * term/pc-win.el (x-list-fonts, x-get-selection-value):
3048         Provide doc strings, as required by snarf-documentation.
3050 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3052         * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
3053         arg of overlays-at.  Use `invisible-p'.
3055         * obsolete/lucid.el (extent-at):
3056         * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
3057         overlays-at.
3058         (hfy-fontify-buffer): Remove unused var `orig-ovls'.
3060 2014-04-16  João Távora  <joaotavora@gmail.com>
3062         * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
3063         links.  (Bug#17217).
3065 2014-04-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3067         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
3068         Use mapc to loop over a vector.  (Bug#17257).
3070 2014-04-16  Michael Albinus  <michael.albinus@gmx.de>
3072         * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
3073         patch, there are new problems with file names containing spaces.
3074         Get rid of backticks.  (Bug#17238)
3076 2014-04-16  João Távora  <joaotavora@gmail.com>
3078         * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
3079         possible bug.
3081 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
3083         * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
3084         (blink-cursor-mode): Mention customization variables and the
3085         effect of 'blink-cursor-blinks'.
3087 2014-04-16  Barry O'Reilly  <gundaetiapo@gmail.com>
3089         * simple.el (undo): Prevent insertion of identity mapping into
3090         undo-equiv-table so as undo-only does not inf loop in the presence
3091         of consecutive nils in undo list.
3093 2014-04-16  Matthias Dahl  <matthias.dahl@binary-island.eu>
3095         * faces.el (make-face): Deprecate optional argument as it is no
3096         longer needed/used since the conditional X resources handling
3097         has been pushed down to make-face-x-resource-internal itself.
3098         (make-empty-face): Don't pass optional argument to make-face.
3100 2014-04-16  Karl Fogel  <kfogel@red-bean.com>
3102         * savehist.el (savehist-save): Remove workaround for a read-passwd
3103         bug that was fixed before 24.3.  Thanks to Juanma Barranquero for
3104         noticing that the shim was still present.
3106 2014-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3108         * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
3110 2014-04-14  Juanma Barranquero  <lekktu@gmail.com>
3112         * faces.el (face-set-after-frame-default): Remove unused local variable.
3114 2014-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3116         * progmodes/grep.el: Use lexical-binding.
3117         (grep-expand-template): Pass explicit lexical env to `eval'.
3118         (zrgrep): Let-bind grep-find-template explicitly.
3120         * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
3121         * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
3123 2014-04-12  Eli Zaretskii  <eliz@gnu.org>
3125         * international/characters.el <standard-case-table>: Add entries
3126         for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)
3127         Set category of Coptic characters be 'g' (Greek).
3129 2014-04-12  Leo Liu  <sdl.web@gmail.com>
3131         * progmodes/octave.el (completion-table-with-cache):
3132         Define if not available.
3133         (octave-goto-function-definition, octave-sync-function-file-names)
3134         (octave-find-definition-default-filename):
3135         Backquote upattern for compatibility.
3137 2014-04-12  Michael Albinus  <michael.albinus@gmx.de>
3139         * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
3140         name twice due to backticks.  (Bug#17238)
3142 2014-04-12  Glenn Morris  <rgm@gnu.org>
3144         * term/w32-win.el (x-win-suspend-error):
3145         * term/x-win.el (x-win-suspend-error): Sync docs.
3147 2014-04-12  Matthias Dahl  <matthias.dahl@binary-island.eu>
3149         * faces.el (make-face): Remove deprecated optional argument.
3150         The conditional application of X resources is handled directly by
3151         make-face-x-resource-internal since Emacs 24.4.
3152         (make-empty-face): Don't pass optional argument to make-face.
3154 2014-04-11  Glenn Morris  <rgm@gnu.org>
3156         * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport.  (Bug#16429)
3158 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3160         Ediff's overlay priorities cause more trouble than they solve.
3161         * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
3162         (ediff-highest-priority): Remove function (bug#17234).
3163         * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
3164         * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
3165         (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
3166         overlay priorities.
3168 2014-04-11  Feng Li  <fengli@gmail.com>  (tiny change)
3170         * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
3171         entry; use symbol boundaries to avoid mis-matches.
3173 2014-04-11  Michael Albinus  <michael.albinus@gmx.de>
3175         * net/tramp.el (tramp-file-name-handler)
3176         (tramp-completion-file-name-handler): Avoid recursive loading.
3178         * net/tramp-sh.el (tramp-make-copy-program-file-name):
3179         Quote result also locally.
3181 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3183         * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
3184         Remove left-over code.
3186         * newcomment.el (comment-indent-new-line): Sink code where it's used.
3187         Reuse the previous comment's indentation unconditionally if it's on its
3188         own line.
3190 2014-04-09  Daniel Colascione  <dancol@dancol.org>
3192         * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
3193         `no-syntax-crossing' arguments.  Forward to `up-list'.
3194         (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
3195         Implement logic for escaping from strings.  Use narrowing to deal
3196         with corner cases.
3198 2014-04-09  Leo Liu  <sdl.web@gmail.com>
3200         * net/rcirc.el (rcirc-connection-info): New variable.
3201         (rcirc-connect): Use it to store connection info.
3202         (rcirc-buffer-process): Avoid get-buffer-process which returns nil
3203         for killed process.
3204         (rcirc-cmd-reconnect): New command.  (Bug#17045)
3205         (rcirc-mode, set-rcirc-encode-coding-system)
3206         (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
3208 2014-04-09  Daniel Colascione  <dancol@dancol.org>
3210         * emacs-lisp/cl-indent.el: Add comment claiming
3211         facility is also good for elisp.
3212         (lisp-indent-find-method): New function.
3213         (common-lisp-indent-function): Recognize cl-loop.
3214         (common-lisp-indent-function-1): Recognize cl constructs; use
3215         `lisp-indent-find-method' instead of `get' directly.
3216         (if): Use else-body style for elisp.
3218 2014-04-09  Dmitry Gutov  <dgutov@yandex.ru>
3220         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
3221         Module methods.  (Bug#17216)
3223 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3225         * help.el (describe-bindings): Fix buffer handling (bug#17210).
3226         (describe-bindings-internal): Mark obsolete.
3228 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3230         * subr.el (with-silent-modifications): Don't bind deactivate-mark,
3231         buffer-file-name, and buffer-file-truename any more.
3233 2014-04-08  Leo Liu  <sdl.web@gmail.com>
3235         Use lexical-binding and require cl-lib.
3236         * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
3237         (rcirc-handler-generic, rcirc-fill-paragraph)
3238         (rcirc-format-response-string, rcirc-target-buffer)
3239         (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
3240         (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
3241         (rcirc-ctcp-sender-PING, rcirc-browse-url)
3242         (rcirc-markup-timestamp, rcirc-markup-attributes)
3243         (rcirc-markup-my-nick, rcirc-markup-urls)
3244         (rcirc-markup-bright-nicks, rcirc-markup-fill)
3245         (rcirc-check-auth-status, rcirc-handler-WALLOPS)
3246         (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
3247         (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
3248         (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
3249         (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
3250         (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
3251         (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
3252         (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
3253         (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
3254         (rcirc-handler-CTCP-response): Fix unused arguments warnings and
3255         use cl-lib.
3257 2014-04-07  João Távora  <joaotavora@gmail.com>
3259         * elec-pair.el (electric-pair--syntax-ppss):
3260         When inside comments parse from comment beginning.
3261         (electric-pair--balance-info): Fix typo in comment.
3262         (electric-pair--in-unterminated-string-p): Delete.
3263         (electric-pair--unbalanced-strings-p): New function.
3264         (electric-pair-string-bound-function): New var.
3265         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
3266         according to `electric-pair--in-unterminated-string-p'
3268         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
3269         Inhibit quote pairing if point-max is inside an unterminated string.
3270         (electric-pair--looking-at-unterminated-string-p): Delete.
3271         (electric-pair--in-unterminated-string-p): New function.
3273 2014-04-07  Glenn Morris  <rgm@gnu.org>
3275         * shell.el (shell-directory-tracker):
3276         Go back to just ignoring failures.  (Bug#17159)
3278 2014-04-07  João Távora  <joaotavora@gmail.com>
3280         Fix `electric-pair-delete-adjacent-pairs' in modes binding
3281         backspace. (bug#16981)
3282         * elec-pair.el (electric-pair-backward-delete-char): Delete.
3283         (electric-pair-backward-delete-char-untabify): Delete.
3284         (electric-pair-mode-map): Bind backspace to a menu item filtering
3285         a new `electric-pair-delete-pair' command.
3286         (electric-pair-delete-pair): New command.
3288         * progmodes/python.el (python-electric-pair-string-delimiter):
3289         Fix triple-quoting electricity.  (Bug#17192)
3291         * elec-pair.el (electric-pair-post-self-insert-function):
3292         Don't skip whitespace when `electric-pair-text-pairs' and
3293         `electric-pair-pairs' were used. syntax to
3294         electric-pair--skip-whitespace.  (Bug#17183)
3296 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
3298         * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
3299         "<F>".  (Bug#17199)
3301 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3303         * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
3304         (mpc--status-idle-timer-run): Use mpc--status-timer-run.
3306 2014-04-07  Glenn Morris  <rgm@gnu.org>
3308         * help.el (view-lossage): Doc tweak.
3310 2014-04-07  Matthias Dahl  <ml_emacs-lists@binary-island.eu>
3312         * faces.el (face-spec-recalc): Call make-face-x-resource-internal
3313         only when inhibit-x-resources is nil, and do that earlier in the
3314         function.  Doc fix.  (Bug#16694)
3315         (face-spec-choose): Accept additional optional argument, whose
3316         value is returned if no matching attributes are found.
3317         (face-spec-recalc): Use the new optional argument when calling
3318         face-spec-choose.  (Bug#16378)
3319         (make-face-x-resource-internal): Do nothing when
3320         inhibit-x-resources is non-nil.  Don't touch the default face if
3321         reversed video is given--as was done in previous versions of Emacs.
3322         (face-set-after-frame-default): Don't call
3323         make-face-x-resource-internal here.  (Bug#16434)
3325 2014-04-07  Tassilo Horn  <tsdh@gnu.org>
3327         * doc-view.el (doc-view-bookmark-jump):
3328         Use `bookmark-after-jump-hook' to jump to the right page after the
3329         buffer is shown in a window.  (bug#16090)
3331 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
3333         * international/characters.el (mirroring): Fix last change:
3334         instead of loading uni-mirrored.el explicitly, do that implicitly
3335         by creating the 'mirroring' uniprop table.  This avoids announcing
3336         the loading of uni-mirrored.el.
3338 2014-04-07  Glenn Morris  <rgm@gnu.org>
3340         * files.el (buffer-stale--default-function)
3341         (buffer-stale-function, revert-buffer--default):
3342         * autorevert.el (auto-revert-buffers): Doc tweaks.
3344 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
3346         * international/characters.el: Preload uni-mirrored.el.  (Bug#17169)
3348 2014-04-07  Glenn Morris  <rgm@gnu.org>
3350         * files.el (make-backup-file-name-function)
3351         (make-backup-file-name, make-backup-file-name--default-function)
3352         (make-backup-file-name-1, find-backup-file-name)
3353         (revert-buffer-function, revert-buffer-insert-file-contents-function)
3354         (buffer-stale--default-function, buffer-stale-function)
3355         (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
3356         (revert-buffer, revert-buffer--default)
3357         (revert-buffer-insert-file-contents--default-function):
3358         Doc fixes related to defaults no longer being nil.
3359         (make-backup-file-name-function): Bump :version.
3360         Restore nil as a valid but deprecated custom type.
3362 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3364         * progmodes/perl-mode.el (perl-syntax-propertize-function):
3365         Handle $' used as a variable (bug#17174).
3367         * progmodes/perl-mode.el (perl-indent-new-calculate):
3368         Handle forward-sexp failure (bug#16985).
3369         (perl-syntax-propertize-function): Add "foreach" and "for" statement
3370         modifiers introducing expressions (bug#17116).
3372 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3374         * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
3376 2014-04-05  Leo Liu  <sdl.web@gmail.com>
3378         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3379         Add define-compilation-mode.
3381 2014-04-04  João Távora  <joaotavora@gmail.com>
3383         * elec-pair.el (electric-pair--syntax-ppss): When inside comments
3384         parse from comment beginning.
3385         (electric-pair--balance-info): Fix typo in comment.
3386         (electric-pair--in-unterminated-string-p): Delete.
3387         (electric-pair--unbalanced-strings-p): New function.
3388         (electric-pair-string-bound-function): New var.
3389         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
3390         according to `electric-pair--in-unterminated-string-p'.
3392 2014-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3394         * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
3395         Move declaration before first use.
3396         (reftex-move-to-next-arg): Silence compiler warning.
3398 2014-04-04  Joost Kremers  <joostkremers@fastmail.fm>  (tiny change)
3400         * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
3401         Use `window-total-width' instead of `window-width'.
3403 2014-04-03  Daniel Colascione  <dancol@dancol.org>
3405         * subr.el (set-transient-map): Remove rms's workaround entirely;
3406         use new `suspicious-object' subr to mark our lambda for closer
3407         scrutiny during gc.
3409 2014-04-02  Richard Stallman  <rms@gnu.org>
3411         * subr.el (set-transient-map): Comment out previous change.
3413 2014-04-02  Glenn Morris  <rgm@gnu.org>
3415         * menu-bar.el (menu-bar-file-menu):
3416         * vc/ediff.el (ediff-current-file):
3417         Update for revert-buffer-function no longer being nil by default.
3419         * simple.el (command-execute): Respect nil disabled-command-function.
3421 2014-04-02  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
3423         * simple.el (command-execute): Do not execute the command when it
3424         is disabled; fixes thinko in 2013-02-20 conversion from C.  (Bug#17151)
3426 2014-04-02  Juri Linkov  <juri@jurta.org>
3428         * dired-aux.el (dired-compress-file): Don't use string-match-p
3429         because its match data is used afterwards.
3431 2014-04-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3433         * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
3434         0 like nil.
3436 2014-04-02  João Távora  <joaotavora@gmail.com>
3438         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
3439         Inhibit quote pairing if point-max is inside an unterminated string.
3440         (electric-pair--looking-at-unterminated-string-p):
3441         Delete.
3442         (electric-pair--in-unterminated-string-p): New function.
3444 2014-04-01  Daniel Colascione  <dancol@dancol.org>
3446         * minibuffer.el (minibuffer-complete): Prevent assertion failure
3447         when trying to complete the prompt.
3449 2014-03-31  Leo Liu  <sdl.web@gmail.com>
3451         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
3452         Refactor out eldoc-documentation-function-default.
3453         (eldoc-documentation-function-default): New function.
3454         (eldoc-documentation-function): Change value.
3456 2014-03-31  Glenn Morris  <rgm@gnu.org>
3458         * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
3460         * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
3461         (vhdl-compose-components-package, vhdl-compose-configuration):
3462         Abbreviate default-directory (missing from some previous upstream sync).
3464 2014-03-31  Reto Zimmermann  <reto@gnu.org>
3466         Sync with upstream vhdl mode v3.35.2.
3467         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
3468         (top-level): No longer require assoc.
3469         (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
3470         New functions.  Use throughout to replace aget etc.
3471         (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
3472         (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
3473         (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
3474         (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
3475         (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
3476         except `vhdl-compiler'.
3477         (vhdl-error-regexp-add-emacs): Remove all other compilers,
3478         when appropriate.
3480 2014-03-31  Glenn Morris  <rgm@gnu.org>
3482         * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
3483         Revert 2014-03-26 merge goof; go back to using defalias.
3485 2014-03-30  Daniel Colascione  <dancol@dancol.org>
3487         * comint.el (comint-send-input):
3488         Deactivate completion-in-region-mode before we send comint input.
3489         (Bug#17139).
3491         * simple.el (keyboard-quit): Deactivate completion-in-region-mode
3492         on keyboard-quit.
3494 2014-03-29  Glenn Morris  <rgm@gnu.org>
3496         * textmodes/reftex.el: Manage most autoloads automatically.
3497         * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
3498         * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
3499         * textmodes/reftex-index.el, textmodes/reftex-parse.el:
3500         * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
3501         * textmodes/reftex-toc.el: Set generated-autoload-file,
3502         and add autoload cookies for reftex.el.
3503         * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
3505 2014-03-28  Glenn Morris  <rgm@gnu.org>
3507         * cus-start.el (report-emacs-bug-address): Set custom properties.
3508         * mail/emacsbug.el (report-emacs-bug-address):
3509         Variable is now defined in emacs.c.
3511         * mail/emacsbug.el (report-emacs-bug):
3512         Include system-configuration-features.
3514 2014-03-28  Michal Nazarewicz  <mina86@mina86.com>
3516         * simple.el (cycle-spacing): Never delete spaces on first run by
3517         default, but do so in a new 'fast mode and if there are already
3518         N spaces (the previous behavior).
3519         Compare N with its value in previous invocation so that changing
3520         prefix argument restarts `cycle-spacing' sequence.
3521         The idea is that with this change, binding M-SPC to
3522         `cycle-spacing' should not introduce any changes in behavior of
3523         the binding so long as users do not type M-SPC twice in a raw with
3524         the same prefix argument or lack thereof.
3526 2014-03-28  Glenn Morris  <rgm@gnu.org>
3528         * faces.el (term-file-aliases): New variable.
3529         (tty-run-terminal-initialization): Respect term-file-aliases.
3530         * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
3531         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
3532         * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
3534 2014-03-27  Glenn Morris  <rgm@gnu.org>
3536         * startup.el (inhibit-startup-hooks): Doc tweak.
3537         (normal-top-level): Simplify running of hooks.
3538         For window-setup-hook, respect inhibit-startup-hooks.
3539         (command-line-1): Don't set window-setup-hook to nil.
3541         Allow selective autoloading from obsolete/ directory.
3542         * Makefile.in (obsolete-autoloads): New rule.
3543         (autoloads): Run obsolete-autoloads.
3544         * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
3545         * simple.el (iswitchb-mode): Remove hand-written autoloads.
3547 2014-03-27  Dmitry Gutov  <dgutov@yandex.ru>
3549         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3550         Highlight special globals with font-lock-builtin-face.  (Bug#17057)
3552         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3553         Don't propertize `?' or `!' as symbol constituent when after
3554         colon.  (Bug#17097)
3556 2014-03-27  Juanma Barranquero  <lekktu@gmail.com>
3558         * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
3559         which is no longer needed and causes trouble in GTK builds (bug#17046).
3561         * emacs-lisp/package-x.el (package--archive-contents-from-url):
3562         Use url-insert-file-contents; package-handle-response no longer exists.
3564 2014-03-26  Daniel Colascione  <dancol@dancol.org>
3566         * simple.el (process-menu-mode-map): New variable.
3567         (process-menu-delete-process): New command.
3569 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
3571         * emacs-lisp/package.el: Fix bug#16733 (again).
3572         (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
3573         (url-http-target-url): Remove unused declarations.
3574         (package-handle-response): Remove.
3575         (package--with-work-buffer): Use url-insert-file-contents and simplify.
3576         (package--download-one-archive): Use current-buffer instead of
3577         dynamic binding of `buffer'.
3578         (describe-package-1): Do not decode readme-string.
3580 2014-03-26  Michael Albinus  <michael.albinus@gmx.de>
3582         * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
3584         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
3585         from 2014-03-07, it decreases performance unnecessarily.  Let-bind
3586         `remote-file-name-inhibit-cache' to nil in the second pass.
3587         (tramp-find-executable): Do not call "which" on SunOS.
3588         (tramp-send-command-and-check): Fix docstring.
3589         (tramp-do-copy-or-rename-file-directly): In the `rename' case,
3590         check whether source directory has set the sticky bit.
3592 2014-03-26  Barry O'Reilly  <gundaetiapo@gmail.com>
3594         * simple.el (primitive-undo): Only process marker adjustments
3595         validated against their corresponding (TEXT . POS).  Issue warning
3596         for lone marker adjustments in undo history.  (Bug#16818)
3597         (undo-make-selective-list): Add marker adjustments to selective
3598         undo list based on whether their corresponding (TEXT . POS) is in
3599         the region.  Remove variable adjusted-markers, which was unused
3600         and only non nil during undo-make-selective-list.
3601         (undo-elt-in-region): Return nil when passed a marker adjustment
3602         and explain in function doc.
3604 2014-03-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
3606         * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
3608 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
3610         * progmodes/ruby-mode.el (ruby-expression-expansion-re):
3611         Match special global variables without curlies, too.
3612         (ruby-font-lock-keywords): Simplify the matcher for special global
3613         variables.  Don't require a non-word character after the variable.
3614         (Bug#17057)
3616 2014-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3618         * simple.el (redisplay-highlight-region-function): Increase priority of
3619         overlay to make sure boundaries are visible (bug#15899).
3621 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
3623         * frameset.el (frameset--initial-params): Fix typo in parameter name.
3624         (frameset-restore): Compare display strings with equal.
3626         * frame.el (make-frame): Don't quote display name in error message,
3627         it is already a string.
3629 2014-03-26  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3631         * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
3632         the password.
3634 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
3636         * emacs-lisp/package.el (package--add-to-archive-contents):
3637         Include already installed and built-in packages in
3638         `package-archive-contents'.
3639         (package-install): Don't include already installed packages in the
3640         options during interactive invocation.  (Bug#16762)
3641         (package-show-package-list): If the buffer is already displayed in
3642         another window, switch to that window.
3644 2014-03-26  Reto Zimmermann  <reto@gnu.org>
3646         Sync with upstream vhdl mode v3.35.1.
3647         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
3648         (vhdl-compiler-alist): Doc fix.
3649         (vhdl-goto-line): Remove.
3650         (vhdl-mode-abbrev-table-init): Add XEmacs compat.
3651         (vhdl-mode) <paragraph-start>: Fix value.
3652         (vhdl-fix-statement-region): Not `for' in wait-statement.
3653         (vhdl-beautify-region): Also (un)tabify.
3654         (vhdl-get-visible-signals):
3655         Scan declarative part of generate statements.
3656         (vhdl-template-record): Fix indentation for record type declaration.
3657         (vhdl-expand-abbrev, vhdl-expand-paren):
3658         Revert to using fset again rather than defalias.
3659         (vhdl-scan-directory-contents): Tweak.
3660         (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
3661         (vhdl-compose-components-package):
3662         Replace vhdl-goto-line with forward-line.
3663         (top-level): Tweak speedbar frame selection.
3664         (vhdl-generate-makefile-1): Support for compilers with no
3665         unit-to-file name mapping (create directory with dummy files).
3667 2014-03-26  Wilson Snyder  <wsnyder@wsnyder.org>
3669         Sync with upstream verilog-mode revision 702457d.
3670         * progmodes/verilog-mode.el (verilog-mode-version): Update.
3671         (create-lockfiles): Declare.
3672         (verilog-read-decls): Fix module header imports, bug709.
3673         Reported by Victor Lau.
3674         Fix parsing 'var' in AUTOs, msg1294.  Reported by Dominique Chen.
3675         (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
3676         interface-only modules, bug721.  Reported by Dean Hoyt.
3678 2014-03-26  Glenn Morris  <rgm@gnu.org>
3680         * obsolete/gulp.el: Move here from emacs-lisp/.
3682         * files.el (lock-buffer, unlock-buffer, file-locked-p):
3683         Remove fallback aliases, since they are always defined now.
3685 2014-03-24  Daniel Colascione  <dancol@dancol.org>
3687         * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
3688         instead of cl-loop search function.
3690 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
3692         * calendar/parse-time.el (parse-time-iso8601-regexp)
3693         (parse-iso8601-time-string): Copied from `url-dav' so that we can use
3694         it more generally.
3696 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
3698         * net/dns.el (network-interface-list): Define for XEmacs.
3700 2014-03-23  Magnus Henoch  <magnus.henoch@gmail.com>
3702         * net/dns.el (dns-servers-up-to-date-p): New function to see whether
3703         the network interfaces changed.
3704         (dns-query): Use it to flush the data.
3706 2014-03-23  Juanma Barranquero  <lekktu@gmail.com>
3708         * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
3710 2014-03-23  Daniel Colascione  <dancol@dancol.org>
3712         Change subword-mode to use `find-word-boundary-function-table' and
3713         replace `capitalized-words-mode'.  Also, convert to lexical
3714         binding.
3716         * progmodes/cap-words.el: Delete now-obsolete file.
3717         * progmodes/subword.el: Reimplement using
3718         `find-word-boundary-function-table'.
3719         (subword-mode-map): Hollow out.
3720         (capitalized-words-mode): Define as obsolete alias for
3721         `subword-mode'.
3722         (subword-mode, superword-mode): Tweak documentation to reflect new
3723         implementation; call `subword-setup-buffer'.
3724         (subword-forward, subword-capitalize): Add underscore to indicate
3725         unused variable.
3726         (subword-find-word-boundary-function-table): New constant.
3727         (subword-empty-char-table): New constant.
3728         (subword-setup-buffer): New function.
3729         (subword-find-word-boundary): New function.
3731 2014-03-23  Daniel Colascione  <dancol@dancol.org>
3733         * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
3734         list to look for keyword arguments instead of `memq', fixing
3735         (Bug#3647) --- unfortunately, only for freshly-compiled code.
3736         Please make bootstrap.
3738 2014-03-22  Glenn Morris  <rgm@gnu.org>
3740         * dired.el (dired-read-regexp): Make obsolete.
3741         (dired-mark-files-regexp, dired-mark-files-containing-regexp)
3742         (dired-flag-files-regexp):
3743         * dired-aux.el (dired-mark-read-regexp):
3744         * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
3746         * startup.el (fancy-startup-text):
3747         * help.el (describe-gnu-project): Visit online info about GNU project.
3749         * help-fns.el (help-fns--interactive-only): New function.
3750         (help-fns-describe-function-functions): Add the above function.
3751         * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
3752         (next-line, previous-line): Remove hand-written interactive-only
3753         information from doc strings, it is auto-generated now.
3754         * bookmark.el (bookmark-write):
3755         * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
3756         (epa-mail-import-keys): Mark interactive-only,
3757         and remove hand-written interactive-only information from doc strings.
3758         * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
3759         (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
3760         * files.el (not-modified):
3761         * simple.el (mark-whole-buffer): Mark interactive-only.
3763         * emacs-lisp/byte-run.el (defun-declarations-alist):
3764         Add interactive-only.  Doc tweak.
3765         (macro-declarations-alist): Doc tweak.
3766         * subr.el (declare): Doc tweak (add xref to manual).
3767         * comint.el (comint-run):
3768         * files.el (insert-file-literally, insert-file):
3769         * replace.el (replace-string, replace-regexp):
3770         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
3771         (delete-forward-char, goto-line, insert-buffer, next-line)
3772         (previous-line): Set interactive-only via declare.
3774 2014-03-22  Dmitry Gutov  <dgutov@yandex.ru>
3776         * emacs-lisp/package.el (package-desc): Use the contents of the
3777         quoted form, not its cdr.  (Bug#16873)
3779 2014-03-22  Juanma Barranquero  <lekktu@gmail.com>
3781         * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
3782         benefit of doc.c; change parameter profile to match the X function.
3784 2014-03-22  Leo Liu  <sdl.web@gmail.com>
3786         * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
3787         (temp-buffer-show-hook): Remove help-mode-finish.  (Bug#16038)
3789 2014-03-21  Richard Stallman  <rms@gnu.org>
3791         * battery.el (battery-linux-sysfs): Search for each field
3792         from the beginning of the buffer.
3794         * subr.el (set-transient-map): Clear out function and value
3795         of the temporary symbol when we're done with it.
3797         * mail/rmailsum.el (rmail-summary-delete-forward):
3798         Optimize case of reaching end and handling count.
3799         (rmail-summary-mark-deleted): Optimize when N is current msg.
3800         Don't create new summary line.
3801         (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
3802         (rmail-summary-undelete-many): Rewrite for speed.
3803         (rmail-summary-msg-number): New function.
3805         * mail/rmail.el (rmail-delete-message): Update summary.
3806         (rmail-undelete-previous-message): Handle repeat count arg.
3807         (rmail-delete-backward, rmail-delete-forward): Likewise.
3809 2014-03-21  Daniel Colascione  <dancol@dancol.org>
3811         * mail/emacsbug.el (report-emacs-bug): Include memory usage
3812         information in bug reports.
3814 2014-03-21  Michael Albinus  <michael.albinus@gmx.de>
3816         * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
3817         and `tramp-copy-env'.
3819         * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
3820         (tramp-maybe-open-connection): Handle `tramp-login-env'.
3822 2014-03-21  Glenn Morris  <rgm@gnu.org>
3824         * electric.el (electric-indent-post-self-insert-function): Add doc.
3826 2014-03-21  Dmitry Gutov  <dgutov@yandex.ru>
3828         * emacs-lisp/package.el (package-compute-transaction):
3829         Use `version-list-<=' to compare the requirement version against
3830         the version of package already to be installed.  Update the error
3831         message.  (Bug#16826)
3833         * progmodes/ruby-mode.el (ruby-smie-rules):
3834         Add indentation rule for ` @ '.  (Bug#17050)
3836 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
3838         * align.el (align-regexp): Remove superfluous backslash.
3840         * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
3841         (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
3842         (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
3843         Fix docstring typos.
3844         (ffap-next): Use C-u in docstring.
3845         (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
3846         (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
3847         Remove superfluous backslashes.
3848         (ffap-string-at-point): Reflow docstring.
3850         * server.el (server-host): Reflow docstring.
3851         (server-unload-function): Fix docstring typo.
3852         (server-eval-at): Remove superfluous backslash.
3854         * skeleton.el (skeleton-insert): Remove superfluous backslash.
3855         (skeleton-insert): Doc fix.
3856         (skeleton-insert): Reflow docstring.
3858         * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
3859         (tty-color-approximate, tty-color-by-index, tty-color-values)
3860         (tty-color-desc): Remove superfluous backslashes.
3862 2014-03-21  Glenn Morris  <rgm@gnu.org>
3864         * cus-start.el (history-length): Bump :version.
3866         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
3867         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
3868         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
3869         Don't set `make-backup-files'.
3871         * info.el (info--prettify-description): New function,
3872         to give info-finder descriptions consistent case, punctuation.
3873         (Info-finder-find-node): Use it.  Sort packages.
3874         Refer to "description" rather than "commentary".
3876 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
3878         * frameset.el (frameset--print-register): New function.
3879         (frameset-to-register): Use it.
3881 2014-03-20  Juanma Barranquero  <lekktu@gmail.com>
3883         * progmodes/hideif.el (hif-string-to-number): New function.
3884         (hif-tokenize): Use it to understand non-decimal floats.
3886         * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
3888         * skeleton.el (skeleton-autowrap): Mark as obsolete.  Doc fix.
3890 2014-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3892         * electric.el (electric-newline-and-maybe-indent): New command.
3893         Bind it globally to C-j.
3894         (electric-indent-mode): Don't mess with the global map any more.
3895         Don't drop the post-self-insert-hook is some buffer is still using it
3896         (bug#16770).
3898         * bindings.el (global-map): Remove C-j binding.
3900         * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
3901         the docstring of functions advised before dumping (bug#16993).
3903 2014-03-19  Stefan-W. Hahn  <stefan.hahn@s-hahn.de>  (tiny change)
3905         * ps-print.el (ps-generate-postscript-with-faces):
3906         Explicitly deactivate the mark (bug#16866).
3907         * simple.el (deactivate-mark): Update region highlight.
3909 2014-03-19  Juanma Barranquero  <lekktu@gmail.com>
3911         * emacs-lisp/package.el (describe-package-1):
3912         Decode commentary (bug#16733).
3914 2014-03-18  Juanma Barranquero  <lekktu@gmail.com>
3916         * custom.el (defcustom): Doc fix: recommend avoiding destructive
3917         modification of the value argument of :set (bug#16755).
3919 2014-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3921         * simple.el (newline-and-indent): Do autofill (bug#17031).
3923 2014-03-18  Dmitry Gutov  <dgutov@yandex.ru>
3925         * newcomment.el (comment-normalize-vars): Only add escaping check
3926         to `comment-start-skip' if not `comment-use-syntax'.  (Bug#16971)
3927         (comment-beginning): Use `narrow-to-region' instead of moving back
3928         one character.
3929         (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
3930         (comment-start-skip): Update the docstring.
3932 2014-03-18  Richard Stallman  <rms@gnu.org>
3934         * dired.el (dired-display-file): Force use of other window.
3936 2014-03-18  Daniel Colascione  <dancol@dancol.org>
3938         * startup.el (tty-handle-args): Remove debug message from 2007.
3940 2014-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3942         * emacs-lisp/nadvice.el (advice--interactive-form): New function.
3943         (advice--make-interactive-form): Use it to avoid (auto)loading function.
3944         (advice--make-1, advice-add, advice-remove):
3945         Remove braindead :advice-pending hack.
3947 2014-03-17  Glenn Morris  <rgm@gnu.org>
3949         * calendar/calendar.el (calendar-generate-month): Apply weekend
3950         face to the right days; fixes 2013-08-06 change.  (Bug#17028)
3952 2014-03-17  Michael Albinus  <michael.albinus@gmx.de>
3954         * net/tramp.el (tramp-action-out-of-band): Read pending output.
3955         (tramp-call-process): Trace also DESTINATION.
3957         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3958         Quote file names when they are local.  Remove superfluous trace.
3960 2014-03-17  Dmitry Gutov  <dgutov@yandex.ru>
3962         * newcomment.el (comment-beginning): If `comment-start-skip'
3963         doesn't match, move back one char and try again.  (Bug#16971)
3965         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3966         Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
3967         Set `comment-start-skip' to a simpler value that doesn't try to
3968         check if the semicolon is escaped (this is handled by
3969         `syntax-ppss' now).  (Bug#16971)
3971         * progmodes/scheme.el (scheme-mode-variables): Same.
3973 2014-03-16  Martin Rudalics  <rudalics@gmx.at>
3975         Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
3976         * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
3977         current (Bug#16816, Bug#17007).
3978         (with-current-buffer-window): New macro doing the same as
3979         `with-temp-buffer-window' but with BUFFER-OR-NAME current.
3980         * help.el (help-print-return-message): Warn in doc-string to not
3981         use this in `with-help-window'.
3982         (describe-bindings-internal): Call `describe-buffer-bindings'
3983         from within help buffer.  See Juanma's scenario in (Bug#16816).
3984         (with-help-window): Update doc-string.
3985         * dired.el (dired-mark-pop-up):
3986         * files.el (save-buffers-kill-emacs):
3987         * register.el (register-preview): Use `with-current-buffer-window'
3988         instead of `with-temp-buffer-window'.
3990 2014-03-16  Juanma Barranquero  <lekktu@gmail.com>
3992         * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
3993         Implement inserting into current buffer, documented in their docstrings.
3994         (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
3995         (rst-section-tree-point, rst-forward-section, rst-indent)
3996         (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
3997         (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
3998         (rst-font-lock-handle-adornment-pre-match-form)
3999         (rst-repeat-last-character): Reflow docstrings.
4000         (rst-preferred-adornments, rst-update-section, rst-find-title-line)
4001         (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
4002         (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
4003         (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
4004         Fix docstring typos.
4005         (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
4006         (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
4007         (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
4009 2014-03-15  Juanma Barranquero  <lekktu@gmail.com>
4011         * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
4012         for compatibility with other ports.
4013         (ns-initialize-window-system): Use it.  It is set in term/common-win.el
4014         from the -xrm command line argument, but in the Nextstep port its value
4015         is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
4017         * progmodes/python.el (defconst, python-syntax-count-quotes)
4018         (python-indent-region, python-indent-shift-right)
4019         (python-indent-dedent-line-backspace, python-nav-backward-sexp)
4020         (python-nav-backward-sexp-safe, python-nav-backward-up-list)
4021         (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
4022         (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
4023         (inferior-python-mode, python-shell-make-comint, run-python-internal)
4024         (python-shell-buffer-substring, python-shell-send-buffer)
4025         (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
4026         (python-completion-complete-at-point, python-fill-docstring-style)
4027         (python-eldoc-function, python-imenu-format-item-label)
4028         (python-imenu-format-parent-item-label)
4029         (python-imenu-format-parent-item-jump-label)
4030         (python-imenu--build-tree, python-imenu-create-index)
4031         (python-imenu-create-flat-index): Fix docstring typos.
4032         (python-indent-context, python-shell-prompt-regexp, run-python):
4033         Remove superfluous backslashes.
4034         (python-indent-line, python-nav-beginning-of-defun)
4035         (python-shell-get-buffer, python-shell-get-process)
4036         (python-info-current-defun, python-info-current-line-comment-p)
4037         (python-info-current-line-empty-p, python-util-popn): Doc fixes.
4038         (python-indent-post-self-insert-function, python-shell-send-file)
4039         (python-shell-completion-get-completions)
4040         (python-shell-completion-complete-or-indent)
4041         (python-eldoc--get-doc-at-point): Reflow docstrings.
4043 2014-03-14  Glenn Morris  <rgm@gnu.org>
4045         * emacs-lisp/package.el (package-menu-mode-map):
4046         Replace use of obsolete function alias.  Tweak menu item text.
4048         * info.el (Info-finder-find-node):
4049         Ignore the `emacs' metapackage.  (Bug#10813)
4051         * finder.el (finder-list-matches): Include unversioned packages
4052         in the result of a keyword search.
4054         * finder.el (finder--builtins-descriptions): New constant.
4055         (finder-compile-keywords): Use finder--builtins-descriptions.
4057 2014-03-14  Dmitry Gutov  <dgutov@yandex.ru>
4059         * simple.el (blink-matching-paren): Describe the new value,
4060         `jump', enabling the old behavior.
4061         (blink-matching-open): Use that value.  (Bug#17008)
4063 2014-03-14  Glenn Morris  <rgm@gnu.org>
4065         * finder.el (finder-no-scan-regexp): Add leim-list.
4066         (finder-compile-keywords):
4067         Don't skip files with same basename.  (Bug#14010)
4068         * Makefile.in (setwins_finder): New, excluding leim.
4069         (finder-data): Use setwins_finder.
4071         * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
4072         (help-function-arglist, help-make-usage): Move from here...
4073         * help.el (help-split-fundoc, help-add-fundoc-usage)
4074         (help-function-arglist, help-make-usage): ... to here.  (Bug#17001)
4075         * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
4077 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
4079         * net/socks.el (socks, socks-override-functions)
4080         (socks-find-services-entry):
4081         * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
4082         (hif-find-ifdef-block):
4083         * progmodes/modula2.el (m2-indent): Fix docstring typos.
4085         * net/tls.el (tls-program): Reflow docstring.
4087         * progmodes/pascal.el (pascal-mode-abbrev-table)
4088         (pascal-imenu-generic-expression, pascal-auto-endcomments)
4089         (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
4090         (pascal-outline-mode): Fix docstring typos.
4091         (pascal-mode): Let define-derived-mode document mode hook.
4092         (pascal-uncomment-area): Reflow.
4093         (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
4095         * progmodes/opascal.el (opascal-compound-block-indent)
4096         (opascal-case-label-indent): Fix docstring typos.
4097         (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
4099 2014-03-13  Dmitry Gutov  <dgutov@yandex.ru>
4101         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4102         Fontify multiple adjacent negation chars.  (Bug#17004)
4104 2014-03-13  Tom Willemse  <tom@ryuslash.org>  (tiny change)
4106         * emacs-lisp/package.el (package--prepare-dependencies):
4107         Accept requirements without explicit version (bug#14941).
4109 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
4111         * register.el (register-separator, copy-to-register): Doc fixes.
4112         (register-preview-default): Remove unnecessary call to concat.
4114         * frameset.el (frameset-restore): When checking for a visible frame,
4115         use the action map instead of calling visible-frame-list.
4117 2014-03-12  Jonas Bernoulli  <jonas@bernoul.li>
4119         * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
4121 2014-03-12  Martin Rudalics  <rudalics@gmx.at>
4123         * window.el (fit-frame-to-buffer): Get maximum width from
4124         display's width instead of height.
4126 2014-03-12  Glenn Morris  <rgm@gnu.org>
4128         * desktop.el (desktop-restore-frames)
4129         (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
4130         (desktop-restore-reuses-frames): Doc tweaks.
4132         * electric.el (electric-indent-mode): Doc fix.
4134 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
4136         * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
4137         (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
4138         (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
4139         (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
4140         (cvs-dired-use-hook): Fix docstring typos.
4141         (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
4142         Doc fixes.
4144         * vc/pcvs-defs.el (cvs-auto-remove-handled)
4145         (cvs-auto-remove-directories, cvs-default-ignore-marks)
4146         (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
4147         (cvs-execute-single-dir): Fix docstring typos.
4149         * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
4150         (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
4152         * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
4154         * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
4155         Fix docstring typos.
4157 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
4159         * frameset.el (frameset--jump-to-register): Add autoload; it could be
4160         called from jump-to-register after unloading the frameset package.
4162 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4164         * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
4165         (bug#16975).  Deactivate the mark before setting it to nil.
4166         (activate-mark): Do nothing if region is already active.
4168 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
4170         * frameset.el (frameset--target-display): Remove definition; declare.
4171         (frameset-save, frameset-restore): Let-bind frameset--target-display.
4173 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4175         * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
4176         (advice-add): Add a :advice--pending marker, so advice--make-1 knows
4177         when the advice is pending.
4178         (advice-remove): Remove this marker when not needed any more.
4180 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
4182         * frameset.el: Separate options for reusing frames and cleaning up.
4183         (frameset--reuse-list): Remove definition; declare.
4184         (frameset--action-map): Declare.
4185         (frameset--find-frame-if): Doc fix.
4186         (frameset--restore-frame): Cache frame action.
4187         (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
4188         how to clean up the frame list after restoring.  Remove cleaning
4189         options from REUSE-FRAMES.  Change all keyword values to symbols.
4190         (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
4192         * desktop.el (desktop-restore-forces-onscreen)
4193         (desktop-restore-reuses-frames): Use non-keyword values.
4194         (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
4196 2014-03-10  Glenn Morris  <rgm@gnu.org>
4198         * files.el (find-file): Doc fix: update info node name.
4200         * emacs-lisp/advice.el (ad-add-advice, defadvice):
4201         Doc fix: remove references to deleted info nodes.
4203 2014-03-10  Michael Albinus  <michael.albinus@gmx.de>
4205         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4206         Do not add nil to the environment, when there's no remote `locale'.
4207         (tramp-find-inline-encoding): Check, that the remote host has
4208         installed perl, before sending scripts.
4210 2014-03-10  Leo Liu  <sdl.web@gmail.com>
4212         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
4213         Clear eldoc-last-message.  (Bug#16920)
4215 2014-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4217         * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
4218         (bug#14430).
4220 2014-03-09  Juri Linkov  <juri@jurta.org>
4222         * ansi-color.el (ansi-color-names-vector): Copy default colors
4223         from `xterm-standard-colors' that look well on the default white
4224         background (and also on the black background) to avoid illegible
4225         color combinations like yellow-on-white and white-on-white.
4226         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
4228 2014-03-08  Juanma Barranquero  <lekktu@gmail.com>
4230         * frameset.el (frameset-restore): When no frame is visible, do not
4231         generate a list of frames, just make visible the selected one.
4233 2014-03-08  Dmitry Gutov  <dgutov@yandex.ru>
4235         * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
4236         it only contains the repository root.  (Bug#16897)
4238 2014-03-07  Michael Albinus  <michael.albinus@gmx.de>
4240         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
4241         only when `remote-file-name-inhibit-cache' is nil.
4242         (tramp-sh-file-name-handler): Use `tramp-error'.  Simplify code.
4244 2014-03-06  Martin Rudalics  <rudalics@gmx.at>
4246         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
4247         Fix doc-strings.
4248         (fit-frame-to-buffer): New argument ONLY.  Remove dependency on
4249         fit-frame-to-buffer variable.  Fix doc-string.
4250         (fit-window-to-buffer): Set ONLY argument in call of
4251         fit-frame-to-buffer.  Fix doc-string.
4253 2014-03-06  Michael Albinus  <michael.albinus@gmx.de>
4255         * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
4256         (tramp-action-password): Clear password cache if needed.
4257         (tramp-read-passwd): Do not clear password cache.
4259         * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
4260         cache unless it is the first password request.
4262 2014-03-06  Glenn Morris  <rgm@gnu.org>
4264         * simple.el (newline): Doc tweak.
4266         * emacs-lisp/shadow.el (load-path-shadows-find):
4267         Ignore dir-locals.  (Bug#12357)
4269 2014-03-05  Glenn Morris  <rgm@gnu.org>
4271         * files.el (interpreter-mode-alist):
4272         * progmodes/sh-script.el (sh-ancestor-alist): Add dash.  (Bug#16938)
4274 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
4276         * frameset.el (frameset--initial-params): Filter out null entries.
4278 2014-03-05  Martin Rudalics  <rudalics@gmx.at>
4280         * window.el (window-min-height, window-min-width):
4281         Rewrite doc-strings.
4282         (window-body-size): Add PIXELWISE argument to make it consistent
4283         with its callees.
4285 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
4287         * finder.el (finder-mode-map, finder-mode-syntax-table):
4288         Revert part of 2014-02-28 change.
4290 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
4292         * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
4293         (eww-setup-buffer): Clear next/prev/etc more reliably.
4294         (eww-textarea-map): [tab] doesn't work on tty.
4295         Reported by Mario Lang.
4297         * net/shr.el (shr-map): Ditto.
4299 2014-03-04  Glenn Morris  <rgm@gnu.org>
4301         * minibuffer.el (completion-hilit-commonality):
4302         Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
4304 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
4306         * hilit-chg.el (hilit-chg-unload-function): New function.
4307         (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
4308         (hilit-chg-map-changes): Prefer cardinal number to digit.
4309         (hilit-chg-display-changes): Reflow docstring.
4310         (highlight-changes-rotate-faces): Remove superfluous backslash.
4312 2014-03-04  Michael Albinus  <michael.albinus@gmx.de>
4314         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
4315         `tramp-send-command-and-check'.
4317 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
4319         * hexl.el (hexl-address-region, hexl-ascii-region)
4320         (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
4321         (hexl-backward-short, hexl-forward-short, hexl-backward-word)
4322         (hexl-forward-word, hexl-previous-line, hexl-next-line):
4323         Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
4324         (hexl-mode): Doc fix.
4325         (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
4326         (hexl-mode-ruler): Fix typos in docstrings.
4328         * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
4329         (strokes-character, strokes-get-grid-position, strokes-list-strokes):
4330         Remove superfluous backslashes.
4331         (strokes-last-stroke, strokes-global-map, strokes-mode):
4332         Reflow docstrings.
4333         (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
4334         (strokes-xpm-for-compressed-string): Use quotes with buffer name.
4335         (strokes-distance-squared, strokes-global-set-stroke)
4336         (strokes-global-set-stroke-string): Doc fixes.
4337         (strokes-help): Fix typos; reflow docstring.
4339 2014-03-04  Martin Rudalics  <rudalics@gmx.at>
4341         * window.el (window-in-direction): Fix doc-string.
4343 2014-03-04  Glenn Morris  <rgm@gnu.org>
4345         * emacs-lisp/smie.el (smie-config-guess): Doc fix.
4346         Explicit error if no grammar.
4347         (smie-config-save): Doc fix.  Fix quote typo.
4349 2014-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4351         * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
4352         electric-indent-mode-hook if we obey electric-indent-mode.
4353         (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
4354         decide whether we obey electric-indent-mode.
4355         (c-change-set-fl-decl-start, c-extend-after-change-region):
4356         Silence warnings.
4357         (c-electric-indent-mode-hook): Assume we do want to obey
4358         electric-indent-mode.
4360         * electric.el (electric-indent-mode-has-been-called): Remove.
4361         (electric-indent-mode): Fix accordingly.
4363         * files.el (hack-local-variables): Mention file name in warning.
4365         * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
4367 2014-03-04  Michal Nazarewicz  <mina86@mina86.com>
4369         * bindings.el: Add comment describing why C-d binds to `delete-char'.
4370         * simple.el (delete-forward-char): Mark as interactive-only.
4372 2014-03-03  Juanma Barranquero  <lekktu@gmail.com>
4374         * icomplete.el (icomplete-completions):
4375         Follow-up to 2014-03-01 change.
4377         * icomplete.el: Miscellaneous doc fixes.
4378         Use Icomplete everywhere instead of icomplete for consistency.
4379         (icomplete-max-delay-chars): Fix typo.
4380         (icomplete-mode): Use \[].
4381         (icomplete-tidy, icomplete-exhibit): Reflow.
4382         (icomplete-minibuffer-setup-hook, icomplete-completions):
4383         Remove superfluous backlashes.
4385         * ido.el: Miscellaneous doc fixes.
4386         Use Ido everywhere instead of ido or `ido' for consistency.
4387         (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
4388         (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
4389         (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
4390         (ido-separator): Extract obsolescence info from docstring and declare
4391         with make-obsolete-variable.
4392         (ido-minibuffer-setup-hook): Simplify example.
4393         (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
4394         (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
4395         (ido-completion-help, ido-completing-read): Fix typos in docstrings.
4396         (ido-everywhere): Reflow docstring.
4397         (ido-toggle-vc): Doc fix.
4398         (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
4399         of long list of keybindings.
4401 2014-03-03  Glenn Morris  <rgm@gnu.org>
4403         * frame.el (display-pixel-height, display-pixel-width)
4404         (display-mm-dimensions-alist, display-mm-height)
4405         (display-mm-width): Doc tweaks.
4407 2014-03-02  Barry O'Reilly  <gundaetiapo@gmail.com>
4409         * simple.el (undo-elt-in-region): Fix buffer corruption for edge
4410         case of undo in region.
4412 2014-03-02  Martin Rudalics  <rudalics@gmx.at>
4414         * window.el (fit-window-to-buffer): Fix argument in window-size
4415         call when window is horizontally combined.
4417 2014-03-02  Juanma Barranquero  <lekktu@gmail.com>
4419         * icomplete.el (icomplete-completions): Use string-width.
4420         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
4422 2014-03-01  Dmitry Gutov  <dgutov@yandex.ru>
4424         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4425         Highlight regexp options.  (Bug#16914)
4427 2014-03-01  Martin Rudalics  <rudalics@gmx.at>
4429         * window.el (window--max-delta-1): Round down when calculating
4430         how many lines/columns we can get from a window.
4432 2014-03-01  Glenn Morris  <rgm@gnu.org>
4434         * isearch.el (search-invisible): Doc fix.
4436         * minibuffer.el (completion-hilit-commonality):
4437         Make `base-size' argument optional.  Short-cut if `prefix-len' is 0.
4438         * comint.el (comint-dynamic-list-completions): Doc fix.
4439         * comint.el (comint-dynamic-list-completions):
4440         * filecache.el (file-cache-minibuffer-complete):
4441         * tempo.el (tempo-display-completions):
4442         * eshell/em-hist.el (eshell-list-history):
4443         Replace use of obsolete argument of display-completion-list.
4445 2014-03-01  Juanma Barranquero  <lekktu@gmail.com>
4447         * icomplete.el (icomplete-completions):
4448         Revert back to using "..." when ?… cannot be displayed.
4450 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
4452         * finder.el (finder-unload-function): New function.
4454 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
4456         * dframe.el (dframe-detach):
4457         * find-dired.el (find-dired, find-name-dired):
4458         * finder.el (finder-mode-map, finder-mode-syntax-table)
4459         (finder-headmark, finder-select, finder-mouse-select):
4460         Fix docstring typos.
4462 2014-02-28  Martin Rudalics  <rudalics@gmx.at>
4464         Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
4465         * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
4466         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
4467         Fix doc-string based on a suggestion by Nicolas Richard
4468         <theonewiththeevillook@yahoo.fr>.
4469         * help.el (with-help-window): Fix doc-string.
4471 2014-02-28  Ivan Kanis  <ivan@kanis.fr>
4473         * net/shr.el (shr-image-animate): New option.
4474         (shr-put-image): Respect shr-image-animate.
4476 2014-02-28  Michael Albinus  <michael.albinus@gmx.de>
4478         * net/tramp-adb.el (tramp-adb-parse-device-names):
4479         Use `accept-process-output'.
4480         (tramp-adb-handle-file-truename): Cache the localname only.
4481         (tramp-adb-handle-make-directory)
4482         (tramp-adb-handle-delete-directory): Flush file properties correctly.
4483         (tramp-adb-handle-set-file-modes): Do not raise an error when file
4484         modes cannot be changed.
4486         * net/tramp-cache.el (tramp-flush-directory-property): Remove also
4487         file properties of symlinks.
4489 2014-02-28  Per Starbäck  <starback@stp.lingfil.uu.se>
4491         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
4492         required/optional fields to match development biblatex.  (Bug#16781)
4494 2014-02-28  Andy Sawyer  <andy.sawyer@gmail.com>  (tiny change)
4496         * saveplace.el (toggle-save-place):
4497         Fix argument handling.  (Bug#16673)
4499 2014-02-28  Glenn Morris  <rgm@gnu.org>
4501         * minibuffer.el (completions-first-difference)
4502         (completions-common-part, completion-hilit-commonality): Doc fixes.
4504 2014-02-28  Karl Berry  <karl@gnu.org>
4506         * info.el (Info-mode-map): Add H for describe-mode,
4507         to synchronize with standalone Info.
4509 2014-02-28  Emilio C. Lopes  <eclig@gmx.net>
4511         * progmodes/sql.el (sql-interactive-mode):
4512         Avoid setting global comint-input-ring-separator.  (Bug#16814)
4514 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
4516         * net/dbus.el (dbus--init-bus): Declare function.
4517         (dbus-path-local, dbus-interface-local): New defconst.
4518         (dbus-init-bus): Use them.
4519         (dbus-return-values-table): Extend doc.
4520         (dbus-handle-bus-disconnect): Extend error message.
4522 2014-02-27  Juanma Barranquero  <lekktu@gmail.com>
4524         * subr.el (y-or-n-p): Fix double space issue in message.
4526 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
4528         * net/tramp.el (tramp-call-process): Improve trace message.
4529         (tramp-handle-insert-file-contents): Trace error case.
4531         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
4532         <insert-directory>: Use `tramp-handle-insert-directory'.
4533         (tramp-adb-handle-insert-directory): Remove function.
4534         (tramp-adb-send-command-and-check): New defun, replacing
4535         `tramp-adb-command-exit-status'.  Change all callees.
4536         (tramp-adb-handle-file-attributes)
4537         (tramp-adb-handle-directory-files-and-attributes): Use it.
4538         (tramp-adb-ls-output-name-less-p):
4539         Use `directory-listing-before-filename-regexp'.
4540         (tramp-adb-handle-delete-directory): Flush also file properties of
4541         the truename of directory.
4542         (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
4543         (tramp-adb-handle-file-local-copy): Make the local copy readable.
4544         (tramp-adb-handle-write-region): Implement APPEND.
4545         (tramp-adb-handle-rename-file): Make it more robust.  Flush file
4546         properties correctly.
4547         (tramp-adb-maybe-open-connection): Set `tramp-current-*'
4548         variables.  Check for connected devices only when needed.
4550 2014-02-27  Glenn Morris  <rgm@gnu.org>
4552         * minibuffer.el (completion-table-dynamic)
4553         (completion-table-with-cache): Doc fixes.
4555         * emacs-lisp/crm.el (crm-default-separator, crm-separator)
4556         (completing-read-multiple): Doc fixes.
4558 2014-02-27  Daniel Colascione  <dancol@dancol.org>
4560         * minibuffer.el (completion--nth-completion): Fix indentation.
4562         * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
4563         explicit tramp path is empty.
4565 2014-02-27  Glenn Morris  <rgm@gnu.org>
4567         * emacs-lisp/crm.el (completing-read-multiple):
4568         Empower help-enable-auto-load.
4570 2014-02-26  Glenn Morris  <rgm@gnu.org>
4572         * startup.el (command-line): Don't init the tty in daemon mode.
4574         Avoid calling tty-setup-hook twice, eg if a term file
4575         explicitly calls tty-run-terminal-initialization.  (Bug#16859)
4576         * faces.el (tty-run-terminal-initialization): Add run-hook argument.
4577         (tty-create-frame-with-faces): Use it.
4578         * startup.el (command-line): Pass run-hook argument
4579         to tty-run-terminal-initialization.
4581         * dired.el (dired-restore-desktop-buffer): Demote errors;
4582         eg in case a glob match fails.  (Bug#16884)
4584 2014-02-26  Dmitry Gutov  <dgutov@yandex.ru>
4586         * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
4587         error from `read-from-string'.  (Bug#16850)
4589         * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
4590         result of `completing-read' in the interactive form.  (Bug#16854)
4592 2014-02-25  Glenn Morris  <rgm@gnu.org>
4594         * image.el (image-animate, image-animate-timeout):
4595         Stop animating images in dead buffers.  (Bug#16878)
4597         * emacs-lisp/edebug.el (defmacro): Fix debug spec.  (Bug#16868)
4599         * faces.el (tty-setup-hook, tty-run-terminal-initialization):
4600         Doc fixes.
4601         * startup.el (term-setup-hook): Doc fix.  Make obsolete.
4602         * term/sun.el (sun-raw-prefix-hooks):
4603         Use tty-setup-hook instead of term-setup-hook.
4604         (terminal-init-sun): Construct message from bytecomp plist.
4605         * term/wyse50.el (enable-arrow-keys): Doc fix.
4607 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
4609         * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
4610         Fix docstring typos.
4612 2014-02-24  Michael Albinus  <michael.albinus@gmx.de>
4614         * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
4616 2014-02-24  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
4618         * minibuffer.el (completion--try-word-completion):
4619         Fix error when completing M-x commands (bug#16808).
4621 2014-02-24  Leo Liu  <sdl.web@gmail.com>
4623         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
4625 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
4627         * apropos.el (apropos-print): Avoid formatting error when
4628         apropos-do-all and apropos-compact-layout are both t.
4630 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
4632         * apropos.el (apropos-property, apropos-all-words-regexp)
4633         (apropos-true-hit, apropos-variable, apropos-print):
4634         Fix docstring typos, and remove obsolete comment.
4636 2014-02-23  Michael Albinus  <michael.albinus@gmx.de>
4638         * net/tramp-sh.el (tramp-sh-handle-file-truename):
4639         Preserve trailing "/".  (Bug#16851)
4641 2014-02-23  Dmitry Gutov  <dgutov@yandex.ru>
4643         * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
4644         after `=>' (bug#16811).
4645         (ruby-smie-rules): Handle the inconsistent second element of the
4646         list returned by `smie-indent--parent'.
4647         (ruby-font-lock-keywords): Disqualify any identifier before `=' as
4648         method call.
4650 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
4652         * elec-pair.el (electric-pair-text-syntax-table)
4653         (electric-pair-syntax-info, electric-pair--syntax-ppss)
4654         (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
4655         (electric-pair--looking-at-unterminated-string-p): Doc fix.
4656         (electric-pair--inside-string-p): Doc fix.  Use `let', not `let*'.
4658 2014-02-22  Glenn Morris  <rgm@gnu.org>
4660         * imenu.el (imenu--generic-function): Doc fix.
4662         * register.el (frame-configuration-to-register): Make obsolete.
4664 2014-02-22  Juanma Barranquero  <lekktu@gmail.com>
4666         * desktop.el (desktop-save-buffer-p): Do not fail when
4667         desktop-files-not-to-save is nil.  Return t for true result
4668         as the doc says.
4670 2014-02-22  Daniel Colascione  <dancol@dancol.org>
4672         * net/secrets.el (secrets-create-item, secrets-search-items):
4673         Check that attribute values are strings, avoiding the construction
4674         of invalid dbus messages.
4676 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
4678         * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
4679         defun-declarations-alist.
4681 2014-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4683         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
4684         (bug#16829).
4686 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
4688         * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
4689         (whitespace-newline, whitespace-trailing, whitespace-line)
4690         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
4691         (whitespace-space-after-tab): Fix typo in docstrings.
4693 2014-02-21  Dmitry Gutov  <dgutov@yandex.ru>
4695         * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
4697         * electric.el (electric-indent-functions-without-reindent):
4698         Add `yaml-indent-line'.
4700 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
4702         * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
4703         It has done nothing for years; should be removed after the release.
4705         * simple.el (choose-completion): Fix docstring typo.
4706         (read-quoted-char-radix): Remove unneeded * in docstring.
4707         (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
4708         Don't escape parentheses unnecessarily in docstrings.
4710 2014-02-21  Martin Rudalics  <rudalics@gmx.at>
4712         Fix handling of window-min-height/-width (Bug#16738).
4713         * window.el (window--dump-window, window--dump-frame):
4714         New functions.
4715         (window--min-size-1): Account for window dividers.
4716         When window-resize-pixelwise is nil, delay rounding till after the
4717         sum of the window components has been calculated.
4718         (window--min-delta-1, window--max-delta-1): When PIXELWISE is
4719         nil make sure at least one text line and two text columns remain
4720         fully visible.
4721         (window-resize): Signal an error when window-resize-apply fails.
4722         (window--resize-child-windows): Fix calculation of by how many
4723         pixels a window can still be shrunk via window-new-normal.
4724         (adjust-window-trailing-edge): Call window--resizable with
4725         correct TRAIL argument.
4727         (with-temp-buffer-window): Don't evaluate BODY within
4728         with-current-buffer (Bug#16816).
4730 2014-02-21  Michael Albinus  <michael.albinus@gmx.de>
4732         * net/tramp.el (tramp-check-cached-permissions):
4733         Call `file-attributes' with `suffix' being a symbol but a string.
4735 2014-02-21  Daniel Colascione  <dancol@dancol.org>
4737         * net/dbus.el (dbus-init-bus-1): Declare new subr.
4738         (dbus-init-bus): New function: call into dbus-init-bus-1
4739         and installs a handler for the disconnect signal.
4740         (dbus-call-method): Rewrite to look for result in cons.
4741         (dbus-call-method-handler): Store result in cons.
4742         (dbus-check-event): Recognize events with nil sender as valid.
4743         (dbus-handle-bus-disconnect): New function.  React to bus
4744         disconnection signal by synthesizing dbus error for each
4745         pending synchronous or asynchronous call.
4746         (dbus-notice-synchronous-call-errors): New function.
4747         (dbus-handle-event): Raise errors directly only when `dbus-debug'
4748         is true, not all the time.
4750 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
4752         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
4753         Remove obsolescence declarations, these variables do not exist anymore.
4755         * savehist.el (savehist-save-minibuffer-history)
4756         (savehist-additional-variables, savehist-file, savehist-mode-hook)
4757         (savehist-save-hook, savehist-coding-system, savehist-loaded)
4758         (savehist-load, savehist-install, savehist-autosave): Fix typos;
4759         mostly, refer to "Savehist mode" when talking about the mode,
4760         and not the function.
4762         * saveplace.el (save-place): Remove redundant info in docstring.
4763         (save-place-forget-unreadable-files, toggle-save-place)
4764         (save-place-forget-unreadable-files, save-place-dired-hook):
4765         Fix typos and remove unneeded backslashes.
4767 2014-02-20  Michael Albinus  <michael.albinus@gmx.de>
4769         * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
4770         (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
4772         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
4773         <insert-directory>: Use `tramp-handle-insert-directory'.
4774         (tramp-gvfs-handle-insert-directory): Remove function.
4776         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
4777         Call `tramp-handle-insert-directory'.
4779 2014-02-20  Juanma Barranquero  <lekktu@gmail.com>
4781         * elec-pair.el (electric-pair-syntax-info): Do not check syntax
4782         before the start of buffer/region (bug#16799).
4784 2014-02-20  Glenn Morris  <rgm@gnu.org>
4786         * isearch.el (search-invisible): Doc fix.
4788 2014-02-20  W. Trevor King  <wking@tremily.us>  (tiny change)
4790         * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
4791         (bug#16657).
4793 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
4795         * frameset.el (frameset-restore): Delay removing an old frame's
4796         duplicate id until the new frame has been correctly created.
4798 2014-02-19  Michael Albinus  <michael.albinus@gmx.de>
4800         * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
4801         (tramp-check-cached-permissions): Call `file-attributes' if the
4802         cache is empty.
4804         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
4805         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
4807         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
4808         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
4809         (tramp-gvfs-maybe-open-connection): Set always connection
4810         properties, even if target is mounted already.
4812         * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
4813         Set tramp-autoload cookie.
4814         (tramp-get-remote-touch): New defun.
4815         (tramp-sh-handle-set-file-times): Use it.
4816         (tramp-sh-handle-directory-files-and-attributes):
4817         Use `tramp-handle-directory-files-and-attributes' if neither stat
4818         nor perl are available on the remote host.
4820         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
4821         "/".  Write long listing only when "l" belongs to the switches.
4823         * net/trampver.el: Update release number.
4825 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
4827         * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
4829 2014-02-19  Martin Rudalics  <rudalics@gmx.at>
4831         * window.el (window-state-put): Allow WINDOW to refer to an
4832         internal window (Bug#16793).
4834 2014-02-19  Glenn Morris  <rgm@gnu.org>
4836         * textmodes/remember.el: Move provide statement to end.
4837         (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
4838         (remember-notes): Doc fixes.
4840 2014-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4842         * delsel.el (delete-char): Restore incorrectly erased property
4843         (bug#16795).
4845 2014-02-18  Juanma Barranquero  <lekktu@gmail.com>
4847         * frameset.el (frameset--restore-frame): When a frame is being reused
4848         and its root window is not alive, delete all the frame's windows before
4849         restoring the window state.  This works around the issue in bug#16793.
4851 2014-02-18  Glenn Morris  <rgm@gnu.org>
4853         * textmodes/remember.el (remember-data-directory)
4854         (remember-directory-file-name-format, remember-store-in-files)
4855         (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
4856         (remember-notes-save-and-bury-buffer)
4857         (remember-notes--kill-buffer-query): Doc fixes.
4859         * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
4861 2014-02-17  Alan Mackenzie  <acm@muc.de>
4863         Connect electric-indent-mode up with CC Mode.  Bug #15478.
4864         * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
4865         to electric-indent-{,local-}-mode.
4866         (c-basic-common-init): Set electric-indent-inhibit.
4867         Initialise c-electric-flag from electric-indent-mode.
4868         (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
4869         New hook functions which propagate electric-indent-mode to CC mode.
4871         * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
4872         hit, toggle electric-indent-local-mode.
4874         * electric.el (electric-indent-mode-has-been-called):
4875         New variable.
4877 2014-02-17  Juanma Barranquero  <lekktu@gmail.com>
4879         * frameset.el (frameset-cfg-id): New function.
4880         (frameset--reuse-frame, frameset-restore): Use it.
4881         (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
4883 2014-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4885         * ido.el (ido-file-internal): Remove unused var `d'.
4886         Use \` for to match BoS.  Fit within 80n columns.
4888 2014-02-17  Daniel Colascione  <dancol@dancol.org>
4890         * net/dbus.el (dbus-call-method): Work around bug#16775 by having
4891         dbus-call-method check for completion using a busy-wait loop with
4892         gradual backoff.
4894 2014-02-16  Michael Albinus  <michael.albinus@gmx.de>
4896         Sync with Tramp 2.2.9.
4898         * net/trampver.el: Update release number.
4900 2014-02-16  Dmitry Gutov  <dgutov@yandex.ru>
4902         * ido.el (ido-file-internal): Don't add the name of an existing
4903         directory twice.  (Bug#16747)
4905 2014-02-16  Glenn Morris  <rgm@gnu.org>
4907         * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
4908         Do not use ediff-defvar-local on pre-defined variables.  (Bug#16744)
4910 2014-02-15  Michael R. Mauger  <michael@mauger.com>
4912         * progmodes/sql.el: Version 3.4
4913         (sql-oracle-options): New default value ("-L").
4914         (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
4915         (sql-placeholders-filter): Correct placeholder pattern.
4916         (sql-read-table-name): Bug fix.  Detect absence of SQLi process.
4917         (sql-login-delay): New variable.
4918         (sql-product-interactive): Use it.
4920 2014-02-15  Juanma Barranquero  <lekktu@gmail.com>
4922         * frameset.el (frameset--jump-to-register): Check that buffer is live
4923         (bug#16749).
4925 2014-02-15  Glenn Morris  <rgm@gnu.org>
4927         * info.el (info-initialize): Revert 2014-01-10 change.
4929 2014-02-14  Glenn Morris  <rgm@gnu.org>
4931         * replace.el (map-query-replace-regexp)
4932         (read-regexp-defaults-function, read-regexp): Doc fixes.
4934         * dired.el (dired-read-regexp):
4935         * faces.el (list-faces-display):
4936         * misearch.el (multi-isearch-read-matching-buffers)
4937         (multi-isearch-read-matching-files):
4938         * play/cookie1.el (cookie-apropos):
4939         * progmodes/grep.el (grep-read-regexp): Doc fixes.
4941         * textmodes/remember.el (remember): Use frameset-to-register
4942         rather than frame-configuration-to-register.
4944 2014-02-14  Jay Belanger  <jay.p.belanger@gmail.com>
4946         * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
4947         incorrect keybinding.
4949 2014-02-13  Daniel Colascione  <dancol@dancol.org>
4951         * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
4952         when adding overlays so that line numbers from compiler match line
4953         numbers we use.
4955 2014-02-13  Glenn Morris  <rgm@gnu.org>
4957         * mail/rmail.el (rmail-probe): Be less strict.  (Bug#16743)
4959         * jit-lock.el (jit-lock-mode): Doc fix.
4961 2014-02-13  Juanma Barranquero  <lekktu@gmail.com>
4963         * apropos.el (apropos-read-pattern): When the user passes an empty
4964         string, give a more helpful error message than "Wrong type
4965         argument: stringp, nil".
4967 2014-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4969         * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
4971 2014-02-13  Glenn Morris  <rgm@gnu.org>
4973         * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
4975 2014-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4977         * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
4978         shift-select commands.
4980 2014-02-12  Dmitry Gutov  <dgutov@yandex.ru>
4982         * progmodes/js.el (js-indent-line): Don't widen.
4983         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
4985 2014-02-12  Glenn Morris  <rgm@gnu.org>
4987         * icomplete.el (icomplete): Add info-link to defgroup.
4988         (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
4989         (icomplete-minibuffer-map, icomplete-mode)
4990         (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
4992         * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
4993         (package-menu-filter): Rename from package-menu-filter-interactive.
4994         Doc fix.
4996 2014-02-11  Juanma Barranquero  <lekktu@gmail.com>
4998         * frameset.el (frameset--jump-to-register): Select the required
4999         window and buffer before restoring position (bug#16696).
5001 2014-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
5003         * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
5005 2014-02-10  Glenn Morris  <rgm@gnu.org>
5007         * jit-lock.el (jit-lock-force-redisplay): Doc fix.  (Bug#14394)
5009 2014-02-10  Eli Zaretskii  <eliz@gnu.org>
5011         * w32-common-fns.el (x-get-selection): Doc fix.
5012         * select.el (x-get-selection): Doc fix.  (Bug#15109)
5014         * face-remap.el (face-remap-add-relative)
5015         (face-remap-remove-relative, face-remap-reset-base)
5016         (face-remap-set-base): Call force-mode-line-update to redisplay
5017         the current buffer due to potential change in faces.  (Bug#16709)
5019 2014-02-10  Michael Albinus  <michael.albinus@gmx.de>
5021         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
5022         script more robustly.
5024 2014-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
5026         * dired.el (dired-get-marked-files): Doc fix (bug#11534).
5028         * simple.el (choose-completion): Doc fix (bug#14160).
5030         * subr.el (event-start): Say what a nil EVENT value means.
5032         * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
5033         (bug#14197).
5035         * progmodes/grep.el (find-program): Doc fix (bug#14289).
5037         * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
5039         * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
5041         * files.el (confirm-kill-emacs): Allow specifying an arbitrary
5042         predicate function (bug#15455).
5044 2014-02-10  Dmitry Gutov  <dgutov@yandex.ru>
5046         * ielm.el (inferior-emacs-lisp-mode): Instead of
5047         `comment-use-global-state', set `comment-use-syntax'.
5049 2014-02-10  Glenn Morris  <rgm@gnu.org>
5051         * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
5053 2014-02-09  Alan Mackenzie  <acm@muc.de>
5055         Fix c-invalidate-state-cache on narrowed buffers.
5056         * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
5057         Widen when setting and clearing the CPP delimiter properties.
5059 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
5061         * help.el (describe-bindings): Doc fix (bug#9888).
5063         * files.el (save-buffer): Use ARG as the parameter name for
5064         consistency (bug#10346).
5065         (save-buffer): Clarify the 0 argument (bug#10346).
5067         * cus-edit.el (customize-apropos): Fix error string.
5068         (custom-buffer-create): Doc fix (bug#11122).
5069         (custom-sort-items): Doc fix (bug#11121).
5071         * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
5073         * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
5074         (icomplete-simple-completing-p): Mention the previous variable.
5076         * font-lock.el (font-lock-value-in-major-mode): Clarify the
5077         meaning of the parameter (bug#12282).
5079         * files.el (find-file-noselect): Clarify prompt when changing
5080         readedness (bug#13261).
5081         (locate-file): Suffixes aren't returned, so don't say that they
5082         are (bug#12674).
5083         (backup-inhibited): Doc clarification (bug#12525).
5085         * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
5086         before we actually start to delete things (bug#16331).
5088         * subr.el (event-start): Doc fix (bug#14228).
5089         (event-end): Ditto.
5091 2014-02-09  Glenn Morris  <rgm@gnu.org>
5093         * emacs-lisp/warnings.el (lwarn):
5094         Empower help-enable-auto-load.  (Bug#15940)
5096 2014-02-08  Andreas Schwab  <schwab@linux-m68k.org>
5098         * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
5099         (Bug#16690)
5101 2014-02-08  Michael Albinus  <michael.albinus@gmx.de>
5103         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5104         Insert output at end of buffer.  (Bug#16120)
5106 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
5108         * simple.el (choose-completion-string-functions): Document new
5109         calling convention (bug#14153).
5110         (execute-extended-command): Clarify doc string (bug#13373).
5112         * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
5114         * find-dired.el (find-name-dired): Doc fix (bug#14290).
5115         (find-grep-dired): Doc fix (bug#14288).
5117 2014-02-08  Juri Linkov  <juri@jurta.org>
5119         * isearch.el (isearch-quote-char): Check character validity
5120         like in `quoted-insert' (bug#16677).
5122 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
5124         * files.el (find-file-visit-truename): Doc clarification (bug#14697).
5126         * isearch.el (isearch-hide-immediately): Doc clarification
5127         (bug#14723).
5129         * simple.el (line-move): Document utility function used many
5130         places in the Emacs sources (bug#14843).
5132         * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
5133         (dired-prev-marked-file): Doc fix (bug#14855).
5134         (dired-up-directory): Doc fix (bug#14848).
5136         * minibuffer.el (read-file-name): Doc clarification (bug#15096).
5138         * files.el (file-relative-name): Doc fix (bug#15159).
5140         * fringe.el (fringe-styles): Doc fix (bug#15239).
5142         * isearch.el (isearch-filter-predicate): Documentation typo fix
5143         (bug#15474).
5145         * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
5147         * isearch.el (isearch-cmds): Doc clarification (bug#15547).
5149         * replace.el (replace-match-maybe-edit): Doc clarification
5150         (bug#15632).
5152         * subr.el (add-to-list): Refill the paragraphs (bug#15791).
5154         * macros.el (insert-kbd-macro): Doc fix (bug#16025).
5156 2014-02-08  Glenn Morris  <rgm@gnu.org>
5158         * help-fns.el (describe-variable):
5159         Check {file,dir}-local-variables-alist, and buffer-file-name,
5160         in the correct buffer.
5162 2014-02-08  Ingo Lohmar  <i.lohmar@gmail.com>
5164         * help-fns.el (describe-variable): Fix the case where
5165         a value is directory-local with no dir-locals file.  (Bug#16635)
5167 2014-02-08  Glenn Morris  <rgm@gnu.org>
5169         * abbrev.el (edit-abbrevs-mode):
5170         Derive from fundamental-mode.  (Bug#16682)
5172 2014-02-07  Juanma Barranquero  <lekktu@gmail.com>
5174         * simple.el (quoted-insert): Check character validity (bug#16677).
5176 2014-02-07  Juri Linkov  <juri@jurta.org>
5178         * desktop.el (desktop-read): Claim the lock when the owner is not
5179         the current process.  (Bug#16157)
5181 2014-02-07  Juri Linkov  <juri@jurta.org>
5183         * desktop.el (desktop-buffers-not-to-save): Change default from nil
5184         to "\\` ".  (Bug#16651)
5186 2014-02-07  Juri Linkov  <juri@jurta.org>
5188         * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
5189         when enabling, and `desktop-auto-save-cancel-timer' when disabling.
5190         (desktop-auto-save-cancel-timer): New function with some code from
5191         `desktop-auto-save-set-timer'.
5192         (after-init-hook): Don't call `desktop-auto-save-set-timer'.
5193         Instead of setting `desktop-save-mode' to nil, call
5194         `desktop-save-mode' with arg 0.  (Bug#16630)
5196 2014-02-07  Glenn Morris  <rgm@gnu.org>
5198         * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
5199         (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
5200         (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
5202         * obsolete/iswitchb.el: Move to obsolete/.
5203         * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
5204         since obsolete/ is not scanned for autoloads.
5205         * emacs-lisp/authors.el (authors-valid-file-names):
5206         Add iswitchb.el.
5208         * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
5209         Disable now non-functional find-file-hook.
5211 2014-02-06  Michael Albinus  <michael.albinus@gmx.de>
5213         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
5214         instead of ";" in order to avoid additional prompts.  Let heredoc
5215         scripts read from tty.  (Bug#16582)
5216         (tramp-send-command): No special handling of heredocs, it isn't
5217         necessary anymore.
5219 2014-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5221         * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
5222         with a space (bug#16664).  Limit the symbols considered to the ones
5223         that are bound or fbound (bug#16646).
5225 2014-02-06  Glenn Morris  <rgm@gnu.org>
5227         * epa.el (epa-mail-aliases): Doc fix.
5229 2014-02-06  Dmitry Gutov  <dgutov@yandex.ru>
5231         * emacs-lisp/lisp.el (lisp-completion-at-point):
5232         Use `completion-table-merge' instead of `completion-table-in-turn'
5233         (bug#16604).
5235         * minibuffer.el (completion-table-merge): New function.
5237 2014-02-05  Michael Albinus  <michael.albinus@gmx.de>
5239         * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
5240         (tramp-sh-handle-set-file-acl)
5241         (tramp-sh-handle-start-file-process)
5242         (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
5243         (tramp-find-executable, tramp-send-command): Use it.
5245 2014-02-05  Glenn Morris  <rgm@gnu.org>
5247         * epa.el (epa-mail-aliases): Fix custom type.  Doc tweak.
5249 2014-02-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
5251         * progmodes/python.el (python-shell-send-string)
5252         (python-shell-send-string-no-output): Fix docstring (Bug#16547).
5254 2014-02-04  Anders Lindgren  <andlind@gmail.com>
5256         * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
5257         the names (bug#16620).
5259 2014-02-03  Martin Rudalics  <rudalics@gmx.at>
5261         * faces.el (window-divider): New default value.  Rewrite doc-string.
5262         (window-divider-first-pixel, window-divider-last-pixel): New faces.
5264 2014-02-03  Dmitry Gutov  <dgutov@yandex.ru>
5266         * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
5267         `protected' and `public' can also be called without arguments.
5269 2014-02-03  Glenn Morris  <rgm@gnu.org>
5271         * register.el (window-configuration-to-register)
5272         (frame-configuration-to-register): Unadvertise unused argument.
5273         * frameset.el (frameset-to-register): Remove unused argument.
5275         * frameset.el (frameset-to-register):
5276         * kmacro.el (kmacro-to-register):
5277         * register.el (increment-register):
5278         * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
5279         (calc-append-to-register, calc-prepend-to-register):
5280         * play/gametree.el (gametree-layout-to-register)
5281         (gametree-apply-register-layout):
5282         * textmodes/picture.el (picture-clear-rectangle-to-register)
5283         (picture-yank-rectangle-from-register):
5284         * vc/emerge.el (emerge-combine-versions-register):
5285         Use register-read-with-preview to read registers.
5287 2014-02-03  João Távora  <joaotavora@gmail.com>
5289         * elec-pair.el (electric-pair-backward-delete-char): Don't error
5290         when at beginning of (possibly narrowed) buffer.
5292 2014-02-02  Daniel Colascione  <dancol@dancol.org>
5294         * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
5295         Also try to display local help from just before point.
5297 2014-02-02  Alan Mackenzie  <bug-cc-mode@gnu.org>
5299         c-parse-state.  Don't "append-lower-brace-pair" in certain
5300         circumstances.  Also fix an obscure bug where "\\s!" shouldn't be
5301         recognised as a comment.
5303         * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
5304         as well as normal comment starter.
5305         (c-parse-state-get-strategy): Extra return possibility
5306         'back-and-forward.
5307         (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
5308         return value list to indicate replacement of a brace-pair cons
5309         with its car.
5310         (c-parse-state-1): With 'back-and-forward, only call
5311         c-append-lower-brace-pair-to state-cache when cons-separated.
5313 2014-02-02  Jan Djärv  <jan.h.d@swipnet.se>
5315         * term/ns-win.el (ns-suspend-error): New function.
5316         (ns-initialize-window-system): Add ns-suspend-error to
5317         suspend-hook (Bug#16612).
5319 2014-02-02  Daniel Colascione  <dancol@dancol.org>
5321         * progmodes/cc-defs.el (c-find-assignment-for-mode):
5322         Make loading cc-mode silent.
5324 2014-02-02  Daniel Colascione  <dancol@dancol.org>
5326         * comint.el (comint-prompt-read-only): Change doc to suggest
5327         remap keybinding.
5329 2014-02-02  Glenn Morris  <rgm@gnu.org>
5331         * register.el (register-read-with-preview, point-to-register)
5332         (window-configuration-to-register, frame-configuration-to-register)
5333         (jump-to-register, number-to-register, view-register, insert-register)
5334         (copy-to-register, append-to-register, prepend-to-register)
5335         (copy-rectangle-to-register): Doc fixes.
5337 2014-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5339         * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
5340         * emacs-lisp/find-func.el (find-function-C-source): Idem.
5341         * emacs-lisp/nadvice.el (advice--cd*r): New function.
5342         * help-fns.el (describe-function-1): Use it.
5344 2014-02-02  Glenn Morris  <rgm@gnu.org>
5346         * register.el (register-preview-default): New function,
5347         split from register-preview.
5348         (register-preview-function): Rename from register-preview-functions,
5349         make it not a hook.
5350         (register-preview): Use register-preview-function.
5351         (register-read-with-preview): Error on non-character event.  (Bug#16595)
5353 2014-02-01  Dmitry Gutov  <dgutov@yandex.ru>
5355         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
5356         `:' before binary operators (bug#16609).  Don't check for `:'
5357         before `[' and `(', or their syntax status.  A percent literal
5358         can't end with either.
5359         (ruby-font-lock-keywords): For built-ins that require arguments,
5360         check that they're followed by something that looks like argument
5361         (bug#16610).
5363 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
5365         * subr.el (butlast): Document what an omitted N means (bug#13437).
5366         (nbutlast): Ditto.
5368 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5370         * net/shr.el (shr-generic): Make into a defsubst to make the stack
5371         depth shallower (bug#16587).
5372         (shr-tag-svg): Respect `shr-inhibit-images'.
5373         (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
5375 2014-01-31  Dmitry Gutov  <dgutov@yandex.ru>
5377         * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
5378         (ruby-smie-grammar): Make "." right-associative.  Make its priority
5379         lower than the ternary and all binary operators.
5380         (ruby-smie-rules): Indent "(" relative to the first non-"."
5381         parent, or the first "." parent at indentation.
5382         Use `ruby-align-chained-calls' for indentation of "." tokens.
5383         (Bug#16593)
5385 2014-01-31  Juri Linkov  <juri@jurta.org>
5387         * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
5388         from `make-hash-table'.
5390         * textmodes/ispell.el (ispell-init-process): Change message format
5391         to be consistent with other messages.
5393 2014-01-31  Glenn Morris  <rgm@gnu.org>
5395         * delsel.el (delete-selection-mode): Doc fix.
5397         * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
5398         (trace-function-background): Doc fixes.
5400         * ido.el (ido-use-virtual-buffers): Doc fix.
5401         Reset :version, since the default value has not changed.
5403         * register.el (register-preview-delay, register-read-with-preview):
5404         Doc fixes.
5406         * mail/reporter.el (reporter-dump-variable): In case of void-variable,
5407         do not mess with mail-buffer position (fixes 2009-11-03 change).
5408         * progmodes/cc-mode.el (c-submit-bug-report):
5409         Check auto-fill-mode is bound.  (Bug#16592)
5411 2014-01-31  Darren Hoo  <darren.hoo@gmail.com>
5413         * startup.el (fancy-splash-image-file): New function,
5414         split from fancy-splash-head.
5415         (fancy-splash-head, use-fancy-splash-screens-p): Use it,
5416         so that we are both using the same image.  (Bug#16574)
5418 2014-01-30  Glenn Morris  <rgm@gnu.org>
5420         * simple.el (eval-expression): Doc fix.
5422         * hexl.el (hexl-mode-hook):
5423         * ielm.el (ielm-mode-hook):
5424         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
5425         (lisp-interaction-mode-hook):
5426         * progmodes/cfengine.el (cfengine3-documentation-function):
5427         Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
5429 2014-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5431         * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
5432         is a symbol (bug#16584).
5434 2014-01-30  Glenn Morris  <rgm@gnu.org>
5436         * help.el (help-for-help-internal): Add "P" to text.
5438 2014-01-29  Glenn Morris  <rgm@gnu.org>
5440         * simple.el (just-one-space, cycle-spacing): Doc fixes.
5442 2014-01-28  Martin Rudalics  <rudalics@gmx.at>
5444         * window.el (fit-frame-to-buffer): Fix calculations for margins and
5445         height constraints.
5447 2014-01-28  Luke Lee  <luke.yx.lee@gmail.com>
5449         * progmodes/hideif.el: Extend to full CPP expression syntax.
5450         (hif-token-alist): Add missing tokens.
5451         (hif-token-regexp): Add support for float/octal/hex immediates.
5452         (hif-string-literal-regexp): New const.
5453         (hif-tokenize): Recognize strings and float/octal/hex immediates.
5454         (hif-exprlist): New function.
5455         (hif-parse-if-exp): Use it.
5456         (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
5457         (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
5458         (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
5459         (hif-logxor, hif-comma): New functions.
5461 2014-01-28  Glenn Morris  <rgm@gnu.org>
5463         * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
5465         * indent.el (tab-stop-list): Doc fix.  Add :version.
5467         * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
5468         (cvs-append-to-ignore): Add compatibility alias.
5470 2014-01-27  Glenn Morris  <rgm@gnu.org>
5472         * dired.el (dired-hide-details-mode): Don't autoload it,
5473         since it cannot be used outside Dired buffers anyway.
5475         * emulation/cua-base.el (cua-mode): Doc fix.
5477         * dired.el (dired-hide-details-hide-symlink-targets)
5478         (dired-hide-details-hide-information-lines)
5479         (dired-hide-details-mode): Doc fixes.
5481         * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
5482         * strokes.el (strokes-file): Doc fix.  Bump :version.
5483         (strokes-help): Doc fix.
5484         * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
5485         * emulation/viper.el (viper): Doc fix for custom group.
5486         (top-level): Remove oh-so-no-longer-relevant text about vip.
5487         * obsolete/otodo-mode.el (todo-prefix): Doc fix.
5489         * ido.el (ido-save-directory-list-file):
5490         * saveplace.el (save-place-file):
5491         * calendar/timeclock.el (timeclock-file):
5492         * net/quickurl.el (quickurl-url-file):
5493         * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
5494         * progmodes/idlwave.el (idlwave-config-directory):
5495         * textmodes/remember.el (remember-data-file):
5496         Bump :version.
5498 2014-01-26  Glenn Morris  <rgm@gnu.org>
5500         * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
5501         Doc fix.  Make obsolete.
5502         (opascal-mode): No longer mention opascal-tab-always-indents in doc.
5504         * sort.el (delete-duplicate-lines): Doc fix.
5506 2014-01-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
5508         * progmodes/ada-mode.el (ada):
5509         * woman.el (woman): Link to info manual and Commentary section.
5511         * progmodes/flymake.el (flymake):
5512         * nxml/nxml-mode.el (nxml):
5513         * net/eww.el (eww):
5514         * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
5515         * htmlfontify.el (htmlfontify):
5516         * ses.el (ses):
5517         * epa.el (epa):
5518         * ido.el (ido): Link to info manual.
5520 2014-01-25  Leo Liu  <sdl.web@gmail.com>
5522         * progmodes/flymake.el (flymake-make-overlay): No rear advance.
5524 2014-01-25  Adam Sjøgren  <asjo@koldfront.dk>
5526         * net/shr.el (shr-tag-img): Prefer the title over the alt text
5527         (bug#16537).
5529 2014-01-24  Juanma Barranquero  <lekktu@gmail.com>
5531         * net/eww.el (eww-download-callback):
5532         Fix reference to eww-download-directory.
5534         * emacs-lisp/bytecomp.el (byte-compile-file):
5535         Remove unused local variable `file-name'.
5537 2014-01-24  Glenn Morris  <rgm@gnu.org>
5539         * woman.el (woman-default-faces, woman-monochrome-faces):
5540         Fix obsolescence specification.
5542         * subr.el (with-demoted-errors): Doc fix.
5544 2014-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5546         * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
5547         (cl--macroexp-fboundp): New function.
5548         (cl--make-type-test): Use it.
5550 2014-01-23  Glenn Morris  <rgm@gnu.org>
5552         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
5553         * simple.el (eval-expression): Doc fixes.
5555 2014-01-22  Glenn Morris  <rgm@gnu.org>
5557         * emacs-lisp/authors.el (authors-fixed-entries): Addition.
5559 2014-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5561         * emacs-lisp/package.el: Write files silently.
5562         (package-autoload-ensure-default-file, package--write-file-no-coding)
5563         (package-generate-description-file, package--download-one-archive)
5564         (package-install-from-archive): Tell `write-region' to stay quiet.
5565         (package-menu-mode, package-menu--print-info): Omit the Archive column
5566         if there's only one archive.
5567         (package-all-keywords, package--has-keyword-p): Remove dead code.
5569 2014-01-22  Glenn Morris  <rgm@gnu.org>
5571         * version.el (emacs-bzr-version-bzr): Fix typo.
5573         * version.el (emacs-repository-get-version):
5574         Check either .bzr or .git, but not both.
5575         Make the git case actually use the DIR argument, and return nil
5576         rather than the empty string.
5577         Avoid error if .git exists but the git executable is not found.
5579 2014-01-22  Martin Rudalics  <rudalics@gmx.at>
5581         Fixes in window size functions around Bug#16430 and Bug#16470.
5582         * window.el (window-total-size, window-size): New argument ROUND.
5583         (window--min-delta-1, window-min-delta, window--max-delta-1):
5584         Be more conservative when calculating the numbers of lines or
5585         columns a window can shrink (Bug#16430).
5586         (fit-window-to-buffer): Simplify code.
5587         * term.el (term-window-width): Call window-body-width again.
5589 2014-01-22  Glenn Morris  <rgm@gnu.org>
5591         * image.el (image-format-suffixes): Doc fix.
5593         * international/quail.el (quail-define-package): Doc fix.
5595         * emacs-lisp/authors.el (authors-valid-file-names)
5596         (authors-renamed-files-alist): Additions.
5598         * vc/vc-git.el (vc-git-print-log): Remove --follow;
5599         reverts 2014-01-09 change.  (Bug#16422)
5601         * calc/calc-embed.el (thing-at-point-looking-at):
5602         * emacs-lisp/map-ynp.el (x-popup-dialog):
5603         * obsolete/lmenu.el (x-popup-dialog):
5604         * emacs-lisp/package.el (url-recreate-url):
5605         * mail/mailclient.el (clipboard-kill-ring-save):
5606         * subr.el (x-popup-dialog): Update declaration.
5607         * mail/rmail.el (rmail-mime-message-p):
5608         * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
5610 2014-01-21  Daniel Colascione  <dancol@dancol.org>
5612         * progmodes/sh-script.el (sh--inside-noncommand-expression):
5613         Correctly detect when we're inside an arithmetic expansion form
5614         containing nested parenthesis.
5615         (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
5616         to detect cases where we shouldn't expand "<<" to a heredoc
5617         skeleton.
5619 2014-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5621         * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
5622         (eldoc--message-command-p): New function.
5623         (eldoc-display-message-p): Use it.
5624         (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
5625         message is not automatically erased for us.
5626         (eldoc-print-current-symbol-info): Erase previous message, if any.
5628 2014-01-21  Tassilo Horn  <tsdh@gnu.org>
5630         * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
5631         specify it's an interactive function.
5633         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
5634         Fix regex used for scanning for citation keys which failed for
5635         citations with optional arguments.
5637 2014-01-21  Leo Liu  <sdl.web@gmail.com>
5639         * simple.el (read--expression): Don't enable eldoc-mode.
5641 2014-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5643         * simple.el (move-beginning-of-line): Make sure we don't move forward
5644         (bug#16497).
5646 2014-01-20  Juri Linkov  <juri@jurta.org>
5648         * saveplace.el (toggle-save-place, save-place-to-alist)
5649         (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
5650         'dired-mode) before checking for dired-directory.  (Bug#16477)
5652 2014-01-20  Juri Linkov  <juri@jurta.org>
5654         * indent.el (indent-line-to): Use backward-to-indentation
5655         instead of back-to-indentation.  (Bug#16461)
5657 2014-01-20  Paul Eggert  <eggert@cs.ucla.edu>
5659         Revert some of the CANNOT_DUMP fix (Bug#16494).
5660         Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
5661         but fixing this can wait until after the next release.
5662         * Makefile.in (emacs): Keep EMACSLOADPATH empty.
5664 2014-01-19  Michael Albinus  <michael.albinus@gmx.de>
5666         * eshell/esh-mode.el (eshell-password-prompt-regexp):
5667         Use `password-word-equivalents'.
5668         (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
5669         to t.  (Bug#5664, Bug#13124)
5671 2014-01-19  Alan Mackenzie  <acm@muc.de>
5673         Bind open-paren-in-column-0-is-defun-start to nil at some entry
5674         points.
5675         * progmodes/cc-engine.el (c-invalidate-state-cache-1)
5676         (c-parse-state-1, c-guess-basic-syntax): Bind it here.
5677         * progmodes/cc-mode.el (c-before-change, c-after-change)
5678         (c-font-lock-fontify-region): Bind it here.
5680 2014-01-19  Martin Rudalics  <rudalics@gmx.at>
5682         * term.el (term-window-width): Call window-text-width instead of
5683         window-width (Bug#16470).
5685 2014-01-18  Paul Eggert  <eggert@cs.ucla.edu>
5687         * simple.el (password-word-equivalents): Remove duplicates.
5688         Sort, to make this easier next time.
5689         Downcase.  Omit ": " after "jelszó".
5691 2014-01-18  Jan Djärv  <jan.h.d@swipnet.se>
5693         * term/common-win.el (saved-region-selection): Defvar it.
5694         (x-select-text): Set saved-region-selection (Bug#16382).
5696 2014-01-18  Glenn Morris  <rgm@gnu.org>
5698         * emacs-lisp/authors.el (authors-aliases)
5699         (authors-renamed-files-alist): Add some entries.
5701 2014-01-17  Michael Albinus  <michael.albinus@gmx.de>
5703         * net/tramp.el (tramp-password-prompt-regexp):
5704         Use `password-word-equivalents' if available.
5705         (tramp-action-password, tramp-process-one-action)
5706         (tramp-read-passwd): Let-bind `case-fold-search' to t.  (Bug#13124)
5708 2014-01-17  Chong Yidong  <cyd@gnu.org>
5710         * simple.el (password-word-equivalents): New defcustom.
5711         * comint.el (comint-password-prompt-regexp): Use it.  Bump version
5712         to 24.4.
5713         (comint-watch-for-password-prompt): Let-bind `case-fold-search'
5714         to t.  (Bug#13124)
5716 2014-01-17  Dmitry Gutov  <dgutov@yandex.ru>
5718         * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
5719         (ruby-align-to-stmt-keywords): Change the default value.
5720         Use `ruby-alignable-keywords' to generate the possible customization
5721         choices.
5722         (ruby-smie-rules): Instead of using a hardcoded list of alignable
5723         keywords, check against the value of `ruby-alignable-keywords'
5724         (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
5726 2014-01-17  Glenn Morris  <rgm@gnu.org>
5728         * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
5730         Make M-x authors return zero *Authors Errors* from current logs.
5731         * emacs-lisp/authors.el (authors-obsolete-files-regexps)
5732         (authors-ignored-files): Add some entries, remove others.
5733         (authors-ambiguous-files, authors-valid-file-names):
5734         Add some entries.
5735         (authors-renamed-files-alist): Add, remove, and adjust entries.
5736         (authors-renamed-files-regexps): Add some entries.
5737         Remove some very broad ones.  Make some entries `lax'.
5738         (authors-lax-changelogs): New constant.
5739         (authors-disambiguate-file-name): Treat top-level specially.
5740         (authors-lax-changelog-p): New function.
5741         (authors-canonical-file-name): Check file as written against
5742         authors-valid-file-names.  Do not special-case etc/.
5743         Handle `lax' logs and authors-renamed-files-regexps elements.
5745 2014-01-16  Dmitry Gutov  <dgutov@yandex.ru>
5747         * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
5748         `assoc'.  Use `nth' instead of `cdr'.  Make private.  Update all
5749         callers.
5751 2014-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5753         * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
5754         Assume we're already in the proper buffer.
5755         Inspired by Anders Lindgren <andlind@gmail.com>.
5756         (follow-post-command-hook): Call it from the right buffer.
5757         (follow-comint-scroll-to-bottom): Adjust call.
5758         (follow-all-followers): Use get-buffer-window-list.
5760 2014-01-15  Daniel Colascione  <dancol@dancol.org>
5762         * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
5763         `buffer-file-name' in interactive-form so that we don't leave
5764         pathless file names in `file-name-history'.
5766 2014-01-15  Juri Linkov  <juri@jurta.org>
5768         * indent.el (indent-rigidly): Set deactivate-mark to nil
5769         in transient indentation mode.  (Bug#16438)
5771 2014-01-15  Dmitry Gutov  <dgutov@yandex.ru>
5773         * emacs-lisp/package.el (package-desc-keywords): New function
5774         (Bug#16222).
5775         (describe-package-1, package-all-keywords)
5776         (package--has-keyword-p): Use it.
5778 2014-01-14  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
5780         * simple.el (define-alternatives): When creating the
5781         COMMAND-alternatives variable, assign COMMAND as its definition
5782         name so that `describe-variable' can relocate it.
5784 2014-01-14  Matthew Leach  <matthew@mattleach.net>  (tiny change)
5786         * font-lock.el (font-lock-keywords): Fix typo in docstring
5787         (bug#16307).
5789 2014-01-14  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
5791         * ispell.el (ispell-region): Reset `in-comment' for new line
5792         instead of wrongly reset `add-coment' (bug#13577).
5794 2014-01-14  Daiki Ueno  <ueno@gnu.org>
5796         * epa-file.el (epa-file-write-region): Encode the region according
5797         to `buffer-file-format'.  Problem reported at:
5798         <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
5800 2014-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5802         * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
5803         so it applies in the right buffer (bug#16410).
5805 2014-01-13  Daniel Colascione  <dancol@dancol.org>
5807         * textmodes/rst.el (rst-define-key): Provide deprecated
5808         keybindings through named functions instead of anonymous ones so
5809         that "??" doesn't appear in describe-mode output.
5811 2014-01-13  Bastien Guerry  <bzg@gnu.org>
5813         * simple.el (define-alternatives): Call the selected command
5814         interactively.  When setting `COMMAND--implementation' for the
5815         first time, tell the user how to chose another implementation.
5816         Enhance the docstring.
5818 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5820         * vc/log-edit.el: Fix highlighting of summary when it's the first line.
5821         (log-edit--match-first-line): New function.
5822         (log-edit-font-lock-keywords): Use it.
5823         (log-edit-mode): Make jit-lock-defer-multiline work.
5825 2014-01-13  Bastien Guerry  <bzg@gnu.org>
5827         * rect.el (rectangle-mark-mode): When the region is not active,
5828         display a message saying that the mark as been set and that
5829         rectangle mode is in use.
5830         (rectangle--highlight-for-redisplay): Only put an overlay with a
5831         visible vertical bar when (display-graphic-p) is non-nil.
5832         This partially fixes Bug#16403.
5834 2014-01-13  Juri Linkov  <juri@jurta.org>
5836         * info.el (Info-find-file): Go to DIR before displaying the error
5837         about a nonexistent file if no previous Info file is visited.
5838         Use `user-error' instead of `error' for "Info file %s does not exist".
5839         (Info-find-node-2): In case of a nonexistent node in unwind forms
5840         go to the Top node if there is no previous node to revert to.
5841         (Bug#16405)
5843 2014-01-13  Martin Rudalics  <rudalics@gmx.at>
5845         fit-frame/window-to-buffer code fixes including one for Bug#14096.
5846         * window.el (fit-frame-to-buffer): Fix doc-string.
5847         Respect window-min-height/-width.  Fit pixelwise when
5848         frame-resize-pixelwise is non-nil.  Adjust right/bottom edge
5849         when avoiding that frame goes partially off-screen.
5850         (fit-window-to-buffer): Respect window-min-height/-width
5851         (Bug#14096).
5853 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5855         * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
5856         after an empty line.
5858 2014-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5860         * net/shr.el (shr-render-region): Autoload.
5862 2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
5864         * net/eww.el (eww-download-directory): Rename from
5865         `eww-download-path' (Bug#16419).
5867 2014-01-12  Leo Liu  <sdl.web@gmail.com>
5869         * dired-x.el (dired-mode-map): Fix last change.
5871         * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
5873 2014-01-12  Paul Eggert  <eggert@cs.ucla.edu>
5875         Spelling fixes.
5876         * emacs-lisp/generic.el (generic--normalize-comments):
5877         Rename from generic--normalise-comments.  All uses changed.
5878         * play/bubbles.el (bubbles--neighborhood-score)
5879         (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
5880         (bubbles--neighborhood-available)
5881         (bubbles--update-neighborhood-score):
5882         Rename from names with 'neighbourhood'.  All uses changed.
5884 2014-01-12  Leo Liu  <sdl.web@gmail.com>
5886         Re-implement the feature of showing eldoc info after editing.
5887         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
5888         (eldoc-edit-message-commands): New function.
5889         (eldoc-print-after-edit): New variable.
5890         (eldoc-pre-command-refresh-echo-area): Emit message only by
5891         eldoc-message-commands.
5892         (eldoc-mode): Restrict eldoc-message-commands to editing commands
5893         if eldoc-print-after-edit is set.  (Bug#16346)
5894         * simple.el (read--expression): Enable eldoc-mode.
5895         * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
5897 2014-01-11  Dani Moncayo  <dmoncayo@gmail.com>
5898             Eric S. Raymond  <esr@thyrsus.com>
5900         * version.el (emacs-repository-get-version): Enhance so the
5901         function works correctly in either a Bazaar or Git repo.
5903 2014-01-11  Eric S. Raymond  <esr@thyrsus.com>
5905         * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
5906         Goes with removal of the joke manpages from /etc.
5908 2014-01-10  Kenichi Handa  <handa@gnu.org>
5910         * mail/rmail.el (rmail-get-coding-system):
5911         Check rmail-get-coding-function before "funcall"ing it.
5913 2014-01-10  Glenn Morris  <rgm@gnu.org>
5915         * emacs-lisp/authors.el (authors-fixed-entries):
5916         Update for files that no longer exist.
5918 2014-01-10  Eric S. Raymond  <esr@thyrsus.com>
5920         * version.el (emacs-bzr-get-version): Restore compatibilty with
5921         24.3 (Tested).
5923 2014-01-10  Bozhidar Batsov  <bozhidar@batsov.com>
5925         * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
5926         and Podfile.
5928 2014-01-10  Eli Zaretskii  <eliz@gnu.org>
5930         * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
5932 2014-01-10  Chong Yidong  <cyd@gnu.org>
5934         * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
5936 2014-01-10  Anders Lindgren  <andlind@gmail.com>
5938         * follow.el (follow-cache-command-list): Include right-char and
5939         left-char.
5941 2014-01-10  Paul Eggert  <eggert@cs.ucla.edu>
5943         Spelling fixes.
5944         * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
5945         * woman.el (woman-mark-horizontal-position):
5946         Rename from woman-mark-horizonal-position.  Use changed.
5948 2014-01-10  Glenn Morris  <rgm@gnu.org>
5950         * info.el (info-initialize): If running uninstalled, ensure our
5951         own info files are always found first, even if INFOPATH is set.
5953         * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
5955 2014-01-09  David Engster  <deng@randomsample.de>
5957         * emacs-lisp/eieio-custom.el:
5958         * emacs-lisp/eieio-opt.el: Set generated autoload file to
5959         'eieio.el'.  This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
5960         * emacs-lisp/eieio.el: Regenerate autoloads.
5962 2014-01-09  Eric S. Raymond  <esr@thyrsus.com>
5964         * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
5965         following renames.  (Bug#8756)
5967 2014-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5969         * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
5970         (bug#16382).
5971         (activate-mark): Add `no-tmm' argument.
5972         (set-mark, push-mark-command): Use it instead of running
5973         activate-mark-hook by hand.
5975 2014-01-08  Eric S. Raymond  <esr@thyrsus.com>
5977         In preparation for the move to git, sanitize out some
5978         Bazaar-specific names.
5980         * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
5982         * version.el (emacs-bzr-version): Name changed to
5983         emacs-repository-version.  Obsolete-variable alias made.
5984         * loadup.el: Follow through on this name change.
5985         * mail/emacsbug.el (report-emacs-bug): Factor out any
5986         assumption about the version control system in use.
5988 2014-01-08  David Engster  <deng@randomsample.de>
5990         * help-fns.el (help-fns-describe-function-functions):
5991         New variable to call functions for augmenting help buffers.
5992         (describe-function-1): Remove explicit calls to
5993         `help-fns--compiler-macro', `help-fns--parent-mode' and
5994         `help-fns--obsolete'.  Put them in above new variable instead, and
5995         call them through `run-hook-with-args'.
5996         * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
5997         `eieio-describe-class'.  Not meant for interactive use anymore,
5998         but to augment existing help buffers.  Remove optional second
5999         argument.  Create proper button for file location.
6000         Rewrite function to use `insert' instead of `princ' and `prin1' where
6001         possible.
6002         (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
6003         (eieio-method-def, eieio-class-def): Move further up.
6004         (describe-method, describe-generic, eieio-describe-method):
6005         Remove aliases.
6006         (eieio-help-constructor, eieio-help-generic): Rename from
6007         `eieio-describe-constructor' and `eieio-describe-generic', resp.
6008         Rewrite to use `insert' in the current buffer and use proper help
6009         buttons.
6010         (eieio-help-find-method-definition)
6011         (eieio-help-find-class-definition): Also accept symbols as
6012         arguments.
6013         (eieio-help-mode-augmentation-maybee): Remove.
6014         (eieio-describe-class-sb): Use `describe-function'.
6015         * emacs-lisp/eieio.el (help-fns-describe-function-functions):
6016         Add `eieio-help-generic' and `eieio-help-constructor'.
6018 2014-01-08  Paul Eggert  <eggert@cs.ucla.edu>
6020         Spelling fixes.
6021         * language/china-util.el (hz-ascii-designation):
6022         Rename from hz-ascii-designnation.
6023         (hz-ascii-designation): Rename from hz-ascii-designnation.
6024         All uses changed.
6026 2014-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6028         * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
6029         package-alist.
6031 2014-01-08  Bastien Guerry  <bzg@gnu.org>
6033         * emacs-lisp/package.el (package-delete):
6034         Correctly delete the package from package-alist.
6036 2014-01-08  Daiki Ueno  <ueno@gnu.org>
6038         * emacs-lisp/package.el (url-recreate-url): Declare.
6039         (url-http-target-url): Declare.
6040         (package-handle-response): Include requested URL in the error message.
6041         (package--check-signature): Don't re-signal errors from
6042         package--with-work-buffer.  Suggested by Stefan Monnier.
6044 2014-01-07  Bastien Guerry  <bzg@gnu.org>
6046         * minibuffer.el (completion--try-word-completion): When both a
6047         hyphen and a space are possible candidates for the character
6048         following a word, display both candidates.  (Bug#15980)
6050 2014-01-07  Martin Rudalics  <rudalics@gmx.at>
6052         * window.el (balance-windows-2): While rounding don't give a
6053         window more than the remainder.  Bug#16351, bug#16383.
6055 2014-01-07  Glenn Morris  <rgm@gnu.org>
6057         * menu-bar.el (menu-bar-help-extra-packages): Remove.
6058         (menu-bar-help-menu): Use view-external-packages instead.
6060 2014-01-07  Bastien Guerry  <bzg@gnu.org>
6062         * emacs-lisp/package.el (package-delete): Also delete the package
6063         name from `package-alist', not its description only.
6065 2014-01-07  Glenn Morris  <rgm@gnu.org>
6067         * help.el (view-external-packages):
6068         * menu-bar.el (menu-bar-help-extra-packages):
6069         Visit efaq.info rather than etc/MORE.STUFF.
6071 2014-01-07  Juri Linkov  <juri@jurta.org>
6073         * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
6074         isearch-exit and isearch-delete-char resp.  (Bug#16342, bug#16035)
6076         * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
6077         that shadows RET.  (Bug#16342)
6079 2014-01-07  Chong Yidong  <cyd@gnu.org>
6081         * isearch.el (isearch-yank-char, isearch-yank-word)
6082         (isearch-yank-line): Doc fix.
6084 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6086         * abbrev.el (define-abbrev): Beware new meaning of fboundp.
6087         * emacs-lisp/elint.el (elint-find-builtins):
6088         * emacs-lisp/eldoc.el (eldoc-symbol-function):
6089         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
6090         (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
6091         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
6092         * apropos.el (apropos-safe-documentation):
6093         * subr.el (symbol-file): Remove redundant fboundp.
6094         * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
6096 2014-01-06  Bastien Guerry  <bzg@gnu.org>
6098         * hl-line.el (global-hl-line-overlay): Make a local variable.
6099         (global-hl-line-overlays): New variable to store all overlays.
6100         (global-hl-line-mode): Don't delete overlays from the current
6101         buffer when `global-hl-line-sticky-flag' is non-nil.
6102         (global-hl-line-highlight): Add new overlays to
6103         `global-hl-line-overlays'.
6104         (global-hl-line-unhighlight-all): New function to delete all
6105         overlays when turning off `global-hl-line-mode'.
6106         This fixes Bug#16183.
6108 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6110         * subr.el (set-transient-map): Fix nested case and docstring.
6112 2014-01-06  Tassilo Horn  <tsdh@gnu.org>
6114         * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
6115         `Texinfo' entry.
6117 2014-01-06  Daniel Colascione  <dancol@dancol.org>
6119         Fix defun navigation in vc log view.
6121         * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
6122         like `beginning-of-defun'.
6123         (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
6124         log-view-end-of-defun to log-view-end-of-defun-1.  Replace
6125         log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
6126         (log-view-extract-comment): Call `log-view-current-entry' directly
6127         instead of relying on broken `log-view-beginning-of-defun' behavior.
6129 2014-01-06  Paul Eggert  <eggert@cs.ucla.edu>
6131         Spelling fixes.
6132         * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
6133         * emacs-lisp/debug.el (cancel-debug-on-entry):
6134         * epg.el (epg-error-to-string):
6135         * files.el (recover-file):
6136         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
6137         * mail/emacsbug.el (report-emacs-bug-hook):
6138         * mail/sendmail.el (mail-recover):
6139         * ses.el (ses-yank-resize):
6140         * term/ns-win.el (ns-print-buffer):
6141         Spelling fixes in diagnostics, mostly for "canceled" with one L.
6142         * epg.el (epg-key-capability-alist): Rename from misspelled version.
6143         All uses changed.
6144         * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
6146 2014-01-06  Leo Liu  <sdl.web@gmail.com>
6148         * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
6149         to avoid shadowing global key.  (Bug#16354)
6151 2014-01-06  Daniel Colascione  <dancol@dancol.org>
6153         * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
6154         rst-mode.
6156 2014-01-05  Martin Rudalics  <rudalics@gmx.at>
6158         * window.el (balance-windows): Add mising t to fix Bug#16351.
6160 2014-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6162         * net/shr.el (shr-descend): Don't bug out if the anchor is empty
6163         (bug#16285).
6164         (shr-insert): If we have a word that's longer than `shr-width',
6165         break after it anyway.  Otherwise we'll do no breaking once we get
6166         such a long word.
6168 2014-01-05  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
6170         * net/eww.el (eww): Support single/double quote for search.
6171         * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
6172         (eww-history-quit): Delete and use quit-window.
6173         (eww-history-kill): Delete, because it doesn't work well and
6174         not necessary.
6175         (eww-history-mode-map): Delete some keys and add easy-menu.
6177 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6179         Fix misspelling of 'chinese' in rx (Bug#16237).
6180         * emacs-lisp/rx.el (rx-categories): Correct spelling of
6181         chinese-two-byte.
6183         Change subword regexps back to vars (Bug#16296).
6184         * progmodes/subword.el (subword-forward-regexp)
6185         (subword-backward-regexp): Change these back to variables.
6187 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6189         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
6190         syntax-begin-function (bug#16247).
6192 2014-01-03  Chong Yidong  <cyd@gnu.org>
6194         * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
6195         (advice--docstring): Delete variable.
6196         (advice--make-1): Leave the docstring empty.
6197         (advice-add): Use function-documentation for advised docstring.
6199         * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
6200         Ignore function-documentation property when getting documentation.
6201         (ad-activate-advised-definition): Use function-documentation
6202         generate the docstring.
6203         (ad-make-advised-definition): Don't call
6204         ad-make-advised-definition-docstring.
6205         (ad-make-advised-definition-docstring, ad-advised-definition-p):
6206         Delete functions.
6208         * progmodes/sql.el (sql-help): Use function-documentation instead
6209         of dynamic-docstring-function property.  No need to autoload now.
6210         (sql--help-docstring): New variable.
6211         (sql--make-help-docstring): Use it.
6213 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6215         * ielm.el (ielm-tab): Retarget.
6216         (ielm-map): Use ielm-tab for tab.
6217         (ielm-complete-filename): Use comint-filename-completion.
6218         (ielm-complete-symbol): Remove.
6219         (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
6220         remove ielm-tab from completion-at-point-functions (bug#16224).
6222         * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
6223         Beware signals raised by predicates (bug#16201).
6225 2014-01-02  Richard Stallman  <rms@gnu.org>
6227         * dired-aux.el (dired-do-print): Handle printer-name.
6229         * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
6230         * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
6231         (rmail-epa-decrypt): Turn off mime processing.
6233         * mail/rmail.el (rmail-make-in-reply-to-field):
6234         Add parens in message-id.
6236         * mail/rmail.el (rmail-get-coding-function): Variable.
6237         (rmail-get-coding-system): Use it.
6239 2013-12-31  Eli Zaretskii  <eliz@gnu.org>
6241         * international/mule-conf.el: Unify the charset indian-is13194.
6242         (indian-is13194): Specify unify-map.
6244 2013-12-31  Leo Liu  <sdl.web@gmail.com>
6246         * subr.el (set-temporary-overlay-map): Obsolete alias.  (Bug#16305)
6248 2013-12-30  Daniel Colascione  <dancol@dancol.org>
6250         * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
6251         of printing a useless when we resume from sleep.
6253         * progmodes/sh-script.el
6254         (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
6255         in indentation code.  (Bug#16233)
6257 2013-12-28  João Távora  <joaotavora@gmail.com>
6259         * elec-pair.el (electric-pair-post-self-insert-function):
6260         Don't open extra newlines at beginning of buffer.  (Bug#16272)
6262 2013-12-28  Eli Zaretskii  <eliz@gnu.org>
6264         * frame.el (window-system-for-display): Don't allow to create a
6265         GUI frame from a -nw session on MS-Windows.  (Bug#14739)
6267 2013-12-28  Glenn Morris  <rgm@gnu.org>
6269         * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
6270         Update callers.
6272         * apropos.el (apropos-match-face):
6273         * calculator.el (calculator-displayer):
6274         * dabbrev.el (dabbrev-search-these-buffers-only):
6275         * face-remap.el (buffer-face-mode-face):
6276         * simple.el (yank-handled-properties):
6277         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
6278         * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
6279         * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
6280         (hashcash-double-spend-database):
6281         * progmodes/ruby-mode.el (ruby-deep-indent-paren)
6282         (ruby-deep-indent-paren-style):
6283         * textmodes/flyspell.el (flyspell-auto-correct-binding):
6284         * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
6285         (rst-toc-insert-number-separator, rst-toc-insert-max-level):
6286         * vc/pcvs-defs.el (cvs-minor-mode-prefix):
6287         Specify custom types.
6289         * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
6290         * bookmark.el (bookmark-bmenu-use-header-line):
6291         * doc-view.el (doc-view-scale-internally):
6292         * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
6293         * register.el (register-preview-delay):
6294         * net/shr.el (shr-bullet):
6295         * progmodes/cfengine.el (cfengine-cf-promises)
6296         (cfengine-parameters-indent):
6297         * progmodes/octave.el (inferior-octave-error-regexp-alist):
6298         * textmodes/reftex-vars.el (reftex-label-regexps):
6299         * vc/log-edit.el (log-edit-setup-add-author): Add version.
6301         * net/tls.el (tls-certtool-program): Fix default value.
6303         * desktop.el (desktop-restore-in-current-display):
6304         * newcomment.el (comment-empty-lines):
6305         * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
6306         (idlwave-pad-keyword):
6307         * progmodes/tcl.el (tcl-tab-always-indent):
6308         * textmodes/reftex-vars.el (reftex-index-default-tag):
6309         * elec-pair.el (electric-pair-skip-whitespace):
6310         * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
6312         * emacs-lisp/authors.el (authors-ignored-files)
6313         (authors-valid-file-names, authors-renamed-files-alist): Additions.
6315 2013-12-27  Jarek Czekalski  <jarekczek@poczta.onet.pl>
6317         * shell.el (shell-dynamic-complete-command): Doc fix.
6318         (shell--command-completion-data): Shell completion now matches
6319         executable filenames from the current buffer's directory, on
6320         systems in which this behavior is the default (windows-nt, ms-dos).
6322 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
6324         * net/shr.el (shr-insert): Don't infloop if the width is zero.
6326 2013-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6328         * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
6329         (bug#16251).
6331         * electric.el: Move all electric-pair-* to elec-pair.el.
6332         * elec-pair.el: New file, split from electric.el.
6334 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
6336         * net/shr.el (shr-find-fill-point): Don't try to fill if the
6337         indentation level is larger than the width, because that will
6338         infloop.
6339         (shr-insert): Fill repeatedly long texts, so that Japanese is
6340         formatted correctly (bug#16263).
6341         (shr-find-fill-point): Off by one error in comparison with the
6342         indentation.
6344 2013-12-26  João Távora  <joaotavora@gmail.com>
6346         * electric.el (electric-pair-mode): More flexible engine for skip-
6347         and inhibit predicates, new options for pairing-related functionality.
6348         (electric-pair-preserve-balance): Pair/skip parentheses and quotes
6349         if that keeps or improves their balance in buffers.
6350         (electric-pair-delete-adjacent-pairs): Delete the pair when
6351         backspacing over adjacent matched delimiters.
6352         (electric-pair-open-extra-newline): Open extra newline when
6353         inserting newlines between adjacent matched delimiters.
6354         (electric--sort-post-self-insertion-hook):
6355         Sort post-self-insert-hook according to priority values when
6356         minor-modes are activated.
6357         * simple.el (newline-and-indent): Call newline with interactive
6358         set to t.
6359         (blink-paren-post-self-insert-function): Set priority to 100.
6360         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6361         Use electric-pair-text-pairs to pair backtick-and-quote in strings and
6362         comments.  Locally set electric-pair-skip-whitespace to 'chomp and
6363         electric-pair-open-newline-between-pairs to nil.
6365 2013-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6367         * progmodes/python.el: Use lexical-binding.
6368         (python-nav-beginning-of-defun): Stop searching ASAP.
6370 2013-12-25  Xue Fuqiao  <xfq.free@gmail.com>
6372         * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
6373         Fix interactive spec.  Doc fix.  (Bug#15754)
6375 2013-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6377         * emacs-lisp/byte-run.el (eval-when-compile):
6378         * progmodes/cc-defs.el (cc-eval-when-compile):
6379         Fix edebug spec (bug#16184).
6381 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
6383         * net/shr.el (shr-visit-file): Remove debugging function.
6384         (shr-insert): Don't infloop if we can't find a good place to break
6385         the line (bug#16256).
6387 2013-12-25  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6389         * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
6390         (python-nav--lisp-forward-sexp-safe): Use it.  Rename from
6391         python-nav-lisp-forward-sexp-safe.
6392         (python-nav--forward-sexp): New argument SAFE allows switching
6393         forward sexp movement behavior for parens.
6394         (python-nav-forward-sexp): Throw errors on unterminated parens
6395         (Bug#16191).
6396         (python-nav-backward-sexp, python-nav-forward-sexp-safe)
6397         (python-nav-backward-sexp-safe): New functions.
6398         (python-shell-buffer-substring):
6399         Use `python-nav-forward-sexp-safe'.
6401 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
6403         * net/shr.el (shr-find-fill-point): Don't break lines before a
6404         quotation mark.
6405         (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
6406         (shr-find-fill-point): Remove the special checks for the quotation
6407         mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
6409 2013-12-25  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
6411         * net/eww.el (eww-form-textarea): Use a different face for
6412         textareas than text input since they have different keymaps
6413         (bug#16142).
6415 2013-12-24  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6417         * progmodes/python.el (python-nav-beginning-of-statement):
6418         Speed up (Bug#15295).
6420 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
6422         * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
6423         the window configuration.
6425 2013-12-24  Eli Zaretskii  <eliz@gnu.org>
6427         * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
6428         we run on MS-Windows or MS-DOS.
6430 2013-12-24  Martin Rudalics  <rudalics@gmx.at>
6432         * window.el (balance-windows-area): Call window-size instead of
6433         window-height and window-width.  Bug#16241.
6435 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
6437         * net/eww.el (eww-bookmark-quit): Remove.
6438         (eww-bookmark-browse): Restore the window configuration when you
6439         choose a bookmark (bug#16144).
6441 2013-12-24  Daniel Colascione  <dancol@dancol.org>
6443         * icomplete.el: Remove redundant :group arguments to `defcustom'
6444         throughout.
6445         (icomplete-show-matches-on-no-input): New customizable variable.
6446         (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
6447         we have something to show.
6448         (icomplete-exhibit): Compute completions even if we have no user input.
6450 2013-12-23  Daniel Colascione  <dancol@dancol.org>
6452         * icomplete.el: Move `provide' to end of file.
6454 2013-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
6456         * net/gnutls.el (gnutls-verify-error): Add version tag.
6458 2013-12-23  Chong Yidong  <cyd@gnu.org>
6460         * subr.el (set-transient-map): Rename from
6461         set-temporary-overlay-map.  Doc fix.
6463         * face-remap.el (text-scale-adjust):
6464         * indent.el (indent-rigidly):
6465         * kmacro.el (kmacro-call-macro):
6466         * minibuffer.el (minibuffer-force-complete):
6467         * repeat.el (repeat):
6468         * simple.el (universal-argument--mode):
6469         * calendar/todo-mode.el (todo-insert-item--next-param):
6470         * progmodes/f90.el (f90-abbrev-start): Callers changed.
6472         * indent.el (indent-rigidly): Use substitute-command-keys.
6474 2013-12-22  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
6476         * net/eww.el (eww-tag-select): Add text-property to jump to next
6477         select field.
6478         (eww): Add non-supported ftp error.
6480 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
6482         * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
6483         comments.  Handle electric indent after typing `?' and `!'.
6485 2013-12-22  Chong Yidong  <cyd@gnu.org>
6487         * faces.el (face-spec-recalc): If the theme specs are not
6488         applicable to a frame, fall back on the defface spec.
6489         This prevents themes from obliterating faces on low-color terminals.
6491 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
6493         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
6494         after `{'.  We need it after block openers, and it doesn't seem
6495         to hurt after hash openers.
6497 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
6499         * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
6500         extracted from `ruby-smie-rules'.
6501         (ruby--electric-indent-chars): New variable.
6502         (ruby--electric-indent-p): New function.
6503         (ruby-mode): Use `electric-indent-functions' instead of
6504         `electric-indent-chars'.
6506 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
6508         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
6509         docstring.
6510         (ruby-smie-rules): Indent plus one level after `=>'.
6512 2013-12-21  Richard Stallman  <rms@gnu.org>
6514         * simple.el (newline): Doc fix.
6516 2013-12-21  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
6518         * net/eww.el (eww-list-histories, eww-list-histories)
6519         (eww-history-browse, eww-history-quit, eww-history-kill)
6520         (eww-history-mode-map, eww-history-mode): New command and
6521         functions to list browser histories.
6522         (eww-form-text): Support text form with disabled
6523         and readonly attributes.
6524         (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
6526 2013-12-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
6528         * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
6529         (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
6530         (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
6531         (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
6532         Use `user-error'.
6533         (eww-bookmark-mode-map): Add menu.
6534         (eww-render, eww-mode): Use `setq-local'.
6535         (eww-tool-bar-map): New variable.
6536         (eww-mode): Set `tool-bar-map'.
6537         (eww-view-source): Check for `html-mode' with `fboundp'.
6539 2013-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6541         * net/shr.el (shr--extract-best-source): Don't bug out on audio
6542         elements with text inside.  Also remove debugging.
6544 2013-12-21  Jan Djärv  <jan.h.d@swipnet.se>
6546         * cus-start.el (all): Add ns-use-srgb-colorspace.
6548 2013-12-21  Chong Yidong  <cyd@gnu.org>
6550         * custom.el (custom-theme-recalc-face): Do nothing if the face is
6551         undefined.  Thus, theme settings for undefined faces do not take
6552         effect until the faces are defined with defface, the same as with
6553         theme variables.
6555         * faces.el (face-spec-set): Use face-spec-recalc in all cases.
6556         (face-spec-reset-face): Don't assign extra properties in temacs.
6557         (face-spec-recalc): Apply X resources too.
6559 2013-12-21  Chong Yidong  <cyd@gnu.org>
6561         * faces.el (face-spec-set):
6562         * cus-face.el (custom-theme-set-faces, custom-set-faces):
6563         * custom.el (defface): Doc fixes (Bug#16203).
6565         * indent.el (indent-rigidly-map): Add docstring, and move commands
6566         into named functions.
6567         (indent-rigidly-left, indent-rigidly-right)
6568         (indent-rigidly-left-to-tab-stop)
6569         (indent-rigidly-right-to-tab-stop): New functions.  Decide on
6570         indentation direction based on bidi direction, and accumulate
6571         sequential commands in a single undo boundary.
6572         (indent-rigidly--pop-undo): New utility function.
6574 2013-12-20  Juanma Barranquero  <lekktu@gmail.com>
6576         * faces.el (read-face-name): Require crm.el when using crm-separator.
6578 2013-12-20  Daniel Colascione  <dancol@dancol.org>
6580         * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
6581         so that we don't reflow comments into the shebang line.
6583 2013-12-20  Juri Linkov  <juri@jurta.org>
6585         * saveplace.el (save-place-to-alist): Add `dired-filename' as
6586         a position when `dired-directory' is non-nil.  Check integer
6587         positions with `integerp'.
6588         (toggle-save-place, save-places-to-alist): Add check for
6589         `dired-directory'.
6590         (save-place-find-file-hook): Check integer positions with
6591         `integerp'.
6592         (save-place-dired-hook): Use `dired-goto-file' when
6593         `dired-filename' is found in the assoc list.  Check integer
6594         positions with `integerp'.
6595         (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
6597         * dired.el (dired-initial-position-hook): Rename back from
6598         `dired-initial-point-hook'.
6599         (dired-initial-position): Rename `dired-initial-point-hook' to
6600         `dired-initial-position-hook'.
6601         (dired-file-name-at-point): Doc fix.  (Bug#15329)
6603 2013-12-20  Juri Linkov  <juri@jurta.org>
6605         * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
6606         (read-regexp-suggestions): New function.
6607         (read-regexp): Use `read-regexp-defaults-function' to get default values.
6608         Use `read-regexp-suggestions'.  Add non-empty default to history
6609         for empty input.
6610         (occur-read-regexp-defaults-function): Remove function.
6611         (occur-read-primary-args): Use `regexp-history-last' instead of
6612         `occur-read-regexp-defaults-function'.
6614         * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
6615         (hi-lock-line-face-buffer, hi-lock-face-buffer)
6616         (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
6617         `hi-lock-read-regexp-defaults-function'.  Doc fix.
6618         (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
6619         with `find-tag-default-as-symbol-regexp'.  Doc fix.
6620         (hi-lock-read-regexp-defaults): Remove function.
6621         (hi-lock-regexp-okay): Add check for null.
6623         * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
6624         the arg DEFAULTS.  Move formatting of the prompt to `read-regexp'.
6626         * subr.el (find-tag-default-as-symbol-regexp): New function.
6627         (find-tag-default-as-regexp): Move symbol regexp formatting to
6628         `find-tag-default-as-symbol-regexp'.
6630 2013-12-20  E Sabof  <esabof@gmail.com>  (tiny change)
6632         * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
6633         (Bug#14179)
6635 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
6637         * calendar/todo-mode.el: New implementation of item insertion
6638         commands and key bindings.
6639         (todo-key-prompt): New face.
6640         (todo-insert-item): New command.
6641         (todo-insert-item--parameters): New defconst, replacing defvar
6642         todo-insertion-commands-args-genlist.
6643         (todo-insert-item--param-key-alist): New defconst, replacing
6644         defvar todo-insertion-commands-arg-key-list.
6645         (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
6646         (todo-insert-item--argsleft, todo-insert-item--apply-args)
6647         (todo-insert-item--next-param): New functions.
6648         (todo-insert-item--args, todo-insert-item--argleft)
6649         (todo-insert-item--argsleft, todo-insert-item--newargsleft):
6650         New variables.
6651         (todo-key-bindings-t): Change binding of "i" from
6652         todo-insertion-map to todo-insert-item.
6653         (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
6654         (todo-insertion-command-name, todo-insertion-commands-names)
6655         (todo-define-insertion-command, todo-insertion-commands)
6656         (todo-insertion-key-bindings, todo-insertion-map): Remove.
6658 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
6660         * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
6661         (todo-toggle-item-highlighting): Use eval-and-compile instead of
6662         eval-when-compile.
6663         (todo-move-category): Allow choosing a non-existing todo file to
6664         move the category to, and create that file.
6665         (todo-default-priority): New user option.
6666         (todo-set-item-priority): Use it.
6667         (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
6668         (desktop-restore-file-buffer): Declare.
6669         (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
6670         (todo-modes-set-2): Locally set desktop-save-buffer to
6671         todo-desktop-save-buffer.
6672         (todo-mode, todo-archive-mode, todo-filtered-items-mode)
6673         (auto-mode-alist): Add autoload cookie.
6675 2013-12-20  Bozhidar Batsov  <bozhidar@batsov.com>
6677         * emacs-lisp/subr-x.el: Renamed from helpers.el.
6678         helpers.el was a poor choice of name.
6679         (string-remove-prefix): New function.
6680         (string-remove-suffix): New function.
6682 2013-12-20  Martin Rudalics  <rudalics@gmx.at>
6684         Fix assignment for new window total sizes.
6685         * window.el (window--pixel-to-size): Remove function.
6686         (window--pixel-to-total-1, window--pixel-to-total):
6687         Fix calculation of new total sizes.
6689 2013-12-20  Vitalie Spinu  <spinuvit@gmail.com>
6691         * comint.el (comint-output-filter): Fix rear-nonsticky property
6692         placement (Bug#16010).
6694 2013-12-20  Chong Yidong  <cyd@gnu.org>
6696         * faces.el (read-color): Minor fix for completion function.
6698 2013-12-20  Dmitry Gutov  <dgutov@yandex.ru>
6700         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
6701         New option.  (Bug#16182)
6702         (ruby-smie--indent-to-stmt-p): Use it.
6703         (ruby-smie-rules): Revert the logic in the handling of `when'.
6704         Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
6705         (ruby-deep-arglist, ruby-deep-indent-paren)
6706         (ruby-deep-indent-paren-style): Update docstrings to note that the
6707         vars don't have any effect with SMIE.
6709 2013-12-20  Jay Belanger  <jay.p.belanger@gmail.com>
6711         * calc/calc.el (calc-enter, calc-pop): Use the variable
6712         `calc-context-sensitive-enter'.
6714 2013-12-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6716         * net/shr.el (shr-insert): Protect against infloops in degenerate
6717         tables.
6719 2013-12-20  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
6721         * progmodes/octave.el (octave): Add link to manual and octave
6722         homepage.
6723         (octave-mode-menu): Link to octave-mode manual.
6725 2013-12-20  Leo Liu  <sdl.web@gmail.com>
6727         * skeleton.el (skeleton-pair-insert-maybe): Disable newline
6728         insertion using skeleton-end-newline.  (Bug#16138)
6730 2013-12-20  Juri Linkov  <juri@jurta.org>
6732         * replace.el (occur-engine): Use `add-face-text-property'
6733         to add the face property to matches and titles.  (Bug#14645)
6735         * hi-lock.el (hi-green): Use lighter color "light green" closer to
6736         the palette of other hi-lock colors.
6737         (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
6739 2013-12-19  Juri Linkov  <juri@jurta.org>
6741         * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
6742         Put :advertised-binding on `M-s c', `M-s r', `M-s e'.  (Bug#16035)
6743         (minibuffer-history-symbol): Move variable declaration closer to
6744         its usage.
6746         * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
6747         (Bug#14785)
6749 2013-12-19  Juri Linkov  <juri@jurta.org>
6751         * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
6752         New function.
6753         (log-edit-hook): Add it to :options.  (Bug#16170)
6755 2013-12-19  Juri Linkov  <juri@jurta.org>
6757         * simple.el (eval-expression-print-format): Don't check for
6758         command names and the last command.  Always display additional
6759         formats of the integer result in the echo area, and insert them
6760         to the current buffer only with a zero prefix arg.
6761         Display character when char-displayable-p is non-nil.
6762         (eval-expression): With a zero prefix arg, set `print-length' and
6763         `print-level' to nil, and insert the integer values from
6764         `eval-expression-print-format' at the end.  Doc fix.  (Bug#12985)
6766         * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
6767         `eval-last-sexp-arg-internal'.  Doc fix.
6768         (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
6769         `eval-last-sexp-print-value'.  Doc fix.
6770         (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
6771         Set `print-length' and `print-level' to nil when arg is zero.
6772         (eval-last-sexp): Doc fix.
6773         (eval-defun-2): Print the integer values from
6774         `eval-expression-print-format' at the end.
6776         * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
6777         values from `eval-expression-print-format' at the end.
6779         * ielm.el (ielm-eval-input): Print the integer
6780         values from `eval-expression-print-format' at the end.
6782 2013-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
6784         * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
6785         2013-12-11T19:01:44Z!tzz@lifelogs.com.
6787 2013-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6789         * hl-line.el (hl-line-make-overlay): New fun.  Set priority (bug#16192).
6790         (hl-line-highlight, global-hl-line-highlight): Use it.
6791         (hl-line-overlay): Use defvar-local.
6793 2013-12-19  Jan Djärv  <jan.h.d@swipnet.se>
6795         * term/ns-win.el: Require dnd.
6796         (global-map): Remove drag items.
6797         (ns-insert-text, ns-set-foreground-at-mouse)
6798         (ns-set-background-at-mouse):
6799         Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
6800         (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
6801         New functions.
6803 2013-12-19  Glenn Morris  <rgm@gnu.org>
6805         * emacs-lisp/ert.el (ert-select-tests):
6806         Fix string/symbol mixup.  (Bug#16121)
6808 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
6810         * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
6811         keywords to their parent.
6813 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
6815         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
6816         first arg to be a string (fixed dead code), or an operator symbol.
6817         (ruby-smie--forward-token): Tokenize ` @ ' before strings and
6818         operator symbols.
6819         (ruby-smie-rules): Remove parent token check in the `.' clause, it
6820         did nothing.  Don't respond to `(:after ".")', it will be called
6821         with :before anyway.  Remove the ` @ ' rule, it didn't seem to
6822         change anything.  Only return indentation for binary operators
6823         when they are hanging.  De-dent opening paren when its parent is
6824         `.', otherwise it looks bad when the dot is not at bol or eol
6825         (bug#16182).
6827 2013-12-19  Juri Linkov  <juri@jurta.org>
6829         * replace.el (query-replace-read-args): Split a non-negative arg
6830         and a negative arg into separate elements.
6831         (query-replace, query-replace-regexp, replace-string)
6832         (replace-regexp): Add arg `backward'.  Doc fix.
6833         (replace-match-maybe-edit): When new arg `backward' is non-nil,
6834         move point to the beginning of the match.
6835         (replace-search, replace-highlight): Use new arg `backward'
6836         to set the value of `isearch-forward'.
6837         (perform-replace): Add arg `backward' and use it to perform
6838         replacement backward.  (Bug#14979)
6840         * isearch.el (isearch-query-replace): Use a negative prefix arg
6841         to call `perform-replace' with a non-nil arg `backward'.
6843 2013-12-18  Juri Linkov  <juri@jurta.org>
6845         * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
6846         to the default list.  Move `log-edit-show-files' to the end.
6847         Add more available functions to options.
6848         (log-edit): Move default specific settings to
6849         `log-edit-insert-message-template'.  Don't move point.
6850         (log-edit-insert-message-template): New function.
6851         (log-edit-insert-changelog): Add `save-excursion' and don't move point.
6852         (Bug#16170)
6854 2013-12-18  Juri Linkov  <juri@jurta.org>
6856         * help-mode.el (help-mode-map): Bind "l" to help-go-back,
6857         and "r" to help-go-forward for compatibity with Info.  (Bug#16178)
6859 2013-12-18  Leo Liu  <sdl.web@gmail.com>
6861         * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
6862         (Bug#16186)
6864 2013-12-18  Eli Zaretskii  <eliz@gnu.org>
6866         * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
6867         formats for displaying file sizes when the -s switch is given.
6868         Instead, compute a separate format for displaying the size in
6869         blocks, which is displayed in addition to the "regular" size.
6870         When -h is given in addition to -s, produce size in blocks in
6871         human-readable form as well.  (Bug#16179)
6873 2013-12-18  Tassilo Horn  <tsdh@gnu.org>
6875         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
6876         Reference tables with ~\ref{...} instead of only \ref{...}.
6878 2013-12-18  Chong Yidong  <cyd@gnu.org>
6880         * cus-edit.el (custom-magic-alist): Fix "themed" description
6881         (Bug#14348).
6883         * custom.el (custom-push-theme): If custom--inhibit-theme-enable
6884         is non-nil, do not create a new entry in the symbol's theme-value
6885         or theme-face property; update theme-settings only (Bug#14664).
6886         (custom-available-themes): Doc fix.
6888         * cus-theme.el (custom-new-theme-mode-map): Add bindings
6889         (Bug#15674).
6891         * replace.el (occur-engine): Avoid infloop (Bug#7593).
6893 2013-12-18  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6895         * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
6896         (Bug#13914).
6898 2013-12-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
6900         * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
6902 2013-12-18  Glenn Morris  <rgm@gnu.org>
6904         * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
6905         * cus-start.el (load-prefer-newer): New option.
6907 2013-12-18  Le Wang  <l26wang@gmail.com>
6909         * comint.el (comint-previous-matching-input-from-input):
6910         Retain point (Bug#13404).
6912 2013-12-18  Chong Yidong  <cyd@gnu.org>
6914         * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
6916 2013-12-18  Glenn Morris  <rgm@gnu.org>
6918         * mail/emacsbug.el (report-emacs-bug):
6919         Only mention enable-multibyte-characters if non-standard.
6921 2013-12-17  Juri Linkov  <juri@jurta.org>
6923         * arc-mode.el (archive-extract-by-file): Check if directory exists
6924         before deletion to not show irrelevant errors if it doesn't exist.
6926 2013-12-17  Juri Linkov  <juri@jurta.org>
6928         * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
6929         (Bug#14751)
6931         * net/eww.el (browse-web): Add alias to `eww'.
6932         (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
6933         Bind "S-SPC" to `scroll-down-command'.  (Bug#16178)
6935         * net/browse-url.el (browse-url-browser-function): Move `eww'
6936         closer to similar functions.
6938         * startup.el (fancy-startup-screen, fancy-about-screen):
6939         Set browse-url-browser-function to eww-browse-url locally.
6940         (Bug#14751)
6942 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6944         * window.el (window--pixel-to-total): Remove unused `mini' var.
6945         (maximize-window, minimize-window): Remove unused `pixelwise' arg.
6946         (split-window): Remove unused `new' var.
6947         (window--display-buffer): Remove unused `frame' and `delta' vars.
6948         (fit-window-to-buffer): Remove unused vars `frame', `display-height',
6949         and display-width'.
6951 2013-12-17  Martin Rudalics  <rudalics@gmx.at>
6953         * dired.el (dired-mark-pop-up):
6954         * register.el (register-preview): Don't bind
6955         split-height-threshold here since it's now done in
6956         display-buffer-below-selected.
6958 2013-12-17  oblique  <psyberbits@gmail.com>  (tiny change)
6960         * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
6961         xterm-rgb-convert-to-16bit.
6962         (rxvt-register-default-colors): Standardize with
6963         xterm-register-default-colors (Bug#14078).
6965 2013-12-17  Dima Kogan  <dima@secretsauce.net>  (tiny change)
6967         * simple.el (kill-region): Pass mark first, then point, so that
6968         kill-append works right (Bug#12819).
6969         (copy-region-as-kill, kill-ring-save): Likewise.
6971 2013-12-17  Leo Liu  <sdl.web@gmail.com>
6973         * net/rcirc.el (rcirc-add-face):
6974         * eshell/em-prompt.el (eshell-emit-prompt):
6975         * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
6976         (Bug#16167)
6978 2013-12-17  Chong Yidong  <cyd@gnu.org>
6980         * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
6981         Suggested by Xue Fuqiao.
6983 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
6985         * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
6987 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6989         * net/shr.el (shr-insert-document): Remove unused var
6990         `shr-preliminary-table-render'.
6991         (shr-rescale-image): Remove unused arg `force'.
6992         (shr-put-image): Update calls accordingly.
6993         (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
6995 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
6997         * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
6998         (smie-indent-close): Call `smie-indent--rule-1' with METHOD
6999         :close-all, to see which indentation method to use (Bug#16116).
7000         (smie-rules-function): Document the method :close-all.
7002 2013-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7004         * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
7006         * net/eww.el (eww-display-html): If we can't find the anchor we're
7007         looking for, then go to point-min.
7009 2013-12-16  Paul Eggert  <eggert@cs.ucla.edu>
7011         Fix problems with CANNOT_DUMP and EMACSLOADPATH.
7012         * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
7013         * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
7014         Expand dir too, in case it's relative.
7016 2013-12-16  Juri Linkov  <juri@jurta.org>
7018         * desktop.el (desktop-auto-save-timeout): Change default to
7019         `auto-save-timeout'.  Doc fix.
7020         (desktop-save): Skip the timestamp in desktop-saved-frameset
7021         when checking for auto-save changes.
7022         (desktop-auto-save): Don't call desktop-auto-save-set-timer since
7023         `desktop-auto-save' is called repeatedly by the idle timer.
7024         (desktop-auto-save-set-timer): Replace `run-with-timer' with
7025         `run-with-idle-timer' and a non-nil arg REPEAT.  Doc fix.
7026         (Bug#15331)
7028 2013-12-16  Juri Linkov  <juri@jurta.org>
7030         * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
7031         (Bug#16035)
7032         (isearch-pre-command-hook): Check `this-command' for symbolp.
7034 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7036         * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
7038 2013-12-16  Teodor Zlatanov  <tzz@lifelogs.com>
7040         * progmodes/cfengine.el (cfengine3--current-word): Remove.
7041         (cfengine3--current-function): Bring in the current-function
7042         functionality from `cfengine3--current-word'.
7043         (cfengine3-completion-function): Bring in the
7044         bounds-of-current-word functionality from
7045         `cfengine3--current-word'.
7047 2013-12-16  Martin Rudalics  <rudalics@gmx.at>
7049         * window.el (display-buffer-below-selected):
7050         Bind split-height-threshold to 0 as suggested by Juri Linkov.
7052 2013-12-16  Leo Liu  <sdl.web@gmail.com>
7054         * progmodes/compile.el (compile-goto-error): Do not push-mark.
7055         Remove NOMSG arg and all uses changed.
7057 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7059         * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
7060         (cua--deactivate-rectangle): Don't deactivate the mark.
7061         (cua-set-rectangle-mark): Don't set mark-active since
7062         cua--activate-rectangle already does it for us.
7063         (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
7064         non-rectangular region.
7066         * emulation/cua-base.el (cua-repeat-replace-region):
7067         Use with-current-buffer.
7069         * net/gnutls.el: Use cl-lib.
7070         (gnutls-negotiate): `mapcan' -> cl-mapcan.
7072 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
7074         * emacs-lisp/package.el (package-built-in-p): Support both
7075         built-in and the package.el converted package descriptions.
7076         (package-show-package-list): Allow keywords.
7077         (package-keyword-button-action): Use it instead of
7078         `finder-list-matches'.
7079         (package-menu-filter-interactive): Interactive filtering (by
7080         keyword) function.
7081         (package-menu--generate): Support keywords and change keymappings
7082         and headers when they are given.
7083         (package--has-keyword-p): Helper function.
7084         (package-menu--refresh): Use it.
7085         (package--mapc): Helper function.
7086         (package-all-keywords): Use it.
7087         (package-menu-mode-map): Set up menu items and keybindings to
7088         provide a filtering UI.
7090 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
7092         * net/gnutls.el (gnutls-verify-error): New defcustom to control
7093         the behavior when a certificate fails validation.  Defaults to
7094         old behavior: never abort, just warn.
7095         (gnutls-negotiate): Use it.
7097 2013-12-14  Martin Rudalics  <rudalics@gmx.at>
7099         * window.el (display-buffer-below-selected): Never split window
7100         horizontally.  Suggested by Juri Linkov <juri@jurta.org>.
7102 2013-12-14  Tom Willemse  <tom@ryuslash.org>  (tiny change)
7104         * emacs-lisp/package.el (package--prepare-dependencies): New function.
7105         (package-buffer-info): Use it (bug#15108).
7107 2013-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7109         * icomplete.el (icomplete-completions): Make sure the prefix is already
7110         displayed elsewhere before hiding it (bug#16219).
7112 2013-12-14  Dmitry Gutov  <dgutov@yandex.ru>
7114         * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
7115         open-paren tokens when preceded by a open-paren, too.
7116         (ruby-smie-rules): Handle virtual indentation after open-paren
7117         tokens specially.  If there is code between it and eol, return the
7118         column where is starts (Bug#16118).
7120 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
7122         * progmodes/cfengine.el: Fix `add-hook' doc.
7123         (cfengine-mode-syntax-functions-regex): Initialize sensibly.
7124         (cfengine3--current-word): Fix parameters.
7125         (cfengine3-make-syntax-cache): Simplify further.
7126         (cfengine3-completion-function, cfengine3--current-function):
7127         Use `assq' for symbols.
7128         (cfengine3--current-function): Fix `cfengine3--current-word' call.
7130 2013-12-13  Glenn Morris  <rgm@gnu.org>
7132         * loadup.el (load-path): Warn if site-load or site-init changes it.
7133         No more need to reset it when bootstrapping.
7135 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
7137         * progmodes/cfengine.el (cfengine-cf-promises): Add more default
7138         locations for cf-promises.
7139         (cfengine-mode-syntax-functions-regex): New caching variable.
7140         (cfengine3-fallback-syntax): Fallback syntax for cases where
7141         cf-promises doesn't run.
7142         (cfengine3--current-word): Reimplement using
7143         `cfengine-mode-syntax-functions-regex'.
7144         (cfengine3-completion-function, cfengine3--current-function):
7145         Use `cfengine3-make-syntax-cache' directly.
7146         (cfengine3-clear-syntax-cache): New function.
7147         (cfengine3-make-syntax-cache): Simplify and create
7148         `cfengine-mode-syntax-functions-regex' on demand.
7149         (cfengine3-format-function-docstring): Don't call
7150         `cfengine3-make-syntax-cache' explicitly.
7152 2013-12-13  Martin Rudalics  <rudalics@gmx.at>
7154         Fix windmove-find-other-window broken after pixelwise resizing
7155         (Bug#16017).
7156         * windmove.el (windmove-other-window-loc): Revert change from
7157         2013-12-04.
7158         (windmove-find-other-window): Call window-in-direction.
7159         * window.el (window-in-direction): New arguments SIGN, WRAP and
7160         MINI to emulate original windmove-find-other-window behavior.
7162 2013-12-13  Dmitry Gutov  <dgutov@yandex.ru>
7164         * simple.el (blink-matching--overlay): New variable.
7165         (blink-matching-open): Instead of moving point, highlight the
7166         matching paren with an overlay
7167         (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
7169         * faces.el (paren-showing-faces, show-paren-match)
7170         (show-paren-mismatch): Move from paren.el.
7172 2013-12-13  Leo Liu  <sdl.web@gmail.com>
7174         * indent.el (indent-region): Disable progress reporter in
7175         minibuffer.  (Bug#16108)
7177         * bindings.el (visual-order-cursor-movement): Fix version.
7179 2013-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7181         * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
7182         Also match after beginning of line.
7183         (python-pdbtrack-set-tracked-buffer): Fix logic for remote
7184         files.  Thanks to Russell Sim.  (Bug#15378)
7186 2013-12-13  Juri Linkov  <juri@jurta.org>
7188         * simple.el <Keypad support>: Remove key bindings duplicated
7189         with bindings.el.  (Bug#14397)
7191 2013-12-13  Juri Linkov  <juri@jurta.org>
7193         * comint.el (comint-mode-map): Replace `delete-char' with
7194         `delete-forward-char'.  (Bug#16109)
7196 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7198         * progmodes/python.el (python-indent-calculate-indentation):
7199         Fix de-denters cornercase.  (Bug#15731)
7201 2013-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7203         * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
7204         (advice--make): Pay attention to `depth'.
7205         (advice--make-1): Don't autoload commands eagerly.
7206         * emacs-lisp/elp.el (elp-instrument-function):
7207         * emacs-lisp/trace.el (trace-function-internal):
7208         * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
7210         * iswitchb.el (iswitchb-mode): Don't belittle ido.
7212 2013-12-12  Eli Zaretskii  <eliz@gnu.org>
7214         * term/w32-win.el (w32-handle-dropped-file):
7215         * startup.el (normal-top-level):
7216         * net/browse-url.el (browse-url-file-url):
7217         * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
7218         decode file names using 'utf-8' rather than
7219         file-name-coding-system.
7221 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7223         * progmodes/python.el (python-indent-context)
7224         (python-indent-calculate-indentation): Fix auto-identation
7225         behavior for comment blocks.  (Bug#15916)
7227 2013-12-12  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
7229         * progmodes/python.el (python-indent-calculate-indentation):
7230         When determining indentation, don't treat "return", "pass", etc., as
7231         operators when they are just string constituents.  (Bug#15812)
7233 2013-12-12  Juri Linkov  <juri@jurta.org>
7235         * uniquify.el (uniquify-buffer-name-style): Change default to
7236         `post-forward-angle-brackets'.
7238         * menu-bar.el (menu-bar-options-menu): Don't require preloaded
7239         `uniquify'.  Change default to `post-forward-angle-brackets'.
7241 2013-12-11  Glenn Morris  <rgm@gnu.org>
7243         * emacs-lisp/package.el (finder-list-matches):
7244         Autoload rather than falsely declaring.
7246 2013-12-11  Teodor Zlatanov  <tzz@lifelogs.com>
7248         * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
7249         (eww-mode-map): Use them.
7251 2013-12-11  Martin Rudalics  <rudalics@gmx.at>
7253         * window.el (display-buffer-in-side-window): Fix doc-string
7254         (Bug#16115).
7256 2013-12-11  Juanma Barranquero  <lekktu@gmail.com>
7258         * vc/vc-git.el: Silence byte-compiler warnings.
7259         (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
7260         (log-edit-set-header): Declare.
7262 2013-12-11  Eli Zaretskii  <eliz@gnu.org>
7264         * Makefile.in (custom-deps, finder-data): Run output file names
7265         through unmsys--file-name.  (Bug#16099)
7267 2013-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7269         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
7270         comment-start-skip, which fails when that uses submatch 1 (bug#16041).
7272         * emulation/cua-base.el (cua-paste): Add `delete-selection' property
7273         instead of deleting the selection "by hand" (bug#16098).
7274         Rely on insert-for-yank to yank rectangles.
7275         (cua-highlight-region-shift-only): Mark obsolete.
7276         (cua-mode): Don't enable/disable transient-mark-mode,
7277         shift-select-mode (cua-mode works both with and without them), and
7278         pc-selection-mode (obsolete).
7279         * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
7280         (cua--deactivate-rectangle): Deactivate it.
7282         * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
7283         (delete-selection-helper): Make sure yank starts at the top of the
7284         deleted region.
7285         (minibuffer-keyboard-quit): Use region-active-p.
7287         * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
7289         * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
7290         to `delete' (bug#16109).
7292 2013-12-11  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7294         * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
7295         info manual and show keybindings and set `:group' keyword.
7297 2013-12-11  Juri Linkov  <juri@jurta.org>
7299         * delsel.el (delete-active-region): Let-bind `this-command'
7300         to prevent `kill-region' from changing its original value.
7301         (delete-selection-helper): Handle `overwrite-mode' for the type
7302         `kill' exactly the same way as for the type `t'.
7303         (insert-char, quoted-insert, reindent-then-newline-and-indent):
7304         Support more commands.  (Bug#13312)
7306 2013-12-11  Juri Linkov  <juri@jurta.org>
7308         * bindings.el: Map kp keys to non-kp keys systematically
7309         with basic modifiers control, meta and shift.  (Bug#14397)
7311 2013-12-11  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
7313         * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
7314         "Close browser" menu items.  Fix wrong function of "List
7315         bookmarks".
7317 2013-12-11  Juri Linkov  <juri@jurta.org>
7319         * misearch.el (multi-isearch-buffers): Set the value of
7320         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
7321         arg of isearch-forward to t.
7322         (multi-isearch-buffers-regexp): Set the value of
7323         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
7324         arg of isearch-forward-regexp to t.
7325         (multi-isearch-files): Set the value of
7326         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
7327         arg of isearch-forward to t.
7328         (multi-isearch-files-regexp): Set the value of
7329         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
7330         arg of isearch-forward-regexp to t.  (Bug#16035)
7332         * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
7333         arg of isearch-forward to t.
7334         (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
7335         arg of isearch-forward-regexp to t.
7336         (dired-isearch-filter-filenames): Remove unnecessary check for
7337         `dired-isearch-filenames'.
7339         * comint.el (comint-history-isearch-backward):
7340         Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
7341         (comint-history-isearch-backward-regexp):
7342         Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
7344 2013-12-10  Eli Zaretskii  <eliz@gnu.org>
7346         * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
7347         unmsys--file-name.  (Bug#16099)
7349 2013-12-10  Teodor Zlatanov  <tzz@lifelogs.com>
7351         * emacs-lisp/package.el (package-keyword-button-action):
7352         Remove finder.el require dependency.
7354 2013-12-09  Teodor Zlatanov  <tzz@lifelogs.com>
7356         * emacs-lisp/package.el: Require finder.el.
7357         (describe-package-1): Add keyword buttons.
7358         (package-make-button): New convenience function.
7359         (package-keyword-button-action): Keyword button action using
7360         `finder-list-matches'.
7362 2013-12-09  Eli Zaretskii  <eliz@gnu.org>
7364         * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
7365         last commit.
7367 2013-12-09  Michael Albinus  <michael.albinus@gmx.de>
7369         * autorevert.el (auto-revert-notify-add-watch): Do not handle
7370         symlinked files.
7372 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
7374         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
7375         after the end of a percent literal.
7377 2013-12-09  Cameron Desautels  <camdez@gmail.com>  (tiny change)
7379         * progmodes/ruby-mode.el (ruby-forward-string): Document.
7380         Handle caret-delimited strings (Bug#16079).
7382 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
7384         * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
7385         When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
7386         `ruby-parse-partial' (Bug#16078).
7388 2013-12-09  Leo Liu  <sdl.web@gmail.com>
7390         * subr.el (read-passwd): Disable show-paren-mode.  (Bug#16091)
7392 2013-12-08  Dmitry Gutov  <dgutov@yandex.ru>
7394         * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
7395         (js-switch-indent-offset): New option.
7396         (js--proper-indentation): Use it.  And handle the case when
7397         "default" is actually a key in an object literal.
7398         (js--same-line): New function.
7399         (js--multi-line-declaration-indentation): Use it.
7400         (js--indent-in-array-comp, js--array-comp-indentation):
7401         New functions.
7402         (js--proper-indentation): Use them, to handle array comprehension
7403         continuations.
7405 2013-12-08  Leo Liu  <sdl.web@gmail.com>
7407         * progmodes/flymake.el (flymake-highlight-line): Re-write.
7408         (flymake-make-overlay): Remove arg MOUSE-FACE.
7409         (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
7411 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7413         * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
7414         New function.
7415         (redisplay-highlight-region-function): Use it.
7417         * emulation/cua-base.el (cua--explicit-region-start)
7418         (cua--last-region-shifted): Remove.
7419         (cua--deactivate): Use deactivate-mark.
7420         (cua--pre-command-handler-1): Don't handle shift-selection.
7421         (cua--post-command-handler-1): Don't change transient-mark-mode.
7422         (cua--select-keymaps): Use region-active-p rather than
7423         cua--explicit-region-start or cua--last-region-shifted.
7424         (cua-mode): Enable shift-select-mode.
7426 2013-12-08  Leo Liu  <sdl.web@gmail.com>
7428         * progmodes/flymake.el (flymake-popup-current-error-menu):
7429         Rename from flymake-display-err-menu-for-current-line.  Reimplement.
7430         (flymake-posn-at-point-as-event, flymake-popup-menu)
7431         (flymake-make-emacs-menu): Remove.  (Bug#16077)
7433 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7435         * rect.el (rectangle-mark-mode): Activate mark even if
7436         transient-mark-mode is off (bug#16066).
7437         (rectangle--highlight-for-redisplay): Fix boundary condition when point
7438         is > mark and at bolp.
7440         * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
7441         (region-extract-function): Use it.
7442         (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
7443         (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
7444         Delete functions.
7445         (cua--init-rectangles): Don't re-remap copy-region-as-kill,
7446         kill-ring-save, kill-region, delete-char, delete-forward-char.
7447         Ignore self-insert-iso.
7449         * emulation/cua-gmrk.el (cua--init-global-mark):
7450         Ignore `self-insert-iso'.
7452         * emulation/cua-base.el (cua--prefix-copy-handler)
7453         (cua--prefix-cut-handler): Rely on region-extract-function rather than
7454         checking cua--rectangle.
7455         (cua-delete-region): Use region-extract-function.
7456         (cua-replace-region): Delete function.
7457         (cua-copy-region, cua-cut-region): Obey region-extract-function.
7458         (cua--pre-command-handler-1): Don't do the delete-selection thing.
7459         (cua--self-insert-char-p): Ignore `self-insert-iso'.
7460         (cua--init-keymaps): Don't remap delete-selection commands.
7461         (cua-mode): Use delete-selection-mode instead of rolling our own
7462         (bug#16085).
7464         * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
7465         Obey region-extract-function.
7467         Make registers and delete-selection-mode work on rectangles.
7468         * register.el (describe-register-1): Don't modify the register's value.
7469         (copy-to-register): Obey region-extract-function.
7470         * delsel.el (delete-active-region): Obey region-extract-function.
7472 2013-12-08  Leo Liu  <sdl.web@gmail.com>
7474         * progmodes/flymake.el (flymake, flymake-error-bitmap)
7475         (flymake-warning-bitmap, flymake-fringe-indicator-position)
7476         (flymake-compilation-prevents-syntax-check)
7477         (flymake-start-syntax-check-on-newline)
7478         (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
7479         (flymake-start-syntax-check-on-find-file, flymake-log-level)
7480         (flymake-xml-program, flymake-master-file-dirs)
7481         (flymake-master-file-count-limit)
7482         (flymake-allowed-file-name-masks): Relocate.
7483         (flymake-makehash, flymake-float-time)
7484         (flymake-replace-regexp-in-string, flymake-split-string)
7485         (flymake-get-temp-dir): Remove.
7486         (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
7487         (flymake-current-row, flymake-selected-frame)
7488         (flymake-get-point-pixel-pos): Remove xemacs compatibity and
7489         related functions.  (Bug#16077)
7491 2013-12-07  Bozhidar Batsov  <bozhidar@batsov.com>
7493         * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
7495 2013-12-07  Tassilo Horn  <tsdh@gnu.org>
7497         * help-fns.el (describe-function-1): Use new advice-* functions
7498         rather than old ad-* functions.  Fix function type description and
7499         source links for advised functions and subrs.
7501 2013-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7503         * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
7505 2013-12-06  Michael Albinus  <michael.albinus@gmx.de>
7507         * progmodes/compile.el (compilation-start):
7508         * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
7510         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
7511         Handle long command lines, lasting from "sh -c ...".  (Bug#16045)
7513 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
7515         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
7516         Touch up the last change.
7518 2013-12-06  Leo Liu  <sdl.web@gmail.com>
7520         * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
7521         (inferior-octave-startup): Always use "octave> " for prompt.
7522         (octave-goto-function-definition)
7523         (octave-sync-function-file-names)
7524         (octave-find-definition-default-filename): Remove redundant backquotes.
7526 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
7528         * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
7529         syntax for `?'.
7530         (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
7531         where appropriate already.
7532         (ruby-syntax-propertize-function): Propertize `?' and `!' at the
7533         end of method names (Bug#15874).
7535 2013-12-06  Juri Linkov  <juri@jurta.org>
7537         * isearch.el (isearch--saved-overriding-local-map):
7538         New internal variable.
7539         (isearch-mode): Set it to the initial value of
7540         `overriding-terminal-local-map'.
7541         (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
7542         with `isearch--saved-overriding-local-map'.  (Bug#16035)
7544 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
7546         * progmodes/octave.el (inferior-octave-completion-table):
7547         Turn back into function, use `completion-table-with-cache'
7548         (Bug#11906).  Update all references.
7550         * minibuffer.el (completion-table-with-cache): New function.
7552 2013-12-05  Cameron Desautels  <camdez@gmail.com>  (tiny change)
7554         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
7556 2013-12-05  Teodor Zlatanov  <tzz@lifelogs.com>
7558         * net/eww.el (eww-current-source): New variable to store page
7559         source.
7560         (eww-display-html, eww-mode, eww-save-history)
7561         (eww-restore-history): Use it.
7562         (eww-view-source): New command to view page source.
7563         Opportunistically uses `html-mode' to highlight the buffer.
7564         (eww-mode-map): Install it.
7566 2013-12-05  Michael Albinus  <michael.albinus@gmx.de>
7568         * net/dbus.el (dbus-unregister-service)
7569         (dbus-escape-as-identifier, dbus-unescape-from-identifier):
7570         Fix docstring.
7571         (dbus-unregister-service): Skip :serial entries in
7572         `dbus-registered-objects-table'.
7573         (dbus-byte-array-to-string): New optional arg MULTIBYTE.
7575 2013-12-04  Teodor Zlatanov  <tzz@lifelogs.com>
7577         * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
7578         around keywords with extra `split-string' argument.
7580 2013-12-04  Martin Rudalics  <rudalics@gmx.at>
7582         * windmove.el (windmove-other-window-loc): Handle navigation
7583         between windows (excluding the minibuffer window - Bug#16017).
7585 2013-12-04  Michael Albinus  <michael.albinus@gmx.de>
7587         * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
7588         in D-Bus type syntax.
7589         (dbus-unescape-from-identifier): Use `byte-to-string' in order to
7590         preserve unibyte strings.  (Bug#16048)
7592 2013-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7594         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
7595         Call force-mode-line-update is the proper buffer (bug#16042).
7597 2013-12-04  Dmitry Gutov  <dgutov@yandex.ru>
7599         * vc/log-edit.el (log-edit-add-new-comment): Rename to
7600         `log-edit-remember-comment', make argument optional.  Adjust all
7601         callers.
7602         (log-edit-mode): Add `log-edit-remember-comment' to
7603         `kill-buffer-hook' locally.
7604         (log-edit-kill-buffer): Don't remember comment explicitly since
7605         the buffer is killed anyway.
7607 2013-12-04  Juri Linkov  <juri@jurta.org>
7609         * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
7610         add-hook and remove-hook for multi-buffer search.  (Bug#16035)
7612 2013-12-03  Tom Regner  <tom@goochesa.de>  (tiny change)
7614         * notifications.el (notifications-close-notification): Call the
7615         D-Bus method with ID being a `:uint32'.  (Bug#16030)
7617 2013-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7619         * net/eww.el (eww-render): Don't pass arg to eww-display-image.
7621 2013-12-03  Juri Linkov  <juri@jurta.org>
7623         * progmodes/compile.el (compilation-start): Rename window alist
7624         entry `no-display-ok' to `allow-no-window'.
7626         * simple.el (shell-command): Add window alist entry
7627         `allow-no-window' to `display-buffer'.
7628         (async-shell-command): Doc fix.
7630         * window.el (display-buffer-no-window): New action function.
7631         (display-buffer-alist, display-buffer): Doc fix.  (Bug#13594)
7633 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
7635         * vc/log-edit.el (log-edit-set-header): Extract from
7636         `log-edit-toggle-header'.
7637         (log-edit-extract-headers): Separate the summary, when extracted
7638         from header, from the rest of the message with an empty line.
7640         * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
7641         line, if present, to the Summary header.
7643 2013-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7645         * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
7646         in current-buffer (bug#16029).
7648 2013-12-02  Helmut Eller  <eller.helmut@gmail.com>
7650         * emacs-lisp/debug.el (debugger-toggle-locals): New command.
7651         (debugger-mode-map): Bind it.
7652         (debugger--backtrace-base): New function.
7653         (debugger-eval-expression): Use it.
7654         (debugger-frame-number): Skip local vars when present.
7655         (debugger--locals-visible-p, debugger--insert-locals)
7656         (debugger--show-locals, debugger--hide-locals): New functions.
7658 2013-12-02  Michael Albinus  <michael.albinus@gmx.de>
7660         * net/tramp-sh.el (tramp-remote-process-environment): Do not set
7661         "LC_ALL".
7662         (tramp-get-remote-locale): New defun.
7663         (tramp-open-connection-setup-interactive-shell): Use it.
7665 2013-12-02  Leo Liu  <sdl.web@gmail.com>
7667         * subr.el (process-live-p): Return nil for non-process.  (Bug#16023)
7669         * progmodes/sh-script.el (sh-shell-process):
7670         * progmodes/octave.el (inferior-octave-process-live-p):
7671         * progmodes/gdb-mi.el (gdb-delchar-or-quit)
7672         (gdb-inferior-io-sentinel):
7673         * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
7675 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
7677         * vc/log-edit.el (log-edit-kill-buffer): Move the use of
7678         `save-selected-window' to `log-edit-hide-buf'.  This makes
7679         `log-edit-show-files' idempotent.
7680         (log-edit-show-files): Mark the new window as dedicated.
7682 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
7684         * vc/log-edit.el (log-edit-mode-map): Add binding for
7685         `log-edit-kill-biffer'.
7686         (log-edit-hide-buf): Add a FIXME comment.
7687         (log-edit-add-new-comment): New function, extracted from
7688         `log-edit-done'.
7689         (log-edit-done, log-edit-add-to-changelog): Use it.
7690         (log-edit-kill-buffer): New command.
7692 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7694         * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
7695         instead of killing the buffer.
7697 2013-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7699         * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
7701 2013-12-01  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7703         * net/eww.el (eww-form-checkbox-selected-symbol)
7704         (eww-form-checkbox-symbol): New customizable variable.
7705         (eww-form-checkbox, eww-toggle-checkbox):
7706         Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
7708         * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
7709         (shr--get-media-pref, shr--extract-best-source): New function.
7710         (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
7711         no :src tag was specified.
7713         * net/eww.el (eww-use-external-browser-for-content-type): New variable.
7714         (eww-render): Handle `eww-use-external-browser-for-content-type'.
7715         Use \\` to match beginning of string instead of ^.
7716         (eww-browse-with-external-browser): Provide optional URL parameter.
7717         (eww-render): Set `eww-current-title' back to "".
7719         * net/shr.el (shr-tag-video): Display content for video if no
7720         poster is available.
7721         (shr-tag-audio): Add support for <audio> tag.
7723         * net/eww.el (eww-text-input-types): New const.
7724         (eww-process-text-input): Treat input types in
7725         `eww-text-input-types' as text.
7727         * net/shr.el (shr-tag-table): Fix comment typo.
7729 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7731         * net/eww.el (eww-follow-link): New command to avoid reloading
7732         pages when we follow #target links (bug#15243).
7733         (eww-quit): Special mode buffers shouldn't query before exiting.
7735 2013-12-01  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
7737         * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
7738         forms.
7740 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7742         * net/eww.el (eww-restore-history): Update the window title after
7743         moving in the history.
7744         (eww-current-dom): New variable used to save the current DOM.
7746 2013-12-01  Dmitry Gutov  <dgutov@yandex.ru>
7748         * vc/log-edit.el (log-edit-mode-map): Add binding for
7749         `log-edit-beginning-of-line'.
7750         (log-edit-setup-add-author): New user option.
7751         (log-edit-beginning-of-line): New command.
7752         (log-edit): Move major mode call above the contents setup so that
7753         the local variable values are already applied.
7754         (log-edit): Only insert "Author: " when
7755         `log-edit-setup-add-author' is non-nil.
7756         (log-edit): When SETUP is non-nil, position point after ": "
7757         instead of point-min.
7759 2013-12-01  Glenn Morris  <rgm@gnu.org>
7761         * startup.el (command-line): Warn if ~/emacs.d is in load-path.
7763 2013-11-30  Eli Zaretskii  <eliz@gnu.org>
7765         * startup.el (fancy-splash-frame): On MS-Windows, trigger
7766         redisplay to make sure the initial frame gets a chance to become
7767         visible.  (Bug#16014)
7769 2013-11-30  Martin Rudalics  <rudalics@gmx.at>
7771         Support resizing frames and windows pixelwise.
7772         * cus-start.el (frame-resize-pixelwise)
7773         (window-resize-pixelwise): New entries.
7774         * emacs-lisp/debug.el (debug): Use window-total-height instead
7775         of window-total-size.
7776         * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
7777         * help.el (describe-bindings-internal): Use help-buffer as
7778         argument for with-help-window.
7779         (temp-buffer-max-width): New option.
7780         (resize-temp-buffer-window, help-window-setup)
7781         (with-help-window): Rewrite.
7782         * mouse.el (mouse-drag-line): Rewrite.  Add key bindings for
7783         dragging dividers.
7784         * window.el (frame-char-size, window-min-pixel-height)
7785         (window-safe-min-pixel-height, window-safe-min-pixel-width)
7786         (window-min-pixel-width, window-safe-min-pixel-size)
7787         (window-combination-p, window-safe-min-size)
7788         (window-resizable-p, window--size-to-pixel)
7789         (window--pixel-to-size, window--resize-apply-p): New functions.
7790         (window-safe-min-height): Fix doc-string.
7791         (window-size, window-min-size, window--min-size-1)
7792         (window-sizable, window-sizable-p, window--min-delta-1)
7793         (window-min-delta, window--max-delta-1, window-max-delta)
7794         (window--resizable, window--resizable-p, window-resizable)
7795         (window-full-height-p, window-full-width-p, window-at-side-p)
7796         (window--in-direction-2, window-in-direction)
7797         (window--resize-reset-1, window--resize-mini-window)
7798         (window-resize, window-resize-no-error)
7799         (window--resize-child-windows-normal)
7800         (window--resize-child-windows, window--resize-siblings)
7801         (window--resize-this-window, window--resize-root-window)
7802         (window--resize-root-window-vertically)
7803         (adjust-window-trailing-edge, enlarge-window, shrink-window)
7804         (maximize-window, minimize-window, delete-window)
7805         (quit-restore-window, window-split-min-size, split-window)
7806         (balance-windows-2, balance-windows)
7807         (balance-windows-area-adjust, balance-windows-area)
7808         (window--state-get-1, window-state-get, window--state-put-1)
7809         (window--state-put-2, window-state-put)
7810         (display-buffer-record-window, window--display-buffer):
7811         Make functions handle pixelwise sizing of windows.
7812         (display-buffer--action-function-custom-type)
7813         (display-buffer-fallback-action):
7814         Add display-buffer-in-previous-window.
7815         (display-buffer-use-some-window): Resize window to height it had
7816         before.
7817         (fit-window-to-buffer-horizontally): New option.
7818         (fit-frame-to-buffer): Describe new values.
7819         (fit-frame-to-buffer-bottom-margin): Replace with
7820         fit-frame-to-buffer-margins.
7821         (window--sanitize-margin): New function.
7822         (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
7823         using window-text-pixel-size.
7825 2013-11-30  Glenn Morris  <rgm@gnu.org>
7827         * emacs-lisp/bytecomp.el (byte-compile-form):
7828         Make the `interactive-only' warning like the `obsolete' one.
7829         * comint.el (comint-run):
7830         * files.el (insert-file-literally, insert-file):
7831         * replace.el (replace-string, replace-regexp):
7832         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
7833         (goto-line, insert-buffer, next-line, previous-line):
7834         Tweak `interactive-only' spec.
7836         Stop keeping (most) generated cedet grammar files in the repository.
7837         * Makefile.in (semantic): New.
7838         (compile-main): Depend on semantic.
7840 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7842         * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
7843         available.  Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
7845         * uniquify.el (uniquify-buffer-name-style): Change default.
7847         * loadup.el: Preload "uniquify".
7849         * time.el (display-time-update): Update all mode lines (bug#15999).
7851         * electric.el (electric-indent-mode): Enable by default.
7852         * loadup.el: Preload "electric".
7854 2013-11-29  Bozhidar Batsov  <bozhidar@batsov.com>
7856         * emacs-lisp/helpers.el (string-empty-p): New function.
7857         (string-blank-p): New function.
7859 2013-11-29  Andreas Politz  <politza@hochschule-trier.de>
7861         * imenu.el (imenu--index-alist): Add missing dot to the docstring
7862         (Bug#14029).
7864 2013-11-29  Andreas Politz  <politza@fh-trier.de>
7865         * imenu.el (imenu--subalist-p): Don't error on non-conses and
7866         allow non-lambda lists as functions.
7867         (imenu--in-alist): Don't recurse into non-subalists.
7868         (imenu): Don't pass function itself as an argument (Bug#14029).
7870 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7872         * progmodes/python.el (python-mode-map): Remove binding for ":".
7873         (python-indent-electric-colon): Remove command.
7874         (python-indent-post-self-insert-function): Integrate the previous code
7875         of python-indent-electric-colon.  Make it conditional on
7876         electric-indent-mode.
7877         (python-mode): Add ?: to electric-indent-chars.
7878         Move python-indent-post-self-insert-function to the end of
7879         post-self-insert-hook.
7881 2013-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7883         * doc-view.el (doc-view-goto-page): Update mode-line.
7885         * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
7887 2013-11-27  Glenn Morris  <rgm@gnu.org>
7889         * international/charprop.el, international/uni-bidi.el:
7890         * international/uni-category.el, international/uni-combining.el:
7891         * international/uni-comment.el, international/uni-decimal.el:
7892         * international/uni-decomposition.el, international/uni-digit.el:
7893         * international/uni-lowercase.el, international/uni-mirrored.el:
7894         * international/uni-name.el, international/uni-numeric.el:
7895         * international/uni-old-name.el, international/uni-titlecase.el:
7896         * international/uni-uppercase.el:
7897         Remove generated files from VCS repository.
7899 2013-11-27  Eli Zaretskii  <eliz@gnu.org>
7901         * filenotify.el (file-notify-add-watch): Don't special-case
7902         w32notify when computing the directory to watch.
7904 2013-11-27  Glenn Morris  <rgm@gnu.org>
7906         Make bootstrap without generated uni-*.el files possible again.
7907         * loadup.el: Update command-line-args checking for unidata-gen.
7908         Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
7909         * composite.el, international/characters.el:
7910         Handle unicode tables being undefined.
7912         Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
7913         * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
7914         (compile-main): Depend on leim rule.
7915         (leim): New rule.
7916         * loadup.el: Move leim-list.el to leim/ subdirectory.
7917         * startup.el (normal-top-level): No more leim directory.
7918         * international/ja-dic-cnv.el (skkdic-convert):
7919         Disable version-control and autoloads in output files.
7920         * international/titdic-cnv.el (titdic-convert, miscdic-convert):
7921         Disable version-control and autoloads in output files.
7922         * leim/quail: Move here from ../leim.
7923         * leim/quail/hangul.el (hangul-input-method-activate):
7924         Add autoload cookie.
7925         (generated-autoload-load-name): Set file-local value.
7926         * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
7927         (generated-autoload-load-name): Set file-local value.
7929 2013-11-26  Kenjiro NAKAYAMA  <knakayam@redhat.com>
7931         * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
7932         (eww-add-bookmark): Ask confirmation when add to bookmarks.
7933         (eww-quit): Ask confirmation before quitting eww.
7935 2013-11-26  Eli Zaretskii  <eliz@gnu.org>
7937         * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
7938         reading output from Diff on MS-Windows and MS-DOS.
7940 2013-11-26  Bozhidar Batsov  <bozhidar@batsov.com>
7942         * emacs-lisp/helpers.el (string-reverse): New function.
7944 2013-11-26  Michael Albinus  <michael.albinus@gmx.de>
7946         * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
7947         names on MS Windows, like "/[::1]:".
7949         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
7950         SWITCHES.
7952 2013-11-26  Glenn Morris  <rgm@gnu.org>
7954         * progmodes/python.el (python-indent-guess-indent-offset):
7955         Avoid corner-case error.  (Bug#15975)
7957         Preload leim-list.el.  (Bug#4789)
7958         * loadup.el: Load leim-list.el when found.
7959         * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
7961 2013-11-25  Bozhidar Batsov  <bozhidar@batsov.com>
7963         * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
7965         * emacs-lisp/helpers.el (string-join): New function.
7967 2013-11-25  Sebastian Wiesner  <lunaryorn@gmail.com>  (tiny change)
7969         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7970         Mark as obsolete and replace it with a symbol property.
7971         (byte-compile-form): Use new 'interactive-only property.
7972         * comint.el, files.el, replace.el, simple.el:
7973         Apply new 'interactive-only properly.
7975 2013-11-25  Martin Rudalics  <rudalics@gmx.at>
7977         * window.el (display-buffer-at-bottom): Make sure that
7978         split-window-sensibly creates the new window on bottom
7979         (Bug#15961).
7981 2013-11-23  David Kastrup  <dak@gnu.org>
7983         * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
7984         on the conflict markers when available.
7985         (smerge--get-marker): New function.
7986         (smerge-end-re, smerge-base-re): Add subgroup.
7988 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7990         * frame.el (handle-focus-in, handle-focus-out): Add missing
7991         interactive spec.
7993 2013-11-25  Michael Albinus  <michael.albinus@gmx.de>
7995         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
7996         `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
7998 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8000         * play/gomoku.el: Don't use intangible property.  Use lexical-binding.
8001         (gomoku--last-pos): New var.
8002         (gomoku--intangible-chars): New const.
8003         (gomoku--intangible): New function.
8004         (gomoku-mode): Use it.  Derive from special-mode.
8005         (gomoku-move-up): Adjust line count.
8006         (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
8007         (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
8008         Simplify accordingly.
8010         * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
8011         Remove blink-cursor code.
8012         (blink-cursor-timer-function, blink-cursor-suspend):
8013         Don't special-case GUIs.
8014         (blink-cursor-mode): Use focus-in/out-hook.
8016 2013-11-25  Dmitry Gutov  <dgutov@yandex.ru>
8018         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
8019         work when annotation is invisible (Bug#13886).
8021 2013-11-24  Simon Schubert  <2@0x2c.org>  (tiny change)
8023         * json.el (json-alist-p): Only return non-nil if the alist has
8024         simple keys (Bug#13518).
8026 2013-11-24  Mihir Rege  <mihirrege@gmail.com>  (tiny change)
8028         * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
8029         when control-statement is the first statement in a buffer (Bug#15956).
8031 2013-11-24  Dmitry Gutov  <dgutov@yandex.ru>
8033         * imenu.el (imenu-generic-skip-comments-and-strings):
8034         New option (Bug#15560).
8035         (imenu--generic-function): Use it.
8037 2013-11-24  Jorgen Schaefer  <contact@jorgenschaefer.de>
8039         * minibuffer.el (completion--in-region-1): Scroll the correct window.
8040         (Bug#13898)
8042 2013-11-24  Bozhidar Batsov  <bozhidar@batsov.com>
8044         * emacs-lisp/helpers.el: Add some string helpers.
8045         (string-trim-left): Removes leading whitespace.
8046         (string-trim-right): Removes trailing whitespace.
8047         (string-trim): Removes leading and trailing whitespace.
8049         * subr.el (string-suffix-p): New function.
8051 2013-11-23  Glenn Morris  <rgm@gnu.org>
8053         * progmodes/python.el (python-shell-send-file):
8054         Add option to delete file when done.  (Bug#15647)
8055         (python-shell-send-string, python-shell-send-region): Use it.
8057 2013-11-23  Ivan Shmakov  <ivan@siamics.net>  (tiny change)
8059         * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
8060         to set buffer-read-only to t, never to nil.  (Bug#15938)
8062         * textmodes/tex-mode.el (latex-noindent-environments):
8063         Add safe-local-variable property.  (Bug#15936)
8065 2013-11-23  Glenn Morris  <rgm@gnu.org>
8067         * textmodes/enriched.el (enriched-mode): Doc fix.
8068         * emacs-lisp/authors.el (authors-renamed-files-alist):
8069         Add enriched.doc -> enriched.txt.
8071         * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
8073 2013-11-22  Leo Liu  <sdl.web@gmail.com>
8075         * progmodes/octave.el (inferior-octave-startup): Spit out error
8076         message.
8078 2013-11-22  Bozhidar Batsov  <bozhidar@batsov.com>
8080         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
8081         Improve docstring.
8082         Add :version.
8083         (ruby-encoding-magic-comment-style): Add :version.
8085 2013-11-22  Leo Liu  <sdl.web@gmail.com>
8087         * progmodes/octave.el (octave-operator-regexp): Exclude newline.
8088         (Bug#15076)
8089         (octave-help-mode): Adapt to change to help-mode-finish to use
8090         derived-mode-p on 2013-09-17.
8091         (inferior-octave-prompt): Also match octave-gui.
8092         (octave-kill-process): Don't ask twice.  (Bug#10564)
8094 2013-11-22  Leo Liu  <sdl.web@gmail.com>
8096         * progmodes/octave.el (inferior-octave-process-live-p): New helper.
8097         (inferior-octave-startup, inferior-octave-check-process)
8098         (inferior-octave-track-window-width-change)
8099         (octave-completion-at-point, octave-eldoc-function): Use it.
8100         (octave-kill-process): Provide confirmation.  (Bug#10564)
8102 2013-11-21  Leo Liu  <sdl.web@gmail.com>
8104         * progmodes/octave.el (octave-mode, inferior-octave-mode):
8105         Fix obsolete variable comment-use-global-state.
8107 2013-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8109         * progmodes/octave.el (octave-mode-map, octave-mode-menu):
8110         Add `octave-source-file'.
8111         (octave-source-file): New function.  (Bug#15935)
8113 2013-11-21  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
8115         * net/eww.el (eww-local-regex): New variable.
8116         (eww): Use it to detect localhost and similar.
8118 2013-11-21  Leo Liu  <sdl.web@gmail.com>
8120         Add completion for command `ag'.
8121         * pcmpl-x.el (pcmpl-x-ag-options): New variable.
8122         (pcomplete/ag): New function.
8123         (pcmpl-x-ag-options): New function.  Handle `[no]' in long options.
8125 2013-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8127         * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
8128         (bug#14646).
8129         (make-obsolete): Remove interactive spec.
8131 2013-11-21  Glenn Morris  <rgm@gnu.org>
8133         * startup.el (command-line-1): Use path-separator with -L.
8135 2013-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
8137         * emacs-lisp/package.el (describe-package-1): Add package archive
8138         to shown fields.
8140 2013-11-20  Bozhidar Batsov  <bozhidar@batsov.com>
8142         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
8143         Change default to "# encoding: %s" to differentiate it from the
8144         default Ruby encoding comment template.
8146 2013-11-20  era eriksson  <era+emacsbugs@iki.fi>
8148         * ses.el (ses-mode): Doc fix.  (Bug#14748)
8150 2013-11-20  Leo Liu  <sdl.web@gmail.com>
8152         * window.el (display-buffer-alist): Doc fix.  (Bug#13594)
8154 2013-11-19  Dan Nicolaescu  <dann@gnu.org>
8156         * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
8157         when rebase or bisect are in progress.
8159 2013-11-19  Xue Fuqiao  <xfq.free@gmail.com>
8161         * filenotify.el (file-notify-add-watch): Doc fix.
8163 2013-11-19  Leo Liu  <sdl.web@gmail.com>
8165         * obsolete/rcompile.el: Mark obsolete.
8167         * progmodes/compile.el (compilation-start)
8168         (compilation-goto-locus, compilation-find-file):
8169         Pass no-display-ok and handle nil value from display-buffer.
8170         (Bug#13594)
8172         * window.el (display-buffer-alist, display-buffer): Document the
8173         new parameter no-display-ok.  Return either a window or nil
8174         but never a non-window value.
8176 2013-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8178         * electric.el (electric-indent-mode-map): Remove.
8179         (electric-indent-mode): Change the global-map instead (bug#15915).
8181         * textmodes/text-mode.el (paragraph-indent-minor-mode):
8182         Use add-function.
8184 2013-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8186         * emacs-lisp/nadvice.el (remove-function): Align with
8187         add-function's behavior.
8189         * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
8190         (gdb--string-regexp): New constant.
8191         (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
8192         (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
8193         (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
8194         submatch 1.
8195         (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
8196         Adjust use accordingly.
8197         (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
8199 2013-11-17  Adam Sokolnicki  <adam.sokolnicki@gmail.com>  (tiny change)
8201         * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
8202         interpolation curlies (Bug#15914).
8204 2013-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
8206         * calc/calc.el (calc-context-sensitive-enter): New variable.
8207         (calc-enter): Use `calc-context-sensitive-enter'.
8209 2013-11-16  Teodor Zlatanov  <tzz@lifelogs.com>
8211         * progmodes/cfengine.el: Version bump.
8212         (cfengine-cf-promises): New defcustom to locate cf-promises.
8213         (cfengine3-vartypes): Add new "data" type.
8214         (cfengine3--current-word): New function to get current name-like
8215         word or its bounds.
8216         (cfengine3--current-function): New function to look up a CFEngine
8217         function's definition.
8218         (cfengine3-format-function-docstring): New function.
8219         (cfengine3-make-syntax-cache): New function.
8220         (cfengine3-documentation-function): New function: ElDoc glue.
8221         (cfengine3-completion-function): New function: completion glue.
8222         (cfengine3-mode): Set `compile-command',
8223         `eldoc-documentation-function', and add to
8224         `completion-at-point-functions'.
8226 2013-11-16  Michael Albinus  <michael.albinus@gmx.de>
8228         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
8229         `tramp-current-connection'.
8231 2013-11-15  Dmitry Gutov  <dgutov@yandex.ru>
8233         * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
8234         nil/self/true/false with "end of symbol".
8236 2013-11-15  Bozhidar Batsov  <bozhidar@batsov.com>
8238         * subr.el (version-regexp-alist): Fix a typo.
8240 2013-11-15  Michael Albinus  <michael.albinus@gmx.de>
8242         * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
8243         "en_US.utf8" and "LC_CTYPE" to "".
8244         (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
8245         (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
8247 2013-11-15  Leo Liu  <sdl.web@gmail.com>
8249         * loadhist.el (read-feature): Get rid of fake feature nil.  (Bug#15889)
8251 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8253         * progmodes/gud.el (ctl-x-map):
8254         Remove C-x SPC binding.  (Bug#12342)
8255         (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
8257 2013-11-14  Bozhidar Batsov  <bozhidar@batsov.com>
8259         * subr.el (version-regexp-alist):
8260         Recognize hg, svn and darcs versions as snapshot versions.
8262         * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
8263         'always-utf8 value of `ruby-insert-encoding-magic-comment'.
8264         (ruby--encoding-comment-required-p): Extract from
8265         `ruby-mode-set-encoding'.
8266         (ruby-mode-set-encoding): Add the ability to always insert an
8267         utf-8 encoding comment.  Fix and simplify coding comment update
8268         logic.
8270 2013-11-14  Michael Albinus  <michael.albinus@gmx.de>
8272         * net/tramp-gvfs.el (top): Run init code only when
8273         `tramp-gvfs-enabled' is not nil.
8274         (tramp-gvfs-enabled): Check also :system bus.
8276 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8278         Sync with upstream verilog-mode revision 78e66ba.
8279         * progmodes/verilog-mode.el (verilog-end-of-defun)
8280         (verilog-type-completion, verilog-get-list): Remove unused funcs.
8281         (verilog-get-end-of-defun): Remove unused argument.
8282         (verilog-comment-depth): Remove unused local `e'.
8283         (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
8284         Don't pass arg to verilog-get-end-of-defun.
8286 2013-11-14  Glenn Morris  <rgm@gnu.org>
8288         * obsolete/assoc.el (aget): Prefix dynamic variable.
8290         * allout-widgets.el (allout-widgets): No need to autoload defgroup.
8292 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8294         * widget.el, hfy-cmap.el: Remove bogus package version number.
8296 2013-11-13  Glenn Morris  <rgm@gnu.org>
8298         * replace.el (replace-eval-replacement):
8299         Try to give more helpful error message.  (Bug#15836)
8301         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
8302         (archive-7z-update): Avoid custom type mismatches.
8304         * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
8306 2013-11-13  Michael Albinus  <michael.albinus@gmx.de>
8308         * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
8309         address can be empty.
8311         * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
8312         Accept nil SWITCHES.
8313         (tramp-gvfs-handle-write-region): Implement APPEND.
8315 2013-11-12  Dmitry Gutov  <dgutov@yandex.ru>
8317         * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
8318         binary "|" operator and closing block args delimiter.
8319         Remove FIXME comment referring to Ruby 1.8-only syntax.
8320         (ruby-smie--implicit-semi-p): Not after "|" operator.
8321         (ruby-smie--closing-pipe-p): New function.
8322         (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
8323         (ruby-smie-rules): Indent after "|".
8325 2013-11-12  Glenn Morris  <rgm@gnu.org>
8327         * ps-print.el (ps-face-attribute-list):
8328         Handle anonymous faces.  (Bug#15827)
8330 2013-11-12  Martin Rudalics  <rudalics@gmx.at>
8332         * window.el (display-buffer-other-frame): Fix doc-string.
8333         (Bug#15868)
8335 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8337         * subr.el (force-mode-line-update): Delete, move to buffer.c.
8339 2013-11-11  Michael Albinus  <michael.albinus@gmx.de>
8341         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
8342         (tramp-sh-handle-file-local-copy): Don't write a message when
8343         saving temporary files.
8345         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
8346         both directories are remote.
8347         (tramp-smb-handle-directory-files): Do not return double entries.
8348         Do not expand full file names.
8349         (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
8350         (tramp-smb-handle-write-region): Implement APPEND.
8351         (tramp-smb-get-stat-capability): Fix a stupid bug.
8353 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8355         * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
8357 2013-11-11  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
8359         * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
8360         throwing error over malformed let/let* (bug#15814).
8362 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8364         * iswitchb.el (iswitchb-mode): Mark obsolete.
8366 2013-11-11  Glenn Morris  <rgm@gnu.org>
8368         * international/uni-bidi.el, international/uni-category.el:
8369         * international/uni-name.el, international/uni-numeric.el:
8370         Regenerate for Unicode 6.3.0.
8372 2013-11-10  Michael Albinus  <michael.albinus@gmx.de>
8374         * net/tramp.el (tramp-methods):
8375         * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
8376         2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
8378 2013-11-09  Andreas Schwab  <schwab@linux-m68k.org>
8380         * progmodes/sh-script.el (sh-font-lock-keywords-var):
8381         Force highlighting text after Summary keyword in doc face for rpm.
8383 2013-11-09  Dmitry Gutov  <dgutov@yandex.ru>
8385         * textmodes/ispell.el (ispell-lookup-words): When `look' is not
8386         available and the word has no wildcards, append one to the grep pattern.
8387         http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
8388         (ispell-complete-word): Call `ispell-lookup-words' with the value
8389         independent of `ispell-look-p'.
8391 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
8393         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
8394         Not after "||".
8395         (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
8396         their parent.
8398 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8400         * progmodes/ruby-mode.el: Don't require cl any more.  Use pcase instead.
8401         (ruby-font-lock-keywords): Use backquote.
8403 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
8405         * progmodes/ruby-mode.el (ruby-smie--forward-token)
8406         (ruby-smie--backward-token): Only consider full-string matches.
8408 2013-11-08  Jan Djärv  <jan.h.d@swipnet.se>
8410         * faces.el (describe-face): Add distant-foreground.
8412 2013-11-08  Bozhidar Batsov  <bozhidar@batsov.com>
8414         * progmodes/ruby-mode.el: Improve encoding comment handling.
8415         (ruby-encoding-magic-comment-style): New option.
8416         (ruby-custom-encoding-magic-comment-template): New option.
8417         (ruby--insert-coding-comment, ruby--detect-encoding):
8418         New functions extracted from `ruby-mode-set-encoding'.
8419         (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
8420         to control the style of the auto-inserted encoding comment.
8422 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
8424         * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
8425         Use `smie-backward-sexp' with token argument.
8427 2013-11-08  Michael Albinus  <michael.albinus@gmx.de>
8429         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
8430         Remove instrumentation code.
8432 2013-11-08  Glenn Morris  <rgm@gnu.org>
8434         * progmodes/autoconf.el (autoconf-mode):
8435         Tweak comment-start-skip.  (Bug#15822)
8437 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8439         * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
8440         at bobp (bug#15826).
8441         (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
8443 2013-11-08  Darren Hoo  <darren.hoo@gmail.com>
8445         * man.el (Man-start-calling): New macro, extracted from
8446         Man-getpage-in-background.
8447         (Man-getpage-in-background): Use it.
8448         (Man-update-manpage): New command.
8449         (Man-mode-map): Bind it.
8451 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
8453         * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
8454         of "and", "or", "&&" and "||".
8455         (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
8456         argument.  Prohibit opening curly brace because it could only be a
8457         block opener in that position.
8458         (ruby-smie--forward-token, ruby-smie--backward-token):
8459         Separate "|" from "&" or "*" going after it.  That can happen in block
8460         arguments.
8461         (ruby-smie--indent-to-stmt): New function, seeks the end of
8462         previous statement or beginning of buffer.
8463         (ruby-smie-rules): Use it.
8464         (ruby-smie-rules): Check if there's a ":" before a curly block
8465         opener candidate; if there is, it's a hash.
8467 2013-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8469         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
8470         (cl--block-wrapper): Fix last accidental change.
8472 2013-11-07  Michael Albinus  <michael.albinus@gmx.de>
8474         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
8475         Instrument, in order to hunt failure on hydra.
8477 2013-11-05  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
8479         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
8480         malformed bindings form (bug#15814).
8482 2013-11-07  Dmitry Gutov  <dgutov@yandex.ru>
8484         * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
8485         "." compared to " @ ".  This incidentally fixes some indentation
8486         examples with "do".
8487         (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
8488         (ruby-smie-grammar): New tokens: "and" and "or".
8489         (ruby-smie--args-separator-p): Fix the check for tokens at POS.
8490         Exclude "and" and "or".  Remove "do" in order to work around token
8491         priorities.
8492         (ruby-smie-rules): Add all infix tokens.  Handle the case of
8493         beginning-of-buffer.
8495 2013-11-06  Glenn Morris  <rgm@gnu.org>
8497         * Makefile.in (setwins_almost, setwins_for_subdirs):
8498         Avoid accidental matches.
8500 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8502         * menu-bar.el (popup-menu): Use key-binding.
8504 2013-11-06  Eli Zaretskii  <eliz@gnu.org>
8506         * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
8507         menus, support also the menus produced by minor modes.
8508         (Bug#15817)
8510 2013-11-06  Leo Liu  <sdl.web@gmail.com>
8512         * thingatpt.el (thing-at-point-looking-at): Add optional arg
8513         DISTANCE to bound the search.  All uses changed.  (Bug#15808)
8515 2013-11-06  Glenn Morris  <rgm@gnu.org>
8517         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
8518         (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
8519         (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
8521 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8523         * electric.el (electric-indent-just-newline): New command.
8524         (electric-indent-mode-map): New keymap.
8525         (electric-indent-mode, electric-pair-mode, electric-layout-mode):
8526         Re-add :group which weren't redundant.
8528         * electric.el (electric-indent-local-mode): New minor mode.
8529         (electric-indent-functions-without-reindent): New var.
8530         (electric-indent-post-self-insert-function): Use it.
8531         * emacs-lisp/gv.el (buffer-local-value): Add setter.
8533 2013-11-05  Eli Zaretskii  <eliz@gnu.org>
8535         * international/quail.el (quail-help): Be more explicit about the
8536         meaning of the labels shown on the keys.  (Bug#15800)
8538         * startup.el (normal-top-level): Load the subdirs.el files before
8539         setting the locale environment.  (Bug#15805)
8541 2013-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8543         * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
8544         via arguments so as to get the right ones (bug#15418).
8546         * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
8548 2013-11-05  Michael Albinus  <michael.albinus@gmx.de>
8550         Fix problems found while writing a test suite.
8552         * net/tramp-compat.el (tramp-compat-load): New defun.
8553         * net/tramp.el (tramp-handle-load): Use it.
8555         * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
8556         "(numberp ok-if-already-exists)" correctly.
8558 2013-11-05  Xue Fuqiao  <xfq.free@gmail.com>
8560         * international/characters.el (glyphless-char-display-control):
8561         Add usage note.
8563 2013-11-05  Bozhidar Batsov  <bozhidar@batsov.com>
8565         * progmodes/python.el (python-mode):
8566         * progmodes/scheme.el (scheme-mode):
8567         * progmodes/prolog.el (prolog-mode):
8568         * progmodes/ruby-mode.el (ruby-mode):
8569         * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
8570         (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
8572 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8574         * rect.el (rectangle--highlight-for-redisplay):
8575         * emacs-lisp/smie.el (smie--next-indent-change):
8576         Use buffer-chars-modified-tick.
8578         * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
8580         * electric.el (electric-indent-post-self-insert-function):
8581         Only delete trailing whitepsace if it is indeed trailing (bug#15767).
8583 2013-11-04  Helmut Eller  <eller.helmut@gmail.com>
8585         * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
8587 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
8589         * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
8590         (bug#15786).
8592 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8594         * emacs-lisp/helpers.el: Move from helpers.el.  Use lexical-binding.
8596         * progmodes/python.el: Fix up last change.
8597         (python-shell--save-temp-file): New function.
8598         (python-shell-send-string): Use it.  Remove `msg' arg.  Don't assume
8599         `string' comes from the current buffer.
8600         (python-shell-send-string-no-output): Remove `msg' arg.
8601         (python--use-fake-loc): New var.
8602         (python-shell-buffer-substring): Obey it.  Try to compensate for the
8603         extra coding line added by python-shell--save-temp-file.
8604         (python-shell-send-region): Use python-shell--save-temp-file and
8605         python-shell-send-file directly.  Add `nomain' argument.
8606         (python-shell-send-buffer): Use python-shell-send-region.
8607         (python-electric-pair-string-delimiter): New function.
8608         (python-mode): Use it.
8610 2013-11-04  Eli Zaretskii  <eliz@gnu.org>
8612         * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
8613         eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
8614         environment and decoding all of the default-directory's to here
8615         from command-line.
8616         (command-line): Decode also argv[0].
8618         * loadup.el: Error out if default-directory is a multibyte string
8619         when we are dumping.
8621         * Makefile.in (emacs): Don't set LC_ALL=C.  (Bug#15260)
8623 2013-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
8625         * emacs-lisp/package.el (package-menu-mode)
8626         (package-menu--print-info, package-menu--archive-predicate):
8627         Add Archive column to package list.
8629 2013-11-04  Michael Albinus  <michael.albinus@gmx.de>
8631         Fix problems found while writing a test suite.
8633         * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
8634         (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
8635         (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
8636         to nil when running original file name handler.  Otherwise,
8637         there are problems with constructs like "$$FOO".
8639         * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
8640         for `localname'.
8642 2013-11-04  Bozhidar Batsov  <bozhidar@batsov.com>
8644         * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
8646         * subr.el (version<, version<=, version=):
8647         Update docstrings with information for snapshot versions.
8649         * helpers.el: New library for misc helper functions.
8650         (hash-table-keys): New function returning a list of hash keys.
8651         (hash-table-values): New function returning a list of hash values.
8653 2013-11-04  Dmitry Gutov  <dgutov@yandex.ru>
8655         * progmodes/ruby-mode.el (ruby-smie--forward-token)
8656         (ruby-smie--backward-token): Tokenize heredocs as semicolons.
8658 2013-11-04  Michal Nazarewicz  <mina86@mina86.com>
8660         * textmodes/fill.el (fill-single-char-nobreak-p): New function
8661         checking whether point is after a 1-letter word.
8663 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
8665         * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
8666         Don't infloop when expanding region over `multiline' syntax-type that
8667         begins a line (bug#15778).
8669 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8671         * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
8672         Make it into a proper minor mode.
8673         (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
8674         (rectangle-mark-mode-map): New keymap.
8675         (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
8677 2013-11-04  Glenn Morris  <rgm@gnu.org>
8679         * startup.el (command-line-1): Allow `-L :...' to append to load-path.
8681 2013-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8683         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
8684         (ruby-smie-rules): Use smie-rule-parent instead.
8686         * emacs-lisp/smie.el (smie-rule-parent): Always call
8687         smie-indent-virtual rather than only for hanging tokens.
8688         (smie--next-indent-change): New helper command.
8690 2013-11-03  Glenn Morris  <rgm@gnu.org>
8692         * Makefile.in (abs_srcdir): Remove.
8693         (emacs): Unset EMACSLOADPATH.
8695 2013-11-02  Glenn Morris  <rgm@gnu.org>
8697         * Makefile.in (EMACS): Use a relative filename.
8698         (abs_top_builddir): Remove.
8699         (custom-deps, finder-data, autoloads): Use --chdir.
8701         * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
8703         Use relative filenames in TAGS files.
8704         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
8705         (lisptagsfiles4, TAGS): Use relative file names.
8706         (TAGS-LISP): Remove.
8707         (maintainer-clean): No more TAGS-LISP file.
8709         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
8710         (lisptagsfiles4): Use absolute filenames again.
8711         (TAGS, TAGS-LISP): Not everything needs to run in one line.
8712         Remove all *loaddefs files, not just the first.  Remove esh-groups.
8713         (maintainer-clean): Delete TAGS, TAGS-LISP.
8715 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
8717         * emacs-lisp/package.el (package-version-join):
8718         Recognize snapshot versions.
8720 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
8722         * subr.el (version-regexp-alist): Add support for snapshot versions.
8724 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
8726         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
8727         New function, replacement for `smie-rule-parent' for when we want to
8728         skip over our direct parent if it's an assignment token..
8729         (ruby-smie-rules): Use it.
8731 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
8733         * progmodes/ruby-mode.el: Use `syntax-propertize-function'
8734         unconditionally.  Remove now unnecessary forward declarations.
8735         Remove XEmacs-specific setup.
8736         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
8737         (ruby-font-lock-syntactic-keywords)
8738         (ruby-comment-beg-syntax, ruby-in-here-doc-p)
8739         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
8740         (ruby-here-doc-end-syntax): Remove.
8741         (ruby-mode): Don't check whether `syntax-propertize-rules' is
8742         defined as function.
8744 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
8746         * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
8748 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
8750         * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
8751         table and abbrev table, `define-derived-mode' does that for us
8752         anyway.
8754 2013-11-01  Glenn Morris  <rgm@gnu.org>
8756         * Makefile.in: Remove manual mh-e dependencies (writing .elc
8757         files is atomic for some time, so no parallel compilation issues).
8759 2013-11-01  Jan Djärv  <jan.h.d@swipnet.se>
8761         * faces.el (face-x-resources): Add :distant-foreground.
8762         (region): Use :distant-foreground for gtk and ns.
8764 2013-11-01  Tassilo Horn  <tsdh@gnu.org>
8766         Allow multiple bibliographies when BibLaTeX is used rather than
8767         BibTeX.
8768         * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
8769         (reftex-locate-bibliography-files): Us it.
8771 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
8773         * image.el (image-type-header-regexps): Fix the 'pbm' part to
8774         allow comments in pbm files.
8776         * term/w32-win.el (dynamic-library-alist): Support newer versions
8777         of libjpeg starting with v7: look only for the DLL from the
8778         version against which Emacs was built.
8779         Support versions of libpng beyond 1.4.x.
8780         Support libtiff v4.x.
8782 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
8784         * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
8785         (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
8786         Add property :safe.
8787         (ruby-deep-arglist): Add property :type.
8789 2013-10-31  Glenn Morris  <rgm@gnu.org>
8791         * Makefile.in (custom-deps, finder-data): No need to setq the target
8792         variables, we are in the right directory and the defaults work fine.
8794 2013-10-30  Glenn Morris  <rgm@gnu.org>
8796         * Makefile.in (autoloads): Do not use abs_lisp.
8798         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8799         `newline' does not respect `standard-output', so use `princ'.
8801 2013-10-30  Alp Aker  <alp.tekin.aker@gmail.com>
8803         Ensure unmarking in buffer menu clears 'S' marks.  (Bug#15761)
8804         * buff-menu.el (Buffer-menu--unmark): New function.
8805         (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
8807 2013-10-30  Glenn Morris  <rgm@gnu.org>
8809         * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
8811         * emacs-lisp/package.el (lm-homepage): Declare.
8813         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
8814         Fix doc typos.
8816         * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
8818         * Makefile.in (finder-data, autoloads, update-subdirs)
8819         (compile-main, compile-clean, compile-always, bootstrap-clean):
8820         Check return value of cd.
8821         (compile-calc): Remove.
8823 2013-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8825         * simple.el (copy-region-as-kill): Fix call to region-extract-function.
8827         * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
8828         (byte-compile-and-folded): New function.
8829         (=, <, >, <=, >=): Use it.
8831         * dos-w32.el (minibuffer-history-case-insensitive-variables)
8832         (path-separator, null-device, buffer-file-coding-system)
8833         (lpr-headers-switches): Check system-type before modifying them.
8834         (find-buffer-file-type-coding-system): Mark obsolete.
8835         (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
8836         find-file-not-found-set-buffer-file-coding-system.
8837         (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
8838         (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
8839         (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
8840         (w32-direct-print-region-helper, w32-direct-print-region-function)
8841         (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
8842         * startup.el (normal-top-level-add-subdirs-to-load-path):
8843         * ps-print.el (ps-print-region-function):
8844         * lpr.el (print-region-function): Use new name.
8846         * subr.el (custom-declare-variable-early): Remove function.
8847         (custom-declare-variable-list): Remove var.
8848         (error, user-error): Remove `while' loop.
8849         (read-quoted-char-radix, read-quoted-char): Move to simple.el.
8850         (user-emacs-directory-warning, locate-user-emacs-file):
8851         Move to files.el.
8852         * simple.el (read-quoted-char-radix, read-quoted-char):
8853         * files.el (user-emacs-directory-warning, locate-user-emacs-file):
8854         Move from subr.el.
8855         * custom.el (custom-declare-variable-list): Don't process
8856         custom-declare-variable-list.
8858         * progmodes/python.el (python-shell-get-buffer): New function.
8859         (python-shell-get-process): Use it.
8860         (python-shell-send-string): Always use utf-8 and add a cookie to tell
8861         Python which encoding was used.  Don't split-string since we only care
8862         about the first line.  Return the temp-file, if applicable.
8863         (python-shell-send-region): Tell compile.el how to turn locations in
8864         the temp-file into locations in the source buffer.
8866 2013-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8868         * subr.el (undefined): Add missing behavior from the C code for
8869         unbound keys.
8871         * rect.el: Use lexical-binding.  Add new rectangular region support.
8872         (rectangle-mark): New command.
8873         (rectangle--region): New var.
8874         (deactivate-mark-hook): Reset rectangle--region.
8875         (rectangle--extract-region, rectangle--insert-for-yank)
8876         (rectangle--highlight-for-redisplay)
8877         (rectangle--unhighlight-for-redisplay): New functions.
8878         (region-extract-function, redisplay-unhighlight-region-function)
8879         (redisplay-highlight-region-function): Use them to handle
8880         rectangular region.
8881         * simple.el (region-extract-function): New var.
8882         (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
8883         (kill-new, kill-append): Remove obsolete `yank-handler' argument.
8884         (kill-region): Replace obsolete `yank-handler' arg with `region'.
8885         (copy-region-as-kill, kill-ring-save): Add `region' argument.
8886         (redisplay-unhighlight-region-function)
8887         (redisplay-highlight-region-function): New vars.
8888         (redisplay--update-region-highlight): New function.
8889         (pre-redisplay-function): Use it.
8890         (exchange-point-and-mark): Don't deactivate the mark before
8891         reactivate-it anyway.
8892         * comint.el (comint-kill-region): Remove yank-handler argument.
8893         * delsel.el (delete-backward-char, backward-delete-char-untabify)
8894         (delete-char): Remove property, since it's now part of their
8895         default behavior.
8896         (self-insert-iso): Remove property since this command doesn't exist.
8898         * emacs-lisp/package.el (package--download-one-archive)
8899         (describe-package-1): Don't query the user about final newline.
8901 2013-10-29  Daniel Colascione  <dancol@dancol.org>
8903         * net/tramp.el (tramp-methods): Document new functionality.
8904         * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
8905         tramp-hostname-checker if method provides one instead of scanning
8906         argument list for "%h" to decide hostname acceptability.
8908 2013-10-28  Michael Albinus  <michael.albinus@gmx.de>
8910         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
8911         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
8912         Handle COPY-CONTENTS.  (Bug#15737)
8914 2013-10-28  Daiki Ueno  <ueno@gnu.org>
8916         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8917         Document that this option has no effect with GnuPG 2.0 (bug#15552).
8919 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
8921         * image.el (defimage, image-load-path): Doc fixes.
8923 2013-10-27  Alan Mackenzie  <acm@muc.de>
8925         Indent statements in macros following "##" correctly.
8926         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
8927         Modify the "#" arm of a cond form to handle "#" and "##" operators.
8929 2013-10-27  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
8931         * linum.el (linum-update-window): Fix boundary test (bug#13446).
8933 2013-10-27  Dmitry Gutov  <dgutov@yandex.ru>
8935         * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
8936         after `=' is probably a new expression.
8938 2013-10-27  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8940         * man.el (man-imenu-title): New option.
8941         (Man-mode-map): Add menu.  (Bug#15722)
8942         (Man-mode): Add imenu to menu.
8944 2013-10-26  Dmitry Gutov  <dgutov@yandex.ru>
8946         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
8947         specific in what the first arg can be: a non-keyword word,
8948         string/regexp/percent literal opener, opening paren, or unary
8949         operator followed directly by word.
8951 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8953         * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
8954         (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
8955         (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
8956         (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
8957         Remove vars, they do not apply any more.
8958         (prolog-mode-abbrev-table): Remove redundant declaration.
8959         (prolog-upper-case-string, prolog-lower-case-string): Remove.
8960         (prolog-use-smie): Remove.
8961         (prolog-smie-rules): Add indentation rule for the if-then-else layout
8962         supported by prolog-electric-if-then-else-flag.
8963         (prolog-mode-variables, prolog-menu): Use setq-local.
8964         (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
8965         Remove binding to `Backspace' since this key doesn't exist anyway.
8966         Remove bindings for electric self-inserting keys.
8967         (prog-mode): Assume it's defined.
8968         (prolog-post-self-insert): New function.
8969         (prolog-mode): Use it.
8970         (prolog-indent-line, prolog-indent-level)
8971         (prolog-find-indent-of-matching-paren)
8972         (prolog-indentation-level-of-line, prolog-goto-comment-column)
8973         (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
8974         (prolog-goto-next-paren, prolog-in-string-or-comment)
8975         (prolog-tokenize, prolog-inside-mline-comment)
8976         (prolog-find-start-of-mline-comment): Remove functions.
8977         (prolog-find-unmatched-paren, prolog-clause-end)
8978         (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
8979         (prolog-electric--if-then-else): Rename from
8980         prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
8981         (prolog-tokenize-searchkey): Remove const.
8982         (prolog-clause-info): Use forward-sexp.
8983         (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
8984         (prolog-electric-if-then-else): Remove commands.
8985         (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
8986         for use in post-self-insert-hook.
8987         (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
8988         for use in post-self-insert-hook.
8989         (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
8990         for use in post-self-insert-hook.
8991         (prolog-electric--underscore): Rename from prolog-electric--underscore;
8992         adapt it for use in post-self-insert-hook.
8994 2013-10-25  Michael Albinus  <michael.albinus@gmx.de>
8996         * emacs-lisp/ert.el (ert-run-tests-interactively):
8997         Use `completing-read'.  (Bug#9756)
8999 2013-10-25  Eli Zaretskii  <eliz@gnu.org>
9001         * simple.el (line-move): Call line-move-1 instead of
9002         line-move-visual when the current window hscroll is zero, but
9003         temporary-goal-column indicates we will need to hscroll as result
9004         of the movement.  (Bug#15712)
9006 2013-10-25  Dmitry Gutov  <dgutov@yandex.ru>
9008         * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
9009         capitalization.  Use :visible instead of :active.
9010         Fix `ruby-indent-exp' reference.  Add menu items for the generic
9011         commands that are used with SMIE.
9012         (ruby-do-end-to-brace): Insert space after `{'.
9014 2013-10-25  John Anthony  <john@jo.hnanthony.com>
9016         * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu.  (Bug#15600)
9018         * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu.  (Bug#15599)
9020 2013-10-25  Glenn Morris  <rgm@gnu.org>
9022         * vc/vc.el (vc-print-log): Don't use a working revision unless
9023         one was explicitly specified.  (Bug#15322)
9025 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9027         * subr.el (add-to-list): Preserve return value in compiler-macro
9028         (bug#15692).
9030 2013-10-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
9032         * progmodes/octave.el (octave-lookfor): Handle empty lookfor
9033         result.  Ask user to retry using '-all' flag.  (Bug#15701)
9035 2013-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9037         * emacs-lisp/smie.el: New smie-config system.
9038         (smie-config): New defcustom.
9039         (smie-edebug, smie-config-show-indent, smie-config-set-indent)
9040         (smie-config-guess, smie-config-save): New commands.
9041         (smie-config--mode-local, smie-config--buffer-local)
9042         (smie-config--trace, smie-config--modefuns): New vars.
9043         (smie-config--advice, smie-config--mode-hook)
9044         (smie-config--setter, smie-config-local, smie-config--get-trace)
9045         (smie-config--guess-value, smie-config--guess): New functions.
9046         (smie-indent-forward-token, smie-indent-backward-token): Don't copy
9047         text properties.  Treat "string fence" syntax like string syntax.
9049         * progmodes/sh-script.el (sh-use-smie): Change default.
9050         (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
9051         (sh-var-value): Simplify by CSE.
9052         (sh-show-indent, sh-set-indent, sh-learn-line-indent)
9053         (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
9054         is used.
9055         (sh-guess-basic-offset): Use cl-incf.
9056         (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
9058 2013-10-24  Helmut Eller  <eller.helmut@gmail.com>
9060         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
9061         (bug#15699).
9063 2013-10-24  Glenn Morris  <rgm@gnu.org>
9065         * Makefile.in (abs_top_srcdir): Remove.
9066         (update-subdirs): Use relative path to update-subdirs.
9068 2013-10-24  Eli Zaretskii  <eliz@gnu.org>
9070         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
9071         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
9072         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
9073         Call unmsys--file-name before expand-file-name, not after it.
9075 2013-10-24  Michael Albinus  <michael.albinus@gmx.de>
9077         * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
9078         (ert-test-skipped): New error.
9079         (ert-skip, ert-stats-skipped): New defuns.
9080         (ert--skip-unless): New macro.
9081         (ert-test-skipped): New struct.
9082         (ert--run-test-debugger, ert-test-result-type-p)
9083         (ert-test-result-expected-p, ert--stats, ert-stats-completed)
9084         (ert--stats-set-test-and-result, ert-char-for-test-result)
9085         (ert-string-for-test-result, ert-run-tests-batch)
9086         (ert--results-update-ewoc-hf, ert-run-tests-interactively):
9087         Handle skipped tests.  (Bug#9803)
9089 2013-10-24  Glenn Morris  <rgm@gnu.org>
9091         * Makefile.in (check-declare): Remove unnecessary path in -l argument.
9093         * Makefile.in (abs_top_srcdir): New, set by configure.
9094         (update-subdirs): Correct build-aux location.
9096 2013-10-24  Dmitry Gutov  <dgutov@yandex.ru>
9098         * vc/vc.el (vc-print-root-log): Always set `default-directory'
9099         value, whether we could auto-deduce `backend', or not.
9101         * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
9102         with parameters" example.  Simplify the "is it block or is it
9103         hash" check, but also make it more thorough.
9105 2013-10-23  Masashi Fujimoto  <masfj.dev@gmail.com>  (tiny change)
9107         * battery.el (battery-pmset): Handle OS X Mavericks.  (Bug#15694)
9109 2013-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9111         * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
9112         { if it is hanging.
9114         * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
9115         :before ";".
9117 2013-10-23  Jed Brown  <jed@59A2.org>  (tiny change)
9119         * progmodes/compile.el (compilation-directory-matcher)
9120         (compilation-page-delimiter):
9121         Support GNU Make-4.0 directory quoting.  (Bug#15678)
9123 2013-10-23  Leo Liu  <sdl.web@gmail.com>
9125         * ido.el (ido-tidy): Handle read-only text.
9127 2013-10-23  Glenn Morris  <rgm@gnu.org>
9129         * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
9130         (emacs, compile, compile-always):
9131         Quote entities that might contain whitespace.
9132         (custom-deps, finder-data, autoloads): Use abs_lisp.
9133         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
9134         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
9135         ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
9137 2013-10-23  Dmitry Gutov  <dgutov@yandex.ru>
9139         * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
9140         Use `following-char'.
9142 2013-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9144         * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
9145         * progmodes/ruby-mode.el (ruby-smie-rules):
9146         Remove corresponding workaround.  Fix indentation rule of ";" so it
9147         also applies when ";" is the parent.
9149 2013-10-22  Xue Fuqiao  <xfq.free@gmail.com>
9151         * frame.el (display-screens, display-pixel-height)
9152         (display-pixel-width, display-mm-width, display-backing-store)
9153         (display-save-under, display-planes, display-color-cells)
9154         (display-visual-class, display-monitor-attributes-list):
9155         Mention the optional ‘display’ argument in doc strings.
9157 2013-10-22  Michael Gauland  <mikelygee@amuri.net>
9159         * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
9160         viewers such as evince when ebnf-production-name-p is nil.  (Bug#15625)
9162 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
9164         * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
9165         TODO.  Add "." after " @ ".
9166         (ruby-smie--at-dot-call): New function.  Checks if point at method
9167         call with explicit target.
9168         (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
9169         to the method name tokens when it precedes them.
9170         (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
9171         (ruby-smie-rules): Add rule for indentation before and after "."
9172         token.
9174 2013-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9176         * textmodes/remember.el (remember-diary-extract-entries):
9177         Avoid add-to-list.
9179         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
9180         an instruction.
9182 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
9184         * progmodes/ruby-mode.el (ruby-smie-grammar):
9185         Add (almost) all infix operators.
9186         (ruby-smie--implicit-semi-p): Add new operator chars.
9188         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
9189         `smie-down-list'.
9190         (ruby-smie--args-separator-p): Check that there's no newline
9191         between method call and its arguments.
9193 2013-10-20  Alan Mackenzie  <acm@muc.de>
9195         Allow comma separated lists after Java "implements".
9197         * progmodes/cc-engine.el (c-backward-over-enum-header):
9198         Parse commas.
9199         * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
9200         from a "disallowed" list in enum fontification.
9202 2013-10-20  Johan Bockgård  <bojohan@gnu.org>
9204         * startup.el (default-frame-background-mode): Remove unused defvar.
9206         * progmodes/verilog-mode.el (verilog-mode): Don't set
9207         comment-indent-function globally.
9209 2013-10-20  Jan Djärv  <jan.h.d@swipnet.se>
9211         * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
9212         Move Info menu item creation to ns-win.el.
9214         * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
9215         in menu bar.
9217         * menu-bar.el: Move GNUstep specific menus...
9219         * term/ns-win.el (ns-initialize-window-system): ... to here.
9221 2013-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9223         * simple.el (newline): Only run post-self-insert-hook when
9224         called interactively.
9226 2013-10-19  Johan Bockgård  <bojohan@gnu.org>
9228         * icomplete.el (icomplete-with-completion-tables): Add :version.
9230 2013-10-19  Alan Mackenzie  <acm@muc.de>
9232         Fix fontification bugs with constructors and const.
9234         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
9235         CASE 2) Remove the check for the absence of a suffix construct
9236         after a function declaration with only types (no identifiers) in
9237         the parentheses.  Also, accept a function declaration with just a
9238         type inside the parentheses, if this type can be positively
9239         recognised as such, or if a prefix keyword like "explicit" nails
9240         down the construct as a declaration.
9242 2013-10-19  Eli Zaretskii  <eliz@gnu.org>
9244         * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
9245         TTY menu actions and down-mouse-N to tty-menu-ignore.  This solves
9246         the problem whereby selecting a menu item that leads to a
9247         minibuffer prompt moves the cursor out of the minibuffer window,
9248         making it hard to type at the prompt.  Suggested by Stefan Monnier
9249         <monnier@iro.umontreal.ca>.
9251 2013-10-19  Jan Djärv  <jan.h.d@swipnet.se>
9253         * menu-bar.el: Don't make Services menu.
9255 2013-10-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
9257         * ffap.el: Handle "/usr/include/c++/<version>" directories.
9258         (ffap-alist): Use ffap-c++-mode for c++-mode.
9259         (ffap-c++-path): New variable.
9260         (ffap-c++-mode): New function.
9262 2013-10-19  Joe Vornehm Jr.  <joe.vornehm@gmail.com>  (tiny change)
9264         * ido.el (dired-other-frame): Only list directories.  (Bug#15638)
9266 2013-10-18  Michael Albinus  <michael.albinus@gmx.de>
9268         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
9269         introduced on 2013-09-08, which results in an infinite loop
9270         requesting a password.
9272 2013-10-18  Glenn Morris  <rgm@gnu.org>
9274         * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
9276 2013-10-18  Wilson Snyder  <wsnyder@wsnyder.org>
9278         Sync with upstream verilog-mode revision 1a6ecec7.
9279         * progmodes/verilog-mode.el (verilog-mode-version): Update.
9280         (verilog-mode-release-date): Remove.
9281         (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
9282         (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
9283         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
9284         (verilog-auto-tieoff-ignore-regexp)
9285         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
9286         (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
9287         (verilog-signals-with, verilog-dir-cache-preserving)
9288         (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
9289         Doc fixes.
9290         (verilog-case-fold): New option, to control case folding in
9291         regexp searches, bug597.
9292         (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
9293         (verilog-string-match-fold, verilog-in-paren-count)
9294         (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
9295         (verilog-at-close-struct-p): New functions.
9296         (verilog-beg-block-re-ordered, verilog-extended-case-re)
9297         (verilog-forward-sexp, verilog-set-auto-endcomments)
9298         (verilog-leap-to-case-head): Handle "unique0" case.
9299         (verilog-in-constraint-re): New constant.
9300         (verilog-keywords, verilog-type-font-keywords):
9301         Add some SystemVerilog 1800-2012 keywords.
9302         (verilog-label-be): Remove unimplemented argument, bug669.
9303         (verilog-batch-execute-func): When batch expanding clear
9304         create-lockfiles to prevent spurious user locks when a file ends
9305         up not changing.
9306         (verilog-calculate-indent, verilog-calc-1)
9307         (verilog-at-close-constraint-p, verilog-at-constraint-p)
9308         (verilog-do-indent): Fix indentation of nested constraints
9309         and structures.
9310         (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
9311         (verilog-auto-inst-param): Use verilog-string-match-fold.
9312         (verilog-read-inst-module-matcher):
9313         Fix AUTOINST on gate primitives with #1.
9314         (verilog-read-decls): Fix double-declaring user-defined typed signals.
9315         Reads all user-defined typed variables.
9316         (verilog-read-defines): Fix reading definitions inside comments, bug647.
9317         (verilog-signals-matching-regexp)
9318         (verilog-signals-not-matching-regexp, verilog-auto):
9319         Respect verilog-case-fold.
9320         (verilog-diff-report): Fix line count.
9321         (verilog-auto-assign-modport): Remove unused local `modi'.
9322         (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
9323         better handle multidimensional arrays.
9324         Fix packed array ports misadding bit index in AUTOINST, bug637.
9325         (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
9326         to not double-declare existing outputs and inputs, respectively.
9327         (verilog-template-map): Bind U to verilog-sk-uvm-component.
9328         (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
9329         (verilog-sk-uvm-component): New skeleton.
9330         (verilog-submit-bug-report): Add verilog-case-fold,
9331         remove verilog-mode-release-date.
9333 2013-10-17  Barry O'Reilly  <gundaetiapo@gmail.com>
9335         * subr.el (sit-for): Call (input-pending-p t) so as to behave
9336         as before.
9338 2013-10-18  Reuben Thomas  <rrt@sc3d.org>
9340         * textmodes/remember.el (remember): Set buffer-offer-save in
9341         remember buffers (bug#13566).
9343 2013-10-18  Daniel Colascione  <dancol@dancol.org>
9345         When evaluating forms in ielm, direct standard output to ielm
9346         buffer.  Add new ielm-return-for-effect command.  Remove trailing
9347         whitespace throughout.
9349         * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
9350         (ielm-return-for-effect): New command.
9351         (ielm-send-input): Accept optional `for-effect' parameter.
9352         (ielm-eval-input): Accept optional `for-effect' parameter.
9353         Bind `standard-output' to stream we create using
9354         `ielm-standard-output-impl'.  Suppress printing result when
9355         `for-effect'.
9356         (ielm-standard-output-impl): New function.
9357         (inferior-emacs-lisp-mode): Explain new features in documentation.
9359 2013-10-17  Michael Albinus  <michael.albinus@gmx.de>
9361         Code cleanup.
9363         * net/tramp.el (tramp-debug-message): Do not check for connection
9364         buffer.
9365         (tramp-message): Use "vector" connection property.
9367         * net/tramp.el (tramp-rfn-eshadow-update-overlay)
9368         (tramp-equal-remote, tramp-eshell-directory-change)
9369         * net/tramp-adb.el (tramp-adb-handle-copy-file)
9370         (tramp-adb-handle-rename-file)
9371         * net/tramp-cmds.el (tramp-list-remote-buffers)
9372         (tramp-cleanup-connection, tramp-cleanup-this-connection)
9373         * net/tramp-compat.el (tramp-compat-process-running-p)
9374         * net/tramp-ftp.el (tramp-ftp-file-name-handler)
9375         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
9376         (tramp-gvfs-handle-rename-file)
9377         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
9378         (tramp-set-file-uid-gid)
9379         * net/tramp-smb.el (tramp-smb-handle-copy-file)
9380         (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
9381         of `file-remote-p'.
9383         * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
9384         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
9385         (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
9386         (tramp-gw-open-network-stream): Suppress unrelated traces.
9388         * net/tramp-adb.el (tramp-adb-maybe-open-connection)
9389         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
9390         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
9391         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
9392         connection property.
9394         * net/tramp-cache.el (top): Suppress traces when reading
9395         persistency file.
9397         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
9398         Refactor common code.  Improve debug message.
9399         (tramp-maybe-open-connection)
9400         * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
9401         connection buffer too early.
9403         * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
9404         from `tramp-smb-actions-with-acl'.
9405         (tramp-smb-actions-set-acl): New defconst.
9406         (tramp-smb-handle-copy-directory)
9407         (tramp-smb-action-get-acl): New defun, renamed from
9408         `tramp-smb-action-with-acl'.
9409         (tramp-smb-action-set-acl): New defun.
9410         (tramp-smb-handle-set-file-acl): Rewrite.
9412 2013-10-17  Glenn Morris  <rgm@gnu.org>
9414         * indent.el (indent-rigidly): Fix 2013-10-08 change.  (Bug#15635)
9416 2013-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9418         * skeleton.el (skeleton-newline): Remove.
9419         (skeleton-internal-1): Use (insert "\n") instead.
9421         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
9422         let-bindings.
9424         * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
9425         forward-sexp-function while we redo its job (bug#15613).
9427 2013-10-17  Jay Belanger  <jay.p.belanger@gmail.com>
9429         * calc/calc-comb.el (math-prime-test): Don't assume large integers are
9430         represented by lists.
9432 2013-10-16  Glenn Morris  <rgm@gnu.org>
9434         * tmm.el (tmm--history): New dynamic variable.
9435         (tmm-prompt): Use tmm--history in place of `history'.  (Bug#15623)
9437 2013-10-16  Michael Albinus  <michael.albinus@gmx.de>
9439         * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
9440         (tramp-smb-errors): Add error messages.
9441         (tramp-smb-actions-with-acl): New defconst.
9442         (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
9443         (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
9444         (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
9445         (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
9446         (tramp-smb-get-stat-capability): Fix tests.
9448 2013-10-16  Dima Kogan  <dima@secretsauce.net>  (tiny change)
9450         * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
9451         (bug#15580).
9453 2013-10-16  Glenn Morris  <rgm@gnu.org>
9455         * ansi-color.el (ansi-color-drop-regexp):
9456         Add 1J, 1K, 2K.  (Bug#15617)
9458         * files.el (hack-local-variables--warned-lexical): New.
9459         (hack-local-variables):
9460         Warn about misplaced lexical-binding.  (Bug#15616)
9462         * net/eww.el (eww-render): Always set eww-current-url,
9463         and update header line.  (Bug#15622)
9464         (eww-display-html): ... Rather than just doing it here.
9466 2013-10-15  Eli Zaretskii  <eliz@gnu.org>
9468         * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
9469         menu navigations commands.
9471 2013-10-14  Dima Kogan  <dima@secretsauce.net>  (tiny change)
9473         * progmodes/subword.el (subword-capitalize): Be careful when
9474         the search for [[:alpha:]] fails (bug#15580).
9476 2013-10-14  Eli Zaretskii  <eliz@gnu.org>
9478         * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
9479         to commands that scroll the menu.
9481 2013-10-14  Dmitry Gutov  <dgutov@yandex.ru>
9483         * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
9484         Handle methods ending with `?' and `!'.
9486 2013-10-14  Akinori MUSHA  <knu@iDaemons.org>
9488         * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
9489         `japanese-cp932' to `cp932' to fix the problem where saving a
9490         source file written in Shift_JIS twice would end up having
9491         `coding: japanese-cp932' which Ruby could not recognize.
9492         (ruby-mode-set-encoding): Add support for encodings mapped to nil
9493         in `ruby-encoding-map'.
9494         (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
9495         doesn't need to be explicitly declared in magic comment.
9496         (ruby-encoding-map): Add type declaration for better customize UI.
9498 2013-10-13  Glenn Morris  <rgm@gnu.org>
9500         * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
9501         Occur buffers are read-only.  http://bugs.debian.org/720775
9503         * emacs-lisp/authors.el (authors-fixed-entries):
9504         Comment out old alpha stuff.
9506 2013-10-13  Dmitry Gutov  <dgutov@yandex.ru>
9508         * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
9509         to `after-save-hook' instead of `before-save-hook'.
9510         (ruby-mode-set-encoding): Use the value of coding system used to
9511         write the file.  Call `basic-save-buffer-1' after modifying the
9512         buffer.
9514 2013-10-13  Alan Mackenzie  <acm@muc.de>
9516         Fix indentation/fontification of Java enum with
9517         "implements"/generic.
9519         * progmodes/cc-engine.el (c-backward-over-enum-header):
9520         Extracted from the three other places and enhanced to handle generics.
9521         (c-inside-bracelist-p): Uses new function above.
9522         * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
9523         function above.
9524         (c-font-lock-enum-tail): Uses new function above.
9526 2013-10-13  Kenichi Handa  <handa@gnu.org>
9528         * international/mule-cmds.el (select-safe-coding-system): Remove a
9529         superfluous condition in chekcing whether a coding system is safe
9530         or not.
9532 2013-10-13  Oleh Krehel  <ohwoeowho@gmail.com>
9534         * replace.el (how-many): Fix rstart and !rend case.  (Bug#15589)
9536 2013-10-13  Andreas Politz  <politza@hochschule-trier.de>
9538         * progmodes/sql.el (sql-add-product): Fix paren typo.  (Bug#15435)
9540 2013-10-13  Glenn Morris  <rgm@gnu.org>
9542         * menu-bar.el (menu-bar-update-buffers):
9543         Unify Buffers menu prompt string.  (Bug#15576)
9545         * face-remap.el (text-scale-adjust): Doc fix.  (Bug#15434)
9547         * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
9548         Add some entries.
9549         (authors-fixed-entries): Use accented form of name.
9551 2013-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9553         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
9554         method calls (bug#15594).
9555         (ruby-smie--args-separator-p): New function.
9556         (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
9557         recognize paren-free method calls.
9559         * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
9560         internals of universal-argument.
9562 2013-10-11  Eli Zaretskii  <eliz@gnu.org>
9564         * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
9565         Bind all menu-bar sequences to tty-menu-exit -- this pops down a
9566         dropped menu on second mouse click on the menu bar.
9568 2013-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9570         * progmodes/sh-script.el: Provide simpl(e|istic) completion.
9571         (explicit-shell-file-name): Declare.
9572         (sh--vars-before-point, sh--cmd-completion-table): New functions.
9573         (sh-completion-at-point-function): New function.
9574         (sh-mode): Use it.
9575         (sh-smie--keyword-p): Remove unused argument.
9576         (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
9577         vars.
9578         (sh-set-shell): Always setup SMIE, even if we use the
9579         old indentation code.
9581 2013-10-11  Dmitry Gutov  <dgutov@yandex.ru>
9583         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
9584         cases of ? and =.
9585         (ruby-smie-rules): Simplify the "do" rule.  The cases when the
9586         predicate would return nil are almost non-existent.
9587         (ruby-smie--redundant-do-p): Include "until" and "for" statements.
9589         * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
9590         cache also after commands that modify the buffer but don't move
9591         point.
9593 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9595         * env.el (substitute-env-in-file-name): New function.
9596         (substitute-env-vars): Extend the meaning of the optional arg.
9598 2013-10-10  Eli Zaretskii  <eliz@gnu.org>
9600         * term/w32-win.el (dynamic-library-alist): Define separate lists
9601         of GIF DLLs for versions before and after 5.0.0 of giflib.
9602         (Bug#15531)
9604 2013-10-10  João Távora  <joaotavora@gmail.com>
9606         * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
9607         not locked, use last revision and current source as
9608         defaults.  (Bug#15569)
9610 2013-10-10  Masatake YAMATO  <yamato@redhat.com>
9612         * menu-bar.el (menu-bar-open): Don't use popup-menu if
9613         menu-bar is hidden.
9615 2013-10-10  Martin Rudalics  <rudalics@gmx.at>
9617         * window.el (pop-to-buffer-same-window): Fix doc-string.
9618         (Bug#15492)
9620 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9622         * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
9624 2013-10-10  Andrei Chițu  <andrei.chitu1@gmail.com>  (tiny change)
9626         * calendar/icalendar.el (icalendar-import-file):
9627         Fix interactive spec.  (Bug#15482)
9629 2013-10-10  Glenn Morris  <rgm@gnu.org>
9631         * desktop.el (desktop-save): Default to saving in .emacs.d,
9632         since PWD is no longer in desktop-path by default.  (Bug#15319)
9634         * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
9635         now that text mode has a menu with the same entry.
9636         (menu-bar-text-mode-auto-fill): Remove now unused func.
9637         * textmodes/text-mode.el (text-mode-map):
9638         Use auto-fill help text from menu-bar.el.
9640 2013-10-10  John Anthony  <john@jo.hnanthony.com>
9642         * textmodes/text-mode.el (text-mode-map): Add a menu.  (Bug#15562)
9644 2013-10-09  Juri Linkov  <juri@jurta.org>
9646         * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
9647         instead of this-command-keys.  Add universal-argument-more and
9648         universal-argument-minus to the list of prefix commands.  (Bug#15568)
9650 2013-10-09  Glenn Morris  <rgm@gnu.org>
9652         * vc/vc-svn.el (vc-svn-create-repo):
9653         Expand paths in file://... url.  (Bug#15446)
9655         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
9656         Add some entries.
9657         (authors): Remove unused local variables.
9659 2013-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9661         * profiler.el: Create a more coherent calltree from partial backtraces.
9662         (profiler-format): Hide the tail with `invisible' so that C-s can still
9663         find the hidden elements.
9664         (profiler-calltree-depth): Don't recurse so enthusiastically.
9665         (profiler-function-equal): New hash-table-test.
9666         (profiler-calltree-build-unified): New function.
9667         (profiler-calltree-build): Use it.
9668         (profiler-report-make-name-part): Indent the calltree less.
9669         (profiler-report-mode): Add visibility specs for profiler-format.
9670         (profiler-report-expand-entry, profiler-report-toggle-entry):
9671         Expand the whole subtree when provided with a prefix arg.
9673 2013-10-09  Dmitry Gutov  <dgutov@yandex.ru>
9675         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
9676         iuwu-mod token.
9677         (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
9678         hanging iuwu-mod token.
9679         (ruby-smie--forward-token): Do not include a dot after a token in
9680         that token.
9681         (ruby-smie--backward-token): Likewise.
9683 2013-10-08  Juri Linkov  <juri@jurta.org>
9685         * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
9686         to isearch-other-control-char.
9687         (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
9688         and isearch-post-command-hook to post-command-hook.
9689         (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
9690         and isearch-post-command-hook from post-command-hook.
9691         (isearch-unread-key-sequence)
9692         (isearch-reread-key-sequence-naturally)
9693         (isearch-lookup-scroll-key, isearch-other-control-char)
9694         (isearch-other-meta-char): Remove functions.
9695         (isearch-pre-command-hook, isearch-post-command-hook):
9696         New functions based on isearch-other-meta-char rewritten
9697         relying on the new behavior of overriding-terminal-local-map
9698         that does not replace the local keymaps any more.  (Bug#15200)
9700 2013-10-08  Eli Zaretskii  <eliz@gnu.org>
9702         Support menus on text-mode terminals.
9703         * tmm.el (tmm-menubar): Adapt doc string to TTY menus
9704         functionality.
9706         * tooltip.el (tooltip-mode): Don't error out on TTYs.
9708         * menu-bar.el (popup-menu, popup-menu-normalize-position):
9709         Move here from mouse.el.
9710         (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
9711         and arrow keys.
9712         (tty-menu-navigation-map): New map for TTY menu navigation.
9714         * loadup.el ("tooltip"): Load even if x-show-tip is not available.
9716         * frame.el (display-mouse-p): Report text-mode mouse as available
9717         on w32.
9718         (display-popup-menus-p): Report availability if mouse is
9719         available; don't condition on window-system.
9721         * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
9722         (tty-menu-selected-face): New faces.
9724 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9726         * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
9727         (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
9728         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
9729         (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
9730         New constants.
9731         (lisp-mode-variables): New `elisp' argument.
9732         (emacs-lisp-mode): Use it.
9733         * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
9734         (lisp-font-lock-keywords-2): Move to lisp-mode.el.
9736         * indent.el: Use lexical-binding.
9737         (indent-region): Add progress reporter.
9738         (tab-stop-list): Make it implicitly extend to infinity by repeating the
9739         last step.
9740         (indent--next-tab-stop): New function to implement this behavior.
9741         (tab-to-tab-stop, move-to-tab-stop): Use it.
9743 2013-10-08  Teemu Likonen  <tlikonen@iki.fi>
9745         * indent.el (indent-rigidly--current-indentation): New function.
9746         (indent-rigidly-map): New var.
9747         (indent-rigidly): Use it to provide interactive mode (bug#8196).
9749 2013-10-08  Bastien Guerry  <bzg@gnu.org>
9751         * register.el (insert-register): Fix 2013-10-07 change.
9753 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9755         * progmodes/perl-mode.el: Use lexical-binding.
9756         Remove redundant :group args.
9757         (perl-nochange): Change default to be closer to other major modes's
9758         standard behavior.
9759         (perl-indent-line): Don't consider text on current line as a
9760         valid beginning of function from which to indent.
9762         * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
9763         with more than one argument (bug#15538).
9765         * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
9767         * vc/pcvs.el: Use lexical-binding.
9768         (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
9769         environment of `eval'.
9770         (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
9771         than a list of expressions.  Adjust callers.
9772         * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
9774 2013-10-07  Dmitry Gutov  <dgutov@yandex.ru>
9776         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
9777         case of the dot in a chained method call being on the following line.
9779 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9781         * electric.el (electric-indent-inhibit): New var.
9782         (electric-indent-post-self-insert-function): Use it.
9783         * progmodes/python.el (python-mode): Set it.
9785         * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
9786         open braces.
9788         * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
9790         * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
9791         (css-mode): Use electric-indent-chars.
9793         * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
9794         (font-lock-beg, font-lock-end): Move before first use.
9795         (nxml-mode): Use syntax-propertize-function.
9796         (nxml-after-change, nxml-after-change1): Adjust accordingly.
9797         (nxml-extend-after-change-region): Remove.
9798         * nxml/xmltok.el: Use lexical-binding.
9799         (xmltok-save): Use `declare'.
9800         (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
9801         * nxml/nxml-util.el: Use lexical-binding.
9802         (nxml-with-degradation-on-error, nxml-with-invisible-motion):
9803         Use `declare'.
9804         * nxml/nxml-ns.el: Use lexical-binding.
9805         (nxml-ns-save): Use `declare'.
9806         (nxml-ns-prefixes-for): Avoid add-to-list.
9807         * nxml/rng-match.el: Use lexical-binding.
9808         (rng--ipattern): Use cl-defstruct.
9809         (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
9810         (rng-cons-group-after, rng-subst-group-after)
9811         (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
9812         Use closures instead of `(lambda...).
9814 2013-10-07  Michael Albinus  <michael.albinus@gmx.de>
9816         * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
9817         of BEG and END.
9819         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
9820         Use `tramp-handle-insert-file-contents'.
9821         (tramp-gvfs-handle-insert-file-contents): Remove function.
9823         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9824         Use `save-restriction' in order to keep markers.
9826         * net/trampver.el: Update release number.
9828 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9830         * progmodes/compile.el (compilation-parse-errors):
9831         Use compilation--put-prop.
9832         (compilation--ensure-parse): Check compilation-multiline.
9834         * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
9836         * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
9837         lexical-binding.
9839         * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
9841         * progmodes/ruby-mode.el: Fix recently added tests.
9842         (ruby-smie-grammar): Add - and +.
9843         (ruby-smie--redundant-do-p, ruby-smie--forward-id)
9844         (ruby-smie--backward-id): New functions.
9845         (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
9846         (ruby-smie-rules): Handle hanging do.  Get rid of hack, not needed
9847         any more.
9849 2013-10-07  Leo Liu  <sdl.web@gmail.com>
9851         * register.el (register-preview-delay)
9852         (register-preview-functions): New variables.
9853         (register-read-with-preview, register-preview)
9854         (register-describe-oneline): New functions.
9855         (point-to-register, window-configuration-to-register)
9856         (frame-configuration-to-register, jump-to-register)
9857         (number-to-register, view-register, insert-register)
9858         (copy-to-register, append-to-register, prepend-to-register)
9859         (copy-rectangle-to-register): Use register-read-with-preview to
9860         read register.  (Bug#15525)
9862 2013-10-06  Dato Simó  <dato@net.com.org.es>  (tiny change)
9864         * net/network-stream.el (network-stream-open-starttls): Don't add
9865         --insecure if it's already present, because that gnutls-cli
9866         rejects getting that parameter twice.
9868 2013-10-06  Dmitry Gutov  <dgutov@yandex.ru>
9870         * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
9871         keyword, too.
9873 2013-10-05  Dmitry Gutov  <dgutov@yandex.ru>
9875         * newcomment.el (comment-use-global-state): Change default value
9876         to t, mark obsolete (Bug#15251).
9877         (comment-beginning): In addition to `comment-to-syntax', check the
9878         value of `comment-use-global-state'.
9880 2013-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9882         * progmodes/ruby-mode.el (ruby-use-smie): Change default.
9883         (ruby-comment-column): Follow the global default, by default.
9884         (ruby-smie-grammar): Add assignment syntax.
9885         (ruby-smie--implicit-semi-p): No implicit semi-colon after an
9886         open-paren, a comma, or a \.
9887         (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
9888         and line continuations.
9889         (ruby-smie-rules): Adjust handling of open-paren, now that it's never
9890         followed by implicit semi-colons.  Add rule for string concatenation
9891         and for indentation at BOB.
9892         (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
9894         * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
9895         calling next-sexp, since next-token may have skipped chars which
9896         next-sexp doesn't know should be skipped!
9898 2013-10-05  Leo Liu  <sdl.web@gmail.com>
9900         * progmodes/octave.el (octave-send-region):
9901         Call compilation-forget-errors.
9903 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
9905         * vc/vc-svn.el (vc-svn-find-admin-dir):
9906         * vc/vc-rcs.el (vc-rcs-find-admin-dir):
9907         * vc/vc-mtn.el (vc-mtn-find-admin-dir):
9908         * vc/vc-cvs.el (vc-cvs-find-admin-dir):
9909         * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
9911 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9913         * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
9915 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9917         * subr.el (read-passwd): Hide chars even when called within a context
9918         where after-change-functions is disabled (bug#15501).
9919         (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
9920         until we removed ourself from overriding-terminal-local-map.
9922 2013-10-04  Leo Liu  <sdl.web@gmail.com>
9924         * progmodes/octave.el (inferior-octave-mode):
9925         Call compilation-forget-errors.
9927 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
9929         * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
9931 2013-10-04  Michael Albinus  <michael.albinus@gmx.de>
9933         * net/secrets.el (secrets-create-collection): Add optional
9934         argument ALIAS.  Use proper Label keyword.  Append ALIAS as
9935         dbus-call-method argument.  (Bug#15516)
9937 2013-10-04  Leo Liu  <sdl.web@gmail.com>
9939         * progmodes/octave.el (inferior-octave-error-regexp-alist)
9940         (inferior-octave-compilation-font-lock-keywords): New variables.
9941         (compilation-error-regexp-alist)
9942         (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
9943         (inferior-octave-mode): Use compilation-shell-minor-mode.
9945 2013-10-04  Jorgen Schaefer  <forcer@forcix.cx>
9947         * minibuffer.el (completion--replace): Be careful that `end' might be
9948         a marker.
9950 2013-10-03  Daiki Ueno  <ueno@gnu.org>
9952         Add support for package signature checking.
9953         * emacs-lisp/package.el (url-http-file-exists-p)
9954         (epg-make-context, epg-context-set-home-directory)
9955         (epg-verify-string, epg-context-result-for)
9956         (epg-signature-status, epg-signature-to-string)
9957         (epg-check-configuration, epg-configuration)
9958         (epg-import-keys-from-file): Declare.
9959         (package-check-signature): New user option.
9960         (package-unsigned-archives): New user option.
9961         (package-desc): Add `signed' field.
9962         (package-load-descriptor): Set `signed' field if .signed file exists.
9963         (package--archive-file-exists-p): New function.
9964         (package--check-signature): New function.
9965         (package-install-from-archive): Check package signature.
9966         (package--download-one-archive): Check archive signature.
9967         (package-delete): Remove .signed file.
9968         (package-import-keyring): New command.
9969         (package-refresh-contents): Import default keyring.
9970         (package-desc-status): Add "unsigned" status.
9971         (describe-package-1, package-menu--print-info)
9972         (package-menu-mark-delete, package-menu--find-upgrades)
9973         (package-menu--status-predicate): Support "unsigned" status.
9975 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9977         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
9978         the new compilation scheme using the new byte-codes.
9980         * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
9981         (byte-pophandler): New byte codes.
9982         (byte-goto-ops): Adjust accordingly.
9983         (byte-compile--use-old-handlers): New var.
9984         (byte-compile-catch): Use new byte codes depending on
9985         byte-compile--use-old-handlers.
9986         (byte-compile-condition-case--old): Rename from
9987         byte-compile-condition-case.
9988         (byte-compile-condition-case--new): New function.
9989         (byte-compile-condition-case): New function that dispatches depending
9990         on byte-compile--use-old-handlers.
9991         (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
9992         when we can.
9994         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
9995         Optimize under `condition-case' and `catch' if
9996         byte-compile--use-old-handlers is nil.
9997         (disassemble-offset): Handle new bytecodes.
9999 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10001         * subr.el (error): Use `declare'.
10002         (decode-char, encode-char): Use advertised-calling-convention instead
10003         of the docstring to discourage use of the `restriction' arg.
10005 2013-10-03  Daiki Ueno  <ueno@gnu.org>
10007         * epg.el (epg-verify-file): Add a comment saying that it does not
10008         notify verification error as a return value nor a signal.
10009         (epg-verify-string): Ditto.
10011 2013-10-02  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
10013         * progmodes/compile.el (compilation-start): Try globbing the arg to
10014         `cd' (bug#15417).
10016 2013-10-02  Michael Albinus  <michael.albinus@gmx.de>
10018         Sync with Tramp 2.2.8.
10020         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
10021         * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
10022         * net/trampver.el: Update release number.
10024 2013-10-01  Jan Djärv  <jan.h.d@swipnet.se>
10026         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
10027         and default-process-coding-system for darwin only.
10029 2013-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10031         * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
10033 2013-10-01  Mitchel Humpherys  <mitch.special@gmail.com>  (tiny change)
10035         * vc/vc-git.el (vc-git-grep): Disable pager.
10037 2013-10-01  Dmitry Gutov  <dgutov@yandex.ru>
10039         * emacs-lisp/package.el (package-buffer-info, describe-package-1):
10040         Use :url instead of :homepage, as per
10041         http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
10043         * newcomment.el (comment-beginning): When `comment-use-syntax' is
10044         non-nil, use `syntax-ppss' (Bug#15251).
10046 2013-09-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10048         * progmodes/octave.el (inferior-octave-startup-file):
10049         Prefer ~/.emacs.d/init_octave.m.
10051 2013-09-29  Dmitry Gutov  <dgutov@yandex.ru>
10053         * emacs-lisp/package.el (package-desc-from-define):
10054         Accept additional arguments as plist, convert them to an alist and store
10055         them in the `extras' slot.
10056         (package-generate-description-file): Convert extras alist back to
10057         plist and append to the `define-package' form arguments.
10058         (package--alist-to-plist): New function.
10059         (package--ac-desc): Add `extras' slot.
10060         (package--add-to-archive-contents): Check if the archive-contents
10061         vector is long enough, and if it is, pass its `extras' slot value
10062         to `package-desc-create'.
10063         (package-buffer-info): Call `lm-homepage', pass the returned value
10064         to `package-desc-from-define'.
10065         (describe-package-1): Render the homepage button (Bug#13291).
10067         * emacs-lisp/package-x.el (package-upload-buffer-internal):
10068         Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
10070 2013-09-29  Jan Djärv  <jan.h.d@swipnet.se>
10072         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
10073         and default-process-coding-system to utf-8-unix (Bug#15402).
10075 2013-09-29  Xue Fuqiao  <xfq.free@gmail.com>
10077         * subr.el (looking-back): Do not recommend using looking-back.
10079 2013-09-28  Alan Mackenzie  <acm@muc.de>
10081         Fix indentation/fontification of Java enum with "implements".
10083         * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
10084         regexp which matches "implements", etc., in Java.
10085         * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
10086         specifier clauses coming after "enum".
10087         * progmodes/cc-fonts.el (c-font-lock-declarations)
10088         (c-font-lock-enum-tail): Check for extra specifier clauses coming
10089         after "enum".
10091 2013-09-28  Jan Djärv  <jan.h.d@swipnet.se>
10093         * faces.el (region): Change ns_selection_color to
10094         ns_selection_fg_color, add ns_selection_bg_color.
10096 2013-09-28  Leo Liu  <sdl.web@gmail.com>
10098         * progmodes/octave.el (inferior-octave-completion-table)
10099         (inferior-octave-completion-at-point): Minor tweaks.
10101         * textmodes/ispell.el (ispell-lookup-words): Rename from
10102         lookup-words.  (Bug#15460)
10103         (lookup-words): Obsolete.
10104         (ispell-complete-word, ispell-command-loop): All uses changed.
10106 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10108         * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
10109         (octave-mode-menu): Add octave-send-buffer.
10110         (octave-send-buffer): New function.
10112 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10114         * progmodes/octave.el (octave-mode-map): Add key binding for
10115         octave-lookfor.
10116         (octave-mode-menu): Add octave-lookfor.
10117         (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
10118         octave-lookfor.
10119         (octave-lookfor): New function.
10121 2013-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10123         * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
10124         (cl--loop-iterator-function): Rename from cl--loop-map-form and change
10125         its convention.
10126         (cl--loop-set-iterator-function): New function.
10127         (cl-loop): Adjust accordingly, so as not to use cl-subst.
10128         (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
10129         Bind `it' with `let' instead of substituting it with `cl-subst'.
10130         (cl--unused-var-p): New function.
10131         (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
10132         Eliminate some unused variable warnings (bug#15326).
10134 2013-09-27  Tassilo Horn  <tsdh@gnu.org>
10136         * doc-view.el (doc-view-scale-reset): Rename from
10137         `doc-view-reset-zoom-level'.
10138         (doc-view-scale-adjust): New command.
10139         (doc-view-mode-map): Remap `text-scale-adjust' bindings to
10140         `doc-view-scale-adjust'.
10142 2013-09-26  Tassilo Horn  <tsdh@gnu.org>
10144         * doc-view.el (doc-view-reset-zoom-level): New command.
10145         (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
10146         zoom commands (bug#15466).
10148 2013-09-26  Kenichi Handa  <handa@gnu.org>
10150         * international/quail.el (quail-help): Make it not a command.
10152 2013-09-26  Leo Liu  <sdl.web@gmail.com>
10154         * minibuffer.el (completion-all-sorted-completions): Make args
10155         optional as they are.
10157 2013-09-25  Daniel Colascione  <dancol@dancol.org>
10159         * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
10160         specs are and that they're not evaluated.
10162 2013-09-24  Sam Steingold  <sds@gnu.org>
10164         * midnight.el (clean-buffer-list-kill-regexps)
10165         (clean-buffer-list-kill-buffer-names): Update for the new Man
10166         buffer naming which includes the object name.
10168 2013-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10170         * eshell/esh-cmd.el (eshell--sep-terms): New var.
10171         (eshell-parse-command, eshell-parse-pipeline): Use it since
10172         eshell-separate-commands requires a dynamic scoped var.
10173         Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
10175 2013-09-23  Leo Liu  <sdl.web@gmail.com>
10177         * autoinsert.el (auto-insert-alist): Make the value of
10178         lexical-binding match its file setting.
10180 2013-09-23  Juanma Barranquero  <lekktu@gmail.com>
10182         * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
10184         * autoarg.el (autoarg-kp-digit-argument):
10185         * electric.el (Electric-command-loop):
10186         * kmacro.el (kmacro-step-edit-insert):
10187         Do not set universal-argument-num-events.
10189 2013-09-22  Leo Liu  <sdl.web@gmail.com>
10191         * files.el (interpreter-mode-alist): Add octave.
10193 2013-09-21  Alan Mackenzie  <acm@muc.de>
10195         C++: fontify identifier in declaration following "public:" correctly.
10196         * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
10197         to match "public", etc.
10198         (c-decl-prefix-re): Add ":" into the C++ value.
10199         * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
10200         bit.  Add a check for a ":" preceded by "public", etc.
10202 2013-09-21  Eli Zaretskii  <eliz@gnu.org>
10204         * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
10205         recognized by GDB 7.5 and later.
10207 2013-09-21  Xue Fuqiao  <xfq.free@gmail.com>
10209         * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
10211 2013-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10213         * subr.el (internal--call-interactively): New const.
10214         (called-interactively-p): Use it (bug#3984).
10216 2013-09-20  Xue Fuqiao  <xfq.free@gmail.com>
10218         * vc/pcvs.el (cvs-mode-ignore):
10219         * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
10220         Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
10222 2013-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10224         * eshell/em-ls.el: Use advice.  Remove redundant :group keywords.
10225         (eshell-ls-orig-insert-directory): Remove.
10226         (eshell-ls-unload-hook): Not a defcustom any more.  Use advice-remove.
10227         (eshell-ls-use-in-dired): Use advice-add/remove.
10228         (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
10229         Add `orig-fun' arg for use in :around advice.
10230         Make it check (redundantly) eshell-ls-use-in-dired.
10232 2013-09-19  Glenn Morris  <rgm@gnu.org>
10234         * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
10236         * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
10238         * emacs-lisp/eieio.el (class-parent): Undo previous change.
10240 2013-09-19  Michael Albinus  <michael.albinus@gmx.de>
10242         * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
10243         (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
10244         (tramp-get-remote-python): New defuns.
10245         (tramp-get-remote-uid-with-perl)
10246         (tramp-get-remote-gid-with-perl): New defuns.  Perl code
10247         contributed by yary <not.com@gmail.com> (tiny change).
10248         (tramp-get-remote-uid-with-python)
10249         (tramp-get-remote-gid-with-python): New defuns.  Python code
10250         contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
10251         (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
10253 2013-09-19  Glenn Morris  <rgm@gnu.org>
10255         * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
10257         * eshell/em-unix.el (eshell-remove-entries):
10258         Rename argument to avoid name-clash with global `top-level'.
10260         * eshell/esh-proc.el (eshell-kill-process-function):
10261         Remove eshell-reset-after-proc from eshell-kill-hook if present.
10262         (eshell-reset-after-proc): Remove unused arg `proc'.
10264         * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
10265         (directory-files-and-attributes): Mark unused arg.
10267         * eshell/em-unix.el (eshell-remove-entries):
10268         Remove unused arg `path'.  Update callers.
10270         * eshell/em-hist.el (eshell-hist-parse-arguments):
10271         Remove unused arg `silent'.  Update callers.
10273         * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
10274         Fix (f)boundp mix-up.
10276         * eshell/em-smart.el (eshell-smart-scroll-window)
10277         (eshell-disable-after-change):
10278         * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
10280 2013-09-18  Alan Mackenzie  <acm@muc.de>
10282         Fix fontification of type when followed by "const".
10283         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
10284         "known" types from fontification.
10286 2013-09-18  Glenn Morris  <rgm@gnu.org>
10288         * emacs-lisp/chart.el (x-display-color-cells): Declare.
10289         (chart-face-list): Drop Emacsen without display-color-p.
10291         * net/eww.el (libxml-parse-html-region): Declare.
10292         (eww-display-html): Explicit error if no libxml2 support.
10294         * doc-view.el (doc-view-mode): Silence --without-x compilation.
10296         * image.el (image-type-from-buffer, image-multi-frame-p):
10297         Remove --without-x warning/error.
10299         * mouse.el (mouse-yank-primary):
10300         * term.el (term-mouse-paste):
10301         Reorder to silence --without-x compilation.
10303         * mpc.el (doc-view-mode): Silence --without-x compilation.
10305         * mail/rmailmm.el (rmail-mime-set-bulk-data):
10306         Silence --without-x compilation.
10308         * progmodes/gud.el (gud-find-file, gud-mode):
10309         Silence --without-x compilation.
10310         (tooltip-mode): Declare.
10312         * wdired.el (dired-backup-overwrite): Remove declaration.
10313         (wdired-mode-map): Add doc string.
10315         * custom.el (x-get-resource): Declare.
10317         * eshell/em-glob.el (ange-cache):
10318         * eshell/em-unix.el (ange-cache): Declare.
10320         * faces.el (x-display-list, x-open-connection, x-get-resource):
10321         Declare.
10323         * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
10324         (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
10325         Declare.
10327         * frame.el (x-display-grayscale-p, x-display-name): Declare.
10329         * net/gnutls.el (gnutls-log-level): Declare.
10331         * net/shr.el (image-size, image-animate): Declare.
10333         * simple.el (font-info): Declare.
10335         * subr.el (x-popup-dialog): Declare.
10337         * term/common-win.el (x-select-enable-primary)
10338         (x-last-selected-text-primary, x-last-selected-text-clipboard):
10339         Declare.
10341         * term/ns-win.el (x-handle-args): Declare.
10343         * term/x-win.el (x-select-enable-clipboard): Declare.
10345         * term/w32-win.el (create-default-fontset): Declare.
10347         * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
10348         Declare.
10350         * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
10351         (fit-frame-to-buffer): Explicit error if --without-x.
10352         (mouse-autoselect-window-select): Silence compiler.
10354         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
10356         * eshell/em-cmpl.el (eshell-complete-parse-arguments):
10357         * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
10358         * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
10359         * eshell/esh-util.el (eshell-sublist):
10360         Remove unused local variables.
10362         * eshell/esh-io.el (x-select-enable-clipboard): Declare.
10364         * textmodes/two-column.el: Make 2C-split work for --without-x.
10365         (scroll-bar-columns): Autoload.
10366         (top-level): Require fringe when compiling.
10368 2013-09-18  Leo Liu  <sdl.web@gmail.com>
10370         * subr.el (add-hook): Robustify to handle closure as well.
10372 2013-09-17  Glenn Morris  <rgm@gnu.org>
10374         * simple.el (messages-buffer-mode-map): Unbind "g".
10376 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10378         * help-mode.el (help-mode-finish): Use derived-mode-p.
10379         Remove obsolete highlighting.
10381         * play/life.el (life-mode): Use define-derived-mode.  Derive from
10382         special-mode.
10383         (life): Let-bind inhibit-read-only.
10384         (life-setup): Avoid `setq'.  Use `life-mode'.
10386         * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
10387         which should not be needed any more.
10388         (package-menu-refresh, package-menu-describe-package): Use user-error.
10390         * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
10391         (eshell-post-rewrite-command-hook): Make obsolete.
10392         (eshell-parse-command): Simplify.
10393         (eshell-structure-basic-command): Remove unused arg `vocal-test'.
10394         (eshell--cmd): Declare.
10395         (eshell-parse-pipeline): Remove unused var `final-p'.
10396         Pass a dynvar to eshell-post-rewrite-command-hook.
10397         Implement the new eshell-post-rewrite-command-function.
10398         (eshell-invoke-directly): Remove unused arg `input'.
10399         * eshell/esh-io.el (eshell-io-initialize):
10400         Use eshell-post-rewrite-command-function (bug#15399).
10401         (eshell--apply-redirections): Rename from eshell-apply-redirections;
10402         adjust to new calling convention.
10403         (eshell-create-handles): Rename args to avoid clashing with dynvar
10404         `standard-output'.
10406 2013-09-17  Glenn Morris  <rgm@gnu.org>
10408         * simple.el (messages-buffer-mode): New major mode.
10409         (messages-buffer): New function.
10410         * startup.el (normal-top-level): Switch mode of *Messages* buffer.
10411         * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
10412         (ert-run-test): Use `messages-buffer' function.
10413         (ert--force-message-log-buffer-truncation): Ignore read-only.
10414         * help.el (view-echo-area-messages): Use `messages-buffer' function.
10415         * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
10417 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10419         * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
10421         * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
10423 2013-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10425         * icomplete.el (icomplete-in-buffer): New var.
10426         (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
10427         vars and replace them with functions.
10428         (icomplete-minibuffer-setup): Adjust accordingly.
10429         (icomplete--completion-table, icomplete--completion-predicate)
10430         (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
10431         New functions.
10432         (icomplete-forward-completions, icomplete-backward-completions)
10433         (icomplete-simple-completing-p, icomplete-exhibit)
10434         (icomplete-completions): Use them.
10435         (icomplete--in-region-buffer): New var.
10436         (icomplete--in-region-setup): New function.
10437         (icomplete-mode): Use it.
10439         * eshell/esh-opt.el: Fix last change to set lexical-vars properly
10440         (bug#15379).
10441         (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
10442         return args and options.
10443         (eshell-eval-using-options): Use the new return value of
10444         eshell--do-opts to set the options's vars in their scope.
10445         (eshell--set-option): Rename from eshell-set-option.
10446         Add arg `opt-vals'.
10447         (eshell--process-option): Rename from eshell-process-option.
10448         Add arg `opt-vals'.
10449         (eshell--process-args): Use an `opt-vals' alist to store the options's
10450         values during their processing and return them additionally to the
10451         remaining args.
10453 2013-09-15  Dmitry Gutov  <dgutov@yandex.ru>
10455         * progmodes/ruby-mode.el (ruby-operator-re): Consider line
10456         continuation character an operator, as far as indentation is
10457         concerned (Bug#15369).
10459 2013-09-15  Martin Rudalics  <rudalics@gmx.at>
10461         * window.el (window--state-put-2): Don't process buffer state
10462         when buffer doesn't exist any more (Bug#15382).
10464 2013-09-15  Glenn Morris  <rgm@gnu.org>
10466         * eshell/em-unix.el (eshell/rm):
10467         Make -f ignore missing files.  (Bug#15373)
10469         * eshell/esh-cmd.el (eshell--local-vars): New variable.  (Bug#15372)
10470         (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
10471         * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
10473 2013-09-14  Glenn Morris  <rgm@gnu.org>
10475         * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
10477 2013-09-13  Glenn Morris  <rgm@gnu.org>
10479         * dired-x.el (dired-guess-shell-alist-user): Doc fix.
10480         (dired-guess-default): Make `file' available in the env.  (Bug#15363)
10482 2013-09-13  Dmitry Antipov  <dmantipov@yandex.ru>
10484         * frame.el (x-focus-frame): Mark as declared in frame.c.
10486 2013-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10488         * ls-lisp.el: Use advice-add.
10489         (original-insert-directory): Remove.
10490         (ls-lisp--insert-directory): Rename from insert-directory; add
10491         `orig-fun' argument.
10492         (insert-directory): Advise.
10494 2013-09-13  Eli Zaretskii  <eliz@gnu.org>
10496         * term.el (term-emulate-terminal): Decode the command string
10497         before passing it to term-command-hook.  (Bug#15337)
10499 2013-09-13  Glenn Morris  <rgm@gnu.org>
10501         * eshell/esh-util.el (ange-cache): Move declaration earlier.
10503         * eshell/esh-ext.el (eshell-search-path): Declare.
10505         * eshell/em-prompt.el (eshell/pwd): Autoload it.
10506         Otherwise an error occurs if eshell-dirs module not loaded.
10508         * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
10510 2013-09-13  Michael Albinus  <michael.albinus@gmx.de>
10512         * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
10513         `tramp-check-proper-host'.  Check for a valid method name.
10515         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
10516         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
10517         * net/tramp-sh.el (tramp-maybe-open-connection):
10518         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
10520         * net/tramp-cache.el (tramp-cache-print): Don't print text properties
10521         also for hash values.
10523 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10525         * term/ns-win.el (parameters): Don't declare as dynamic.
10526         (before-make-frame-hook): Don't add ineffective function.
10528         * eshell/*.el: Use lexical-binding (bug#15231).
10530 2013-09-12  Kenichi Handa  <handa@gnu.org>
10532         * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
10534 2013-09-12  Glenn Morris  <rgm@gnu.org>
10536         * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
10537         (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
10539         * subr.el (do-after-load-evaluation): Also give compiler warnings
10540         when obsolete files are used (except by obsolete files).
10542         * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
10543         in the status output, assume `filename' is the first.  (Bug#15322)
10545         * vc/vc.el (vc-deduce-fileset): Doc fix.
10547         * calc/calc-help.el (Info-goto-node):
10548         * progmodes/cperl-mode.el (Info-find-node):
10549         * vc/ediff.el (Info-goto-node): Update declarations.
10551         * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
10553         * vc/vc-bzr.el (vc-compilation-mode): Declare.
10554         (vc-bzr-pull): Require vc-dispatcher.
10555         * vc/vc-git.el (vc-compilation-mode): Declare.
10556         (vc-git-pull): Require vc-dispatcher.
10558         * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
10560         * progmodes/octave.el (help-button-action): Declare.
10562         * shell.el (shell-directory-tracker): Output error as a message
10563         rather than just returning it as a string.
10564         (shell-process-pushd): Remove useless use of message.
10566         * dframe.el (dframe-timer-fn):
10567         * files.el (dir-locals-read-from-file):
10568         * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
10569         (mpc-format):
10570         * reveal.el (reveal-post-command):
10571         * saveplace.el (load-save-place-alist-from-file):
10572         * shell.el (shell-resync-dirs):
10573         * w32-common-fns.el (x-get-selection-value):
10574         * emacs-lisp/copyright.el (copyright-find-copyright):
10575         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
10576         * emulation/tpu-edt.el (tpu-copy-keyfile):
10577         * play/bubbles.el (bubbles--mark-neighbourhood):
10578         * progmodes/executable.el
10579         (executable-make-buffer-file-executable-if-script-p):
10580         * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
10582 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10584         Cleanup Eshell to rely less on dynamic scoping.
10585         * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
10586         last-value, and ext-command here.  Bind `args' closer to `body'.
10587         (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
10588         (eshell--args): Declare new dynamic var.
10589         (eshell-do-opt): Add argument `args'.  Bind our own usage-msg,
10590         last-value, and ext-command.  Pass `args' to `body'.
10591         (eshell-process-args): Bind eshell--args.
10592         (eshell-set-option): Use eshell--args.
10593         * eshell/eshell.el (eshell): Use derived-mode-p.
10594         * eshell/esh-var.el (eshell-parse-variable): Use backquote.
10595         (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
10596         (eshell-glob-function): Declare.
10597         * eshell/esh-util.el: Require cl-lib.
10598         (eshell-read-hosts-file): Avoid add-to-list.
10599         * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
10600         `err'.
10601         * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
10602         Declare.
10603         (eshell/diff): Remove unused var `err'.
10604         * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
10605         `killflag'.
10606         * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
10607         * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
10608         first use.
10609         * eshell/em-glob.el (eshell-glob-matches, message-shown):
10610         Move declaration before first use.
10611         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
10612         * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
10613         rely on cl-return.
10615 2013-09-12  Glenn Morris  <rgm@gnu.org>
10617         * term/ns-win.el (global-map): Remove binding for ispell-next,
10618         deleted 1999-05-29.  (Bug#15357)
10620 2013-09-11  Glenn Morris  <rgm@gnu.org>
10622         * echistory.el (electric-command-history): Remove call to deleted func.
10624         * play/landmark.el (landmark-mode): Fix typos.
10626         * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
10627         Check cvs-sort-ignore-file is bound.
10629         * savehist.el: No need for cl when compiling on Emacs.
10631 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10633         * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
10634         (bug#15338).
10635         (eshell-self-insert-command, eshell-send-invisible):
10636         Remove unused argument.
10637         (eshell-handle-control-codes): Remove unused var `orig'.
10638         Avoid delete-backward-char.
10640         * files.el (set-auto-mode): Simplify a bit further.
10642 2013-09-11  Glenn Morris  <rgm@gnu.org>
10644         * files.el (interpreter-mode-alist): Remove \\` \\' parts.
10645         (set-auto-mode): Don't regexp-quote elements.
10646         * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
10647         * progmodes/cc-mode.el (interpreter-mode-alist):
10648         * progmodes/ruby-mode.el (interpreter-mode-alist):
10649         Revert previous change.
10651 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10653         * play/snake.el (snake-mode):
10654         * play/mpuz.el (mpuz-mode):
10655         * play/landmark.el (lm-mode):
10656         * play/blackbox.el (blackbox-mode):
10657         * play/5x5.el (5x5-mode):
10658         * obsolete/options.el (Edit-options-mode):
10659         * net/quickurl.el (quickurl-list-mode):
10660         * net/newst-treeview.el (newsticker-treeview-mode):
10661         * mail/rmailsum.el (rmail-summary-mode):
10662         * mail/mspools.el (mspools-mode):
10663         * locate.el (locate-mode):
10664         * ibuffer.el (ibuffer-mode):
10665         * emulation/ws-mode.el (wordstar-mode):
10666         * emacs-lisp/debug.el (debugger-mode):
10667         * array.el (array-mode):
10668         * net/eudc.el (eudc-mode): Use define-derived-mode.
10669         * net/mairix.el (mairix-searches-mode-font-lock-keywords):
10670         Move initialization into declaration.
10671         (mairix-searches-mode): Use define-derived-mode.
10672         * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
10673         (eudc-edit-hotlist): Use dolist.
10674         * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
10675         (Man-mode): Use define-derived-mode.
10676         * info.el (Info-edit-mode-map): Rename from Info-edit-map.
10677         (Info-edit-mode): Use define-derived-mode.
10678         (Info-cease-edit): Use Info-mode.
10679         * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
10680         into declaration.
10681         (eshell-mode): Use define-derived-mode.
10682         * chistory.el (command-history-mode-map): Rename from
10683         command-history-map.
10684         (command-history-mode): Use define-derived-mode.
10685         (Command-history-setup): Remove function.
10686         * calc/calc.el (calc-trail-mode-map): New var.
10687         (calc-trail-mode): Use define-derived-mode.
10688         (calc-trail-buffer): Set calc-main-buffer manually.
10689         * bookmark.el (bookmark-insert-annotation): New function.
10690         (bookmark-edit-annotation): Use it.
10691         (bookmark-edit-annotation-mode): Make it a proper major mode.
10692         (bookmark-send-edited-annotation): Use derived-mode-p.
10693         * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
10694         closer to its ideal place.  Use \' to match EOS.
10696         * profiler.el (profiler-calltree-find): Use function-equal.
10698 2013-09-10  Glenn Morris  <rgm@gnu.org>
10700         * files.el (interpreter-mode-alist): Convert to regexps.
10701         (set-auto-mode): Adapt for this.  (Bug#15306)
10702         * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
10703         Comment out unused variable.
10704         * progmodes/cc-mode.el (interpreter-mode-alist):
10705         * progmodes/python.el (interpreter-mode-alist):
10706         * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
10707         * progmodes/sh-script.el (sh-set-shell):
10708         No longer use interpreter-mode-alist to get list of shells.
10710         * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
10712 2013-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10714         * simple.el: Use set-temporary-overlay-map for universal-argument.
10715         (universal-argument-map): Don't use default-bindings (bug#15317).
10716         Bind switch-frame explicitly.  Replace universal-argument-minus with
10717         a conditional binding.
10718         (universal-argument-num-events, saved-overriding-map): Remove.
10719         (restore-overriding-map): Remove.
10720         (universal-argument--mode): Rename from save&set-overriding-map,
10721         and rewrite.
10722         (universal-argument, universal-argument-more, negative-argument)
10723         (digit-argument): Adjust accordingly.
10724         (universal-argument-minus): Remove.
10725         (universal-argument-other-key): Remove.
10727         * subr.el (with-demoted-errors): Add `format' argument.
10729 2013-09-10  Michael Albinus  <michael.albinus@gmx.de>
10731         * net/tramp.el (tramp-cleanup): Remove.  Functionality added to
10732         `tramp-cleanup-connection'.
10734         * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
10735         parameters KEEP-DEBUG and KEEP-PASSWORD.
10737         * net/tramp.el (tramp-file-name-handler):
10738         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
10739         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
10740         (tramp-maybe-open-connection):
10741         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
10742         Use `tramp-cleanup-connection'.
10744         * net/tramp-sh.el (tramp-maybe-open-connection):
10745         Catch 'uname-changed inside the progress reporter.
10747 2013-09-10  Glenn Morris  <rgm@gnu.org>
10749         * simple.el (read-minibuffer): Unbreak it.  (Bug#15318)
10751         * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
10752         returns "alternate access method" in mode (eg "-rw-r--r--.").
10754 2013-09-08  Glenn Morris  <rgm@gnu.org>
10756         * saveplace.el (load-save-place-alist-from-file):
10757         Demote errors.  (Bug#15305)
10759 2013-09-08  Michael Albinus  <michael.albinus@gmx.de>
10761         Improve compatibility with older Emacsen, and XEmacs.
10763         * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
10764         only if it is bound.  It isn't for XEmacs.
10765         (with-tramp-progress-reporter): Do not let-bind `result'.
10766         This yields to scoping errors in XEmacs.
10767         (tramp-handle-make-auto-save-file-name): New function, moved from
10768         tramp-sh.el.
10770         * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
10771         for `make-auto-save-file-name'.
10772         (tramp-adb--gnu-switches-to-ash):
10773         Use `tramp-compat-replace-regexp-in-string'.
10775         * net/tramp-cache.el (tramp-cache-print): Call
10776         `substring-no-properties' only if it is bound.  It isn't for XEmacs.
10778         * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
10779         bound.  It isn't for XEmacs.
10781         * net/tramp-compat.el (tramp-compat-copy-file):
10782         Catch `wrong-number-of-arguments' error.
10783         (tramp-compat-replace-regexp-in-string): New defun.
10785         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
10786         for `make-auto-save-file-name'.
10787         (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
10788         `copy-file'.
10789         (tramp-gvfs-file-gvfs-monitor-file-process-filter)
10790         (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
10791         (tramp-synce-list-devices): Use `push' instead of `pushnew'.
10793         * net/tramp-gw.el (tramp-gw-open-network-stream):
10794         Use `tramp-compat-replace-regexp-in-string'.
10796         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10797         Call `tramp-handle-make-auto-save-file-name'.
10798         (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
10799         (tramp-sh-file-gvfs-monitor-dir-process-filter)
10800         (tramp-sh-file-inotifywait-process-filter):
10801         Use `tramp-compat-replace-regexp-in-string'.
10802         (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
10804         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
10805         for `make-auto-save-file-name'.
10806         (tramp-smb-handle-copy-directory):
10807         Call `tramp-compat-replace-regexp-in-string'.
10808         (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
10809         (tramp-smb-handle-copy-file): Improve error message.
10810         (tramp-smb-handle-rename-file): Rename directly only in case
10811         `newname' does not exist yet.  This is a restriction of smbclient.
10812         (tramp-smb-maybe-open-connection): Rerun the function only when
10813         `auth-sources' is non-nil.
10815 2013-09-08  Kenichi Handa  <handa@gnu.org>
10817         * international/characters.el: Set category "^" (Combining) for
10818         more characters.
10820 2013-09-07  Alan Mackenzie  <acm@muc.de>
10822         Correctly fontify Java class constructors.
10823         * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
10824         in Java Mode.
10825         (c-recognize-typeless-decls): Set the Java value to t.
10826         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
10827         While handling a "(", add a check for, effectively, Java, and handle a
10828         "typeless" declaration there.
10830 2013-09-07  Roland Winkler  <winkler@gnu.org>
10832         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
10833         field subtitle for entry type book.
10835 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10837         * minibuffer.el: Make minibuffer-complete call completion-in-region
10838         rather than other way around.
10839         (completion--some, completion-pcm--find-all-completions):
10840         Don't delay signals when debugging.
10841         (minibuffer-completion-contents): Beware fields within the
10842         minibuffer contents.
10843         (completion-all-sorted-completions): Use defvar-local.
10844         (completion--do-completion, completion--cache-all-sorted-completions)
10845         (completion-all-sorted-completions, minibuffer-force-complete):
10846         Add args `beg' and `end'.
10847         (completion--in-region-1): New fun, extracted from minibuffer-complete.
10848         (minibuffer-complete): Use completion-in-region.
10849         (completion-complete-and-exit): New fun, extracted from
10850         minibuffer-complete-and-exit.
10851         (minibuffer-complete-and-exit): Use it.
10852         (completion--complete-and-exit): Rename from
10853         minibuffer--complete-and-exit.
10854         (completion-in-region--single-word): New function, extracted from
10855         minibuffer-complete-word.
10856         (minibuffer-complete-word): Use it.
10857         (display-completion-list): Make `common-substring' argument obsolete.
10858         (completion--in-region): Call completion--in-region-1 instead of
10859         minibuffer-complete.
10860         (completion-help-at-point): Pass boundaries to
10861         minibuffer-completion-help as args rather than via an overlay.
10862         (completion-pcm--string->pattern): Use `any-delim'.
10863         (completion-pcm--optimize-pattern): New function.
10864         (completion-pcm--pattern->regex): Handle `any-delim'.
10865         * icomplete.el (icomplete-forward-completions)
10866         (icomplete-backward-completions, icomplete-completions):
10867         Adjust calls to completion-all-sorted-completions and
10868         completion--cache-all-sorted-completions.
10869         (icomplete-with-completion-tables): Default to t.
10870         * emacs-lisp/crm.el (crm--current-element): Rename from
10871         crm--select-current-element.  Don't put an overlay but return the
10872         boundaries instead.
10873         (crm--completion-command): Take two new args to bind to the boundaries.
10874         (crm-completion-help): Adjust accordingly.
10875         (crm-complete): Use completion-in-region.
10876         (crm-complete-word): Use completion-in-region--single-word.
10877         (crm-complete-and-exit): Use completion-complete-and-exit.
10879 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10881         * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
10882         than dynamically.
10884 2013-09-06  Juri Linkov  <juri@jurta.org>
10886         * info.el (Info-display-images-node): When image file doesn't exist
10887         display text version of the image if it's provided in the Info file.
10888         Otherwise, display the location of missing image from SRC attribute.
10889         Add help-echo text property from ALT attribute.  (Bug#15279)
10891 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10893         * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
10894         (edit-abbrevs-mode): Use define-derived-mode.
10896         * epa.el (epa--encode-coding-string, epa--decode-coding-string)
10897         (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
10898         that it's defined.
10899         (epa-key-list-mode, epa-key-mode, epa-info-mode):
10900         Use define-derived-mode.
10902         * epg.el (epg-start-encrypt): Minor CSE simplification.
10904 2013-09-06  William Xu  <william.xwl@gmail.com>
10906         * arc-mode.el: Add support for 7za (bug#15264).
10907         (archive-7z-program): New var.
10908         (archive-zip-extract, archive-zip-expunge, archive-zip-update)
10909         (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
10910         (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
10912 2013-09-06  Michael Albinus  <michael.albinus@gmx.de>
10914         Remove URL syntax.
10916         * net/tramp.el (tramp-syntax, tramp-prefix-format)
10917         (tramp-postfix-method-format, tramp-prefix-ipv6-format)
10918         (tramp-postfix-ipv6-format, tramp-prefix-port-format)
10919         (tramp-postfix-host-format, tramp-file-name-regexp)
10920         (tramp-completion-file-name-regexp)
10921         (tramp-completion-dissect-file-name)
10922         (tramp-handle-substitute-in-file-name): Remove 'url case.
10923         (tramp-file-name-regexp-url)
10924         (tramp-completion-file-name-regexp-url): Remove constants.
10926 2013-09-06  Glenn Morris  <rgm@gnu.org>
10928         * replace.el (replace-string): Doc fix re start/end.  (Bug#15275)
10930 2013-09-05  Dmitry Gutov  <dgutov@yandex.ru>
10932         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
10933         keywords" below "here-doc beginnings" (Bug#15270).
10935 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10937         * subr.el (pop): Use `car-safe'.
10938         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
10939         to detect unused `pop' return value.
10941         * progmodes/python.el (python-nav-beginning-of-block): Remove unused
10942         var `block-regexp'.
10943         (python-nav--forward-sexp): Remove unused var `re-search-fn'.
10944         (python-fill-string): Remove unused var `marker'.
10945         (python-skeleton-add-menu-items): Remove unused var `items'.
10947         * international/mule-cmds.el: Require CL.
10948         (find-coding-systems-for-charsets): Avoid add-to-list.
10949         (sanitize-coding-system-list): New function, extracted from
10950         select-safe-coding-system-interactively.
10951         (select-safe-coding-system-interactively): Use it.
10952         (read-input-method-name): Accept symbols for `default'.
10954         * emacs-lisp/advice.el (defadvice): Add indent rule.
10956 2013-09-05  Daniel Hackney  <dan@haxney.org>
10958         * dired-x.el:
10959         * net/ange-ftp.el:
10960         * net/browse-url.el:
10961         * net/dbus.el:
10962         * net/eudc.el:
10963         * net/eudcb-ldap.el:
10964         * net/eww.el:
10965         * net/imap.el:
10966         * printing.el:
10967         * vc/ediff-diff.el:
10968         * vc/ediff-init.el:
10969         * vc/ediff-merg.el:
10970         * vc/ediff-mult.el:
10971         * vc/ediff-util.el:
10972         * vc/ediff-wind.el:
10973         * vc/ediff.el:
10974         * vc/emerge.el:
10975         * vc/pcvs.el:
10976         * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
10977         byte compiler.  Remove some unused let-bound variables.
10979 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10981         * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
10982         a "ref-cell", since it gets better optimized (bug#14883).
10984 2013-09-05  Glenn Morris  <rgm@gnu.org>
10986         * progmodes/cc-awk.el (c-forward-sws): Declare.
10988 2013-09-04  Glenn Morris  <rgm@gnu.org>
10990         * generic-x.el [rul-generic-mode]: Require cc-mode.
10991         (c++-mode-syntax-table): Declare.
10992         (rul-generic-mode-syntax-table): Init in the defvar.
10994 2013-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10996         * vc/vc-dispatcher.el (vc-run-delayed): New macro.
10997         (vc-do-command, vc-set-async-update):
10998         * vc/vc-mtn.el (vc-mtn-dir-status):
10999         * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
11000         (vc-hg-pull, vc-hg-merge-branch):
11001         * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
11002         (vc-git-merge-branch):
11003         * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
11004         (vc-cvs-dir-status-files):
11005         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
11006         (vc-bzr-dir-status-files):
11007         * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
11008         * vc/vc-annotate.el: Use lexical-binding.
11009         (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
11010         (vc-sentinel-movepoint): Declare.
11011         (vc-annotate): Don't use `goto-line'.
11012         * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
11013         (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
11014         (vc-sentinel-movepoint): Declare.
11015         * vc/vc-svn.el: Use lexical-binding.
11016         (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
11017         * vc/vc-sccs.el:
11018         * vc/vc-rcs.el: Use lexical-binding.
11020         * autorevert.el (auto-revert-notify-handler): Explicitly ignore
11021         `deleted'.  Don't drop errors silently.
11023         * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
11025 2013-09-04  Xue Fuqiao  <xfq.free@gmail.com>
11027         * vc/vc.el (vc-ignore): Rewrite.
11028         (vc-default-ignore): New function.
11029         (vc-default-ignore-completion-table): Use find-ignore-file.
11031         * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
11032         * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
11033         * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
11034         Remove.  Most code moved to vc.el.
11036 2013-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11038         * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
11039         * net/tramp-smb.el (tramp-smb-get-file-entries):
11040         * net/tramp-sh.el (tramp-sh-handle-insert-directory)
11041         (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
11043         * net/eww.el (eww-display-raw): Remove unused argument `charset'.
11044         Update call to it.
11045         (eww-change-select): Remove unused var `properties'.
11046         (eww-make-unique-file-name): Remove unused var `base'.
11048         * finder.el (finder-compile-keywords): Don't mess with windows.
11050         * calculator.el (calculator-funcall): Fix typo in last change.
11052         * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
11054         * emacs-lisp/package.el (package-activate-1): Don't let a missing
11055         <pkg>-autoloads.el file stop us.
11057         * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
11058         warnings, and factor out common code.
11060 2013-09-03  Dmitry Gutov  <dgutov@yandex.ru>
11062         * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
11063         two-character operators and whether the character preceding them
11064         changes their meaning (Bug#15208).
11066 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
11068         Format code sent to Python shell for robustness.
11069         * progmodes/python.el (python-shell-buffer-substring):
11070         New function.
11071         (python-shell-send-region, python-shell-send-buffer): Use it.
11073 2013-09-02  Michael Albinus  <michael.albinus@gmx.de>
11075         * net/tramp-compat.el (tramp-compat-user-error): Move it ...
11076         * net/tramp.el (tramp-user-error): ... here.
11077         (tramp-find-method, tramp-check-proper-host)
11078         (tramp-dissect-file-name, tramp-debug-message)
11079         (tramp-handle-shell-command):
11080         * net/tramp-adb.el (tramp-adb-handle-shell-command):
11081         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
11083         * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
11085 2013-09-02  Martin Rudalics  <rudalics@gmx.at>
11087         * avoid.el (mouse-avoidance-point-position)
11088         (mouse-avoidance-too-close-p): Handle case where posn-at-point
11089         returns nil.
11091 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
11093         * progmodes/python.el (python-shell-completion-get-completions):
11094         Drop use of deleted `comint-last-prompt-overlay'.
11095         (python-nav-if-name-main): New command.
11097 2013-09-01  Glenn Morris  <rgm@gnu.org>
11099         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11100         Avoid leading space in $wins.  Otherwise the sed command used by
11101         eg compile-main ends up containing "/*.el".  (Bug#15170)
11103         * frame.el (frame-background-mode): Doc fix.  (Bug#15226)
11105 2013-08-30  Glenn Morris  <rgm@gnu.org>
11107         * emacs-lisp/bytecomp.el (byte-recompile-directory):
11108         Fix is-this-a-directory logic.  (Bug#15220)
11110 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11112         * textmodes/css-mode.el: Use SMIE.
11113         (css-smie-grammar): New var.
11114         (css-smie--forward-token, css-smie--backward-token)
11115         (css-smie-rules): New functions.
11116         (css-mode): Use them.
11117         (css-navigation-syntax-table): Remove var.
11118         (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
11119         (css-indent-calculate, css-indent-line): Remove functions.
11121         Misc changes to reduce use of `(lambda...); and other cleanups.
11122         * cus-edit.el: Use lexical-binding.
11123         (customize-push-and-save, customize-apropos)
11124         (custom-buffer-create-internal): Use closures.
11125         * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
11126         * progmodes/ada-xref.el: Use setq.
11127         * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
11128         * dframe.el: Use lexical-binding.
11129         (dframe-frame-mode): Fix calling convention for hooks.  Use a closure.
11130         * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
11131         * descr-text.el: Use lexical-binding.
11132         (describe-text-widget, describe-text-sexp, describe-property-list):
11133         Use closures.
11134         * comint.el (comint-history-isearch-push-state): Use a closure.
11135         * calculator.el: Use lexical-binding.
11136         (calculator-number-to-string): Make it work with lexical-binding.
11137         (calculator-funcall): Same and use cl-letf.
11139         * emacs-lisp/lisp.el (lisp--company-doc-buffer)
11140         (lisp--company-doc-string, lisp--company-location): New functions.
11141         (lisp-completion-at-point): Use them to improve Company support.
11143         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
11144         params of lambda expressions.
11145         (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
11146         (ruby-smie--opening-pipe-p): New function.
11147         (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
11148         symbols and matched |...| for formal params.
11149         (ruby-smie-rules): Don't let the formal params of a "do" prevent it
11150         from being treated as hanging.  Handle "rescue".
11152 2013-08-29  Glenn Morris  <rgm@gnu.org>
11154         * progmodes/cc-engine.el (c-pull-open-brace):
11155         Move definition before use.
11157 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11159         * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
11160         are immutable.  Don't use `unsafe' any more.
11161         (cl--defsubst-expand): Don't substitute at the same time as keeping
11162         a residual unused let-binding.  Don't use `unsafe' any more.
11164 2013-08-29  Glenn Morris  <rgm@gnu.org>
11166         * calendar/cal-china.el (calendar-chinese-year-cache):
11167         Recenter on 2015.
11169         * nxml/nxml-util.el (nxml-debug-clear-inside):
11170         Use cl-loop rather than loop.
11172         * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
11174         * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
11176 2013-08-28  Glenn Morris  <rgm@gnu.org>
11178         * progmodes/antlr-mode.el: No need to require cc-mode twice.
11180         * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
11182         * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
11184 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11186         * simple.el (repeat-complex-command--called-interactively-skip):
11187         New function.
11188         (repeat-complex-command): Use it (bug#14136).
11190         * progmodes/cc-mode.el: Minor cleanup of var declarations.
11191         (c-define-abbrev-table): Add `doc' argument.
11192         (c-mode-abbrev-table, c++-mode-abbrev-table)
11193         (objc-mode-abbrev-table, java-mode-abbrev-table)
11194         (idl-mode-abbrev-table, pike-mode-abbrev-table)
11195         (awk-mode-abbrev-table): Use it.
11196         (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
11197         (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
11198         (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
11199         (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
11200         Move initialization into the declaration; and remove any
11201         autoload cookie.
11203         * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
11204         and dynamic let binding.
11206         * vc/smerge-mode.el: Remove redundant :group args.
11208         * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
11209         to load-path.
11211 2013-08-28  Juri Linkov  <juri@jurta.org>
11213         * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
11214         arg DONT-DOWNCASE-LAST of `read-key-sequence'.
11215         (isearch-other-meta-char): Handle an undefined shifted printing
11216         character by downshifting it.  (Bug#15200)
11218 2013-08-28  Juri Linkov  <juri@jurta.org>
11220         * isearch.el (isearch-search): Change regexp error message for
11221         non-regexp searches.  (Bug#15166)
11223 2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
11225         * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
11226         for portability to hosts where /bin/sh has problems.
11228 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11230         * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
11232 2013-08-27  Juri Linkov  <juri@jurta.org>
11234         * isearch.el (isearch-other-meta-char): Don't store kmacro commands
11235         in the keyboard macro.  (Bug#15126)
11237 2013-08-27  Juri Linkov  <juri@jurta.org>
11239         * isearch.el (isearch-quote-char): Comment out converting unibyte
11240         to multibyte, thus syncing with its `quoted-insert' counterpart.
11241         (Bug#15166)
11243 2013-08-27  Martin Rudalics  <rudalics@gmx.at>
11245         * window.el (display-buffer-use-some-window): Add missing
11246         argument in call of get-largest-window (Bug#15185).
11247         Reported by Stephen Leake.
11249 2013-08-27  Glenn Morris  <rgm@gnu.org>
11251         * emacs-lisp/package.el (package-buffer-info): Fix message typo.
11253 2013-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11255         * progmodes/python.el (python-font-lock-keywords): Don't return nil
11256         from a matcher-function unless there's no more matches (bug#15161).
11258 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
11260         * minibuffer.el: Revert change from 2013-08-20.
11262         * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
11263         with text property `tramp-default', if appropriate.
11264         (tramp-check-proper-host): New defun.
11265         (tramp-dissect-file-name): Do not check hostname.  Revert change
11266         of 2013-03-18.
11267         (tramp-backtrace): Make VEC-OR-PROC optional.
11269         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
11270         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
11271         * net/tramp-sh.el (tramp-maybe-open-connection):
11272         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
11273         Apply `tramp-check-proper-host'.
11275 2013-08-26  Tassilo Horn  <tsdh@gnu.org>
11277         * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
11278         lambda expression in order to have `describe-variable' display it.
11280 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
11282         * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
11283         BUF can be optional.  (Bug#15186)
11285 2013-08-25  Xue Fuqiao  <xfq.free@gmail.com>
11287         * progmodes/flymake.el (flymake-get-real-file-name-function):
11288         Fix broken customization.  (Bug#15184)
11290 2013-08-25  Alan Mackenzie  <acm@muc.de>
11292         Improve indentation of bracelists defined by macros (without "=").
11294         * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
11295         expansion begins with "{", regard it as bracelist when it doesn't
11296         contain a ";".
11298         Parse C++ inher-intro when there's a template split over 2 lines.
11300         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
11301         rigorously the search for "class" etc. followed by ":".
11303         * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
11304         random languages a regexp which never matches rather than nil.
11306         Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
11308         * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
11309         (c-awk-regexp-one-line-possibly-open-char-list-re)
11310         (c-awk-one-line-possibly-open-regexp-re)
11311         (c-awk-one-line-non-syn-ws*-re): Remove.
11312         (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
11313         (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
11314         (c-awk-space*-unclosed-regexp-/-re): New constants.
11315         (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
11316         aren't regexp delimiters.
11318         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
11319         handling for a rare situation in AWK Mode involving unterminated
11320         strings/regexps.
11322 2013-08-23  Glenn Morris  <rgm@gnu.org>
11324         * files.el (auto-mode-alist): Use sh-mode for .bash_history.
11326         * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
11328         * files.el (create-file-buffer): If the result would begin with
11329         spaces, prepend a "|" instead of removing them.  (Bug#15162)
11331 2013-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11333         * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
11334         text-properties (bug#15155).
11336         * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
11337         exist any more.
11338         (calc-keypad-redraw): Remove unused var `pad'.
11339         (calc-keypad-press): Remove unused var `menu'.
11341 2013-08-23  Martin Rudalics  <rudalics@gmx.at>
11343         * window.el (display-buffer-pop-up-frame):
11344         Call pop-up-frame-function with BUFFER current so `make-frame' will
11345         use it as the new frame's buffer (Bug#15133).
11347 2013-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11349         * calendar/timeclock.el: Minor cleanups.
11350         (timeclock-ask-before-exiting, timeclock-use-display-time):
11351         Use `symbol'.
11352         (timeclock-modeline-display): Define as alias before the
11353         actual definition.
11354         (timeclock-mode-line-display): Use define-minor-mode.
11355         (timeclock-day-list-template): Make it a function, add an argument.
11356         (timeclock-day-list-required, timeclock-day-list-length)
11357         (timeclock-day-list-debt, timeclock-day-list-span)
11358         (timeclock-day-list-break): Adjust calls accordingly.
11360 2013-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11362         * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
11363         Use read--expression so that completion works again.
11365 2013-08-21  Sam Steingold  <sds@gnu.org>
11367         Add rudimentary inferior shell interaction
11368         * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
11369         (sh-set-shell): Reset it.
11370         (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
11371         New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
11373 2013-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11375         * align.el: Use lexical-binding.
11376         (align-region): Simplify accordingly.
11378 2013-08-20  Michael Albinus  <michael.albinus@gmx.de>
11380         * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
11382         * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
11383         `non-essential' up.
11385 2013-08-17  Michael Albinus  <michael.albinus@gmx.de>
11387         * net/tramp.el:
11388         * net/tramp-adb.el:
11389         * net/tramp-cmds.el:
11390         * net/tramp-ftp.el:
11391         * net/tramp-gvfs.el:
11392         * net/tramp-gw.el:
11393         * net/tramp-sh.el: Don't wrap external variable declarations by
11394         `eval-when-compile'.
11396 2013-08-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11398         * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
11399         now that Emacs supports ImageMagick animations.
11401 2013-08-16  Michael Albinus  <michael.albinus@gmx.de>
11403         * net/tramp-cmds.el (top): Don't declare `buffer-name'.
11404         (tramp-append-tramp-buffers): Rewrite buffer local variables part.
11406 2013-08-16  Martin Rudalics  <rudalics@gmx.at>
11408         * window.el (mouse-autoselect-window-select): Do autoselect when
11409         mouse pointer is on margin.
11411 2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
11413         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
11415 2013-08-16  Glenn Morris  <rgm@gnu.org>
11417         * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
11418         Handle "Remote Directory" response of some clients.  (Bug#15058)
11420         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
11421         Tweak warning.  (Bug#14926)
11423         * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
11424         (menu-bar-tools-menu): Simplify news and mail items.  (Bug#15095)
11426         * image-mode.el (image-mode-map): Add menu items to reverse,
11427         increase, decrease, reset animation speed.
11428         (image--set-speed, image-increase-speed, image-decrease-speed)
11429         (image-reverse-speed, image-reset-speed): New functions.
11430         (image-mode-map): Add bindings for speed commands.
11432         * image.el (image-animate-get-speed, image-animate-set-speed):
11433         New functions.
11434         (image-animate-timeout): Respect image :speed property.
11436 2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11438         * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
11439         previous line (bug#15101).
11440         (debugger-eval-expression, debugger-record-expression):
11441         Use read--expression (bug#15102).
11443 2013-08-15  Michael Albinus  <michael.albinus@gmx.de>
11445         Remove byte compiler warnings, visible when compiling with
11446         `byte-compile-force-lexical-warnings' set to t.
11448         * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
11449         (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
11450         (tramp-handle-unhandled-file-name-directory)
11451         (tramp-handle-file-notify-add-watch, tramp-action-login)
11452         (tramp-action-succeed, tramp-action-permission-denied)
11453         (tramp-action-terminal, tramp-action-process-alive): Prefix unused
11454         arguments with "_".
11456         * net/tramp-adb.el (tramp-adb-parse-device-names)
11457         (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
11458         (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
11459         (tramp-adb-handle-file-truename): Remove unused arguments.
11461         * net/tramp-cache.el (tramp-flush-directory-property)
11462         (tramp-flush-connection-property, tramp-list-connections)
11463         (tramp-parse-connection-properties): Prefix unused arguments with "_".
11465         * net/tramp-compat.el (tramp-compat-make-temp-file):
11466         Rename FILENAME to F.
11468         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
11469         (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
11470         (tramp-zeroconf-parse-workstation-device-names)
11471         (tramp-zeroconf-parse-webdav-device-names)
11472         (tramp-synce-parse-device-names): Prefix unused arguments with "_".
11474         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
11475         (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
11477         * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
11478         arguments.
11479         (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
11480         (tramp-sh-handle-insert-file-contents-literally)
11481         (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
11482         with "_".
11483         (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
11484         Remove unused variables.
11486         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
11487         (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
11488         (tramp-smb-read-file-entry): Prefix unused arguments with "_".
11490         * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
11491         Make them a defconst.
11492         (tramp-uuencode-region): Remove unused variable.
11494 2013-08-14  Juanma Barranquero  <lekktu@gmail.com>
11496         * frameset.el (frameset--prop-setter): New function.
11497         (frameset-prop): Add gv-setter declaration.
11498         (frameset-filter-minibuffer): Deal with the case that the minibuffer
11499         parameter was already set in FILTERED.  Doc fix.
11500         (frameset--record-minibuffer-relationships): Allow saving a
11501         minibufferless frame without its corresponding minibuffer frame.
11502         (frameset--reuse-frame): Accept a match from an orphaned minibufferless
11503         frame, if the frame id matches.
11504         (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
11505         frames before orphaned ones.
11506         (frameset-restore): Warn about orphaned windows, instead of error out.
11508 2013-08-14  Martin Rudalics  <rudalics@gmx.at>
11510         * window.el (window-make-atom): Don't overwrite parameter
11511         already present.
11512         (display-buffer-in-atom-window): Handle special case where we
11513         split an already atomic window.
11514         (window--major-non-side-window, display-buffer-in-side-window)
11515         (window--side-check): Ignore minibuffer window when walking
11516         window tree.
11517         (window-deletable-p): Return 'frame only if no other frame uses
11518         our minibuffer window.
11519         (record-window-buffer): Run buffer-list-update-hook.
11520         (split-window): Make sure window--check-frame won't destroy an
11521         existing atomic window in case the new window gets nested
11522         inside.
11523         (display-buffer-at-bottom): Ignore minibuffer window when
11524         walking window tree.  Don't split a side window.
11525         (pop-to-buffer): Don't set-buffer here, the select-window call
11526         should do that.
11527         (mouse-autoselect-window-select): Autoselect only if we are in the
11528         text portion of the window.
11530 2013-08-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11532         * net/shr.el (shr-parse-image-data): New function to grab both the
11533         data itself and the Content-Type.
11534         (shr-put-image): Use it.
11536         * net/eww.el (eww-display-image): Ditto.
11538         * image.el (image-content-type-suffixes): New variable.
11540 2013-08-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
11542         * progmodes/python.el (python-imenu--build-tree)
11543         (python-imenu--put-parent): Simplify and Fix (GH bug 146).
11545 2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
11547         * simple.el (backward-word): Mention the optional argument.
11549 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11551         * frameset.el (frameset--make): Rename constructor from make-frameset.
11552         (frameset-p, frameset-valid-p): Don't autoload.
11553         (frameset-valid-p): Use normal accessors.
11555 2013-08-13  Glenn Morris  <rgm@gnu.org>
11557         * progmodes/compile.el (compile-command): Tweak example in doc.
11558         * obsolete/scribe.el (scribe-mode):
11559         * progmodes/mixal-mode.el (mixal-mode): Quote buffer name.  (Bug#15053)
11561         * mail/feedmail.el (feedmail-confirm-outgoing)
11562         (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
11564         * cus-start.el (truncate-partial-width-windows): Fix type.
11566         * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
11568         * net/shr.el (shr-table-horizontal-line): Fix custom type.
11570 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11572         * emacs-lisp/timer.el (timer--time-setter): New function.
11573         (timer--time): Use it as gv-setter.
11575         * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
11576         setter is not a symbol.
11578 2013-08-12  Grégoire Jadi  <daimrod@gmail.com>
11580         * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
11581         if sending fails.  This makes debugging easier.
11583 2013-08-12  Juanma Barranquero  <lekktu@gmail.com>
11585         * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
11586         2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
11587         https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
11589 2013-08-12  Eli Zaretskii  <eliz@gnu.org>
11591         * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
11593 2013-08-12  Glenn Morris  <rgm@gnu.org>
11595         * format.el (format-annotate-function):
11596         Handle read-only text properties in the source.  (Bug#14887)
11598 2013-08-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11600         * net/eww.el (eww-display-html): Ignore coding system errors.
11601         One web site uses "utf-8lias" as the coding system.
11603 2013-08-11  Juanma Barranquero  <lekktu@gmail.com>
11605         * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
11607 2013-08-10  Juanma Barranquero  <lekktu@gmail.com>
11609         * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
11610         (tutorial--detailed-help): Remove unused local variables.
11611         (tutorial--save-tutorial-to): Use ignore-errors.
11612         (help-with-tutorial): Use looking-at-p.
11614         * view.el (view-buffer-other-window, view-buffer-other-frame):
11615         Mark unused arguments.
11617         * woman.el (woman-parse-colon-path, woman-parse-colon-path)
11618         (woman-select-symbol-fonts, woman, woman-find-file)
11619         (woman-insert-file-contents, woman-non-underline-faces):
11620         Use string-match-p.
11621         (woman1-unquote): Move declaration.
11623         * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
11624         (xml-parse-dtd): Use looking-at-p, string-match-p.  Mark unused
11625         argument.  Remove unused local variable.
11626         (xml-parse-elem-type): Use string-match-p.
11627         (xml-substitute-numeric-entities): Use ignore-errors.
11629         * calculator.el (calculator): Mark unused argument.
11630         (calculator-paste, calculator-quit, calculator-integer-p):
11631         Use ignore-errors.
11632         (calculator-string-to-number, calculator-decimal, calculator-exp)
11633         (calculator-op-or-exp): Use string-match-p.
11635         * dired.el (dired-buffer-more-recently-used-p): Declare.
11636         (dired-insert-set-properties, dired-insert-old-subdirs):
11637         Use ignore-errors.
11639         * dired-aux.el (dired-compress): Use ignore-errors.
11640         (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
11641         (dired-do-async-shell-command, dired-do-shell-command)
11642         (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
11643         (dired-insert-subdir-validate): Use string-match-p.
11644         (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
11645         (dired-add-entry): Use string-match-p, looking-at-p.
11646         (dired-insert-subdir-newpos): Remove unused local variable.
11648         * filenotify.el (file-notify-callback): Remove unused local variable.
11650         * filesets.el (filesets-error): Mark unused argument.
11651         (filesets-which-command-p, filesets-filter-dir-names)
11652         (filesets-directory-files, filesets-get-external-viewer)
11653         (filesets-ingroup-get-data): Use string-match-p.
11655         * find-file.el (ff-other-file-name, ff-other-file-name)
11656         (ff-find-the-other-file, ff-cc-hh-converter):
11657         Remove unused local variables.
11658         (ff-get-file-name): Use string-match-p.
11659         (ff-all-dirs-under): Use ignore-errors.
11661         * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
11662         (follow-select-if-visible): Remove unused local variable.
11664         * forms.el (read-file-filter): Move declaration.
11665         (forms--make-format, forms--make-parser, forms-insert-record):
11666         Quote function with #'.
11667         (forms--update): Use string-match-p.  Quote function with #'.
11669         * help-mode.el (help-dir-local-var-def): Mark unused argument.
11670         (help-make-xrefs): Use looking-at-p.
11671         (help-xref-on-pp): Use looking-at-p, ignore-errors.
11673         * ibuffer.el (ibuffer-ext-visible-p): Declare.
11674         (ibuffer-confirm-operation-on): Use string-match-p.
11676         * msb.el (msb-item-handler, msb-dired-item-handler):
11677         Mark unused arguments.
11679         * ses.el (ses-decode-cell-symbol)
11680         (ses-kill-override): Remove unused local variable.
11681         (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
11682         (ses-load): Use ignore-errors, looking-at-p.
11683         (ses-jump-safe): Use ignore-errors.
11684         (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
11686         * tabify.el (untabify, tabify): Mark unused arguments.
11688         * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
11689         Mark unused argument.
11690         (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
11691         (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
11693         * emacs-lisp/timer.el (timer--time): Define setter with
11694         gv-define-setter to avoid deprecation warning.
11696         * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
11697         (*record-cmpl-statistics-p*): Remove (was commented out).
11698         (cmpl-statistics-block): Remove (body was commented out).
11699         All callers changed.
11700         (add-completions-from-buffer, load-completions-from-file):
11701         Remove unused variables.
11703 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
11705         * filecache.el (file-cache-delete-file-list):
11706         Print message only when told so.
11707         (file-cache-files-matching): Use #' in mapconcat argument.
11709         * ffap.el (ffap-url-at-point): Fix reference to variable
11710         thing-at-point-default-mail-uri-scheme.
11712 2013-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
11714         * subr.el (define-error): New function.
11715         * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
11716         error-file-not-found and define with define-error.
11717         * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
11718         and define with define-error.
11719         * userlock.el (file-locked, file-supersession):
11720         * simple.el (mark-inactive):
11721         * progmodes/js.el (js-moz-bad-rpc, js-js-error):
11722         * progmodes/ada-mode.el (ada-mode-errors):
11723         * play/life.el (life-extinct):
11724         * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
11725         * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
11726         * nxml/rng-util.el (rng-error):
11727         * nxml/rng-uri.el (rng-uri-error):
11728         * nxml/rng-match.el (rng-compile-error):
11729         * nxml/rng-cmpct.el (rng-c-incorrect-schema):
11730         * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
11731         * nxml/nxml-rap.el (nxml-scan-error):
11732         * nxml/nxml-outln.el (nxml-outline-error):
11733         * net/soap-client.el (soap-error):
11734         * net/gnutls.el (gnutls-error):
11735         * net/ange-ftp.el (ftp-error):
11736         * mpc.el (mpc-proc-error):
11737         * json.el (json-error, json-readtable-error, json-unknown-keyword)
11738         (json-number-format, json-string-escape, json-string-format)
11739         (json-key-format, json-object-format):
11740         * jka-compr.el (compression-error):
11741         * international/quail.el (quail-error):
11742         * international/kkc.el (kkc-error):
11743         * emacs-lisp/ert.el (ert-test-failed):
11744         * calc/calc.el (calc-error, inexact-result, math-overflow)
11745         (math-underflow):
11746         * bookmark.el (bookmark-error-no-filename):
11747         * epg.el (epg-error): Define with define-error.
11749         * time.el (display-time-event-handler)
11750         (display-time-next-load-average): Don't call sit-for since it seems
11751         unnecessary (bug#15045).
11753         * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
11754         Use #' instead of ' to quote functions.
11755         (checkdoc-output-mode): Use setq-local.
11756         (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
11757         (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
11758         (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
11759         (checkdoc-ispell, checkdoc-ispell-current-buffer)
11760         (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
11761         (checkdoc-ispell-message-text, checkdoc-ispell-start)
11762         (checkdoc-ispell-continue, checkdoc-ispell-comments)
11763         (checkdoc-ispell-defun): Remove unused arg `take-notes'.
11765         * ido.el (ido-completion-help): Fix up compiler warning.
11767 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
11769         * frameset.el (frameset-p): Add autoload cookie.
11770         (frameset--jump-to-register): New function, based on code moved from
11771         register.el.
11772         (frameset-to-register): Move from register.el.  Adapt to `registerv'.
11774         * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
11775         (frameset-restore, frameset-save, frameset-session-filter-alist):
11776         Remove declarations.
11777         (register-alist): Doc fix.
11778         (frameset-to-register): Move to frameset.el.
11779         (jump-to-register, describe-register-1): Remove frameset-specific code.
11781 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
11783         * allout-widgets.el (allout-widgets-pre-command-business)
11784         (allout-widgets-post-command-business)
11785         (allout-widgets-after-change-handler)
11786         (allout-decorate-item-and-context, allout-set-boundary-marker)
11787         (allout-body-modification-handler)
11788         (allout-graphics-modification-handler): Mark ignored arguments.
11789         (allout-widgets-post-command-business)
11790         (allout-widgets-exposure-change-processor)
11791         (allout-widgets-exposure-undo-processor)
11792         (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
11793         (allout-parse-item-at-point, allout-decorate-item-guides)
11794         (allout-decorate-item-cue, allout-item-span): Remove unused variables.
11795         * allout.el (epa-passphrase-callback-function): Declare.
11796         (allout-overlay-insert-in-front-handler)
11797         (allout-overlay-interior-modification-handler)
11798         (allout-isearch-end-handler, allout-chart-siblings)
11799         (allout-up-current-level, allout-end-of-level, allout-reindent-body)
11800         (allout-yank-processing, allout-process-exposed)
11801         (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
11802         (allout-latex-verbatim-quote-curr-line): Remove unused variables.
11803         * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
11804         (lisp-indent-defform): Mark ignored arguments.
11805         (lisp-indent-line): Mark ignored arguments.  Remove unused variables.
11806         (calculate-lisp-indent): Remove unused variables.
11807         * international/characters.el (indian-2-column, arabic-2-column)
11808         (tibetan): Mark ignored arguments.
11809         (use-cjk-char-width-table): Mark ignored arguments.
11810         Remove unused variables.
11811         * international/fontset.el (build-default-fontset-data)
11812         (x-compose-font-name, create-fontset-from-fontset-spec):
11813         Mark ignored arguments.
11814         (fontset-plain-name): Remove unused variables.
11815         * international/mule.el (charset-id, charset-bytes, generic-char-p)
11816         (keyboard-coding-system): Mark ignored arguments.
11817         (find-auto-coding): Remove unused variables.  Use `ignore-errors'.
11818         * help.el (resize-temp-buffer-window):
11819         * window.el (display-buffer-in-major-side-window)
11820         (display-buffer-in-side-window, display-buffer-in-previous-window):
11821         Remove unused variables.
11822         * isearch.el (isearch-forward-symbol):
11823         * version.el (emacs-bzr-version-bzr):
11824         * international/mule-cmds.el (current-language-environment):
11825         * term/common-win.el (x-handle-iconic, x-handle-geometry)
11826         (x-handle-display):
11827         * term/pc-win.el (x-list-fonts, x-display-planes)
11828         (x-display-color-cells, x-server-max-request-size, x-server-vendor)
11829         (x-server-version, x-display-screens, x-display-mm-height)
11830         (x-display-mm-width, x-display-backing-store, x-display-visual-class)
11831         (x-selection-owner-p, x-own-selection-internal)
11832         (x-disown-selection-internal, x-get-selection-internal)
11833         (msdos-initialize-window-system):
11834         * term/tty-colors.el (tty-color-alist, tty-color-clear):
11835         * term/x-win.el (x-handle-no-bitmap-icon):
11836         * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
11837         (vc-default-find-file-hook, vc-default-extra-menu):
11838         Mark ignored arguments.
11840 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11842         * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
11843         break-condition in the context of the debugged code (bug#12685).
11845 2013-08-08  Christopher Schmidt  <christopher@ch.ristopher.com>
11847         * comint.el:
11848         Do not use an overlay to highlight the last prompt.  (Bug#14744)
11849         (comint-mode): Make comint-last-prompt buffer local.
11850         (comint-last-prompt): New variable.
11851         (comint-last-prompt-overlay): Remove.  Superseded by
11852         comint-last-prompt.
11853         (comint-snapshot-last-prompt, comint-output-filter):
11854         Use comint-last-prompt.
11856 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
11858         * frameset.el (frameset-valid-p): Check vector length.  Doc fix.
11859         (frameset-save): Check validity of the resulting frameset.
11861 2013-08-08  Xue Fuqiao  <xfq.free@gmail.com>
11863         * ido.el (ido-record-command): Add doc string.
11865 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
11867         * frameset.el (frameset): Do not disable creation of the default
11868         frameset-p predicate.  Doc fix.
11869         (frameset-valid-p): New function, copied from the old predicate-p.
11870         Add additional checks.
11871         (frameset-restore): Check with frameset-valid-p.
11872         (frameset-p, frameset-version, frameset-timestamp, frameset-app)
11873         (frameset-name, frameset-description, frameset-properties)
11874         (frameset-states): Add docstring.
11875         (frameset-session-filter-alist, frameset-persistent-filter-alist)
11876         (frameset-filter-alist): Doc fixes.
11878 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
11880         * frameset.el (frameset-p, frameset-prop): Doc fixes.
11882 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11884         * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
11885         extracted from byte-compile-callargs-warn and byte-compile-normal-call.
11886         (byte-compile-callargs-warn, byte-compile-function-form): Use it.
11887         (byte-compile-normal-call): Remove obsolescence check.
11889 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
11891         * frameset.el (frameset-restore): Doc fix.
11893         * register.el (frameset-frame-id, frameset-frame-with-id)
11894         (frameset-p, frameset-restore, frameset-save): Declare.
11895         (register-alist): Document framesets.
11896         (frameset-session-filter-alist): Declare.
11897         (frameset-to-register): New function.
11898         (jump-to-register): Implement jumping to framesets.  Doc fix.
11899         (describe-register-1): Describe framesets.
11901         * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
11903 2013-08-07  Juanma Barranquero  <lekktu@gmail.com>
11905         * desktop.el (desktop-save-frameset): Use new frameset-save args.
11906         Use lexical-binding.
11908         * frameset.el (frameset): Use type vector, not list (incompatible
11909         change).  Do not declare a new constructor, use the default one.
11910         Upgrade suggested properties `app', `name' and `desc' to slots `app',
11911         `name' and `description', respectively, and add read-only slot
11912         `timestamp'.  Doc fixes.
11913         (frameset-copy, frameset-persistent-filter-alist)
11914         (frameset-filter-alist, frameset-switch-to-gui-p)
11915         (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
11916         (frameset-filter-sanitize-color, frameset-filter-minibuffer)
11917         (frameset-filter-iconified, frameset-keep-original-display-p):
11918         Doc fixes.
11919         (frameset-filter-shelve-param, frameset-filter-unshelve-param):
11920         Rename from frameset-filter-(save|restore)-param.  All callers changed.
11921         Doc fix.
11922         (frameset-p): Adapt to change to vector and be more thorough.
11923         Change arg name to OBJECT.  Doc fix.
11924         (frameset-prop): Rename arg PROP to PROPERTY.  Doc fix.
11925         (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
11926         All callers changed.
11927         (frameset-frame-with-id): Rename from frameset-locate-frame-id.
11928         All callers changed.
11929         (frameset--record-minibuffer-relationships): Rename from
11930         frameset--process-minibuffer-frames.  All callers changed.
11931         (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
11932         Use new default constructor (again).  Doc fix.
11933         (frameset--find-frame-if): Rename from `frameset--find-frame'.
11934         All callers changed.
11935         (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
11936         (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
11937         Doc fix.
11938         (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
11939         PARAMETERS and WINDOW-STATE, respectively.
11940         (frameset-restore): Add new keyword argument PREDICATE.
11941         Reset frameset--target-display to nil.  Doc fix.
11943 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11945         * progmodes/bat-mode.el (bat--syntax-propertize): New var.
11946         (bat-mode): Use it.
11947         (bat-mode-syntax-table): Mark \n as end-of-comment.
11948         (bat-font-lock-keywords): Remove comment rule.
11950         * progmodes/bat-mode.el: Rename from dos.el.  Use "bat-" prefix.
11951         (dos-mode-help): Remove.  Use describe-mode (C-h m) instead.
11953         * emacs-lisp/bytecomp.el: Check existence of f in #'f.
11954         (byte-compile-callargs-warn): Use `push'.
11955         (byte-compile-arglist-warn): Ignore higher-order "calls".
11956         (byte-compile-file-form-autoload): Use `pcase'.
11957         (byte-compile-function-form): If quoting a symbol, check that it exists.
11959 2013-08-07  Eli Zaretskii  <eliz@gnu.org>
11961         * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
11962         and add a few popular commands found in batch files.
11963         (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
11964         (dos-mode): Doc fixes.
11966 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11968         * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
11969         (dos-mode): Use setq-local.  Add space after "rem".
11970         (dos-mode-syntax-table): Don't use "w" for symbol chars.
11971         (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
11973 2013-08-07  Arni Magnusson  <arnima@hafro.is>
11975         * progmodes/dos.el: New file.
11976         * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
11977         dos-mode.
11979 2013-08-06  Glenn Morris  <rgm@gnu.org>
11981         * calendar/calendar.el: Add new faces, and day-header-array.
11982         (calendar-weekday-header, calendar-weekend-header)
11983         (calendar-month-header): New faces.
11984         (calendar-day-header-construct): New function.
11985         (calendar-day-header-width): Also :set calendar-day-header-array.
11986         (calendar-american-month-header, calendar-european-month-header)
11987         (calendar-iso-month-header): Use calendar- faces.
11988         (calendar-generate-month):
11989         Use calendar-day-header-array for day headers; apply faces to them.
11990         (calendar-mode): Check calendar-font-lock-keywords non-nil.
11991         (calendar-abbrev-construct): Add optional maxlen argument.
11992         (calendar-day-name-array): Doc fix.
11993         (calendar-day-name-array, calendar-abbrev-length)
11994         (calendar-day-abbrev-array):
11995         Also :set calendar-day-header-array, and maybe redraw.
11996         (calendar-day-header-array): New option.  (Bug#15007)
11997         (calendar-font-lock-keywords): Set to nil and make obsolete.
11998         (calendar-day-name): Add option to use header array.
12000 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12002         * net/shr.el (shr-render-td): Remove debugging.
12003         (shr-render-td): Make width computation consistent by defaulting
12004         all zero-width columns to 10 characters.  This may not be optimal,
12005         but it's at least consistent.
12006         (shr-make-table-1): Redo last change to fix the real problem in
12007         colspan handling.
12009 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
12011         * files.el (cache-long-line-scans):
12012         Make obsolete alias to `cache-long-scans'.
12014 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
12016         * frameset.el (frameset, frameset-filter-alist)
12017         (frameset-filter-params, frameset-save, frameset--reuse-frame)
12018         (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
12019         (frameset-compute-pos): Rename from frameset--compute-pos,
12020         and add docstring.
12021         (frameset-move-onscreen): Use frameset-compute-pos.
12022         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
12024         * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
12025         Fix typos in docstrings.
12027 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
12029         * frame.el (get-other-frame): Tiny cleanup.
12031 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
12033         * vc/vc.el (vc-default-ignore-completion-table):
12034         Silence byte-compiler warning.
12036         * frameset.el (frameset-p): Don't check non-nullness of the `properties'
12037         slot, which can indeed be nil.
12038         (frameset-live-filter-alist, frameset-persistent-filter-alist):
12039         Move entry for `left' from persistent to live filter alist.
12040         (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
12041         Doc fixes.
12042         (frameset-filter-params): When restoring a frame, copy items added to
12043         `filtered', to avoid unwittingly modifying the original parameters.
12044         (frameset-move-onscreen): Rename from frameset--move-onscreen.  Doc fix.
12045         (frameset--restore-frame): Fix reference to frameset-move-onscreen.
12047         * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
12048         to use looking-at-p instead of looking-at.  (Bug#15028)
12050 2013-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12052         Revert introduction of isearch-filter-predicates (bug#14714).
12053         Rely on add-function instead.
12054         * isearch.el (isearch-filter-predicates): Rename it back to
12055         isearch-filter-predicate.
12056         (isearch-message-prefix): Use advice-function-mapc and advice
12057         properties to get the isearch-message-prefix.
12058         (isearch-search, isearch-lazy-highlight-search): Revert to funcall
12059         instead of run-hook-with-args-until-failure.
12060         (isearch-filter-visible): Not obsolete any more.
12061         * loadup.el: Preload nadvice.
12062         * replace.el (perform-replace): Revert to funcall
12063         instead of run-hook-with-args-until-failure.
12064         * wdired.el (wdired-change-to-wdired-mode): Use add-function.
12065         * dired-aux.el (dired-isearch-filenames-mode): Rename from
12066         dired-isearch-filenames-toggle; make it into a proper minor mode.
12067         Use add/remove-function.
12068         (dired-isearch-filenames-setup, dired-isearch-filenames-end):
12069         Call the minor-mode rather than add/remove-hook.
12070         (dired-isearch-filter-filenames):
12071         Remove isearch-message-prefix property.
12072         * info.el (Info--search-loop): New function, extracted from Info-search.
12073         Funcall isearch-filter-predicate instead of
12074         run-hook-with-args-until-failure isearch-filter-predicates.
12075         (Info-search): Use it.
12076         (Info-mode): Use isearch-filter-predicate instead of
12077         isearch-filter-predicates.
12079 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
12081         Do not call to `selected-window' where it is assumed by default.
12082         Affected functions are `window-minibuffer-p', `window-dedicated-p',
12083         `window-hscroll', `window-width', `window-height', `window-buffer',
12084         `window-frame', `window-start', `window-point', `next-window'
12085         and `window-display-table'.
12086         * abbrev.el (abbrev--default-expand):
12087         * bs.el (bs--show-with-configuration):
12088         * buff-menu.el (Buffer-menu-mouse-select):
12089         * calc/calc.el (calc):
12090         * calendar/calendar.el (calendar-generate-window):
12091         * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
12092         (diary-make-entry):
12093         * comint.el (send-invisible, comint-dynamic-complete-filename)
12094         (comint-dynamic-simple-complete, comint-dynamic-list-completions):
12095         * completion.el (complete):
12096         * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
12097         * disp-table.el (describe-current-display-table):
12098         * doc-view.el (doc-view-insert-image):
12099         * ebuff-menu.el (Electric-buffer-menu-mouse-select):
12100         * ehelp.el (with-electric-help):
12101         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12102         * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
12103         * emacs-lisp/helper.el (Helper-help-scroller):
12104         * emulation/cua-base.el (cua--post-command-handler-1):
12105         * eshell/esh-mode.el (eshell-output-filter):
12106         * ffap.el (ffap-gnus-wrapper):
12107         * help-macro.el (make-help-screen):
12108         * hilit-chg.el (highlight-compare-buffers):
12109         * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
12110         * hl-line.el (global-hl-line-highlight):
12111         * icomplete.el (icomplete-simple-completing-p):
12112         * isearch.el (isearch-done):
12113         * jit-lock.el (jit-lock-stealth-fontify):
12114         * mail/rmailsum.el (rmail-summary-scroll-msg-up):
12115         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
12116         * mpc.el (mpc-tagbrowser, mpc):
12117         * net/rcirc.el (rcirc-any-buffer):
12118         * play/gomoku.el (gomoku-max-width, gomoku-max-height):
12119         * play/landmark.el (landmark-max-width, landmark-max-height):
12120         * play/zone.el (zone):
12121         * progmodes/compile.el (compilation-goto-locus):
12122         * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
12123         * progmodes/etags.el (find-tag-other-window):
12124         * progmodes/fortran.el (fortran-column-ruler):
12125         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
12126         * progmodes/verilog-mode.el (verilog-point-text):
12127         * reposition.el (reposition-window):
12128         * rot13.el (toggle-rot13-mode):
12129         * server.el (server-switch-buffer):
12130         * shell.el (shell-dynamic-complete-command)
12131         (shell-dynamic-complete-environment-variable):
12132         * simple.el (insert-buffer, set-selective-display)
12133         (delete-completion-window):
12134         * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
12135         (speedbar-recenter):
12136         * startup.el (fancy-splash-head):
12137         * textmodes/ispell.el (ispell-command-loop):
12138         * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
12139         * tutorial.el (help-with-tutorial):
12140         * vc/add-log.el (add-change-log-entry):
12141         * vc/compare-w.el (compare-windows):
12142         * vc/ediff-help.el (ediff-indent-help-message):
12143         * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
12144         * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
12145         (ediff-setup-control-frame):
12146         * vc/emerge.el (emerge-position-region):
12147         * vc/pcvs-util.el (cvs-bury-buffer):
12148         * window.el (walk-windows, mouse-autoselect-window-select):
12149         * winner.el (winner-set-conf, winner-undo): Related users changed.
12151 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
12153         * frameset.el (frameset--set-id): Doc fix.
12154         (frameset-frame-id, frameset-frame-id-equal-p)
12155         (frameset-locate-frame-id): New functions.
12156         (frameset--process-minibuffer-frames, frameset--reuse-frame)
12157         (frameset-restore): Use them.
12159 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
12161         Do not call to `selected-frame' where it is assumed by default.
12162         Affected functions are `raise-frame', `redraw-frame',
12163         `frame-first-window', `frame-terminal' and `delete-frame'.
12164         * calendar/appt.el (appt-disp-window):
12165         * epg.el (epg-wait-for-completion):
12166         * follow.el (follow-delete-other-windows-and-split)
12167         (follow-avoid-tail-recenter):
12168         * international/mule.el (set-terminal-coding-system):
12169         * mail/rmail.el (rmail-mail-return):
12170         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
12171         * progmodes/f90.el (f90-add-imenu-menu):
12172         * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
12173         * server.el (server-switch-buffer):
12174         * simple.el (delete-completion-window):
12175         * talk.el (talk):
12176         * term/xterm.el (terminal-init-xterm-modify-other-keys)
12177         (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
12178         * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
12179         * vc/ediff.el (ediff-documentation): Related users changed.
12180         * frame.el (selected-terminal): Remove the leftover.
12182 2013-08-05  Glenn Morris  <rgm@gnu.org>
12184         * calendar/calendar.el (calendar-generate-month):
12185         Fix for calendar-column-width != 1 + calendar-day-digit-width.
12186         (calendar-generate-month, calendar-font-lock-keywords):
12187         Fix for calendar-day-header-width > length of any day name.
12189 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
12191         * desktop.el (desktop-clear): Use new name of sort predicate.
12193         * frameset.el (frameset): Add docstring.  Move :version property to its
12194         own `version' slot.
12195         (frameset-copy): Rename from copy-frameset.
12196         (frameset-p): Check more thoroughly.
12197         (frameset-prop): Do not check for :version, which is no longer a prop.
12198         (frameset-live-filter-alist, frameset-persistent-filter-alist):
12199         Use new :never value instead of t.
12200         (frameset-filter-alist): Expand and clarify docstring.
12201         (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
12202         (frameset-filter-minibuffer, frameset-filter-save-param)
12203         (frameset-filter-restore-param, frameset-filter-iconified):
12204         Add pointer to docstring of frameset-filter-alist.
12205         (frameset-filter-params): Rename filter values to be more meaningful:
12206         :never instead of t, and reverse the meanings of :save and :restore.
12207         (frameset--process-minibuffer-frames): Clarify error message.
12208         (frameset-save): Avoid unnecessary and confusing call to framep.
12209         Use new BOA constructor for framesets.
12210         (frameset--reuse-list): Doc fix.
12211         (frameset--restore-frame): Rename from frameset--get-frame.  Doc fix.
12212         (frameset--minibufferless-last-p): Rename from frameset--sort-states.
12213         (frameset-minibufferless-first-p): Doc fix.
12214         Rename from frameset-sort-frames-for-deletion.
12215         (frameset-restore): Doc fixes.  Use new function names.
12216         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
12218 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
12220         * desktop.el (desktop-restore-forces-onscreen)
12221         (desktop-restore-reuses-frames): Document :keyword constant values.
12222         (desktop-filter-parameters-alist): Remove, now identical to
12223         frameset-filter-alist.
12224         (desktop--filter-tty*): Remove, moved to frameset.el.
12225         (desktop-save-frameset, desktop-restore-frameset):
12226         Do not pass :filters argument.
12228         * frameset.el (frameset-live-filter-alist)
12229         (frameset-persistent-filter-alist): New variables.
12230         (frameset-filter-alist): Use them.  Add autoload cookie.
12231         (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
12232         (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
12233         `frameset--id' (it's supposed to be internal to frameset.el).
12234         (frameset--process-minibuffer-frames): Ditto.  Doc fix.
12235         (frameset--initial-params): New function.
12236         (frameset--get-frame): Use it.  Doc fix.
12237         (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
12238         Accept :all, not 'all.
12239         (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
12240         FORCE-DISPLAY.  Use :keywords for constant arguments to avoid collision
12241         with fbound symbols.  Fix frame id matching, and remove matching ids if
12242         the frame being restored is deleted.  Obey :delete.
12244 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12246         * subr.el (macrop): New function.
12247         (text-clone--maintaining): New var.
12248         (text-clone--maintain): Rename from text-clone-maintain.  Use it
12249         instead of inhibit-modification-hooks.
12251         * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
12252         a proxy, so as handle autoloads and redefinitions of the target.
12253         (advice--defalias-fset, advice-remove): Use advice--symbol-function.
12255         * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
12256         Remove bogus (arrayp . stringp) pair.  Add entries for `vectorp'.
12257         (pcase--mutually-exclusive-p): New function.
12258         (pcase--split-consp): Use it.
12259         (pcase--split-pred): Use it.  Optimize the case where `pat' is a qpat
12260         mutually exclusive with the current predicate.
12262         * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
12263         (edebug-macrop): Remove.  Use `macrop' instead.
12264         * emacs-lisp/advice.el (ad-subr-p): Remove.  Use `subrp' instead.
12265         (ad-macro-p):
12266         * eshell/esh-cmd.el (eshell-macrop):
12267         * apropos.el (apropos-macrop): Remove.  Use `macrop' instead.
12269 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12271         * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
12272         (advice-mapc): New function, using it.
12273         (advice-function-member-p): New function.
12274         (advice--normalize): Store the cdr in advice--saved-rewrite since
12275         that's the part that will be changed.
12276         (advice--symbol-function): New function.
12277         (advice-remove): Handle removal before the function is defined.
12278         Adjust to new advice--saved-rewrite.
12279         (advice-member-p): Use advice-function-member-p and
12280         advice--symbol-function.
12282 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
12284         * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
12285         (frameset-filter-minibuffer): Doc fix.
12286         (frameset-restore): Fix autoload cookie.  Fix typo in docstring.
12287         (frameset--set-id, frameset--process-minibuffer-frames)
12288         (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
12289         (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
12291         * desktop.el (desktop-clear): Only delete frames when called
12292         interactively and desktop-restore-frames is non-nil.  Doc fix.
12293         (desktop-read): Set desktop-saved-frameset to nil.
12295 2013-08-04  Xue Fuqiao  <xfq.free@gmail.com>
12297         * vc/vc.el (vc-ignore): Rewrite.
12298         (vc-default-ignore-completion-table, vc--read-lines)
12299         (vc--add-line, vc--remove-regexp): New functions.
12301         * vc/vc-svn.el (vc-svn-ignore): Doc fix.
12302         (vc-svn-ignore-completion-table): New function.
12304         * vc/vc-hg.el (vc-hg-ignore): Rewrite.
12305         (vc-hg-ignore-completion-table)
12306         (vc-hg-find-ignore-file): New functions.
12308         * vc/vc-git.el (vc-git-ignore): Rewrite.
12309         (vc-git-ignore-completion-table)
12310         (vc-git-find-ignore-file): New functions.
12312         * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
12314         * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
12315         (vc-bzr-ignore-completion-table)
12316         (vc-bzr-find-ignore-file): New functions.
12318 2013-08-03  Juanma Barranquero  <lekktu@gmail.com>
12320         * frameset.el (frameset-prop): New function and setter.
12321         (frameset-save): Do not modify frame list passed by the caller.
12323 2013-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12325         * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
12327 2013-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12329         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
12330         (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
12332         * custom.el (custom-initialize-default, custom-initialize-set)
12333         (custom-initialize-reset, custom-initialize-changed): Affect the
12334         toplevel-default-value (bug#6275, bug#14586).
12335         * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
12336         for bug#6275.
12338 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
12340         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
12341         Add cl-def* expressions.
12343         * frameset.el (frameset-filter-params): Fix order of arguments.
12345 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
12347         Move code related to saving frames to frameset.el.
12348         * desktop.el: Require frameset.
12349         (desktop-restore-frames): Doc fix.
12350         (desktop-restore-reuses-frames): Rename from
12351         desktop-restoring-reuses-frames.
12352         (desktop-saved-frameset): Rename from desktop-saved-frame-states.
12353         (desktop-clear): Clear frames too.
12354         (desktop-filter-parameters-alist): Set from frameset-filter-alist.
12355         (desktop--filter-tty*, desktop-save, desktop-read):
12356         Use frameset functions.
12357         (desktop-before-saving-frames-functions, desktop--filter-*-color)
12358         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
12359         (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
12360         (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
12361         (desktop--process-minibuffer-frames, desktop-save-frames)
12362         (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
12363         (desktop--find-frame, desktop--select-frame, desktop--make-frame)
12364         (desktop--sort-states, desktop-restoring-frames-p)
12365         (desktop-restore-frames): Remove.  Most code moved to frameset.el.
12366         (desktop-restoring-frameset-p, desktop-restore-frameset)
12367         (desktop--check-dont-save, desktop-save-frameset): New functions.
12368         (desktop--app-id): New constant.
12369         (desktop-first-buffer, desktop-buffer-ok-count)
12370         (desktop-buffer-fail-count): Move before first use.
12371         * frameset.el: New file.
12373 2013-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12375         * files.el: Use lexical-binding.
12376         (dir-locals-read-from-file): Remove unused `err' variable.
12377         (hack-dir-local-variables--warned-coding): New var.
12378         (hack-dir-local-variables): Use it to avoid repeated warnings.
12379         (make-backup-file-name--default-function): New function.
12380         (make-backup-file-name-function): Use it as default.
12381         (buffer-stale--default-function): New function.
12382         (buffer-stale-function): Use it as default.
12383         (revert-buffer-insert-file-contents--default-function): New function.
12384         (revert-buffer-insert-file-contents-function): Use it as default.
12385         (insert-directory): Avoid add-to-list.
12387         * autorevert.el (auto-revert-handler): Simplify.
12388         Use buffer-stale--default-function.
12390 2013-08-01  Tassilo Horn  <tsdh@gnu.org>
12392         * speedbar.el (speedbar-query-confirmation-method): Doc fix.
12394         * whitespace.el (whitespace-ensure-local-variables): New function.
12395         (whitespace-cleanup-region): Call it.
12396         (whitespace-turn-on): Call it.
12398 2013-08-01  Michael Albinus  <michael.albinus@gmx.de>
12400         Complete file name handlers.
12402         * net/tramp.el (tramp-handle-set-visited-file-modtime)
12403         (tramp-handle-verify-visited-file-modtime)
12404         (tramp-handle-file-notify-rm-watch): New functions.
12405         (tramp-call-process): Do not bind `default-directory'.
12407         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
12408         Order alphabetically.
12409         <access-file, add-name-to-file, dired-call-process>:
12410         <dired-compress-file, file-acl, file-notify-rm-watch>:
12411         <file-ownership-preserved-p, file-selinux-context>:
12412         <make-directory-internal, make-symbolic-link, set-file-acl>:
12413         <set-file-selinux-context, set-visited-file-modtime>:
12414         <verify-visited-file-modtime>: Add handler.
12415         (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
12417         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
12418         <file-notify-add-watch, file-notify-rm-watch>:
12419         <set-file-times, set-visited-file-modtime>:
12420         <verify-visited-file-modtime>: Add handler.
12421         (with-tramp-gvfs-error-message)
12422         (tramp-gvfs-handle-set-visited-file-modtime)
12423         (tramp-gvfs-fuse-file-name): Remove.
12424         (tramp-gvfs-handle-file-notify-add-watch)
12425         (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
12426         (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
12428         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
12429         Order alphabetically.
12430         <file-notify-rm-watch>: Use default Tramp handler.
12431         <executable-find>: Remove private handler.
12432         (tramp-do-copy-or-rename-file-out-of-band): Do not bind
12433         `default-directory'.
12434         (tramp-sh-handle-executable-find)
12435         (tramp-sh-handle-file-notify-rm-watch): Remove functions.
12436         (tramp-sh-file-gvfs-monitor-dir-process-filter)
12437         (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
12438         Do not use `format' in `tramp-message'.
12440         * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
12441         <file-notify-rm-watch, set-visited-file-modtime>:
12442         <verify-visited-file-modtime>: Add handler.
12443         (tramp-smb-call-winexe): Do not bind `default-directory'.
12445 2013-08-01  Xue Fuqiao  <xfq.free@gmail.com>
12447         * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
12449 2013-07-31  Dmitry Gutov  <dgutov@yandex.ru>
12451         * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
12452         use it.
12453         (log-view-diff-changeset): Same.
12454         (log-view-diff-common): Call backend command `previous-revision'
12455         to find out the previous revision, in both cases.  Swap the
12456         variables `to' and `fr', so that `fr' usually refers to the
12457         earlier revision (Bug#14989).
12459 2013-07-31  Kan-Ru Chen  <kanru@kanru.info>
12461         * ibuf-ext.el (ibuffer-filter-by-filename):
12462         Make it work with dired buffers too.
12464 2013-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
12466         * emacs-lisp/re-builder.el (reb-color-display-p):
12467         * files.el (save-buffers-kill-terminal):
12468         * net/browse-url.el (browse-url):
12469         * server.el (server-save-buffers-kill-terminal):
12470         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
12471         Prefer nil to selected-frame for the first arg of frame-parameter.
12473 2013-07-31  Xue Fuqiao  <xfq.free@gmail.com>
12475         * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
12477 2013-07-30  Stephen Berman  <stephen.berman@gmx.net>
12479         * minibuffer.el (completion--twq-all): Try and preserve each
12480         completion's case choice (bug#14907).
12482 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12484         * net/network-stream.el (open-network-stream): Mention the new
12485         :nogreeting parameter.
12486         (network-stream-open-starttls): Use the :nogreeting parameter
12487         (bug#14938).
12489         * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
12491         * net/eww.el (eww-setup-buffer): Switching to the buffer seems
12492         more natural than popping.
12494         * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
12495         (shr-urlify): Highlight under mouse.
12497 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
12499         * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
12501         * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
12503         * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'.  Use `*vc*'
12504         buffer for output.
12506         * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'.  Do not assume
12507         point-min==1.  Fix search string.  Fix parentheses missing.
12509         * vc/vc-git.el (vc-git-ignore): Remove `interactive'.  Do not
12510         assume point-min==1.  Fix search string.  Fix parentheses missing.
12512         * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
12514         * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'.  Use `*vc*'
12515         buffer for output.
12517 2013-07-29  Eli Zaretskii  <eliz@gnu.org>
12519         * frame.el (frame-notice-user-settings): Avoid inflooping when the
12520         initial frame is minibuffer-less.  (Bug#14841)
12522 2013-07-29  Michael Albinus  <michael.albinus@gmx.de>
12524         * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
12525         option.
12527         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
12528         (tramp-maybe-open-connection): Use it.
12530 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
12532         * desktop.el (desktop--make-frame): Include `minibuffer' in the
12533         minimal set of parameters passed when creating a frame, because
12534         the minibuffer status of a frame cannot be changed later.
12536 2013-07-28  Stephen Berman  <stephen.berman@gmx.net>
12538         * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
12539         replace-regexp-in-string and inadvertent omissions in previous change.
12540         (todo-filter-items): Ensure only file names are comma-separated in
12541         name of filtered items buffer.
12543 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
12545         * desktop.el: Optionally force offscreen frames back onscreen.
12546         (desktop-restoring-reuses-frames): New option.
12547         (desktop--compute-pos, desktop--move-onscreen): New functions.
12548         (desktop--make-frame): Use desktop--move-onscreen.
12550 2013-07-27  Alan Mackenzie  <acm@muc.de>
12552         Fontify a Java generic method as a function.
12553         * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
12554         value to t.
12556 2013-07-27  Stephen Berman  <stephen.berman@gmx.net>
12558         * calendar/todo-mode.el: Add command to rename todo files.
12559         (todo-rename-file): New command.
12560         (todo-key-bindings-t): Add key binding for it.  Change the
12561         bindings of todo-filter-regexp-items(-multifile) to use `x'
12562         instead of `r', since the latter is better suited to the new
12563         renaming command.
12565 2013-07-27  Alan Mackenzie  <acm@muc.de>
12567         Make Java try-with-resources statement parse properly.
12568         * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
12569         (c-block-stmt-1-2-key): New language constants/variables.
12570         * progmodes/cc-engine.el (c-beginning-of-statement-1)
12571         (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
12572         * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
12573         with c-block-stmt-1-2-key.
12575 2013-07-27  Juanma Barranquero  <lekktu@gmail.com>
12577         * desktop.el (desktop--make-frame): Apply most frame parameters after
12578         creating the frame to force (partially or totally) offscreen frames to
12579         be restored as such.
12581 2013-07-26  Xue Fuqiao  <xfq.free@gmail.com>
12583         * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
12584         (Bug#14948)
12586 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12588         * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
12589         `base' arg of backtrace-frame.
12591 2013-07-26  Eli Zaretskii  <eliz@gnu.org>
12593         * simple.el (list-processes): Doc fix.
12595 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
12597         * desktop.el (desktop--select-frame):
12598         Try harder to reuse existing frames.
12600 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12602         * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
12603         (edebug-eval): Use backtrace-eval.
12604         (edebug--display, edebug--recursive-edit): Don't let-bind the
12605         edebug-outer-* vars that keep track of variables we locally let-bind.
12606         (edebug-outside-excursion): Don't restore outside values of locally
12607         let-bound vars.
12608         (edebug--display): Use user-error.
12609         (cl-lexical-debug, cl-debug-env): Remove.
12611 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
12613         * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
12614         are restored to be sure that they are visible before deleting any
12615         remaining ones.
12617 2013-07-26  Matthias Meulien  <orontee@gmail.com>
12619         * vc/vc-dir.el (vc-dir-mode-map): Add binding for
12620         vc-print-root-log.  (Bug#14948)
12622 2013-07-26  Richard Stallman  <rms@gnu.org>
12624         Add aliases for encrypting mail.
12625         * epa.el (epa-mail-aliases): New option.
12626         * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
12627         Bind inhibit-read-only so read-only text doesn't ruin everything.
12628         (epa-mail-default-recipients): New subroutine broken out.
12629         Handle epa-mail-aliases.
12631 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12633         Add support for lexical variables to the debugger's `e' command.
12634         * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
12635         vars, except for debugger-outer-match-data.
12636         (debugger-frame-number): Move check for "on a function call" from
12637         callers into it.  Add `skip-base' argument.
12638         (debugger-frame, debugger-frame-clear): Simplify accordingly.
12639         (debugger-env-macro): Only reset the state stored in non-variables,
12640         i.e. current-buffer and match-data.
12641         (debugger-eval-expression): Rewrite using backtrace-eval.
12642         * subr.el (internal--called-interactively-p--get-frame): Remove.
12643         (called-interactively-p):
12644         * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
12645         `base' arg of backtrace-frame instead.
12647 2013-07-26  Glenn Morris  <rgm@gnu.org>
12649         * align.el (align-regexp): Doc fix.  (Bug#14857)
12650         (align-region): Explicit error if subexpression missing/does not match.
12652         * simple.el (global-visual-line-mode):
12653         Do not duplicate the mode lighter.  (Bug#14858)
12655 2013-07-25  Martin Rudalics  <rudalics@gmx.at>
12657         * window.el (display-buffer): In display-buffer bind
12658         split-window-keep-point to t, bug#14829.
12660 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
12662         * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
12663         (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
12664         (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
12665         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
12666         Change accordingly.
12667         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
12668         Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
12670 2013-07-25  Glenn Morris  <rgm@gnu.org>
12672         * dired-x.el (dired-mark-extension): Convert comment to doc string.
12674 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
12676         * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
12677         parameter to modify-frame-parameters if the value has not changed;
12678         this is a workaround for bug#14949.
12679         (desktop--make-frame): On cl-delete-if call, check parameter name,
12680         not full parameter.
12682 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
12684         * vc/vc.el (vc-ignore): New function.
12686         * vc/vc-svn.el (vc-svn-ignore): New function.
12688         * vc/vc-hg.el (vc-hg-ignore): New function.
12690         * vc/vc-git.el (vc-git-ignore): New function.
12692         * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
12693         (vc-dir-ignore): New function.
12695         * vc/vc-cvs.el (vc-cvs-ignore): New function.
12696         (cvs-append-to-ignore): Move here from pcvs.el.
12698         * vc/vc-bzr.el (vc-bzr-ignore): New function.
12700         * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
12702 2013-07-24  Juanma Barranquero  <lekktu@gmail.com>
12704         * desktop.el (desktop-restoring-frames-p): Return a true boolean.
12705         (desktop-restore-frames): Warn when deleting an existing frame failed.
12707 2013-07-24  Glenn Morris  <rgm@gnu.org>
12709         * ffap.el (ffap-machine-p): Handle "not known" response.  (Bug#14929)
12711 2013-07-24  Michael Albinus  <michael.albinus@gmx.de>
12713         * filenotify.el (file-notify-supported-p):
12714         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
12715         Remove functions.
12717         * autorevert.el (auto-revert-use-notify)
12718         (auto-revert-notify-add-watch):
12719         * net/tramp.el (tramp-file-name-for-operation):
12720         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
12721         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12722         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
12723         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12724         Remove `file-notify-supported-p' entry.
12726 2013-07-24  Glenn Morris  <rgm@gnu.org>
12728         * printing.el: Replace all uses of deleted ps-windows-system,
12729         ps-lp-system, ps-flatten-list with lpr- versions.
12731 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12733         * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
12734         checked with memq (bug#14935).
12736         * files.el (revert-buffer-function): Use a non-nil default.
12737         (revert-buffer-preserve-modes): Declare var to
12738         provide access to the `preserve-modes' argument.
12739         (revert-buffer): Let-bind it.
12740         (revert-buffer--default): New function, extracted from revert-buffer.
12742 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12744         * lpr.el: Signal print errors more prominently.
12745         (print-region-function): Don't default to nil.
12746         (lpr-print-region): New function, extracted from print-region-1.
12747         Check lpr's return value and signal an error in case of problem.
12748         (print-region-1): Use it.
12749         * ps-print.el (ps-windows-system, ps-lp-system): Remove.  Use the lpr-*
12750         versions instead.
12751         (ps-printer-name): Default to nil.
12752         (ps-printer-name-option): Default to lpr-printer-switch.
12753         (ps-print-region-function): Don't default to nil.
12754         (ps-postscript-code-directory): Simplify default.
12755         (ps-do-despool): Use lpr-print-region to properly check the outcome.
12756         (ps-string-list, ps-eval-switch, ps-flatten-list)
12757         (ps-flatten-list-1): Remove.
12758         (ps-multibyte-buffer): Avoid setq.
12759         * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
12760         (print-region-function, ps-print-region-function): Don't set them here.
12762 2013-07-24  Xue Fuqiao  <xfq.free@gmail.com>
12764         * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
12765         (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
12766         (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
12767         (ido-decorations): Doc fix.
12769         * ansi-color.el: Fix old URL.
12771 2013-07-23  Michael R. Mauger  <michael@mauger.com>
12773         * progmodes/sql.el: Version 3.3
12774         (sql-product-alist): Improve oracle :prompt-cont-regexp.
12775         (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
12776         (sql-interactive-remove-continuation-prompt): Rewrite, use
12777         functions above.  Fix continuation prompt and complete output line
12778         handling.
12779         (sql-redirect-one, sql-execute): Use `read-only-mode' on
12780         redirected output buffer.
12781         (sql-mode): Restore deleted code (Bug#13591).
12783 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
12785         * desktop.el (desktop-clear, desktop-list*): Fix previous change.
12787 2013-07-23  Michael Albinus  <michael.albinus@gmx.de>
12789         * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
12791         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
12792         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12793         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
12795 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
12797         * desktop.el (desktop-clear): Simplify; remove useless checks
12798         against invalid buffer names.
12799         (desktop-list*): Use cl-list*.
12800         (desktop-buffer-info, desktop-create-buffer): Simplify.
12802 2013-07-23  Leo Liu  <sdl.web@gmail.com>
12804         * bookmark.el (bookmark-make-record): Restore NAME as a default
12805         value.  (Bug#14933)
12807 2013-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12809         * emacs-lisp/autoload.el (autoload--setup-output): New function,
12810         extracted from autoload--insert-text.
12811         (autoload--insert-text): Remove.
12812         (autoload--print-cookie-text): New function, extracted from
12813         autoload--insert-cookie-text.
12814         (autoload--insert-cookie-text): Remove.
12815         (autoload-generate-file-autoloads): Adjust calls accordingly.
12817         * winner.el (winner-hook-installed-p): Remove.
12818         (winner-mode): Simplify accordingly.
12820         * subr.el (add-to-list): Fix compiler-macro when `append' is
12821         not constant.  Don't use `cl-member' for the base case.
12823         * progmodes/subword.el: Fix boundary case (bug#13758).
12824         (subword-forward-regexp): Make it a constant.  Wrap optional \\W in its
12825         own group.
12826         (subword-backward-regexp): Make it a constant.
12827         (subword-forward-internal): Don't treat a trailing capital as the
12828         beginning of a word.
12830 2013-07-22  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
12832         * emacs-lisp/package.el (package-menu-mode): Don't modify the
12833         global value of tabulated-list-revert-hook (bug#14930).
12835 2013-07-22  Juanma Barranquero  <lekktu@gmail.com>
12837         * desktop.el: Require 'cl-lib.
12838         (desktop-before-saving-frames-functions): New hook.
12839         (desktop--process-minibuffer-frames): Set desktop-mini parameter only
12840         for frames being saved.  Rename from desktop--save-minibuffer-frames.
12841         (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
12842         Do not save frames with non-nil `desktop-dont-save' parameter.
12843         Filter out deleted frames.
12844         (desktop--find-frame): Use cl-find-if.
12845         (desktop--select-frame): Use cl-(first|second|third) to access values
12846         of desktop-mini.
12847         (desktop--make-frame): Use cl-delete-if.
12848         (desktop--sort-states): Fix sorting of minibuffer-owning frames.
12849         (desktop-restore-frames): Use cl-(first|second|third) to access values
12850         of desktop-mini.  Look for visible frame at the end, not while
12851         restoring frames.
12853         * dired-x.el (dired-mark-unmarked-files, dired-virtual)
12854         (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
12855         Use string-match-p, looking-at-p (bug#14927).
12857 2013-07-21  Juanma Barranquero  <lekktu@gmail.com>
12859         * desktop.el (desktop-saved-frame-states):
12860         Rename from desktop--saved-states; all users changed.
12861         (desktop-save-frames): Rename from desktop--save-frames.
12862         Do not save state to desktop file.
12863         (desktop-save): Save desktop-saved-frame-states to desktop file
12864         and reset to nil.
12865         (desktop-restoring-frames-p): New function.
12866         (desktop-restore-frames): Use it.  Rename from desktop--restore-frames.
12867         (desktop-read): Use desktop-restoring-frames-p.  Do not try to fix
12868         buffer-lists when restoring frames.  Suggested by Martin Rudalics.
12870         * desktop.el: Correctly restore iconified frames.
12871         (desktop--filter-iconified-position): New function.
12872         (desktop-filter-parameters-alist): Add entries for `top' and `left'.
12874 2013-07-20  Glenn Morris  <rgm@gnu.org>
12876         * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
12877         Let `message' do the formatting.
12878         (def-gdb-preempt-display-buffer): Add explicit format.
12880         * image-dired.el (image-dired-track-original-file):
12881         Use with-current-buffer.
12882         (image-dired-track-thumbnail): Use with-current-buffer.
12883         Avoid changing point of wrong window.
12885         * image-dired.el (image-dired-track-original-file):
12886         Avoid changing point of wrong window.  (Bug#14909)
12888 2013-07-20  Richard Copley  <rcopley@gmail.com>  (tiny change)
12890         * progmodes/gdb-mi.el (gdb-done-or-error):
12891         Guard against "%" in gdb output.  (Bug#14127)
12893 2013-07-20  Andreas Schwab  <schwab@linux-m68k.org>
12895         * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
12896         (Bug#14826)
12898         * international/mule.el (coding-system-iso-2022-flags): Fix last
12899         change.
12901 2013-07-20  Kenichi Handa  <handa@gnu.org>
12903         * international/mule.el (coding-system-iso-2022-flags):
12904         Add `8-bit-level-4'.  (Bug#8522)
12906 2013-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12908         * net/shr.el (shr-mouse-browse-url): New command and keystroke
12909         (bug#14815).
12911         * net/eww.el (eww-process-text-input): Allow inputting when the
12912         point is at the start of the line, as the properties aren't
12913         front-sticky.
12915         * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
12916         degenerate widths.
12918 2013-07-19  Richard Stallman  <rms@gnu.org>
12920         * epa.el (epa-popup-info-window): Doc fix.
12922         * subr.el (split-string): New arg TRIM.
12924 2013-07-18  Juanma Barranquero  <lekktu@gmail.com>
12926         * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
12927         Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
12929 2013-07-18  Michael Albinus  <michael.albinus@gmx.de>
12931         * filenotify.el (file-notify--library): Rename from
12932         `file-notify-support'.  Do not autoload.  Adapt all uses.
12933         (file-notify-supported-p): New defun.
12935         * autorevert.el (auto-revert-use-notify):
12936         Use `file-notify-supported-p' instead of `file-notify-support'.
12937         Adapt docstring.
12938         (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
12940         * net/tramp.el (tramp-file-name-for-operation):
12941         Add `file-notify-supported-p'.
12943         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
12944         New defun.
12945         (tramp-sh-file-name-handler-alist): Add it as handler for
12946         `file-notify-supported-p '.
12948         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
12949         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12950         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12951         Add `ignore' as handler for `file-notify-*' functions.
12953 2013-07-17  Eli Zaretskii  <eliz@gnu.org>
12955         * simple.el (line-move-partial, line-move): Don't start vscroll or
12956         scroll-up if the current line is not taller than the window.
12957         (Bug#14881)
12959 2013-07-16  Dmitry Gutov  <dgutov@yandex.ru>
12961         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
12962         highlight question marks in the method names as strings.
12963         (ruby-block-beg-keywords): Inline.
12964         (ruby-font-lock-keyword-beg-re): Extract from
12965         `ruby-font-lock-keywords'.
12967 2013-07-16  Jan Djärv  <jan.h.d@swipnet.se>
12969         * frame.el (blink-cursor-blinks): New defcustom.
12970         (blink-cursor-blinks-done): New defvar.
12971         (blink-cursor-start): Set blink-cursor-blinks-done to 1.
12972         (blink-cursor-timer-function): Check if number of blinks has been
12973         done on X and NS.
12974         (blink-cursor-suspend, blink-cursor-check): New defuns.
12976 2013-07-15  Glenn Morris  <rgm@gnu.org>
12978         * edmacro.el (edmacro-format-keys): Fix previous change.
12980 2013-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12982         * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
12983         The hack didn't work outside English locales anyway.
12985 2013-07-15  Juanma Barranquero  <lekktu@gmail.com>
12987         * simple.el (define-alternatives): Rename from alternatives-define,
12988         per RMS' suggestion.
12990 2013-07-14  Juanma Barranquero  <lekktu@gmail.com>
12992         * desktop.el (desktop-restore-frames): Change default to t.
12993         (desktop-restore-in-current-display): Now offer more options.
12994         (desktop-restoring-reuses-frames): New customization option.
12995         (desktop--saved-states): Doc fix.
12996         (desktop-filter-parameters-alist): New variable, renamed and expanded
12997         from desktop--excluded-frame-parameters.
12998         (desktop--target-display): New variable.
12999         (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
13000         (desktop--filter-tty*, desktop--filter-*-color)
13001         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
13002         (desktop--filter-save-desktop-parm)
13003         (desktop-restore-in-original-display-p): New functions.
13004         (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
13005         (desktop--save-minibuffer-frames): New function, inspired by a similar
13006         function from Martin Rudalics.
13007         (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
13008         (desktop--restore-in-this-display-p): Remove.
13009         (desktop--find-frame): Rename from desktop--find-frame-in-display
13010         and add predicate argument.
13011         (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
13012         (desktop--reuse-list): New variable.
13013         (desktop--select-frame, desktop--make-frame, desktop--sort-states):
13014         New functions.
13015         (desktop--restore-frames): Add support for "minibuffer-special" frames.
13017 2013-07-14  Michael Albinus  <michael.albinus@gmx.de>
13019         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
13021 2013-07-13  Dmitry Gutov  <dgutov@yandex.ru>
13023         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
13024         Highlight conversion methods on Kernel.
13026 2013-07-13  Alan Mackenzie  <acm@muc.de>
13028         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
13029         and comment it out.  This out-commenting enables certain C++
13030         declarations to be parsed correctly.
13032 2013-07-13  Eli Zaretskii  <eliz@gnu.org>
13034         * international/mule.el (define-coding-system): Doc fix.
13036         * simple.el (default-font-height): Don't call font-info if the
13037         frame's default font didn't change since the frame was created.
13038         (Bug#14838)
13040 2013-07-13  Leo Liu  <sdl.web@gmail.com>
13042         * ido.el (ido-read-file-name): Guard against non-symbol value.
13044 2013-07-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13046         * progmodes/python.el (python-imenu--build-tree): Fix corner case
13047         in nested defuns.
13049 2013-07-13  Leo Liu  <sdl.web@gmail.com>
13051         * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
13052         ido-set-matches call.  (Bug#6852)
13054 2013-07-12  Dmitry Gutov  <dgutov@yandex.ru>
13056         * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
13057         (ruby-syntax-expansion-allowed-p): Support array of symbols, for
13058         Ruby 2.0.
13059         (ruby-font-lock-keywords): Distinguish calls to functions with
13060         module-like names from module references.  Highlight character
13061         literals.
13063 2013-07-12  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
13065         * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
13066         (gdb-send): Handle continued commands.  (Bug#14847)
13068 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
13070         * desktop.el (desktop--v2s): Remove unused local variable.
13071         (desktop-save-buffer): Make defvar-local; adjust docstring.
13072         (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
13073         (desktop-clear, desktop-save-buffer-p): Use string-match-p.
13075 2013-07-12  Andreas Schwab  <schwab@linux-m68k.org>
13077         * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
13079 2013-07-12  Eli Zaretskii  <eliz@gnu.org>
13081         * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
13082         (Bug#14842)
13084 2013-07-12  Glenn Morris  <rgm@gnu.org>
13086         * doc-view.el: Require cl-lib at runtime too.
13087         (doc-view-remove-if): Remove.
13088         (doc-view-search-next-match, doc-view-search-previous-match):
13089         Use cl-remove-if.
13091         * edmacro.el: Require cl-lib at runtime too.
13092         (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
13093         (edmacro-mismatch, edmacro-subseq): Remove.
13095         * shadowfile.el: Require cl-lib.
13096         (shadow-remove-if): Remove.
13097         (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
13098         Use cl-remove-if.
13100         * wid-edit.el: Require cl-lib.
13101         (widget-choose): Use cl-remove-if.
13102         (widget-remove-if): Remove.
13104         * progmodes/ebrowse.el: Require cl-lib at runtime too.
13105         (ebrowse-delete-if-not): Remove.
13106         (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
13107         (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
13108         Use cl-delete-if-not.
13110 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
13112         * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
13113         (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
13115 2013-07-12  Leo Liu  <sdl.web@gmail.com>
13117         * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)
13119 2013-07-11  Glenn Morris  <rgm@gnu.org>
13121         * emacs-lisp/edebug.el: Require cl-lib at run-time too.
13122         (edebug-gensym-index, edebug-gensym):
13123         Remove reimplementation of cl-gensym.
13124         (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
13126         * thumbs.el: Require cl-lib at run-time too.
13127         (thumbs-gensym-counter, thumbs-gensym):
13128         Remove reimplementation of cl-gensym.
13129         (thumbs-temp-file): Use cl-gensym.
13131         * emacs-lisp/ert.el: Require cl-lib at runtime too.
13132         (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
13133         (ert--intersection, ert--set-difference, ert--set-difference-eq)
13134         (ert--union, ert--gensym-counter, ert--gensym-counter)
13135         (ert--coerce-to-vector, ert--remove*, ert--string-position)
13136         (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
13137         (ert-make-test-unbound, ert--expand-should-1)
13138         (ert--expand-should, ert--should-error-handle-error)
13139         (should-error, ert--explain-equal-rec)
13140         (ert--plist-difference-explanation, ert-select-tests)
13141         (ert--make-stats, ert--remove-from-list, ert--string-first-line):
13142         Use cl-lib functions rather than reimplementations.
13144 2013-07-11  Michael Albinus  <michael.albinus@gmx.de>
13146         * net/tramp.el (tramp-methods): Extend docstring.
13147         (tramp-connection-timeout): New defcustom.
13148         (tramp-error-with-buffer): Reset timestamp only when appropriate.
13149         (with-tramp-progress-reporter): Simplify.
13150         (tramp-process-actions): Improve messages.
13152         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
13153         * net/tramp-sh.el (tramp-maybe-open-connection):
13154         Use `tramp-connection-timeout'.
13155         (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
13156         (Bug#14808)
13158 2013-07-11  Leo Liu  <sdl.web@gmail.com>
13160         * ido.el (ido-read-file-name): Conform to the requirements of
13161         read-file-name.  (Bug#11861)
13162         (ido-read-directory-name): Conform to the requirements of
13163         read-directory-name.
13165 2013-07-11  Juanma Barranquero  <lekktu@gmail.com>
13167         * subr.el (delay-warning): New function.
13169 2013-07-10  Eli Zaretskii  <eliz@gnu.org>
13171         * simple.el (default-line-height): New function.
13172         (line-move-partial, line-move): Use it instead of computing the
13173         line height inline.
13174         (line-move-partial): Always compute ROWH.  If the last line is
13175         partially-visible, but its text is completely visible, allow
13176         cursor to enter such a partially-visible line.
13178 2013-07-10  Michael Albinus  <michael.albinus@gmx.de>
13180         Improve error messages.  (Bug#14808)
13182         * net/tramp.el (tramp-current-connection): New defvar, moved from
13183         tramp-sh.el.
13184         (tramp-message-show-progress-reporter-message): Remove, not
13185         needed anymore.
13186         (tramp-error-with-buffer): Show message in minibuffer.
13187         Discard input before waiting.  Reset connection timestamp.
13188         (with-tramp-progress-reporter): Improve messages.
13189         (tramp-process-actions): Use progress reporter.  Delete process in
13190         case of error.  Improve messages.
13192         * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
13193         Call `tramp-error-with-buffer' with vector and buffer.
13194         (tramp-current-connection): Remove.
13195         (tramp-maybe-open-connection): The car of
13196         `tramp-current-connection' are the first 3 slots of the vector.
13198 2013-07-10  Teodor Zlatanov  <tzz@lifelogs.com>
13200         * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
13201         inside continued strings.
13203 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
13205         Timestamp fixes for undo (Bug#14824).
13206         * files.el (clear-visited-file-modtime): Move here from fileio.c.
13208 2013-07-10  Leo Liu  <sdl.web@gmail.com>
13210         * files.el (require-final-newline): Allow safe local value.
13211         (Bug#14834)
13213 2013-07-09  Leo Liu  <sdl.web@gmail.com>
13215         * ido.el (ido-read-directory-name): Handle fallback.
13216         (ido-read-file-name): Update DIR to ido-current-directory.
13217         (Bug#1516)
13218         (ido-add-virtual-buffers-to-list): Robustify.  (Bug#14552)
13220 2013-07-09  Dmitry Gutov  <dgutov@yandex.ru>
13222         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
13223         "autoload".  Remove "warn lower camel case" section, previously
13224         commented out.  Highlight negation char.  Do not highlight the
13225         target in singleton method definitions.
13227 2013-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13229         * faces.el (tty-setup-hook): Declare the hook.
13231         * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
13232         and detect when a guard/pred depends on local vars (bug#14773).
13233         (pcase--u1): Adjust caller.
13235 2013-07-08  Eli Zaretskii  <eliz@gnu.org>
13237         * simple.el (line-move-partial, line-move): Account for
13238         line-spacing.
13239         (line-move-partial): Avoid setting vscroll when the last
13240         partially-visible line in window is of default height.
13242 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13244         * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
13245         been used a while.
13247 2013-07-07  Juanma Barranquero  <lekktu@gmail.com>
13249         * subr.el (read-quoted-char): Remove unused local variable `char'.
13251 2013-07-07  Michael Kifer  <kifer@cs.stonybrook.edu>
13253         * vc/ediff.el (ediff-version): Version update.
13254         (ediff-files-command, ediff3-files-command, ediff-merge-command)
13255         (ediff-merge-with-ancestor-command, ediff-directories-command)
13256         (ediff-directories3-command, ediff-merge-directories-command)
13257         (ediff-merge-directories-with-ancestor-command): New functions.
13258         All are command-line interfaces to ediff: to facilitate calling
13259         Emacs with the appropriate ediff functions invoked.
13261         * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
13262         New function.
13263         (viper-save-kill-buffer): Check if buffer is modified.
13265         * emulation/viper.el (viper-version): Version update.
13266         (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
13268 2013-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13270         * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
13271         * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
13272         (viper-intercept-ESC-key): Simplify.
13273         * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
13274         don't use kbd.
13275         * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
13276         (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
13277         (viper-setup-ESC-to-escape): New functions.
13278         (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
13279         (viper-set-hooks): Do not modify flyspell-mode-hook.  (Bug#13793)
13281 2013-07-07  Eli Zaretskii  <eliz@gnu.org>
13283         * simple.el (default-font-height, window-screen-lines):
13284         New functions.
13285         (line-move, line-move-partial): Use them instead of
13286         frame-char-height and window-text-height.  This makes scrolling
13287         text smoother when the buffer's default face uses a font that is
13288         different from the frame's default font.
13290 2013-07-06  Jan Djärv  <jan.h.d@swipnet.se>
13292         * files.el (write-file): Do not display confirm dialog for NS,
13293         it does its own dialog, which can't be canceled (Bug#14578).
13295 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
13297         * simple.el (line-move-partial): Adjust the row returned by
13298         posn-at-point for the current window-vscroll.  (Bug#14567)
13300 2013-07-06  Michael Albinus  <michael.albinus@gmx.de>
13302         * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
13303         (tramp-sh-file-inotifywait-process-filter): Handle file names with
13304         spaces.
13306 2013-07-06  Martin Rudalics  <rudalics@gmx.at>
13308         * window.el (window-state-put-stale-windows): New variable.
13309         (window--state-put-2): Save list of windows without matching buffer.
13310         (window-state-put): Remove "bufferless" windows if possible.
13312 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
13314         * simple.el (alternatives-define): Remove leftover :group keyword.
13315         Tweak docstring.
13317 2013-07-06  Leo Liu  <sdl.web@gmail.com>
13319         * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
13320         (ido-enable-virtual-buffers): New variable.
13321         (ido-buffer-internal, ido-toggle-virtual-buffers)
13322         (ido-make-buffer-list): Use it.
13323         (ido-exhibit): Support turning on and off virtual buffers
13324         automatically.
13326 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
13328         * simple.el (alternatives-define): New macro.
13330 2013-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13332         * subr.el (read-quoted-char): Use read-key.
13333         (sit-for): Let read-event decode tty input (bug#14782).
13335 2013-07-05  Stephen Berman  <stephen.berman@gmx.net>
13337         * calendar/todo-mode.el: Add handling of file deletion, both by
13338         mode command and externally.  Fix various related bugs.
13339         Clarify Commentary and improve some documentation strings and code.
13340         (todo-delete-file): New command.
13341         (todo-check-file): New function.
13342         (todo-show): Handle external deletion of the file we're trying to
13343         show (bug#14688).  Replace called-interactively-p by an optional
13344         prefix argument to avoid problematic interaction with catch form
13345         when byte compiled (bug#14702).
13346         (todo-quit): Handle external deletion of the archive's todo file.
13347         Make sure the buffer that was visiting the archive file is still
13348         live before trying to bury it.
13349         (todo-category-completions): Handle external deletion of any
13350         category completion files.
13351         (todo-jump-to-category, todo-basic-insert-item): Recalculate list
13352         of todo files, in case of external deletion.
13353         (todo-add-file): Replace unnecessary setq by let-binding.
13354         (todo-find-archive): Check whether there are any archives.
13355         Replace unnecessary setq by let-binding.
13356         (todo-archive-done-item): Use find-file-noselect to get the
13357         archive buffer whether or not the archive already exists.
13358         Remove superfluous code.  Use file size instead of buffer-file-name to
13359         check if the archive is new; if it is, update list of archives.
13360         (todo-default-todo-file): Allow nil to be a valid value for when
13361         there are no todo files.
13362         (todo-reevaluate-default-file-defcustom): Use corrected definition
13363         of todo-default-todo-file.
13364         (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
13365         (todo-delete-category, todo-show-categories-table)
13366         (todo-category-number): Clarify comment.
13367         (todo-filter-items): Clarify documentation string.
13368         (todo-show-current-file, todo-display-as-todo-file)
13369         (todo-reset-and-enable-done-separator): Tweak documentation string.
13370         (todo-done-separator): Make separator length window-width, since
13371         bug#2749 is now fixed.
13373 2013-07-05  Michael Albinus  <michael.albinus@gmx.de>
13375         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
13376         Support both "gvfs-monitor-dir" and "inotifywait".
13377         (tramp-sh-file-inotifywait-process-filter): Rename from
13378         `tramp-sh-file-notify-process-filter'.
13379         (tramp-sh-file-gvfs-monitor-dir-process-filter)
13380         (tramp-get-remote-gvfs-monitor-dir): New defuns.
13382 2013-07-05  Leo Liu  <sdl.web@gmail.com>
13384         * autoinsert.el (auto-insert-alist): Default to lexical-binding.
13386 2013-07-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
13388         * frame.el (display-pixel-height, display-pixel-width)
13389         (display-mm-height, display-mm-width): Mention behavior on
13390         multi-monitor setups in docstrings.
13391         (w32-display-monitor-attributes-list): Declare function.
13392         (display-monitor-attributes-list): Use it.
13394 2013-07-04  Michael Albinus  <michael.albinus@gmx.de>
13396         * filenotify.el: New package.
13398         * autorevert.el (top): Require filenotify.el.
13399         (auto-revert-notify-enabled): Remove.  Use `file-notify-support'
13400         instead.
13401         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
13402         (auto-revert-notify-handler): Use `file-notify-*' functions.
13404         * subr.el (file-notify-handle-event): Move function to filenotify.el.
13406         * net/tramp.el (tramp-file-name-for-operation):
13407         Handle `file-notify-add-watch' and `file-notify-rm-watch'.
13409         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
13410         for `file-notify-add-watch' and `file-notify-rm-watch'.
13411         (tramp-process-sentinel): Improve trace.
13412         (tramp-sh-handle-file-notify-add-watch)
13413         (tramp-sh-file-notify-process-filter)
13414         (tramp-sh-handle-file-notify-rm-watch)
13415         (tramp-get-remote-inotifywait): New defuns.
13417 2013-07-03  Juri Linkov  <juri@jurta.org>
13419         * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
13420         call of `occur-read-primary-args' to interactive spec.
13422         * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
13423         `ibuffer-do-occur' like in buff-menu.el.  (Bug#14673)
13425 2013-07-03  Matthias Meulien  <orontee@gmail.com>
13427         * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
13428         `Buffer-menu-multi-occur'.  Add it to the menu.
13429         (Buffer-menu-mode): Document it in docstring.
13430         (Buffer-menu-multi-occur): New command.  (Bug#14673)
13432 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
13434         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
13435         keywords and built-ins.
13437 2013-07-03  Glenn Morris  <rgm@gnu.org>
13439         * subr.el (y-or-n-p): Handle empty prompts.  (Bug#14770)
13441         Make info-xref checks case-sensitive by default
13442         * info.el (Info-find-node, Info-find-in-tag-table)
13443         (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
13444         Add option for exact case matching of nodes.
13445         * info-xref.el (info-xref): New custom group.
13446         (info-xref-case-fold): New option.
13447         (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
13449 2013-07-03  Leo Liu  <sdl.web@gmail.com>
13451         * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
13453 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
13455         * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
13456         middle of block statement initially, lower the depth.  Remove
13457         FIXME comment, not longer valid.  Remove middle of block statement
13458         detection, no need to do that anymore since we've been using
13459         `ruby-parse-region' here.
13461 2013-07-02  Jan Djärv  <jan.h.d@swipnet.se>
13463         * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
13465 2013-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13467         * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
13469 2013-07-01  Juanma Barranquero  <lekktu@gmail.com>
13471         * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
13472         (desktop-restore-in-current-display): New customization option.
13473         (desktop--excluded-frame-parameters): Add `font'.
13474         (desktop--save-frames): Rename from desktop--save-windows.
13475         (desktop--restore-in-this-display-p): New function.
13476         (desktop--make-full-frame): Remove unwanted width/height from
13477         full(width|height) frames.
13478         (desktop--restore-frames): Rename from desktop--restore-windows.
13479         Obey desktop-restore-current-display.  Do not delete old frames or
13480         select a new frame unless we were able to restore at least one frame.
13482 2013-06-30  Michal Nazarewicz  <mina86@mina86.com>
13484         * files.el (find-file-noselect): Simplify conditional expression.
13486         * textmodes/remember.el (remember-append-to-file):
13487         Don't mix `find-buffer-visiting' and `get-file-buffer'.
13489         Add `remember-notes' function to store random notes across Emacs
13490         restarts.
13491         * textmodes/remember.el (remember-data-file): Add :set callback to
13492         affect notes buffer (if any).
13493         (remember-notes): New command.
13494         (remember-notes-buffer-name, bury-remember-notes-on-kill):
13495         New defcustoms for the `remember-notes' function.
13496         (remember-notes-save-and-bury-buffer): New command.
13497         (remember-notes-mode-map): New variable.
13498         (remember-mode): New minor mode.
13499         (remember-notes--kill-buffer-query): New function.
13500         * startup.el (initial-buffer-choice): Add notes to custom type.
13502 2013-06-30  Eli Zaretskii  <eliz@gnu.org>
13504         * bindings.el (right-char, left-char): Don't call sit-for, this is
13505         no longer needed.  Use arithmetic comparison only for numerical
13506         arguments.
13508         * international/mule-cmds.el (select-safe-coding-system):
13509         Handle the case of FROM being a string correctly.  (Bug#14755)
13511 2013-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13513         * net/shr.el (shr-make-table-1): Add a sanity check that allows
13514         progression on degenerate tables.
13515         (shr-rescale-image): ImageMagick animated images currently don't work.
13517 2013-06-30  Juanma Barranquero  <lekktu@gmail.com>
13519         Some fixes and improvements for desktop frame restoration.
13520         It is still experimental and disabled by default.
13521         * desktop.el (desktop--save-windows): Put the selected frame at
13522         the head of the list.
13523         (desktop--make-full-frame): New function.
13524         (desktop--restore-windows): Try to re-select the frame that was
13525         selected upon saving.  Do not abort if some frames fail to restore,
13526         just show an error message and continue.  Set up maximized frames
13527         so they have default non-maximized dimensions.
13529 2013-06-30  Dmitry Gutov  <dgutov@yandex.ru>
13531         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
13532         Don't start heredoc inside a string or comment.
13534 2013-06-29  Eli Zaretskii  <eliz@gnu.org>
13536         * bindings.el (visual-order-cursor-movement): New defcustom.
13537         (right-char, left-char): Provide visual-order cursor motion by
13538         calling move-point-visually.  Update the doc strings.
13540 2013-06-28  Kenichi Handa  <handa@gnu.org>
13542         * international/mule.el (define-coding-system): New coding system
13543         properties :inhibit-null-byte-detection,
13544         :inhibit-iso-escape-detection, and :prefer-utf-8.
13545         (set-buffer-file-coding-system): If :charset-list property of
13546         CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
13547         appropriate for setting.
13549         * international/mule-cmds.el (select-safe-coding-system):
13550         If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
13551         multibyte characters, return utf-8 (or one of its siblings).
13553         * international/mule-conf.el (prefer-utf-8): New coding system.
13554         (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
13555         files.
13557 2013-06-28  Ivan Kanis  <ivan@kanis.fr>
13559         * net/shr.el (shr-render-region): New function.
13561         * net/eww.el: Autoload `eww-browse-url'.
13563 2013-06-27  Dmitry Gutov  <dgutov@yandex.ru>
13565         * emacs-lisp/package-x.el (package-upload-buffer-internal):
13566         Adapt to `package-desc-version' being a list.
13567         Use `package--ac-desc-version' to retrieve version from a package
13568         archive element.
13570 2013-06-27  Juanma Barranquero  <lekktu@gmail.com>
13572         New experimental feature to save&restore window and frame setup.
13573         * desktop.el (desktop-save-windows): New defcustom.
13574         (desktop--saved-states): New var.
13575         (desktop--excluded-frame-parameters): New defconst.
13576         (desktop--filter-frame-parms, desktop--find-frame-in-display)
13577         (desktop--restore-windows, desktop--save-windows): New functions.
13578         (desktop-save): Call `desktop--save-windows'.
13579         (desktop-read): Call `desktop--restore-windows'.
13581 2013-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13583         * net/shr.el (add-face-text-property): Remove compat definition.
13585 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
13587         * info.el (Info-try-follow-nearest-node): Move search for footnote
13588         above search for node name to prevent missing a footnote (bug#14717).
13590 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
13592         * obsolete/otodo-mode.el: Add obsolescence info to file header.
13594 2013-06-27  Leo Liu  <sdl.web@gmail.com>
13596         * net/eww.el (eww-read-bookmarks): Check file size.
13598 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13600         * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
13601         advice--pending if newdef is nil or an autoload (bug#13820).
13602         (advice-mapc): New function.
13604 2013-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13606         * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
13607         probably.
13608         (eww-mode-map): Add a menu bar.
13609         (eww-add-bookmark): New command.
13610         (eww-bookmark-mode): New mode and commands.
13611         (eww-add-bookmark): Remove newlines from the title.
13612         (eww-bookmark-browse): Don't bug out if it's the only window.
13614 2013-06-26  Glenn Morris  <rgm@gnu.org>
13616         * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
13617         (hfy-size): Handle ttys.  (Bug#14668)
13619         * info-xref.el: Update for Texinfo 5 change in *note format.
13620         (info-xref-node-re, info-xref-note-re): New constants.
13621         (info-xref-check-buffer): Use info-xref-note-re.
13623 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13625         * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
13627         * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
13628         nil terminate the loop (bug#14718).
13630 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13632         * net/eww.el: Rework history traversal.  When going forward/back,
13633         put these actions into the history, too, so that they can be
13634         replayed.
13635         (eww-render): Move the history reset to the correct buffer.
13637 2013-06-25  Juri Linkov  <juri@jurta.org>
13639         * files-x.el (modify-dir-local-variable): Change the header comment
13640         in the file with directory local variables.  (Bug#14692)
13642         * files-x.el (read-file-local-variable-value): Add `default'.
13643         (Bug#14710)
13645 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13647         * net/eww.el (eww-make-unique-file-name): Create a unique file
13648         name before saving to entering `y' accidentally asynchronously.
13650 2013-06-25  Ivan Kanis  <ivan@kanis.fr>
13652         * net/eww.el (eww-download): New command and keystroke.
13654 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13656         * net/eww.el (eww-copy-page-url): Change name of command.
13658         * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
13659         be more consistent with Info and dired.
13661         * net/eww.el (eww-mode-map): Ditto.
13663 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13665         * emacs-lisp/package.el: Use lexical-binding.  Include obsolete
13666         packages from archives.
13667         (package-archive-contents): Change format; include obsolete packages.
13668         (package-desc): Use `dir' to mark builtin packages.
13669         (package--from-builtin): Set the `dir' field to `builtin'.
13670         (generated-autoload-file, version-control): Declare.
13671         (package-compute-transaction): Change first arg and return value to be
13672         lists of package-descs.  Adjust to new package-archive-contents format.
13673         (package--add-to-archive-contents): Adjust to new
13674         package-archive-contents format.
13675         (package-download-transaction): Arg is now a list of package-descs.
13676         (package-install): If `pkg' is a package name, pass it as
13677         a requirement, so it is subject to the usual (e.g. disabled) checks.
13678         (describe-package): Accept package-desc as well.
13679         (describe-package-1): Describe a specific package-desc.  Add links to
13680         other package-descs for the same package name.
13681         (package-menu-describe-package): Pass the actual package-desc.
13682         (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
13683         works correctly.
13684         (package-desc-status): New function.
13685         (package-menu--refresh): New function, extracted
13686         from package-menu--generate.
13687         (package-menu--generate): Use it.
13688         (package-delete): Update package-alist.
13689         (package-menu-execute): Don't call package-initialize.
13691         * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
13692         progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
13693         progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
13694         progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
13695         progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
13696         emacs-lisp/cl-macs.el: Neuter the "Version:" header.
13698 2013-06-25  Martin Rudalics  <rudalics@gmx.at>
13700         * window.el (window--state-get-1): Workaround for bug#14527.
13701         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
13703 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13705         * net/eww.el (eww-back-url): Implement the history by stashing all
13706         the data into a list.
13707         (eww-forward-url): Allow going forward in the history, too.
13709 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13711         * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
13712         for values and use read--expression for expressions (bug#14710).
13713         (read-file-local-variable): Avoid setq.
13714         (read-file-local-variable-mode): Use minor-mode-list.
13716 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13718         * textmodes/bibtex.el (bibtex-generate-url-list): Add support
13719         for DOI URLs.
13721 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13723         * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
13724         Update imenu-support when dialect changes.
13726 2013-06-25  Leo Liu  <sdl.web@gmail.com>
13728         * ido.el (ido-read-internal): Allow forward slash on windows.
13730 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13732         * net/eww.el (eww): Start of strings is \\`, not ^.
13734 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
13736         * net/shr.el (shr-browse-url): Fix interactive spec.
13738         * net/eww.el (eww): Add a trailing slash to domain names.
13740 2013-06-24  Juanma Barranquero  <lekktu@gmail.com>
13742         * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
13744 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13746         * net/shr.el (shr-browse-url): Use an external browser if given a
13747         prefix.
13749         * net/eww.el (eww-external-browser): Move to shr.
13751 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
13753         * net/eww.el (eww): Work more correctly for file: URLs.
13754         (eww-detect-charset): Allow quoted charsets.
13755         (eww-yank-page-url): New command and keystroke.
13757 2013-06-24  Daiki Ueno  <ueno@gnu.org>
13759         * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
13760         file name of gpg executable.
13761         (epg-context-program): New function.
13762         (epg-context-home-directory): New function.
13763         (epg-context-set-program): New function.
13764         (epg-context-set-home-directory): New function.
13765         (epg--start): Use `epg-context-program' instead of
13766         'epg-gpg-program'.
13767         (epg--list-keys-1): Likewise.
13769 2013-06-24  Leo Liu  <sdl.web@gmail.com>
13771         * ido.el (ido-read-internal): Fix bug#14620.
13773 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
13775         * faces.el (face-documentation): Simplify.
13776         (read-face-attribute, tty-find-type, x-resolve-font-name):
13777         Use `string-match-p'.
13778         (list-faces-display): Use `string-match-p'.  Simplify.
13779         (face-spec-recalc): Check face to avoid face alias loops.
13780         (read-color): Use `string-match-p' and non-capturing parenthesis.
13782 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13784         * net/shr.el (shr-rescale-image): Use the new
13785         :max-width/:max-height functionality.
13787 2013-06-23  Ivan Kanis  <ivan@kanis.fr>
13789         * net/eww.el (eww-search-prefix): New variable.
13790         (eww): Use it.
13791         (eww-external-browser): New variable.
13792         (eww-mode-map): New keystroke.
13793         (eww-browse-with-external-browser): New command.
13795         * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
13797 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
13799         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
13800         Don't skip aligning the next header field when padding is 0;
13801         otherwise, field width is not respected unless the title is as
13802         wide as the field.
13804 2013-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13806         * emacs-lisp/package.el (package-el-version): Remove.
13807         (package-process-define-package): Fix inf-loop.
13808         (package-install): Allow symbols as arguments again.
13810 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
13812         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
13813         add some more keyword-like methods.
13814         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
13816 2013-06-22  Juanma Barranquero  <lekktu@gmail.com>
13818         * bs.el (bs-buffer-show-mark): Make defvar-local.
13819         (bs-mode): Use setq-local.
13821         * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
13822         (emacs-lock--try-unlocking): Make defvar-local.
13824 2013-06-22  Glenn Morris  <rgm@gnu.org>
13826         * play/cookie1.el (cookie-apropos): Minor simplification.
13828         * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
13830 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
13832         * progmodes/ruby-mode.el (auto-mode-alist): Do not use
13833         `regexp-opt', it breaks the build during dumping.
13835 2013-06-21  Dmitry Gutov  <dgutov@yandex.ru>
13837         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
13838         Highlight keyword-like methods on Kernel and Module with
13839         font-lock-builtin-face.
13840         (auto-mode-alist): Consolidate different entries into one regexp
13841         and add more *file-s.
13843 2013-06-21  Stephen Berman  <stephen.berman@gmx.net>
13845         * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
13847         * calendar/diary-lib.el (diary-goto-entry-function): New variable.
13848         (diary-entry): Use it in the action of this button type instead of
13849         diary-goto-entry.
13851         * calendar/todo-mode.el: New version.
13852         (todo-add-category): Append new category to end of file and give
13853         it the highest number, instead of putting it at the beginning and
13854         giving it 0.  Incorporate noninteractive functionality.
13855         (todo-forward-category): Adapt to 1-based category numbering.
13856         Allow skipping over archived categories.
13857         (todo-backward-category): Derive from todo-forward-category.
13858         (todo-backward-item, todo-forward-item): Make noninteractive and
13859         delegate interactive part to new commands.  Make sensitive to done items.
13860         (todo-categories): Make value an alist of category names and
13861         vectors of item counts.
13862         (todo-category-beg): Make a defconst.
13863         (todo-category-number): Use 1 instead of 0 as initial value.
13864         (todo-category-select): Make sensitive to overlays, optional item
13865         highlighting and done items.
13866         (todo-delete-item): Make sensitive to overlays and marked and done items.
13867         (todo-edit-item): Make sensitive to overlays and editing of
13868         date/time header optional.  Add format checks.
13869         (todo-edit-multiline): Rename to todo-edit-multiline-item.  Make a
13870         no-op if point is not on an item.  Advertise using todo-edit-quit.
13871         (todo-edit-mode): Make sensitive to new format, font-locking, and
13872         multiple todo files.
13873         (todo-insert-item, todo-insert-item-here): Derive from
13874         todo-basic-insert-item and extend functionality.
13875         (todo-item-end, todo-item-start): Make sensitive to done items.
13876         (todo-item-string): Don't return text properties.  Restore point.
13877         (todo-jump-to-category): Make sensitive to multiple todo files and
13878         todo archives.  Use extended category completion.
13879         (todo-lower-item, todo-raise-item): Rename to *-priority and
13880         derive from todo-set-item-priority.
13881         (todo-mode): Derive from special-mode.  Make sensitive to new
13882         format, font-locking and multiple todo files.  Make read-only.
13883         (todo-mode-map): Don't suppress digit keys, so they can supply
13884         prefix arguments.  Add many new key bindings.
13885         (todo-prefix): Insert as an overlay instead of file text.
13886         Change semantics from diary date expression to purely visual mark.
13887         (todo-print): Rename to todo-print-buffer.  Make buffer display
13888         features printable.  Remove option to restrict number of items
13889         printed.  Add option to print to file.
13890         (todo-print-function): Rename to todo-print-buffer-function.
13891         (todo-quit): Extend to handle exiting new todo modes.
13892         (todo-remove-item): Make sensitive to overlays.
13893         (todo-save): Extend to buffers of filtered items.
13894         (todo-show): Make sensitive to done items, multiple todo files and
13895         new todo modes.  Offer to convert legacy todo file before creating
13896         first new todo file.
13897         (todo-show-priorities): Rename to todo-top-priorities.
13898         Change semantics of value 0.
13899         (todo-top-priorities): Rename to todo-filter-top-priorities,
13900         derive from todo-filter-items and extend functionality.
13901         (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
13902         and extend functionality to other types of filtered items.
13903         (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
13904         (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
13905         (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
13906         (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
13907         (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
13908         (todo-edit-mode-hook, todo-entry-prefix-function)
13909         (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
13910         (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
13911         (todo-initials, todo-insert-threshold, todo-item-string-start)
13912         (todo-line-string, todo-menu, todo-mode-hook)
13913         (todo-more-important-p, todo-previous-answer, todo-previous-line)
13914         (todo-print-priorities, todo-remove-separator)
13915         (todo-save-top-priorities-too, todo-string-count-lines)
13916         (todo-string-multiline-p, todo-time-string-format)
13917         (todo-tmp-buffer-name): Remove.
13918         (todo-add-file, todo-archive-done-item, todo-choose-archive)
13919         (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
13920         (todo-edit-category-diary-inclusion)
13921         (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
13922         (todo-edit-file, todo-edit-item-date-day)
13923         (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
13924         (todo-edit-item-date-month, todo-edit-item-date-to-today)
13925         (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
13926         (todo-edit-item-diary-nonmarking, todo-edit-item-header)
13927         (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
13928         (todo-filter-diary-items-multifile, todo-filter-regexp-items)
13929         (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
13930         (todo-filter-top-priorities-multifile, todo-find-archive)
13931         (todo-find-filtered-items-file, todo-go-to-source-item)
13932         (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
13933         (todo-jump-to-archive-category, todo-lower-category)
13934         (todo-mark-category, todo-marked-item-p, todo-merge-category)
13935         (todo-move-category, todo-move-item, todo-next-button)
13936         (todo-next-item, todo-padded-string, todo-powerset)
13937         (todo-previous-button, todo-previous-item)
13938         (todo-print-buffer-to-file, todo-raise-category)
13939         (todo-rename-category, todo-repair-categories-sexp, todo-search)
13940         (todo-set-category-number, todo-set-item-priority)
13941         (todo-set-top-priorities-in-category)
13942         (todo-set-top-priorities-in-file, todo-show-categories-table)
13943         (todo-sort-categories-alphabetically-or-numerically)
13944         (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
13945         (todo-sort-categories-by-done, todo-sort-categories-by-todo)
13946         (todo-toggle-item-header, todo-toggle-item-highlighting)
13947         (todo-toggle-mark-item, todo-toggle-prefix-numbers)
13948         (todo-toggle-view-done-items, todo-toggle-view-done-only)
13949         (todo-unarchive-items, todo-unmark-category): New commands.
13950         (todo-absolute-file-name, todo-add-to-buffer-list)
13951         (todo-adjusted-category-label-length, todo-basic-edit-item-header)
13952         (todo-basic-insert-item, todo-category-completions)
13953         (todo-category-number, todo-category-string-matcher-1)
13954         (todo-category-string-matcher-2, todo-check-filtered-items-file)
13955         (todo-check-format, todo-clear-matches)
13956         (todo-comment-string-matcher, todo-convert-legacy-date-time)
13957         (todo-current-category, todo-date-string-matcher)
13958         (todo-define-insertion-command, todo-diary-expired-matcher)
13959         (todo-diary-goto-entry, todo-diary-item-p)
13960         (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
13961         (todo-display-categories, todo-display-sorted, todo-done-item-p)
13962         (todo-done-item-section-p, todo-done-separator)
13963         (todo-done-string-matcher, todo-files, todo-filter-items)
13964         (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
13965         (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
13966         (todo-insert-category-line, todo-insert-item-from-calendar)
13967         (todo-insert-sort-button, todo-insert-with-overlays)
13968         (todo-insertion-command-name, todo-insertion-key-bindings)
13969         (todo-label-to-key, todo-longest-category-name-length)
13970         (todo-make-categories-list, todo-mode-external-set)
13971         (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
13972         (todo-modes-set-3, todo-multiple-filter-files)
13973         (todo-nondiary-marker-matcher, todo-prefix-overlays)
13974         (todo-read-category, todo-read-date, todo-read-dayname)
13975         (todo-read-file-name, todo-read-time)
13976         (todo-reevaluate-category-completions-files-defcustom)
13977         (todo-reevaluate-default-file-defcustom)
13978         (todo-reevaluate-filelist-defcustoms)
13979         (todo-reevaluate-filter-files-defcustom)
13980         (todo-reset-and-enable-done-separator, todo-reset-comment-string)
13981         (todo-reset-done-separator, todo-reset-done-separator-string)
13982         (todo-reset-done-string, todo-reset-global-current-todo-file)
13983         (todo-reset-highlight-item, todo-reset-nondiary-marker)
13984         (todo-reset-prefix, todo-set-categories)
13985         (todo-set-date-from-calendar, todo-set-show-current-file)
13986         (todo-set-top-priorities, todo-short-file-name)
13987         (todo-show-current-file, todo-sort, todo-time-string-matcher)
13988         (todo-total-item-counts, todo-update-buffer-list)
13989         (todo-update-categories-display, todo-update-categories-sexp)
13990         (todo-update-count, todo-validate-name, todo-y-or-n-p):
13991         New functions.
13992         (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
13993         New major modes.
13994         (todo-categories, todo-display, todo-edit, todo-faces)
13995         (todo-filtered): New defgroups.
13996         (todo-archived-only, todo-button, todo-category-string, todo-date)
13997         (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
13998         (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
13999         (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
14000         (todo-add-item-if-new-category, todo-always-add-time-string)
14001         (todo-categories-align, todo-categories-archived-label)
14002         (todo-categories-category-label, todo-categories-diary-label)
14003         (todo-categories-done-label, todo-categories-number-separator)
14004         (todo-categories-todo-label, todo-categories-totals-label)
14005         (todo-category-completions-files, todo-completion-ignore-case)
14006         (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
14007         (todo-done-separator-string, todo-done-string)
14008         (todo-files-function, todo-filter-done-items, todo-filter-files)
14009         (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
14010         (todo-initial-category, todo-initial-file, todo-item-mark)
14011         (todo-legacy-date-time-regexp, todo-mode-line-function)
14012         (todo-nondiary-marker, todo-number-prefix)
14013         (todo-print-buffer-function, todo-show-current-file)
14014         (todo-show-done-only, todo-show-first, todo-show-with-done)
14015         (todo-skip-archived-categories, todo-top-priorities-overrides)
14016         (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
14017         (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
14018         New defcustoms.
14019         (todo-category-done, todo-date-pattern, todo-date-string-start)
14020         (todo-diary-items-buffer, todo-done-string-start)
14021         (todo-filtered-items-buffer, todo-item-start)
14022         (todo-month-abbrev-array, todo-month-name-array)
14023         (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
14024         (todo-top-priorities-buffer): New defconsts.
14025         (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
14026         (todo-categories-with-marks, todo-category-string-face)
14027         (todo-comment-face, todo-comment-string, todo-current-todo-file)
14028         (todo-date-face, todo-date-from-calendar, todo-descending-counts)
14029         (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
14030         (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
14031         (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
14032         (todo-font-lock-keywords, todo-global-current-todo-file)
14033         (todo-insertion-commands, todo-insertion-commands-arg-key-list)
14034         (todo-insertion-commands-args)
14035         (todo-insertion-commands-args-genlist)
14036         (todo-insertion-commands-names, todo-insertion-map)
14037         (todo-key-bindings-t, todo-key-bindings-t+a)
14038         (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
14039         (todo-multiple-filter-files, todo-multiple-filter-files-widget)
14040         (todo-nondiary-face, todo-print-buffer, todo-time-face)
14041         (todo-visited): New variables.
14043 2013-06-21  Glenn Morris  <rgm@gnu.org>
14045         * play/cookie1.el (cookie-apropos): Add optional display argument.
14046         * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
14047         (psychoanalyze-pinhead): Use cookie-doctor.
14049 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
14051         * emacs-lisp/package.el (tar-get-file-descriptor)
14052         (tar--extract): Declare.
14054 2013-06-21  Eduard Wiebe  <usenet@pusto.de>
14056         Extend flymake's warning predicate to be a function (bug#14217).
14057         * progmodes/flymake.el (flymake-warning-predicate): New.
14058         (flymake-parse-line): Use it.
14059         (flymake-warning-re): Make obsolete alias to
14060         `flymake-warning-predicate'.
14062 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14064         * emacs-lisp/package.el (package-alist): Include obsolete packages.
14065         (package-obsolete-list): Remove.
14066         (package-activate): Remove min-version argument.  Add `force' argument.
14067         Adjust to new package-alist format.
14068         (package-mark-obsolete): Remove.
14069         (package-unpack): Force reload of the package's autoloads.
14070         (package-installed-p): Check builtins if the installed package is not
14071         recent enough.
14072         (package-initialize): Don't reset package-obsolete-list.
14073         Don't specify which package version to activate.
14074         (package-process-define-package, describe-package-1)
14075         (package-menu--generate): Adjust to new package-alist format.
14077 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
14079         * allout-widgets.el (allout-widgets-mode-off)
14080         (allout-widgets-mode-on, allout-widgets-pre-command-business)
14081         (allout-widgets-post-command-business)
14082         (allout-widgets-after-copy-or-kill-function)
14083         (allout-widgets-after-undo-function, allout-test-range-overlaps)
14084         (allout-decorate-item-and-context)
14085         (allout-graphics-modification-handler): Fix typos in docstrings.
14086         (allout-get-or-create-parent-widget): Use `looking-at-p'.
14088         * cmuscheme.el (scheme-start-file): Doc fix.
14089         (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
14090         (scheme-input-filter): Use `string-match-p'.
14092         * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
14094         * dired-x.el: Use Dired consistently in docstrings.
14096         * dired.el: Use Dired consistently in docstrings.
14097         (dired-readin, dired-mode): Use `setq-local'.
14098         (dired-switches-alist): Make defvar-local.
14099         (dired-buffers-for-dir): Use `zerop'.
14100         (dired-safe-switches-p, dired-switches-escape-p)
14101         (dired-insert-old-subdirs, dired-move-to-end-of-filename)
14102         (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
14103         (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
14104         (dired-goto-next-nontrivial-file): Use `string-match-p'.
14105         (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
14106         (dired-toggle-marks, dired-mark-files-containing-regexp)
14107         (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
14108         (dired-flag-auto-save-files, dired-flag-backup-files):
14109         Use `looking-at-p'.
14110         (dired-mark-files-regexp, dired-build-subdir-alist):
14111         Use `string-match-p', `looking-at-p'.
14113         * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
14114         (direct-print-region-helper): Use `string-match-p'.
14116 2013-06-21  Leo Liu  <sdl.web@gmail.com>
14118         * comint.el (comint-redirect-results-list-from-process):
14119         Fix infinite loop.
14121 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14123         * net/eww.el (eww-update-header-line-format): Quote % characters.
14125 2013-06-21  Glenn Morris  <rgm@gnu.org>
14127         * play/cookie1.el (cookie): New custom group.
14128         (cookie-file): New option.
14129         (cookie-check-file): New function.
14130         (cookie): Make it interactive.  Make start and end messages optional.
14131         Interactively, display the result.  Default to cookie-file.
14132         (cookie-insert): Default to cookie-file.
14133         (cookie-snarf): Make start and end messages optional.
14134         Default to cookie-file.  Use with-temp-buffer.
14135         (cookie-read): Rename from read-cookie.
14136         Make start and end messages optional.  Default to cookie-file.
14137         (cookie-shuffle-vector): Rename from shuffle-vector.  Use dotimes.
14138         Do not autoload it.
14139         (cookie-apropos, cookie-doctor): New functions, copied from yow.el
14140         * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
14142 2013-06-21  Leo Liu  <sdl.web@gmail.com>
14144         * progmodes/octave.el (octave-mode): Backward compatibility fix.
14146 2013-06-21  Glenn Morris  <rgm@gnu.org>
14148         * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
14150 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14151             Daniel Hackney  <dan@haxney.org>
14153         * emacs-lisp/package.el: Use tar-mode rather than tar executable.
14154         Consolidate the single-file vs tarball code.
14155         (package-desc-suffix): New function.
14156         (package-desc-full-name): Don't bother inlining it.
14157         (package-load-descriptor): Return the new package-desc.
14158         (package-mark-obsolete): Remove unused arg `package'.
14159         (package-unpack): Make it work for single files as well.
14160         Make it update package-alist.
14161         (package--make-autoloads-and-stuff): Rename from
14162         package--make-autoloads-and-compile.  Don't compile any more.
14163         (package--compile): New function.
14164         (package-generate-description-file): New function, extracted from
14165         package-unpack-single.
14166         (package-unpack-single): Remove.
14167         (package--with-work-buffer): Add indentation and debugging info.
14168         (package-download-single): Remove.
14169         (package-install-from-archive): Rename from package-download-tar, make
14170         it take a pkg-desc, and make it work for single files as well.
14171         (package-download-transaction): Simplify.
14172         (package-tar-file-info): Remove `file' arg.  Rewrite not to use an
14173         external tar program.
14174         (package-install-from-buffer): Remove `pkg-desc' argument.
14175         Use package-tar-file-info for tar-mode buffers.
14176         (package-install-file): Simplify accordingly.
14177         (package-archive-base): Change to take a pkg-desc.
14178         * tar-mode.el (tar--check-descriptor): New function, extracted from
14179         tar-get-descriptor.
14180         (tar-get-descriptor): Use it.
14181         (tar-get-file-descriptor): New function.
14182         (tar--extract): New function, extracted from tar-extract.
14183         (tar--extract): Use it.
14184         * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
14185         case the summary uses non-ascii.  Adjust to new calling convention of
14186         package-tar-file-info.
14188 2013-06-21  Leo Liu  <sdl.web@gmail.com>
14190         * comint.el (comint-redirect-results-list-from-process):
14191         Fix random delay.  (Bug#14681)
14193 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
14195         * profiler.el (profiler-format-number): Use log, not log10.
14197 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
14199         * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
14201 2013-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14203         * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
14204         * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
14205         yet available.
14206         * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
14207         (AUTOGENEL): ... here.
14208         * emacs-lisp/cl-macs.el (cl--sublis): New function.
14209         (cl--defsubst-expand): Use it.
14211 2013-06-20  Paul Eggert  <eggert@cs.ucla.edu>
14213         * subr.el (log10): Move here from C code, and declare as obsolete.
14214         All uses of (log10 X) replaced with (log X 10).
14216 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
14218         * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
14219         Declare with `defvar-local'.
14220         (tabulated-list-use-header-line, tabulated-list-entries)
14221         (tabulated-list-padding, tabulated-list-printer)
14222         (tabulated-list-sort-key): Declare with `defvar-local'.
14223         (tabulated-list-init-header, tabulated-list-print-fake-header):
14224         Use `setq-local'.
14226 2013-06-20  Michael Albinus  <michael.albinus@gmx.de>
14228         * arc-mode.el (archive-mode): Add `archive-write-file' to
14229         `write-contents-functions' also for remote files.  (Bug#14652)
14231 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
14233         * cus-edit.el (custom-commands): Fix typos.
14234         (custom-display): Fix tooltip text.
14235         (custom-magic-alist, custom-filter-face-spec, custom-group-members):
14236         Fix typos in docstrings.
14237         (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
14238         (custom-unlispify-menu-entry, custom-magic-value-create)
14239         (custom-add-see-also, custom-group-value-create): Use ?\s.
14240         (custom-guess-type, customize-apropos, editable-field)
14241         (custom-face-value-create): Use `string-match-p'.
14242         (custom-save-variables, custom-save-faces): Use `looking-at-p'.
14244         * custom.el (custom-load-symbol): Use `string-match-p'.
14246         * ansi-color.el: Convert to lexical binding.
14247         (ansi-colors): Fix URL.
14248         (ansi-color-context, ansi-color-context-region): Use defvar-local.
14249         (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
14250         (ansi-color-make-color-map): Rename local var ansi-color-map to map.
14252 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14254         * net/eww.el (eww-process-text-input): Display passwords as asterisks.
14256         * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
14258 2013-06-19  Tom Tromey  <tromey@redhat.com>
14260         * net/eww.el (eww-top-url): Remove.
14261         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
14262         (eww-render): Set new variables.  Don't set eww-top-url.
14263         (eww-handle-link): Handle "prev", "home", and "contents".
14264         Downcase the rel text.
14265         (eww-top-url): Choose best top URL.
14267 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14269         * net/eww.el: Rewrite to implement form elements "by hand" instead of
14270         relying in widget.el.  Using widget.el leads to too many
14271         user interface inconsistencies.
14272         (eww-self-insert): Implement entering commands in text fields.
14273         (eww-process-text-input): New function to make text input field editing
14274         work.
14275         (eww-submit): Rewrite to use the new-style form methods.
14276         (eww-select-display): Display the correct selected item.
14277         (eww-change-select): Implement changing the select value.
14278         (eww-toggle-checkbox): Implement radio/checkboxes.
14279         (eww-update-field): Fix compilation error.
14280         (eww-tag-textarea): Implement <textarea>.
14282         * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
14283         we don't shadow mode-specific bindings.
14285         * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
14286         nothing to push.
14288         * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
14290 2013-06-19  Glenn Morris  <rgm@gnu.org>
14292         * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
14294 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
14296         * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
14297         not needed.
14299         * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
14301 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14303         * net/browse-url.el (browse-url-browser-function):
14304         `eww-browse-url' has the right calling signature, `eww' does not.
14306 2013-06-19  Glenn Morris  <rgm@gnu.org>
14308         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14309         Only eval autoloaded macros.
14310         (byte-compile-autoload): Only give the macro warning for macros.
14312         * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
14313         (ps-underlined-faces): Declare.
14315         * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
14316         (speedbar-add-supported-extension): Declare.
14318         * international/titdic-cnv.el (tit-process-header, miscdic-convert):
14319         Don't include a date stamp in the header of the generated file;
14320         it leads to needless differences between output files.
14322 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
14324         * net/secrets.el (secrets-struct-secret-content-type):
14325         Replace check of introspection data by a test call of "CreateItem".
14326         Some servers do not offer introspection.
14328 2013-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14330         * electric.el (electric-pair-mode): Improve interaction with
14331         electric-layout-mode.
14332         (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
14333         (electric-pair-syntax): Use text-mode-syntax-table in comments
14334         and strings.
14335         (electric-pair--insert): New function.
14336         (electric-pair-post-self-insert-function): Use it and
14337         electric--after-char-pos.
14339 2013-06-19  Leo Liu  <sdl.web@gmail.com>
14341         * progmodes/octave.el (octave-help): Fix regexp.
14343 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14345         * net/shr.el (shr-make-table-1): Implement <td rowspan>.
14346         (shr-table-horizontal-line): Allow nil as a value, and change the
14347         default.
14348         (shr-insert-table-ruler): Respect the nil value.
14350 2013-06-18  Tom Tromey  <tromey@barimba>
14352         * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
14353         New defvars.
14354         (eww-open-file): New defun.
14355         (eww-render): Initialize new variables.
14356         (eww-display-html): Handle "link" and "a".
14357         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
14358         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
14359         (eww-back-url): Rename from eww-previous-url.
14360         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
14361         New defuns.
14363 2013-06-18  Dmitry Gutov  <dgutov@yandex.ru>
14365         * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
14366         Distinguish ternary operator tokens from slash symbol and slash
14367         char literal.
14369 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
14371         Convert symbol prettification into minor mode and global minor mode.
14373         * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
14374         `prog-prettify-symbols', and make a local defvar instead of defcustom.
14375         (prettify-symbols--keywords): Rename from
14376         `prog-prettify-symbols-alist' and make a local defvar.
14377         (prettify-symbols--compose-symbol): Rename from
14378         `prog--prettify-font-lock-compose-symbol'.
14379         (prettify-symbols--make-keywords): Rename from
14380         `prog-prettify-font-lock-symbols-keywords' and simplify.
14381         (prog-prettify-install): Remove.
14382         (prettify-symbols-mode): New minor mode, based on
14383         `prog-prettify-install'.
14384         (turn-on-prettify-symbols-mode): New function.
14385         (global-prettify-symbols-mode): New globalized minor mode.
14387         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
14388         * progmodes/cfengine.el (cfengine3-mode):
14389         * progmodes/perl-mode.el (perl-mode): Don't call
14390         `prog-prettify-install'; set `prettify-symbols-alist' instead.
14392 2013-06-18  Juri Linkov  <juri@jurta.org>
14394         * files-x.el (modify-file-local-variable-message): New function.
14395         (modify-file-local-variable)
14396         (modify-file-local-variable-prop-line): Add arg INTERACTIVE
14397         and call `modify-file-local-variable-message' when it's non-nil.
14398         (add-file-local-variable, delete-file-local-variable)
14399         (add-file-local-variable-prop-line)
14400         (delete-file-local-variable-prop-line): Add arg INTERACTIVE
14401         and use it.  (Bug#9820)
14403 2013-06-18  Juri Linkov  <juri@jurta.org>
14405         * emulation/vi.el (vi-shell-op):
14406         * emulation/vip.el (vip-execute-com, ex-command):
14407         * emulation/viper-cmd.el (viper-exec-bang):
14408         * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
14409         the call of `shell-command-on-region'.  (Bug#14637)
14411         * simple.el (shell-command-on-region): Doc fix.
14413 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14415         * emacs-lisp/eieio-custom.el: Remove misleading Version: header
14416         (bug#14633).
14418 2013-06-18  Glenn Morris  <rgm@gnu.org>
14420         * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
14422         * newcomment.el (comment-search-forward, comment-search-backward):
14423         Doc fix.  (Bug#14376)
14425 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
14427         * face-remap.el (buffer-face-toggle): Fix typo in docstring.
14428         (buffer-face-mode-invoke): Doc fix.
14430 2013-06-18  Matthias Meulien  <orontee@gmail.com>
14432         * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
14433         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
14435 2013-06-18  Glenn Morris  <rgm@gnu.org>
14437         * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
14438         Replace obsolete function generic-make-keywords with its expansion.
14440         * progmodes/python.el (ffap-alist): Declare.
14442         * textmodes/reftex.el (bibtex-mode-map): Declare.
14444 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14446         * emacs-lisp/package.el: Update package-alist after install (bug#14632).
14447         (package-unpack, package-unpack-single): Return the pkg-dir.
14448         (package-download-transaction): Use it to update package-alist.
14450 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14452         * net/browse-url.el (browse-url-browser-function): Add `eww' as a
14453         possible choice.
14455 2013-06-17  Juri Linkov  <juri@jurta.org>
14457         * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
14459 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
14461         * emacs-lisp/package.el (package-load-descriptor):
14462         Remove `with-syntax-table' call, `read' doesn't need it.
14463         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
14465 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
14467         * startup.el (command-line): Expand package name returned by
14468         `package--description-file' (bug#14639).
14470 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
14472         * emacs-lisp/package.el (package-load-descriptor): Do not call
14473         `emacs-lisp-mode', just use its syntax table.
14475 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
14477         * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
14478         `font-lock-extra-managed-props' if any prettifying keyword is added.
14479         (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
14480         (prog-mode): Use `setq-local'.
14482 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14484         * international/characters.el (standard-case-table): Set syntax of ?»
14485         and ?« to punctuation.
14487 2013-06-16  Juanma Barranquero  <lekktu@gmail.com>
14489         * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
14490         Save relevant match data before calling `syntax-ppss' (bug#14595).
14492 2013-06-15  Juri Linkov  <juri@jurta.org>
14494         * files-x.el (modify-file-local-variable-prop-line): Add local
14495         variables to the end of the existing comment on the first line.
14496         Use `file-auto-mode-skip' to skip interpreter magic line,
14497         and also skip XML declaration.
14499 2013-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14501         * startup.el (package--builtin-versions): New var.
14502         (package-subdirectory-regexp): Remove.
14503         (package--description-file): Hard code its value instead.
14505         * emacs-lisp/package.el: Don't activate packages older than builtin.
14506         (package-obsolete-list): Rename from package-obsolete-alist, and make
14507         it into a simple list of package-desc.
14508         (package-strip-version): Remove.
14509         (package-built-in-p): Use package--builtin-versions.
14510         (package-mark-obsolete): Simplify.
14511         (package-process-define-package): Mark it obsolete if older than the
14512         builtin version.
14513         (package-handle-response): Use line-end-position.
14514         (package-read-archive-contents, package--download-one-archive):
14515         Simplify.
14516         (package--add-to-archive-contents): Skip if older than the builtin or
14517         installed version.
14518         (package-menu-describe-package): Fix last change.
14519         (package-list-unversioned): New var.
14520         (package-menu--generate): Use it.
14522         * emacs-lisp/autoload.el: Manage package--builtin-versions.
14523         (autoload--insert-text, autoload--insert-cookie-text): New functions.
14524         (autoload-builtin-package-versions): New variable.
14525         (autoload-generate-file-autoloads): Use them.
14526         Remove the list of autoloaded functions/macros from the
14527         (autoload...) comments.
14529         * Makefile.in (autoloads): Set autoload-builtin-package-versions.
14531 2013-06-15  Eli Zaretskii  <eliz@gnu.org>
14533         * simple.el (line-move-partial): Don't jump to the next screen
14534         line as soon as it becomes visible.  Instead, continue enlarging
14535         the vscroll until the portion of a tall screen line that's left on
14536         display is about the height of the frame's default font.
14537         (Bug#14567)
14539 2013-06-15  Glenn Morris  <rgm@gnu.org>
14541         * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
14542         compilation-error-regexp-alist void, or local while let-bound.
14544         * progmodes/make-mode.el (makefile-mode-syntax-table):
14545         Treat "=" as punctuation.  (Bug#14614)
14547 2013-06-15  Juanma Barranquero  <lekktu@gmail.com>
14549         * help-fns.el (describe-variable):
14550         Add extra line for permanent-local variables.
14552 2013-06-15  Simen Heggestøyl  <simenheg@ifi.uio.no>  (tiny change)
14554         * progmodes/scheme.el (scheme-font-lock-keywords-2):
14555         Add export, import, library.  (Bug#9164)
14556         (library): Set indent function.
14558 2013-06-14  Glenn Morris  <rgm@gnu.org>
14560         * term/xterm.el (xterm--query):
14561         Stop after first matching handler.  (Bug#14615)
14563 2013-06-14  Ivan Kanis  <ivan@kanis.fr>
14565         Add support for dired in saveplace.
14566         * dired.el (dired-initial-position-hook): New variable.
14567         (dired-initial-position): Call hook to place cursor position.
14568         * saveplace.el (save-place-to-alist): Add dired position.
14569         (save-place-dired-hook): New function.
14571 2013-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14573         * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
14574         through a symbol rather than letrec.
14576         * emacs-lisp/package.el: Don't recompute dir.  Use pkg-descs more.
14577         (package-desc): Add `dir' field.
14578         (package-desc-full-name): New function.
14579         (package-load-descriptor): Combine the two arguments.  Don't use `load'.
14580         (package-maybe-load-descriptor): Remove.
14581         (package-load-all-descriptors): Just call package-load-descriptor.
14582         (package--disabled-p): New function.
14583         (package-desc-vers, package-desc-doc): Remove aliases.
14584         (package--dir): Remove function.
14585         (package-activate): Check if a package is disabled.
14586         (package-process-define-package): New function, extracted from
14587         define-package.
14588         (define-package): Turn into a place holder.
14589         (package-unpack-single, package-tar-file-info):
14590         Use package--description-file.
14591         (package-compute-transaction): Use package--disabled-p.
14592         (package-download-transaction): Don't call
14593         package-maybe-load-descriptor since they're all loaded anyway.
14594         (package-install): Change argument to be a pkg-desc.
14595         (package-delete): Use a single pkg-desc argument.
14596         (describe-package-1): Use package-desc-dir instead of package--dir.
14597         Use package-desc property instead of package-symbol.
14598         (package-install-button-action): Adjust accordingly.
14599         (package--push): Rewrite.
14600         (package-menu--print-info): Adjust accordingly.  Change the ID format
14601         to be a pkg-desc.
14602         (package-menu-describe-package, package-menu-get-status)
14603         (package-menu--find-upgrades, package-menu-mark-upgrades)
14604         (package-menu-execute, package-menu--name-predicate):
14605         Adjust accordingly.
14606         * startup.el (package--description-file): New function.
14607         (command-line): Use it.
14608         * emacs-lisp/package-x.el (package-upload-buffer-internal):
14609         Use package-desc-version.
14611         * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
14612         (byte-compile-preprocess): Use it.
14613         (byte-compile-file-form-defalias): Try a bit harder to use macros we
14614         can't quite recognize.
14615         (byte-compile-add-to-list): Remove.
14616         * emacs-lisp/cconv.el (cconv-warnings-only): New function.
14617         (cconv-closure-convert): Add assertion.
14619         * emacs-lisp/map-ynp.el: Use lexical-binding.
14620         (map-y-or-n-p): Remove unused vars `tail' and `object'.
14621         Factor out some repeated code.
14623 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14625         * subr.el (with-eval-after-load): New macro.
14626         (eval-after-load): Allow form to be a function.
14627         take advantage of lexical-binding.
14628         (do-after-load-evaluation): Use dolist and adjust to new format.
14629         * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
14631 2013-06-13  Juri Linkov  <juri@jurta.org>
14633         * replace.el (perform-replace): Display "symbol " and other search
14634         modes from `isearch-message-prefix' in the *Help* buffer.
14636         * isearch.el (isearch-query-replace): Add " symbol" and other
14637         possible search modes from `isearch-message-prefix' to the prompt.
14638         (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
14639         when reading a regexp to collect.
14641 2013-06-13  Juri Linkov  <juri@jurta.org>
14643         * isearch.el (word-search-regexp): Match whitespace if the search
14644         string begins or ends in whitespace.  The LAX arg is applied to
14645         both ends of the search string.  Use `regexp-quote' and explicit
14646         \< and \> instead of \b.  Use \` and \' instead of ^ and $.
14647         (isearch-symbol-regexp): Sync with `word-search-regexp' where word
14648         boundaries are replaced with symbol boundaries, and characters
14649         between symbols match non-word non-symbol syntax.  (Bug#14602)
14651 2013-06-13  Juri Linkov  <juri@jurta.org>
14653         * isearch.el (isearch-del-char): Don't exceed the length of
14654         `isearch-string' by the prefix arg.  (Bug#14563)
14656 2013-06-13  Juri Linkov  <juri@jurta.org>
14658         * isearch.el (isearch-yank-word, isearch-yank-line)
14659         (isearch-char-by-name, isearch-quote-char)
14660         (isearch-printing-char, isearch-process-search-char):
14661         Add optional count prefix arg.  (Bug#14563)
14663         * international/isearch-x.el
14664         (isearch-process-search-multibyte-characters):
14665         Add optional count prefix arg.
14667 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14669         * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
14670         (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
14671         lexical-binding.
14673 2013-06-13  Vitalie Spinu  <spinuvit@gmail.com>
14675         * subr.el (set-temporary-overlay-map): Add on-exit argument.
14677 2013-06-13  Glenn Morris  <rgm@gnu.org>
14679         * startup.el (tty-handle-args):
14680         Don't just discard "--" and anything after.  (Bug#14608)
14682         * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
14684 2013-06-13  Michael Albinus  <michael.albinus@gmx.de>
14686         Implement changes in Secret Service API.  Make it backward compatible.
14687         * net/secrets.el (secrets-struct-secret-content-type): New defonst.
14688         (secrets-create-item): Use it.  Prefix properties with interface.
14690 2013-06-13  Michael Hoffman  <9qobl2n02@sneakemail.com>  (tiny change)
14692         * term.el (term-suppress-hard-newline): New option.  (Bug#12017)
14693         (term-emulate-terminal): Respect term-suppress-hard-newline.
14695 2013-06-13  E Sabof  <esabof@gmail.com>  (tiny change)
14697         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
14698         Only remove a `thumb-file' overlay.  (Bug#14548)
14700 2013-06-12  Grégoire Jadi  <daimrod@gmail.com>
14702         * mail/reporter.el (reporter-submit-bug-report):
14703         Handle missing package-name.  (Bug#14600)
14705 2013-06-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
14707         * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
14708         (reftex-citation-prompt, reftex-default-bibliography)
14709         (reftex-bib-or-thebib, reftex-get-bibfile-list)
14710         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
14711         (reftex-bib-sort-author, reftex-bib-sort-year)
14712         (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
14713         (reftex-extract-bib-entries-from-thebibliography)
14714         (reftex-get-bibkey-default, reftex-get-bib-names)
14715         (reftex-parse-bibtex-entry, reftex-get-bib-field)
14716         (reftex-format-bib-entry, reftex-parse-bibitem)
14717         (reftex-format-bibitem, reftex-do-citation)
14718         (reftex-figure-out-cite-format, reftex-offer-bib-menu)
14719         (reftex-restrict-bib-matches, reftex-extract-bib-file)
14720         (reftex-insert-bib-matches, reftex-format-citation)
14721         (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
14722         (reftex-create-bibtex-file): Add docstrings, mostly by converting
14723         existing comments into docstrings.
14725 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
14727         * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
14729 2013-06-12  Andreas Schwab  <schwab@suse.de>
14731         * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
14732         for auto-save files.
14734 2013-06-12  Glenn Morris  <rgm@gnu.org>
14736         * ido.el (ido-delete-ignored-files): Remove.
14737         (ido-wide-find-dirs-or-files, ido-make-file-list-1):
14738         Go back to calling ido-ignore-item-p directly.
14740 2013-06-12  Eyal Lotem  <eyal.lotem@gmail.com>  (tiny change)
14742         * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
14744         * ido.el (ido-delete-ignored-files): New function,
14745         split from ido-make-file-list-1.
14746         (ido-wide-find-dirs-or-files): Maybe ignore files.  (Bug#13003)
14747         (ido-make-file-list-1): Use ido-delete-ignored-files.
14749 2013-06-12  Leo Liu  <sdl.web@gmail.com>
14751         * progmodes/octave.el (inferior-octave-startup)
14752         (inferior-octave-completion-table)
14753         (inferior-octave-track-window-width-change)
14754         (octave-eldoc-function-signatures, octave-help)
14755         (octave-find-definition): Use single quoted strings.
14756         (inferior-octave-startup-args): Change default value.
14757         (inferior-octave-startup): Do not hard code "-i" and
14758         "--no-line-editing".
14759         (inferior-octave-resync-dirs): Add optional arg NOERROR.
14760         (inferior-octave-directory-tracker): Use it.
14761         (octave-goto-function-definition): Robustify.
14762         (octave-help): Support highlighting operators in 'See also'.
14763         (octave-find-definition): Find subfunctions only in Octave mode.
14765 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14767         * help-fns.el (help-fns--compiler-macro): If the handler function is
14768         named, then put a link to it.
14769         * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
14770         * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
14771         (cl-typep): Use it.
14772         (cl-eval-when): Simplify debug spec.
14773         (cl-define-compiler-macro): Use eval-and-compile.  Give a name to the
14774         compiler-macro function instead of setting `compiler-macro-file'.
14776 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
14778         * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
14779         * vc/vc-hooks.el (vc-stay-local): Doc fix.
14781 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14782             Daniel Hackney  <dan@haxney.org>
14784         First part of Daniel Hackney's patch to package.el.
14785         * emacs-lisp/package.el: Use defstruct.
14786         (package-desc): New, main struct.
14787         (package--bi-desc, package--ac-desc): New structs, used to describe the
14788         format in external files.
14789         (package-desc-vers): Replace with package-desc-version accessor.
14790         (package-desc-doc): Replace with package-desc-summary accessor.
14791         (package-activate-1): Remove `package' arg since the pkg-vec now
14792         includes the name.
14793         (define-package): Use package-desc-from-define.
14794         (package-unpack-single): Change file-name arg to be a symbol.
14795         (package--add-to-archive-contents): Use package-desc-create and new
14796         accessor functions to package--ac-desc.
14797         (package-buffer-info, package-tar-file-info): Return a package-desc.
14798         (package-install-from-buffer): Remove `type' argument.  Change pkg-info
14799         arg to be a package-desc.
14800         (package-install-file): Adjust accordingly.  Use \' to match EOS.
14801         (package--from-builtin): New function.
14802         (describe-package-1, package-menu--generate): Use it.
14803         (package--make-autoloads-and-compile): Change name arg to be a symbol.
14804         (package-generate-autoloads): Idem and return the name of the file.
14805         * emacs-lisp/package-x.el (package-upload-buffer-internal):
14806         Change pkg-info arg to be a package-desc.
14807         Use package-make-ac-desc.
14808         (package-upload-file): Use \' to match EOS.
14809         * finder.el (finder-compile-keywords): Use package-make-builtin.
14811 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14813         * vc/vc.el (vc-deduce-fileset): Change error message.
14814         (vc-read-backend): New function.
14815         (vc-next-action): Use it.
14817         * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
14819         * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
14820         (prolog-font-lock-keywords): Use regexp-opt instead.
14821         Don't manually highlight strings.
14822         (prolog-mode-variables): Simplify comment-start-skip.
14823         (prolog-consult-compile): Use display-buffer.  Remove unused old-filter.
14825         * emacs-lisp/generic.el (generic--normalise-comments)
14826         (generic-set-comment-syntax, generic-set-comment-vars): New functions.
14827         (generic-mode-set-comments): Use them.
14828         (generic-bracket-support): Use setq-local.
14829         (generic-make-keywords-list): Declare obsolete.
14831 2013-06-11  Glenn Morris  <rgm@gnu.org>
14833         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
14834         Prettify after setting font-lock-defaults.  (Bug#14574)
14836 2013-06-11  Juanma Barranquero  <lekktu@gmail.com>
14838         * replace.el (query-replace, occur-read-regexp-defaults-function)
14839         (replace-search):
14840         * subr.el (declare-function, number-sequence, local-set-key)
14841         (substitute-key-definition, locate-user-emacs-file)
14842         (with-silent-modifications, split-string, eval-after-load):
14843         Fix typos, remove unneeded backslashes and reflow some docstrings.
14845 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14847         * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
14848         default for Elisp files.
14850 2013-06-11  Glenn Morris  <rgm@gnu.org>
14852         * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
14853         although define-derived-mode was doing this anyway.  (Bug#14583)
14855 2013-06-10  Juanma Barranquero  <lekktu@gmail.com>
14857         * allout.el (allout-encryption-plaintext-sanitization-regexps):
14858         Fix make-variable-buffer-local call to refer to the correct variable.
14860 2013-06-10  Aidan Gauland  <aidalgol@amuri.net>
14862         * eshell/em-term.el (eshell-visual-commands)
14863         (eshell-visual-subcommands, eshell-visual-options):
14864         Add summary line to docstrings.  Add cross-references.
14866 2013-06-10  Glenn Morris  <rgm@gnu.org>
14868         * epa.el (epa-read-file-name): New function.  (Bug#14510)
14869         (epa-decrypt-file): Make plain-file optional.  Use epa-read-file-name.
14871 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
14873         * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
14874         output redirection to be ignored with visual commands.
14876 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
14878         * eshell/em-term.el (eshell-visual-command-p): New function.
14879         (eshell-term-initialize): Move long lambda to separate function
14880         eshell-visual-command-p.
14881         * eshell/em-dirs.el (eshell-dirs-initialize):
14882         * eshell/em-script.el (eshell-script-initialize):
14883         Add missing #' to lambda.
14885 2013-06-08  Leo Liu  <sdl.web@gmail.com>
14887         * progmodes/octave.el (octave-add-log-current-defun): New function.
14888         (octave-mode): Set add-log-current-defun-function.
14889         (octave-goto-function-definition): Do not move point if not found.
14890         (octave-find-definition): Enhance to try subfunctions first.
14892 2013-06-08  Glenn Morris  <rgm@gnu.org>
14894         * emacs-lisp/bytecomp.el (byte-compile-char-before)
14895         (byte-compile-backward-char, byte-compile-backward-word):
14896         Improve previous change, to handle non-explicit nil.
14898 2013-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14900         * emacs-lisp/smie.el: Improve show-paren-mode behavior.
14901         (smie--opener/closer-at-point): New function.
14902         (smie--matching-block-data): Use it.  Don't match from right after an
14903         opener or right before a closer.  Obey smie-blink-matching-inners.
14904         Don't signal a mismatch for repeated inners like "switch..case..case".
14906 2013-06-07  Leo Liu  <sdl.web@gmail.com>
14908         * progmodes/octave.el (octave-mode): Set comment-use-global-state
14909         to t.  (Bug#14303)
14910         (octave-function-header-regexp): Fix.  (Bug#14570)
14911         (octave-help-mode-finish-hook, octave-help-mode-finish):
14912         Remove.  Just use temp-buffer-show-hook.
14914         * newcomment.el (comment-search-backward): Revert last change.
14915         (Bug#14434)
14917         * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
14919 2013-06-07  Eli Zaretskii  <eliz@gnu.org>
14921         * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
14922         through xargs, to avoid failure due to MS-Windows limitations on
14923         command-line length.
14925 2013-06-06  Glenn Morris  <rgm@gnu.org>
14927         * font-lock.el (lisp-font-lock-keywords-2):
14928         Treat user-error like error.
14930         * emacs-lisp/bytecomp.el (byte-compile-char-before)
14931         (byte-compile-backward-char, byte-compile-backward-word):
14932         Handle explicit nil arguments.  (Bug#14565)
14934 2013-06-05  Alan Mackenzie  <acm@muc.de>
14936         * isearch.el (isearch-allow-prefix): New user option.
14937         (isearch-other-meta-char): Don't exit isearch when a prefix
14938         argument is typed whilst `isearch-allow-prefix' is non-nil.
14939         (Bug#9706)
14941 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14943         * autorevert.el (auto-revert-notify-handler): Use memq.
14944         Hide assertion failure.
14946         * skeleton.el: Use cl-lib.
14947         (skeleton-further-elements): Use defvar-local.
14948         (skeleton-insert): Use cl-progv.
14950 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
14952         * progmodes/prog-mode.el (prog-prettify-symbols)
14953         (prog-prettify-install): Update docstrings.
14955 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14957         * simple.el: Move all the prog-mode code to prog-mode.el.
14958         * progmodes/prog-mode.el: New file.
14959         * loadup.el: Add prog-mode.el.
14961 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
14963         * simple.el (prog-prettify-symbols): Add version.
14964         (prog-prettify-install): Add convenience function to prettify symbols.
14966         * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
14967         (perl--augmented-font-lock-keywords-1)
14968         (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
14969         variables and use it.
14971         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
14972         (cfengine3-mode): Remove unneeded variable and use it.
14974         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
14975         (lisp--augmented-font-lock-keywords-1)
14976         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
14977         Remove unneeded variables and use it.
14979 2013-06-05  João Távora  <joaotavora@gmail.com>
14981         * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
14982         to point when opening the connection.  (Bug#14380)
14984 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14986         * subr.el (load-history-regexp, load-history-filename-element)
14987         (eval-after-load, after-load-functions, do-after-load-evaluation)
14988         (eval-next-after-load, display-delayed-warnings)
14989         (collapse-delayed-warnings, delayed-warnings-hook): Move after the
14990         definition of save-match-data.
14991         (overriding-local-map): Remove accidental obsolescence declaration.
14993         * emacs-lisp/edebug.el (edebug-result): Move before first use.
14995 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
14997         Generalize symbol prettify support to prog-mode and implement it
14998         for perl-mode, cfengine3-mode, and emacs-lisp-mode.
14999         * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
15000         (prog--prettify-font-lock-compose-symbol)
15001         (prog-prettify-font-lock-symbols-keywords): New variables and
15002         functions to support symbol prettification.
15003         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
15004         (lisp--augmented-font-lock-keywords-1)
15005         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
15006         (lisp--prettify-symbols-alist): Implement prettify of lambda.
15007         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
15008         (cfengine3--prettify-symbols-alist, cfengine3-mode):
15009         Implement prettify of -> => :: strings.
15010         * progmodes/perl-mode.el (perl-prettify-symbols)
15011         (perl--font-lock-compose-symbol)
15012         (perl--font-lock-symbols-keywords): Move to prog-mode.
15013         (perl--prettify-symbols-alist): Prettify -> => :: strings.
15014         (perl-font-lock-keywords-1)
15015         (perl-font-lock-keywords-2): Remove explicit prettify support.
15016         (perl--augmented-font-lock-keywords)
15017         (perl--augmented-font-lock-keywords-1)
15018         (perl--augmented-font-lock-keywords-2, perl-mode):
15019         Implement prettify support.
15021 2013-06-05  Leo Liu  <sdl.web@gmail.com>
15023         Re-implement SMIE matching block highlight using
15024         show-paren-data-function.  (Bug#14395)
15025         * emacs-lisp/smie.el (smie-matching-block-highlight)
15026         (smie--highlight-matching-block-overlay)
15027         (smie--highlight-matching-block-lastpos)
15028         (smie-highlight-matching-block)
15029         (smie-highlight-matching-block-mode): Remove.
15030         (smie--matching-block-data-cache): New variable.
15031         (smie--matching-block-data): New function.
15032         (smie-setup): Use smie--matching-block-data for
15033         show-paren-data-function.
15035         * progmodes/octave.el (octave-mode-menu): Fix.
15036         (octave-find-definition): Skip garbage lines.
15038 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15040         Fix compilation error with simultaneous dynamic+lexical scoping.
15041         Add warning when a defvar appears after the first let-binding.
15042         * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
15043         (byte-compile-close-variables): Initialize it.
15044         (byte-compile--declare-var): New function.
15045         (byte-compile-file-form-defvar)
15046         (byte-compile-file-form-define-abbrev-table)
15047         (byte-compile-file-form-custom-declare-variable): Use it.
15048         (byte-compile-make-lambda-lexenv): Change the argument.  Simplify.
15049         (byte-compile-lambda): Share call to byte-compile-arglist-vars.
15050         (byte-compile-bind): Handle dynamic bindings that shadow
15051         lexical bindings.
15052         (byte-compile-unbind): Make arg non-optional.
15053         (byte-compile-let): Simplify.
15054         * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
15055         (cconv--analyse-function, cconv-analyse-form): Populate it.
15056         Protect byte-compile-bound-variables to limit the scope of defvars.
15057         (cconv-analyse-form): Add missing rule for (defvar <foo>).
15058         Remove unneeded rule for `declare'.
15060         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
15061         so as to avoid depending on cl-adjoin at run-time.
15062         * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
15064         * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
15065         (macroexp--warn-and-return): Use it.
15067 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15069         * subr.el: Convert to lexical binding.
15070         (overriding-local-map): Make obsolete.
15071         (add-to-list): Doc fix.  Add compiler macro.
15072         (read-key): Swap values of local maps.
15074 2013-06-05  Leo Liu  <sdl.web@gmail.com>
15076         * eshell/esh-mode.el (eshell-mode): Fix key bindings.
15078 2013-06-04  Leo Liu  <sdl.web@gmail.com>
15080         * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
15081         (compilation-auto-jump): Suppress the "Mark set" message to give
15082         way to exit message.
15084 2013-06-04  Alan Mackenzie  <acm@muc.de>
15086         Remove faulty optimisation from indentation calculation.
15087         * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
15088         search limit based on 2000 characters back from indent-point.
15090 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
15092         * eshell/em-term.el (cl-lib): Require `cl-lib'.
15094 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15096         * emacs-lisp/lisp.el: Use lexical-binding.
15097         (lisp--local-variables-1, lisp--local-variables): New functions.
15098         (lisp--local-variables-completion-table): New var.
15099         (lisp-completion-at-point): Use it complete let-bound vars.
15101         * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
15102         eagerly (bug#14422).
15104 2013-06-03  Michael Albinus  <michael.albinus@gmx.de>
15106         * autorevert.el (auto-revert-notify-enabled)
15107         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
15108         (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
15109         (auto-revert-notify-handler): Handle also gfilenotify.
15111         * subr.el (file-notify-handle-event): New defun.  Replacing ...
15112         (inotify-event-p, inotify-handle-event, w32notify-handle-event):
15113         Remove.
15115 2013-06-03  Juri Linkov  <juri@jurta.org>
15117         * bindings.el (search-map): Bind `highlight-symbol-at-point' to
15118         `M-s h .'.  (Bug#14427)
15120         * hi-lock.el (highlight-symbol-at-point): New alias for the new
15121         command `hi-lock-face-symbol-at-point'.
15122         (hi-lock-face-symbol-at-point): New command.
15123         (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
15124         (hi-lock-menu): Add `highlight-symbol-at-point'.
15125         (hi-lock-mode): Doc fix.
15127         * isearch.el (isearch-forward-symbol-at-point): New command.
15128         (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
15129         (isearch-highlight-regexp): Add a regexp which matches
15130         words/symbols for word/symbol mode.
15132         * subr.el (find-tag-default-bounds): New function with the body
15133         mostly moved from `find-tag-default'.
15134         (find-tag-default): Move most code to `find-tag-default-bounds',
15135         call it and apply `buffer-substring-no-properties' afterwards.
15137 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
15139         * eshell/em-term.el (eshell-term-initialize):
15140         Use `cl-intersection' rather than `intersection'.
15142 2013-06-02  Xue Fuqiao  <xfq.free@gmail.com>
15144         * vc/log-view.el: Doc fix.
15145         (log-view-mode-map): Copy keymap from `special-mode-map'.
15147 2013-06-02  Eric Ludlam  <zappo@gnu.org>
15149         * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
15150         (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
15151         (eieio-optimize-primary-methods-flag, eieio-initializing-object)
15152         (eieio-unbound, eieio-default-superclass)
15153         (eieio--define-field-accessors, method-static, method-before)
15154         (method-primary, method-after, method-num-lists)
15155         (method-generic-before, method-generic-primary)
15156         (method-generic-after, method-num-slots)
15157         (eieio-specialized-key-to-generic-key)
15158         (eieio--check-type, class-v, class-p)
15159         (eieio-class-name, define-obsolete-function-alias)
15160         (eieio-class-parents-fast, eieio-class-children-fast)
15161         (same-class-fast-p, class-constructor, generic-p)
15162         (generic-primary-only-p, generic-primary-only-one-p)
15163         (class-option-assoc, class-option, eieio-object-p)
15164         (class-abstract-p, class-method-invocation-order)
15165         (eieio-defclass-autoload-map, eieio-defclass-autoload)
15166         (eieio-class-un-autoload, eieio-defclass)
15167         (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
15168         (eieio-add-new-slot, eieio-copy-parents-into-subclass)
15169         (eieio--defgeneric-init-form, eieio-defgeneric-form)
15170         (eieio-defgeneric-reset-generic-form)
15171         (eieio-defgeneric-form-primary-only)
15172         (eieio-defgeneric-reset-generic-form-primary-only)
15173         (eieio-defgeneric-form-primary-only-one)
15174         (eieio-defgeneric-reset-generic-form-primary-only-one)
15175         (eieio-unbind-method-implementations)
15176         (eieio--defmethod, eieio--typep)
15177         (eieio-perform-slot-validation, eieio-validate-slot-value)
15178         (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
15179         (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
15180         (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
15181         (eieio-slot-name-index, eieio-class-slot-name-index)
15182         (eieio-set-defaults, eieio-initarg-to-attribute)
15183         (eieio-attribute-to-initarg, eieio-c3-candidate)
15184         (eieio-c3-merge-lists, eieio-class-precedence-c3)
15185         (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
15186         (eieio-class-precedence-list, eieio-generic-call-methodname)
15187         (eieio-generic-call-arglst, eieio-generic-call-key)
15188         (eieio-generic-call-next-method-list)
15189         (eieio-pre-method-execution-functions, eieio-generic-call)
15190         (eieio-generic-call-primary-only, eieiomt-method-list)
15191         (eieiomt-optimizing-obarray, eieiomt-install)
15192         (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
15193         (eieio-generic-form, eieio-defmethod, make-obsolete)
15194         (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
15195         (defclass): Remove `eval-and-compile' from macro.
15196         (call-next-method, shared-initialize): Instead of using
15197         `scoped-class' variable, use new eieio--scoped-class, and
15198         eieio--with-scoped-class.
15199         (initialize-instance): Rename local variable 'scoped-class' to
15200         'this-class' to remove ambiguitity from old global.
15202         * emacs-lisp/eieio-core.el: New file.  Derived from key parts of
15203         eieio.el.
15204         (eieio--scoped-class-stack): New variable.
15205         (eieio--scoped-class): New fcn.
15206         (eieio--with-scoped-class): New scoping macro.
15207         (eieio-defclass): Use pushnew instead of add-to-list.
15208         (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
15209         (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
15210         (eieio-generic-call-primary-only, eieiomt-add): Instead of using
15211         `scoped-class' variable, use new eieio--scoped-class, and
15212         eieio--with-scoped-class.
15214         * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
15216 2013-06-02  Tassilo Horn  <tsdh@gnu.org>
15218         * eshell/esh-ext.el (eshell-external-command): Pass args to
15219         `eshell-find-interpreter'.
15220         (eshell-find-interpreter): Add new second parameter ARGS.
15222         * eshell/em-script.el (eshell-script-initialize): Add second arg
15223         to the function added as MATCH to `eshell-interpreter-alist'.
15225         * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
15226         the function added as MATCH to `eshell-interpreter-alist'.
15228         * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
15229         (eshell-visual-options): New defcustom.
15230         (eshell-escape-control-x): Adapt docstring.
15231         (eshell-term-initialize): Test `eshell-visual-subcommands' and
15232         `eshell-visual-options' in addition to `eshell-visual-commands'.
15233         (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
15235 2013-06-01  Fabián Ezequiel Gallina  <fgallina@gnu.org>
15237         * progmodes/python.el (python-indent-block-enders): Add break,
15238         continue and raise keywords.
15240 2013-06-01  Glenn Morris  <rgm@gnu.org>
15242         * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
15244         Plain (f)boundp silences compilation warnings since Emacs 22.1.
15245         * progmodes/cc-cmds.el (delete-forward-p):
15246         * progmodes/cc-defs.el (buffer-syntactic-context-depth):
15247         * progmodes/cc-engine.el (buffer-syntactic-context):
15248         * progmodes/cc-fonts.el (face-property-instance):
15249         * progmodes/cc-mode.el (set-keymap-parents):
15250         * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
15251         * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
15252         * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
15253         * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
15254         (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
15256         * progmodes/cc-vars.el (other): Emacs has this widget since
15257         at least 21.1, so don't (re)define it.
15259         * eshell/em-cmpl.el (eshell-cmpl-initialize):
15260         Replace the obsolete alias pcomplete-arg-quote-list.
15262 2013-06-01  Leo Liu  <sdl.web@gmail.com>
15264         * progmodes/octave.el (octave-mode-syntax-table): Give `.'
15265         punctuation syntax.
15266         (inferior-octave-minimal-columns)
15267         (inferior-octave-last-column-width): New variables.
15268         (inferior-octave-track-window-width-change): New function.
15269         (inferior-octave-mode): Adjust column width so that Octave output,
15270         for example from 'ls', can fit into the window nicely.
15272 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
15274         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
15275         Highlight expansions inside regexp literals.
15277 2013-05-31  Glenn Morris  <rgm@gnu.org>
15279         * obsolete/sym-comp.el (symbol-complete):
15280         Replace obsolete completion-annotate-function.
15282         * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
15284 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
15286         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
15287         New function, checks if point is inside a literal that allows
15288         expression expansion.
15289         (ruby-syntax-propertize-expansion): Use it.
15290         (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
15291         around the body.
15293 2013-05-30  Juri Linkov  <juri@jurta.org>
15295         * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
15296         to "\M-si".
15297         (isearch-invisible): New variable.
15298         (isearch-forward): Doc fix.
15299         (isearch-mode): Set `isearch-invisible'
15300         to the value of `search-invisible'.
15301         (isearch-toggle-case-fold): Doc fix.
15302         (isearch-toggle-invisible): New command.
15303         (isearch-query-replace): Let-bind `search-invisible'
15304         to the value of `isearch-invisible'.
15305         (isearch-search): Use `isearch-invisible' instead of
15306         `search-invisible'.  Let-bind `search-invisible'
15307         to the value of `isearch-invisible'.  (Bug#11378)
15309 2013-05-30  Juri Linkov  <juri@jurta.org>
15311         * replace.el (perform-replace): Avoid `isearch-range-invisible'
15312         call when `query-flag' is nil and `search-invisible' is non-nil.
15313         (Bug#11746)
15315 2013-05-30  Glenn Morris  <rgm@gnu.org>
15317         * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
15319         * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
15320         (cc-require): Suppress spurious "noruntime" warnings.
15321         (cc-require-when-compile): Use fboundp, for sake of compiler.
15323         * progmodes/cc-mode.el: Move load of cc-vars before that of
15324         cc-langs (which in turn loads cc-vars), to quieten compiler.
15326 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15328         * paren.el: Simplify the code.
15329         (show-paren-mode): Always start the timer.
15330         (show-paren--idle-timer): Rename from show-paren-idle-timer.
15331         (show-paren--overlay, show-paren--overlay-1): Rename from
15332         show-paren-overlay and show-paren-overlay-1, and initialize to an
15333         overlay rather than to nil.
15334         (show-paren-function): Misc cleanup and simplifications.
15336 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15338         * paren.el (show-paren-data-function): New hook.
15339         (show-paren--default): New function, extracted from show-paren-function.
15340         (show-paren-function): Use show-paren-data-function.
15342 2013-05-30  Glenn Morris  <rgm@gnu.org>
15344         * ielm.el (ielm-map, ielm-complete-symbol):
15345         Use completion-at-point rather than obsolete functions.
15346         (inferior-emacs-lisp-mode): Doc fix.
15347         Set completion-at-point-functions, rather than
15348         comint-dynamic-complete-functions.
15350         * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
15351         (eshell-cmpl-initialize, eshell-complete-parse-arguments):
15352         Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
15354         * image.el (image-animated-p): Tweak definition.
15356         * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
15357         (rlogin-process-connection-type): Tweak default.  Add set-after.
15358         (rlogin-host): Doc fix.
15359         (rlogin): Tweak prompt.
15360         (rlogin-tab-or-complete): Use completion-at-point rather than alias.
15362         * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
15363         * progmodes/tcl.el (inferior-tcl-mode-map):
15364         Use completion-at-point rather than obsolete alias.
15366         * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
15368         * minibuffer.el (read-file-name-completion-ignore-case):
15369         Move before completion--in-region, for eager macro expansion.
15371 2013-05-29  Juri Linkov  <juri@jurta.org>
15373         * replace.el (occur-engine): Rename `globalcount' to `global-lines'
15374         for total count of matching lines.  Add `global-matches' for total
15375         count of matches.  Rename `matches' to `lines' for count of
15376         matching lines.  Add `matches' for count of matches.
15377         Rename `lines' to `curr-line' for line count.  Rename `prev-lines'
15378         to `prev-line' for line number of prev match endpt.
15379         Increment `matches' for every match.  Print the number of
15380         matching lines in the header.
15381         (occur-context-lines): Rename `lines' to `curr-line'.
15382         Rename `prev-lines' to `prev-line'.  (Bug#14017)
15384 2013-05-29  Juri Linkov  <juri@jurta.org>
15386         * replace.el (perform-replace): Add `skip-read-only-count',
15387         `skip-filtered-count', `skip-invisible-count' let-bound to 0.
15388         Increment them for corresponding conditions and report the number
15389         of skipped occurrences in the final message.  (Bug#11746)
15390         (query-replace, query-replace-regexp, query-replace-regexp-eval)
15391         (replace-string, replace-regexp): Doc fix.
15393 2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15395         * emacs-lisp/trace.el (trace--read-args): Provide a default.
15397         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
15398         prog-mode-map (bug#14504).
15400 2013-05-29  Leo Liu  <sdl.web@gmail.com>
15402         * progmodes/octave.el (octave-indent-comment): Tweak regexps.
15403         (octave-help): Small simplification.
15405         * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
15406         off the highlight first.
15408 2013-05-29  Glenn Morris  <rgm@gnu.org>
15410         * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
15411         Handle idlwave-last-system-routine-info-cons-cell being nil.
15413         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
15414         (idlwave-write-paths): Simplify via with-temp-buffer.
15416         * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
15417         * emulation/cua-rect.el: Also load cua-base at run time.
15419         * progmodes/cperl-mode.el (imenu-choose-buffer-index)
15420         (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
15421         (cperl-imenu-on-info): Require imenu.
15423 2013-05-28  Alan Mackenzie  <acm@muc.de>
15425         Handle "capitalised keywords" correctly.
15426         * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
15428 2013-05-28  Aidan Gauland  <aidalgol@amuri.net>
15430         * eshell/em-unix.el: Add -r option to cp.
15432 2013-05-28  Glenn Morris  <rgm@gnu.org>
15434         * vc/vc-arch.el (vc-exec-after): Declare.
15435         (vc-switches): Autoload.
15436         * vc/vc-bzr.el: No need to require vc when compiling.
15437         (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
15438         (vc-resynch-buffer, vc-dir-refresh): Declare.
15439         (vc-setup-buffer, vc-switches): Autoload.
15440         * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
15441         (vc-resynch-buffer): Declare.
15442         (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
15443         * vc/vc-dir.el (desktop-missing-file-warning): Declare.
15444         * vc/vc-git.el (vc-exec-after, vc-set-async-update)
15445         (grep-read-regexp, grep-read-files, grep-expand-template)
15446         (vc-dir-refresh): Declare.
15447         (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
15448         * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
15449         (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
15450         * vc/vc-mtn.el (vc-exec-after): Declare.
15451         (vc-switches): Autoload.
15452         * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
15453         (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
15454         (vc-file-tree-walk): Declare.
15455         * vc/vc-sccs.el (vc-file-tree-walk): Declare.
15456         (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
15457         (vc-tag-precondition, vc-rename-master): Autoload.
15458         * vc/vc-svn.el (vc-exec-after): Declare.
15459         (vc-switches, vc-setup-buffer): Autoload.
15460         * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
15461         Autoload.
15462         (vc-resynch-buffer): Declare.
15464         * obsolete/fast-lock.el (byte-compile-warnings):
15465         Don't warn about obsolete features in this obsolete file.
15467         * progmodes/cc-vars.el (c-macro-names-with-semicolon):
15468         Move definition before use.
15470         * play/dunnet.el (byte-compile-warnings): Don't disable them all.
15471         (dun-unix-verbs): Remove dun-zippy.
15472         (dun-zippy): Remove function.
15474         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
15476 2013-05-27  Juri Linkov  <juri@jurta.org>
15478         * replace.el (replace-search): New function with code moved out
15479         from `perform-replace'.
15480         (replace-highlight, replace-dehighlight): Move function definitions
15481         up closer to `replace-search'.  (Bug#11746)
15483 2013-05-27  Juri Linkov  <juri@jurta.org>
15485         * replace.el (perform-replace): Ignore invisible matches.
15486         In addition to checking `query-replace-skip-read-only', also
15487         filter out matches by calling `run-hook-with-args-until-failure'
15488         on `isearch-filter-predicates', and also check `search-invisible'
15489         for t or call `isearch-range-invisible'.
15490         (replace-dehighlight): Call `isearch-clean-overlays'.  (Bug#11746)
15492 2013-05-27  Juri Linkov  <juri@jurta.org>
15494         * isearch.el (isearch-filter-predicates): Rename from
15495         `isearch-filter-predicate'.  Doc fix.  (Bug#11378)
15496         (isearch-message-prefix): Display text from the property
15497         `isearch-message-prefix' of the currently active filters.
15498         (isearch-search): Don't compare `isearch-filter-predicate' with
15499         `isearch-filter-visible'.  Call `run-hook-with-args-until-failure'
15500         on `isearch-filter-predicates'.  Also check `search-invisible' for t
15501         or call `isearch-range-invisible'.
15502         (isearch-filter-visible): Make obsolete.
15503         (isearch-lazy-highlight-search):
15504         Call `run-hook-with-args-until-failure' on
15505         `isearch-filter-predicates' and use `isearch-range-invisible'.
15507         * info.el (Info-search): Call `run-hook-with-args-until-failure' on
15508         `isearch-filter-predicates' instead of `funcall'ing
15509         `isearch-filter-predicate'.
15510         (Info-mode): Set `Info-isearch-filter' to
15511         `isearch-filter-predicates' instead of `isearch-filter-predicate'.
15513         * dired-aux.el (dired-isearch-filter-predicate-orig):
15514         Remove variable.
15515         (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
15516         (dired-isearch-filenames-end): Add and remove
15517         `dired-isearch-filter-filenames' in `isearch-filter-predicates'
15518         instead of changing the value of `isearch-filter-predicate'.
15519         Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
15520         (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
15521         Put property `isearch-message-prefix' to "filename " on
15522         `dired-isearch-filter-filenames'.
15524         * wdired.el (wdired-change-to-wdired-mode):
15525         Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
15526         locally instead of changing `isearch-filter-predicate'.
15527         (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
15529 2013-05-27  Dmitry Gutov  <dgutov@yandex.ru>
15531         * vc/vc-git.el (vc-git-working-revision): When in detached mode,
15532         return the commit hash (Bug#14459).  Also set the
15533         `vc-git-detached' property.
15534         (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
15535         (vc-git-mode-line-string): Use the same help-echo format whether
15536         in detached mode or not, because we know the actual revision now.
15537         When in detached mode, shorten the revision to 7 chars.
15539 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15541         * emacs-lisp/easy-mmode.el (define-minor-mode):
15542         * emacs-lisp/derived.el (define-derived-mode): Always defvar the
15543         mode hook and provide a docstring.
15545 2013-05-27  Alan Mackenzie  <acm@muc.de>
15547         Remove spurious syntax-table text properties inserted by C-y.
15548         * progmodes/cc-mode.el (c-after-change): Also clear hard
15549         syntax-table property with value nil.
15551 2013-05-27  Michael Albinus  <michael.albinus@gmx.de>
15553         * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
15554         when reading the events; the buffer layout shall not be changed.
15556 2013-05-27  Leo Liu  <sdl.web@gmail.com>
15558         * progmodes/octave.el (inferior-octave-directory-tracker-resync):
15559         New variable.
15560         (inferior-octave-directory-tracker): Automatically re-sync
15561         default-directory.
15562         (octave-help): Improve handling of 'See also'.
15564 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15566         * doc-view.el: Minor naming convention tweaks.
15567         (desktop-buffer-mode-handlers): Don't add to it repeatedly.
15569         * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
15570         even if there's no `display' property yet (bug#14435).
15572 2013-05-25  Eli Zaretskii  <eliz@gnu.org>
15574         * subr.el (unmsys--file-name): Rename from reveal-filename.
15576         * Makefile.in (custom-deps, finder-data, autoloads)
15577         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
15578         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
15579         ($(CAL_DIR)/hol-loaddefs.el): All users changed.
15581 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15583         * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
15584         error-completion on the first 2 args of condition-case (bug#14446).
15585         Don't burp at EOB.
15587 2013-05-25  Leo Liu  <sdl.web@gmail.com>
15589         * comint.el (comint-previous-matching-input): Do not flood the
15590         *Messages* buffer with trivial messages.
15592 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15594         * progmodes/flymake.el (flymake-nop): Don't return a string.
15595         (flymake-set-at): Fix typo.
15597         * simple.el (read--expression): New function, extracted from
15598         eval-expression.  Set completion-at-point-functions (bug#14465).
15599         (eval-expression, eval-minibuffer): Use it.
15601 2013-05-25  Xue Fuqiao  <xfq.free@gmail.com>
15603         * progmodes/flymake.el (flymake-save-buffer-in-file)
15604         (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
15605         (flymake-selected-frame, flymake-log, flymake-ins-after)
15606         (flymake-set-at, flymake-get-buildfile-from-cache)
15607         (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
15608         (flymake-find-possible-master-files, flymake-save-buffer-in-file):
15609         Refine the doc string.
15610         (flymake-get-file-name-mode-and-masks): Reformat.
15611         (flymake-get-real-file-name-function): Fix a minor bug.
15613 2013-05-24  Juri Linkov  <juri@jurta.org>
15615         * progmodes/grep.el (grep-mode-font-lock-keywords):
15616         Support =linenumber= format used by git-grep for lines with
15617         function names.  (Bug#13549)
15619 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15621         * progmodes/octave.el (octave-smie-rules): Return nil rather than
15622         0 after a semi-colon; it works better for smie-auto-fill.
15623         (octave--indent-new-comment-line): New function.
15624         (octave-indent-new-comment-line): Use it (indirectly).
15625         (octave-mode): Don't disable smie-auto-fill.  Use add-function to
15626         modify comment-line-break-function.
15628         * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
15629         (smie-setup): Use add-function to set it.
15631 2013-05-24  Sam Steingold  <sds@gnu.org>
15633         * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
15634         argument (before the `interactive' argument).
15636 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15638         * image-mode.el (image-mode-winprops): Add winprops to
15639         image-mode-winprops-alist before running
15640         image-mode-new-window-functions.
15641         * doc-view.el (doc-view-new-window-function): Don't delay
15642         doc-view-goto-page via timers (bug#14435).
15644 2013-05-24  Tassilo Horn  <tsdh@gnu.org>
15646         * doc-view.el: Integrate with desktop.el.  (Bug#14435)
15647         (doc-view-desktop-save-buffer): New function.
15648         (doc-view-restore-desktop-buffer): New function.
15649         (desktop-buffer-mode-handlers):
15650         Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
15651         handler.
15652         (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
15653         `desktop-save-buffer' function.
15655 2013-05-24  Michael Albinus  <michael.albinus@gmx.de>
15657         * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
15658         (tramp-gvfs-file-name-handler): Raise a user error when
15659         `tramp-gvfs-enabled' is nil.
15660         (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
15661         Do not raise a user error when loading package.  (Bug#14447)
15663         * net/xesam.el: Move to obsolete/.
15665 2013-05-24  Glenn Morris  <rgm@gnu.org>
15667         * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
15669         * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
15671         * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
15672         (Info-find-node, Man-getpage-in-background): Declare.
15674         * mail/unrmail.el (unrmail):
15675         Replace obsolete detect-coding-with-priority.
15677         * net/socks.el (socks-split-string): Use this rather than split-string.
15678         (socks-nslookup-host): Update for above change.
15679         (dynamic-choice, s5-dynamic-choice-match)
15680         (s5-dynamic-choice-match-inline, s5-widget-value-create):
15681         Comment out unused code.
15683         * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
15684         * progmodes/gud.el (gud-gdb-completion-function): Move before use.
15685         (gud-tooltip-echo-area): Make obsolete.
15686         (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
15688         * progmodes/js.el (js--optimize-arglist): Declare.
15690         * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
15692         * progmodes/which-func.el (ediff-window-A, ediff-window-B)
15693         (ediff-window-C): Declare.
15695         * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
15696         Tweak requires to silence compiler.
15698         * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
15699         (he-search-string, he-tried-table, he-expand-list)
15700         (he-init-string, he-string-member, he-substitute-string)
15701         (he-reset-string): Declare.
15703         * obsolete/options.el (list-options): Use custom-variable-p,
15704         rather than obsolete alias.
15706 2013-05-23  Sam Steingold  <sds@gnu.org>
15708         * simple.el (shell-command-on-region): Pass the `replace' argument
15709         down to `call-process-region' to comply with the doc as reported on
15710         <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
15712 2013-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15714         * emacs-lisp/smie.el (smie-indent-forward-token)
15715         (smie-indent-backward-token): Handle string tokens (bug#14381).
15717 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15719         * ielm.el (ielm-menu): New menu.
15720         (inferior-emacs-lisp-mode): Set comment-start.
15722 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15724         * textmodes/reftex.el (reftex-ref-style-toggle):
15725         Fix deactivate action.
15727         * textmodes/reftex-vars.el (reftex-ref-style-alist):
15728         Add cleveref macros.
15730         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
15731         Accept options for bibliography commands.
15732         * textmodes/reftex-vars.el (reftex-bibliography-commands):
15733         Add addbibresource.  Basic Biblatex support.
15735 2013-05-23  Michael Albinus  <michael.albinus@gmx.de>
15737         * net/tramp-gvfs.el (top):
15738         * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
15739         when loading package.  (Bug#14447)
15741 2013-05-23  Glenn Morris  <rgm@gnu.org>
15743         * progmodes/js.el: No need to load comint when compiling.
15744         (ring-insert, comint-send-string, comint-send-input)
15745         (comint-last-input-end, ido-chop): Declare.
15747         * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
15748         * vc/ediff-mult.el: Adjust requires.
15749         (ediff-directories-internal, ediff-directory-revisions-internal)
15750         (ediff-patch-file-internal): Declare.
15751         * vc/ediff-ptch.el: Adjust requires.
15752         (ediff-use-last-dir, ediff-buffers-internal): Declare.
15753         (ediff-find-file): Autoload.
15754         * vc/ediff-util.el: No need to load ediff when compiling.
15755         (ediff-regions-internal): Declare.
15756         * vc/ediff-wind.el: Adjust requires.
15757         (ediff-compute-toolbar-width): Define when compiling.
15758         (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
15759         * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
15760         (dired-get-filename, dired-get-marked-files)
15761         (ediff-last-dir-patch, ediff-patch-default-directory)
15762         (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
15763         (ediff-patch-buffer-internal): Declare.
15765         * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
15766         (ispell-process, ispell-buffer-local-words, lm-summary)
15767         (lm-section-start, lm-section-end): Declare.
15768         (checkdoc-ispell-init): Simplify.
15770         * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
15771         (he-string-member, he-reset-string, he-substitute-string): Declare.
15773         * eshell/em-ls.el: Adjust requires.
15774         (eshell-glob-regexp): Declare.
15775         * eshell/em-tramp.el: Adjust requires.
15776         (eshell-parse-command): Autoload.
15777         * eshell/em-xtra.el: Adjust requires.
15778         (eshell-parse-command): Autoload.
15779         * eshell/esh-ext.el: Adjust requires.
15780         (eshell-parse-command, eshell-close-handles): Autoload.
15781         * eshell/esh-io.el: Adjust requires.
15782         (eshell-output-filter): Autoload.
15783         * eshell/esh-util.el: No need to load tramp when compiling.
15784         (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
15785         Declare.
15786         (eshell-parse-ange-ls): Require ange-ftp and tramp.
15787         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
15788         * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
15789         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
15790         * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
15791         * eshell/esh-opt.el, eshell/esh-proc.el:
15792         * eshell/esh-var.el: Adjust requires.
15793         * eshell/eshell.el: Do not require esh-util twice.
15794         (eshell-add-input-to-history): Declare.
15795         (eshell-command): Check history module is active before using it.
15797         * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
15799 2013-05-22  Leo Liu  <sdl.web@gmail.com>
15801         * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
15803 2013-05-22  Michael Albinus  <michael.albinus@gmx.de>
15805         * autorevert.el (auto-revert-notify-add-watch)
15806         (auto-revert-notify-handler): Add `attrib' for the inotify case,
15807         it indicates changes in file modification time.
15809 2013-05-22  Glenn Morris  <rgm@gnu.org>
15811         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
15812         Always delete the autoloaded function from the noruntime and
15813         unresolved functions lists.
15815         * allout.el: No need to load epa, epg, overlay when compiling.
15816         (epg-context-set-passphrase-callback, epg-list-keys)
15817         (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
15818         (epg-key-user-id-list): Declare.
15820         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
15821         (viper-set-parsing-style-toggling-macro)
15822         (viper-set-emacs-state-searchstyle-macros):
15823         Use called-interactively-p on Emacs.
15824         (viper-looking-back): Make it an obsolete alias.  Update callers.
15825         * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
15826         Use looking-back rather than viper-looking-back.
15827         (viper-tmp-insert-at-eob, viper-enlarge-region)
15828         (viper-read-string-with-history, viper-register-to-point)
15829         (viper-append-to-register, viper-change-state-to-vi)
15830         (viper-backward-char-carefully, viper-forward-char-carefully)
15831         (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
15832         (viper-change-state-to-emacs): Declare.
15833         * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
15834         (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
15835         * emulation/viper-mous.el: Do not load viper-cmd.
15836         (viper-backward-char-carefully, viper-forward-char-carefully)
15837         (viper-forward-word, viper-adjust-window): Declare.
15839         * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
15841         * progmodes/idlw-help.el (idlwave-help-fontify):
15842         Use called-interactively-p.
15844         * term/w32console.el (w32-get-console-codepage)
15845         (w32-get-console-output-codepage): Declare.
15847         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
15848         Remove unnecessary declarations.
15849         (dframe-message): Doc fix.
15851         * info.el (dframe-select-attached-frame, dframe-current-frame):
15852         Declare.
15854         * speedbar.el (speedbar-message): Make it an obsolete alias.
15855         Update all callers.
15856         (speedbar-with-attached-buffer)
15857         (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
15858         (speedbar-with-writable): Use backquote.
15859         * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
15860         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
15861         Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
15862         rather than speedbar- aliases.
15863         * mail/rmail.el: Load dframe rather than speedbar when compiling.
15864         (speedbar-make-specialized-keymap, speedbar-insert-button)
15865         (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
15866         (speedbar-do-function-pointer): Declare.
15867         (rmail-speedbar-button, rmail-speedbar-find-file)
15868         (rmail-speedbar-move-message):
15869         Use dframe-with-attached-buffer rather than speedbar- alias.
15870         * progmodes/gud.el: Load dframe rather than speedbar when compiling.
15871         (dframe-message, speedbar-make-specialized-keymap)
15872         (speedbar-add-expansion-list, speedbar-mode-functions-list)
15873         (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
15874         (speedbar-insert-button, dframe-select-attached-frame)
15875         (dframe-maybee-jump-to-attached-frame)
15876         (speedbar-change-initial-expansion-list)
15877         (speedbar-previously-used-expansion-list-name): Declare.
15878         (gud-speedbar-item-info, gud-gdb-goto-stackframe):
15879         Use dframe-message, dframe-with-attached-buffer rather than
15880         speedbar- aliases.
15881         (gud-sentinel): Silence compiler.
15882         * progmodes/vhdl-mode.el (speedbar-refresh)
15883         (speedbar-do-function-pointer, speedbar-add-supported-extension)
15884         (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
15885         (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
15886         (speedbar-extension-list-to-regex, speedbar-directory-buttons)
15887         (speedbar-file-lists, speedbar-make-tag-line)
15888         (speedbar-line-directory, speedbar-goto-this-file)
15889         (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
15890         (speedbar-delete-subblock, speedbar-position-cursor-on-line)
15891         (speedbar-make-button, speedbar-reset-scanners)
15892         (speedbar-files-item-info, speedbar-line-text)
15893         (speedbar-find-file-in-frame, speedbar-set-timer)
15894         (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
15895         (speedbar-with-writable): Do not (re)define it.
15896         (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
15897         rather than speedbar- alias.
15899 2013-05-21  Leo Liu  <sdl.web@gmail.com>
15901         * progmodes/octave.el (octave-mode-menu): Update and re-organize
15902         menu items.
15903         (octave-mode): Tweak fill-nobreak-predicate.
15904         (inferior-octave-startup): Check process to avoid infinite loop.
15905         (inferior-octave): Pop to buffer first to show abornmal process
15906         exit information.
15908 2013-05-21  Glenn Morris  <rgm@gnu.org>
15910         * printing.el (pr-menu-bar): Define when compiling.
15912 2013-05-21  Leo Liu  <sdl.web@gmail.com>
15914         * progmodes/octave.el (octave-auto-fill): Remove.
15915         (octave-indent-new-comment-line): Improve.
15916         (octave-mode): Use auto fill mode through
15917         comment-line-break-function and fill-nobreak-predicate.
15918         (octave-goto-function-definition): Support DEFUN_DLD.
15919         (octave-beginning-of-defun): Small tweak.
15920         (octave-help): Show parent directory.
15922 2013-05-21  Glenn Morris  <rgm@gnu.org>
15924         * files.el (dired-unmark):
15925         * progmodes/gud.el (gdb-input): Update declarations.
15927         * calculator.el (electric, ehelp): No need to load when compiling.
15928         (Electric-command-loop, electric-describe-mode): Declare.
15930         * doc-view.el (doc-view-current-converter-processes): Move before use.
15932         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
15933         Move MODE-set-explicitly definition before use.
15935         * international/mule-diag.el (mule-diag):
15936         Don't use obsolete window-system-version.
15938         * mail/feedmail.el (smtpmail): No need to load when compiling.
15939         (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
15941         * mail/mail-utils.el (rfc822): No need to load when compiling.
15942         (rfc822-addresses): Autoload it.
15943         (mail-strip-quoted-names): Trivial simplification.
15945         * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
15946         (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
15948         * net/snmp-mode.el (tempo): Don't duplicate requires.
15950         * progmodes/prolog.el (info): No need to load when compiling.
15951         (comint): Require before shell requires it.
15952         (Info-goto-node): Autoload it.
15953         (Info-follow-nearest-node): Declare.
15954         (prolog-help-info, prolog-goto-predicate-info): No need to require info.
15956         * textmodes/artist.el (picture-mode-exit): Declare.
15958         * textmodes/reftex-parse.el (reftex-parse-from-file):
15959         Trivial rewrite so the compiler can parse it better.
15961 2013-05-20  Leo Liu  <sdl.web@gmail.com>
15963         * progmodes/octave.el (octave-help-mode-map)
15964         (octave-help-mode-finish-hook): New variables.
15965         (octave-help-mode, octave-help-mode-finish): New functions.
15966         (octave-help): Use octave-help-mode.
15968 2013-05-20  Glenn Morris  <rgm@gnu.org>
15970         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
15972 2013-05-19  Dmitry Gutov  <dgutov@yandex.ru>
15974         * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
15975         start at point, so that expansion starting right after opening
15976         slash in a regexp is recognized.
15977         (ruby-syntax-before-regexp-re): New defvar, extracted from
15978         ruby-syntax-propertize-function.  Since the value of this regexp
15979         is looked up at runtime now, we should be able to turn
15980         `ruby-syntax-methods-before-regexp' into a defcustom later.
15981         (ruby-syntax-propertize-function): Split regexp matching into two
15982         parts, for opening and closing slashes.  That allows us to skip
15983         over string interpolations and support multiline regexps.
15984         Don't call `ruby-syntax-propertize-expansions', instead use another rule
15985         for them, which calls `ruby-syntax-propertize-expansion'.
15986         (ruby-syntax-propertize-expansions): Move `remove-text-properties'
15987         call to `ruby-syntax-propertize-function'.
15988         (ruby-syntax-propertize-expansion): Extracted from
15989         `ruby-syntax-propertize-expansions'.  Handles one expansion.
15990         (ruby-syntax-propertize-percent-literal): Leave point right after
15991         the percent symbol, so that the expression expansion rule can
15992         propertize the contents.
15993         (ruby-syntax-propertize-heredoc): Leave point at bol following the
15994         heredoc openers.
15995         (ruby-syntax-propertize-expansions): Remove.
15997 2013-05-18  Juri Linkov  <juri@jurta.org>
15999         * man.el (Man-default-man-entry): Remove `-' from the end
16000         of the default value.  (Bug#14400)
16002 2013-05-18  Glenn Morris  <rgm@gnu.org>
16004         * comint.el (comint-password-prompt-regexp):
16005         Allow "password for XXX" where XXX contains colons (eg https://...).
16007 2013-05-18  Leo Liu  <sdl.web@gmail.com>
16009         * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
16010         instead.  Include "--no-gui" to prevent hangs for Octave > 3.7.
16011         (octave-source-directories): Don't check process.
16012         (octave-source-directories, octave-find-definition): Doc fix.
16014 2013-05-18  Glenn Morris  <rgm@gnu.org>
16016         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
16017         Remove backspace/delete bindings.  (Bug#14392)
16019         * cus-dep.el (custom-make-dependencies): Sort the output.
16020         (custom-versions-load-alist): Convert comment to doc.
16022 2013-05-17  Leo Liu  <sdl.web@gmail.com>
16024         * newcomment.el (comment-search-backward): Stricter in finding
16025         comment start.  (Bug#14303)
16027         * progmodes/octave.el (octave-comment-start): Remove the SPC char.
16028         (octave-comment-start-skip): Properly anchored.
16030 2013-05-17  Leo Liu  <sdl.web@gmail.com>
16032         * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
16033         Clean up when turned off.  (Bug#14395)
16034         (smie--highlight-matching-block-overlay): No longer buffer-local.
16035         (smie-highlight-matching-block): Adjust.
16037 2013-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16039         Doc string fix for "nanoseconds" (Bug#14406).
16040         * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
16041         Fix doc string typo that had "nanoseconds" instead of "microseconds".
16043 2013-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
16045         * calc/calc-units.el (math-extract-units): Preserve powers
16046         of units.
16048 2013-05-17  Leo Liu  <sdl.web@gmail.com>
16050         * subr.el (delete-consecutive-dups): New function.
16051         * ido.el (ido-set-matches-1): Use it.
16052         * progmodes/octave.el (inferior-octave-completion-table): Use it.
16053         * ido.el (ido-remove-consecutive-dups): Remove.
16055 2013-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
16057         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
16058         (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
16059         regexp-opt's `words'.
16061 2013-05-16  Leo Liu  <sdl.web@gmail.com>
16063         * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
16064         (smie--highlight-matching-block-overlay)
16065         (smie--highlight-matching-block-lastpos)
16066         (smie--highlight-matching-block-timer): New variables.
16067         (smie-highlight-matching-block): New function.
16068         (smie-highlight-matching-block-mode): New minor mode.  (Bug#14395)
16069         (smie-setup): Conditionally enable smie-blink-matching-open.
16071 2013-05-16  Wilson Snyder  <wsnyder@wsnyder.org>
16073         Sync with upstream verilog-mode r840.
16074         * progmodes/verilog-mode.el (verilog-mode-version)
16075         (verilog-mode-release-date): Update.
16076         (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
16077         (verilog-sig-tieoff): Fix string error on
16078         AUTORESET with colon define, bug594.  Reported by Andrew Hou.
16079         (verilog-read-decls): Fix parameters confusing
16080         AUTOINST interfaces, bug565.  Reported by Leith Johnson.
16082 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
16084         * subr.el (reveal-filename): New function.
16086         * loadup.el: Compute Emacs executable versions on MS-Windows,
16087         where executables have the .exe extension.  Add a hard link
16088         emacs-XX.YY.ZZ.exe on MS-Windows.
16090         * Makefile.in (XARGS_LIMIT): New variable.
16091         (custom-deps, finder-data, autoloads)
16092         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
16093         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
16094         ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
16095         (compile-main): Limit xargs according to $(XARGS_LIMIT).
16097 2013-05-16  Leo Liu  <sdl.web@gmail.com>
16099         * progmodes/octave.el (octave-indent-defun): Mark obsolete.
16100         (octave-mode-menu, octave-mode-map): Remove its uses.
16102 2013-05-16  Reto Zimmermann  <reto@gnu.org>
16104         Sync with upstream vhdl mode v3.34.2.
16105         * progmodes/vhdl-mode.el: Use `push' throughout.
16106         (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
16107         (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
16108         Add IBM & Quartus compiler.  Enhance entry for ADVance MS compiler.
16109         (vhdl-actual-generic-name): New option to derive actual generic name.
16110         (vhdl-port-paste-signals): Replace formal by actual generics.
16111         (vhdl-beautify): New name for old group vhdl-align.  Update users.
16112         (vhdl-beautify-options): New option.
16113         (vhdl-last-input-event): New compat alias.  Use throughout.
16114         (vhdl-goto-line): Replace user level function `goto-line'.
16115         (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
16116         vhdl-fix-statement-buffer.
16117         (vhdl-create-mode-menu): Add some entries.
16118         (vhdl-align-region-groups): Respect vhdl-beautify-options.
16119         (vhdl-align-inline-comment-region-1): Handle "--" inside string.
16120         (vhdl-fixup-whitespace-region): Handle symbols at EOL.
16121         (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
16122         to force statements on one line.
16123         (vhdl-remove-trailing-spaces-region):
16124         New, split from vhdl-remove-trailing-spaces.
16125         (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
16126         Respect vhdl-beautify-options.
16127         (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
16128         (vhdl-update-sensitivity-list): Not add with index if exists without.
16129         Not include array index with signal.  Ignore keywords in comments.
16130         (vhdl-get-visible-signals): Regexp tweaks.
16131         (vhdl-template-component-inst): Handle empty library.
16132         (vhdl-template-type): Add template for 'enum' type.
16133         (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
16134         Use vhdl-replace-string.
16135         (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
16136         (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
16137         (vhdl-speedbar-initialize): Update for above name change.
16138         (vhdl-compose-wire-components): Fix in handling of constants.
16139         (vhdl-error-regexp-emacs-alist): New variable.
16140         (vhdl-error-regexp-add-emacs): New function;
16141         adds support for new compile.el (Emacs 22+)
16142         (vhdl-generate-makefile-1): Change target order for single lib. units.
16143         Allow use of absolute file names.
16145 2013-05-16  Leo Liu  <sdl.web@gmail.com>
16147         * simple.el (prog-indent-sexp): Indent enclosing defun.
16149 2013-05-15  Glenn Morris  <rgm@gnu.org>
16151         * cus-start.el (show-trailing-whitespace): Move to editing basics.
16152         * faces.el (trailing-whitespace): Don't use whitespace-faces group.
16153         * obsolete/old-whitespace.el (whitespace-faces): Remove group.
16154         (whitespace-highlight): Move to whitespace group.
16156         * comint.el (comint-source):
16157         * pcmpl-linux.el (pcmpl-linux):
16158         * shell.el (shell-faces):
16159         * eshell/esh-opt.el (eshell-opt):
16160         * international/ccl.el (ccl): Remove empty custom groups.
16162         * completion.el (dynamic-completion-mode):
16163         * jit-lock.el (jit-lock-debug-mode):
16164         * minibuffer.el (completion-in-region-mode):
16165         * type-break.el (type-break-mode-line-message-mode)
16166         (type-break-query-mode):
16167         * emulation/tpu-edt.el (tpu-edt-mode):
16168         * progmodes/subword.el (global-subword-mode, global-superword-mode):
16169         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
16170         * term/vt100.el (vt100-wide-mode): Specify explicit :group.
16172         * term/xterm.el (xterm): Change parent group to terminals.
16174         * master.el (master): Remove empty custom group.
16175         (master-mode): Remove unused :group argument.
16176         * textmodes/refill.el (refill): Remove empty custom group.
16177         (refill-mode): Remove unused :group argument.
16179         * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
16181         * cus-dep.el: Provide a feature.
16182         (custom-make-dependencies): Ignore dotfiles (dir-locals).
16183         Don't mistakenly ignore files whose basenames match a basename
16184         from preloaded-file-list (eg cedet/ede/simple.el).
16185         Add a fallback method for getting :group.
16187 2013-05-15  Juri Linkov  <juri@jurta.org>
16189         * isearch.el (isearch-char-by-name): Rename from
16190         `isearch-insert-char-by-name'.  Doc fix.
16191         (isearch-forward): Mention `isearch-char-by-name' in
16192         the docstring.  (Bug#13348)
16194         * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
16195         `exit-minibuffer' instead of
16196         `isearch-nonincremental-exit-minibuffer'.
16197         (isearch-edit-string): Remove mention of
16198         `isearch-nonincremental-exit-minibuffer' from docstring.
16199         (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
16200         (isearch-forward-exit-minibuffer)
16201         (isearch-reverse-exit-minibuffer): Add docstring.  (Bug#13348)
16203 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
16205         * loadup.el: Just use unversioned DOC.
16207         * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
16208         literals as extending to EOB.
16209         (nxml-last-fontify-end): Remove unused variable.
16210         (nxml-after-change1): Use with-silent-modifications.
16211         (nxml-extend-after-change-region): Simplify.
16212         (nxml-extend-after-change-region1): Remove function.
16213         (nxml-after-change1): Don't adjust for dependent regions.
16214         (nxml-fontify-matcher): Simplify.
16215         * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
16216         (xmltok-add-dependent): Remove function.
16217         (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
16218         (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
16219         (xmltok-scan-prolog-after-processing-instruction-open): Treat
16220         unclosed <[[, <?, comment, and other literals as extending to EOB.
16221         * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
16222         (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
16223         Remove functions.
16224         (rng-do-some-validation-1): Don't mark dependent regions.
16225         * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
16226         (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
16227         (nxml-clear-dependent-regions): Remove functions.
16228         (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
16229         (nxml-ensure-scan-up-to-date):
16230         Don't clear&mark dependent regions.
16232 2013-05-15  Leo Liu  <sdl.web@gmail.com>
16234         * progmodes/octave.el (octave-goto-function-definition):
16235         Improve and fix callers.
16237 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
16239         * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
16240         the setter (bug#14387).
16242         * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
16243         surrounding group (bug#14402).
16245 2013-05-14  Juri Linkov  <juri@jurta.org>
16247         * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
16248         (Bug#14390)
16250 2013-05-14  Glenn Morris  <rgm@gnu.org>
16252         * progmodes/f90.el (f90-imenu-generic-expression):
16253         Fix typo in 2013-05-08 change.  (Bug#14402)
16255 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
16257         * progmodes/gdb-mi.el (gdb-running, gdb-starting):
16258         Remove signals for which replies are never received.
16260 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
16262         * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
16263         (gdb-handler-alist, gdb-handler-number): Remove variables.
16264         (gdb-handler-list): New variable.
16265         (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
16266         (gdb-pending-handler-p, gdb-handle-reply)
16267         (gdb-remove-all-pending-triggers): New functions.
16268         (gdb-discard-unordered-replies): New defcustom.
16269         (gdb-handler): New defstruct.
16270         (gdb-wait-for-pending): Fix invalid backquote.  Use gdb-handler-list.
16271         instead of gdb-pending-triggers.  Update docstring.
16272         (gdb-init-1): Remove dead variables.  Initialize gdb-handler-list.
16273         (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
16274         (gdb-var-update-handler, def-gdb-auto-update-trigger)
16275         (def-gdb-auto-update-handler, gdb-get-changed-registers)
16276         (gdb-changed-registers-handler, gdb-get-main-selected-frame)
16277         (gdb-frame-handler): Pending triggers are now automatically managed.
16278         (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
16279         Remove argument.
16280         (gdb-input): Automatically handles pending triggers.  Update docstring.
16281         (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
16282         (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
16283         Update comments.
16284         (gdb-done-or-error): Now use gdb-handle-reply.
16286 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
16288         * progmodes/gdb-mi.el (gdb-input): Include token numbers in
16289         gdb-debug-log.
16291 2013-05-14  Glenn Morris  <rgm@gnu.org>
16293         * subr.el (user-emacs-directory-warning): New option.
16294         (locate-user-emacs-file): Handle non-accessible .emacs.d.  (Bug#13930)
16296 2013-05-14  Leo Liu  <sdl.web@gmail.com>
16298         * progmodes/octave.el (octave-font-lock-keywords): Fix error
16299         during redisplay.
16300         (octave-goto-function-definition, octave-find-definition): Minor tweaks.
16301         (octave-font-lock-texinfo-comment): Fix invalid search bound
16302         error: wrong side of point.
16304 2013-05-14  Glenn Morris  <rgm@gnu.org>
16306         * progmodes/flymake.el (flymake-xml-program): New option.
16307         (flymake-xml-init): Use it.
16309         * term/xterm.el: Provide a feature.
16311         * term/sup-mouse.el: Move to obsolete/.  Provide a feature.
16313 2013-05-13  Glenn Morris  <rgm@gnu.org>
16315         * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
16316         Add compat aliases as a hack workaround.  (Bug#14384)
16318 2013-05-13  Leo Liu  <sdl.web@gmail.com>
16320         * progmodes/octave.el (octave-indent-comment): Fix indentation for
16321         ###, and %!.
16322         (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
16323         C-M-q.
16324         (octave-comment-start-skip): Include %!.
16325         (octave-mode): Set comment-start-skip to octave-comment-start-skip.
16327 2013-05-12  Leo Liu  <sdl.web@gmail.com>
16329         * progmodes/octave.el (inferior-octave-startup): Store the value
16330         of __octave_srcdir__ for octave-source-directories.
16331         (inferior-octave-check-process): New function refactored out of
16332         inferior-octave-send-list-and-digest.
16333         (octave-source-directories)
16334         (octave-find-definition-filename-function): New variables.
16335         (octave-source-directories)
16336         (octave-find-definition-default-filename): New functions.
16337         (octave-find-definition): Improve to find functions implemented in C++.
16339 2013-05-12  Glenn Morris  <rgm@gnu.org>
16341         * calendar/diary-lib.el (diary-outlook-format-1):
16342         Don't include dayname in the output.  (Bug#14349)
16344 2013-05-11  Glenn Morris  <rgm@gnu.org>
16346         * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
16348         * cus-dep.el (custom-make-dependencies): Only use safe local variables.
16349         Treat cc-provide like provide.
16351 2013-05-11  Kevin Ryde  <user42@zip.com.au>
16353         * cus-dep.el (custom-make-dependencies):
16354         Use generated-autoload-load-name for the sake of files such
16355         such cedet/semantic/bovine/c.el, where the base file name
16356         is not in load-path.  (Bug#5277)
16358 2013-05-11  Glenn Morris  <rgm@gnu.org>
16360         * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
16361         Provide features.
16363 2013-05-11  Leo Liu  <sdl.web@gmail.com>
16365         * progmodes/octave.el (octave-indent-comment): Improve.
16366         (octave-eldoc-message-style, octave-eldoc-cache): New variables.
16367         (octave-eldoc-function-signatures, octave-eldoc-function):
16368         New functions.
16369         (octave-mode, inferior-octave-mode): Add eldoc support.
16371 2013-05-11  Richard Stallman  <rms@gnu.org>
16373         * epa.el (epa-decrypt-file): Take output file name as argument
16374         and read it using `interactive'.
16376 2013-05-11  Leo Liu  <sdl.web@gmail.com>
16378         * progmodes/octave.el (octave-beginning-of-line)
16379         (octave-end-of-line): Check before using up-list because it jumps
16380         out of more syntactic contructs since moving to smie.
16381         (octave-indent-comment): New function.
16382         (octave-mode): Use it in smie-indent-functions.  (Bug#14350)
16383         (octave-begin-keywords, octave-end-keywords)
16384         (octave-reserved-words, octave-smie-bnf-table)
16385         (octave-smie-rules): Add new keywords from Octave 3.6.4.
16387 2013-05-11  Glenn Morris  <rgm@gnu.org>
16389         * faces.el (internal-face-x-get-resource):
16390         * frame.el (ns-display-monitor-attributes-list):
16391         * calc/calc-aent.el (math-to-radians-2):
16392         * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
16393         Fix declarations.
16395         * calc/calc-menu.el: Make it loadable in isolation.
16397         * net/eudcb-bbdb.el: Make it loadable without bbdb.
16398         (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
16399         (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
16400         (eudc-bbdb-query-internal): Require 'bbdb.
16402         * lpr.el (lpr-headers-switches):
16403         * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
16405         * progmodes/sql.el (sql-login-params): Fix and improve :type.
16407         * emulation/edt-mapper.el: In batch mode, error rather than hang.
16409         * term.el (term-set-escape-char): Make it idempotent.
16411 2013-05-10  Leo Liu  <sdl.web@gmail.com>
16413         * progmodes/octave.el (inferior-octave-completion-table):
16414         No longer a function and all uses changed.  Use cache to speed up
16415         completion due to bug#11906.
16416         (octave-beginning-of-defun): Re-write to be more general.
16418 2013-05-10  Glenn Morris  <rgm@gnu.org>
16420         * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
16422 2013-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
16424         * comint.el (comint-redirect-send-command-to-process): Use :around
16425         rather than :override for comint-redirect-filter.
16426         (comint-redirect-filter): Add the corresponding `orig-filter' argument.
16427         Call it instead of comint-redirect-original-filter-function (which
16428         is gone).  Reported by Juanma Barranquero <lekktu@gmail.com>.
16430 2013-05-09  Jan Djärv  <jan.h.d@swipnet.se>
16432         * frame.el (display-monitor-attributes-list): Add NS case.
16433         (ns-display-monitor-attributes-list): Declare.
16435 2013-05-09  Ulrich Mueller  <ulm@gentoo.org>
16437         * descr-text.el (describe-char): Fix %d/%x typo.  (Bug#14360)
16439 2013-05-09  Glenn Morris  <rgm@gnu.org>
16441         * international/fontset.el (vertical-centering-font-regexp):
16442         Set standard-value.
16444         * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
16446         * bookmark.el (bookmark-search-delay):
16447         * cus-start.el (vertical-centering-font-regexp):
16448         * ps-mule.el (ps-mule-font-info-database-default):
16449         * ps-print.el (ps-default-fg, ps-default-bg):
16450         * type-break.el (type-break-good-break-interval):
16451         * whitespace.el (whitespace-indentation-regexp)
16452         (whitespace-space-after-tab-regexp):
16453         * emacs-lisp/testcover.el (testcover-1value-functions)
16454         (testcover-noreturn-functions, testcover-progn-functions)
16455         (testcover-prog1-functions):
16456         * emulation/viper-init.el (viper-emacs-state-cursor-color):
16457         * eshell/em-glob.el (eshell-glob-translate-alist):
16458         * play/tetris.el (tetris-tty-colors):
16459         * progmodes/cpp.el (cpp-face-default-list):
16460         * progmodes/flymake.el (flymake-allowed-file-name-masks):
16461         * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
16462         (idlwave-help-browser-generic-args):
16463         * progmodes/make-mode.el (makefile-special-targets-list):
16464         * progmodes/python.el (python-shell-virtualenv-path):
16465         * progmodes/verilog-mode.el (verilog-active-low-regexp)
16466         (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
16467         (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
16468         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
16469         * textmodes/reftex-vars.el (reftex-format-label-function):
16470         * textmodes/remember.el (remember-diary-file): Fix custom types.
16472         * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
16473         Add :version.
16475 2013-05-09  Leo Liu  <sdl.web@gmail.com>
16477         * progmodes/octave.el (inferior-octave-completion-at-point):
16478         Restore file completion.  (Bug#14300)
16479         (inferior-octave-startup): Fix incorrect highlighting for the
16480         first prompt.
16482 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16484         * progmodes/ruby-mode.el: First cut at SMIE support.
16485         (ruby-use-smie): New var.
16486         (ruby-smie-grammar): New constant.
16487         (ruby-smie--bosp, ruby-smie--implicit-semi-p)
16488         (ruby-smie--forward-token, ruby-smie--backward-token)
16489         (ruby-smie-rules): New functions.
16490         (ruby-mode-variables): Setup SMIE if applicable.
16492 2013-05-08  Eli Zaretskii  <eliz@gnu.org>
16494         * simple.el (line-move-visual): Signal beginning/end of buffer
16495         only if vertical-motion moved less than it was requested.  Avoids
16496         silly incorrect error messages when there are display strings with
16497         multiple newlines at EOL.
16499 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16501         * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
16502         * progmodes/prolog.el (prolog-underscore-wordchar-flag)
16503         (prolog-char-quote-workaround):
16504         * progmodes/cperl-mode.el (cperl-under-as-char):
16505         * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
16506         Mark as obsolete.
16507         (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
16508         their declaration.
16509         (vhdl-mode-syntax-table-init): Remove.
16511         * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
16512         last change.
16514         * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
16515         syntax for "_".
16516         (ld-script-font-lock-keywords):
16517         Change regexps to use things like \_< and \_>.
16519         * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
16520         Change all regexps to use things like \_< and \_>.
16522         * progmodes/autoconf.el (autoconf-definition-regexp)
16523         (autoconf-font-lock-keywords, autoconf-current-defun-function):
16524         Handle a _ with symbol syntax.
16525         (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
16527         * progmodes/ada-mode.el (ada-mode-abbrev-table):
16528         Consolidate declaration.
16529         (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
16530         the declaration.
16531         (ada-create-syntax-table): Remove.
16532         (ada-capitalize-word): Don't mess with the syntax of "_" since it
16533         already has the right syntax nowadays.
16534         (ada-goto-next-word): Don't change the syntax of "_".
16536         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
16537         with-wrapper-hook.
16539 2013-05-08  Sam Steingold  <sds@gnu.org>
16541         * thingatpt.el (thing-at-point): Accept optional second argument
16542         NO-PROPERTIES to strip the text properties from the return value.
16543         * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
16544         to `thing-at-point' instead of stripping the properties ourselves.
16545         Also, when `thing-at-point' fails to find a url, prepend "http://"
16546         to the filename at point on the assumption that the user is
16547         pointing at something like gnu.org/gnu.
16549 2013-05-08  Juanma Barranquero  <lekktu@gmail.com>
16551         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
16552         * faces.el (crm-separator):
16553         Silence byte-compiler.
16555         * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
16556         (tool-bar-map): Remove unneeded defvars.
16558 2013-05-08  Leo Liu  <sdl.web@gmail.com>
16560         Re-work a fix for bug#10994 based on Le Wang's patch.
16561         * ido.el (ido-remove-consecutive-dups): New helper.
16562         (ido-completing-read): Use it.
16563         (ido-chop): Revert fix for bug#10994.
16565 2013-05-08  Adam Spiers  <emacs@adamspiers.org>
16567         * cus-edit.el (custom-save-variables):
16568         Pretty-print long values.  (Bug#14187)
16570 2013-05-08  Glenn Morris  <rgm@gnu.org>
16572         * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
16573         (m4-mode-syntax-table): Init in the defvar.
16574         (m4-mode-abbrev-table): Let define-derived-mode define it.
16576 2013-05-08  Tom Tromey  <tromey@redhat.com>
16578         * progmodes/m4-mode.el (m4-mode-syntax-table):
16579         Do not treat "_" as word constituent.  (Bug#14167)
16581 2013-05-07  Glenn Morris  <rgm@gnu.org>
16583         * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
16584         Remove explicit eshell-isearch-cancel-map.
16586         * progmodes/f90.el (f90-smart-end-names): New option.
16587         (f90-smart-end): Doc fix.
16588         (f90-end-block-optional-name): New constant.
16589         (f90-block-match): Respect f90-smart-end-names.
16591 2013-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
16593         * progmodes/octave.el (octave-smie-forward-token): Be more careful
16594         about implicit semi-colons (bug#14218).
16596 2013-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16598         * frame.el (display-monitor-attributes-list)
16599         (frame-monitor-attributes): New functions.
16601 2013-05-06  Leo Liu  <sdl.web@gmail.com>
16603         * progmodes/octave.el (octave-syntax-propertize-function): Change
16604         \'s syntax to escape when inside double-quoted strings.  (Bug#14332)
16605         (octave-font-lock-keywords): Use octave-operator-regexp.
16606         (octave-completion-at-point): Rename from
16607         octave-completion-at-point-function.
16608         (inferior-octave-directory-tracker): Robustify.
16609         (octave-text-functions): Remove and fix its uses.  No such things
16610         any more.
16612 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16614         * emacs-lisp/trace.el (trace--display-buffer): New function.
16615         (trace-make-advice): Use it.
16617 2013-05-06  Juri Linkov  <juri@jurta.org>
16619         * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix.  (Bug#14344)
16620         (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
16621         Doc fix.
16622         (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
16623         in the help string.  (Bug#12985)
16625 2013-05-06  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
16627         * simple.el (shell-command-on-region): Doc fix.  (Bug#14279)
16629 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16631         * progmodes/perl-mode.el: Add support for here documents.
16632         (perl-syntax-propertize-function): Match here-doc markers.
16633         (perl-syntax-propertize-special-constructs): Find their end.
16634         (perl-imenu-generic-expression): Use [:alnum:].
16636         * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
16637         (advice--add-function): Refresh the advice if already present
16638         (bug#14317).
16640 2013-05-06  Ivan Andrus  <darthandrus@gmail.com>
16642         * find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)
16644 2013-05-06  Glenn Morris  <rgm@gnu.org>
16646         * w32-fns.el (w32-charset-info-alist): Declare.
16648         * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
16649         of its defcustom properties.
16650         (eshell-cmpl-initialize): No need to load pcomplete.
16652         * generic-x.el: No need to require comint when compiling.
16654         * net/eudc-export.el: Make it loadable without bbdb.
16655         (top-level): Use require rather than load-library.
16656         (eudc-create-bbdb-record, eudc-bbdbify-phone)
16657         (eudc-batch-export-records-to-bbdb)
16658         (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
16659         Require bbdb.
16661 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16663         * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
16664         (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
16665         some tweaks, instead.
16667 2013-05-05  Leo Liu  <sdl.web@gmail.com>
16669         * progmodes/octave.el (octave-font-lock-keywords)
16670         (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
16671         (inferior-octave-send-list-and-digest): Improve error message.
16672         (octave-mode, inferior-octave-mode): Use setq-local.
16673         (octave-help): Set info-lookup-mode.
16675 2013-05-05  Richard Stallman  <rms@gnu.org>
16677         * vc/compare-w.el (compare-windows-whitespace):
16678         Treat no-break space as whitespace.
16680         * mail/rmailsum.el (rmail-summary-rmail-update):
16681         Detect empty summary and don't change selected message.
16682         (rmail-summary-goto-msg): Likewise.
16684         * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
16685         Doc fixes, rename args.
16687 2013-05-05  Alan Mackenzie  <acm@muc.de>
16689         * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
16691 2013-05-05  Juri Linkov  <juri@jurta.org>
16693         * info.el (Info-read-subfile): Use (point-min) instead of (point)
16694         to not add the length of the summary segment to the return value.
16695         (Bug#14125)
16697 2013-05-05  Leo Liu  <sdl.web@gmail.com>
16699         * progmodes/octave.el (inferior-octave-strip-ctrl-g)
16700         (inferior-octave-output-filter): Remove.
16701         (octave-send-region, inferior-octave-startup): Fix callers.
16702         (inferior-octave-mode-map): Don't use comint-dynamic-complete.
16703         (octave-binary-file-extensions): New user variable.
16704         (octave-find-definition): Confirm if opening binary files.
16705         (octave-help-file): Use octave-find-definition to get the binary
16706         confirmation.
16707         (octave-help): Adjust for octave-help-file change.
16709 2013-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16711         * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
16712         Merge the two entries that handle function definitions.
16713         (pascal--syntax-propertize): New const.
16714         (pascal-mode): Use it.  Use setq-local.
16716 2013-05-04  Glenn Morris  <rgm@gnu.org>
16718         * calendar/diary-lib.el (diary-from-outlook-function): New variable.
16719         (diary-from-outlook): Respect diary-from-outlook-function.
16721 2013-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
16723         * simple.el (read-expression-map): Use completion-at-point (bug#14255).
16724         Move the declaration from C.
16725         (read-minibuffer, eval-minibuffer): Move from C.
16726         (completion-setup-function): Avoid minibuffer-completion-contents.
16728 2013-05-03  Leo Liu  <sdl.web@gmail.com>
16730         * progmodes/octave.el (octave-font-lock-keywords): Do not
16731         dehighlight 'end' in comments or strings.
16732         (octave-completing-read, octave-goto-function-definition):
16733         New helpers.
16734         (octave-help-buffer): New user variable.
16735         (octave-help-file, octave-help-function): New button types.
16736         (octave-help): New command and bind it to C-h ;.
16737         (octave-find-definition): New command and bind it to M-.
16738         (user-error): Alias to error if not defined.
16740 2013-05-02  Leo Liu  <sdl.web@gmail.com>
16742         * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
16743         for \.  (bug#14332)
16744         (octave-font-lock-keywords): Include [ and {.
16746 2013-05-02  Leo Liu  <sdl.web@gmail.com>
16748         * progmodes/octave.el (inferior-octave-startup-file): Change default.
16749         (inferior-octave): Remove calling comint-mode and return the buffer.
16750         (inferior-octave-startup): Cosmetic changes.
16752 2013-05-02  Leo Liu  <sdl.web@gmail.com>
16754         * progmodes/octave.el (octave-syntax-propertize-function):
16755         Include the case when ' is at line beginning.  (Bug#14336)
16757 2013-05-02  Glenn Morris  <rgm@gnu.org>
16759         * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
16760         * desktop.el (vc-dir-mode): Just autoload it here.
16762 2013-05-02  Alan Mackenzie  <acm@muc.de>
16764         Eliminate variable c-standard-font-lock-fontify-region-function.
16765         * progmodes/cc-mode.el
16766         (c-standard-font-lock-fontify-region-function): Remove.
16767         (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
16769 2013-05-01  Leo Liu  <sdl.web@gmail.com>
16771         * progmodes/octave.el: Compatible with older emacs-24 releases.
16772         (inferior-octave-has-built-in-variables): Remove.  Built-in
16773         variables were removed from Octave in 2007.
16774         (inferior-octave-startup): Fix uses.
16775         (comint-line-beginning-position): Remove compatibility code for
16776         emacs 21.
16778 2013-05-01  Juri Linkov  <juri@jurta.org>
16780         * isearch.el (isearch-forward, isearch-mode): Doc fix.  (Bug#13923)
16782 2013-05-01  Juri Linkov  <juri@jurta.org>
16784         * comint.el (comint-previous-matching-input): Don't print message
16785         "History item: %d" when `isearch-mode' is active.
16786         (comint-history-isearch-message): Print message "History item: %d"
16787         when `comint-input-ring-index' is not empty and this function is
16788         called from `isearch-update' with a nil `ellipsis'.  (Bug#13223)
16790 2013-05-01  Leo Liu  <sdl.web@gmail.com>
16792         * progmodes/octave.el (octave-abbrev-table): Remove abbrev
16793         definitions.  Use completion-at-point to insert keywords.
16794         (octave-abbrev-start): Remove.
16795         (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
16797 2013-04-30  Leo Liu  <sdl.web@gmail.com>
16799         * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
16800         change.
16802 2013-04-30  Alan Mackenzie  <acm@muc.de>
16804         Handle arbitrarily long C++ member initialisation lists.
16805         * progmodes/cc-engine.el (c-back-over-member-initializers):
16806         new function.
16807         (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
16808         (most) member init lists.
16810 2013-04-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16812         * progmodes/octave.el (inferior-octave-prompt-read-only): New user
16813         variable.
16815 2013-04-30  Leo Liu  <sdl.web@gmail.com>
16817         * progmodes/octave.el (octave-variables): Remove.  No builtin
16818         variables any more.  All converted to functions.
16819         (octave-font-lock-keywords, octave-completion-at-point-function):
16820         Fix uses.
16821         (octave-font-lock-texinfo-comment): New user variable.
16822         (octave-texinfo-font-lock-keywords): New variable for texinfo
16823         comment block.
16824         (octave-function-comment-block): New face.
16825         (octave-font-lock-texinfo-comment): New function.
16826         (octave-mode): Font lock texinfo comment block.
16828 2013-04-29  Leo Liu  <sdl.web@gmail.com>
16830         * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
16831         indexing expression.
16832         (octave-continuation-string): Do not use \.
16833         (inferior-octave-complete-impossible): Remove.
16834         (inferior-octave-completion-table)
16835         (inferior-octave-completion-at-point): Remove its uses.
16836         (inferior-octave-startup): completion_matches was introduced to
16837         Octave in 1996 so safe to assume it.
16838         (octave-function-file-comment): Improve to follow how Octave does it.
16839         (octave-update-function-file-comment): Tweak.
16841 2013-04-29  Leo Liu  <sdl.web@gmail.com>
16843         * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
16844         (inferior-octave-startup): Remove inferior-octave-startup-hook.
16845         (octave-function-file-comment): Fix typo.
16846         (octave-sync-function-file-names): Use read-char-choice.
16848 2013-04-28  Jay Belanger  <jay.p.belanger@gmail.com>
16850         * calc/calc.el (math-normalize): Don't set `math-normalize-error'
16851         to t for the less important warnings.
16853 2013-04-27  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
16855         * isearch.el (isearch-fail-pos): Check for empty `cmds'.  (Bug#14268)
16857 2013-04-27  Glenn Morris  <rgm@gnu.org>
16859         * vc/log-view.el (log-view-current-entry):
16860         Treat "---" separator lines as part of the following rev.  (Bug#14169)
16862 2013-04-27  Juri Linkov  <juri@jurta.org>
16864         * subr.el (read-number): Doc fix about using it by interactive
16865         code letter `n'.  (Bug#14254)
16867 2013-04-27  Juri Linkov  <juri@jurta.org>
16869         * desktop.el (desktop-auto-save-timeout): New option.
16870         (desktop-file-checksum): New variable.
16871         (desktop-save): Add optional arg `auto-save' and don't auto-save
16872         if nothing changed.
16873         (desktop-auto-save-timer): New variable.
16874         (desktop-auto-save, desktop-auto-save-set-timer): New functions.
16875         (after-init-hook): Call `desktop-auto-save-set-timer'.
16876         Suggested by Reuben Thomas <rrt@sc3d.org> in
16877         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
16879 2013-04-27  Leo Liu  <sdl.web@gmail.com>
16881         * progmodes/octave.el (octave-function-file-p)
16882         (octave-skip-comment-forward, octave-function-file-comment)
16883         (octave-update-function-file-comment): New functions.
16884         (octave-mode-map): Bind C-c ; to
16885         octave-update-function-file-comment.
16886         (octave-mode-menu): Add octave-update-function-file-comment.
16887         (octave-mode, inferior-octave-mode): Fix doc-string.
16888         (octave-insert-defun): Conform to Octave's coding convention.
16889         (Bug#14285)
16891         * files.el (basic-save-buffer): Don't let errors in
16892         before-save-hook prevent saving buffer.
16894 2013-04-20  Roland Winkler  <winkler@gnu.org>
16896         * faces.el (read-face-name): Use completing-read if arg multiple
16897         is nil.
16899 2013-04-27  Ingo Lohmar  <i.lohmar@gmail.com>  (tiny change)
16901         * ls-lisp.el (ls-lisp-insert-directory): If no files are
16902         displayed, move point to after the totals line.
16903         See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
16904         for the details.
16906 2013-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
16908         * emacs-lisp/package.el (package-autoload-ensure-default-file):
16909         Add current dir to the load-path.
16910         (package-generate-autoloads): Don't rely on
16911         autoload-ensure-default-file.
16913 2013-04-26  Reuben Thomas  <rrt@sc3d.org>
16915         * textmodes/remember.el (remember-store-in-files): Document that
16916         the file name format is passed to `format-time-string'.
16918 2013-04-26  Leo Liu  <sdl.web@gmail.com>
16920         * progmodes/octave.el (octave-sync-function-file-names): New function.
16921         (octave-mode): Use it in before-save-hook.
16923 2013-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
16925         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
16926         (bug#14274).
16928         * progmodes/octave.el (octave-smie-forward-token): Properly skip
16929         \n and comment, even if it's not an implicit ; (bug#14218).
16931 2013-04-26  Glenn Morris  <rgm@gnu.org>
16933         * subr.el (read-number): Once more use `read' rather than
16934         `string-to-number', to trap non-numeric input.  (Bug#14254)
16936 2013-04-26  Erik Charlebois  <erikcharlebois@gmail.com>
16938         * emacs-lisp/syntax.el (syntax-propertize-multiline):
16939         Use `syntax-multiline' text property consistently instead of
16940         `font-lock-multiline'.  (Bug#14237)
16942 2013-04-26  Glenn Morris  <rgm@gnu.org>
16944         * emacs-lisp/shadow.el (list-load-path-shadows):
16945         No longer necessary to check for duplicate simple.el, since
16946         2012-07-07 change to init_lread to not include installation lisp
16947         directories in load-path when running uninstalled.  (Bug#14270)
16949 2013-04-26  Leo Liu  <sdl.web@gmail.com>
16951         * progmodes/octave.el (octave-submit-bug-report): Obsolete.
16952         (octave-mode, inferior-octave-mode): Use setq-local.
16953         (octave-not-in-string-or-comment-p): Rename to
16954         octave-in-string-or-comment-p.
16955         (octave-in-comment-p, octave-in-string-p)
16956         (octave-in-string-or-comment-p): Replace defsubst with defun.
16958 2013-04-25  Paul Eggert  <eggert@cs.ucla.edu>
16960         * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
16962 2013-04-25  Bastien Guerry  <bzg@gnu.org>
16964         * textmodes/remember.el (remember-data-directory)
16965         (remember-directory-file-name-format): Fix custom types.
16967 2013-04-25  Leo Liu  <sdl.web@gmail.com>
16969         * progmodes/octave.el (octave-completion-at-point-function):
16970         Make use of inferior octave process.
16971         (octave-initialize-completions): Remove.
16972         (inferior-octave-completion-table): New function.
16973         (inferior-octave-completion-at-point): Use it.
16974         (octave-completion-alist): Remove.
16976 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
16978         * progmodes/opascal.el: Use font-lock and syntax-propertize.
16979         (opascal-mode-syntax-table): New var.
16980         (opascal-literal-kind, opascal-is-literal-end)
16981         (opascal-literal-token-at): Rewrite.
16982         (opascal--literal-start-re, opascal-font-lock-keywords)
16983         (opascal--syntax-propertize): New constants.
16984         (opascal-font-lock-defaults): Adjust.
16985         (opascal-mode): Use them.  Set comment-<foo> variables as well.
16986         (delphi-comment-face, opascal-comment-face, delphi-string-face)
16987         (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
16988         (delphi-other-face, opascal-other-face): Remove face variables.
16989         (opascal-save-state): Remove macro.
16990         (opascal-fontifying-progress-step): Remove constant.
16991         (opascal--ignore-changes): Remove var.
16992         (opascal-set-token-property, opascal-parse-next-literal)
16993         (opascal-is-stable-literal, opascal-complete-literal)
16994         (opascal-is-literal-start, opascal-face-of)
16995         (opascal-parse-region, opascal-parse-region-until-stable)
16996         (opascal-fontify-region, opascal-after-change)
16997         (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
16998         (opascal-debug-parse-region, opascal-debug-parse-window)
16999         (opascal-debug-parse-buffer, opascal-debug-fontify-window)
17000         (opascal-debug-fontify-buffer): Remove.
17001         (opascal-debug-mode-map): Adjust accordingly.
17003 2013-04-25  Leo Liu  <sdl.web@gmail.com>
17005         Merge octave-mod.el and octave-inf.el into octave.el with some
17006         cleanups.
17007         * progmodes/octave.el: New file renamed from octave-mod.el.
17008         * progmodes/octave-inf.el: Merged into octave.el.
17009         * progmodes/octave-mod.el: Renamed to octave.el.
17011 2013-04-25  Tassilo Horn  <tsdh@gnu.org>
17013         * textmodes/reftex-vars.el
17014         (reftex-label-ignored-macros-and-environments): New defcustom.
17016         * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
17018 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17020         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
17021         (smie-indent-keyword): Improve the check to ensure that the next
17022         comment is really on the same line.
17023         (smie-indent-comment): Don't align with a subsequent closer (or eob).
17025         * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
17026         semi-colons if the line is not otherwise empty (bug#14218).
17028 2013-04-25  Glenn Morris  <rgm@gnu.org>
17030         * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
17032 2013-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
17034         * progmodes/opascal.el (opascal-set-token-property): Rename from
17035         opascal-set-text-properties and only set `token' (bug#14134).
17036         Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
17037         (opascal-literal-text-properties): Remove.
17038         (opascal-parse-next-literal, opascal-debug-unparse-buffer):
17039         Adjust callers.
17041 2013-04-24  Reuben Thomas  <rrt@sc3d.org>
17043         * textmodes/remember.el (remember-handler-functions): Add an
17044         option for a new handler `remember-store-in-files'.
17045         (remember-data-directory, remember-directory-file-name-format):
17046         New options.
17047         (remember-store-in-files): New function to store remember notes
17048         as separate files within a directory.
17050 2013-04-24  Magnus Henoch  <magnus.henoch@gmail.com>
17052         * progmodes/compile.el (compilation-next-error-function):
17053         Pass "formats" to compilation-find-file (bug#11777).
17055 2013-04-24  Glenn Morris  <rgm@gnu.org>
17057         * vc/vc-bzr.el (vc-bzr-print-log):
17058         * vc/vc-hg.el (vc-hg-print-log):
17059         * vc/vc-svn.el (vc-svn-print-log):
17060         Fix START-REVISION with LIMIT != 1.  (Bug#14168)
17062         * vc/vc-bzr.el (vc-bzr-print-log):
17063         * vc/vc-cvs.el (vc-cvs-print-log):
17064         * vc/vc-git.el (vc-git-print-log):
17065         * vc/vc-hg.el (vc-hg-print-log):
17066         * vc/vc-mtn.el (vc-mtn-print-log):
17067         * vc/vc-rcs.el (vc-rcs-print-log):
17068         * vc/vc-sccs.el (vc-sccs-print-log):
17069         * vc/vc-svn.el (vc-svn-print-log):
17070         * vc/vc.el (vc-print-log-internal): Doc fixes.
17072 2013-04-23  Glenn Morris  <rgm@gnu.org>
17074         * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
17075         Remove venerable code attempting to avoid substitute-command-keys.
17077 2013-04-23  Tassilo Horn  <tsdh@gnu.org>
17079         * textmodes/reftex-vars.el (reftex-label-regexps):
17080         Call `reftex-compile-variables' after changes to this variable.
17082 2013-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17084         * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
17085         Use lexical-binding.
17086         (jit-lock-force-redisplay): Use markers, check buffer's continued
17087         existence and beware narrowed buffers.
17088         (jit-lock-fontify-now): Adjust call accordingly.
17090 2013-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17092         * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
17093         to avoid misleading the user.
17095 2013-04-22  Leo Liu  <sdl.web@gmail.com>
17097         * info-look.el: Prefer latex2e.info.  (Bug#14240)
17099 2013-04-22  Michael Albinus  <michael.albinus@gmx.de>
17101         Fix pack/unpack coding.  Reported by David Smith <davidsmith@acm.org>.
17103         * net/tramp-compat.el (tramp-compat-call-process): Move function ...
17104         * net/tramp.el (tramp-call-process): ... here.
17105         (tramp-set-completion-function, tramp-parse-putty):
17106         * net/tramp-adb.el (tramp-adb-execute-adb-command):
17107         * net/tramp-gvfs.el (tramp-gvfs-send-command):
17108         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
17109         (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
17110         (tramp-call-local-coding-command): Use `tramp-call-process'
17111         instead of `tramp-compat-call-process'.
17113         * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
17114         (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
17115         (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
17116         (tramp-find-inline-compress): Improve traces.
17117         (tramp-maybe-send-script): Check for Perl binary.
17118         (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
17120 2013-04-22  Daiki Ueno  <ueno@gnu.org>
17122         * epg.el (epg-context-pinentry-mode): New function.
17123         (epg-context-set-pinentry-mode): New function.
17124         (epg--start): Pass --pinentry-mode option to gpg command.
17126 2013-04-21  Xue Fuqiao  <xfq.free@gmail.com>
17128         * comint.el (comint-dynamic-complete-functions, comint-mode-map):
17129         `comint-dynamic-complete' is obsolete since 24.1, replaced by
17130         `completion-at-point'.  (Bug#13774)
17132         * startup.el (normal-no-mouse-startup-screen): Bug fix, the
17133         default key binding for `describe-distribution' has been moved to
17134         `C-h C-o'.  (Bug#13970)
17136 2013-04-21  Glenn Morris  <rgm@gnu.org>
17138         * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
17139         Add doc strings.
17140         (vc-print-log): Clarify interactive prompt.
17142 2013-04-20  Glenn Morris  <rgm@gnu.org>
17144         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
17145         No longer include timestamp etc information.
17147 2013-04-20  Roland Winkler  <winkler@gnu.org>
17149         * faces.el (read-face-name): Bug fix, return just one face if arg
17150         multiple is nil.  (Bug#14209)
17152 2013-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17154         * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
17155         (remove-function): Autoload.
17157         * comint.el (comint-redirect-original-filter-function): Remove.
17158         (comint-redirect-cleanup, comint-redirect-send-command-to-process):
17159         * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
17160         (vc-cvs-annotate-command):
17161         * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
17162         * progmodes/prolog.el (prolog-consult-compile):
17163         * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
17164         Use add/remove-function instead.
17165         * progmodes/gud.el (gud-tooltip-original-filter): Remove.
17166         (gud-tooltip-process-output, gud-tooltip-tips):
17167         Use add/remove-function instead.
17168         * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
17169         (scheme-interaction-mode, exit-scheme-interaction-mode):
17170         Use add/remove-function instead.
17172         * vc/vc-dispatcher.el: Use lexical-binding.
17173         (vc--process-sentinel): Rename from vc-process-sentinel.
17174         Change last arg to be the code to run.  Don't use vc-previous-sentinel
17175         and vc-sentinel-commands any more.
17176         (vc-exec-after): Allow code to be a function.  Use add/remove-function.
17177         (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
17179 2013-04-19  Masatake YAMATO  <yamato@redhat.com>
17181         * progmodes/sh-script.el (sh-imenu-generic-expression):
17182         Handle function names with a single character.  (Bug#14111)
17184 2013-04-19  Dima Kogan  <dima@secretsauce.net>  (tiny change)
17186         * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
17187         for subroutines defined in an eval (bug#14182).
17189 2013-04-19  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
17191         * bookmark.el (bookmark-completing-read): Improve handling of empty
17192         string (bug#14176).
17194 2013-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17196         * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
17198 2013-04-19  Fabián Ezequiel Gallina  <fgallina@gnu.org>
17200         New faster Imenu implementation (bug#14058).
17201         * progmodes/python.el (python-imenu-prev-index-position)
17202         (python-imenu-format-item-label-function)
17203         (python-imenu-format-parent-item-label-function)
17204         (python-imenu-format-parent-item-jump-label-function):
17205         New vars.
17206         (python-imenu-format-item-label)
17207         (python-imenu-format-parent-item-label)
17208         (python-imenu-format-parent-item-jump-label)
17209         (python-imenu--put-parent, python-imenu--build-tree)
17210         (python-imenu-create-index, python-imenu-create-flat-index)
17211         (python-util-popn): New functions.
17212         (python-mode): Set imenu-create-index-function to
17213         python-imenu-create-index.
17215 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17217         * winner.el (winner-active-region): Use region-active-p, activate-mark
17218         and deactivate-mark (bug#14225).
17220         * simple.el (deactivate-mark): Don't inline it.
17222 2013-04-18  Michael Albinus  <michael.albinus@gmx.de>
17224         * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
17226 2013-04-18  Tassilo Horn  <tsdh@gnu.org>
17228         * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
17229         file extensions from the archive-mode entry in order to prefer
17230         doc-view-mode-maybe with archive-mode as fallback (bug#14188).
17232 2013-04-18  Leo Liu  <sdl.web@gmail.com>
17234         * bindings.el (help-event-list): Add ?\?.
17236 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17238         * subr.el (with-wrapper-hook): Declare obsolete.
17239         * simple.el (filter-buffer-substring-function): New hook.
17240         (filter-buffer-substring): Use it.
17241         (filter-buffer-substring-functions): Mark obsolete.
17242         * minibuffer.el (completion-in-region-function): New hook.
17243         (completion-in-region): Use it.
17244         (completion-in-region-functions): Mark obsolete.
17245         * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
17246         * abbrev.el (abbrev-expand-function): New hook.
17247         (expand-abbrev): Use it.
17248         (abbrev-expand-functions): Mark obsolete.
17249         * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
17250         and :filter-return.
17252 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
17254         * progmodes/python.el (python-nav--syntactically): Fix cornercases
17255         and do not care about match data.
17257 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17259         * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
17260         completion tables when completing error conditions and
17261         `declare' arguments.
17262         (lisp-complete-symbol, field-complete): Mark as obsolete.
17263         (check-parens): Unmatched parens are user errors.
17264         * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
17266 2013-04-17  Michal Nazarewicz  <mina86@mina86.com>
17268         * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
17269         command changed buffer (ie. `flyspell-pre-buffer' is not current
17270         buffer), which prevents making decisions based on invalid value of
17271         `flyspell-pre-point' in the wrong buffer.  Most notably, this used to
17272         cause an error when `flyspell-pre-point' was nil after switching
17273         buffers.
17274         (flyspell-post-command-hook): No longer needs to change buffers when
17275         checking pre-word.  While at it remove unnecessary progn.
17277 2013-04-17  Nicolas Richard  <theonewiththeevillook@yahoo.fr>  (tiny change)
17279         * textmodes/ispell.el (ispell-add-per-file-word-list):
17280         Fix `flyspell-correct-word-before-point' error when accepting
17281         words and `coment-padding' is an integer by using
17282         `comment-normalize-vars' (Bug #14214).
17284 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
17286         New defun movement commands.
17287         * progmodes/python.el (python-nav--syntactically)
17288         (python-nav--forward-defun, python-nav-backward-defun)
17289         (python-nav-forward-defun): New functions.
17291 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
17293         * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
17294         (python-syntax-context): Use named compiler-macro for backwards
17295         compatibility with Emacs 24.x.
17297 2013-04-17  Leo Liu  <sdl.web@gmail.com>
17299         * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
17300         octave-hide-process-buffer.
17302 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17304         * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
17305         (bug#14216).
17307 2013-04-17  Jean-Philippe Gravel  <jpgravel@gmail.com>
17309         * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
17310         Fix adjustment of offset when receiving incomplete responses from GDB
17311         (bug#14129).
17313 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17315         * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
17316         python-mode-abbrev-table.
17317         (python-skeleton-define): Adjust accordingly.
17318         (python-mode-abbrev-table): New table that inherits from it so that
17319         python-skeleton-autoinsert does not affect non-skeleton abbrevs.
17321         * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
17322         (abbrev-symbol): Use it.
17323         (abbrev--before-point): Use it since we already handle inheritance.
17325 2013-04-16  Leo Liu  <sdl.web@gmail.com>
17327         * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
17328         binding to info-lookup-symbol.
17330 2013-04-16  Juanma Barranquero  <lekktu@gmail.com>
17332         * minibuffer.el (completion--twq-all):
17333         * term/ns-win.el (ns-initialize-window-system):
17334         * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
17336 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17338         * emacs-lisp/nadvice.el (add-function): Default simple vars to their
17339         global bindings.
17341         * doc-view.el (doc-view-start-process): Handle url-handler directories.
17343 2013-04-15  Dmitry Gutov  <dgutov@yandex.ru>
17345         * progmodes/ruby-mode.el (ruby-beginning-of-defun)
17346         (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
17347         to nil.
17348         (ruby-end-of-defun): Remove the unused arg, change the docstring
17349         to reflect that this function is only used as the value of
17350         `end-of-defun-function'.
17351         (ruby-beginning-of-defun): Remove "top-level" from the docstring,
17352         to reflect an earlier change that beginning/end-of-defun functions
17353         jump between methods in a class definition, as well as top-level
17354         functions.
17356 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17358         * minibuffer.el (minibuffer-complete): Don't just scroll
17359         a *Completions* that's been iconified.
17360         (minibuffer-force-complete): Make sure repetitions do cycle when going
17361         through completion-in-region -> minibuffer-complete.
17363 2013-04-15  Alan Mackenzie  <acm@muc.de>
17365         Correct the placement of c-cpp-delimiters when there're #s not at
17366         col 0.
17368         * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
17369         place a submatch around the #.
17370         * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
17371         Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
17372         on the #, not BOL.
17374 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17376         * emacs-lisp/nadvice.el: Properly test names when adding advice.
17377         (advice--member-p): New arg `name'.
17378         (advice--add-function, advice-member-p): Use it (bug#14202).
17380 2013-04-15  Filipp Gunbin  <fgunbin@fastmail.fm>
17382         Reformulate java imenu-generic-expression.
17383         The old expression contained ill formed regexps.
17385         * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
17386         (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
17387         (cc-imenu-java-method-arg-regexp): New defconsts.
17388         (cc-imenu-java-build-type-args-regex): New defun.
17389         (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
17390         handling of spaces in the regexp.
17392 2013-03-15  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
17394         * textmodes/ispell.el (ispell-command-loop): Remove
17395         flyspell highlight of a word when ispell accepts it (bug #14178).
17397 2013-04-15  Michael Albinus  <michael.albinus@gmx.de>
17399         * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
17400         uses code from the previous `ange-ftp-run-real-handler'.
17401         (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
17402         only in case that function exist.  This is needed for proper
17403         unloading of Tramp.
17405 2013-04-15  Tassilo Horn  <tsdh@gnu.org>
17407         * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
17409         * textmodes/reftex.el (reftex-compile-variables): Use it.
17411 2013-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
17413         * files.el (normal-mode): Only use default major-mode if no other mode
17414         was specified.
17416         * emacs-lisp/trace.el (trace-values): New function.
17418         * files.el: Allow : in local variables (bug#14089).
17419         (hack-local-variable-regexp): New var.
17420         (hack-local-variables-prop-line, hack-local-variables): Use it.
17422 2013-04-13  Roland Winkler  <winkler@gnu.org>
17424         * textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
17425         data before it gets modified by bibtex-beginning-of-entry.
17427 2013-04-13  Roland Winkler  <winkler@gnu.org>
17429         * textmodes/bibtex.el (bibtex-url): Doc fix.
17431 2013-04-13  Roland Winkler  <winkler@gnu.org>
17433         * textmodes/bibtex.el (bibtex-initialize): If the current buffer
17434         does not visit a BibTeX file, exclude it from the list of buffers
17435         returned by bibtex-initialize.
17437 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
17439         * window.el (split-window): Remove interactive form, since as a
17440         command this function is a special case of split-window-below.
17441         Correct doc string.
17443 2013-04-12  Roland Winkler  <winkler@gnu.org>
17445         * faces.el (read-face-name): Do not override value of arg default.
17446         Allow single faces and strings as default values.  Remove those
17447         elements from return value that are not faces.
17448         (describe-face): Simplify.
17449         (face-at-point): New optional args thing and multiple so that this
17450         function can provide the same functionality previously provided by
17451         read-face-name.
17452         (make-face-bold, make-face-unbold, make-face-italic)
17453         (make-face-unitalic, make-face-bold-italic, invert-face)
17454         (modify-face, read-face-and-attribute): Use face-at-point.
17456         * cus-edit.el (customize-face, customize-face-other-window)
17457         * cus-theme.el (custom-theme-add-face)
17458         * face-remap.el (buffer-face-set)
17459         * facemenu.el (facemenu-set-face): Use face-at-point.
17461 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
17463         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
17465 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
17467         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
17468         off leading { and trailing } from field values.
17470 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
17472         * emacs-lisp/timer.el (timer--check): New function.
17473         (timer--time, timer-set-function, timer-event-handler): Use it.
17474         (timer-set-idle-time): Simplify.
17475         (timer--activate): CSE.
17476         (timer-event-handler): Give more info in error message.
17477         (internal-timer-start-idle): New function, moved from C.
17479         * mpc.el (mpc-proc): Add `restart' argument.
17480         (mpc-proc-cmd): Use it.
17481         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
17482         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
17483         less often.
17485 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
17487         * progmodes/sh-script.el: Implement `sh-mode' own
17488         `add-log-current-defun-function' (bug#14112).
17489         (sh-current-defun-name): New function.
17490         (sh-mode): Use the function.
17492 2013-04-09  Bastien Guerry  <bzg@gnu.org>
17494         * simple.el (choose-completion-string): Fix docstring (bug#14163).
17496 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17498         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
17500         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
17501         timer (bug#14156).
17503 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
17505         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
17506         declaration.
17508 2013-04-07  Leo Liu  <sdl.web@gmail.com>
17510         * pcmpl-x.el: New file.
17512 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
17514         Do not set x-display-name until X connection is established.
17515         This is needed to prevent from weird situation described at
17516         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
17517         * frame.el (make-frame): Set x-display-name after call to
17518         window system initialization function, not before.
17519         * term/x-win.el (x-initialize-window-system): Add optional
17520         display argument and use it.
17521         * term/w32-win.el (w32-initialize-window-system):
17522         * term/ns-win.el (ns-initialize-window-system):
17523         * term/pc-win.el (msdos-initialize-window-system):
17524         Add compatible optional display argument.
17526 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
17528         * files.el (normal-backup-enable-predicate): On MS-Windows and
17529         MS-DOS compare truenames of temporary-file-directory and of the
17530         file, so that 8+3 aliases (usually found in $TEMP on Windows)
17531         don't fail comparison by compare-strings.  Also, compare file
17532         names case-insensitively on MS-Windows and MS-DOS.
17534 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17536         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
17537         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
17539 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
17541         * whitespace.el (whitespace-color-on, whitespace-color-off):
17542         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
17544 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl>  (tiny change)
17546         * ispell.el (ispell-set-spellchecker-params):
17547         Really set `ispell-args' for all equivs.
17549 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17551         * ido.el (ido-completions): Use extra elements of ido-decorations
17552         (bug#14143).
17553         (ido-decorations): Update docstring.
17555 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
17557         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
17558         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
17559         nil during initialization, in order not to miss changes since the
17560         file was opened.  (Bug#14140)
17562 2013-04-05  Leo Liu  <sdl.web@gmail.com>
17564         * kmacro.el (kmacro-call-macro): Fix bug#14135.
17566 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
17568         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
17570 2013-04-04  Glenn Morris  <rgm@gnu.org>
17572         * electric.el (electric-pair-inhibit-predicate): Add :version.
17574 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17576         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
17577         when a package is required several times (bug#14082).
17579 2013-04-04  Roland Winkler  <winkler@gnu.org>
17581         * faces.el (read-face-name): Behave as promised by the docstring.
17582         Assume that arg default is a list of faces.
17583         (describe-face): Call read-face-name with list of default faces.
17585 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
17587         * bookmark.el: Fix deletion of bookmarks (bug#13972).
17588         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
17589         (bookmark-bmenu-execute-deletions): Only skip first line if it's
17590         the header.
17591         (bookmark-exit-hook-internal): Save even if list is empty.
17593 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
17595         * emacs-lisp/package.el (package-pinned-packages): New var.
17596         (package--add-to-archive-contents): Obey it (bug#14118).
17598 2013-04-03  Alan Mackenzie  <acm@muc.de>
17600         Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
17601         Also adapt to the new values of element 7 of a parse state.
17603         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
17604         parameter `not-in-delimiter'.  Handle being inside comment opener.
17605         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
17606         character in case we're typing a '*' after a '/'.
17607         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
17608         instead by passing the parameter to c-state-pp-to-literal.
17610         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
17611         for elt. 7 of a parse state.
17613 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
17615         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
17616         * international/latin1-disp.el, international/mule-util.el:
17617         * language/cyril-util.el, language/european.el, language/ind-util.el:
17618         * language/lao-util.el, language/thai.el, language/tibet-util.el:
17619         * language/tibetan.el, language/viet-util.el:
17620         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
17622 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17624         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
17625         (electric-pair-post-self-insert-function): Use it.
17626         (electric-pair-default-inhibit): New function, extracted from
17627         electric-pair-post-self-insert-function.
17629 2013-03-31  Roland Winkler  <winkler@gnu.org>
17631         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
17633 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
17635         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
17637 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
17639         Un-indent after "pass" and "return" statements (Bug#13888)
17640         * progmodes/python.el (python-indent-block-enders): New var.
17641         (python-indent-calculate-indentation): Use it.
17643 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
17645         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
17646         defun.  Defining it as defalias could introduce too eager
17647         byte-compiler optimization.  (Bug#14030)
17649 2013-03-30  Chong Yidong  <cyd@gnu.org>
17651         * iswitchb.el (iswitchb-read-buffer): Fix typo.
17653 2013-03-30  Leo Liu  <sdl.web@gmail.com>
17655         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
17656         (kmacro-execute-from-register): Pass the keyboard macro to
17657         kmacro-call-macro or repeating won't work correctly.
17659 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
17661         * progmodes/subword.el: Back to using `forward-symbol'.
17663         * subr.el (forward-whitespace, forward-symbol)
17664         (forward-same-syntax): Move from thingatpt.el.
17666 2013-03-29  Leo Liu  <sdl.web@gmail.com>
17668         * kmacro.el (kmacro-to-register): New command.
17669         (kmacro-execute-from-register): New function.
17670         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
17672 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
17674         * mpc.el: Use defvar-local and setq-local.
17675         (mpc--proc-connect): Connection failures are not bugs.
17676         (mpc-mode-map): `follow-link' only applies to the buffer's content.
17677         (mpc-volume-map): Bind to the up-events.
17679 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
17681         * progmodes/subword.el (superword-mode): Use `forward-sexp'
17682         instead of `forward-symbol'.
17684 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17686         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
17687         (edebug--recursive-edit): Use it.
17688         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
17689         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
17691 2013-03-28  Leo Liu  <sdl.web@gmail.com>
17693         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
17695 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
17697         * facemenu.el (list-colors-callback): New defvar.
17698         (list-colors-redisplay): New function.
17699         (list-colors-display): Install list-colors-redisplay as the
17700         revert-buffer-function.  (Bug#14063)
17702 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17704         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
17705         and suffixes don't overlap (bug#14061).
17707         * case-table.el: Use lexical-binding.
17708         (case-table-get-table): New function.
17709         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
17711 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
17713         * progmodes/subword.el: Add `superword-mode' to do word motion
17714         over symbol_words (parallels and leverages `subword-mode' which
17715         does word motion inside MixedCaseWords).
17717 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
17719         * eshell/em-unix.el: Move su and sudo to...
17720         * eshell/em-tramp.el: ...Eshell tramp module.
17722 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
17724         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
17725         Change return value to be a sexp.  Delay `get-buffer' to after
17726         restoring the desktop (bug#13951).
17728 2013-03-26  Leo Liu  <sdl.web@gmail.com>
17730         * register.el: Move semantic tag handling back to
17731         cedet/semantic/senator.el.  (Bug#14052)
17733 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
17735         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
17736         into the prompt either (bug#13963).
17738 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17740         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
17741         part of "(error-foo)".
17743 2013-03-24  Juri Linkov  <juri@jurta.org>
17745         * replace.el (list-matching-lines-prefix-face): New defcustom.
17746         (occur-1): Pass `list-matching-lines-prefix-face' to the function
17747         `occur-engine' if `face-differs-from-default-p' returns t.
17748         (occur-engine): Add `,' inside backquote construct to evaluate
17749         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
17750         Pass `prefix-face' to the functions `occur-context-lines' and
17751         `occur-engine-add-prefix'.
17752         (occur-engine-add-prefix, occur-context-lines): Add optional arg
17753         `prefix-face' and propertize the prefix with `prefix-face'.
17754         (Bug#14017)
17756 2013-03-24  Leo Liu  <sdl.web@gmail.com>
17758         * nxml/rng-valid.el (rng-validate-while-idle)
17759         (rng-validate-quick-while-idle): Guard against deleted buffer.
17760         (Bug#13999)
17762         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
17763         is the last entry in kill-buffer-hook.
17765         * files.el (kill-buffer-hook): Doc fix.
17767 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
17769         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
17770         Make it safe-local.
17772         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
17774 2013-03-23  Leo Liu  <sdl.web@gmail.com>
17776         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
17777         Remove.
17779         * nxml/rng-valid.el (rng-validate-mode)
17780         (rng-after-change-function, rng-do-some-validation):
17781         * nxml/rng-maint.el (rng-validate-buffer):
17782         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
17783         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
17784         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
17785         (nxml-extend-after-change-region): Use with-silent-modifications.
17787         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
17788         timer-idle-list.
17790         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
17791         (rng-next-error-1, rng-previous-error-1): Do not let-bind
17792         timer-idle-list.  (Bug#13999)
17794 2013-03-23  Juri Linkov  <juri@jurta.org>
17796         * info.el (info-index-match): New face.
17797         (Info-index, Info-apropos-matches): Add a nested subgroup to the
17798         main pattern and add text properties with the new face to matches
17799         in index entries relative to the beginning of the index entry.
17800         (Bug#14015)
17802 2013-03-21  Eric Ludlam  <zappo@gnu.org>
17804         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
17805         Inhibit read only while inserting objects.
17807 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
17809         * progmodes/cfengine.el: Update docs to mention
17810         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
17811         symbol motion.  Remove "_" from the word syntax.
17813 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
17815         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
17816         syntax for both `cfengine2-mode' and `cfengine3-mode'.
17818 2013-03-20  Juri Linkov  <juri@jurta.org>
17820         * info.el (Info-next-reference-or-link)
17821         (Info-prev-reference-or-link): New functions.
17822         (Info-next-reference, Info-prev-reference): Use them.
17823         (Info-try-follow-nearest-node): Handle footnote navigation.
17824         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
17826 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17828         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
17829         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
17831 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
17833         Suppress unnecessary non-ASCII chatter during build process.
17834         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
17835         (batch-skkdic-convert): Suppress most of the chatter.
17836         It's not needed so much now that machines are faster,
17837         and its non-ASCII component was confusing; see Dmitry Gutov in
17838         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
17840 2013-03-20  Leo Liu  <sdl.web@gmail.com>
17842         * ido.el (ido-chop): Fix bug#10994.
17844 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
17846         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
17847         Remove vars.
17848         (whitespace-color-on, whitespace-color-off):
17849         Use `font-lock-fontify-buffer' (Bug#13817).
17851 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17853         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
17854         remapping in mode-line.
17855         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
17857 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
17859         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
17860         value for `whitespace-line' face (Bug#13875).
17861         (whitespace-font-lock-keywords): Change description.
17862         (whitespace-color-on): Don't save `font-lock-keywords' value, save
17863         the constructed keywords instead.
17864         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
17866 2013-03-19  Leo Liu  <sdl.web@gmail.com>
17868         * progmodes/compile.el (compilation-display-error): New command.
17869         (compilation-mode-map, compilation-minor-mode-map): Bind it to
17870         C-o.  (Bug#13992)
17872 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
17874         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
17876 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
17878         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
17880 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
17882         * net/tramp-compat.el (tramp-compat-user-error): New defun.
17884         * net/tramp-adb.el (tramp-adb-handle-shell-command):
17885         * net/tramp-gvfs.el (top):
17886         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
17887         (tramp-handle-shell-command): Use it.
17888         (tramp-dissect-file-name): Raise an error when hostname is a
17889         method name, and neither method nor user is specified.
17891         * net/trampver.el: Update release number.
17893 2013-03-18  Leo Liu  <sdl.web@gmail.com>
17895         Make sure eldoc can be turned off properly.
17896         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
17897         eldoc-mode.
17898         (eldoc-display-message-p): Revert last change.
17899         (eldoc-display-message-no-interference-p)
17900         (eldoc-print-current-symbol-info): Tweak.
17902 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
17904         * doc-view.el (doc-view-new-window-function): Check the new window
17905         overlay's display property instead the char property of the
17906         buffer's first char.  Use `with-selected-window' instead of
17907         `save-window-excursion' with `select-window'.
17908         (doc-view-document->bitmap): Check the current doc-view overlay's
17909         display property instead the char property of the buffer's first char.
17911 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
17913         Automate the build of ja-dic.el (Bug#13984).
17914         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
17915         from the input, rather than assume that it's been done for us by the
17916         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
17917         the current date into a ja-dic.el comment, as that complicates
17918         regression testing.
17920 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17922         * whitespace.el: Fix double evaluation.
17923         (whitespace-space, whitespace-hspace, whitespace-tab)
17924         (whitespace-newline, whitespace-trailing, whitespace-line)
17925         (whitespace-space-before-tab, whitespace-indentation)
17926         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
17927         obsolete defvars.
17928         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
17929         (whitespace-color-on): Use a single font-lock-add-keywords call.
17930         Fix double-evaluation of face variables.
17932 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
17934         * net/tramp-adb.el (tramp-adb-parse-device-names):
17935         Use `start-process' instead of `call-process'.  Otherwise, the
17936         function might be blocked under MS Windows.  (Bug#13299)
17938 2013-03-17  Leo Liu  <sdl.web@gmail.com>
17940         Extend eldoc to display info in the mode-line.  (Bug#13978)
17941         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
17942         (eldoc-mode-line-string): New variable.
17943         (eldoc-minibuffer-message): New function.
17944         (eldoc-message-function): New variable.
17945         (eldoc-message): Use it.
17946         (eldoc-display-message-p)
17947         (eldoc-display-message-no-interference-p):
17948         Support eldoc-post-insert-mode.
17950         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
17951         (eval-expression): Run it.
17953 2013-03-17  Roland Winkler  <winkler@gnu.org>
17955         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
17956         strings in the list of return values.
17958 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
17960         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
17961         radix before checking for HMS forms.
17963 2013-03-16  Leo Liu  <sdl.web@gmail.com>
17965         * progmodes/scheme.el: Add indentation and font-locking for λ.
17966         (Bug#13975)
17968 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17970         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
17971         token before point (bug#13942).
17973 2013-03-16  Leo Liu  <sdl.web@gmail.com>
17975         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
17977 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
17979         * startup.el (command-line-normalize-file-name): Fix handling of
17980         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
17981         <xfq.free@gmail.com> in
17982         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
17984 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
17986         Sync with Tramp 2.2.7.
17988         * net/trampver.el: Update release number.
17990 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
17992         * doc-view.el: Fix bug#13887.
17993         (doc-view-insert-image): Don't modify overlay associated to
17994         non-live windows, and implement horizontal centering of image in
17995         case it's smaller than the window.
17996         (doc-view-new-window-function): Force redisplay of new windows on
17997         doc-view buffers.
17999 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
18001         * saveplace.el (save-place-alist-to-file): Don't sort
18002         `save-place-alist', just pretty-print it (bug#13882).
18004 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
18006         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
18007         Check whether `default-file-name-coding-system' is bound.
18008         It isn't in XEmacs.
18010 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18012         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
18013         backquotes for `obsolete' (bug#13929).
18015         * international/mule.el (find-auto-coding): Include file name in
18016         obsolescence warning (bug#13922).
18018 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
18020         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
18021         for CFEngine 3-specific indentation.
18022         (cfengine3-indent-line): Use it.  Fix up category regex.
18023         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
18025 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18027         * type-break.el (type-break-file-name):
18028         * textmodes/remember.el (remember-data-file):
18029         * strokes.el (strokes-file):
18030         * shadowfile.el (shadow-initialize):
18031         * saveplace.el (save-place-file):
18032         * ps-bdf.el (bdf-cache-file):
18033         * progmodes/idlwave.el (idlwave-config-directory):
18034         * net/quickurl.el (quickurl-url-file):
18035         * international/kkc.el (kkc-init-file-name):
18036         * ido.el (ido-save-directory-list-file):
18037         * emulation/viper.el (viper-custom-file-name):
18038         * emulation/vip.el (vip-startup-file):
18039         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
18040         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
18042 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
18044         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
18045         * language/thai-word.el: Switch to UTF-8.
18047 See ChangeLog.16 for earlier changes.
18049 ;; Local Variables:
18050 ;; coding: utf-8
18051 ;; End:
18053   Copyright (C) 2011-2014 Free Software Foundation, Inc.
18055   This file is part of GNU Emacs.
18057   GNU Emacs is free software: you can redistribute it and/or modify
18058   it under the terms of the GNU General Public License as published by
18059   the Free Software Foundation, either version 3 of the License, or
18060   (at your option) any later version.
18062   GNU Emacs is distributed in the hope that it will be useful,
18063   but WITHOUT ANY WARRANTY; without even the implied warranty of
18064   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18065   GNU General Public License for more details.
18067   You should have received a copy of the GNU General Public License
18068   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.