* lisp/emacs-lisp/nadvice.el (advice--interactive-form): New function.
[bpt/emacs.git] / lisp / ChangeLog
1 2014-03-17 Stefan <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
4 (advice--make-interactive-form): Use it to avoid (auto)loading function.
5 (advice--make-1, advice-add, advice-remove):
6 Remove braindead :advice-pending hack.
7
8 2014-03-17 Glenn Morris <rgm@gnu.org>
9
10 * calendar/calendar.el (calendar-generate-month): Apply weekend
11 face to the right days; fixes 2013-08-06 change. (Bug#17028)
12
13 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
14
15 * net/tramp.el (tramp-action-out-of-band): Read pending output.
16 (tramp-call-process): Trace also DESTINATION.
17
18 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19 Quote file names when they are local. Remove superfluous trace.
20
21 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
22
23 * newcomment.el (comment-beginning): If `comment-start-skip'
24 doesn't match, move back one char and try again. (Bug#16971)
25
26 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set
27 `comment-use-syntax' to t to avoid the unnecessary runtime check.
28 Set `comment-start-skip' to a simpler value that doesn't try to
29 check if the semicolon is escaped (this is handled by
30 `syntax-ppss' now). (Bug#16971)
31
32 * progmodes/scheme.el (scheme-mode-variables): Same.
33
34 2014-03-16 Martin Rudalics <rudalics@gmx.at>
35
36 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
37 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
38 current (Bug#16816, Bug#17007).
39 (with-current-buffer-window): New macro doing the same as
40 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
41 * help.el (help-print-return-message): Warn in doc-string to not
42 use this in `with-help-window'.
43 (describe-bindings-internal): Call `describe-buffer-bindings'
44 from within help buffer. See Juanma's scenario in (Bug#16816).
45 (with-help-window): Update doc-string.
46 * dired.el (dired-mark-pop-up):
47 * files.el (save-buffers-kill-emacs):
48 * register.el (register-preview): Use `with-current-buffer-window'
49 instead of `with-temp-buffer-window'.
50
51 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
52
53 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
54 Implement inserting into current buffer, documented in their docstrings.
55 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
56 (rst-section-tree-point, rst-forward-section, rst-indent)
57 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
58 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
59 (rst-font-lock-handle-adornment-pre-match-form)
60 (rst-repeat-last-character): Reflow docstrings.
61 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
62 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
63 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
64 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
65 Fix docstring typos.
66 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
67 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
68 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
69
70 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
71
72 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
73 for compatibility with other ports.
74 (ns-initialize-window-system): Use it. It is set in term/common-win.el
75 from the -xrm command line argument, but in the Nextstep port its value
76 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
77
78 * progmodes/python.el (defconst, python-syntax-count-quotes)
79 (python-indent-region, python-indent-shift-right)
80 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
81 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
82 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
83 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
84 (inferior-python-mode, python-shell-make-comint, run-python-internal)
85 (python-shell-buffer-substring, python-shell-send-buffer)
86 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
87 (python-completion-complete-at-point, python-fill-docstring-style)
88 (python-eldoc-function, python-imenu-format-item-label)
89 (python-imenu-format-parent-item-label)
90 (python-imenu-format-parent-item-jump-label)
91 (python-imenu--build-tree, python-imenu-create-index)
92 (python-imenu-create-flat-index): Fix docstring typos.
93 (python-indent-context, python-shell-prompt-regexp, run-python):
94 Remove superfluous backslashes.
95 (python-indent-line, python-nav-beginning-of-defun)
96 (python-shell-get-buffer, python-shell-get-process)
97 (python-info-current-defun, python-info-current-line-comment-p)
98 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
99 (python-indent-post-self-insert-function, python-shell-send-file)
100 (python-shell-completion-get-completions)
101 (python-shell-completion-complete-or-indent)
102 (python-eldoc--get-doc-at-point): Reflow docstrings.
103
104 2014-03-14 Glenn Morris <rgm@gnu.org>
105
106 * emacs-lisp/package.el (package-menu-mode-map):
107 Replace use of obsolete function alias. Tweak menu item text.
108
109 * info.el (Info-finder-find-node):
110 Ignore the `emacs' metapackage. (Bug#10813)
111
112 * finder.el (finder-list-matches): Include unversioned packages
113 in the result of a keyword search.
114
115 * finder.el (finder--builtins-descriptions): New constant.
116 (finder-compile-keywords): Use finder--builtins-descriptions.
117
118 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
119
120 * simple.el (blink-matching-paren): Describe the new value,
121 `jump', enabling the old behavior.
122 (blink-matching-open): Use that value. (Bug#17008)
123
124 2014-03-14 Glenn Morris <rgm@gnu.org>
125
126 * finder.el (finder-no-scan-regexp): Add leim-list.
127 (finder-compile-keywords):
128 Don't skip files with same basename. (Bug#14010)
129 * Makefile.in (setwins_finder): New, excluding leim.
130 (finder-data): Use setwins_finder.
131
132 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
133 (help-function-arglist, help-make-usage): Move from here...
134 * help.el (help-split-fundoc, help-add-fundoc-usage)
135 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
136 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
137
138 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
139
140 * net/socks.el (socks, socks-override-functions)
141 (socks-find-services-entry):
142 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
143 (hif-find-ifdef-block):
144 * progmodes/modula2.el (m2-indent): Fix docstring typos.
145
146 * net/tls.el (tls-program): Reflow docstring.
147
148 * progmodes/pascal.el (pascal-mode-abbrev-table)
149 (pascal-imenu-generic-expression, pascal-auto-endcomments)
150 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
151 (pascal-outline-mode): Fix docstring typos.
152 (pascal-mode): Let define-derived-mode document mode hook.
153 (pascal-uncomment-area): Reflow.
154 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
155
156 * progmodes/opascal.el (opascal-compound-block-indent)
157 (opascal-case-label-indent): Fix docstring typos.
158 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
159
160 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
161
162 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Fontify
163 multiple adjacent negation chars. (Bug#17004)
164
165 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
166
167 * emacs-lisp/package.el (package--prepare-dependencies):
168 Accept requirements without explicit version (bug#14941).
169
170 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
171
172 * register.el (register-separator, copy-to-register): Doc fixes.
173 (register-preview-default): Remove unnecessary call to concat.
174
175 * frameset.el (frameset-restore): When checking for a visible frame,
176 use the action map instead of calling visible-frame-list.
177
178 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
179
180 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
181
182 2014-03-12 Martin Rudalics <rudalics@gmx.at>
183
184 * window.el (fit-frame-to-buffer): Get maximum width from
185 display's width instead of height.
186
187 2014-03-12 Glenn Morris <rgm@gnu.org>
188
189 * desktop.el (desktop-restore-frames)
190 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
191 (desktop-restore-reuses-frames): Doc tweaks.
192
193 * electric.el (electric-indent-mode): Doc fix.
194
195 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
196
197 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
198 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
199 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
200 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
201 (cvs-dired-use-hook): Fix docstring typos.
202 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
203 Doc fixes.
204
205 * vc/pcvs-defs.el (cvs-auto-remove-handled)
206 (cvs-auto-remove-directories, cvs-default-ignore-marks)
207 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
208 (cvs-execute-single-dir): Fix docstring typos.
209
210 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
211 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
212
213 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
214
215 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
216 Fix docstring typos.
217
218 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
219
220 * frameset.el (frameset--jump-to-register): Add autoload; it could be
221 called from jump-to-register after unloading the frameset package.
222
223 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
224
225 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
226 (bug#16975). Deactivate the mark before setting it to nil.
227 (activate-mark): Do nothing if region is already active.
228
229 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
230
231 * frameset.el (frameset--target-display): Remove definition; declare.
232 (frameset-save, frameset-restore): Let-bind frameset--target-display.
233
234 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
235
236 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
237 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
238 when the advice is pending.
239 (advice-remove): Remove this marker when not needed any more.
240
241 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
242
243 * frameset.el: Separate options for reusing frames and cleaning up.
244 (frameset--reuse-list): Remove definition; declare.
245 (frameset--action-map): Declare.
246 (frameset--find-frame-if): Doc fix.
247 (frameset--restore-frame): Cache frame action.
248 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
249 how to clean up the frame list after restoring. Remove cleaning
250 options from REUSE-FRAMES. Change all keyword values to symbols.
251 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
252
253 * desktop.el (desktop-restore-forces-onscreen)
254 (desktop-restore-reuses-frames): Use non-keyword values.
255 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
256
257 2014-03-10 Glenn Morris <rgm@gnu.org>
258
259 * files.el (find-file): Doc fix: update info node name.
260
261 * emacs-lisp/advice.el (ad-add-advice, defadvice):
262 Doc fix: remove references to deleted info nodes.
263
264 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
265
266 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
267 Do not add `nil' to the environment, when there's no remote `locale'.
268 (tramp-find-inline-encoding): Check, that the remote host has
269 installed perl, before sending scripts.
270
271 2014-03-10 Leo Liu <sdl.web@gmail.com>
272
273 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
274 Clear eldoc-last-message. (Bug#16920)
275
276 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
277
278 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
279 (bug#14430).
280
281 2014-03-09 Juri Linkov <juri@jurta.org>
282
283 * ansi-color.el (ansi-color-names-vector): Copy default colors
284 from `xterm-standard-colors' that look well on the default white
285 background (and also on the black background) to avoid illegible
286 color combinations like yellow-on-white and white-on-white.
287 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
288
289 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
290
291 * frameset.el (frameset-restore): When no frame is visible, do not
292 generate a list of frames, just make visible the selected one.
293
294 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
295
296 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
297 it only contains the repository root. (Bug#16897)
298
299 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
300
301 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
302 only when `remote-file-name-inhibit-cache' is nil.
303 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
304
305 2014-03-06 Martin Rudalics <rudalics@gmx.at>
306
307 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
308 Fix doc-strings.
309 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
310 fit-frame-to-buffer variable. Fix doc-string.
311 (fit-window-to-buffer): Set ONLY argument in call of
312 fit-frame-to-buffer. Fix doc-string.
313
314 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
315
316 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
317 (tramp-action-password): Clear password cache if needed.
318 (tramp-read-passwd): Do not clear password cache.
319
320 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
321 cache unless it is the first password request.
322
323 2014-03-06 Glenn Morris <rgm@gnu.org>
324
325 * simple.el (newline): Doc tweak.
326
327 * emacs-lisp/shadow.el (load-path-shadows-find):
328 Ignore dir-locals. (Bug#12357)
329
330 2014-03-05 Glenn Morris <rgm@gnu.org>
331
332 * files.el (interpreter-mode-alist):
333 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
334
335 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
336
337 * frameset.el (frameset--initial-params): Filter out null entries.
338
339 2014-03-05 Martin Rudalics <rudalics@gmx.at>
340
341 * window.el (window-min-height, window-min-width):
342 Rewrite doc-strings.
343 (window-body-size): Add PIXELWISE argument to make it consistent
344 with its callees.
345
346 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
347
348 * finder.el (finder-mode-map, finder-mode-syntax-table):
349 Revert part of 2014-02-28 change.
350
351 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
352
353 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
354 (eww-setup-buffer): Clear next/prev/etc more reliably.
355 (eww-textarea-map): [tab] doesn't work on tty.
356 Reported by Mario Lang.
357
358 * net/shr.el (shr-map): Ditto.
359
360 2014-03-04 Glenn Morris <rgm@gnu.org>
361
362 * minibuffer.el (completion-hilit-commonality):
363 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
364
365 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
366
367 * hilit-chg.el (hilit-chg-unload-function): New function.
368 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
369 (hilit-chg-map-changes): Prefer cardinal number to digit.
370 (hilit-chg-display-changes): Reflow docstring.
371 (highlight-changes-rotate-faces): Remove superfluous backslash.
372
373 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
374
375 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
376 `tramp-send-command-and-check'.
377
378 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
379
380 * hexl.el (hexl-address-region, hexl-ascii-region)
381 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
382 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
383 (hexl-forward-word, hexl-previous-line, hexl-next-line):
384 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
385 (hexl-mode): Doc fix.
386 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
387 (hexl-mode-ruler): Fix typos in docstrings.
388
389 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
390 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
391 Remove superfluous backslashes.
392 (strokes-last-stroke, strokes-global-map, strokes-mode):
393 Reflow docstrings.
394 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
395 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
396 (strokes-distance-squared, strokes-global-set-stroke)
397 (strokes-global-set-stroke-string): Doc fixes.
398 (strokes-help): Fix typos; reflow docstring.
399
400 2014-03-04 Martin Rudalics <rudalics@gmx.at>
401
402 * window.el (window-in-direction): Fix doc-string.
403
404 2014-03-04 Glenn Morris <rgm@gnu.org>
405
406 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
407 Explicit error if no grammar.
408 (smie-config-save): Doc fix. Fix quote typo.
409
410 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
411
412 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
413 electric-indent-mode-hook if we obey electric-indent-mode.
414 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
415 decide whether we obey electric-indent-mode.
416 (c-change-set-fl-decl-start, c-extend-after-change-region):
417 Silence warnings.
418 (c-electric-indent-mode-hook): Assume we do want to obey
419 electric-indent-mode.
420
421 * electric.el (electric-indent-mode-has-been-called): Remove.
422 (electric-indent-mode): Fix accordingly.
423
424 * files.el (hack-local-variables): Mention file name in warning.
425
426 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
427
428 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
429
430 * binding.el: Add comment describing why C-d binds to `delete-char'.
431 * simple.el (delete-forward-char): Mark as interactive-only.
432
433 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
434
435 * icomplete.el (icomplete-completions):
436 Follow-up to 2014-03-01 change.
437
438 * icomplete.el: Miscellaneous doc fixes.
439 Use Icomplete everywhere instead of icomplete for consistency.
440 (icomplete-max-delay-chars): Fix typo.
441 (icomplete-mode): Use \[].
442 (icomplete-tidy, icomplete-exhibit): Reflow.
443 (icomplete-minibuffer-setup-hook, icomplete-completions):
444 Remove superfluous backlashes.
445
446 * ido.el: Miscellaneous doc fixes.
447 Use Ido everywhere instead of ido or `ido' for consistency.
448 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
449 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
450 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
451 (ido-separator): Extract obsolescence info from docstring and declare
452 with make-obsolete-variable.
453 (ido-minibuffer-setup-hook): Simplify example.
454 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
455 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
456 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
457 (ido-everywhere): Reflow docstring.
458 (ido-toggle-vc): Doc fix.
459 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
460 of long list of keybindings.
461
462 2014-03-03 Glenn Morris <rgm@gnu.org>
463
464 * frame.el (display-pixel-height, display-pixel-width)
465 (display-mm-dimensions-alist, display-mm-height)
466 (display-mm-width): Doc tweaks.
467
468 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
469
470 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
471 case of undo in region.
472
473 2014-03-02 Martin Rudalics <rudalics@gmx.at>
474
475 * window.el (fit-window-to-buffer): Fix argument in window-size
476 call when window is horizontally combined.
477
478 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
479
480 * icomplete.el (icomplete-completions): Use string-width.
481 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
482
483 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
484
485 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
486 Highlight regexp options. (Bug#16914)
487
488 2014-03-01 Martin Rudalics <rudalics@gmx.at>
489
490 * window.el (window--max-delta-1): Round down when calculating
491 how many lines/columns we can get from a window.
492
493 2014-03-01 Glenn Morris <rgm@gnu.org>
494
495 * isearch.el (search-invisible): Doc fix.
496
497 * minibuffer.el (completion-hilit-commonality):
498 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
499 * comint.el (comint-dynamic-list-completions): Doc fix.
500 * comint.el (comint-dynamic-list-completions):
501 * filecache.el (file-cache-minibuffer-complete):
502 * tempo.el (tempo-display-completions):
503 * eshell/em-hist.el (eshell-list-history):
504 Replace use of obsolete argument of display-completion-list.
505
506 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
507
508 * icomplete.el (icomplete-completions):
509 Revert back to using "..." when ?… cannot be displayed.
510
511 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
512
513 * finder.el (finder-unload-function): New function.
514
515 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
516
517 * dframe.el (dframe-detach):
518 * find-dired.el (find-dired, find-name-dired):
519 * finder.el (finder-mode-map, finder-mode-syntax-table)
520 (finder-headmark, finder-select, finder-mouse-select):
521 Fix docstring typos.
522
523 2014-02-28 Martin Rudalics <rudalics@gmx.at>
524
525 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
526 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
527 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
528 Fix doc-string based on a suggestion by Nicolas Richard
529 <theonewiththeevillook@yahoo.fr>.
530 * help.el (with-help-window): Fix doc-string.
531
532 2014-02-28 Ivan Kanis <ivan@kanis.fr>
533
534 * net/shr.el (shr-image-animate): New option.
535 (shr-put-image): Respect shr-image-animate.
536
537 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
538
539 * net/tramp-adb.el (tramp-adb-parse-device-names):
540 Use `accept-process-output'.
541 (tramp-adb-handle-file-truename): Cache the localname only.
542 (tramp-adb-handle-make-directory)
543 (tramp-adb-handle-delete-directory): Flush file properties correctly.
544 (tramp-adb-handle-set-file-modes): Do not raise an error when file
545 modes cannot be changed.
546
547 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
548 file properties of symlinks.
549
550 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
551
552 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
553 required/optional fields to match development biblatex. (Bug#16781)
554
555 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
556
557 * saveplace.el (toggle-save-place):
558 Fix argument handling. (Bug#16673)
559
560 2014-02-28 Glenn Morris <rgm@gnu.org>
561
562 * minibuffer.el (completions-first-difference)
563 (completions-common-part, completion-hilit-commonality): Doc fixes.
564
565 2014-02-28 Karl Berry <karl@gnu.org>
566
567 * info.el (Info-mode-map): Add H for describe-mode,
568 to synchronize with standalone Info.
569
570 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
571
572 * progmodes/sql.el (sql-interactive-mode):
573 Avoid setting global comint-input-ring-separator. (Bug#16814)
574
575 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
576
577 * net/dbus.el (dbus--init-bus): Declare function.
578 (dbus-path-local, dbus-interface-local): New defconst.
579 (dbus-init-bus): Use them.
580 (dbus-return-values-table): Extend doc.
581 (dbus-handle-bus-disconnect): Extend error message.
582
583 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
584
585 * subr.el (y-or-n-p): Fix double space issue in message.
586
587 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
588
589 * net/tramp.el (tramp-call-process): Improve trace message.
590 (tramp-handle-insert-file-contents): Trace error case.
591
592 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
593 <insert-directory>: Use `tramp-handle-insert-directory'.
594 (tramp-adb-handle-insert-directory): Remove function.
595 (tramp-adb-send-command-and-check): New defun, replacing
596 `tramp-adb-command-exit-status'. Change all callees.
597 (tramp-adb-handle-file-attributes)
598 (tramp-adb-handle-directory-files-and-attributes): Use it.
599 (tramp-adb-ls-output-name-less-p):
600 Use `directory-listing-before-filename-regexp'.
601 (tramp-adb-handle-delete-directory): Flush also file properties of
602 the truename of directory.
603 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
604 (tramp-adb-handle-file-local-copy): Make the local copy readable.
605 (tramp-adb-handle-write-region): Implement APPEND.
606 (tramp-adb-handle-rename-file): Make it more robust. Flush file
607 properties correctly.
608 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
609 variables. Check for connected devices only when needed.
610
611 2014-02-27 Glenn Morris <rgm@gnu.org>
612
613 * minibuffer.el (completion-table-dynamic)
614 (completion-table-with-cache): Doc fixes.
615
616 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
617 (completing-read-multiple): Doc fixes.
618
619 2014-02-27 Daniel Colascione <dancol@dancol.org>
620
621 * minibuffer.el (completion--nth-completion): Fix indentation.
622
623 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
624 explicit tramp path is empty.
625
626 2014-02-27 Glenn Morris <rgm@gnu.org>
627
628 * emacs-lisp/crm.el (completing-read-multiple):
629 Empower help-enable-auto-load.
630
631 2014-02-26 Glenn Morris <rgm@gnu.org>
632
633 * startup.el (command-line): Don't init the tty in daemon mode.
634
635 Avoid calling tty-setup-hook twice, eg if a term file
636 explicitly calls tty-run-terminal-initialization. (Bug#16859)
637 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
638 (tty-create-frame-with-faces): Use it.
639 * startup.el (command-line): Pass run-hook argument
640 to tty-run-terminal-initialization.
641
642 * dired.el (dired-restore-desktop-buffer): Demote errors;
643 eg in case a glob match fails. (Bug#16884)
644
645 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
646
647 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
648 error from `read-from-string'. (Bug#16850)
649
650 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
651 result of `completing-read' in the interactive form. (Bug#16854)
652
653 2014-02-25 Glenn Morris <rgm@gnu.org>
654
655 * image.el (image-animate, image-animate-timeout):
656 Stop animating images in dead buffers. (Bug#16878)
657
658 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
659
660 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
661 Doc fixes.
662 * startup.el (term-setup-hook): Doc fix. Make obsolete.
663 * term/sun.el (sun-raw-prefix-hooks):
664 Use tty-setup-hook instead of term-setup-hook.
665 (terminal-init-sun): Construct message from bytecomp plist.
666 * term/wyse50.el (enable-arrow-keys): Doc fix.
667
668 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
669
670 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
671 Fix docstring typos.
672
673 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
674
675 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
676
677 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
678
679 * minibuffer.el (completion--try-word-completion):
680 Fix error when completing M-x commands (bug#16808).
681
682 2014-02-24 Leo Liu <sdl.web@gmail.com>
683
684 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
685
686 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
687
688 * apropos.el (apropos-print): Avoid formatting error when
689 apropos-do-all and apropos-compact-layout are both t.
690
691 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
692
693 * apropos.el (apropos-property, apropos-all-words-regexp)
694 (apropos-true-hit, apropos-variable, apropos-print):
695 Fix docstring typos, and remove obsolete comment.
696
697 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
698
699 * net/tramp-sh.el (tramp-sh-handle-file-truename):
700 Preserve trailing "/". (Bug#16851)
701
702 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
703
704 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
705 after `=>' (bug#16811).
706 (ruby-smie-rules): Handle the inconsistent second element of the
707 list returned by `smie-indent--parent'.
708 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
709 method call.
710
711 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
712
713 * elec-pair.el (electric-pair-text-syntax-table)
714 (electric-pair-syntax-info, electric-pair--syntax-ppss)
715 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
716 (electric-pair--looking-at-unterminated-string-p): Doc fix.
717 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
718
719 2014-02-22 Glenn Morris <rgm@gnu.org>
720
721 * imenu.el (imenu--generic-function): Doc fix.
722
723 * register.el (frame-configuration-to-register): Make obsolete.
724
725 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
726
727 * desktop.el (desktop-save-buffer-p): Do not fail when
728 desktop-files-not-to-save is nil. Return t for true result
729 as the doc says.
730
731 2014-02-22 Daniel Colascione <dancol@dancol.org>
732
733 * net/secrets.el (secrets-create-item, secrets-search-items):
734 Check that attribute values are strings, avoiding the construction
735 of invalid dbus messages.
736
737 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
738
739 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
740 defun-declarations-alist.
741
742 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
743
744 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
745 (bug#16829).
746
747 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
748
749 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
750 (whitespace-newline, whitespace-trailing, whitespace-line)
751 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
752 (whitespace-space-after-tab): Fix typo in docstrings.
753
754 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
755
756 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
757
758 * electric.el (electric-indent-functions-without-reindent):
759 Add `yaml-indent-line'.
760
761 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
762
763 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
764 It has done nothing for years; should be removed after the release.
765
766 * simple.el (choose-completion): Fix docstring typo.
767 (read-quoted-char-radix): Remove unneeded * in docstring.
768 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
769 Don't escape parentheses unnecessarily in docstrings.
770
771 2014-02-21 Martin Rudalics <rudalics@gmx.at>
772
773 Fix handling of window-min-height/-width (Bug#16738).
774 * window.el (window--dump-window, window--dump-frame):
775 New functions.
776 (window--min-size-1): Account for window dividers.
777 When window-resize-pixelwise is nil, delay rounding till after the
778 sum of the window components has been calculated.
779 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
780 nil make sure at least one text line and two text columns remain
781 fully visible.
782 (window-resize): Signal an error when window-resize-apply fails.
783 (window--resize-child-windows): Fix calculation of by how many
784 pixels a window can still be shrunk via window-new-normal.
785 (adjust-window-trailing-edge): Call window--resizable with
786 correct TRAIL argument.
787
788 (with-temp-buffer-window): Don't evaluate BODY within
789 with-current-buffer (Bug#16816).
790
791 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
792
793 * net/tramp.el (tramp-check-cached-permissions):
794 Call `file-attributes' with `suffix' being a symbol but a string.
795
796 2014-02-21 Daniel Colascione <dancol@dancol.org>
797
798 * net/dbus.el (dbus-init-bus-1): Declare new subr.
799 (dbus-init-bus): New function: call into dbus-init-bus-1
800 and installs a handler for the disconnect signal.
801 (dbus-call-method): Rewrite to look for result in cons.
802 (dbus-call-method-handler): Store result in cons.
803 (dbus-check-event): Recognize events with nil sender as valid.
804 (dbus-handle-bus-disconnect): New function. React to bus
805 disconnection signal by synthesizing dbus error for each
806 pending synchronous or asynchronous call.
807 (dbus-notice-synchronous-call-errors): New function.
808 (dbus-handle-event): Raise errors directly only when `dbus-debug'
809 is true, not all the time.
810
811 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
812
813 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
814 Remove obsolescence declarations, these variables do not exist anymore.
815
816 * savehist.el (savehist-save-minibuffer-history)
817 (savehist-additional-variables, savehist-file, savehist-mode-hook)
818 (savehist-save-hook, savehist-coding-system, savehist-loaded)
819 (savehist-load, savehist-install, savehist-autosave): Fix typos;
820 mostly, refer to "Savehist mode" when talking about the mode,
821 and not the function.
822
823 * saveplace.el (save-place): Remove redundant info in docstring.
824 (save-place-forget-unreadable-files, toggle-save-place)
825 (save-place-forget-unreadable-files, save-place-dired-hook):
826 Fix typos and remove unneeded backslashes.
827
828 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
829
830 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
831 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
832
833 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
834 <insert-directory>: Use `tramp-handle-insert-directory'.
835 (tramp-gvfs-handle-insert-directory): Remove function.
836
837 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
838 Call `tramp-handle-insert-directory'.
839
840 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
841
842 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
843 before the start of buffer/region (bug#16799).
844
845 2014-02-20 Glenn Morris <rgm@gnu.org>
846
847 * isearch.el (search-invisible): Doc fix.
848
849 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
850
851 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
852 (bug#16657).
853
854 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
855
856 * frameset.el (frameset-restore): Delay removing an old frame's
857 duplicate id until the new frame has been correctly created.
858
859 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
860
861 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
862 (tramp-check-cached-permissions): Call `file-attributes' if the
863 cache is empty.
864
865 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
866 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
867
868 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
869 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
870 (tramp-gvfs-maybe-open-connection): Set always connection
871 properties, even if target is mounted already.
872
873 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
874 Set tramp-autoload cookie.
875 (tramp-get-remote-touch): New defun.
876 (tramp-sh-handle-set-file-times): Use it.
877 (tramp-sh-handle-directory-files-and-attributes):
878 Use `tramp-handle-directory-files-and-attributes' if neither stat
879 nor perl are available on the remote host.
880
881 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
882 "/". Write long listing only when "l" belongs to the switches.
883
884 * net/trampver.el: Update release number.
885
886 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
887
888 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
889
890 2014-02-19 Martin Rudalics <rudalics@gmx.at>
891
892 * window.el (window-state-put): Allow WINDOW to refer to an
893 internal window (Bug#16793).
894
895 2014-02-19 Glenn Morris <rgm@gnu.org>
896
897 * textmodes/remember.el: Move provide statement to end.
898 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
899 (remember-notes): Doc fixes.
900
901 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
902
903 * delsel.el (delete-char): Restore incorrectly erased property
904 (bug#16795).
905
906 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
907
908 * frameset.el (frameset--restore-frame): When a frame is being reused
909 and its root window is not alive, delete all the frame's windows before
910 restoring the window state. This works around the issue in bug#16793.
911
912 2014-02-18 Glenn Morris <rgm@gnu.org>
913
914 * textmodes/remember.el (remember-data-directory)
915 (remember-directory-file-name-format, remember-store-in-files)
916 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
917 (remember-notes-save-and-bury-buffer)
918 (remember-notes--kill-buffer-query): Doc fixes.
919
920 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
921
922 2014-02-17 Alan Mackenzie <acm@muc.de>
923
924 Connect electric-indent-mode up with CC Mode. Bug #15478.
925 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
926 to electric-indent-{,local-}-mode.
927 (c-basic-common-init): Set electric-indent-inhibit.
928 Initialise c-electric-flag from electric-indent-mode.
929 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
930 New hook functions which propagate electric-indent-mode to CC mode.
931
932 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
933 hit, toggle electric-indent-local-mode.
934
935 * electric.el (electric-indent-mode-has-been-called):
936 New variable.
937
938 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
939
940 * frameset.el (frameset-cfg-id): New function.
941 (frameset--reuse-frame, frameset-restore): Use it.
942 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
943
944 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
945
946 * ido.el (ido-file-internal): Remove unused var `d'.
947 Use \` for to match BoS. Fit within 80n columns.
948
949 2014-02-17 Daniel Colascione <dancol@dancol.org>
950
951 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
952 dbus-call-method check for completion using a busy-wait loop with
953 gradual backoff.
954
955 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
956
957 Sync with Tramp 2.2.9.
958
959 * net/trampver.el: Update release number.
960
961 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
962
963 * ido.el (ido-file-internal): Don't add the name of an existing
964 directory twice. (Bug#16747)
965
966 2014-02-16 Glenn Morris <rgm@gnu.org>
967
968 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
969 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
970
971 2014-02-15 Michael R. Mauger <michael@mauger.com>
972
973 * progmodes/sql.el: Version 3.4
974 (sql-oracle-options): New default value ("-L").
975 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
976 (sql-placeholders-filter): Correct placeholder pattern.
977 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
978 (sql-login-delay): New variable.
979 (sql-product-interactive): Use it.
980
981 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
982
983 * frameset.el (frameset--jump-to-register): Check that buffer is live
984 (bug#16749).
985
986 2014-02-15 Glenn Morris <rgm@gnu.org>
987
988 * info.el (info-initialize): Revert 2014-01-10 change.
989
990 2014-02-14 Glenn Morris <rgm@gnu.org>
991
992 * replace.el (map-query-replace-regexp)
993 (read-regexp-defaults-function, read-regexp): Doc fixes.
994
995 * dired.el (dired-read-regexp):
996 * faces.el (list-faces-display):
997 * misearch.el (multi-isearch-read-matching-buffers)
998 (multi-isearch-read-matching-files):
999 * play/cookie1.el (cookie-apropos):
1000 * progmodes/grep.el (grep-read-regexp): Doc fixes.
1001
1002 * textmodes/remember.el (remember): Use frameset-to-register
1003 rather than frame-configuration-to-register.
1004
1005 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
1006
1007 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
1008 incorrect keybinding.
1009
1010 2014-02-13 Daniel Colascione <dancol@dancol.org>
1011
1012 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
1013 when adding overlays so that line numbers from compiler match line
1014 numbers we use.
1015
1016 2014-02-13 Glenn Morris <rgm@gnu.org>
1017
1018 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
1019
1020 * jit-lock.el (jit-lock-mode): Doc fix.
1021
1022 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
1023
1024 * apropos.el (apropos-read-pattern): When the user passes an empty
1025 string, give a more helpful error message than "Wrong type
1026 argument: stringp, nil".
1027
1028 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1029
1030 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
1031
1032 2014-02-13 Glenn Morris <rgm@gnu.org>
1033
1034 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
1035
1036 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
1037
1038 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
1039 shift-select commands.
1040
1041 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
1042
1043 * progmodes/js.el (js-indent-line): Don't widen.
1044 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
1045
1046 2014-02-12 Glenn Morris <rgm@gnu.org>
1047
1048 * icomplete.el (icomplete): Add info-link to defgroup.
1049 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
1050 (icomplete-minibuffer-map, icomplete-mode)
1051 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
1052
1053 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
1054 (package-menu-filter): Rename from package-menu-filter-interactive.
1055 Doc fix.
1056
1057 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
1058
1059 * frameset.el (frameset--jump-to-register): Select the required
1060 window and buffer before restoring position (bug#16696).
1061
1062 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
1063
1064 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
1065
1066 2014-02-10 Glenn Morris <rgm@gnu.org>
1067
1068 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
1069
1070 2014-02-10 Eli Zaretskii <eliz@gnu.org>
1071
1072 * w32-common-fns.el (x-get-selection): Doc fix.
1073 * select.el (x-get-selection): Doc fix. (Bug#15109)
1074
1075 * face-remap.el (face-remap-add-relative)
1076 (face-remap-remove-relative, face-remap-reset-base)
1077 (face-remap-set-base): Call force-mode-line-update to redisplay
1078 the current buffer due to potential change in faces. (Bug#16709)
1079
1080 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
1081
1082 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
1083 script more robustly.
1084
1085 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
1086
1087 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
1088
1089 * simple.el (choose-completion): Doc fix (bug#14160).
1090
1091 * subr.el (event-start): Say what a nil EVENT value means.
1092
1093 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
1094 (bug#14197).
1095
1096 * progmodes/grep.el (find-program): Doc fix (bug#14289).
1097
1098 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
1099
1100 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
1101
1102 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
1103 predicate function (bug#15455).
1104
1105 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
1106
1107 * ielm.el (inferior-emacs-lisp-mode): Instead of
1108 `comment-use-global-state', set `comment-use-syntax'.
1109
1110 2014-02-10 Glenn Morris <rgm@gnu.org>
1111
1112 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
1113
1114 2014-02-09 Alan Mackenzie <acm@muc.de>
1115
1116 Fix c-invalidate-state-cache on narrowed buffers.
1117 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
1118 Widen when setting and clearing the CPP delimiter properties.
1119
1120 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
1121
1122 * help.el (describe-bindings): Doc fix (bug#9888).
1123
1124 * files.el (save-buffer): Use ARG as the parameter name for
1125 consistency (bug#10346).
1126 (save-buffer): Clarify the 0 argument (bug#10346).
1127
1128 * cus-edit.el (customize-apropos): Fix error string.
1129 (custom-buffer-create): Doc fix (bug#11122).
1130 (custom-sort-items): Doc fix (bug#11121).
1131
1132 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
1133
1134 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
1135 (icomplete-simple-completing-p): Mention the previous variable.
1136
1137 * font-lock.el (font-lock-value-in-major-mode): Clarify the
1138 meaning of the parameter (bug#12282).
1139
1140 * files.el (find-file-noselect): Clarify prompt when changing
1141 readedness (bug#13261).
1142 (locate-file): Suffixes aren't returned, so don't say that they
1143 are (bug#12674).
1144 (backup-inhibited): Doc clarification (bug#12525).
1145
1146 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
1147 before we actually start to delete things (bug#16331).
1148
1149 * subr.el (event-start): Doc fix (bug#14228).
1150 (event-end): Ditto.
1151
1152 2014-02-09 Glenn Morris <rgm@gnu.org>
1153
1154 * emacs-lisp/warnings.el (lwarn):
1155 Empower help-enable-auto-load. (Bug#15940)
1156
1157 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
1158
1159 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
1160 (Bug#16690)
1161
1162 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
1163
1164 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1165 Insert output at end of buffer. (Bug#16120)
1166
1167 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
1168
1169 * simple.el (choose-completion-string-functions): Document new
1170 calling convention (bug#14153).
1171 (execute-extended-command): Clarify doc string (bug#13373).
1172
1173 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
1174
1175 * find-dired.el (find-name-dired): Doc fix (bug#14290).
1176 (find-grep-dired): Doc fix (bug#14288).
1177
1178 2014-02-08 Juri Linkov <juri@jurta.org>
1179
1180 * isearch.el (isearch-quote-char): Check character validity
1181 like in `quoted-insert' (bug#16677).
1182
1183 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
1184
1185 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
1186
1187 * isearch.el (isearch-hide-immediately): Doc clarification
1188 (bug#14723).
1189
1190 * simple.el (line-move): Document utility function used many
1191 places in the Emacs sources (bug#14843).
1192
1193 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
1194 (dired-prev-marked-file): Doc fix (bug#14855).
1195 (dired-up-directory): Doc fix (bug#14848).
1196
1197 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
1198
1199 * files.el (file-relative-name): Doc fix (bug#15159).
1200
1201 * fringe.el (fringe-styles): Doc fix (bug#15239).
1202
1203 * isearch.el (isearch-filter-predicate): Documentation typo fix
1204 (bug#15474).
1205
1206 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
1207
1208 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
1209
1210 * replace.el (replace-match-maybe-edit): Doc clarification
1211 (bug#15632).
1212
1213 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
1214
1215 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
1216
1217 2014-02-08 Glenn Morris <rgm@gnu.org>
1218
1219 * help-fns.el (describe-variable):
1220 Check {file,dir}-local-variables-alist, and buffer-file-name,
1221 in the correct buffer.
1222
1223 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
1224
1225 * help-fns.el (describe-variable): Fix the case where
1226 a value is directory-local with no dir-locals file. (Bug#16635)
1227
1228 2014-02-08 Glenn Morris <rgm@gnu.org>
1229
1230 * abbrev.el (edit-abbrevs-mode):
1231 Derive from fundamental-mode. (Bug#16682)
1232
1233 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
1234
1235 * simple.el (quoted-insert): Check character validity (bug#16677).
1236
1237 2014-02-07 Juri Linkov <juri@jurta.org>
1238
1239 * desktop.el (desktop-read): Claim the lock when the owner is not
1240 the current process. (Bug#16157)
1241
1242 2014-02-07 Juri Linkov <juri@jurta.org>
1243
1244 * desktop.el (desktop-buffers-not-to-save): Change default from nil
1245 to "\\` ". (Bug#16651)
1246
1247 2014-02-07 Juri Linkov <juri@jurta.org>
1248
1249 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
1250 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
1251 (desktop-auto-save-cancel-timer): New function with some code from
1252 `desktop-auto-save-set-timer'.
1253 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
1254 Instead of setting `desktop-save-mode' to nil, call
1255 `desktop-save-mode' with arg 0. (Bug#16630)
1256
1257 2014-02-07 Glenn Morris <rgm@gnu.org>
1258
1259 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
1260 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
1261 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
1262
1263 * obsolete/iswitchb.el: Move to obsolete/.
1264 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
1265 since obsolete/ is not scanned for autoloads.
1266 * emacs-lisp/authors.el (authors-valid-file-names):
1267 Add iswitchb.el.
1268
1269 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
1270 Disable now non-functional find-file-hook.
1271
1272 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
1273
1274 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
1275 instead of ";" in order to avoid additional prompts. Let heredoc
1276 scripts read from tty. (Bug#16582)
1277 (tramp-send-command): No special handling of heredocs, it isn't
1278 necessary anymore.
1279
1280 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
1281
1282 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
1283 with a space (bug#16664). Limit the symbols considered to the ones
1284 that are bound or fbound (bug#16646).
1285
1286 2014-02-06 Glenn Morris <rgm@gnu.org>
1287
1288 * epa.el (epa-mail-aliases): Doc fix.
1289
1290 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
1291
1292 * emacs-lisp/lisp.el (lisp-completion-at-point):
1293 Use `completion-table-merge' instead of `completion-table-in-turn'
1294 (bug#16604).
1295
1296 * minibuffer.el (completion-table-merge): New function.
1297
1298 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
1299
1300 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
1301 (tramp-sh-handle-set-file-acl)
1302 (tramp-sh-handle-start-file-process)
1303 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
1304 (tramp-find-executable, tramp-send-command): Use it.
1305
1306 2014-02-05 Glenn Morris <rgm@gnu.org>
1307
1308 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
1309
1310 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
1311
1312 * progmodes/python.el (python-shell-send-string)
1313 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
1314
1315 2014-02-04 Anders Lindgren <andlind@gmail.com>
1316
1317 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
1318 the names (bug#16620).
1319
1320 2014-02-03 Martin Rudalics <rudalics@gmx.at>
1321
1322 * faces.el (window-divider): New default value. Rewrite doc-string.
1323 (window-divider-first-pixel, window-divider-last-pixel): New faces.
1324
1325 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
1326
1327 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
1328 `protected' and `public' can also be called without arguments.
1329
1330 2014-02-03 Glenn Morris <rgm@gnu.org>
1331
1332 * register.el (window-configuration-to-register)
1333 (frame-configuration-to-register): Unadvertise unused argument.
1334 * frameset.el (frameset-to-register): Remove unused argument.
1335
1336 * frameset.el (frameset-to-register):
1337 * kmacro.el (kmacro-to-register):
1338 * register.el (increment-register):
1339 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
1340 (calc-append-to-register, calc-prepend-to-register):
1341 * play/gametree.el (gametree-layout-to-register)
1342 (gametree-apply-register-layout):
1343 * textmodes/picture.el (picture-clear-rectangle-to-register)
1344 (picture-yank-rectangle-from-register):
1345 * vc/emerge.el (emerge-combine-versions-register):
1346 Use register-read-with-preview to read registers.
1347
1348 2014-02-03 João Távora <joaotavora@gmail.com>
1349
1350 * elec-pair.el (electric-pair-backward-delete-char): Don't error
1351 when at beginning of (possibly narrowed) buffer.
1352
1353 2014-02-02 Daniel Colascione <dancol@dancol.org>
1354
1355 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
1356 Also try to display local help from just before point.
1357
1358 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
1359
1360 c-parse-state. Don't "append-lower-brace-pair" in certain
1361 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
1362 recognised as a comment.
1363
1364 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
1365 as well as normal comment starter.
1366 (c-parse-state-get-strategy): Extra return possibility
1367 'back-and-forward.
1368 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
1369 return value list to indicate replacement of a brace-pair cons
1370 with its car.
1371 (c-parse-state-1): With 'back-and-forward, only call
1372 c-append-lower-brace-pair-to state-cache when cons-separated.
1373
1374 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
1375
1376 * term/ns-win.el (ns-suspend-error): New function.
1377 (ns-initialize-window-system): Add ns-suspend-error to
1378 suspend-hook (Bug#16612).
1379
1380 2014-02-02 Daniel Colascione <dancol@dancol.org>
1381
1382 * progmodes/cc-defs.el (c-find-assignment-for-mode):
1383 Make loading cc-mode silent.
1384
1385 2014-02-02 Daniel Colascione <dancol@dancol.org>
1386
1387 * comint.el (comint-prompt-read-only): Change doc to suggest
1388 remap keybinding.
1389
1390 2014-02-02 Glenn Morris <rgm@gnu.org>
1391
1392 * register.el (register-read-with-preview, point-to-register)
1393 (window-configuration-to-register, frame-configuration-to-register)
1394 (jump-to-register, number-to-register, view-register, insert-register)
1395 (copy-to-register, append-to-register, prepend-to-register)
1396 (copy-rectangle-to-register): Doc fixes.
1397
1398 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
1401 * emacs-lisp/find-func.el (find-function-C-source): Idem.
1402 * emacs-lisp/nadvice.el (advice--cd*r): New function.
1403 * help-fns.el (describe-function-1): Use it.
1404
1405 2014-02-02 Glenn Morris <rgm@gnu.org>
1406
1407 * register.el (register-preview-default): New function,
1408 split from register-preview.
1409 (register-preview-function): Rename from register-preview-functions,
1410 make it not a hook.
1411 (register-preview): Use register-preview-function.
1412 (register-read-with-preview): Error on non-character event. (Bug#16595)
1413
1414 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
1415
1416 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
1417 `:' before binary operators (bug#16609). Don't check for `:'
1418 before `[' and `(', or their syntax status. A percent literal
1419 can't end with either.
1420 (ruby-font-lock-keywords): For built-ins that require arguments,
1421 check that they're followed by something that looks like argument
1422 (bug#16610).
1423
1424 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
1425
1426 * subr.el (butlast): Document what an omitted N means (bug#13437).
1427 (nbutlast): Ditto.
1428
1429 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
1430
1431 * net/shr.el (shr-generic): Make into a defsubst to make the stack
1432 depth shallower (bug#16587).
1433 (shr-tag-svg): Respect `shr-inhibit-images'.
1434 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
1435
1436 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
1437
1438 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
1439 (ruby-smie-grammar): Make "." right-associative. Make its priority
1440 lower than the ternary and all binary operators.
1441 (ruby-smie-rules): Indent "(" relative to the first non-"."
1442 parent, or the first "." parent at indentation.
1443 Use `ruby-align-chained-calls' for indentation of "." tokens.
1444 (Bug#16593)
1445
1446 2014-01-31 Juri Linkov <juri@jurta.org>
1447
1448 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
1449 from `make-hash-table'.
1450
1451 * textmodes/ispell.el (ispell-init-process): Change message format
1452 to be consistent with other messages.
1453
1454 2014-01-31 Glenn Morris <rgm@gnu.org>
1455
1456 * delsel.el (delete-selection-mode): Doc fix.
1457
1458 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
1459 (trace-function-background): Doc fixes.
1460
1461 * ido.el (ido-use-virtual-buffers): Doc fix.
1462 Reset :version, since the default value has not changed.
1463
1464 * register.el (register-preview-delay, register-read-with-preview):
1465 Doc fixes.
1466
1467 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
1468 do not mess with mail-buffer position (fixes 2009-11-03 change).
1469 * progmodes/cc-mode.el (c-submit-bug-report):
1470 Check auto-fill-mode is bound. (Bug#16592)
1471
1472 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
1473
1474 * startup.el (fancy-splash-image-file): New function,
1475 split from fancy-splash-head.
1476 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
1477 so that we are both using the same image. (Bug#16574)
1478
1479 2014-01-30 Glenn Morris <rgm@gnu.org>
1480
1481 * simple.el (eval-expression): Doc fix.
1482
1483 * hexl.el (hexl-mode-hook):
1484 * ielm.el (ielm-mode-hook):
1485 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
1486 (lisp-interaction-mode-hook):
1487 * progmodes/cfengine.e (cfengine3-documentation-function):
1488 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
1489
1490 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1491
1492 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
1493 is a symbol (bug#16584).
1494
1495 2014-01-30 Glenn Morris <rgm@gnu.org>
1496
1497 * help.el (help-for-help-internal): Add "P" to text.
1498
1499 2014-01-29 Glenn Morris <rgm@gnu.org>
1500
1501 * simple.el (just-one-space, cycle-spacing): Doc fixes.
1502
1503 2014-01-28 Martin Rudalics <rudalics@gmx.at>
1504
1505 * window.el (fit-frame-to-buffer): Fix calculations for margins and
1506 height constraints.
1507
1508 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
1509
1510 * progmodes/hideif.el: Extend to full CPP expression syntax.
1511 (hif-token-alist): Add missing tokens.
1512 (hif-token-regexp): Add support for float/octal/hex immediates.
1513 (hif-string-literal-regexp): New const.
1514 (hif-tokenize): Recognize strings and float/octal/hex immediates.
1515 (hif-exprlist): New function.
1516 (hif-parse-if-exp): Use it.
1517 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
1518 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
1519 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
1520 (hif-logxor, hif-comma): New functions.
1521
1522 2014-01-28 Glenn Morris <rgm@gnu.org>
1523
1524 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
1525
1526 * indent.el (tab-stop-list): Doc fix. Add :version.
1527
1528 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
1529 (cvs-append-to-ignore): Add compatibility alias.
1530
1531 2014-01-27 Glenn Morris <rgm@gnu.org>
1532
1533 * dired.el (dired-hide-details-mode): Don't autoload it,
1534 since it cannot be used outside Dired buffers anyway.
1535
1536 * emulation/cua-base.el (cua-mode): Doc fix.
1537
1538 * dired.el (dired-hide-details-hide-symlink-targets)
1539 (dired-hide-details-hide-information-lines)
1540 (dired-hide-details-mode): Doc fixes.
1541
1542 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
1543 * strokes.el (strokes-file): Doc fix. Bump :version.
1544 (strokes-help): Doc fix.
1545 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
1546 * emulation/viper.el (viper): Doc fix for custom group.
1547 (top-level): Remove oh-so-no-longer-relevant text about vip.
1548 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
1549
1550 * ido.el (ido-save-directory-list-file):
1551 * saveplace.el (save-place-file):
1552 * calendar/timeclock.el (timeclock-file):
1553 * net/quickurl.el (quickurl-url-file):
1554 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
1555 * progmodes/idlwave.el (idlwave-config-directory):
1556 * textmodes/remember.el (remember-data-file):
1557 Bump :version.
1558
1559 2014-01-26 Glenn Morris <rgm@gnu.org>
1560
1561 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
1562 Doc fix. Make obsolete.
1563 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
1564
1565 * sort.el (delete-duplicate-lines): Doc fix.
1566
1567 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1568
1569 * progmodes/ada-mode.el (ada):
1570 * woman.el (woman): Link to info manual and Commentary section.
1571
1572 * progmodes/flymake.el (flymake):
1573 * nxml/nxml-mode.el (nxml):
1574 * net/eww.el (eww):
1575 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
1576 * htmlfontify.el (htmlfontify):
1577 * ses.el (ses):
1578 * epa.el (epa):
1579 * ido.el (ido): Link to info manual.
1580
1581 2014-01-25 Leo Liu <sdl.web@gmail.com>
1582
1583 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
1584
1585 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
1586
1587 * net/shr.el (shr-tag-img): Prefer the title over the alt text
1588 (bug#16537).
1589
1590 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
1591
1592 * net/eww.el (eww-download-callback):
1593 Fix reference to eww-download-directory.
1594
1595 * emacs-lisp/bytecomp.el (byte-compile-file):
1596 Remove unused local variable `file-name'.
1597
1598 2014-01-24 Glenn Morris <rgm@gnu.org>
1599
1600 * woman.el (woman-default-faces, woman-monochrome-faces):
1601 Fix obsolescence specification.
1602
1603 * subr.el (with-demoted-errors): Doc fix.
1604
1605 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1606
1607 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
1608 (cl--macroexp-fboundp): New function.
1609 (cl--make-type-test): Use it.
1610
1611 2014-01-23 Glenn Morris <rgm@gnu.org>
1612
1613 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
1614 * simple.el (eval-expression): Doc fixes.
1615
1616 2014-01-22 Glenn Morris <rgm@gnu.org>
1617
1618 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
1619
1620 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
1621
1622 * emacs-lisp/package.el: Write files silently.
1623 (package-autoload-ensure-default-file, package--write-file-no-coding)
1624 (package-generate-description-file, package--download-one-archive)
1625 (package-install-from-archive): Tell `write-region' to stay quiet.
1626 (package-menu-mode, package-menu--print-info): Omit the Archive column
1627 if there's only one archive.
1628 (package-all-keywords, package--has-keyword-p): Remove dead code.
1629
1630 2014-01-22 Glenn Morris <rgm@gnu.org>
1631
1632 * version.el (emacs-bzr-version-bzr): Fix typo.
1633
1634 * version.el (emacs-repository-get-version):
1635 Check either .bzr or .git, but not both.
1636 Make the git case actually use the DIR argument, and return nil
1637 rather than the empty string.
1638 Avoid error if .git exists but the git executable is not found.
1639
1640 2014-01-22 Martin Rudalics <rudalics@gmx.at>
1641
1642 Fixes in window size functions around Bug#16430 and Bug#16470.
1643 * window.el (window-total-size, window-size): New argument ROUND.
1644 (window--min-delta-1, window-min-delta, window--max-delta-1):
1645 Be more conservative when calculating the numbers of lines or
1646 columns a window can shrink (Bug#16430).
1647 (fit-window-to-buffer): Simplify code.
1648 * term.el (term-window-width): Call window-body-width again.
1649
1650 2014-01-22 Glenn Morris <rgm@gnu.org>
1651
1652 * image.el (image-format-suffixes): Doc fix.
1653
1654 * international/quail.el (quail-define-package): Doc fix.
1655
1656 * emacs-lisp/authors.el (authors-valid-file-names)
1657 (authors-renamed-files-alist): Additions.
1658
1659 * vc/vc-git.el (vc-git-print-log): Remove --follow;
1660 reverts 2014-01-09 change. (Bug#16422)
1661
1662 * calc/calc-embed.el (thing-at-point-looking-at):
1663 * emacs-lisp/map-ynp.el (x-popup-dialog):
1664 * obsolete/lmenu.el (x-popup-dialog):
1665 * emacs-lisp/package.el (url-recreate-url):
1666 * mail/mailclient.el (clipboard-kill-ring-save):
1667 * subr.el (x-popup-dialog): Update declaration.
1668 * mail/rmail.el (rmail-mime-message-p):
1669 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
1670
1671 2014-01-21 Daniel Colascione <dancol@dancol.org>
1672
1673 * progmodes/sh-script.el (sh--inside-noncommand-expression):
1674 Correctly detect when we're inside an arithmetic expansion form
1675 containing nested parenthesis.
1676 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
1677 to detect cases where we shouldn't expand "<<" to a heredoc
1678 skeleton.
1679
1680 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
1681
1682 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
1683 (eldoc--message-command-p): New function.
1684 (eldoc-display-message-p): Use it.
1685 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
1686 message is not automatically erased for us.
1687 (eldoc-print-current-symbol-info): Erase previous message, if any.
1688
1689 2014-01-21 Tassilo Horn <tsdh@gnu.org>
1690
1691 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
1692 specify it's an interactive function.
1693
1694 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
1695 Fix regex used for scanning for citation keys which failed for
1696 citations with optional arguments.
1697
1698 2014-01-21 Leo Liu <sdl.web@gmail.com>
1699
1700 * simple.el (read--expression): Don't enable eldoc-mode.
1701
1702 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
1703
1704 * simple.el (move-beginning-of-line): Make sure we don't move forward
1705 (bug#16497).
1706
1707 2014-01-20 Juri Linkov <juri@jurta.org>
1708
1709 * saveplace.el (toggle-save-place, save-place-to-alist)
1710 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
1711 'dired-mode) before checking for dired-directory. (Bug#16477)
1712
1713 2014-01-20 Juri Linkov <juri@jurta.org>
1714
1715 * indent.el (indent-line-to): Use backward-to-indentation
1716 instead of back-to-indentation. (Bug#16461)
1717
1718 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
1719
1720 Revert some of the CANNOT_DUMP fix (Bug#16494).
1721 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
1722 but fixing this can wait until after the next release.
1723 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
1724
1725 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
1726
1727 * eshell/esh-mode.el (eshell-password-prompt-regexp):
1728 Use `password-word-equivalents'.
1729 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
1730 to t. (Bug#5664, Bug#13124)
1731
1732 2014-01-19 Alan Mackenzie <acm@muc.de>
1733
1734 Bind open-paren-in-column-0-is-defun-start to nil at some entry
1735 points.
1736 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
1737 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
1738 * progmodes/cc-mode.el (c-before-change, c-after-change)
1739 (c-font-lock-fontify-region): Bind it here.
1740
1741 2014-01-19 Martin Rudalics <rudalics@gmx.at>
1742
1743 * term.el (term-window-width): Call window-text-width instead of
1744 window-width (Bug#16470).
1745
1746 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
1747
1748 * simple.el (password-word-equivalents): Remove duplicates.
1749 Sort, to make this easier next time.
1750 Downcase. Omit ": " after "jelszó".
1751
1752 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
1753
1754 * term/common-win.el (saved-region-selection): Defvar it.
1755 (x-select-text): Set saved-region-selection (Bug#16382).
1756
1757 2014-01-18 Glenn Morris <rgm@gnu.org>
1758
1759 * emacs-lisp/authors.el (authors-aliases)
1760 (authors-renamed-files-alist): Add some entries.
1761
1762 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
1763
1764 * net/tramp.el (tramp-password-prompt-regexp):
1765 Use `password-word-equivalents' if available.
1766 (tramp-action-password, tramp-process-one-action)
1767 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
1768
1769 2014-01-17 Chong Yidong <cyd@gnu.org>
1770
1771 * simple.el (password-word-equivalents): New defcustom.
1772 * comint.el (comint-password-prompt-regexp): Use it. Bump version
1773 to 24.4.
1774 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
1775 to t. (Bug#13124)
1776
1777 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
1778
1779 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
1780 (ruby-align-to-stmt-keywords): Change the default value.
1781 Use `ruby-alignable-keywords' to generate the possible customization
1782 choices.
1783 (ruby-smie-rules): Instead of using a hardcoded list of alignable
1784 keywords, check against the value of `ruby-alignable-keywords'
1785 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
1786
1787 2014-01-17 Glenn Morris <rgm@gnu.org>
1788
1789 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
1790
1791 Make M-x authors return zero *Authors Errors* from current logs.
1792 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
1793 (authors-ignored-files): Add some entries, remove others.
1794 (authors-ambiguous-files, authors-valid-file-names):
1795 Add some entries.
1796 (authors-renamed-files-alist): Add, remove, and adjust entries.
1797 (authors-renamed-files-regexps): Add some entries.
1798 Remove some very broad ones. Make some entries `lax'.
1799 (authors-lax-changelogs): New constant.
1800 (authors-disambiguate-file-name): Treat top-level specially.
1801 (authors-lax-changelog-p): New function.
1802 (authors-canonical-file-name): Check file as written against
1803 authors-valid-file-names. Do not special-case etc/.
1804 Handle `lax' logs and authors-renamed-files-regexps elements.
1805
1806 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
1807
1808 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
1809 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
1810 callers.
1811
1812 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1813
1814 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
1815 Assume we're already in the proper buffer.
1816 Inspired by Anders Lindgren <andlind@gmail.com>.
1817 (follow-post-command-hook): Call it from the right buffer.
1818 (follow-comint-scroll-to-bottom): Adjust call.
1819 (follow-all-followers): Use get-buffer-window-list.
1820
1821 2014-01-15 Daniel Colascione <dancol@dancol.org>
1822
1823 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
1824 `buffer-file-name' in interactive-form so that we don't leave
1825 pathless file names in `file-name-history'.
1826
1827 2014-01-15 Juri Linkov <juri@jurta.org>
1828
1829 * indent.el (indent-rigidly): Set deactivate-mark to nil
1830 in transient indentation mode. (Bug#16438)
1831
1832 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
1833
1834 * emacs-lisp/package.el (package-desc-keywords): New function
1835 (Bug#16222).
1836 (describe-package-1, package-all-keywords)
1837 (package--has-keyword-p): Use it.
1838
1839 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1840
1841 * simple.el (define-alternatives): When creating the
1842 COMMAND-alternatives variable, assign COMMAND as its definition
1843 name so that `describe-variable' can relocate it.
1844
1845 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
1846
1847 * font-lock.el (font-lock-keywords): Fix typo in docstring
1848 (bug#16307).
1849
1850 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1851
1852 * ispell.el (ispell-region): Reset `in-comment' for new line
1853 instead of wrongly reset `add-coment' (bug#13577).
1854
1855 2014-01-14 Daiki Ueno <ueno@gnu.org>
1856
1857 * epa-file.el (epa-file-write-region): Encode the region according
1858 to `buffer-file-format'. Problem reported at:
1859 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
1860
1861 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
1862
1863 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
1864 so it applies in the right buffer (bug#16410).
1865
1866 2014-01-13 Daniel Colascione <dancol@dancol.org>
1867
1868 * textmodes/rst.el (rst-define-key): Provide deprecated
1869 keybindings through named functions instead of anonymous ones so
1870 that "??" doesn't appear in describe-mode output.
1871
1872 2014-01-13 Bastien Guerry <bzg@gnu.org>
1873
1874 * simple.el (define-alternatives): Call the selected command
1875 interactively. When setting `COMMAND--implementation' for the
1876 first time, tell the user how to chose another implementation.
1877 Enhance the docstring.
1878
1879 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1880
1881 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
1882 (log-edit--match-first-line): New function.
1883 (log-edit-font-lock-keywords): Use it.
1884 (log-edit-mode): Make jit-lock-defer-multiline work.
1885
1886 2014-01-13 Bastien Guerry <bzg@gnu.org>
1887
1888 * rect.el (rectangle-mark-mode): When the region is not active,
1889 display a message saying that the mark as been set and that
1890 rectangle mode is in use.
1891 (rectangle--highlight-for-redisplay): Only put an overlay with a
1892 visible vertical bar when (display-graphic-p) is non-nil.
1893 This partially fixes Bug#16403.
1894
1895 2014-01-13 Juri Linkov <juri@jurta.org>
1896
1897 * info.el (Info-find-file): Go to DIR before displaying the error
1898 about a nonexistent file if no previous Info file is visited.
1899 Use `user-error' instead of `error' for "Info file %s does not exist".
1900 (Info-find-node-2): In case of a nonexistent node in unwind forms
1901 go to the Top node if there is no previous node to revert to.
1902 (Bug#16405)
1903
1904 2014-01-13 Martin Rudalics <rudalics@gmx.at>
1905
1906 fit-frame/window-to-buffer code fixes including one for Bug#14096.
1907 * window.el (fit-frame-to-buffer): Fix doc-string.
1908 Respect window-min-height/-width. Fit pixelwise when
1909 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
1910 when avoiding that frame goes partially off-screen.
1911 (fit-window-to-buffer): Respect window-min-height/-width
1912 (Bug#14096).
1913
1914 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1915
1916 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
1917 after an empty line.
1918
1919 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
1920
1921 * net/shr.el (shr-render-region): Autoload.
1922
1923 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
1924
1925 * net/eww.el (eww-download-directory): Rename from
1926 `eww-download-path' (Bug#16419).
1927
1928 2014-01-12 Leo Liu <sdl.web@gmail.com>
1929
1930 * dired-x.el (dired-mode-map): Fix last change.
1931
1932 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
1933
1934 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
1935
1936 Spelling fixes.
1937 * emacs-lisp/generic.el (generic--normalize-comments):
1938 Rename from generic--normalise-comments. All uses changed.
1939 * play/bubbles.el (bubbles--neighborhood-score)
1940 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
1941 (bubbles--neighborhood-available)
1942 (bubbles--update-neighborhood-score):
1943 Rename from names with 'neighbourhood'. All uses changed.
1944
1945 2014-01-12 Leo Liu <sdl.web@gmail.com>
1946
1947 Re-implement the feature of showing eldoc info after editing.
1948 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
1949 (eldoc-edit-message-commands): New function.
1950 (eldoc-print-after-edit): New variable.
1951 (eldoc-pre-command-refresh-echo-area): Emit message only by
1952 eldoc-message-commands.
1953 (eldoc-mode): Restrict eldoc-message-commands to editing commands
1954 if eldoc-print-after-edit is set. (Bug#16346)
1955 * simple.el (read--expression): Enable eldoc-mode.
1956 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
1957
1958 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
1959 Eric S. Raymond <esr@thyrsus.com>
1960
1961 * version.el (emacs-repository-get-version): Enhance so the
1962 function works correctly in either a Bazaar or Git repo.
1963
1964 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
1965
1966 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
1967 Goes with removal of the joke manpages from /etc.
1968
1969 2014-01-10 Kenichi Handa <handa@gnu.org>
1970
1971 * mail/rmail.el (rmail-get-coding-system):
1972 Check rmail-get-coding-function before "funcall"ing it.
1973
1974 2014-01-10 Glenn Morris <rgm@gnu.org>
1975
1976 * emacs-lisp/authors.el (authors-fixed-entries):
1977 Update for files that no longer exist.
1978
1979 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
1980
1981 * version.el (emacs-bzr-get-version): Restore compatibilty with
1982 24.3 (Tested).
1983
1984 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
1985
1986 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
1987 and Podfile.
1988
1989 2014-01-10 Eli Zaretskii <eliz@gnu.org>
1990
1991 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
1992
1993 2014-01-10 Chong Yidong <cyd@gnu.org>
1994
1995 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
1996
1997 2014-01-10 Anders Lindgren <andlind@gmail.com>
1998
1999 * follow.el (follow-cache-command-list): Include right-char and
2000 left-char.
2001
2002 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
2003
2004 Spelling fixes.
2005 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
2006 * woman.el (woman-mark-horizontal-position):
2007 Rename from woman-mark-horizonal-position. Use changed.
2008
2009 2014-01-10 Glenn Morris <rgm@gnu.org>
2010
2011 * info.el (info-initialize): If running uninstalled, ensure our
2012 own info files are always found first, even if INFOPATH is set.
2013
2014 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
2015
2016 2014-01-09 David Engster <deng@randomsample.de>
2017
2018 * emacs-lisp/eieio-custom.el:
2019 * emacs-lisp/eieio-opt.el: Set generated autoload file to
2020 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
2021 * emacs-lisp/eieio.el: Regenerate autoloads.
2022
2023 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
2024
2025 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
2026 following renames. (Bug#8756)
2027
2028 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
2029
2030 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
2031 (bug#16382).
2032 (activate-mark): Add `no-tmm' argument.
2033 (set-mark, push-mark-command): Use it instead of running
2034 activate-mark-hook by hand.
2035
2036 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
2037
2038 In preparation for the move to git, sanitize out some
2039 Bazaar-specific names.
2040
2041 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
2042
2043 * version.el (emacs-bzr-version): Name changed to
2044 emacs-repository-version. Obsolete-variable alias made.
2045 * loadup.el: Follow through on this name change.
2046 * mail/emacsbug.el (report-emacs-bug): Factor out any
2047 assumption about the version control system in use.
2048
2049 2014-01-08 David Engster <deng@randomsample.de>
2050
2051 * help-fns.el (help-fns-describe-function-functions):
2052 New variable to call functions for augmenting help buffers.
2053 (describe-function-1): Remove explicit calls to
2054 `help-fns--compiler-macro', `help-fns--parent-mode' and
2055 `help-fns--obsolete'. Put them in above new variable instead, and
2056 call them through `run-hook-with-args'.
2057 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
2058 `eieio-describe-class'. Not meant for interactive use anymore,
2059 but to augment existing help buffers. Remove optional second
2060 argument. Create proper button for file location.
2061 Rewrite function to use `insert' instead of `princ' and `prin1' where
2062 possible.
2063 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
2064 (eieio-method-def, eieio-class-def): Move further up.
2065 (describe-method, describe-generic, eieio-describe-method):
2066 Remove aliases.
2067 (eieio-help-constructor, eieio-help-generic): Rename from
2068 `eieio-describe-constructor' and `eieio-describe-generic', resp.
2069 Rewrite to use `insert' in the current buffer and use proper help
2070 buttons.
2071 (eieio-help-find-method-definition)
2072 (eieio-help-find-class-definition): Also accept symbols as
2073 arguments.
2074 (eieio-help-mode-augmentation-maybee): Remove.
2075 (eieio-describe-class-sb): Use `describe-function'.
2076 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
2077 Add `eieio-help-generic' and `eieio-help-constructor'.
2078
2079 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
2080
2081 Spelling fixes.
2082 * language/china-util.el (hz-ascii-designation):
2083 Rename from hz-ascii-designnation.
2084 (hz-ascii-designation): Rename from hz-ascii-designnation.
2085 All uses changed.
2086
2087 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2088
2089 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
2090 package-alist.
2091
2092 2014-01-08 Bastien Guerry <bzg@gnu.org>
2093
2094 * emacs-lisp/package.el (package-delete):
2095 Correctly delete the package from package-alist.
2096
2097 2014-01-08 Daiki Ueno <ueno@gnu.org>
2098
2099 * emacs-lisp/package.el (url-recreate-url): Declare.
2100 (url-http-target-url): Declare.
2101 (package-handle-response): Include requested URL in the error message.
2102 (package--check-signature): Don't re-signal errors from
2103 package--with-work-buffer. Suggested by Stefan Monnier.
2104
2105 2014-01-07 Bastien Guerry <bzg@gnu.org>
2106
2107 * minibuffer.el (completion--try-word-completion): When both a
2108 hyphen and a space are possible candidates for the character
2109 following a word, display both candidates. (Bug#15980)
2110
2111 2014-01-07 Martin Rudalics <rudalics@gmx.at>
2112
2113 * window.el (balance-windows-2): While rounding don't give a
2114 window more than the remainder. Bug#16351, bug#16383.
2115
2116 2014-01-07 Glenn Morris <rgm@gnu.org>
2117
2118 * menu-bar.el (menu-bar-help-extra-packages): Remove.
2119 (menu-bar-help-menu): Use view-external-packages instead.
2120
2121 2014-01-07 Bastien Guerry <bzg@gnu.org>
2122
2123 * emacs-lisp/package.el (package-delete): Also delete the package
2124 name from `package-alist', not its description only.
2125
2126 2014-01-07 Glenn Morris <rgm@gnu.org>
2127
2128 * help.el (view-external-packages):
2129 * menu-bar.el (menu-bar-help-extra-packages):
2130 Visit efaq.info rather than etc/MORE.STUFF.
2131
2132 2014-01-07 Juri Linkov <juri@jurta.org>
2133
2134 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
2135 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
2136
2137 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
2138 that shadows RET. (Bug#16342)
2139
2140 2014-01-07 Chong Yidong <cyd@gnu.org>
2141
2142 * isearch.el (isearch-yank-char, isearch-yank-word)
2143 (isearch-yank-line): Doc fix.
2144
2145 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
2146
2147 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
2148 * emacs-lisp/elint.el (elint-find-builtins):
2149 * emacs-lisp/eldoc.el (eldoc-symbol-function):
2150 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
2151 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
2152 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
2153 * apropos.el (apropos-safe-documentation):
2154 * subr.el (symbol-file): Remove redundant fboundp.
2155 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
2156
2157 2014-01-06 Bastien Guerry <bzg@gnu.org>
2158
2159 * hl-line.el (global-hl-line-overlay): Make a local variable.
2160 (global-hl-line-overlays): New variable to store all overlays.
2161 (global-hl-line-mode): Don't delete overlays from the current
2162 buffer when `global-hl-line-sticky-flag' is non-nil.
2163 (global-hl-line-highlight): Add new overlays to
2164 `global-hl-line-overlays'.
2165 (global-hl-line-unhighlight-all): New function to delete all
2166 overlays when turning off `global-hl-line-mode'.
2167 This fixes Bug#16183.
2168
2169 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
2170
2171 * subr.el (set-transient-map): Fix nested case and docstring.
2172
2173 2014-01-06 Tassilo Horn <tsdh@gnu.org>
2174
2175 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
2176 `Texinfo' entry.
2177
2178 2014-01-06 Daniel Colascione <dancol@dancol.org>
2179
2180 Fix defun navigation in vc log view.
2181
2182 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
2183 like `beginning-of-defun'.
2184 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
2185 log-view-end-of-defun to log-view-end-of-defun-1. Replace
2186 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
2187 (log-view-extract-comment): Call `log-view-current-entry' directly
2188 instead of relying on broken `log-view-beginning-of-defun' behavior.
2189
2190 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
2191
2192 Spelling fixes.
2193 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
2194 * emacs-lisp/debug.el (cancel-debug-on-entry):
2195 * epg.el (epg-error-to-string):
2196 * files.el (recover-file):
2197 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
2198 * mail/emacsbug.el (report-emacs-bug-hook):
2199 * mail/sendmail.el (mail-recover):
2200 * ses.el (ses-yank-resize):
2201 * term/ns-win.el (ns-print-buffer):
2202 Spelling fixes in diagnostics, mostly for "canceled" with one L.
2203 * epg.el (epg-key-capability-alist): Rename from misspelled version.
2204 All uses changed.
2205 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
2206
2207 2014-01-06 Leo Liu <sdl.web@gmail.com>
2208
2209 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
2210 to avoid shadowing global key. (Bug#16354)
2211
2212 2014-01-06 Daniel Colascione <dancol@dancol.org>
2213
2214 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
2215 rst-mode.
2216
2217 2014-01-05 Martin Rudalics <rudalics@gmx.at>
2218
2219 * window.el (balance-windows): Add mising t to fix Bug#16351.
2220
2221 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2222
2223 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
2224 (bug#16285).
2225 (shr-insert): If we have a word that's longer than `shr-width',
2226 break after it anyway. Otherwise we'll do no breaking once we get
2227 such a long word.
2228
2229 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2230
2231 * net/eww.el (eww): Support single/double quote for search.
2232 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
2233 (eww-history-quit): Delete and use quit-window.
2234 (eww-history-kill): Delete, because it doesn't work well and
2235 not necessary.
2236 (eww-history-mode-map): Delete some keys and add easy-menu.
2237
2238 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
2239
2240 Fix misspelling of 'chinese' in rx (Bug#16237).
2241 * emacs-lisp/rx.el (rx-categories): Correct spelling of
2242 chinese-two-byte.
2243
2244 Change subword regexps back to vars (Bug#16296).
2245 * progmodes/subword.el (subword-forward-regexp)
2246 (subword-backward-regexp): Change these back to variables.
2247
2248 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
2249
2250 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
2251 syntax-begin-function (bug#16247).
2252
2253 2014-01-03 Chong Yidong <cyd@gnu.org>
2254
2255 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
2256 (advice--docstring): Delete variable.
2257 (advice--make-1): Leave the docstring empty.
2258 (advice-add): Use function-documentation for advised docstring.
2259
2260 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
2261 Ignore function-documentation property when getting documentation.
2262 (ad-activate-advised-definition): Use function-documentation
2263 generate the docstring.
2264 (ad-make-advised-definition): Don't call
2265 ad-make-advised-definition-docstring.
2266 (ad-make-advised-definition-docstring, ad-advised-definition-p):
2267 Delete functions.
2268
2269 * progmodes/sql.el (sql-help): Use function-documentation instead
2270 of dynamic-docstring-function property. No need to autoload now.
2271 (sql--help-docstring): New variable.
2272 (sql--make-help-docstring): Use it.
2273
2274 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
2275
2276 * ielm.el (ielm-tab): Retarget.
2277 (ielm-map): Use ielm-tab for tab.
2278 (ielm-complete-filename): Use comint-filename-completion.
2279 (ielm-complete-symbol): Remove.
2280 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
2281 remove ielm-tab from completion-at-point-functions (bug#16224).
2282
2283 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
2284 Beware signals raised by predicates (bug#16201).
2285
2286 2014-01-02 Richard Stallman <rms@gnu.org>
2287
2288 * dired-aux.el (dired-do-print): Handle printer-name.
2289
2290 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
2291 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
2292 (rmail-epa-decrypt): Turn off mime processing.
2293
2294 * mail/rmail.el (rmail-make-in-reply-to-field):
2295 Add parens in message-id.
2296
2297 * mail/rmail.el (rmail-get-coding-function): Variable.
2298 (rmail-get-coding-system): Use it.
2299
2300 2013-12-31 Eli Zaretskii <eliz@gnu.org>
2301
2302 * international/mule-conf.el: Unify the charset indian-is13194.
2303 (indian-is13194): Specify unify-map.
2304
2305 2013-12-31 Leo Liu <sdl.web@gmail.com>
2306
2307 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
2308
2309 2013-12-30 Daniel Colascione <dancol@dancol.org>
2310
2311 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
2312 of printing a useless when we resume from sleep.
2313
2314 * progmodes/sh-script.el
2315 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
2316 in indentation code. (Bug#16233)
2317
2318 2013-12-28 João Távora <joaotavora@gmail.com>
2319
2320 * elec-pair.el (electric-pair-post-self-insert-function):
2321 Don't open extra newlines at beginning of buffer. (Bug#16272)
2322
2323 2013-12-28 Eli Zaretskii <eliz@gnu.org>
2324
2325 * frame.el (window-system-for-display): Don't allow to create a
2326 GUI frame from a -nw session on MS-Windows. (Bug#14739)
2327
2328 2013-12-28 Glenn Morris <rgm@gnu.org>
2329
2330 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
2331 Update callers.
2332
2333 * apropos.el (apropos-match-face):
2334 * calculator.el (calculator-displayer):
2335 * dabbrev.el (dabbrev-search-these-buffers-only):
2336 * face-remap.el (buffer-face-mode-face):
2337 * simple.el (yank-handled-properties):
2338 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
2339 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
2340 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
2341 (hashcash-double-spend-database):
2342 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
2343 (ruby-deep-indent-paren-style):
2344 * textmodes/flyspell.el (flyspell-auto-correct-binding):
2345 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
2346 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
2347 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
2348 Specify custom types.
2349
2350 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
2351 * bookmark.el (bookmark-bmenu-use-header-line):
2352 * doc-view.el (doc-view-scale-internally):
2353 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
2354 * register.el (register-preview-delay):
2355 * net/shr.el (shr-bullet):
2356 * progmodes/cfengine.el (cfengine-cf-promises)
2357 (cfengine-parameters-indent):
2358 * progmodes/octave.el (inferior-octave-error-regexp-alist):
2359 * textmodes/reftex-vars.el (reftex-label-regexps):
2360 * vc/log-edit.el (log-edit-setup-add-author): Add version.
2361
2362 * net/tls.el (tls-certtool-program): Fix default value.
2363
2364 * desktop.el (desktop-restore-in-current-display):
2365 * newcomment.el (comment-empty-lines):
2366 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
2367 (idlwave-pad-keyword):
2368 * progmodes/tcl.el (tcl-tab-always-indent):
2369 * textmodes/reftex-vars.el (reftex-index-default-tag):
2370 * elec-pair.el (electric-pair-skip-whitespace):
2371 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
2372
2373 * emacs-lisp/authors.el (authors-ignored-files)
2374 (authors-valid-file-names, authors-renamed-files-alist): Additions.
2375
2376 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
2377
2378 * shell.el (shell-dynamic-complete-command): Doc fix.
2379 (shell--command-completion-data): Shell completion now matches
2380 executable filenames from the current buffer's directory, on
2381 systems in which this behavior is the default (windows-nt, ms-dos).
2382
2383 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
2384
2385 * net/shr.el (shr-insert): Don't infloop if the width is zero.
2386
2387 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
2388
2389 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
2390 (bug#16251).
2391
2392 * electric.el: Move all electric-pair-* to elec-pair.el.
2393 * elec-pair.el: New file, split from electric.el.
2394
2395 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
2396
2397 * net/shr.el (shr-find-fill-point): Don't try to fill if the
2398 indentation level is larger than the width, because that will
2399 infloop.
2400 (shr-insert): Fill repeatedly long texts, so that Japanese is
2401 formatted correctly (bug#16263).
2402 (shr-find-fill-point): Off by one error in comparison with the
2403 indentation.
2404
2405 2013-12-26 João Távora <joaotavora@gmail.com>
2406
2407 * electric.el (electric-pair-mode): More flexible engine for skip-
2408 and inhibit predicates, new options for pairing-related functionality.
2409 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
2410 if that keeps or improves their balance in buffers.
2411 (electric-pair-delete-adjacent-pairs): Delete the pair when
2412 backspacing over adjacent matched delimiters.
2413 (electric-pair-open-extra-newline): Open extra newline when
2414 inserting newlines between adjacent matched delimiters.
2415 (electric--sort-post-self-insertion-hook):
2416 Sort post-self-insert-hook according to priority values when
2417 minor-modes are activated.
2418 * simple.el (newline-and-indent): Call newline with interactive
2419 set to t.
2420 (blink-paren-post-self-insert-function): Set priority to 100.
2421 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2422 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
2423 comments. Locally set electric-pair-skip-whitespace to 'chomp and
2424 electric-pair-open-newline-between-pairs to nil.
2425
2426 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
2427
2428 * progmodes/python.el: Use lexical-binding.
2429 (python-nav-beginning-of-defun): Stop searching ASAP.
2430
2431 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
2432
2433 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
2434 Fix interactive spec. Doc fix. (Bug#15754)
2435
2436 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
2437
2438 * emacs-lisp/byte-run.el (eval-when-compile):
2439 * progmodes/cc-defs.el (cc-eval-when-compile):
2440 Fix edebug spec (bug#16184).
2441
2442 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
2443
2444 * net/shr.el (shr-visit-file): Remove debugging function.
2445 (shr-insert): Don't infloop if we can't find a good place to break
2446 the line (bug#16256).
2447
2448 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
2449
2450 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
2451 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
2452 python-nav-lisp-forward-sexp-safe.
2453 (python-nav--forward-sexp): New argument SAFE allows switching
2454 forward sexp movement behavior for parens.
2455 (python-nav-forward-sexp): Throw errors on unterminated parens
2456 (Bug#16191).
2457 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
2458 (python-nav-backward-sexp-safe): New functions.
2459 (python-shell-buffer-substring):
2460 Use `python-nav-forward-sexp-safe'.
2461
2462 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
2463
2464 * net/shr.el (shr-find-fill-point): Don't break lines before a
2465 quotation mark.
2466 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
2467 (shr-find-fill-point): Remove the special checks for the quotation
2468 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
2469
2470 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2471
2472 * net/eww.el (eww-form-textarea): Use a different face for
2473 textareas than text input since they have different keymaps
2474 (bug#16142).
2475
2476 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
2477
2478 * progmodes/python.el (python-nav-beginning-of-statement):
2479 Speed up (Bug#15295).
2480
2481 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
2482
2483 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
2484 the window configuration.
2485
2486 2013-12-24 Eli Zaretskii <eliz@gnu.org>
2487
2488 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
2489 we run on MS-Windows or MS-DOS.
2490
2491 2013-12-24 Martin Rudalics <rudalics@gmx.at>
2492
2493 * window.el (balance-windows-area): Call window-size instead of
2494 window-height and window-width. Bug#16241.
2495
2496 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
2497
2498 * net/eww.el (eww-bookmark-quit): Remove.
2499 (eww-bookmark-browse): Restore the window configuration when you
2500 choose a bookmark (bug#16144).
2501
2502 2013-12-24 Daniel Colascione <dancol@dancol.org>
2503
2504 * icomplete.el: Remove redundant :group arguments to `defcustom'
2505 throughout.
2506 (icomplete-show-matches-on-no-input): New customizable variable.
2507 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
2508 we have something to show.
2509 (icomplete-exhibit): Compute completions even if we have no user input.
2510
2511 2013-12-23 Daniel Colascione <dancol@dancol.org>
2512
2513 * icomplete.el: Move `provide' to end of file.
2514
2515 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
2516
2517 * net/gnutls.el (gnutls-verify-error): Add version tag.
2518
2519 2013-12-23 Chong Yidong <cyd@gnu.org>
2520
2521 * subr.el (set-transient-map): Rename from
2522 set-temporary-overlay-map. Doc fix.
2523
2524 * face-remap.el (text-scale-adjust):
2525 * indent.el (indent-rigidly):
2526 * kmacro.el (kmacro-call-macro):
2527 * minibuffer.el (minibuffer-force-complete):
2528 * repeat.el (repeat):
2529 * simple.el (universal-argument--mode):
2530 * calendar/todo-mode.el (todo-insert-item--next-param):
2531 * progmodes/f90.el (f90-abbrev-start): Callers changed.
2532
2533 * indent.el (indent-rigidly): Use substitute-command-keys.
2534
2535 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2536
2537 * net/eww.el (eww-tag-select): Add text-property to jump to next
2538 select field.
2539 (eww): Add non-supported ftp error.
2540
2541 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2542
2543 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
2544 comments. Handle electric indent after typing `?' and `!'.
2545
2546 2013-12-22 Chong Yidong <cyd@gnu.org>
2547
2548 * faces.el (face-spec-recalc): If the theme specs are not
2549 applicable to a frame, fall back on the defface spec.
2550 This prevents themes from obliterating faces on low-color terminals.
2551
2552 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2553
2554 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
2555 after `{'. We need it after block openers, and it doesn't seem
2556 to hurt after hash openers.
2557
2558 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2559
2560 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
2561 extracted from `ruby-smie-rules'.
2562 (ruby--electric-indent-chars): New variable.
2563 (ruby--electric-indent-p): New function.
2564 (ruby-mode): Use `electric-indent-functions' instead of
2565 `electric-indent-chars'.
2566
2567 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2568
2569 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
2570 docstring.
2571 (ruby-smie-rules): Indent plus one level after `=>'.
2572
2573 2013-12-21 Richard Stallman <rms@gnu.org>
2574
2575 * simple.el (newline): Doc fix.
2576
2577 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2578
2579 * net/eww.el (eww-list-histories, eww-list-histories)
2580 (eww-history-browse, eww-history-quit, eww-history-kill)
2581 (eww-history-mode-map, eww-history-mode): New command and
2582 functions to list browser histories.
2583 (eww-form-text): Support text form with disabled
2584 and readonly attributes.
2585 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
2586
2587 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2588
2589 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
2590 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
2591 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
2592 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
2593 Use `user-error'.
2594 (eww-bookmark-mode-map): Add menu.
2595 (eww-render, eww-mode): Use `setq-local'.
2596 (eww-tool-bar-map): New variable.
2597 (eww-mode): Set `tool-bar-map'.
2598 (eww-view-source): Check for `html-mode' with `fboundp'.
2599
2600 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2601
2602 * net/shr.el (shr--extract-best-source): Don't bug out on audio
2603 elements with text inside. Also remove debugging.
2604
2605 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
2606
2607 * cus-start.el (all): Add ns-use-srgb-colorspace.
2608
2609 2013-12-21 Chong Yidong <cyd@gnu.org>
2610
2611 * custom.el (custom-theme-recalc-face): Do nothing if the face is
2612 undefined. Thus, theme settings for undefined faces do not take
2613 effect until the faces are defined with defface, the same as with
2614 theme variables.
2615
2616 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
2617 (face-spec-reset-face): Don't assign extra properties in temacs.
2618 (face-spec-recalc): Apply X resources too.
2619
2620 2013-12-21 Chong Yidong <cyd@gnu.org>
2621
2622 * faces.el (face-spec-set):
2623 * cus-face.el (custom-theme-set-faces, custom-set-faces):
2624 * custom.el (defface): Doc fixes (Bug#16203).
2625
2626 * indent.el (indent-rigidly-map): Add docstring, and move commands
2627 into named functions.
2628 (indent-rigidly-left, indent-rigidly-right)
2629 (indent-rigidly-left-to-tab-stop)
2630 (indent-rigidly-right-to-tab-stop): New functions. Decide on
2631 indentation direction based on bidi direction, and accumulate
2632 sequential commands in a single undo boundary.
2633 (indent-rigidly--pop-undo): New utility function.
2634
2635 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
2636
2637 * faces.el (read-face-name): Require crm.el when using crm-separator.
2638
2639 2013-12-20 Daniel Colascione <dancol@dancol.org>
2640
2641 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
2642 so that we don't reflow comments into the shebang line.
2643
2644 2013-12-20 Juri Linkov <juri@jurta.org>
2645
2646 * saveplace.el (save-place-to-alist): Add `dired-filename' as
2647 a position when `dired-directory' is non-nil. Check integer
2648 positions with `integerp'.
2649 (toggle-save-place, save-places-to-alist): Add check for
2650 `dired-directory'.
2651 (save-place-find-file-hook): Check integer positions with
2652 `integerp'.
2653 (save-place-dired-hook): Use `dired-goto-file' when
2654 `dired-filename' is found in the assoc list. Check integer
2655 positions with `integerp'.
2656 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
2657
2658 * dired.el (dired-initial-position-hook): Rename back from
2659 `dired-initial-point-hook'.
2660 (dired-initial-position): Rename `dired-initial-point-hook' to
2661 `dired-initial-position-hook'.
2662 (dired-file-name-at-point): Doc fix. (Bug#15329)
2663
2664 2013-12-20 Juri Linkov <juri@jurta.org>
2665
2666 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
2667 (read-regexp-suggestions): New function.
2668 (read-regexp): Use `read-regexp-defaults-function' to get default values.
2669 Use `read-regexp-suggestions'. Add non-empty default to history
2670 for empty input.
2671 (occur-read-regexp-defaults-function): Remove function.
2672 (occur-read-primary-args): Use `regexp-history-last' instead of
2673 `occur-read-regexp-defaults-function'.
2674
2675 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
2676 (hi-lock-line-face-buffer, hi-lock-face-buffer)
2677 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
2678 `hi-lock-read-regexp-defaults-function'. Doc fix.
2679 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
2680 with `find-tag-default-as-symbol-regexp'. Doc fix.
2681 (hi-lock-read-regexp-defaults): Remove function.
2682 (hi-lock-regexp-okay): Add check for null.
2683
2684 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
2685 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
2686
2687 * subr.el (find-tag-default-as-symbol-regexp): New function.
2688 (find-tag-default-as-regexp): Move symbol regexp formatting to
2689 `find-tag-default-as-symbol-regexp'.
2690
2691 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
2692
2693 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
2694 (Bug#14179)
2695
2696 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
2697
2698 * calendar/todo-mode.el: New implementation of item insertion
2699 commands and key bindings.
2700 (todo-key-prompt): New face.
2701 (todo-insert-item): New command.
2702 (todo-insert-item--parameters): New defconst, replacing defvar
2703 todo-insertion-commands-args-genlist.
2704 (todo-insert-item--param-key-alist): New defconst, replacing
2705 defvar todo-insertion-commands-arg-key-list.
2706 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
2707 (todo-insert-item--argsleft, todo-insert-item--apply-args)
2708 (todo-insert-item--next-param): New functions.
2709 (todo-insert-item--args, todo-insert-item--argleft)
2710 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
2711 New variables.
2712 (todo-key-bindings-t): Change binding of "i" from
2713 todo-insertion-map to todo-insert-item.
2714 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
2715 (todo-insertion-command-name, todo-insertion-commands-names)
2716 (todo-define-insertion-command, todo-insertion-commands)
2717 (todo-insertion-key-bindings, todo-insertion-map): Remove.
2718
2719 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
2720
2721 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
2722 (todo-toggle-item-highlighting): Use eval-and-compile instead of
2723 eval-when-compile.
2724 (todo-move-category): Allow choosing a non-existing todo file to
2725 move the category to, and create that file.
2726 (todo-default-priority): New user option.
2727 (todo-set-item-priority): Use it.
2728 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
2729 (desktop-restore-file-buffer): Declare.
2730 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
2731 (todo-modes-set-2): Locally set desktop-save-buffer to
2732 todo-desktop-save-buffer.
2733 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
2734 (auto-mode-alist): Add autoload cookie.
2735
2736 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
2737
2738 * emacs-lisp/subr-x.el: Renamed from helpers.el.
2739 helpers.el was a poor choice of name.
2740 (string-remove-prefix): New function.
2741 (string-remove-suffix): New function.
2742
2743 2013-12-20 Martin Rudalics <rudalics@gmx.at>
2744
2745 Fix assignment for new window total sizes.
2746 * window.el (window--pixel-to-size): Remove function.
2747 (window--pixel-to-total-1, window--pixel-to-total):
2748 Fix calculation of new total sizes.
2749
2750 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
2751
2752 * comint.el (comint-output-filter): Fix rear-nonsticky property
2753 placement (Bug#16010).
2754
2755 2013-12-20 Chong Yidong <cyd@gnu.org>
2756
2757 * faces.el (read-color): Minor fix for completion function.
2758
2759 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
2760
2761 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
2762 New option. (Bug#16182)
2763 (ruby-smie--indent-to-stmt-p): Use it.
2764 (ruby-smie-rules): Revert the logic in the handling of `when'.
2765 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
2766 (ruby-deep-arglist, ruby-deep-indent-paren)
2767 (ruby-deep-indent-paren-style): Update docstrings to note that the
2768 vars don't have any effect with SMIE.
2769
2770 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
2771
2772 * calc/calc.el (calc-enter, calc-pop): Use the variable
2773 `calc-context-sensitive-enter'.
2774
2775 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
2776
2777 * net/shr.el (shr-insert): Protect against infloops in degenerate
2778 tables.
2779
2780 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2781
2782 * progmodes/octave.el (octave): Add link to manual and octave
2783 homepage.
2784 (octave-mode-menu): Link to octave-mode manual.
2785
2786 2013-12-20 Leo Liu <sdl.web@gmail.com>
2787
2788 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
2789 insertion using skeleton-end-newline. (Bug#16138)
2790
2791 2013-12-20 Juri Linkov <juri@jurta.org>
2792
2793 * replace.el (occur-engine): Use `add-face-text-property'
2794 to add the face property to matches and titles. (Bug#14645)
2795
2796 * hi-lock.el (hi-green): Use lighter color "light green" closer to
2797 the palette of other hi-lock colors.
2798 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
2799
2800 2013-12-19 Juri Linkov <juri@jurta.org>
2801
2802 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
2803 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
2804 (minibuffer-history-symbol): Move variable declaration closer to
2805 its usage.
2806
2807 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
2808 (Bug#14785)
2809
2810 2013-12-19 Juri Linkov <juri@jurta.org>
2811
2812 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
2813 New function.
2814 (log-edit-hook): Add it to :options. (Bug#16170)
2815
2816 2013-12-19 Juri Linkov <juri@jurta.org>
2817
2818 * simple.el (eval-expression-print-format): Don't check for
2819 command names and the last command. Always display additional
2820 formats of the integer result in the echo area, and insert them
2821 to the current buffer only with a zero prefix arg.
2822 Display character when char-displayable-p is non-nil.
2823 (eval-expression): With a zero prefix arg, set `print-length' and
2824 `print-level' to nil, and insert the integer values from
2825 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
2826
2827 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
2828 `eval-last-sexp-arg-internal'. Doc fix.
2829 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
2830 `eval-last-sexp-print-value'. Doc fix.
2831 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
2832 Set `print-length' and `print-level' to nil when arg is zero.
2833 (eval-last-sexp): Doc fix.
2834 (eval-defun-2): Print the integer values from
2835 `eval-expression-print-format' at the end.
2836
2837 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
2838 values from `eval-expression-print-format' at the end.
2839
2840 * ielm.el (ielm-eval-input): Print the integer
2841 values from `eval-expression-print-format' at the end.
2842
2843 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
2844
2845 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
2846 2013-12-11T19:01:44Z!tzz@lifelogs.com.
2847
2848 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2849
2850 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
2851 (hl-line-highlight, global-hl-line-highlight): Use it.
2852 (hl-line-overlay): Use defvar-local.
2853
2854 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
2855
2856 * term/ns-win.el: Require dnd.
2857 (global-map): Remove drag items.
2858 (ns-insert-text, ns-set-foreground-at-mouse)
2859 (ns-set-background-at-mouse):
2860 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
2861 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
2862 New functions.
2863
2864 2013-12-19 Glenn Morris <rgm@gnu.org>
2865
2866 * emacs-lisp/ert.el (ert-select-tests):
2867 Fix string/symbol mixup. (Bug#16121)
2868
2869 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
2870
2871 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
2872 keywords to their parent.
2873
2874 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
2875
2876 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
2877 first arg to be a string (fixed dead code), or an operator symbol.
2878 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
2879 operator symbols.
2880 (ruby-smie-rules): Remove parent token check in the `.' clause, it
2881 did nothing. Don't respond to `(:after ".")', it will be called
2882 with :before anyway. Remove the ` @ ' rule, it didn't seem to
2883 change anything. Only return indentation for binary operators
2884 when they are hanging. De-dent opening paren when its parent is
2885 `.', otherwise it looks bad when the dot is not at bol or eol
2886 (bug#16182).
2887
2888 2013-12-19 Juri Linkov <juri@jurta.org>
2889
2890 * replace.el (query-replace-read-args): Split a non-negative arg
2891 and a negative arg into separate elements.
2892 (query-replace, query-replace-regexp, replace-string)
2893 (replace-regexp): Add arg `backward'. Doc fix.
2894 (replace-match-maybe-edit): When new arg `backward' is non-nil,
2895 move point to the beginning of the match.
2896 (replace-search, replace-highlight): Use new arg `backward'
2897 to set the value of `isearch-forward'.
2898 (perform-replace): Add arg `backward' and use it to perform
2899 replacement backward. (Bug#14979)
2900
2901 * isearch.el (isearch-query-replace): Use a negative prefix arg
2902 to call `perform-replace' with a non-nil arg `backward'.
2903
2904 2013-12-18 Juri Linkov <juri@jurta.org>
2905
2906 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
2907 to the default list. Move `log-edit-show-files' to the end.
2908 Add more available functions to options.
2909 (log-edit): Move default specific settings to
2910 `log-edit-insert-message-template'. Don't move point.
2911 (log-edit-insert-message-template): New function.
2912 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
2913 (Bug#16170)
2914
2915 2013-12-18 Juri Linkov <juri@jurta.org>
2916
2917 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
2918 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
2919
2920 2013-12-18 Leo Liu <sdl.web@gmail.com>
2921
2922 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
2923 (Bug#16186)
2924
2925 2013-12-18 Eli Zaretskii <eliz@gnu.org>
2926
2927 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
2928 formats for displaying file sizes when the -s switch is given.
2929 Instead, compute a separate format for displaying the size in
2930 blocks, which is displayed in addition to the "regular" size.
2931 When -h is given in addition to -s, produce size in blocks in
2932 human-readable form as well. (Bug#16179)
2933
2934 2013-12-18 Tassilo Horn <tsdh@gnu.org>
2935
2936 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
2937 Reference tables with ~\ref{...} instead of only \ref{...}.
2938
2939 2013-12-18 Chong Yidong <cyd@gnu.org>
2940
2941 * cus-edit.el (custom-magic-alist): Fix "themed" description
2942 (Bug#14348).
2943
2944 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
2945 is non-nil, do not create a new entry in the symbol's theme-value
2946 or theme-face property; update theme-settings only (Bug#14664).
2947 (custom-available-themes): Doc fix.
2948
2949 * cus-theme.el (custom-new-theme-mode-map): Add bindings
2950 (Bug#15674).
2951
2952 * replace.el (occur-engine): Avoid infloop (Bug#7593).
2953
2954 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2955
2956 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
2957 (Bug#13914).
2958
2959 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
2960
2961 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
2962
2963 2013-12-18 Glenn Morris <rgm@gnu.org>
2964
2965 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
2966 * cus-start.el (load-prefer-newer): New option.
2967
2968 2013-12-18 Le Wang <l26wang@gmail.com>
2969
2970 * comint.el (comint-previous-matching-input-from-input):
2971 Retain point (Bug#13404).
2972
2973 2013-12-18 Chong Yidong <cyd@gnu.org>
2974
2975 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
2976
2977 2013-12-18 Glenn Morris <rgm@gnu.org>
2978
2979 * mail/emacsbug.el (report-emacs-bug):
2980 Only mention enable-multibyte-characters if non-standard.
2981
2982 2013-12-17 Juri Linkov <juri@jurta.org>
2983
2984 * arc-mode.el (archive-extract-by-file): Check if directory exists
2985 before deletion to not show irrelevant errors if it doesn't exist.
2986
2987 2013-12-17 Juri Linkov <juri@jurta.org>
2988
2989 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
2990 (Bug#14751)
2991
2992 * net/eww.el (browse-web): Add alias to `eww'.
2993 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
2994 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
2995
2996 * net/browse-url.el (browse-url-browser-function): Move `eww'
2997 closer to similar functions.
2998
2999 * startup.el (fancy-startup-screen, fancy-about-screen):
3000 Set browse-url-browser-function to eww-browse-url locally.
3001 (Bug#14751)
3002
3003 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3004
3005 * window.el (window--pixel-to-total): Remove unused `mini' var.
3006 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
3007 (split-window): Remove unused `new' var.
3008 (window--display-buffer): Remove unused `frame' and `delta' vars.
3009 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
3010 and display-width'.
3011
3012 2013-12-17 Martin Rudalics <rudalics@gmx.at>
3013
3014 * dired.el (dired-mark-pop-up):
3015 * register.el (register-preview): Don't bind
3016 split-height-threshold here since it's now done in
3017 display-buffer-below-selected.
3018
3019 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
3020
3021 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
3022 xterm-rgb-convert-to-16bit.
3023 (rxvt-register-default-colors): Standardize with
3024 xterm-register-default-colors (Bug#14078).
3025
3026 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
3027
3028 * simple.el (kill-region): Pass mark first, then point, so that
3029 kill-append works right (Bug#12819).
3030 (copy-region-as-kill, kill-ring-save): Likewise.
3031
3032 2013-12-17 Leo Liu <sdl.web@gmail.com>
3033
3034 * net/rcirc.el (rcirc-add-face):
3035 * eshell/em-prompt.el (eshell-emit-prompt):
3036 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
3037 (Bug#16167)
3038
3039 2013-12-17 Chong Yidong <cyd@gnu.org>
3040
3041 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
3042 Suggested by Xue Fuqiao.
3043
3044 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
3045
3046 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
3047
3048 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3049
3050 * net/shr.el (shr-insert-document): Remove unused var
3051 `shr-preliminary-table-render'.
3052 (shr-rescale-image): Remove unused arg `force'.
3053 (shr-put-image): Update calls accordingly.
3054 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
3055
3056 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
3057
3058 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
3059 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
3060 :close-all, to see which indentation method to use (Bug#16116).
3061 (smie-rules-function): Document the method :close-all.
3062
3063 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3064
3065 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
3066
3067 * net/eww.el (eww-display-html): If we can't find the anchor we're
3068 looking for, then go to point-min.
3069
3070 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
3071
3072 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
3073 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
3074 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
3075 Expand dir too, in case it's relative.
3076
3077 2013-12-16 Juri Linkov <juri@jurta.org>
3078
3079 * desktop.el (desktop-auto-save-timeout): Change default to
3080 `auto-save-timeout'. Doc fix.
3081 (desktop-save): Skip the timestamp in desktop-saved-frameset
3082 when checking for auto-save changes.
3083 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
3084 `desktop-auto-save' is called repeatedly by the idle timer.
3085 (desktop-auto-save-set-timer): Replace `run-with-timer' with
3086 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
3087 (Bug#15331)
3088
3089 2013-12-16 Juri Linkov <juri@jurta.org>
3090
3091 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
3092 (Bug#16035)
3093 (isearch-pre-command-hook): Check `this-command' for symbolp.
3094
3095 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
3096
3097 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
3098
3099 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
3100
3101 * progmodes/cfengine.el (cfengine3--current-word): Remove.
3102 (cfengine3--current-function): Bring in the current-function
3103 functionality from `cfengine3--current-word'.
3104 (cfengine3-completion-function): Bring in the
3105 bounds-of-current-word functionality from
3106 `cfengine3--current-word'.
3107
3108 2013-12-16 Martin Rudalics <rudalics@gmx.at>
3109
3110 * window.el (display-buffer-below-selected):
3111 Bind split-height-threshold to 0 as suggested by Juri Linkov.
3112
3113 2013-12-16 Leo Liu <sdl.web@gmail.com>
3114
3115 * progmodes/compile.el (compile-goto-error): Do not push-mark.
3116 Remove NOMSG arg and all uses changed.
3117
3118 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
3119
3120 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
3121 (cua--deactivate-rectangle): Don't deactivate the mark.
3122 (cua-set-rectangle-mark): Don't set mark-active since
3123 cua--activate-rectangle already does it for us.
3124 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
3125 non-rectangular region.
3126
3127 * emulation/cua-base.el (cua-repeat-replace-region):
3128 Use with-current-buffer.
3129
3130 * net/gnutls.el: Use cl-lib.
3131 (gnutls-negotiate): `mapcan' -> cl-mapcan.
3132
3133 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
3134
3135 * emacs-lisp/package.el (package-built-in-p): Support both
3136 built-in and the package.el converted package descriptions.
3137 (package-show-package-list): Allow keywords.
3138 (package-keyword-button-action): Use it instead of
3139 `finder-list-matches'.
3140 (package-menu-filter-interactive): Interactive filtering (by
3141 keyword) function.
3142 (package-menu--generate): Support keywords and change keymappings
3143 and headers when they are given.
3144 (package--has-keyword-p): Helper function.
3145 (package-menu--refresh): Use it.
3146 (package--mapc): Helper function.
3147 (package-all-keywords): Use it.
3148 (package-menu-mode-map): Set up menu items and keybindings to
3149 provide a filtering UI.
3150
3151 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
3152
3153 * net/gnutls.el (gnutls-verify-error): New defcustom to control
3154 the behavior when a certificate fails validation. Defaults to
3155 old behavior: never abort, just warn.
3156 (gnutls-negotiate): Use it.
3157
3158 2013-12-14 Martin Rudalics <rudalics@gmx.at>
3159
3160 * window.el (display-buffer-below-selected): Never split window
3161 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
3162
3163 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
3164
3165 * emacs-lisp/package.el (package--prepare-dependencies): New function.
3166 (package-buffer-info): Use it (bug#15108).
3167
3168 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
3169
3170 * icomplete.el (icomplete-completions): Make sure the prefix is already
3171 displayed elsewhere before hiding it (bug#16219).
3172
3173 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
3174
3175 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
3176 open-paren tokens when preceded by a open-paren, too.
3177 (ruby-smie-rules): Handle virtual indentation after open-paren
3178 tokens specially. If there is code between it and eol, return the
3179 column where is starts (Bug#16118).
3180
3181 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
3182
3183 * progmodes/cfengine.el: Fix `add-hook' doc.
3184 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
3185 (cfengine3--current-word): Fix parameters.
3186 (cfengine3-make-syntax-cache): Simplify further.
3187 (cfengine3-completion-function, cfengine3--current-function):
3188 Use `assq' for symbols.
3189 (cfengine3--current-function): Fix `cfengine3--current-word' call.
3190
3191 2013-12-13 Glenn Morris <rgm@gnu.org>
3192
3193 * loadup.el (load-path): Warn if site-load or site-init changes it.
3194 No more need to reset it when bootstrapping.
3195
3196 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
3197
3198 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
3199 locations for cf-promises.
3200 (cfengine-mode-syntax-functions-regex): New caching variable.
3201 (cfengine3-fallback-syntax): Fallback syntax for cases where
3202 cf-promises doesn't run.
3203 (cfengine3--current-word): Reimplement using
3204 `cfengine-mode-syntax-functions-regex'.
3205 (cfengine3-completion-function, cfengine3--current-function):
3206 Use `cfengine3-make-syntax-cache' directly.
3207 (cfengine3-clear-syntax-cache): New function.
3208 (cfengine3-make-syntax-cache): Simplify and create
3209 `cfengine-mode-syntax-functions-regex' on demand.
3210 (cfengine3-format-function-docstring): Don't call
3211 `cfengine3-make-syntax-cache' explicitly.
3212
3213 2013-12-13 Martin Rudalics <rudalics@gmx.at>
3214
3215 Fix windmove-find-other-window broken after pixelwise resizing
3216 (Bug#16017).
3217 * windmove.el (windmove-other-window-loc): Revert change from
3218 2013-12-04.
3219 (windmove-find-other-window): Call window-in-direction.
3220 * window.el (window-in-direction): New arguments SIGN, WRAP and
3221 MINI to emulate original windmove-find-other-window behavior.
3222
3223 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
3224
3225 * simple.el (blink-matching--overlay): New variable.
3226 (blink-matching-open): Instead of moving point, highlight the
3227 matching paren with an overlay
3228 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
3229
3230 * faces.el (paren-showing-faces, show-paren-match)
3231 (show-paren-mismatch): Move from paren.el.
3232
3233 2013-12-13 Leo Liu <sdl.web@gmail.com>
3234
3235 * indent.el (indent-region): Disable progress reporter in
3236 minibuffer. (Bug#16108)
3237
3238 * bindings.el (visual-order-cursor-movement): Fix version.
3239
3240 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3241
3242 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
3243 Also match after beginning of line.
3244 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
3245 files. Thanks to Russell Sim. (Bug#15378)
3246
3247 2013-12-13 Juri Linkov <juri@jurta.org>
3248
3249 * simple.el <Keypad support>: Remove key bindings duplicated
3250 with bindings.el. (Bug#14397)
3251
3252 2013-12-13 Juri Linkov <juri@jurta.org>
3253
3254 * comint.el (comint-mode-map): Replace `delete-char' with
3255 `delete-forward-char'. (Bug#16109)
3256
3257 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
3258
3259 * progmodes/python.el (python-indent-calculate-indentation):
3260 Fix de-denters cornercase. (Bug#15731)
3261
3262 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3263
3264 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
3265 (advice--make): Pay attention to `depth'.
3266 (advice--make-1): Don't autoload commands eagerly.
3267 * emacs-lisp/elp.el (elp-instrument-function):
3268 * emacs-lisp/trace.el (trace-function-internal):
3269 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
3270
3271 * iswitchb.el (iswitchb-mode): Don't belittle ido.
3272
3273 2013-12-12 Eli Zaretskii <eliz@gnu.org>
3274
3275 * term/w32-win.el (w32-handle-dropped-file):
3276 * startup.el (normal-top-level):
3277 * net/browse-url.el (browse-url-file-url):
3278 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
3279 decode file names using 'utf-8' rather than
3280 file-name-coding-system.
3281
3282 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
3283
3284 * progmodes/python.el (python-indent-context)
3285 (python-indent-calculate-indentation): Fix auto-identation
3286 behavior for comment blocks. (Bug#15916)
3287
3288 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
3289
3290 * progmodes/python.el (python-indent-calculate-indentation):
3291 When determining indentation, don't treat "return", "pass", etc., as
3292 operators when they are just string constituents. (Bug#15812)
3293
3294 2013-12-12 Juri Linkov <juri@jurta.org>
3295
3296 * uniquify.el (uniquify-buffer-name-style): Change default to
3297 `post-forward-angle-brackets'.
3298
3299 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
3300 `uniquify'. Change default to `post-forward-angle-brackets'.
3301
3302 2013-12-11 Glenn Morris <rgm@gnu.org>
3303
3304 * emacs-lisp/package.el (finder-list-matches):
3305 Autoload rather than falsely declaring.
3306
3307 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
3308
3309 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
3310 (eww-mode-map): Use them.
3311
3312 2013-12-11 Martin Rudalics <rudalics@gmx.at>
3313
3314 * window.el (display-buffer-in-side-window): Fix doc-string
3315 (Bug#16115).
3316
3317 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
3318
3319 * vc/vc-git.el: Silence byte-compiler warnings.
3320 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
3321 (log-edit-set-header): Declare.
3322
3323 2013-12-11 Eli Zaretskii <eliz@gnu.org>
3324
3325 * Makefile.in (custom-deps, finder-data): Run output file names
3326 through unmsys--file-name. (Bug#16099)
3327
3328 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3329
3330 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
3331 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
3332
3333 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
3334 instead of deleting the selection "by hand" (bug#16098).
3335 Rely on insert-for-yank to yank rectangles.
3336 (cua-highlight-region-shift-only): Mark obsolete.
3337 (cua-mode): Don't enable/disable transient-mark-mode,
3338 shift-select-mode (cua-mode works both with and without them), and
3339 pc-selection-mode (obsolete).
3340 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
3341 (cua--deactivate-rectangle): Deactivate it.
3342
3343 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
3344 (delete-selection-helper): Make sure yank starts at the top of the
3345 deleted region.
3346 (minibuffer-keyboard-quit): Use region-active-p.
3347
3348 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
3349
3350 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
3351 to `delete' (bug#16109).
3352
3353 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3354
3355 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
3356 info manual and show keybindings and set `:group' keyword.
3357
3358 2013-12-11 Juri Linkov <juri@jurta.org>
3359
3360 * delsel.el (delete-active-region): Let-bind `this-command'
3361 to prevent `kill-region' from changing its original value.
3362 (delete-selection-helper): Handle `overwrite-mode' for the type
3363 `kill' exactly the same way as for the type `t'.
3364 (insert-char, quoted-insert, reindent-then-newline-and-indent):
3365 Support more commands. (Bug#13312)
3366
3367 2013-12-11 Juri Linkov <juri@jurta.org>
3368
3369 * bindings.el: Map kp keys to non-kp keys systematically
3370 with basic modifiers control, meta and shift. (Bug#14397)
3371
3372 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3373
3374 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
3375 "Close browser" menu items. Fix wrong function of "List
3376 bookmarks".
3377
3378 2013-12-11 Juri Linkov <juri@jurta.org>
3379
3380 * misearch.el (multi-isearch-buffers): Set the value of
3381 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
3382 arg of isearch-forward to t.
3383 (multi-isearch-buffers-regexp): Set the value of
3384 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
3385 arg of isearch-forward-regexp to t.
3386 (multi-isearch-files): Set the value of
3387 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
3388 arg of isearch-forward to t.
3389 (multi-isearch-files-regexp): Set the value of
3390 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
3391 arg of isearch-forward-regexp to t. (Bug#16035)
3392
3393 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
3394 arg of isearch-forward to t.
3395 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
3396 arg of isearch-forward-regexp to t.
3397 (dired-isearch-filter-filenames): Remove unnecessary check for
3398 `dired-isearch-filenames'.
3399
3400 * comint.el (comint-history-isearch-backward):
3401 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
3402 (comint-history-isearch-backward-regexp):
3403 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
3404
3405 2013-12-10 Eli Zaretskii <eliz@gnu.org>
3406
3407 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
3408 unmsys--file-name. (Bug#16099)
3409
3410 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
3411
3412 * emacs-lisp/package.el (package-keyword-button-action):
3413 Remove finder.el require dependency.
3414
3415 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
3416
3417 * emacs-lisp/package.el: Require finder.el.
3418 (describe-package-1): Add keyword buttons.
3419 (package-make-button): New convenience function.
3420 (package-keyword-button-action): Keyword button action using
3421 `finder-list-matches'.
3422
3423 2013-12-09 Eli Zaretskii <eliz@gnu.org>
3424
3425 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
3426 last commit.
3427
3428 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
3429
3430 * autorevert.el (auto-revert-notify-add-watch): Do not handle
3431 symlinked files.
3432
3433 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
3434
3435 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
3436 after the end of a percent literal.
3437
3438 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
3439
3440 * progmodes/ruby-mode.el (ruby-forward-string): Document.
3441 Handle caret-delimited strings (Bug#16079).
3442
3443 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
3444
3445 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
3446 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
3447 `ruby-parse-partial' (Bug#16078).
3448
3449 2013-12-09 Leo Liu <sdl.web@gmail.com>
3450
3451 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
3452
3453 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
3454
3455 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
3456 (js-switch-indent-offset): New option.
3457 (js--proper-indentation): Use it. And handle the case when
3458 "default" is actually a key in an object literal.
3459 (js--same-line): New function.
3460 (js--multi-line-declaration-indentation): Use it.
3461 (js--indent-in-array-comp, js--array-comp-indentation):
3462 New functions.
3463 (js--proper-indentation): Use them, to handle array comprehension
3464 continuations.
3465
3466 2013-12-08 Leo Liu <sdl.web@gmail.com>
3467
3468 * progmodes/flymake.el (flymake-highlight-line): Re-write.
3469 (flymake-make-overlay): Remove arg MOUSE-FACE.
3470 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
3471
3472 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3473
3474 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
3475 New function.
3476 (redisplay-highlight-region-function): Use it.
3477
3478 * emulation/cua-base.el (cua--explicit-region-start)
3479 (cua--last-region-shifted): Remove.
3480 (cua--deactivate): Use deactivate-mark.
3481 (cua--pre-command-handler-1): Don't handle shift-selection.
3482 (cua--post-command-handler-1): Don't change transient-mark-mode.
3483 (cua--select-keymaps): Use region-active-p rather than
3484 cua--explicit-region-start or cua--last-region-shifted.
3485 (cua-mode): Enable shift-select-mode.
3486
3487 2013-12-08 Leo Liu <sdl.web@gmail.com>
3488
3489 * progmodes/flymake.el (flymake-popup-current-error-menu):
3490 Rename from flymake-display-err-menu-for-current-line. Reimplement.
3491 (flymake-posn-at-point-as-event, flymake-popup-menu)
3492 (flymake-make-emacs-menu): Remove. (Bug#16077)
3493
3494 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3495
3496 * rect.el (rectangle-mark-mode): Activate mark even if
3497 transient-mark-mode is off (bug#16066).
3498 (rectangle--highlight-for-redisplay): Fix boundary condition when point
3499 is > mark and at bolp.
3500
3501 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
3502 (region-extract-function): Use it.
3503 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
3504 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
3505 Delete functions.
3506 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
3507 kill-ring-save, kill-region, delete-char, delete-forward-char.
3508 Ignore self-insert-iso.
3509
3510 * emulation/cua-gmrk.el (cua--init-global-mark):
3511 Ignore `self-insert-iso'.
3512
3513 * emulation/cua-base.el (cua--prefix-copy-handler)
3514 (cua--prefix-cut-handler): Rely on region-extract-function rather than
3515 checking cua--rectangle.
3516 (cua-delete-region): Use region-extract-function.
3517 (cua-replace-region): Delete function.
3518 (cua-copy-region, cua-cut-region): Obey region-extract-function.
3519 (cua--pre-command-handler-1): Don't do the delete-selection thing.
3520 (cua--self-insert-char-p): Ignore `self-insert-iso'.
3521 (cua--init-keymaps): Don't remap delete-selection commands.
3522 (cua-mode): Use delete-selection-mode instead of rolling our own
3523 (bug#16085).
3524
3525 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
3526 Obey region-extract-function.
3527
3528 Make registers and delete-selection-mode work on rectangles.
3529 * register.el (describe-register-1): Don't modify the register's value.
3530 (copy-to-register): Obey region-extract-function.
3531 * delsel.el (delete-active-region): Obey region-extract-function.
3532
3533 2013-12-08 Leo Liu <sdl.web@gmail.com>
3534
3535 * progmodes/flymake.el (flymake, flymake-error-bitmap)
3536 (flymake-warning-bitmap, flymake-fringe-indicator-position)
3537 (flymake-compilation-prevents-syntax-check)
3538 (flymake-start-syntax-check-on-newline)
3539 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
3540 (flymake-start-syntax-check-on-find-file, flymake-log-level)
3541 (flymake-xml-program, flymake-master-file-dirs)
3542 (flymake-master-file-count-limit)
3543 (flymake-allowed-file-name-masks): Relocate.
3544 (flymake-makehash, flymake-float-time)
3545 (flymake-replace-regexp-in-string, flymake-split-string)
3546 (flymake-get-temp-dir): Remove.
3547 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
3548 (flymake-current-row, flymake-selected-frame)
3549 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
3550 related functions. (Bug#16077)
3551
3552 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
3553
3554 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
3555
3556 2013-12-07 Tassilo Horn <tsdh@gnu.org>
3557
3558 * help-fns.el (describe-function-1): Use new advice-* functions
3559 rather than old ad-* functions. Fix function type description and
3560 source links for advised functions and subrs.
3561
3562 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
3563
3564 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
3565
3566 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
3567
3568 * progmodes/compile.el (compilation-start):
3569 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
3570
3571 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3572 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
3573
3574 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
3575
3576 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3577 Touch up the last change.
3578
3579 2013-12-06 Leo Liu <sdl.web@gmail.com>
3580
3581 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
3582 (inferior-octave-startup): Always use "octave> " for prompt.
3583 (octave-goto-function-definition)
3584 (octave-sync-function-file-names)
3585 (octave-find-definition-default-filename): Remove redundant backquotes.
3586
3587 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
3588
3589 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
3590 syntax for `?'.
3591 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
3592 where appropriate already.
3593 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
3594 end of method names (Bug#15874).
3595
3596 2013-12-06 Juri Linkov <juri@jurta.org>
3597
3598 * isearch.el (isearch--saved-overriding-local-map):
3599 New internal variable.
3600 (isearch-mode): Set it to the initial value of
3601 `overriding-terminal-local-map'.
3602 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
3603 with `isearch--saved-overriding-local-map'. (Bug#16035)
3604
3605 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
3606
3607 * progmodes/octave.el (inferior-octave-completion-table):
3608 Turn back into function, use `completion-table-with-cache'
3609 (Bug#11906). Update all references.
3610
3611 * minibuffer.el (completion-table-with-cache): New function.
3612
3613 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
3614
3615 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
3616
3617 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
3618
3619 * net/eww.el (eww-current-source): New variable to store page
3620 source.
3621 (eww-display-html, eww-mode, eww-save-history)
3622 (eww-restore-history): Use it.
3623 (eww-view-source): New command to view page source.
3624 Opportunistically uses `html-mode' to highlight the buffer.
3625 (eww-mode-map): Install it.
3626
3627 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
3628
3629 * net/dbus.el (dbus-unregister-service)
3630 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
3631 Fix docstring.
3632 (dbus-unregister-service): Skip :serial entries in
3633 `dbus-registered-objects-table'.
3634 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
3635
3636 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
3637
3638 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
3639 around keywords with extra `split-string' argument.
3640
3641 2013-12-04 Martin Rudalics <rudalics@gmx.at>
3642
3643 * windmove.el (windmove-other-window-loc): Handle navigation
3644 between windows (excluding the minibuffer window - Bug#16017).
3645
3646 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
3647
3648 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
3649 in D-Bus type syntax.
3650 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
3651 preserve unibyte strings. (Bug#16048)
3652
3653 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3654
3655 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
3656 Call force-mode-line-update is the proper buffer (bug#16042).
3657
3658 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
3659
3660 * vc/log-edit.el (log-edit-add-new-comment): Rename to
3661 `log-edit-remember-comment', make argument optional. Adjust all
3662 callers.
3663 (log-edit-mode): Add `log-edit-remember-comment' to
3664 `kill-buffer-hook' locally.
3665 (log-edit-kill-buffer): Don't remember comment explicitly since
3666 the buffer is killed anyway.
3667
3668 2013-12-04 Juri Linkov <juri@jurta.org>
3669
3670 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
3671 add-hook and remove-hook for multi-buffer search. (Bug#16035)
3672
3673 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
3674
3675 * notifications.el (notifications-close-notification): Call the
3676 D-Bus method with ID being a `:uint32'. (Bug#16030)
3677
3678 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
3679
3680 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
3681
3682 2013-12-03 Juri Linkov <juri@jurta.org>
3683
3684 * progmodes/compile.el (compilation-start): Rename window alist
3685 entry `no-display-ok' to `allow-no-window'.
3686
3687 * simple.el (shell-command): Add window alist entry
3688 `allow-no-window' to `display-buffer'.
3689 (async-shell-command): Doc fix.
3690
3691 * window.el (display-buffer-no-window): New action function.
3692 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
3693
3694 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
3695
3696 * vc/log-edit.el (log-edit-set-header): Extract from
3697 `log-edit-toggle-header'.
3698 (log-edit-extract-headers): Separate the summary, when extracted
3699 from header, from the rest of the message with an empty line.
3700
3701 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
3702 line, if present, to the Summary header.
3703
3704 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
3707 in current-buffer (bug#16029).
3708
3709 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
3710
3711 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
3712 (debugger-mode-map): Bind it.
3713 (debugger--backtrace-base): New function.
3714 (debugger-eval-expression): Use it.
3715 (debugger-frame-number): Skip local vars when present.
3716 (debugger--locals-visible-p, debugger--insert-locals)
3717 (debugger--show-locals, debugger--hide-locals): New functions.
3718
3719 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
3720
3721 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
3722 "LC_ALL".
3723 (tramp-get-remote-locale): New defun.
3724 (tramp-open-connection-setup-interactive-shell): Use it.
3725
3726 2013-12-02 Leo Liu <sdl.web@gmail.com>
3727
3728 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
3729
3730 * progmodes/sh-script.el (sh-shell-process):
3731 * progmodes/octave.el (inferior-octave-process-live-p):
3732 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
3733 (gdb-inferior-io-sentinel):
3734 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
3735
3736 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
3737
3738 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
3739 `save-selected-window' to `log-edit-hide-buf'. This makes
3740 `log-edit-show-files' idempotent.
3741 (log-edit-show-files): Mark the new window as dedicated.
3742
3743 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
3744
3745 * vc/log-edit.el (log-edit-mode-map): Add binding for
3746 `log-edit-kill-biffer'.
3747 (log-edit-hide-buf): Add a FIXME comment.
3748 (log-edit-add-new-comment): New function, extracted from
3749 `log-edit-done'.
3750 (log-edit-done, log-edit-add-to-changelog): Use it.
3751 (log-edit-kill-buffer): New command.
3752
3753 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3754
3755 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
3756 instead of killing the buffer.
3757
3758 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3759
3760 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
3761
3762 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3763
3764 * net/eww.el (eww-form-checkbox-selected-symbol)
3765 (eww-form-checkbox-symbol): New customizable variable.
3766 (eww-form-checkbox, eww-toggle-checkbox):
3767 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
3768
3769 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
3770 (shr--get-media-pref, shr--extract-best-source): New function.
3771 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
3772 no :src tag was specified.
3773
3774 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
3775 (eww-render): Handle `eww-use-external-browser-for-content-type'.
3776 Use \\` to match beginning of string instead of ^.
3777 (eww-browse-with-external-browser): Provide optional URL parameter.
3778 (eww-render): Set `eww-current-title' back to "".
3779
3780 * net/shr.el (shr-tag-video): Display content for video if no
3781 poster is available.
3782 (shr-tag-audio): Add support for <audio> tag.
3783
3784 * net/eww.el (eww-text-input-types): New const.
3785 (eww-process-text-input): Treat input types in
3786 `eww-text-input-types' as text.
3787
3788 * net/shr.el (shr-tag-table): Fix comment typo.
3789
3790 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3791
3792 * net/eww.el (eww-follow-link): New command to avoid reloading
3793 pages when we follow #target links (bug#15243).
3794 (eww-quit): Special mode buffers shouldn't query before exiting.
3795
3796 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3797
3798 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
3799 forms.
3800
3801 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3802
3803 * net/eww.el (eww-restore-history): Update the window title after
3804 moving in the history.
3805 (eww-current-dom): New variable used to save the current DOM.
3806
3807 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
3808
3809 * vc/log-edit.el (log-edit-mode-map): Add binding for
3810 `log-edit-beginning-of-line'.
3811 (log-edit-setup-add-author): New user option.
3812 (log-edit-beginning-of-line): New command.
3813 (log-edit): Move major mode call above the contents setup so that
3814 the local variable values are already applied.
3815 (log-edit): Only insert "Author: " when
3816 `log-edit-setup-add-author' is non-nil.
3817 (log-edit): When SETUP is non-nil, position point after ": "
3818 instead of point-min.
3819
3820 2013-12-01 Glenn Morris <rgm@gnu.org>
3821
3822 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
3823
3824 2013-11-30 Eli Zaretskii <eliz@gnu.org>
3825
3826 * startup.el (fancy-splash-frame): On MS-Windows, trigger
3827 redisplay to make sure the initial frame gets a chance to become
3828 visible. (Bug#16014)
3829
3830 2013-11-30 Martin Rudalics <rudalics@gmx.at>
3831
3832 Support resizing frames and windows pixelwise.
3833 * cus-start.el (frame-resize-pixelwise)
3834 (window-resize-pixelwise): New entries.
3835 * emacs-lisp/debug.el (debug): Use window-total-height instead
3836 of window-total-size.
3837 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
3838 * help.el (describe-bindings-internal): Use help-buffer as
3839 argument for with-help-window.
3840 (temp-buffer-max-width): New option.
3841 (resize-temp-buffer-window, help-window-setup)
3842 (with-help-window): Rewrite.
3843 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
3844 dragging dividers.
3845 * window.el (frame-char-size, window-min-pixel-height)
3846 (window-safe-min-pixel-height, window-safe-min-pixel-width)
3847 (window-min-pixel-width, window-safe-min-pixel-size)
3848 (window-combination-p, window-safe-min-size)
3849 (window-resizable-p, window--size-to-pixel)
3850 (window--pixel-to-size, window--resize-apply-p): New functions.
3851 (window-safe-min-height): Fix doc-string.
3852 (window-size, window-min-size, window--min-size-1)
3853 (window-sizable, window-sizable-p, window--min-delta-1)
3854 (window-min-delta, window--max-delta-1, window-max-delta)
3855 (window--resizable, window--resizable-p, window-resizable)
3856 (window-full-height-p, window-full-width-p, window-at-side-p)
3857 (window--in-direction-2, window-in-direction)
3858 (window--resize-reset-1, window--resize-mini-window)
3859 (window-resize, window-resize-no-error)
3860 (window--resize-child-windows-normal)
3861 (window--resize-child-windows, window--resize-siblings)
3862 (window--resize-this-window, window--resize-root-window)
3863 (window--resize-root-window-vertically)
3864 (adjust-window-trailing-edge, enlarge-window, shrink-window)
3865 (maximize-window, minimize-window, delete-window)
3866 (quit-restore-window, window-split-min-size, split-window)
3867 (balance-windows-2, balance-windows)
3868 (balance-windows-area-adjust, balance-windows-area)
3869 (window--state-get-1, window-state-get, window--state-put-1)
3870 (window--state-put-2, window-state-put)
3871 (display-buffer-record-window, window--display-buffer):
3872 Make functions handle pixelwise sizing of windows.
3873 (display-buffer--action-function-custom-type)
3874 (display-buffer-fallback-action):
3875 Add display-buffer-in-previous-window.
3876 (display-buffer-use-some-window): Resize window to height it had
3877 before.
3878 (fit-window-to-buffer-horizontally): New option.
3879 (fit-frame-to-buffer): Describe new values.
3880 (fit-frame-to-buffer-bottom-margin): Replace with
3881 fit-frame-to-buffer-margins.
3882 (window--sanitize-margin): New function.
3883 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
3884 using window-text-pixel-size.
3885
3886 2013-11-30 Glenn Morris <rgm@gnu.org>
3887
3888 * emacs-lisp/bytecomp.el (byte-compile-form):
3889 Make the `interactive-only' warning like the `obsolete' one.
3890 * comint.el (comint-run):
3891 * files.el (insert-file-literally, insert-file):
3892 * replace.el (replace-string, replace-regexp):
3893 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
3894 (goto-line, insert-buffer, next-line, previous-line):
3895 Tweak `interactive-only' spec.
3896
3897 Stop keeping (most) generated cedet grammar files in the repository.
3898 * Makefile.in (semantic): New.
3899 (compile-main): Depend on semantic.
3900
3901 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
3902
3903 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
3904 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
3905
3906 * uniquify.el (uniquify-buffer-name-style): Change default.
3907
3908 * loadup.el: Preload "uniquify".
3909
3910 * time.el (display-time-update): Update all mode lines (bug#15999).
3911
3912 * electric.el (electric-indent-mode): Enable by default.
3913 * loadup.el: Preload "electric".
3914
3915 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
3916
3917 * emacs-lisp/helpers.el (string-empty-p): New function.
3918 (string-blank-p): New function.
3919
3920 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
3921
3922 * imenu.el (imenu--index-alist): Add missing dot to the docstring
3923 (Bug#14029).
3924
3925 2013-11-29 Andreas Politz <politza@fh-trier.de>
3926 * imenu.el (imenu--subalist-p): Don't error on non-conses and
3927 allow non-lambda lists as functions.
3928 (imenu--in-alist): Don't recurse into non-subalists.
3929 (imenu): Don't pass function itself as an argument (Bug#14029).
3930
3931 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
3932
3933 * progmodes/python.el (python-mode-map): Remove binding for ":".
3934 (python-indent-electric-colon): Remove command.
3935 (python-indent-post-self-insert-function): Integrate the previous code
3936 of python-indent-electric-colon. Make it conditional on
3937 electric-indent-mode.
3938 (python-mode): Add ?: to electric-indent-chars.
3939 Move python-indent-post-self-insert-function to the end of
3940 post-self-insert-hook.
3941
3942 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
3943
3944 * doc-view.el (doc-view-goto-page): Update mode-line.
3945
3946 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
3947
3948 2013-11-27 Glenn Morris <rgm@gnu.org>
3949
3950 * international/charprop.el, international/uni-bidi.el:
3951 * international/uni-category.el, international/uni-combining.el:
3952 * international/uni-comment.el, international/uni-decimal.el:
3953 * international/uni-decomposition.el, international/uni-digit.el:
3954 * international/uni-lowercase.el, international/uni-mirrored.el:
3955 * international/uni-name.el, international/uni-numeric.el:
3956 * international/uni-old-name.el, international/uni-titlecase.el:
3957 * international/uni-uppercase.el:
3958 Remove generated files from VCS repository.
3959
3960 2013-11-27 Eli Zaretskii <eliz@gnu.org>
3961
3962 * filenotify.el (file-notify-add-watch): Don't special-case
3963 w32notify when computing the directory to watch.
3964
3965 2013-11-27 Glenn Morris <rgm@gnu.org>
3966
3967 Make bootstrap without generated uni-*.el files possible again.
3968 * loadup.el: Update command-line-args checking for unidata-gen.
3969 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
3970 * composite.el, international/characters.el:
3971 Handle unicode tables being undefined.
3972
3973 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
3974 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
3975 (compile-main): Depend on leim rule.
3976 (leim): New rule.
3977 * loadup.el: Move leim-list.el to leim/ subdirectory.
3978 * startup.el (normal-top-level): No more leim directory.
3979 * international/ja-dic-cnv.el (skkdic-convert):
3980 Disable version-control and autoloads in output files.
3981 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
3982 Disable version-control and autoloads in output files.
3983 * leim/quail: Move here from ../leim.
3984 * leim/quail/hangul.el (hangul-input-method-activate):
3985 Add autoload cookie.
3986 (generated-autoload-load-name): Set file-local value.
3987 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
3988 (generated-autoload-load-name): Set file-local value.
3989
3990 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
3991
3992 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
3993 (eww-add-bookmark): Ask confirmation when add to bookmarks.
3994 (eww-quit): Ask confirmation before quitting eww.
3995
3996 2013-11-26 Eli Zaretskii <eliz@gnu.org>
3997
3998 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
3999 reading output from Diff on MS-Windows and MS-DOS.
4000
4001 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
4002
4003 * emacs-lisp/helpers.el (string-reverse): New function.
4004
4005 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
4006
4007 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
4008 names on MS Windows, like "/[::1]:".
4009
4010 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
4011 SWITCHES.
4012
4013 2013-11-26 Glenn Morris <rgm@gnu.org>
4014
4015 * progmodes/python.el (python-indent-guess-indent-offset):
4016 Avoid corner-case error. (Bug#15975)
4017
4018 Preload leim-list.el. (Bug#4789)
4019 * loadup.el: Load leim-list.el when found.
4020 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
4021
4022 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
4023
4024 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
4025
4026 * emacs-lisp/helpers.el (string-join): New function.
4027
4028 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
4029
4030 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4031 Mark as obsolete and replace it with a symbol property.
4032 (byte-compile-form): Use new 'interactive-only property.
4033 * comint.el, files.el, replace.el, simple.el:
4034 Apply new 'interactive-only properly.
4035
4036 2013-11-25 Martin Rudalics <rudalics@gmx.at>
4037
4038 * window.el (display-buffer-at-bottom): Make sure that
4039 split-window-sensibly creates the new window on bottom
4040 (Bug#15961).
4041
4042 2013-11-23 David Kastrup <dak@gnu.org>
4043
4044 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
4045 on the conflict markers when available.
4046 (smerge--get-marker): New function.
4047 (smerge-end-re, smerge-base-re): Add subgroup.
4048
4049 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4050
4051 * frame.el (handle-focus-in, handle-focus-out): Add missing
4052 interactive spec.
4053
4054 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
4055
4056 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
4057 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
4058
4059 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4060
4061 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
4062 (gomoku--last-pos): New var.
4063 (gomoku--intangible-chars): New const.
4064 (gomoku--intangible): New function.
4065 (gomoku-mode): Use it. Derive from special-mode.
4066 (gomoku-move-up): Adjust line count.
4067 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
4068 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
4069 Simplify accordingly.
4070
4071 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
4072 Remove blink-cursor code.
4073 (blink-cursor-timer-function, blink-cursor-suspend):
4074 Don't special-case GUIs.
4075 (blink-cursor-mode): Use focus-in/out-hook.
4076
4077 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
4078
4079 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
4080 work when annotation is invisible (Bug#13886).
4081
4082 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
4083
4084 * json.el (json-alist-p): Only return non-nil if the alist has
4085 simple keys (Bug#13518).
4086
4087 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
4088
4089 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
4090 when control-statement is the first statement in a buffer (Bug#15956).
4091
4092 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
4093
4094 * imenu.el (imenu-generic-skip-comments-and-strings):
4095 New option (Bug#15560).
4096 (imenu--generic-function): Use it.
4097
4098 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
4099
4100 * minibuffer.el (completion--in-region-1): Scroll the correct window.
4101 (Bug#13898)
4102
4103 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
4104
4105 * emacs-lisp/helpers.el: Add some string helpers.
4106 (string-trim-left): Removes leading whitespace.
4107 (string-trim-right): Removes trailing whitespace.
4108 (string-trim): Removes leading and trailing whitespace.
4109
4110 * subr.el (string-suffix-p): New function.
4111
4112 2013-11-23 Glenn Morris <rgm@gnu.org>
4113
4114 * progmodes/python.el (python-shell-send-file):
4115 Add option to delete file when done. (Bug#15647)
4116 (python-shell-send-string, python-shell-send-region): Use it.
4117
4118 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
4119
4120 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
4121 to set buffer-read-only to t, never to nil. (Bug#15938)
4122
4123 * textmodes/tex-mode.el (latex-noindent-environments):
4124 Add safe-local-variable property. (Bug#15936)
4125
4126 2013-11-23 Glenn Morris <rgm@gnu.org>
4127
4128 * textmodes/enriched.el (enriched-mode): Doc fix.
4129 * emacs-lisp/authors.el (authors-renamed-files-alist):
4130 Add enriched.doc -> enriched.txt.
4131
4132 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
4133
4134 2013-11-22 Leo Liu <sdl.web@gmail.com>
4135
4136 * progmodes/octave.el (inferior-octave-startup): Spit out error
4137 message.
4138
4139 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
4140
4141 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
4142 Improve docstring.
4143 Add :version.
4144 (ruby-encoding-magic-comment-style): Add :version.
4145
4146 2013-11-22 Leo Liu <sdl.web@gmail.com>
4147
4148 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
4149 (Bug#15076)
4150 (octave-help-mode): Adapt to change to help-mode-finish to use
4151 derived-mode-p on 2013-09-17.
4152 (inferior-octave-prompt): Also match octave-gui.
4153 (octave-kill-process): Don't ask twice. (Bug#10564)
4154
4155 2013-11-22 Leo Liu <sdl.web@gmail.com>
4156
4157 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
4158 (inferior-octave-startup, inferior-octave-check-process)
4159 (inferior-octave-track-window-width-change)
4160 (octave-completion-at-point, octave-eldoc-function): Use it.
4161 (octave-kill-process): Provide confirmation. (Bug#10564)
4162
4163 2013-11-21 Leo Liu <sdl.web@gmail.com>
4164
4165 * progmodes/octave.el (octave-mode, inferior-octave-mode):
4166 Fix obsolete variable comment-use-global-state.
4167
4168 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4169
4170 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
4171 Add `octave-source-file'.
4172 (octave-source-file): New function. (Bug#15935)
4173
4174 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
4175
4176 * net/eww.el (eww-local-regex): New variable.
4177 (eww): Use it to detect localhost and similar.
4178
4179 2013-11-21 Leo Liu <sdl.web@gmail.com>
4180
4181 Add completion for command `ag'.
4182 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
4183 (pcomplete/ag): New function.
4184 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
4185
4186 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4187
4188 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
4189 (bug#14646).
4190 (make-obsolete): Remove interactive spec.
4191
4192 2013-11-21 Glenn Morris <rgm@gnu.org>
4193
4194 * startup.el (command-line-1): Use path-separator with -L.
4195
4196 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
4197
4198 * emacs-lisp/package.el (describe-package-1): Add package archive
4199 to shown fields.
4200
4201 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
4202
4203 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
4204 Change default to "# encoding: %s" to differentiate it from the
4205 default Ruby encoding comment template.
4206
4207 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
4208
4209 * ses.el (ses-mode): Doc fix. (Bug#14748)
4210
4211 2013-11-20 Leo Liu <sdl.web@gmail.com>
4212
4213 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
4214
4215 2013-11-19 Dan Nicolaescu <dann@gnu.org>
4216
4217 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
4218 when rebase or bisect are in progress.
4219
4220 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
4221
4222 * filenotify.el (file-notify-add-watch): Doc fix.
4223
4224 2013-11-19 Leo Liu <sdl.web@gmail.com>
4225
4226 * obsolete/rcompile.el: Mark obsolete.
4227
4228 * progmodes/compile.el (compilation-start)
4229 (compilation-goto-locus, compilation-find-file):
4230 Pass no-display-ok and handle nil value from display-buffer.
4231 (Bug#13594)
4232
4233 * window.el (display-buffer-alist, display-buffer): Document the
4234 new parameter no-display-ok. Return either a window or nil
4235 but never a non-window value.
4236
4237 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4238
4239 * electric.el (electric-indent-mode-map): Remove.
4240 (electric-indent-mode): Change the global-map instead (bug#15915).
4241
4242 * textmodes/text-mode.el (paragraph-indent-minor-mode):
4243 Use add-function.
4244
4245 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4246
4247 * emacs-lisp/nadvice.el (remove-function): Align with
4248 add-function's behavior.
4249
4250 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
4251 (gdb--string-regexp): New constant.
4252 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
4253 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
4254 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
4255 submatch 1.
4256 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
4257 Adjust use accordingly.
4258 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
4259
4260 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
4261
4262 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
4263 interpolation curlies (Bug#15914).
4264
4265 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
4266
4267 * calc/calc.el (calc-context-sensitive-enter): New variable.
4268 (calc-enter): Use `calc-context-sensitive-enter'.
4269
4270 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
4271
4272 * progmodes/cfengine.el: Version bump.
4273 (cfengine-cf-promises): New defcustom to locate cf-promises.
4274 (cfengine3-vartypes): Add new "data" type.
4275 (cfengine3--current-word): New function to get current name-like
4276 word or its bounds.
4277 (cfengine3--current-function): New function to look up a CFEngine
4278 function's definition.
4279 (cfengine3-format-function-docstring): New function.
4280 (cfengine3-make-syntax-cache): New function.
4281 (cfengine3-documentation-function): New function: ElDoc glue.
4282 (cfengine3-completion-function): New function: completion glue.
4283 (cfengine3-mode): Set `compile-command',
4284 `eldoc-documentation-function', and add to
4285 `completion-at-point-functions'.
4286
4287 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
4288
4289 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
4290 `tramp-current-connection'.
4291
4292 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
4293
4294 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
4295 nil/self/true/false with "end of symbol".
4296
4297 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
4298
4299 * subr.el (version-regexp-alist): Fix a typo.
4300
4301 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
4302
4303 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
4304 "en_US.utf8" and "LC_CTYPE" to "".
4305 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
4306 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
4307
4308 2013-11-15 Leo Liu <sdl.web@gmail.com>
4309
4310 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
4311
4312 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4313
4314 * progmodes/gud.el (ctl-x-map):
4315 Remove C-x SPC binding. (Bug#12342)
4316 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
4317
4318 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
4319
4320 * subr.el (version-regexp-alist):
4321 Recognize hg, svn and darcs versions as snapshot versions.
4322
4323 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
4324 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
4325 (ruby--encoding-comment-required-p): Extract from
4326 `ruby-mode-set-encoding'.
4327 (ruby-mode-set-encoding): Add the ability to always insert an
4328 utf-8 encoding comment. Fix and simplify coding comment update
4329 logic.
4330
4331 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
4332
4333 * net/tramp-gvfs.el (top): Run init code only when
4334 `tramp-gvfs-enabled' is not nil.
4335 (tramp-gvfs-enabled): Check also :system bus.
4336
4337 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4338
4339 Sync with upstream verilog-mode revision 78e66ba.
4340 * progmodes/verilog-mode.el (verilog-end-of-defun)
4341 (verilog-type-completion, verilog-get-list): Remove unused funcs.
4342 (verilog-get-end-of-defun): Remove unused argument.
4343 (verilog-comment-depth): Remove unused local `e'.
4344 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
4345 Don't pass arg to verilog-get-end-of-defun.
4346
4347 2013-11-14 Glenn Morris <rgm@gnu.org>
4348
4349 * obsolete/assoc.el (aget): Prefix dynamic variable.
4350
4351 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
4352
4353 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4354
4355 * widget.el, hfy-cmap.el: Remove bogus package version number.
4356
4357 2013-11-13 Glenn Morris <rgm@gnu.org>
4358
4359 * replace.el (replace-eval-replacement):
4360 Try to give more helpful error message. (Bug#15836)
4361
4362 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
4363 (archive-7z-update): Avoid custom type mismatches.
4364
4365 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
4366
4367 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
4368
4369 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
4370 address can be empty.
4371
4372 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
4373 Accept nil SWITCHES.
4374 (tramp-gvfs-handle-write-region): Implement APPEND.
4375
4376 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
4377
4378 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
4379 binary "|" operator and closing block args delimiter.
4380 Remove FIXME comment referring to Ruby 1.8-only syntax.
4381 (ruby-smie--implicit-semi-p): Not after "|" operator.
4382 (ruby-smie--closing-pipe-p): New function.
4383 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
4384 (ruby-smie-rules): Indent after "|".
4385
4386 2013-11-12 Glenn Morris <rgm@gnu.org>
4387
4388 * ps-print.el (ps-face-attribute-list):
4389 Handle anonymous faces. (Bug#15827)
4390
4391 2013-11-12 Martin Rudalics <rudalics@gmx.at>
4392
4393 * window.el (display-buffer-other-frame): Fix doc-string.
4394 (Bug#15868)
4395
4396 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4397
4398 * subr.el (force-mode-line-update): Delete, move to buffer.c.
4399
4400 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
4401
4402 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
4403 (tramp-sh-handle-file-local-copy): Don't write a message when
4404 saving temporary files.
4405
4406 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
4407 both directories are remote.
4408 (tramp-smb-handle-directory-files): Do not return double entries.
4409 Do not expand full file names.
4410 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
4411 (tramp-smb-handle-write-region): Implement APPEND.
4412 (tramp-smb-get-stat-capability): Fix a stupid bug.
4413
4414 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4415
4416 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
4417
4418 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4419
4420 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
4421 throwing error over malformed let/let* (bug#15814).
4422
4423 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4424
4425 * iswitchb.el (iswitchb-mode): Mark obsolete.
4426
4427 2013-11-11 Glenn Morris <rgm@gnu.org>
4428
4429 * international/uni-bidi.el, international/uni-category.el:
4430 * international/uni-name.el, international/uni-numeric.el:
4431 Regenerate for Unicode 6.3.0.
4432
4433 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
4434
4435 * net/tramp.el (tramp-methods):
4436 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
4437 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
4438
4439 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
4440
4441 * progmodes/sh-script.el (sh-font-lock-keywords-var):
4442 Force highlighting text after Summary keyword in doc face for rpm.
4443
4444 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
4445
4446 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
4447 available and the word has no wildcards, append one to the grep pattern.
4448 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
4449 (ispell-complete-word): Call `ispell-lookup-words' with the value
4450 independent of `ispell-look-p'.
4451
4452 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4453
4454 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
4455 Not after "||".
4456 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
4457 their parent.
4458
4459 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4460
4461 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
4462 (ruby-font-lock-keywords): Use backquote.
4463
4464 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4465
4466 * progmodes/ruby-mode.el (ruby-smie--forward-token)
4467 (ruby-smie--backward-token): Only consider full-string matches.
4468
4469 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
4470
4471 * faces.el (describe-face): Add distant-foreground.
4472
4473 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
4474
4475 * progmodes/ruby-mode.el: Improve encoding comment handling.
4476 (ruby-encoding-magic-comment-style): New option.
4477 (ruby-custom-encoding-magic-comment-template): New option.
4478 (ruby--insert-coding-comment, ruby--detect-encoding):
4479 New functions extracted from `ruby-mode-set-encoding'.
4480 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
4481 to control the style of the auto-inserted encoding comment.
4482
4483 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4484
4485 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
4486 Use `smie-backward-sexp' with token argument.
4487
4488 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
4489
4490 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
4491 Remove instrumentation code.
4492
4493 2013-11-08 Glenn Morris <rgm@gnu.org>
4494
4495 * progmodes/autoconf.el (autoconf-mode):
4496 Tweak comment-start-skip. (Bug#15822)
4497
4498 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4499
4500 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
4501 at bobp (bug#15826).
4502 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
4503
4504 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
4505
4506 * man.el (Man-start-calling): New macro, extracted from
4507 Man-getpage-in-background.
4508 (Man-getpage-in-background): Use it.
4509 (Man-update-manpage): New command.
4510 (Man-mode-map): Bind it.
4511
4512 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4513
4514 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
4515 of "and", "or", "&&" and "||".
4516 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
4517 argument. Prohibit opening curly brace because it could only be a
4518 block opener in that position.
4519 (ruby-smie--forward-token, ruby-smie--backward-token):
4520 Separate "|" from "&" or "*" going after it. That can happen in block
4521 arguments.
4522 (ruby-smie--indent-to-stmt): New function, seeks the end of
4523 previous statement or beginning of buffer.
4524 (ruby-smie-rules): Use it.
4525 (ruby-smie-rules): Check if there's a ":" before a curly block
4526 opener candidate; if there is, it's a hash.
4527
4528 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
4529
4530 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
4531 (cl--block-wrapper): Fix last accidental change.
4532
4533 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
4534
4535 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
4536 Instrument, in order to hunt failure on hydra.
4537
4538 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4539
4540 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
4541 malformed bindings form (bug#15814).
4542
4543 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
4544
4545 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
4546 "." compared to " @ ". This incidentally fixes some indentation
4547 examples with "do".
4548 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
4549 (ruby-smie-grammar): New tokens: "and" and "or".
4550 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
4551 Exclude "and" and "or". Remove "do" in order to work around token
4552 priorities.
4553 (ruby-smie-rules): Add all infix tokens. Handle the case of
4554 beginning-of-buffer.
4555
4556 2013-11-06 Glenn Morris <rgm@gnu.org>
4557
4558 * Makefile.in (setwins_almost, setwins_for_subdirs):
4559 Avoid accidental matches.
4560
4561 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4562
4563 * menu-bar.el (popup-menu): Use key-binding.
4564
4565 2013-11-06 Eli Zaretskii <eliz@gnu.org>
4566
4567 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
4568 menus, support also the menus produced by minor modes.
4569 (Bug#15817)
4570
4571 2013-11-06 Leo Liu <sdl.web@gmail.com>
4572
4573 * thingatpt.el (thing-at-point-looking-at): Add optional arg
4574 DISTANCE to bound the search. All uses changed. (Bug#15808)
4575
4576 2013-11-06 Glenn Morris <rgm@gnu.org>
4577
4578 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
4579 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
4580 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
4581
4582 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4583
4584 * electric.el (electric-indent-just-newline): New command.
4585 (electric-indent-mode-map): New keymap.
4586 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
4587 Re-add :group which weren't redundant.
4588
4589 * electric.el (electric-indent-local-mode): New minor mode.
4590 (electric-indent-functions-without-reindent): New var.
4591 (electric-indent-post-self-insert-function): Use it.
4592 * emacs-lisp/gv.el (buffer-local-value): Add setter.
4593
4594 2013-11-05 Eli Zaretskii <eliz@gnu.org>
4595
4596 * international/quail.el (quail-help): Be more explicit about the
4597 meaning of the labels shown on the keys. (Bug#15800)
4598
4599 * startup.el (normal-top-level): Load the subdirs.el files before
4600 setting the locale environment. (Bug#15805)
4601
4602 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
4603
4604 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
4605 via arguments so as to get the right ones (bug#15418).
4606
4607 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
4608
4609 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
4610
4611 Fix problems found while writing a test suite.
4612
4613 * net/tramp-compat.el (tramp-compat-load): New defun.
4614 * net/tramp.el (tramp-handle-load): Use it.
4615
4616 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
4617 "(numberp ok-if-already-exists)" correctly.
4618
4619 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
4620
4621 * international/characters.el (glyphless-char-display-control):
4622 Add usage note.
4623
4624 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
4625
4626 * progmodes/python.el (python-mode):
4627 * progmodes/scheme.el (scheme-mode):
4628 * progmodes/prolog.el (prolog-mode):
4629 * progmodes/ruby-mode.el (ruby-mode):
4630 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
4631 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
4632
4633 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4634
4635 * rect.el (rectangle--highlight-for-redisplay):
4636 * emacs-lisp/smie.el (smie--next-indent-change):
4637 Use buffer-chars-modified-tick.
4638
4639 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
4640
4641 * electric.el (electric-indent-post-self-insert-function):
4642 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
4643
4644 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
4645
4646 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
4647
4648 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4649
4650 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
4651 (bug#15786).
4652
4653 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4654
4655 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
4656
4657 * progmodes/python.el: Fix up last change.
4658 (python-shell--save-temp-file): New function.
4659 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
4660 `string' comes from the current buffer.
4661 (python-shell-send-string-no-output): Remove `msg' arg.
4662 (python--use-fake-loc): New var.
4663 (python-shell-buffer-substring): Obey it. Try to compensate for the
4664 extra coding line added by python-shell--save-temp-file.
4665 (python-shell-send-region): Use python-shell--save-temp-file and
4666 python-shell-send-file directly. Add `nomain' argument.
4667 (python-shell-send-buffer): Use python-shell-send-region.
4668 (python-electric-pair-string-delimiter): New function.
4669 (python-mode): Use it.
4670
4671 2013-11-04 Eli Zaretskii <eliz@gnu.org>
4672
4673 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
4674 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
4675 environment and decoding all of the default-directory's to here
4676 from command-line.
4677 (command-line): Decode also argv[0].
4678
4679 * loadup.el: Error out if default-directory is a multibyte string
4680 when we are dumping.
4681
4682 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
4683
4684 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
4685
4686 * emacs-lisp/package.el (package-menu-mode)
4687 (package-menu--print-info, package-menu--archive-predicate):
4688 Add Archive column to package list.
4689
4690 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
4691
4692 Fix problems found while writing a test suite.
4693
4694 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
4695 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
4696 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
4697 to nil when running original file name handler. Otherwise,
4698 there are problems with constructs like "$$FOO".
4699
4700 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
4701 for `localname'.
4702
4703 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
4704
4705 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
4706
4707 * subr.el (version<, version<=, version=):
4708 Update docstrings with information for snapshot versions.
4709
4710 * helpers.el: New library for misc helper functions.
4711 (hash-table-keys): New function returning a list of hash keys.
4712 (hash-table-values): New function returning a list of hash values.
4713
4714 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
4715
4716 * progmodes/ruby-mode.el (ruby-smie--forward-token)
4717 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
4718
4719 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
4720
4721 * textmodes/fill.el (fill-single-char-nobreak-p): New function
4722 checking whether point is after a 1-letter word.
4723
4724 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4725
4726 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
4727 Don't infloop when expanding region over `multiline' syntax-type that
4728 begins a line (bug#15778).
4729
4730 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4731
4732 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
4733 Make it into a proper minor mode.
4734 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
4735 (rectangle-mark-mode-map): New keymap.
4736 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
4737
4738 2013-11-04 Glenn Morris <rgm@gnu.org>
4739
4740 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
4741
4742 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
4743
4744 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
4745 (ruby-smie-rules): Use smie-rule-parent instead.
4746
4747 * emacs-lisp/smie.el (smie-rule-parent): Always call
4748 smie-indent-virtual rather than only for hanging tokens.
4749 (smie--next-indent-change): New helper command.
4750
4751 2013-11-03 Glenn Morris <rgm@gnu.org>
4752
4753 * Makefile.in (abs_srcdir): Remove.
4754 (emacs): Unset EMACSLOADPATH.
4755
4756 2013-11-02 Glenn Morris <rgm@gnu.org>
4757
4758 * Makefile.in (EMACS): Use a relative filename.
4759 (abs_top_builddir): Remove.
4760 (custom-deps, finder-data, autoloads): Use --chdir.
4761
4762 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
4763
4764 Use relative filenames in TAGS files.
4765 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
4766 (lisptagsfiles4, TAGS): Use relative file names.
4767 (TAGS-LISP): Remove.
4768 (maintainer-clean): No more TAGS-LISP file.
4769
4770 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
4771 (lisptagsfiles4): Use absolute filenames again.
4772 (TAGS, TAGS-LISP): Not everything needs to run in one line.
4773 Remove all *loaddefs files, not just the first. Remove esh-groups.
4774 (maintainer-clean): Delete TAGS, TAGS-LISP.
4775
4776 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
4777
4778 * emacs-lisp/package.el (package-version-join):
4779 Recognize snapshot versions.
4780
4781 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
4782
4783 * subr.el (version-regexp-alist): Add support for snapshot versions.
4784
4785 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
4786
4787 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
4788 New function, replacement for `smie-rule-parent' for when we want to
4789 skip over our direct parent if it's an assignment token..
4790 (ruby-smie-rules): Use it.
4791
4792 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
4793
4794 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
4795 unconditionally. Remove now unnecessary forward declarations.
4796 Remove XEmacs-specific setup.
4797 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
4798 (ruby-font-lock-syntactic-keywords)
4799 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
4800 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
4801 (ruby-here-doc-end-syntax): Remove.
4802 (ruby-mode): Don't check whether `syntax-propertize-rules' is
4803 defined as function.
4804
4805 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
4806
4807 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
4808
4809 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
4810
4811 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
4812 table and abbrev table, `define-derived-mode' does that for us
4813 anyway.
4814
4815 2013-11-01 Glenn Morris <rgm@gnu.org>
4816
4817 * Makefile.in: Remove manual mh-e dependencies (writing .elc
4818 files is atomic for some time, so no parallel compilation issues).
4819
4820 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
4821
4822 * faces.el (face-x-resources): Add :distant-foreground.
4823 (region): Use :distant-foreground for gtk and ns.
4824
4825 2013-11-01 Tassilo Horn <tsdh@gnu.org>
4826
4827 Allow multiple bibliographies when BibLaTeX is used rather than
4828 BibTeX.
4829 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
4830 (reftex-locate-bibliography-files): Us it.
4831
4832 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
4833
4834 * image.el (image-type-header-regexps): Fix the 'pbm' part to
4835 allow comments in pbm files.
4836
4837 * term/w32-win.el (dynamic-library-alist): Support newer versions
4838 of libjpeg starting with v7: look only for the DLL from the
4839 version against which Emacs was built.
4840 Support versions of libpng beyond 1.4.x.
4841 Support libtiff v4.x.
4842
4843 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
4844
4845 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
4846 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
4847 Add property :safe.
4848 (ruby-deep-arglist): Add property :type.
4849
4850 2013-10-31 Glenn Morris <rgm@gnu.org>
4851
4852 * Makefile.in (custom-deps, finder-data): No need to setq the target
4853 variables, we are in the right directory and the defaults work fine.
4854
4855 2013-10-30 Glenn Morris <rgm@gnu.org>
4856
4857 * Makefile.in (autoloads): Do not use abs_lisp.
4858
4859 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4860 `newline' does not respect `standard-output', so use `princ'.
4861
4862 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
4863
4864 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
4865 * buff-menu.el (Buffer-menu--unmark): New function.
4866 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
4867
4868 2013-10-30 Glenn Morris <rgm@gnu.org>
4869
4870 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
4871
4872 * emacs-lisp/package.el (lm-homepage): Declare.
4873
4874 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
4875 Fix doc typos.
4876
4877 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
4878
4879 * Makefile.in (finder-data, autoloads, update-subdirs)
4880 (compile-main, compile-clean, compile-always, bootstrap-clean):
4881 Check return value of cd.
4882 (compile-calc): Remove.
4883
4884 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
4885
4886 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
4887
4888 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
4889 (byte-compile-and-folded): New function.
4890 (=, <, >, <=, >=): Use it.
4891
4892 * dos-w32.el (minibuffer-history-case-insensitive-variables)
4893 (path-separator, null-device, buffer-file-coding-system)
4894 (lpr-headers-switches): Check system-type before modifying them.
4895 (find-buffer-file-type-coding-system): Mark obsolete.
4896 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
4897 find-file-not-found-set-buffer-file-coding-system.
4898 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
4899 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
4900 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
4901 (w32-direct-print-region-helper, w32-direct-print-region-function)
4902 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
4903 * startup.el (normal-top-level-add-subdirs-to-load-path):
4904 * ps-print.el (ps-print-region-function):
4905 * lpr.el (print-region-function): Use new name.
4906
4907 * subr.el (custom-declare-variable-early): Remove function.
4908 (custom-declare-variable-list): Remove var.
4909 (error, user-error): Remove `while' loop.
4910 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
4911 (user-emacs-directory-warning, locate-user-emacs-file):
4912 Move to files.el.
4913 * simple.el (read-quoted-char-radix, read-quoted-char):
4914 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
4915 Move from subr.el.
4916 * custom.el (custom-declare-variable-list): Don't process
4917 custom-declare-variable-list.
4918
4919 * progmodes/python.el (python-shell-get-buffer): New function.
4920 (python-shell-get-process): Use it.
4921 (python-shell-send-string): Always use utf-8 and add a cookie to tell
4922 Python which encoding was used. Don't split-string since we only care
4923 about the first line. Return the temp-file, if applicable.
4924 (python-shell-send-region): Tell compile.el how to turn locations in
4925 the temp-file into locations in the source buffer.
4926
4927 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
4928
4929 * subr.el (undefined): Add missing behavior from the C code for
4930 unbound keys.
4931
4932 * rect.el: Use lexical-binding. Add new rectangular region support.
4933 (rectangle-mark): New command.
4934 (rectangle--region): New var.
4935 (deactivate-mark-hook): Reset rectangle--region.
4936 (rectangle--extract-region, rectangle--insert-for-yank)
4937 (rectangle--highlight-for-redisplay)
4938 (rectangle--unhighlight-for-redisplay): New functions.
4939 (region-extract-function, redisplay-unhighlight-region-function)
4940 (redisplay-highlight-region-function): Use them to handle
4941 rectangular region.
4942 * simple.el (region-extract-function): New var.
4943 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
4944 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
4945 (kill-region): Replace obsolete `yank-handler' arg with `region'.
4946 (copy-region-as-kill, kill-ring-save): Add `region' argument.
4947 (redisplay-unhighlight-region-function)
4948 (redisplay-highlight-region-function): New vars.
4949 (redisplay--update-region-highlight): New function.
4950 (pre-redisplay-function): Use it.
4951 (exchange-point-and-mark): Don't deactivate the mark before
4952 reactivate-it anyway.
4953 * comint.el (comint-kill-region): Remove yank-handler argument.
4954 * delsel.el (delete-backward-char, backward-delete-char-untabify)
4955 (delete-char): Remove property, since it's now part of their
4956 default behavior.
4957 (self-insert-iso): Remove property since this command doesn't exist.
4958
4959 * emacs-lisp/package.el (package--download-one-archive)
4960 (describe-package-1): Don't query the user about final newline.
4961
4962 2013-10-29 Daniel Colascione <dancol@dancol.org>
4963
4964 * net/tramp.el (tramp-methods): Document new functionality.
4965 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
4966 tramp-hostname-checker if method provides one instead of scanning
4967 argument list for "%h" to decide hostname acceptability.
4968
4969 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
4970
4971 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
4972 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4973 Handle COPY-CONTENTS. (Bug#15737)
4974
4975 2013-10-28 Daiki Ueno <ueno@gnu.org>
4976
4977 * epa-file.el
4978 (epa-file-cache-passphrase-for-symmetric-encryption):
4979 Document that this option has no effect with GnuPG 2.0 (bug#15552).
4980
4981 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
4982
4983 * image.el (defimage, image-load-path): Doc fixes.
4984
4985 2013-10-27 Alan Mackenzie <acm@muc.de>
4986
4987 Indent statements in macros following "##" correctly.
4988 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
4989 Modify the "#" arm of a cond form to handle "#" and "##" operators.
4990
4991 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4992
4993 * linum.el (linum-update-window): Fix boundary test (bug#13446).
4994
4995 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
4996
4997 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
4998 after `=' is probably a new expression.
4999
5000 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5001
5002 * man.el (man-imenu-title): New option.
5003 (Man-mode-map): Add menu. (Bug#15722)
5004 (Man-mode): Add imenu to menu.
5005
5006 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
5007
5008 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
5009 specific in what the first arg can be: a non-keyword word,
5010 string/regexp/percent literal opener, opening paren, or unary
5011 operator followed directly by word.
5012
5013 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5014
5015 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
5016 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
5017 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
5018 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
5019 Remove vars, they do not apply any more.
5020 (prolog-mode-abbrev-table): Remove redundant declaration.
5021 (prolog-upper-case-string, prolog-lower-case-string): Remove.
5022 (prolog-use-smie): Remove.
5023 (prolog-smie-rules): Add indentation rule for the if-then-else layout
5024 supported by prolog-electric-if-then-else-flag.
5025 (prolog-mode-variables, prolog-menu): Use setq-local.
5026 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
5027 Remove binding to `Backspace' since this key doesn't exist anyway.
5028 Remove bindings for electric self-inserting keys.
5029 (prog-mode): Assume it's defined.
5030 (prolog-post-self-insert): New function.
5031 (prolog-mode): Use it.
5032 (prolog-indent-line, prolog-indent-level)
5033 (prolog-find-indent-of-matching-paren)
5034 (prolog-indentation-level-of-line, prolog-goto-comment-column)
5035 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
5036 (prolog-goto-next-paren, prolog-in-string-or-comment)
5037 (prolog-tokenize, prolog-inside-mline-comment)
5038 (prolog-find-start-of-mline-comment): Remove functions.
5039 (prolog-find-unmatched-paren, prolog-clause-end)
5040 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
5041 (prolog-electric--if-then-else): Rename from
5042 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
5043 (prolog-tokenize-searchkey): Remove const.
5044 (prolog-clause-info): Use forward-sexp.
5045 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
5046 (prolog-electric-if-then-else): Remove commands.
5047 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
5048 for use in post-self-insert-hook.
5049 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
5050 for use in post-self-insert-hook.
5051 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
5052 for use in post-self-insert-hook.
5053 (prolog-electric--underscore): Rename from prolog-electric--underscore;
5054 adapt it for use in post-self-insert-hook.
5055
5056 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
5057
5058 * emacs-lisp/ert.el (ert-run-tests-interactively):
5059 Use `completing-read'. (Bug#9756)
5060
5061 2013-10-25 Eli Zaretskii <eliz@gnu.org>
5062
5063 * simple.el (line-move): Call line-move-1 instead of
5064 line-move-visual when the current window hscroll is zero, but
5065 temporary-goal-column indicates we will need to hscroll as result
5066 of the movement. (Bug#15712)
5067
5068 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
5069
5070 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
5071 capitalization. Use :visible instead of :active.
5072 Fix `ruby-indent-exp' reference. Add menu items for the generic
5073 commands that are used with SMIE.
5074 (ruby-do-end-to-brace): Insert space after `{'.
5075
5076 2013-10-25 John Anthony <john@jo.hnanthony.com>
5077
5078 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
5079
5080 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
5081
5082 2013-10-25 Glenn Morris <rgm@gnu.org>
5083
5084 * vc/vc.el (vc-print-log): Don't use a working revision unless
5085 one was explicitly specified. (Bug#15322)
5086
5087 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5088
5089 * subr.el (add-to-list): Preserve return value in compiler-macro
5090 (bug#15692).
5091
5092 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5093
5094 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
5095 result. Ask user to retry using '-all' flag. (Bug#15701)
5096
5097 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5098
5099 * emacs-lisp/smie.el: New smie-config system.
5100 (smie-config): New defcustom.
5101 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
5102 (smie-config-guess, smie-config-save): New commands.
5103 (smie-config--mode-local, smie-config--buffer-local)
5104 (smie-config--trace, smie-config--modefuns): New vars.
5105 (smie-config--advice, smie-config--mode-hook)
5106 (smie-config--setter, smie-config-local, smie-config--get-trace)
5107 (smie-config--guess-value, smie-config--guess): New functions.
5108 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
5109 text properties. Treat "string fence" syntax like string syntax.
5110
5111 * progmodes/sh-script.el (sh-use-smie): Change default.
5112 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
5113 (sh-var-value): Simplify by CSE.
5114 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
5115 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
5116 is used.
5117 (sh-guess-basic-offset): Use cl-incf.
5118 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
5119
5120 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
5121
5122 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
5123 (bug#15699).
5124
5125 2013-10-24 Glenn Morris <rgm@gnu.org>
5126
5127 * Makefile.in (abs_top_srcdir): Remove.
5128 (update-subdirs): Use relative path to update-subdirs.
5129
5130 2013-10-24 Eli Zaretskii <eliz@gnu.org>
5131
5132 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
5133 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
5134 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
5135 Call unmsys--file-name before expand-file-name, not after it.
5136
5137 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
5138
5139 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
5140 (ert-test-skipped): New error.
5141 (ert-skip, ert-stats-skipped): New defuns.
5142 (ert--skip-unless): New macro.
5143 (ert-test-skipped): New struct.
5144 (ert--run-test-debugger, ert-test-result-type-p)
5145 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
5146 (ert--stats-set-test-and-result, ert-char-for-test-result)
5147 (ert-string-for-test-result, ert-run-tests-batch)
5148 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
5149 Handle skipped tests. (Bug#9803)
5150
5151 2013-10-24 Glenn Morris <rgm@gnu.org>
5152
5153 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
5154
5155 * Makefile.in (abs_top_srcdir): New, set by configure.
5156 (update-subdirs): Correct build-aux location.
5157
5158 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
5159
5160 * vc/vc.el (vc-print-root-log): Always set `default-directory'
5161 value, whether we could auto-deduce `backend', or not.
5162
5163 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
5164 with parameters" example. Simplify the "is it block or is it
5165 hash" check, but also make it more thorough.
5166
5167 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
5168
5169 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
5170
5171 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5172
5173 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
5174 { if it is hanging.
5175
5176 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
5177 :before ";".
5178
5179 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
5180
5181 * progmodes/compile.el (compilation-directory-matcher)
5182 (compilation-page-delimiter):
5183 Support GNU Make-4.0 directory quoting. (Bug#15678)
5184
5185 2013-10-23 Leo Liu <sdl.web@gmail.com>
5186
5187 * ido.el (ido-tidy): Handle read-only text.
5188
5189 2013-10-23 Glenn Morris <rgm@gnu.org>
5190
5191 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
5192 (emacs, compile, compile-always):
5193 Quote entities that might contain whitespace.
5194 (custom-deps, finder-data, autoloads): Use abs_lisp.
5195 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
5196 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
5197 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
5198
5199 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
5200
5201 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
5202 Use `following-char'.
5203
5204 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5205
5206 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
5207 * progmodes/ruby-mode.el (ruby-smie-rules):
5208 Remove corresponding workaround. Fix indentation rule of ";" so it
5209 also applies when ";" is the parent.
5210
5211 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
5212
5213 * frame.el (display-screens, display-pixel-height)
5214 (display-pixel-width, display-mm-width, display-backing-store)
5215 (display-save-under, display-planes, display-color-cells)
5216 (display-visual-class, display-monitor-attributes-list):
5217 Mention the optional ‘display’ argument in doc strings.
5218
5219 2013-10-22 Michael Gauland <mikelygee@amuri.net>
5220
5221 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
5222 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
5223
5224 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
5225
5226 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
5227 TODO. Add "." after " @ ".
5228 (ruby-smie--at-dot-call): New function. Checks if point at method
5229 call with explicit target.
5230 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
5231 to the method name tokens when it precedes them.
5232 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
5233 (ruby-smie-rules): Add rule for indentation before and after "."
5234 token.
5235
5236 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5237
5238 * textmodes/remember.el (remember-diary-extract-entries):
5239 Avoid add-to-list.
5240
5241 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
5242 an instruction.
5243
5244 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
5245
5246 * progmodes/ruby-mode.el (ruby-smie-grammar):
5247 Add (almost) all infix operators.
5248 (ruby-smie--implicit-semi-p): Add new operator chars.
5249
5250 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
5251 `smie-down-list'.
5252 (ruby-smie--args-separator-p): Check that there's no newline
5253 between method call and its arguments.
5254
5255 2013-10-20 Alan Mackenzie <acm@muc.de>
5256
5257 Allow comma separated lists after Java "implements".
5258
5259 * progmodes/cc-engine.el (c-backward-over-enum-header):
5260 Parse commas.
5261 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
5262 from a "disallowed" list in enum fontification.
5263
5264 2013-10-20 Johan Bockgård <bojohan@gnu.org>
5265
5266 * startup.el (default-frame-background-mode): Remove unused defvar.
5267
5268 * progmodes/verilog-mode.el (verilog-mode): Don't set
5269 comment-indent-function globally.
5270
5271 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
5272
5273 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
5274 Move Info menu item creation to ns-win.el.
5275
5276 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
5277 in menu bar.
5278
5279 * menu-bar.el: Move GNUstep specific menus...
5280
5281 * term/ns-win.el (ns-initialize-window-system): ... to here.
5282
5283 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5284
5285 * simple.el (newline): Only run post-self-insert-hook when
5286 called interactively.
5287
5288 2013-10-19 Johan Bockgård <bojohan@gnu.org>
5289
5290 * icomplete.el (icomplete-with-completion-tables): Add :version.
5291
5292 2013-10-19 Alan Mackenzie <acm@muc.de>
5293
5294 Fix fontification bugs with constructors and const.
5295
5296 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
5297 CASE 2) Remove the check for the absence of a suffix construct
5298 after a function declaration with only types (no identifiers) in
5299 the parentheses. Also, accept a function declaration with just a
5300 type inside the parentheses, if this type can be positively
5301 recognised as such, or if a prefix keyword like "explicit" nails
5302 down the construct as a declaration.
5303
5304 2013-10-19 Eli Zaretskii <eliz@gnu.org>
5305
5306 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
5307 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
5308 the problem whereby selecting a menu item that leads to a
5309 minibuffer prompt moves the cursor out of the minibuffer window,
5310 making it hard to type at the prompt. Suggested by Stefan Monnier
5311 <monnier@iro.umontreal.ca>.
5312
5313 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
5314
5315 * menu-bar.el: Don't make Services menu.
5316
5317 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5318
5319 * ffap.el: Handle "/usr/include/c++/<version>" directories.
5320 (ffap-alist): Use ffap-c++-mode for c++-mode.
5321 (ffap-c++-path): New variable.
5322 (ffap-c++-mode): New function.
5323
5324 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
5325
5326 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
5327
5328 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
5329
5330 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
5331 introduced on 2013-09-08, which results in an infinite loop
5332 requesting a password.
5333
5334 2013-10-18 Glenn Morris <rgm@gnu.org>
5335
5336 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
5337
5338 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
5339
5340 Sync with upstream verilog-mode revision 1a6ecec7.
5341 * progmodes/verilog-mode.el (verilog-mode-version): Update.
5342 (verilog-mode-release-date): Remove.
5343 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
5344 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
5345 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
5346 (verilog-auto-tieoff-ignore-regexp)
5347 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
5348 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
5349 (verilog-signals-with, verilog-dir-cache-preserving)
5350 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
5351 Doc fixes.
5352 (verilog-case-fold): New option, to control case folding in
5353 regexp searches, bug597.
5354 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
5355 (verilog-string-match-fold, verilog-in-paren-count)
5356 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
5357 (verilog-at-close-struct-p): New functions.
5358 (verilog-beg-block-re-ordered, verilog-extended-case-re)
5359 (verilog-forward-sexp, verilog-set-auto-endcomments)
5360 (verilog-leap-to-case-head): Handle "unique0" case.
5361 (verilog-in-constraint-re): New constant.
5362 (verilog-keywords, verilog-type-font-keywords):
5363 Add some SystemVerilog 1800-2012 keywords.
5364 (verilog-label-be): Remove unimplemented argument, bug669.
5365 (verilog-batch-execute-func): When batch expanding clear
5366 create-lockfiles to prevent spurious user locks when a file ends
5367 up not changing.
5368 (verilog-calculate-indent, verilog-calc-1)
5369 (verilog-at-close-constraint-p, verilog-at-constraint-p)
5370 (verilog-do-indent): Fix indentation of nested constraints
5371 and structures.
5372 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
5373 (verilog-auto-inst-param): Use verilog-string-match-fold.
5374 (verilog-read-inst-module-matcher):
5375 Fix AUTOINST on gate primitives with #1.
5376 (verilog-read-decls): Fix double-declaring user-defined typed signals.
5377 Reads all user-defined typed variables.
5378 (verilog-read-defines): Fix reading definitions inside comments, bug647.
5379 (verilog-signals-matching-regexp)
5380 (verilog-signals-not-matching-regexp, verilog-auto):
5381 Respect verilog-case-fold.
5382 (verilog-diff-report): Fix line count.
5383 (verilog-auto-assign-modport): Remove unused local `modi'.
5384 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
5385 better handle multidimensional arrays.
5386 Fix packed array ports misadding bit index in AUTOINST, bug637.
5387 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
5388 to not double-declare existing outputs and inputs, respectively.
5389 (verilog-template-map): Bind U to verilog-sk-uvm-component.
5390 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
5391 (verilog-sk-uvm-component): New skeleton.
5392 (verilog-submit-bug-report): Add verilog-case-fold,
5393 remove verilog-mode-release-date.
5394
5395 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
5396
5397 * subr.el (sit-for): Call (input-pending-p t) so as to behave
5398 as before.
5399
5400 2013-10-18 Reuben Thomas <rrt@sc3d.org>
5401
5402 * textmodes/remember.el (remember): Set buffer-offer-save in
5403 remember buffers (bug#13566).
5404
5405 2013-10-18 Daniel Colascione <dancol@dancol.org>
5406
5407 When evaluating forms in ielm, direct standard output to ielm
5408 buffer. Add new ielm-return-for-effect command. Remove trailing
5409 whitespace throughout.
5410
5411 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
5412 (ielm-return-for-effect): New command.
5413 (ielm-send-input): Accept optional `for-effect' parameter.
5414 (ielm-eval-input): Accept optional `for-effect' parameter.
5415 Bind `standard-output' to stream we create using
5416 `ielm-standard-output-impl'. Suppress printing result when
5417 `for-effect'.
5418 (ielm-standard-output-impl): New function.
5419 (inferior-emacs-lisp-mode): Explain new features in documentation.
5420
5421 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
5422
5423 Code cleanup.
5424
5425 * net/tramp.el (tramp-debug-message): Do not check for connection
5426 buffer.
5427 (tramp-message): Use "vector" connection property.
5428
5429 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
5430 (tramp-equal-remote, tramp-eshell-directory-change)
5431 * net/tramp-adb.el (tramp-adb-handle-copy-file)
5432 (tramp-adb-handle-rename-file)
5433 * net/tramp-cmds.el (tramp-list-remote-buffers)
5434 (tramp-cleanup-connection, tramp-cleanup-this-connection)
5435 * net/tramp-compat.el (tramp-compat-process-running-p)
5436 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
5437 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
5438 (tramp-gvfs-handle-rename-file)
5439 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
5440 (tramp-set-file-uid-gid)
5441 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5442 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
5443 of `file-remote-p'.
5444
5445 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
5446 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
5447 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
5448 (tramp-gw-open-network-stream): Suppress unrelated traces.
5449
5450 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
5451 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
5452 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
5453 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
5454 connection property.
5455
5456 * net/tramp-cache.el (top): Suppress traces when reading
5457 persistency file.
5458
5459 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
5460 Refactor common code. Improve debug message.
5461 (tramp-maybe-open-connection)
5462 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
5463 connection buffer too early.
5464
5465 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
5466 from `tramp-smb-actions-with-acl'.
5467 (tramp-smb-actions-set-acl): New defconst.
5468 (tramp-smb-handle-copy-directory)
5469 (tramp-smb-action-get-acl): New defun, renamed from
5470 `tramp-smb-action-with-acl'.
5471 (tramp-smb-action-set-acl): New defun.
5472 (tramp-smb-handle-set-file-acl): Rewrite.
5473
5474 2013-10-17 Glenn Morris <rgm@gnu.org>
5475
5476 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
5477
5478 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
5479
5480 * skeleton.el (skeleton-newline): Remove.
5481 (skeleton-internal-1): Use (insert "\n") instead.
5482
5483 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
5484 let-bindings.
5485
5486 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
5487 forward-sexp-function while we redo its job (bug#15613).
5488
5489 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
5490
5491 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
5492 represented by lists.
5493
5494 2013-10-16 Glenn Morris <rgm@gnu.org>
5495
5496 * tmm.el (tmm--history): New dynamic variable.
5497 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
5498
5499 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
5500
5501 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
5502 (tramp-smb-errors): Add error messages.
5503 (tramp-smb-actions-with-acl): New defconst.
5504 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
5505 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
5506 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
5507 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
5508 (tramp-smb-get-stat-capability): Fix tests.
5509
5510 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
5511
5512 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
5513 (bug#15580).
5514
5515 2013-10-16 Glenn Morris <rgm@gnu.org>
5516
5517 * ansi-color.el (ansi-color-drop-regexp):
5518 Add 1J, 1K, 2K. (Bug#15617)
5519
5520 * files.el (hack-local-variables--warned-lexical): New.
5521 (hack-local-variables):
5522 Warn about misplaced lexical-binding. (Bug#15616)
5523
5524 * net/eww.el (eww-render): Always set eww-current-url,
5525 and update header line. (Bug#15622)
5526 (eww-display-html): ... Rather than just doing it here.
5527
5528 2013-10-15 Eli Zaretskii <eliz@gnu.org>
5529
5530 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
5531 menu navigations commands.
5532
5533 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
5534
5535 * progmodes/subword.el (subword-capitalize): Be careful when
5536 the search for [[:alpha:]] fails (bug#15580).
5537
5538 2013-10-14 Eli Zaretskii <eliz@gnu.org>
5539
5540 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
5541 to commands that scroll the menu.
5542
5543 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
5544
5545 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
5546 Handle methods ending with `?' and `!'.
5547
5548 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
5549
5550 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
5551 `japanese-cp932' to `cp932' to fix the problem where saving a
5552 source file written in Shift_JIS twice would end up having
5553 `coding: japanese-cp932' which Ruby could not recognize.
5554 (ruby-mode-set-encoding): Add support for encodings mapped to nil
5555 in `ruby-encoding-map'.
5556 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
5557 doesn't need to be explicitly declared in magic comment.
5558 (ruby-encoding-map): Add type declaration for better customize UI.
5559
5560 2013-10-13 Glenn Morris <rgm@gnu.org>
5561
5562 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
5563 Occur buffers are read-only. http://bugs.debian.org/720775
5564
5565 * emacs-lisp/authors.el (authors-fixed-entries):
5566 Comment out old alpha stuff.
5567
5568 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
5569
5570 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
5571 to `after-save-hook' instead of `before-save-hook'.
5572 (ruby-mode-set-encoding): Use the value of coding system used to
5573 write the file. Call `basic-save-buffer-1' after modifying the
5574 buffer.
5575
5576 2013-10-13 Alan Mackenzie <acm@muc.de>
5577
5578 Fix indentation/fontification of Java enum with
5579 "implements"/generic.
5580
5581 * progmodes/cc-engine.el (c-backward-over-enum-header):
5582 Extracted from the three other places and enhanced to handle generics.
5583 (c-inside-bracelist-p): Uses new function above.
5584 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
5585 function above.
5586 (c-font-lock-enum-tail): Uses new function above.
5587
5588 2013-10-13 Kenichi Handa <handa@gnu.org>
5589
5590 * international/mule-cmds.el (select-safe-coding-system): Remove a
5591 superfluous condition in chekcing whether a coding system is safe
5592 or not.
5593
5594 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
5595
5596 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
5597
5598 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
5599
5600 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
5601
5602 2013-10-13 Glenn Morris <rgm@gnu.org>
5603
5604 * menu-bar.el (menu-bar-update-buffers):
5605 Unify Buffers menu prompt string. (Bug#15576)
5606
5607 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
5608
5609 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
5610 Add some entries.
5611 (authors-fixed-entries): Use accented form of name.
5612
5613 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5614
5615 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
5616 method calls (bug#15594).
5617 (ruby-smie--args-separator-p): New function.
5618 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
5619 recognize paren-free method calls.
5620
5621 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
5622 internals of universal-argument.
5623
5624 2013-10-11 Eli Zaretskii <eliz@gnu.org>
5625
5626 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
5627 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
5628 dropped menu on second mouse click on the menu bar.
5629
5630 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5631
5632 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
5633 (explicit-shell-file-name): Declare.
5634 (sh--vars-before-point, sh--cmd-completion-table): New functions.
5635 (sh-completion-at-point-function): New function.
5636 (sh-mode): Use it.
5637 (sh-smie--keyword-p): Remove unused argument.
5638 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
5639 vars.
5640 (sh-set-shell): Always setup SMIE, even if we use the
5641 old indentation code.
5642
5643 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
5644
5645 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
5646 cases of ? and =.
5647 (ruby-smie-rules): Simplify the "do" rule. The cases when the
5648 predicate would return nil are almost non-existent.
5649 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
5650
5651 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
5652 cache also after commands that modify the buffer but don't move
5653 point.
5654
5655 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
5656
5657 * env.el (substitute-env-in-file-name): New function.
5658 (substitute-env-vars): Extend the meaning of the optional arg.
5659
5660 2013-10-10 Eli Zaretskii <eliz@gnu.org>
5661
5662 * term/w32-win.el (dynamic-library-alist): Define separate lists
5663 of GIF DLLs for versions before and after 5.0.0 of giflib.
5664 (Bug#15531)
5665
5666 2013-10-10 João Távora <joaotavora@gmail.com>
5667
5668 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
5669 not locked, use last revision and current source as
5670 defaults. (Bug#15569)
5671
5672 2013-10-10 Masatake YAMATO <yamato@redhat.com>
5673
5674 * menu-bar.el (menu-bar-open): Don't use popup-menu if
5675 menu-bar is hidden.
5676
5677 2013-10-10 Martin Rudalics <rudalics@gmx.at>
5678
5679 * window.el (pop-to-buffer-same-window): Fix doc-string.
5680 (Bug#15492)
5681
5682 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
5683
5684 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
5685
5686 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
5687
5688 * calendar/icalendar.el (icalendar-import-file):
5689 Fix interactive spec. (Bug#15482)
5690
5691 2013-10-10 Glenn Morris <rgm@gnu.org>
5692
5693 * desktop.el (desktop-save): Default to saving in .emacs.d,
5694 since PWD is no longer in desktop-path by default. (Bug#15319)
5695
5696 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
5697 now that text mode has a menu with the same entry.
5698 (menu-bar-text-mode-auto-fill): Remove now unused func.
5699 * textmodes/text-mode.el (text-mode-map):
5700 Use auto-fill help text from menu-bar.el.
5701
5702 2013-10-10 John Anthony <john@jo.hnanthony.com>
5703
5704 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
5705
5706 2013-10-09 Juri Linkov <juri@jurta.org>
5707
5708 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
5709 instead of this-command-keys. Add universal-argument-more and
5710 universal-argument-minus to the list of prefix commands. (Bug#15568)
5711
5712 2013-10-09 Glenn Morris <rgm@gnu.org>
5713
5714 * vc/vc-svn.el (vc-svn-create-repo):
5715 Expand paths in file://... url. (Bug#15446)
5716
5717 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
5718 Add some entries.
5719 (authors): Remove unused local variables.
5720
5721 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5722
5723 * profiler.el: Create a more coherent calltree from partial backtraces.
5724 (profiler-format): Hide the tail with `invisible' so that C-s can still
5725 find the hidden elements.
5726 (profiler-calltree-depth): Don't recurse so enthusiastically.
5727 (profiler-function-equal): New hash-table-test.
5728 (profiler-calltree-build-unified): New function.
5729 (profiler-calltree-build): Use it.
5730 (profiler-report-make-name-part): Indent the calltree less.
5731 (profiler-report-mode): Add visibility specs for profiler-format.
5732 (profiler-report-expand-entry, profiler-report-toggle-entry):
5733 Expand the whole subtree when provided with a prefix arg.
5734
5735 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
5736
5737 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
5738 iuwu-mod token.
5739 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
5740 hanging iuwu-mod token.
5741 (ruby-smie--forward-token): Do not include a dot after a token in
5742 that token.
5743 (ruby-smie--backward-token): Likewise.
5744
5745 2013-10-08 Juri Linkov <juri@jurta.org>
5746
5747 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
5748 to isearch-other-control-char.
5749 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
5750 and isearch-post-command-hook to post-command-hook.
5751 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
5752 and isearch-post-command-hook from post-command-hook.
5753 (isearch-unread-key-sequence)
5754 (isearch-reread-key-sequence-naturally)
5755 (isearch-lookup-scroll-key, isearch-other-control-char)
5756 (isearch-other-meta-char): Remove functions.
5757 (isearch-pre-command-hook, isearch-post-command-hook):
5758 New functions based on isearch-other-meta-char rewritten
5759 relying on the new behavior of overriding-terminal-local-map
5760 that does not replace the local keymaps any more. (Bug#15200)
5761
5762 2013-10-08 Eli Zaretskii <eliz@gnu.org>
5763
5764 Support menus on text-mode terminals.
5765 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
5766 functionality.
5767
5768 * tooltip.el (tooltip-mode): Don't error out on TTYs.
5769
5770 * menu-bar.el (popup-menu, popup-menu-normalize-position):
5771 Move here from mouse.el.
5772 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
5773 and arrow keys.
5774 (tty-menu-navigation-map): New map for TTY menu navigation.
5775
5776 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
5777
5778 * frame.el (display-mouse-p): Report text-mode mouse as available
5779 on w32.
5780 (display-popup-menus-p): Report availability if mouse is
5781 available; don't condition on window-system.
5782
5783 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
5784 (tty-menu-selected-face): New faces.
5785
5786 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5787
5788 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
5789 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
5790 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
5791 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
5792 New constants.
5793 (lisp-mode-variables): New `elisp' argument.
5794 (emacs-lisp-mode): Use it.
5795 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
5796 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
5797
5798 * indent.el: Use lexical-binding.
5799 (indent-region): Add progress reporter.
5800 (tab-stop-list): Make it implicitly extend to infinity by repeating the
5801 last step.
5802 (indent--next-tab-stop): New function to implement this behavior.
5803 (tab-to-tab-stop, move-to-tab-stop): Use it.
5804
5805 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
5806
5807 * indent.el (indent-rigidly--current-indentation): New function.
5808 (indent-rigidly-map): New var.
5809 (indent-rigidly): Use it to provide interactive mode (bug#8196).
5810
5811 2013-10-08 Bastien Guerry <bzg@gnu.org>
5812
5813 * register.el (insert-register): Fix 2013-10-07 change.
5814
5815 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5816
5817 * progmodes/perl-mode.el: Use lexical-binding.
5818 Remove redundant :group args.
5819 (perl-nochange): Change default to be closer to other major modes's
5820 standard behavior.
5821 (perl-indent-line): Don't consider text on current line as a
5822 valid beginning of function from which to indent.
5823
5824 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
5825 with more than one argument (bug#15538).
5826
5827 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
5828
5829 * vc/pcvs.el: Use lexical-binding.
5830 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
5831 environment of `eval'.
5832 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
5833 than a list of expressions. Adjust callers.
5834 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
5835
5836 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
5837
5838 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
5839 case of the dot in a chained method call being on the following line.
5840
5841 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5842
5843 * electric.el (electric-indent-inhibit): New var.
5844 (electric-indent-post-self-insert-function): Use it.
5845 * progmodes/python.el (python-mode): Set it.
5846
5847 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
5848 open braces.
5849
5850 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
5851
5852 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
5853 (css-mode): Use electric-indent-chars.
5854
5855 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
5856 (font-lock-beg, font-lock-end): Move before first use.
5857 (nxml-mode): Use syntax-propertize-function.
5858 (nxml-after-change, nxml-after-change1): Adjust accordingly.
5859 (nxml-extend-after-change-region): Remove.
5860 * nxml/xmltok.el: Use lexical-binding.
5861 (xmltok-save): Use `declare'.
5862 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
5863 * nxml/nxml-util.el: Use lexical-binding.
5864 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
5865 Use `declare'.
5866 * nxml/nxml-ns.el: Use lexical-binding.
5867 (nxml-ns-save): Use `declare'.
5868 (nxml-ns-prefixes-for): Avoid add-to-list.
5869 * nxml/rng-match.el: Use lexical-binding.
5870 (rng--ipattern): Use cl-defstruct.
5871 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
5872 (rng-cons-group-after, rng-subst-group-after)
5873 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
5874 Use closures instead of `(lambda...).
5875
5876 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
5877
5878 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
5879 of BEG and END.
5880
5881 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
5882 Use `tramp-handle-insert-file-contents'.
5883 (tramp-gvfs-handle-insert-file-contents): Remove function.
5884
5885 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
5886 Use `save-restriction' in order to keep markers.
5887
5888 * net/trampver.el: Update release number.
5889
5890 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5891
5892 * progmodes/compile.el (compilation-parse-errors):
5893 Use compilation--put-prop.
5894 (compilation--ensure-parse): Check compilation-multiline.
5895
5896 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
5897
5898 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
5899 lexical-binding.
5900
5901 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
5902
5903 * progmodes/ruby-mode.el: Fix recently added tests.
5904 (ruby-smie-grammar): Add - and +.
5905 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
5906 (ruby-smie--backward-id): New functions.
5907 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
5908 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
5909 any more.
5910
5911 2013-10-07 Leo Liu <sdl.web@gmail.com>
5912
5913 * register.el (register-preview-delay)
5914 (register-preview-functions): New variables.
5915 (register-read-with-preview, register-preview)
5916 (register-describe-oneline): New functions.
5917 (point-to-register, window-configuration-to-register)
5918 (frame-configuration-to-register, jump-to-register)
5919 (number-to-register, view-register, insert-register)
5920 (copy-to-register, append-to-register, prepend-to-register)
5921 (copy-rectangle-to-register): Use register-read-with-preview to
5922 read register. (Bug#15525)
5923
5924 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
5925
5926 * net/network-stream.el (network-stream-open-starttls): Don't add
5927 --insecure if it's already present, because that gnutls-cli
5928 rejects getting that parameter twice.
5929
5930 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
5931
5932 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
5933 keyword, too.
5934
5935 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
5936
5937 * newcomment.el (comment-use-global-state): Change default value
5938 to t, mark obsolete (Bug#15251).
5939 (comment-beginning): In addition to `comment-to-syntax', check the
5940 value of `comment-use-global-state'.
5941
5942 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
5943
5944 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
5945 (ruby-comment-column): Follow the global default, by default.
5946 (ruby-smie-grammar): Add assignment syntax.
5947 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
5948 open-paren, a comma, or a \.
5949 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
5950 and line continuations.
5951 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
5952 followed by implicit semi-colons. Add rule for string concatenation
5953 and for indentation at BOB.
5954 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
5955
5956 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
5957 calling next-sexp, since next-token may have skipped chars which
5958 next-sexp doesn't know should be skipped!
5959
5960 2013-10-05 Leo Liu <sdl.web@gmail.com>
5961
5962 * progmodes/octave.el (octave-send-region):
5963 Call compilation-forget-errors.
5964
5965 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
5966
5967 * vc/vc-svn.el (vc-svn-find-admin-dir):
5968 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
5969 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
5970 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
5971 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
5972
5973 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
5974
5975 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
5976
5977 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
5978
5979 * subr.el (read-passwd): Hide chars even when called within a context
5980 where after-change-functions is disabled (bug#15501).
5981 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
5982 until we removed ourself from overriding-terminal-local-map.
5983
5984 2013-10-04 Leo Liu <sdl.web@gmail.com>
5985
5986 * progmodes/octave.el (inferior-octave-mode):
5987 Call compilation-forget-errors.
5988
5989 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
5990
5991 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
5992
5993 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
5994
5995 * net/secrets.el (secrets-create-collection): Add optional
5996 argument ALIAS. Use proper Label keyword. Append ALIAS as
5997 dbus-call-method argument. (Bug#15516)
5998
5999 2013-10-04 Leo Liu <sdl.web@gmail.com>
6000
6001 * progmodes/octave.el (inferior-octave-error-regexp-alist)
6002 (inferior-octave-compilation-font-lock-keywords): New variables.
6003 (compilation-error-regexp-alist)
6004 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
6005 (inferior-octave-mode): Use compilation-shell-minor-mode.
6006
6007 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
6008
6009 * minibuffer.el (completion--replace): Be careful that `end' might be
6010 a marker.
6011
6012 2013-10-03 Daiki Ueno <ueno@gnu.org>
6013
6014 Add support for package signature checking.
6015 * emacs-lisp/package.el (url-http-file-exists-p)
6016 (epg-make-context, epg-context-set-home-directory)
6017 (epg-verify-string, epg-context-result-for)
6018 (epg-signature-status, epg-signature-to-string)
6019 (epg-check-configuration, epg-configuration)
6020 (epg-import-keys-from-file): Declare.
6021 (package-check-signature): New user option.
6022 (package-unsigned-archives): New user option.
6023 (package-desc): Add `signed' field.
6024 (package-load-descriptor): Set `signed' field if .signed file exists.
6025 (package--archive-file-exists-p): New function.
6026 (package--check-signature): New function.
6027 (package-install-from-archive): Check package signature.
6028 (package--download-one-archive): Check archive signature.
6029 (package-delete): Remove .signed file.
6030 (package-import-keyring): New command.
6031 (package-refresh-contents): Import default keyring.
6032 (package-desc-status): Add "unsigned" status.
6033 (describe-package-1, package-menu--print-info)
6034 (package-menu-mark-delete, package-menu--find-upgrades)
6035 (package-menu--status-predicate): Support "unsigned" status.
6036
6037 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6038
6039 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
6040 the new compilation scheme using the new byte-codes.
6041
6042 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
6043 (byte-pophandler): New byte codes.
6044 (byte-goto-ops): Adjust accordingly.
6045 (byte-compile--use-old-handlers): New var.
6046 (byte-compile-catch): Use new byte codes depending on
6047 byte-compile--use-old-handlers.
6048 (byte-compile-condition-case--old): Rename from
6049 byte-compile-condition-case.
6050 (byte-compile-condition-case--new): New function.
6051 (byte-compile-condition-case): New function that dispatches depending
6052 on byte-compile--use-old-handlers.
6053 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
6054 when we can.
6055
6056 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6057 Optimize under `condition-case' and `catch' if
6058 byte-compile--use-old-handlers is nil.
6059 (disassemble-offset): Handle new bytecodes.
6060
6061 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6062
6063 * subr.el (error): Use `declare'.
6064 (decode-char, encode-char): Use advertised-calling-convention instead
6065 of the docstring to discourage use of the `restriction' arg.
6066
6067 2013-10-03 Daiki Ueno <ueno@gnu.org>
6068
6069 * epg.el (epg-verify-file): Add a comment saying that it does not
6070 notify verification error as a return value nor a signal.
6071 (epg-verify-string): Ditto.
6072
6073 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6074
6075 * progmodes/compile.el (compilation-start): Try globbing the arg to
6076 `cd' (bug#15417).
6077
6078 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
6079
6080 Sync with Tramp 2.2.8.
6081
6082 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
6083 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
6084 * net/trampver.el: Update release number.
6085
6086 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
6087
6088 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
6089 and default-process-coding-system for darwin only.
6090
6091 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6092
6093 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
6094
6095 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
6096
6097 * vc/vc-git.el (vc-git-grep): Disable pager.
6098
6099 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
6100
6101 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
6102 Use :url instead of :homepage, as per
6103 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
6104
6105 * newcomment.el (comment-beginning): When `comment-use-syntax' is
6106 non-nil, use `syntax-ppss' (Bug#15251).
6107
6108 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6109
6110 * progmodes/octave.el (inferior-octave-startup-file):
6111 Prefer ~/.emacs.d/init_octave.m.
6112
6113 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
6114
6115 * emacs-lisp/package.el (package-desc-from-define):
6116 Accept additional arguments as plist, convert them to an alist and store
6117 them in the `extras' slot.
6118 (package-generate-description-file): Convert extras alist back to
6119 plist and append to the `define-package' form arguments.
6120 (package--alist-to-plist): New function.
6121 (package--ac-desc): Add `extras' slot.
6122 (package--add-to-archive-contents): Check if the archive-contents
6123 vector is long enough, and if it is, pass its `extras' slot value
6124 to `package-desc-create'.
6125 (package-buffer-info): Call `lm-homepage', pass the returned value
6126 to `package-desc-from-define'.
6127 (describe-package-1): Render the homepage button (Bug#13291).
6128
6129 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6130 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
6131
6132 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
6133
6134 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
6135 and default-process-coding-system to utf-8-unix (Bug#15402).
6136
6137 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
6138
6139 * subr.el (looking-back): Do not recommend using looking-back.
6140
6141 2013-09-28 Alan Mackenzie <acm@muc.de>
6142
6143 Fix indentation/fontification of Java enum with "implements".
6144
6145 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
6146 regexp which matches "implements", etc., in Java.
6147 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
6148 specifier clauses coming after "enum".
6149 * progmodes/cc-fonts.el (c-font-lock-declarations)
6150 (c-font-lock-enum-tail): Check for extra specifier clauses coming
6151 after "enum".
6152
6153 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
6154
6155 * faces.el (region): Change ns_selection_color to
6156 ns_selection_fg_color, add ns_selection_bg_color.
6157
6158 2013-09-28 Leo Liu <sdl.web@gmail.com>
6159
6160 * progmodes/octave.el (inferior-octave-completion-table)
6161 (inferior-octave-completion-at-point): Minor tweaks.
6162
6163 * textmodes/ispell.el (ispell-lookup-words): Rename from
6164 lookup-words. (Bug#15460)
6165 (lookup-words): Obsolete.
6166 (ispell-complete-word, ispell-command-loop): All uses changed.
6167
6168 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6169
6170 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
6171 (octave-mode-menu): Add octave-send-buffer.
6172 (octave-send-buffer): New function.
6173
6174 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6175
6176 * progmodes/octave.el (octave-mode-map): Add key binding for
6177 octave-lookfor.
6178 (octave-mode-menu): Add octave-lookfor.
6179 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
6180 octave-lookfor.
6181 (octave-lookfor): New function.
6182
6183 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6184
6185 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
6186 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
6187 its convention.
6188 (cl--loop-set-iterator-function): New function.
6189 (cl-loop): Adjust accordingly, so as not to use cl-subst.
6190 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
6191 Bind `it' with `let' instead of substituting it with `cl-subst'.
6192 (cl--unused-var-p): New function.
6193 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
6194 Eliminate some unused variable warnings (bug#15326).
6195
6196 2013-09-27 Tassilo Horn <tsdh@gnu.org>
6197
6198 * doc-view.el (doc-view-scale-reset): Rename from
6199 `doc-view-reset-zoom-level'.
6200 (doc-view-scale-adjust): New command.
6201 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
6202 `doc-view-scale-adjust'.
6203
6204 2013-09-26 Tassilo Horn <tsdh@gnu.org>
6205
6206 * doc-view.el (doc-view-reset-zoom-level): New command.
6207 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
6208 zoom commands (bug#15466).
6209
6210 2013-09-26 Kenichi Handa <handa@gnu.org>
6211
6212 * international/quail.el (quail-help): Make it not a command.
6213
6214 2013-09-26 Leo Liu <sdl.web@gmail.com>
6215
6216 * minibuffer.el (completion-all-sorted-completions): Make args
6217 optional as they are.
6218
6219 2013-09-25 Daniel Colascione <dancol@dancol.org>
6220
6221 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
6222 specs are and that they're not evaluated.
6223
6224 2013-09-24 Sam Steingold <sds@gnu.org>
6225
6226 * midnight.el (clean-buffer-list-kill-regexps)
6227 (clean-buffer-list-kill-buffer-names): Update for the new Man
6228 buffer naming which includes the object name.
6229
6230 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6231
6232 * eshell/esh-cmd.el (eshell--sep-terms): New var.
6233 (eshell-parse-command, eshell-parse-pipeline): Use it since
6234 eshell-separate-commands requires a dynamic scoped var.
6235 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
6236
6237 2013-09-23 Leo Liu <sdl.web@gmail.com>
6238
6239 * autoinsert.el (auto-insert-alist): Make the value of
6240 lexical-binding match its file setting.
6241
6242 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
6243
6244 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
6245
6246 * autoarg.el (autoarg-kp-digit-argument):
6247 * electric.el (Electric-command-loop):
6248 * kmacro.el (kmacro-step-edit-insert):
6249 Do not set universal-argument-num-events.
6250
6251 2013-09-22 Leo Liu <sdl.web@gmail.com>
6252
6253 * files.el (interpreter-mode-alist): Add octave.
6254
6255 2013-09-21 Alan Mackenzie <acm@muc.de>
6256
6257 C++: fontify identifier in declaration following "public:" correctly.
6258 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
6259 to match "public", etc.
6260 (c-decl-prefix-re): Add ":" into the C++ value.
6261 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
6262 bit. Add a check for a ":" preceded by "public", etc.
6263
6264 2013-09-21 Eli Zaretskii <eliz@gnu.org>
6265
6266 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
6267 recognized by GDB 7.5 and later.
6268
6269 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
6270
6271 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
6272
6273 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6274
6275 * subr.el (internal--call-interactively): New const.
6276 (called-interactively-p): Use it (bug#3984).
6277
6278 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
6279
6280 * vc/pcvs.el (cvs-mode-ignore):
6281 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
6282 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
6283
6284 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6285
6286 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
6287 (eshell-ls-orig-insert-directory): Remove.
6288 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
6289 (eshell-ls-use-in-dired): Use advice-add/remove.
6290 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
6291 Add `orig-fun' arg for use in :around advice.
6292 Make it check (redundantly) eshell-ls-use-in-dired.
6293
6294 2013-09-19 Glenn Morris <rgm@gnu.org>
6295
6296 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
6297
6298 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
6299
6300 * emacs-lisp/eieio.el (class-parent): Undo previous change.
6301
6302 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
6303
6304 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
6305 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
6306 (tramp-get-remote-python): New defuns.
6307 (tramp-get-remote-uid-with-perl)
6308 (tramp-get-remote-gid-with-perl): New defuns. Perl code
6309 contributed by yary <not.com@gmail.com> (tiny change).
6310 (tramp-get-remote-uid-with-python)
6311 (tramp-get-remote-gid-with-python): New defuns. Python code
6312 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
6313 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
6314
6315 2013-09-19 Glenn Morris <rgm@gnu.org>
6316
6317 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
6318
6319 * eshell/em-unix.el (eshell-remove-entries):
6320 Rename argument to avoid name-clash with global `top-level'.
6321
6322 * eshell/esh-proc.el (eshell-kill-process-function):
6323 Remove eshell-reset-after-proc from eshell-kill-hook if present.
6324 (eshell-reset-after-proc): Remove unused arg `proc'.
6325
6326 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
6327 (directory-files-and-attributes): Mark unused arg.
6328
6329 * eshell/em-unix.el (eshell-remove-entries):
6330 Remove unused arg `path'. Update callers.
6331
6332 * eshell/em-hist.el (eshell-hist-parse-arguments):
6333 Remove unused arg `silent'. Update callers.
6334
6335 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
6336 Fix (f)boundp mix-up.
6337
6338 * eshell/em-smart.el (eshell-smart-scroll-window)
6339 (eshell-disable-after-change):
6340 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
6341
6342 2013-09-18 Alan Mackenzie <acm@muc.de>
6343
6344 Fix fontification of type when followed by "const".
6345 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
6346 "known" types from fontification.
6347
6348 2013-09-18 Glenn Morris <rgm@gnu.org>
6349
6350 * emacs-lisp/chart.el (x-display-color-cells): Declare.
6351 (chart-face-list): Drop Emacsen without display-color-p.
6352
6353 * net/eww.el (libxml-parse-html-region): Declare.
6354 (eww-display-html): Explicit error if no libxml2 support.
6355
6356 * doc-view.el (doc-view-mode): Silence --without-x compilation.
6357
6358 * image.el (image-type-from-buffer, image-multi-frame-p):
6359 Remove --without-x warning/error.
6360
6361 * mouse.el (mouse-yank-primary):
6362 * term.el (term-mouse-paste):
6363 Reorder to silence --without-x compilation.
6364
6365 * mpc.el (doc-view-mode): Silence --without-x compilation.
6366
6367 * mail/rmailmm.el (rmail-mime-set-bulk-data):
6368 Silence --without-x compilation.
6369
6370 * progmodes/gud.el (gud-find-file, gud-mode):
6371 Silence --without-x compilation.
6372 (tooltip-mode): Declare.
6373
6374 * wdired.el (dired-backup-overwrite): Remove declaration.
6375 (wdired-mode-map): Add doc string.
6376
6377 * custom.el (x-get-resource): Declare.
6378
6379 * eshell/em-glob.el (ange-cache):
6380 * eshell/em-unix.el (ange-cache): Declare.
6381
6382 * faces.el (x-display-list, x-open-connection, x-get-resource):
6383 Declare.
6384
6385 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
6386 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
6387 Declare.
6388
6389 * frame.el (x-display-grayscale-p, x-display-name): Declare.
6390
6391 * net/gnutls.el (gnutls-log-level): Declare.
6392
6393 * net/shr.el (image-size, image-animate): Declare.
6394
6395 * simple.el (font-info): Declare.
6396
6397 * subr.el (x-popup-dialog): Declare.
6398
6399 * term/common-win.el (x-select-enable-primary)
6400 (x-last-selected-text-primary, x-last-selected-text-clipboard):
6401 Declare.
6402
6403 * term/ns-win.el (x-handle-args): Declare.
6404
6405 * term/x-win.el (x-select-enable-clipboard): Declare.
6406
6407 * term/w32-win.el (create-default-fontset): Declare.
6408
6409 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
6410 Declare.
6411
6412 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
6413 (fit-frame-to-buffer): Explicit error if --without-x.
6414 (mouse-autoselect-window-select): Silence compiler.
6415
6416 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
6417
6418 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
6419 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
6420 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
6421 * eshell/esh-util.el (eshell-sublist):
6422 Remove unused local variables.
6423
6424 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
6425
6426 * textmodes/two-column.el: Make 2C-split work for --without-x.
6427 (scroll-bar-columns): Autoload.
6428 (top-level): Require fringe when compiling.
6429
6430 2013-09-18 Leo Liu <sdl.web@gmail.com>
6431
6432 * subr.el (add-hook): Robustify to handle closure as well.
6433
6434 2013-09-17 Glenn Morris <rgm@gnu.org>
6435
6436 * simple.el (messages-buffer-mode-map): Unbind "g".
6437
6438 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6439
6440 * help-mode.el (help-mode-finish): Use derived-mode-p.
6441 Remove obsolete highlighting.
6442
6443 * play/life.el (life-mode): Use define-derived-mode. Derive from
6444 special-mode.
6445 (life): Let-bind inhibit-read-only.
6446 (life-setup): Avoid `setq'. Use `life-mode'.
6447
6448 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
6449 which should not be needed any more.
6450 (package-menu-refresh, package-menu-describe-package): Use user-error.
6451
6452 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
6453 (eshell-post-rewrite-command-hook): Make obsolete.
6454 (eshell-parse-command): Simplify.
6455 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
6456 (eshell--cmd): Declare.
6457 (eshell-parse-pipeline): Remove unused var `final-p'.
6458 Pass a dynvar to eshell-post-rewrite-command-hook.
6459 Implement the new eshell-post-rewrite-command-function.
6460 (eshell-invoke-directly): Remove unused arg `input'.
6461 * eshell/esh-io.el (eshell-io-initialize):
6462 Use eshell-post-rewrite-command-function (bug#15399).
6463 (eshell--apply-redirections): Rename from eshell-apply-redirections;
6464 adjust to new calling convention.
6465 (eshell-create-handles): Rename args to avoid clashing with dynvar
6466 `standard-output'.
6467
6468 2013-09-17 Glenn Morris <rgm@gnu.org>
6469
6470 * simple.el (messages-buffer-mode): New major mode.
6471 (messages-buffer): New function.
6472 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
6473 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
6474 (ert-run-test): Use `messages-buffer' function.
6475 (ert--force-message-log-buffer-truncation): Ignore read-only.
6476 * help.el (view-echo-area-messages): Use `messages-buffer' function.
6477 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
6478
6479 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6480
6481 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
6482
6483 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
6484
6485 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
6486
6487 * icomplete.el (icomplete-in-buffer): New var.
6488 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
6489 vars and replace them with functions.
6490 (icomplete-minibuffer-setup): Adjust accordingly.
6491 (icomplete--completion-table, icomplete--completion-predicate)
6492 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
6493 New functions.
6494 (icomplete-forward-completions, icomplete-backward-completions)
6495 (icomplete-simple-completing-p, icomplete-exhibit)
6496 (icomplete-completions): Use them.
6497 (icomplete--in-region-buffer): New var.
6498 (icomplete--in-region-setup): New function.
6499 (icomplete-mode): Use it.
6500
6501 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
6502 (bug#15379).
6503 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
6504 return args and options.
6505 (eshell-eval-using-options): Use the new return value of
6506 eshell--do-opts to set the options's vars in their scope.
6507 (eshell--set-option): Rename from eshell-set-option.
6508 Add arg `opt-vals'.
6509 (eshell--process-option): Rename from eshell-process-option.
6510 Add arg `opt-vals'.
6511 (eshell--process-args): Use an `opt-vals' alist to store the options's
6512 values during their processing and return them additionally to the
6513 remaining args.
6514
6515 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
6516
6517 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
6518 continuation character an operator, as far as indentation is
6519 concerned (Bug#15369).
6520
6521 2013-09-15 Martin Rudalics <rudalics@gmx.at>
6522
6523 * window.el (window--state-put-2): Don't process buffer state
6524 when buffer doesn't exist any more (Bug#15382).
6525
6526 2013-09-15 Glenn Morris <rgm@gnu.org>
6527
6528 * eshell/em-unix.el (eshell/rm):
6529 Make -f ignore missing files. (Bug#15373)
6530
6531 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
6532 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
6533 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
6534
6535 2013-09-14 Glenn Morris <rgm@gnu.org>
6536
6537 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
6538
6539 2013-09-13 Glenn Morris <rgm@gnu.org>
6540
6541 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
6542 (dired-guess-default): Make `file' available in the env. (Bug#15363)
6543
6544 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
6545
6546 * frame.el (x-focus-frame): Mark as declared in frame.c.
6547
6548 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6549
6550 * ls-lisp.el: Use advice-add.
6551 (original-insert-directory): Remove.
6552 (ls-lisp--insert-directory): Rename from insert-directory; add
6553 `orig-fun' argument.
6554 (insert-directory): Advise.
6555
6556 2013-09-13 Eli Zaretskii <eliz@gnu.org>
6557
6558 * term.el (term-emulate-terminal): Decode the command string
6559 before passing it to term-command-hook. (Bug#15337)
6560
6561 2013-09-13 Glenn Morris <rgm@gnu.org>
6562
6563 * eshell/esh-util.el (ange-cache): Move declaration earlier.
6564
6565 * eshell/esh-ext.el (eshell-search-path): Declare.
6566
6567 * eshell/em-prompt.el (eshell/pwd): Autoload it.
6568 Otherwise an error occurs if eshell-dirs module not loaded.
6569
6570 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
6571
6572 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
6573
6574 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
6575 `tramp-check-proper-host'. Check for a valid method name.
6576
6577 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6578 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
6579 * net/tramp-sh.el (tramp-maybe-open-connection):
6580 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
6581
6582 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
6583 also for hash values.
6584
6585 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6586
6587 * term/ns-win.el (parameters): Don't declare as dynamic.
6588 (before-make-frame-hook): Don't add ineffective function.
6589
6590 * eshell/*.el: Use lexical-binding (bug#15231).
6591
6592 2013-09-12 Kenichi Handa <handa@gnu.org>
6593
6594 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
6595
6596 2013-09-12 Glenn Morris <rgm@gnu.org>
6597
6598 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
6599 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
6600
6601 * subr.el (do-after-load-evaluation): Also give compiler warnings
6602 when obsolete files are used (except by obsolete files).
6603
6604 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
6605 in the status output, assume `filename' is the first. (Bug#15322)
6606
6607 * vc/vc.el (vc-deduce-fileset): Doc fix.
6608
6609 * calc/calc-help.el (Info-goto-node):
6610 * progmodes/cperl-mode.el (Info-find-node):
6611 * vc/ediff.el (Info-goto-node): Update declarations.
6612
6613 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
6614
6615 * vc/vc-bzr.el (vc-compilation-mode): Declare.
6616 (vc-bzr-pull): Require vc-dispatcher.
6617 * vc/vc-git.el (vc-compilation-mode): Declare.
6618 (vc-git-pull): Require vc-dispatcher.
6619
6620 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
6621
6622 * progmodes/octave.el (help-button-action): Declare.
6623
6624 * shell.el (shell-directory-tracker): Output error as a message
6625 rather than just returning it as a string.
6626 (shell-process-pushd): Remove useless use of message.
6627
6628 * dframe.el (dframe-timer-fn):
6629 * files.el (dir-locals-read-from-file):
6630 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
6631 (mpc-format):
6632 * reveal.el (reveal-post-command):
6633 * saveplace.el (load-save-place-alist-from-file):
6634 * shell.el (shell-resync-dirs):
6635 * w32-common-fns.el (x-get-selection-value):
6636 * emacs-lisp/copyright.el (copyright-find-copyright):
6637 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
6638 * emulation/tpu-edt.el (tpu-copy-keyfile):
6639 * play/bubbles.el (bubbles--mark-neighbourhood):
6640 * progmodes/executable.el
6641 (executable-make-buffer-file-executable-if-script-p):
6642 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
6643
6644 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6645
6646 Cleanup Eshell to rely less on dynamic scoping.
6647 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
6648 last-value, and ext-command here. Bind `args' closer to `body'.
6649 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
6650 (eshell--args): Declare new dynamic var.
6651 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
6652 last-value, and ext-command. Pass `args' to `body'.
6653 (eshell-process-args): Bind eshell--args.
6654 (eshell-set-option): Use eshell--args.
6655 * eshell/eshell.el (eshell): Use derived-mode-p.
6656 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
6657 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
6658 (eshell-glob-function): Declare.
6659 * eshell/esh-util.el: Require cl-lib.
6660 (eshell-read-hosts-file): Avoid add-to-list.
6661 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
6662 `err'.
6663 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
6664 Declare.
6665 (eshell/diff): Remove unused var `err'.
6666 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
6667 `killflag'.
6668 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
6669 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
6670 first use.
6671 * eshell/em-glob.el (eshell-glob-matches, message-shown):
6672 Move declaration before first use.
6673 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
6674 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
6675 rely on cl-return.
6676
6677 2013-09-12 Glenn Morris <rgm@gnu.org>
6678
6679 * term/ns-win.el (global-map): Remove binding for ispell-next,
6680 deleted 1999-05-29. (Bug#15357)
6681
6682 2013-09-11 Glenn Morris <rgm@gnu.org>
6683
6684 * echistory.el (electric-command-history): Remove call to deleted func.
6685
6686 * play/landmark.el (landmark-mode): Fix typos.
6687
6688 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
6689 Check cvs-sort-ignore-file is bound.
6690
6691 * savehist.el: No need for cl when compiling on Emacs.
6692
6693 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
6694
6695 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
6696 (bug#15338).
6697 (eshell-self-insert-command, eshell-send-invisible):
6698 Remove unused argument.
6699 (eshell-handle-control-codes): Remove unused var `orig'.
6700 Avoid delete-backward-char.
6701
6702 * files.el (set-auto-mode): Simplify a bit further.
6703
6704 2013-09-11 Glenn Morris <rgm@gnu.org>
6705
6706 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
6707 (set-auto-mode): Don't regexp-quote elements.
6708 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
6709 * progmodes/cc-mode.el (interpreter-mode-alist):
6710 * progmodes/ruby-mode.el (interpreter-mode-alist):
6711 Revert previous change.
6712
6713 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
6714
6715 * play/snake.el (snake-mode):
6716 * play/mpuz.el (mpuz-mode):
6717 * play/landmark.el (lm-mode):
6718 * play/blackbox.el (blackbox-mode):
6719 * play/5x5.el (5x5-mode):
6720 * obsolete/options.el (Edit-options-mode):
6721 * net/quickurl.el (quickurl-list-mode):
6722 * net/newst-treeview.el (newsticker-treeview-mode):
6723 * mail/rmailsum.el (rmail-summary-mode):
6724 * mail/mspools.el (mspools-mode):
6725 * locate.el (locate-mode):
6726 * ibuffer.el (ibuffer-mode):
6727 * emulation/ws-mode.el (wordstar-mode):
6728 * emacs-lisp/debug.el (debugger-mode):
6729 * array.el (array-mode):
6730 * net/eudc.el (eudc-mode): Use define-derived-mode.
6731 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
6732 Move initialization into declaration.
6733 (mairix-searches-mode): Use define-derived-mode.
6734 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
6735 (eudc-edit-hotlist): Use dolist.
6736 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
6737 (Man-mode): Use define-derived-mode.
6738 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
6739 (Info-edit-mode): Use define-derived-mode.
6740 (Info-cease-edit): Use Info-mode.
6741 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
6742 into declaration.
6743 (eshell-mode): Use define-derived-mode.
6744 * chistory.el (command-history-mode-map): Rename from
6745 command-history-map.
6746 (command-history-mode): Use define-derived-mode.
6747 (Command-history-setup): Remove function.
6748 * calc/calc.el (calc-trail-mode-map): New var.
6749 (calc-trail-mode): Use define-derived-mode.
6750 (calc-trail-buffer): Set calc-main-buffer manually.
6751 * bookmark.el (bookmark-insert-annotation): New function.
6752 (bookmark-edit-annotation): Use it.
6753 (bookmark-edit-annotation-mode): Make it a proper major mode.
6754 (bookmark-send-edited-annotation): Use derived-mode-p.
6755 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
6756 closer to its ideal place. Use \' to match EOS.
6757
6758 * profiler.el (profiler-calltree-find): Use function-equal.
6759
6760 2013-09-10 Glenn Morris <rgm@gnu.org>
6761
6762 * files.el (interpreter-mode-alist): Convert to regexps.
6763 (set-auto-mode): Adapt for this. (Bug#15306)
6764 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
6765 Comment out unused variable.
6766 * progmodes/cc-mode.el (interpreter-mode-alist):
6767 * progmodes/python.el (interpreter-mode-alist):
6768 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
6769 * progmodes/sh-script.el (sh-set-shell):
6770 No longer use interpreter-mode-alist to get list of shells.
6771
6772 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
6773
6774 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6775
6776 * simple.el: Use set-temporary-overlay-map for universal-argument.
6777 (universal-argument-map): Don't use default-bindings (bug#15317).
6778 Bind switch-frame explicitly. Replace universal-argument-minus with
6779 a conditional binding.
6780 (universal-argument-num-events, saved-overriding-map): Remove.
6781 (restore-overriding-map): Remove.
6782 (universal-argument--mode): Rename from save&set-overriding-map,
6783 and rewrite.
6784 (universal-argument, universal-argument-more, negative-argument)
6785 (digit-argument): Adjust accordingly.
6786 (universal-argument-minus): Remove.
6787 (universal-argument-other-key): Remove.
6788
6789 * subr.el (with-demoted-errors): Add `format' argument.
6790
6791 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
6792
6793 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
6794 `tramp-cleanup-connection'.
6795
6796 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
6797 parameters KEEP-DEBUG and KEEP-PASSWORD.
6798
6799 * net/tramp.el (tramp-file-name-handler):
6800 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6801 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
6802 (tramp-maybe-open-connection):
6803 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
6804 Use `tramp-cleanup-connection'.
6805
6806 * net/tramp-sh.el (tramp-maybe-open-connection):
6807 Catch 'uname-changed inside the progress reporter.
6808
6809 2013-09-10 Glenn Morris <rgm@gnu.org>
6810
6811 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
6812
6813 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
6814 returns "alternate access method" in mode (eg "-rw-r--r--.").
6815
6816 2013-09-08 Glenn Morris <rgm@gnu.org>
6817
6818 * saveplace.el (load-save-place-alist-from-file):
6819 Demote errors. (Bug#15305)
6820
6821 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
6822
6823 Improve compatibility with older Emacsen, and XEmacs.
6824
6825 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
6826 only if it is bound. It isn't for XEmacs.
6827 (with-tramp-progress-reporter): Do not let-bind `result'.
6828 This yields to scoping errors in XEmacs.
6829 (tramp-handle-make-auto-save-file-name): New function, moved from
6830 tramp-sh.el.
6831
6832 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
6833 for `make-auto-save-file-name'.
6834 (tramp-adb--gnu-switches-to-ash):
6835 Use `tramp-compat-replace-regexp-in-string'.
6836
6837 * net/tramp-cache.el (tramp-cache-print): Call
6838 `substring-no-properties' only if it is bound. It isn't for XEmacs.
6839
6840 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
6841 bound. It isn't for XEmacs.
6842
6843 * net/tramp-compat.el (tramp-compat-copy-file):
6844 Catch `wrong-number-of-arguments' error.
6845 (tramp-compat-replace-regexp-in-string): New defun.
6846
6847 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
6848 for `make-auto-save-file-name'.
6849 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
6850 `copy-file'.
6851 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
6852 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
6853 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
6854
6855 * net/tramp-gw.el (tramp-gw-open-network-stream):
6856 Use `tramp-compat-replace-regexp-in-string'.
6857
6858 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6859 Call `tramp-handle-make-auto-save-file-name'.
6860 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
6861 (tramp-sh-file-gvfs-monitor-dir-process-filter)
6862 (tramp-sh-file-inotifywait-process-filter):
6863 Use `tramp-compat-replace-regexp-in-string'.
6864 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
6865
6866 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
6867 for `make-auto-save-file-name'.
6868 (tramp-smb-handle-copy-directory):
6869 Call `tramp-compat-replace-regexp-in-string'.
6870 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
6871 (tramp-smb-handle-copy-file): Improve error message.
6872 (tramp-smb-handle-rename-file): Rename directly only in case
6873 `newname' does not exist yet. This is a restriction of smbclient.
6874 (tramp-smb-maybe-open-connection): Rerun the function only when
6875 `auth-sources' is non-nil.
6876
6877 2013-09-08 Kenichi Handa <handa@gnu.org>
6878
6879 * international/characters.el: Set category "^" (Combining) for
6880 more characters.
6881
6882 2013-09-07 Alan Mackenzie <acm@muc.de>
6883
6884 Correctly fontify Java class constructors.
6885 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
6886 in Java Mode.
6887 (c-recognize-typeless-decls): Set the Java value to t.
6888 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
6889 While handling a "(", add a check for, effectively, Java, and handle a
6890 "typeless" declaration there.
6891
6892 2013-09-07 Roland Winkler <winkler@gnu.org>
6893
6894 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
6895 field subtitle for entry type book.
6896
6897 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6898
6899 * minibuffer.el: Make minibuffer-complete call completion-in-region
6900 rather than other way around.
6901 (completion--some, completion-pcm--find-all-completions):
6902 Don't delay signals when debugging.
6903 (minibuffer-completion-contents): Beware fields within the
6904 minibuffer contents.
6905 (completion-all-sorted-completions): Use defvar-local.
6906 (completion--do-completion, completion--cache-all-sorted-completions)
6907 (completion-all-sorted-completions, minibuffer-force-complete):
6908 Add args `beg' and `end'.
6909 (completion--in-region-1): New fun, extracted from minibuffer-complete.
6910 (minibuffer-complete): Use completion-in-region.
6911 (completion-complete-and-exit): New fun, extracted from
6912 minibuffer-complete-and-exit.
6913 (minibuffer-complete-and-exit): Use it.
6914 (completion--complete-and-exit): Rename from
6915 minibuffer--complete-and-exit.
6916 (completion-in-region--single-word): New function, extracted from
6917 minibuffer-complete-word.
6918 (minibuffer-complete-word): Use it.
6919 (display-completion-list): Make `common-substring' argument obsolete.
6920 (completion--in-region): Call completion--in-region-1 instead of
6921 minibuffer-complete.
6922 (completion-help-at-point): Pass boundaries to
6923 minibuffer-completion-help as args rather than via an overlay.
6924 (completion-pcm--string->pattern): Use `any-delim'.
6925 (completion-pcm--optimize-pattern): New function.
6926 (completion-pcm--pattern->regex): Handle `any-delim'.
6927 * icomplete.el (icomplete-forward-completions)
6928 (icomplete-backward-completions, icomplete-completions):
6929 Adjust calls to completion-all-sorted-completions and
6930 completion--cache-all-sorted-completions.
6931 (icomplete-with-completion-tables): Default to t.
6932 * emacs-lisp/crm.el (crm--current-element): Rename from
6933 crm--select-current-element. Don't put an overlay but return the
6934 boundaries instead.
6935 (crm--completion-command): Take two new args to bind to the boundaries.
6936 (crm-completion-help): Adjust accordingly.
6937 (crm-complete): Use completion-in-region.
6938 (crm-complete-word): Use completion-in-region--single-word.
6939 (crm-complete-and-exit): Use completion-complete-and-exit.
6940
6941 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6942
6943 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
6944 than dynamically.
6945
6946 2013-09-06 Juri Linkov <juri@jurta.org>
6947
6948 * info.el (Info-display-images-node): When image file doesn't exist
6949 display text version of the image if it's provided in the Info file.
6950 Otherwise, display the location of missing image from SRC attribute.
6951 Add help-echo text property from ALT attribute. (Bug#15279)
6952
6953 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6954
6955 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
6956 (edit-abbrevs-mode): Use define-derived-mode.
6957
6958 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
6959 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
6960 that it's defined.
6961 (epa-key-list-mode, epa-key-mode, epa-info-mode):
6962 Use define-derived-mode.
6963
6964 * epg.el (epg-start-encrypt): Minor CSE simplification.
6965
6966 2013-09-06 William Xu <william.xwl@gmail.com>
6967
6968 * arc-mode.el: Add support for 7za (bug#15264).
6969 (archive-7z-program): New var.
6970 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
6971 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
6972 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
6973
6974 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
6975
6976 Remove URL syntax.
6977
6978 * net/tramp.el (tramp-syntax, tramp-prefix-format)
6979 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
6980 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
6981 (tramp-postfix-host-format, tramp-file-name-regexp)
6982 (tramp-completion-file-name-regexp)
6983 (tramp-completion-dissect-file-name)
6984 (tramp-handle-substitute-in-file-name): Remove 'url case.
6985 (tramp-file-name-regexp-url)
6986 (tramp-completion-file-name-regexp-url): Remove constants.
6987
6988 2013-09-06 Glenn Morris <rgm@gnu.org>
6989
6990 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
6991
6992 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
6993
6994 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
6995 keywords" below "here-doc beginnings" (Bug#15270).
6996
6997 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
6998
6999 * subr.el (pop): Use `car-safe'.
7000 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
7001 to detect unused `pop' return value.
7002
7003 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
7004 var `block-regexp'.
7005 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
7006 (python-fill-string): Remove unused var `marker'.
7007 (python-skeleton-add-menu-items): Remove unused var `items'.
7008
7009 * international/mule-cmds.el: Require CL.
7010 (find-coding-systems-for-charsets): Avoid add-to-list.
7011 (sanitize-coding-system-list): New function, extracted from
7012 select-safe-coding-system-interactively.
7013 (select-safe-coding-system-interactively): Use it.
7014 (read-input-method-name): Accept symbols for `default'.
7015
7016 * emacs-lisp/advice.el (defadvice): Add indent rule.
7017
7018 2013-09-05 Daniel Hackney <dan@haxney.org>
7019
7020 * dired-x.el:
7021 * net/ange-ftp.el:
7022 * net/browse-url.el:
7023 * net/dbus.el:
7024 * net/eudc.el:
7025 * net/eudcb-ldap.el:
7026 * net/eww.el:
7027 * net/imap.el:
7028 * printing.el:
7029 * vc/ediff-diff.el:
7030 * vc/ediff-init.el:
7031 * vc/ediff-merg.el:
7032 * vc/ediff-mult.el:
7033 * vc/ediff-util.el:
7034 * vc/ediff-wind.el:
7035 * vc/ediff.el:
7036 * vc/emerge.el:
7037 * vc/pcvs.el:
7038 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
7039 byte compiler. Remove some unused let-bound variables.
7040
7041 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7042
7043 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
7044 a "ref-cell", since it gets better optimized (bug#14883).
7045
7046 2013-09-05 Glenn Morris <rgm@gnu.org>
7047
7048 * progmodes/cc-awk.el (c-forward-sws): Declare.
7049
7050 2013-09-04 Glenn Morris <rgm@gnu.org>
7051
7052 * generic-x.el [rul-generic-mode]: Require cc-mode.
7053 (c++-mode-syntax-table): Declare.
7054 (rul-generic-mode-syntax-table): Init in the defvar.
7055
7056 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7057
7058 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
7059 (vc-do-command, vc-set-async-update):
7060 * vc/vc-mtn.el (vc-mtn-dir-status):
7061 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
7062 (vc-hg-pull, vc-hg-merge-branch):
7063 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
7064 (vc-git-merge-branch):
7065 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
7066 (vc-cvs-dir-status-files):
7067 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
7068 (vc-bzr-dir-status-files):
7069 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
7070 * vc/vc-annotate.el: Use lexical-binding.
7071 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
7072 (vc-sentinel-movepoint): Declare.
7073 (vc-annotate): Don't use `goto-line'.
7074 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
7075 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
7076 (vc-sentinel-movepoint): Declare.
7077 * vc/vc-svn.el: Use lexical-binding.
7078 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
7079 * vc/vc-sccs.el:
7080 * vc/vc-rcs.el: Use lexical-binding.
7081
7082 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
7083 `deleted'. Don't drop errors silently.
7084
7085 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
7086
7087 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
7088
7089 * vc/vc.el (vc-ignore): Rewrite.
7090 (vc-default-ignore): New function.
7091 (vc-default-ignore-completion-table): Use find-ignore-file.
7092
7093 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
7094 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
7095 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
7096 Remove. Most code moved to vc.el.
7097
7098 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
7099
7100 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
7101 * net/tramp-smb.el (tramp-smb-get-file-entries):
7102 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
7103 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
7104
7105 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
7106 Update call to it.
7107 (eww-change-select): Remove unused var `properties'.
7108 (eww-make-unique-file-name): Remove unused var `base'.
7109
7110 * finder.el (finder-compile-keywords): Don't mess with windows.
7111
7112 * calculator.el (calculator-funcall): Fix typo in last change.
7113
7114 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
7115
7116 * emacs-lisp/package.el (package-activate-1): Don't let a missing
7117 <pkg>-autoloads.el file stop us.
7118
7119 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
7120 warnings, and factor out common code.
7121
7122 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
7123
7124 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
7125 two-character operators and whether the character preceding them
7126 changes their meaning (Bug#15208).
7127
7128 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
7129
7130 Format code sent to Python shell for robustness.
7131 * progmodes/python.el (python-shell-buffer-substring):
7132 New function.
7133 (python-shell-send-region, python-shell-send-buffer): Use it.
7134
7135 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
7136
7137 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
7138 * net/tramp.el (tramp-user-error): ... here.
7139 (tramp-find-method, tramp-check-proper-host)
7140 (tramp-dissect-file-name, tramp-debug-message)
7141 (tramp-handle-shell-command):
7142 * net/tramp-adb.el (tramp-adb-handle-shell-command):
7143 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
7144
7145 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
7146
7147 2013-09-02 Martin Rudalics <rudalics@gmx.at>
7148
7149 * avoid.el (mouse-avoidance-point-position)
7150 (mouse-avoidance-too-close-p): Handle case where posn-at-point
7151 returns nil.
7152
7153 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
7154
7155 * progmodes/python.el (python-shell-completion-get-completions):
7156 Drop use of deleted `comint-last-prompt-overlay'.
7157 (python-nav-if-name-main): New command.
7158
7159 2013-09-01 Glenn Morris <rgm@gnu.org>
7160
7161 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7162 Avoid leading space in $wins. Otherwise the sed command used by
7163 eg compile-main ends up containing "/*.el". (Bug#15170)
7164
7165 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
7166
7167 2013-08-30 Glenn Morris <rgm@gnu.org>
7168
7169 * emacs-lisp/bytecomp.el (byte-recompile-directory):
7170 Fix is-this-a-directory logic. (Bug#15220)
7171
7172 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7173
7174 * textmodes/css-mode.el: Use SMIE.
7175 (css-smie-grammar): New var.
7176 (css-smie--forward-token, css-smie--backward-token)
7177 (css-smie-rules): New functions.
7178 (css-mode): Use them.
7179 (css-navigation-syntax-table): Remove var.
7180 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
7181 (css-indent-calculate, css-indent-line): Remove functions.
7182
7183 Misc changes to reduce use of `(lambda...); and other cleanups.
7184 * cus-edit.el: Use lexical-binding.
7185 (customize-push-and-save, customize-apropos)
7186 (custom-buffer-create-internal): Use closures.
7187 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
7188 * progmodes/ada-xref.el: Use setq.
7189 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
7190 * dframe.el: Use lexical-binding.
7191 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
7192 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
7193 * descr-text.el: Use lexical-binding.
7194 (describe-text-widget, describe-text-sexp, describe-property-list):
7195 Use closures.
7196 * comint.el (comint-history-isearch-push-state): Use a closure.
7197 * calculator.el: Use lexical-binding.
7198 (calculator-number-to-string): Make it work with lexical-binding.
7199 (calculator-funcall): Same and use cl-letf.
7200
7201 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
7202 (lisp--company-doc-string, lisp--company-location): New functions.
7203 (lisp-completion-at-point): Use them to improve Company support.
7204
7205 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
7206 params of lambda expressions.
7207 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
7208 (ruby-smie--opening-pipe-p): New function.
7209 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
7210 symbols and matched |...| for formal params.
7211 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
7212 from being treated as hanging. Handle "rescue".
7213
7214 2013-08-29 Glenn Morris <rgm@gnu.org>
7215
7216 * progmodes/cc-engine.el (c-pull-open-brace):
7217 Move definition before use.
7218
7219 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7220
7221 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
7222 are immutable. Don't use `unsafe' any more.
7223 (cl--defsubst-expand): Don't substitute at the same time as keeping
7224 a residual unused let-binding. Don't use `unsafe' any more.
7225
7226 2013-08-29 Glenn Morris <rgm@gnu.org>
7227
7228 * calendar/cal-china.el (calendar-chinese-year-cache):
7229 Recenter on 2015.
7230
7231 * nxml/nxml-util.el (nxml-debug-clear-inside):
7232 Use cl-loop rather than loop.
7233
7234 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
7235
7236 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
7237
7238 2013-08-28 Glenn Morris <rgm@gnu.org>
7239
7240 * progmodes/antlr-mode.el: No need to require cc-mode twice.
7241
7242 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
7243
7244 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
7245
7246 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7247
7248 * simple.el (repeat-complex-command--called-interactively-skip):
7249 New function.
7250 (repeat-complex-command): Use it (bug#14136).
7251
7252 * progmodes/cc-mode.el: Minor cleanup of var declarations.
7253 (c-define-abbrev-table): Add `doc' argument.
7254 (c-mode-abbrev-table, c++-mode-abbrev-table)
7255 (objc-mode-abbrev-table, java-mode-abbrev-table)
7256 (idl-mode-abbrev-table, pike-mode-abbrev-table)
7257 (awk-mode-abbrev-table): Use it.
7258 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
7259 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
7260 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
7261 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
7262 Move initialization into the declaration; and remove any
7263 autoload cookie.
7264
7265 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
7266 and dynamic let binding.
7267
7268 * vc/smerge-mode.el: Remove redundant :group args.
7269
7270 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
7271 to load-path.
7272
7273 2013-08-28 Juri Linkov <juri@jurta.org>
7274
7275 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
7276 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
7277 (isearch-other-meta-char): Handle an undefined shifted printing
7278 character by downshifting it. (Bug#15200)
7279
7280 2013-08-28 Juri Linkov <juri@jurta.org>
7281
7282 * isearch.el (isearch-search): Change regexp error message for
7283 non-regexp searches. (Bug#15166)
7284
7285 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
7286
7287 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
7288 for portability to hosts where /bin/sh has problems.
7289
7290 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7291
7292 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
7293
7294 2013-08-27 Juri Linkov <juri@jurta.org>
7295
7296 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
7297 in the keyboard macro. (Bug#15126)
7298
7299 2013-08-27 Juri Linkov <juri@jurta.org>
7300
7301 * isearch.el (isearch-quote-char): Comment out converting unibyte
7302 to multibyte, thus syncing with its `quoted-insert' counterpart.
7303 (Bug#15166)
7304
7305 2013-08-27 Martin Rudalics <rudalics@gmx.at>
7306
7307 * window.el (display-buffer-use-some-window): Add missing
7308 argument in call of get-largest-window (Bug#15185).
7309 Reported by Stephen Leake.
7310
7311 2013-08-27 Glenn Morris <rgm@gnu.org>
7312
7313 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
7314
7315 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
7316
7317 * progmodes/python.el (python-font-lock-keywords): Don't return nil
7318 from a matcher-function unless there's no more matches (bug#15161).
7319
7320 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
7321
7322 * minibuffer.el: Revert change from 2013-08-20.
7323
7324 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
7325 with text property `tramp-default', if appropriate.
7326 (tramp-check-proper-host): New defun.
7327 (tramp-dissect-file-name): Do not check hostname. Revert change
7328 of 2013-03-18.
7329 (tramp-backtrace): Make VEC-OR-PROC optional.
7330
7331 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
7332 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
7333 * net/tramp-sh.el (tramp-maybe-open-connection):
7334 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
7335 Apply `tramp-check-proper-host'.
7336
7337 2013-08-26 Tassilo Horn <tsdh@gnu.org>
7338
7339 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
7340 lambda expression in order to have `describe-variable' display it.
7341
7342 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
7343
7344 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
7345 BUF can be optional. (Bug#15186)
7346
7347 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
7348
7349 * progmodes/flymake.el (flymake-get-real-file-name-function):
7350 Fix broken customization. (Bug#15184)
7351
7352 2013-08-25 Alan Mackenzie <acm@muc.de>
7353
7354 Improve indentation of bracelists defined by macros (without "=").
7355
7356 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
7357 expansion begins with "{", regard it as bracelist when it doesn't
7358 contain a ";".
7359
7360 Parse C++ inher-intro when there's a template split over 2 lines.
7361
7362 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
7363 rigorously the search for "class" etc. followed by ":".
7364
7365 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
7366 random languages a regexp which never matches rather than nil.
7367
7368 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
7369
7370 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
7371 (c-awk-regexp-one-line-possibly-open-char-list-re)
7372 (c-awk-one-line-possibly-open-regexp-re)
7373 (c-awk-one-line-non-syn-ws*-re): Remove.
7374 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
7375 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
7376 (c-awk-space*-unclosed-regexp-/-re): New constants.
7377 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
7378 aren't regexp delimiters.
7379
7380 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
7381 handling for a rare situation in AWK Mode involving unterminated
7382 strings/regexps.
7383
7384 2013-08-23 Glenn Morris <rgm@gnu.org>
7385
7386 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
7387
7388 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
7389
7390 * files.el (create-file-buffer): If the result would begin with
7391 spaces, prepend a "|" instead of removing them. (Bug#15162)
7392
7393 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
7394
7395 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
7396 text-properties (bug#15155).
7397
7398 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
7399 exist any more.
7400 (calc-keypad-redraw): Remove unused var `pad'.
7401 (calc-keypad-press): Remove unused var `menu'.
7402
7403 2013-08-23 Martin Rudalics <rudalics@gmx.at>
7404
7405 * window.el (display-buffer-pop-up-frame):
7406 Call pop-up-frame-function with BUFFER current so `make-frame' will
7407 use it as the new frame's buffer (Bug#15133).
7408
7409 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
7410
7411 * calendar/timeclock.el: Minor cleanups.
7412 (timeclock-ask-before-exiting, timeclock-use-display-time):
7413 Use `symbol'.
7414 (timeclock-modeline-display): Define as alias before the
7415 actual definition.
7416 (timeclock-mode-line-display): Use define-minor-mode.
7417 (timeclock-day-list-template): Make it a function, add an argument.
7418 (timeclock-day-list-required, timeclock-day-list-length)
7419 (timeclock-day-list-debt, timeclock-day-list-span)
7420 (timeclock-day-list-break): Adjust calls accordingly.
7421
7422 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
7423
7424 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
7425 Use read--expression so that completion works again.
7426
7427 2013-08-21 Sam Steingold <sds@gnu.org>
7428
7429 Add rudimentary inferior shell interaction
7430 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
7431 (sh-set-shell): Reset it.
7432 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
7433 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
7434
7435 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
7436
7437 * align.el: Use lexical-binding.
7438 (align-region): Simplify accordingly.
7439
7440 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
7441
7442 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
7443
7444 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
7445 `non-essential' up.
7446
7447 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
7448
7449 * net/tramp.el:
7450 * net/tramp-adb.el:
7451 * net/tramp-cmds.el:
7452 * net/tramp-ftp.el:
7453 * net/tramp-gvfs.el:
7454 * net/tramp-gw.el:
7455 * net/tramp-sh.el: Don't wrap external variable declarations by
7456 `eval-when-compile'.
7457
7458 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7459
7460 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
7461 now that Emacs supports ImageMagick animations.
7462
7463 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
7464
7465 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
7466 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
7467
7468 2013-08-16 Martin Rudalics <rudalics@gmx.at>
7469
7470 * window.el (mouse-autoselect-window-select): Do autoselect when
7471 mouse pointer is on margin.
7472
7473 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
7474
7475 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
7476
7477 2013-08-16 Glenn Morris <rgm@gnu.org>
7478
7479 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
7480 Handle "Remote Directory" response of some clients. (Bug#15058)
7481
7482 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
7483 Tweak warning. (Bug#14926)
7484
7485 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
7486 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
7487
7488 * image-mode.el (image-mode-map): Add menu items to reverse,
7489 increase, decrease, reset animation speed.
7490 (image--set-speed, image-increase-speed, image-decrease-speed)
7491 (image-reverse-speed, image-reset-speed): New functions.
7492 (image-mode-map): Add bindings for speed commands.
7493
7494 * image.el (image-animate-get-speed, image-animate-set-speed):
7495 New functions.
7496 (image-animate-timeout): Respect image :speed property.
7497
7498 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7499
7500 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
7501 previous line (bug#15101).
7502 (debugger-eval-expression, debugger-record-expression):
7503 Use read--expression (bug#15102).
7504
7505 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
7506
7507 Remove byte compiler warnings, visible when compiling with
7508 `byte-compile-force-lexical-warnings' set to t.
7509
7510 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
7511 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
7512 (tramp-handle-unhandled-file-name-directory)
7513 (tramp-handle-file-notify-add-watch, tramp-action-login)
7514 (tramp-action-succeed, tramp-action-permission-denied)
7515 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
7516 arguments with "_".
7517
7518 * net/tramp-adb.el (tramp-adb-parse-device-names)
7519 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
7520 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
7521 (tramp-adb-handle-file-truename): Remove unused arguments.
7522
7523 * net/tramp-cache.el (tramp-flush-directory-property)
7524 (tramp-flush-connection-property, tramp-list-connections)
7525 (tramp-parse-connection-properties): Prefix unused arguments with "_".
7526
7527 * net/tramp-compat.el (tramp-compat-make-temp-file):
7528 Rename FILENAME to F.
7529
7530 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
7531 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
7532 (tramp-zeroconf-parse-workstation-device-names)
7533 (tramp-zeroconf-parse-webdav-device-names)
7534 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
7535
7536 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
7537 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
7538
7539 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
7540 arguments.
7541 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
7542 (tramp-sh-handle-insert-file-contents-literally)
7543 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
7544 with "_".
7545 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
7546 Remove unused variables.
7547
7548 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
7549 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
7550 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
7551
7552 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
7553 Make them a defconst.
7554 (tramp-uuencode-region): Remove unused variable.
7555
7556 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
7557
7558 * frameset.el (frameset--prop-setter): New function.
7559 (frameset-prop): Add gv-setter declaration.
7560 (frameset-filter-minibuffer): Deal with the case that the minibuffer
7561 parameter was already set in FILTERED. Doc fix.
7562 (frameset--record-minibuffer-relationships): Allow saving a
7563 minibufferless frame without its corresponding minibuffer frame.
7564 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
7565 frame, if the frame id matches.
7566 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
7567 frames before orphaned ones.
7568 (frameset-restore): Warn about orphaned windows, instead of error out.
7569
7570 2013-08-14 Martin Rudalics <rudalics@gmx.at>
7571
7572 * window.el (window-make-atom): Don't overwrite parameter
7573 already present.
7574 (display-buffer-in-atom-window): Handle special case where we
7575 split an already atomic window.
7576 (window--major-non-side-window, display-buffer-in-side-window)
7577 (window--side-check): Ignore minibuffer window when walking
7578 window tree.
7579 (window-deletable-p): Return 'frame only if no other frame uses
7580 our minibuffer window.
7581 (record-window-buffer): Run buffer-list-update-hook.
7582 (split-window): Make sure window--check-frame won't destroy an
7583 existing atomic window in case the new window gets nested
7584 inside.
7585 (display-buffer-at-bottom): Ignore minibuffer window when
7586 walking window tree. Don't split a side window.
7587 (pop-to-buffer): Don't set-buffer here, the select-window call
7588 should do that.
7589 (mouse-autoselect-window-select): Autoselect only if we are in the
7590 text portion of the window.
7591
7592 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7593
7594 * net/shr.el (shr-parse-image-data): New function to grab both the
7595 data itself and the Content-Type.
7596 (shr-put-image): Use it.
7597
7598 * net/eww.el (eww-display-image): Ditto.
7599
7600 * image.el (image-content-type-suffixes): New variable.
7601
7602 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
7603
7604 * progmodes/python.el (python-imenu--build-tree)
7605 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
7606
7607 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
7608
7609 * simple.el (backward-word): Mention the optional argument.
7610
7611 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7612
7613 * frameset.el (frameset--make): Rename constructor from make-frameset.
7614 (frameset-p, frameset-valid-p): Don't autoload.
7615 (frameset-valid-p): Use normal accessors.
7616
7617 2013-08-13 Glenn Morris <rgm@gnu.org>
7618
7619 * progmodes/compile.el (compile-command): Tweak example in doc.
7620 * obsolete/scribe.el (scribe-mode):
7621 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
7622
7623 * mail/feedmail.el (feedmail-confirm-outgoing)
7624 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
7625
7626 * cus-start.el (truncate-partial-width-windows): Fix type.
7627
7628 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
7629
7630 * net/shr.el (shr-table-horizontal-line): Fix custom type.
7631
7632 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7633
7634 * emacs-lisp/timer.el (timer--time-setter): New function.
7635 (timer--time): Use it as gv-setter.
7636
7637 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
7638 setter is not a symbol.
7639
7640 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
7641
7642 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
7643 if sending fails. This makes debugging easier.
7644
7645 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
7646
7647 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
7648 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
7649 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
7650
7651 2013-08-12 Eli Zaretskii <eliz@gnu.org>
7652
7653 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
7654
7655 2013-08-12 Glenn Morris <rgm@gnu.org>
7656
7657 * format.el (format-annotate-function):
7658 Handle read-only text properties in the source. (Bug#14887)
7659
7660 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7661
7662 * net/eww.el (eww-display-html): Ignore coding system errors.
7663 One web site uses "utf-8lias" as the coding system.
7664
7665 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
7666
7667 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
7668
7669 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
7670
7671 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
7672 (tutorial--detailed-help): Remove unused local variables.
7673 (tutorial--save-tutorial-to): Use ignore-errors.
7674 (help-with-tutorial): Use looking-at-p.
7675
7676 * view.el (view-buffer-other-window, view-buffer-other-frame):
7677 Mark unused arguments.
7678
7679 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
7680 (woman-select-symbol-fonts, woman, woman-find-file)
7681 (woman-insert-file-contents, woman-non-underline-faces):
7682 Use string-match-p.
7683 (woman1-unquote): Move declaration.
7684
7685 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
7686 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
7687 argument. Remove unused local variable.
7688 (xml-parse-elem-type): Use string-match-p.
7689 (xml-substitute-numeric-entities): Use ignore-errors.
7690
7691 * calculator.el (calculator): Mark unused argument.
7692 (calculator-paste, calculator-quit, calculator-integer-p):
7693 Use ignore-errors.
7694 (calculator-string-to-number, calculator-decimal, calculator-exp)
7695 (calculator-op-or-exp): Use string-match-p.
7696
7697 * dired.el (dired-buffer-more-recently-used-p): Declare.
7698 (dired-insert-set-properties, dired-insert-old-subdirs):
7699 Use ignore-errors.
7700
7701 * dired-aux.el (dired-compress): Use ignore-errors.
7702 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
7703 (dired-do-async-shell-command, dired-do-shell-command)
7704 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
7705 (dired-insert-subdir-validate): Use string-match-p.
7706 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
7707 (dired-add-entry): Use string-match-p, looking-at-p.
7708 (dired-insert-subdir-newpos): Remove unused local variable.
7709
7710 * filenotify.el (file-notify-callback): Remove unused local variable.
7711
7712 * filesets.el (filesets-error): Mark unused argument.
7713 (filesets-which-command-p, filesets-filter-dir-names)
7714 (filesets-directory-files, filesets-get-external-viewer)
7715 (filesets-ingroup-get-data): Use string-match-p.
7716
7717 * find-file.el (ff-other-file-name, ff-other-file-name)
7718 (ff-find-the-other-file, ff-cc-hh-converter):
7719 Remove unused local variables.
7720 (ff-get-file-name): Use string-match-p.
7721 (ff-all-dirs-under): Use ignore-errors.
7722
7723 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
7724 (follow-select-if-visible): Remove unused local variable.
7725
7726 * forms.el (read-file-filter): Move declaration.
7727 (forms--make-format, forms--make-parser, forms-insert-record):
7728 Quote function with #'.
7729 (forms--update): Use string-match-p. Quote function with #'.
7730
7731 * help-mode.el (help-dir-local-var-def): Mark unused argument.
7732 (help-make-xrefs): Use looking-at-p.
7733 (help-xref-on-pp): Use looking-at-p, ignore-errors.
7734
7735 * ibuffer.el (ibuffer-ext-visible-p): Declare.
7736 (ibuffer-confirm-operation-on): Use string-match-p.
7737
7738 * msb.el (msb-item-handler, msb-dired-item-handler):
7739 Mark unused arguments.
7740
7741 * ses.el (ses-decode-cell-symbol)
7742 (ses-kill-override): Remove unused local variable.
7743 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
7744 (ses-load): Use ignore-errors, looking-at-p.
7745 (ses-jump-safe): Use ignore-errors.
7746 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
7747
7748 * tabify.el (untabify, tabify): Mark unused arguments.
7749
7750 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
7751 Mark unused argument.
7752 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
7753 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
7754
7755 * emacs-lisp/timer.el (timer--time): Define setter with
7756 gv-define-setter to avoid deprecation warning.
7757
7758 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
7759 (*record-cmpl-statistics-p*): Remove (was commented out).
7760 (cmpl-statistics-block): Remove (body was commented out).
7761 All callers changed.
7762 (add-completions-from-buffer, load-completions-from-file):
7763 Remove unused variables.
7764
7765 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
7766
7767 * filecache.el (file-cache-delete-file-list):
7768 Print message only when told so.
7769 (file-cache-files-matching): Use #' in mapconcat argument.
7770
7771 * ffap.el (ffap-url-at-point): Fix reference to variable
7772 thing-at-point-default-mail-uri-scheme.
7773
7774 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
7775
7776 * subr.el (define-error): New function.
7777 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
7778 error-file-not-found and define with define-error.
7779 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
7780 and define with define-error.
7781 * userlock.el (file-locked, file-supersession):
7782 * simple.el (mark-inactive):
7783 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
7784 * progmodes/ada-mode.el (ada-mode-errors):
7785 * play/life.el (life-extinct):
7786 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
7787 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
7788 * nxml/rng-util.el (rng-error):
7789 * nxml/rng-uri.el (rng-uri-error):
7790 * nxml/rng-match.el (rng-compile-error):
7791 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
7792 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
7793 * nxml/nxml-rap.el (nxml-scan-error):
7794 * nxml/nxml-outln.el (nxml-outline-error):
7795 * net/soap-client.el (soap-error):
7796 * net/gnutls.el (gnutls-error):
7797 * net/ange-ftp.el (ftp-error):
7798 * mpc.el (mpc-proc-error):
7799 * json.el (json-error, json-readtable-error, json-unknown-keyword)
7800 (json-number-format, json-string-escape, json-string-format)
7801 (json-key-format, json-object-format):
7802 * jka-compr.el (compression-error):
7803 * international/quail.el (quail-error):
7804 * international/kkc.el (kkc-error):
7805 * emacs-lisp/ert.el (ert-test-failed):
7806 * calc/calc.el (calc-error, inexact-result, math-overflow)
7807 (math-underflow):
7808 * bookmark.el (bookmark-error-no-filename):
7809 * epg.el (epg-error): Define with define-error.
7810
7811 * time.el (display-time-event-handler)
7812 (display-time-next-load-average): Don't call sit-for since it seems
7813 unnecessary (bug#15045).
7814
7815 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
7816 Use #' instead of ' to quote functions.
7817 (checkdoc-output-mode): Use setq-local.
7818 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
7819 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
7820 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
7821 (checkdoc-ispell, checkdoc-ispell-current-buffer)
7822 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
7823 (checkdoc-ispell-message-text, checkdoc-ispell-start)
7824 (checkdoc-ispell-continue, checkdoc-ispell-comments)
7825 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
7826
7827 * ido.el (ido-completion-help): Fix up compiler warning.
7828
7829 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
7830
7831 * frameset.el (frameset-p): Add autoload cookie.
7832 (frameset--jump-to-register): New function, based on code moved from
7833 register.el.
7834 (frameset-to-register): Move from register.el. Adapt to `registerv'.
7835
7836 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
7837 (frameset-restore, frameset-save, frameset-session-filter-alist):
7838 Remove declarations.
7839 (register-alist): Doc fix.
7840 (frameset-to-register): Move to frameset.el.
7841 (jump-to-register, describe-register-1): Remove frameset-specific code.
7842
7843 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7844
7845 * allout-widgets.el (allout-widgets-pre-command-business)
7846 (allout-widgets-post-command-business)
7847 (allout-widgets-after-change-handler)
7848 (allout-decorate-item-and-context, allout-set-boundary-marker)
7849 (allout-body-modification-handler)
7850 (allout-graphics-modification-handler): Mark ignored arguments.
7851 (allout-widgets-post-command-business)
7852 (allout-widgets-exposure-change-processor)
7853 (allout-widgets-exposure-undo-processor)
7854 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
7855 (allout-parse-item-at-point, allout-decorate-item-guides)
7856 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
7857 * allout.el (epa-passphrase-callback-function): Declare.
7858 (allout-overlay-insert-in-front-handler)
7859 (allout-overlay-interior-modification-handler)
7860 (allout-isearch-end-handler, allout-chart-siblings)
7861 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
7862 (allout-yank-processing, allout-process-exposed)
7863 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
7864 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
7865 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
7866 (lisp-indent-defform): Mark ignored arguments.
7867 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
7868 (calculate-lisp-indent): Remove unused variables.
7869 * international/characters.el (indian-2-column, arabic-2-column)
7870 (tibetan): Mark ignored arguments.
7871 (use-cjk-char-width-table): Mark ignored arguments.
7872 Remove unused variables.
7873 * international/fontset.el (build-default-fontset-data)
7874 (x-compose-font-name, create-fontset-from-fontset-spec):
7875 Mark ignored arguments.
7876 (fontset-plain-name): Remove unused variables.
7877 * international/mule.el (charset-id, charset-bytes, generic-char-p)
7878 (keyboard-coding-system): Mark ignored arguments.
7879 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
7880 * help.el (resize-temp-buffer-window):
7881 * window.el (display-buffer-in-major-side-window)
7882 (display-buffer-in-side-window, display-buffer-in-previous-window):
7883 Remove unused variables.
7884 * isearch.el (isearch-forward-symbol):
7885 * version.el (emacs-bzr-version-bzr):
7886 * international/mule-cmds.el (current-language-environment):
7887 * term/common-win.el (x-handle-iconic, x-handle-geometry)
7888 (x-handle-display):
7889 * term/pc-win.el (x-list-fonts, x-display-planes)
7890 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
7891 (x-server-version, x-display-screens, x-display-mm-height)
7892 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
7893 (x-selection-owner-p, x-own-selection-internal)
7894 (x-disown-selection-internal, x-get-selection-internal)
7895 (msdos-initialize-window-system):
7896 * term/tty-colors.el (tty-color-alist, tty-color-clear):
7897 * term/x-win.el (x-handle-no-bitmap-icon):
7898 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
7899 (vc-default-find-file-hook, vc-default-extra-menu):
7900 Mark ignored arguments.
7901
7902 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7903
7904 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
7905 break-condition in the context of the debugged code (bug#12685).
7906
7907 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
7908
7909 * comint.el:
7910 Do not use an overlay to highlight the last prompt. (Bug#14744)
7911 (comint-mode): Make comint-last-prompt buffer local.
7912 (comint-last-prompt): New variable.
7913 (comint-last-prompt-overlay): Remove. Superseded by
7914 comint-last-prompt.
7915 (comint-snapshot-last-prompt, comint-output-filter):
7916 Use comint-last-prompt.
7917
7918 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7919
7920 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
7921 (frameset-save): Check validity of the resulting frameset.
7922
7923 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
7924
7925 * ido.el (ido-record-command): Add doc string.
7926
7927 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7928
7929 * frameset.el (frameset): Do not disable creation of the default
7930 frameset-p predicate. Doc fix.
7931 (frameset-valid-p): New function, copied from the old predicate-p.
7932 Add additional checks.
7933 (frameset-restore): Check with frameset-valid-p.
7934 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
7935 (frameset-name, frameset-description, frameset-properties)
7936 (frameset-states): Add docstring.
7937 (frameset-session-filter-alist, frameset-persistent-filter-alist)
7938 (frameset-filter-alist): Doc fixes.
7939
7940 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7941
7942 * frameset.el (frameset-p, frameset-prop): Doc fixes.
7943
7944 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7945
7946 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
7947 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
7948 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
7949 (byte-compile-normal-call): Remove obsolescence check.
7950
7951 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7952
7953 * frameset.el (frameset-restore): Doc fix.
7954
7955 * register.el (frameset-frame-id, frameset-frame-with-id)
7956 (frameset-p, frameset-restore, frameset-save): Declare.
7957 (register-alist): Document framesets.
7958 (frameset-session-filter-alist): Declare.
7959 (frameset-to-register): New function.
7960 (jump-to-register): Implement jumping to framesets. Doc fix.
7961 (describe-register-1): Describe framesets.
7962
7963 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
7964
7965 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
7966
7967 * desktop.el (desktop-save-frameset): Use new frameset-save args.
7968 Use lexical-binding.
7969
7970 * frameset.el (frameset): Use type vector, not list (incompatible
7971 change). Do not declare a new constructor, use the default one.
7972 Upgrade suggested properties `app', `name' and `desc' to slots `app',
7973 `name' and `description', respectively, and add read-only slot
7974 `timestamp'. Doc fixes.
7975 (frameset-copy, frameset-persistent-filter-alist)
7976 (frameset-filter-alist, frameset-switch-to-gui-p)
7977 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
7978 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
7979 (frameset-filter-iconified, frameset-keep-original-display-p):
7980 Doc fixes.
7981 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
7982 Rename from frameset-filter-(save|restore)-param. All callers changed.
7983 Doc fix.
7984 (frameset-p): Adapt to change to vector and be more thorough.
7985 Change arg name to OBJECT. Doc fix.
7986 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
7987 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
7988 All callers changed.
7989 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
7990 All callers changed.
7991 (frameset--record-minibuffer-relationships): Rename from
7992 frameset--process-minibuffer-frames. All callers changed.
7993 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
7994 Use new default constructor (again). Doc fix.
7995 (frameset--find-frame-if): Rename from `frameset--find-frame'.
7996 All callers changed.
7997 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
7998 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
7999 Doc fix.
8000 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
8001 PARAMETERS and WINDOW-STATE, respectively.
8002 (frameset-restore): Add new keyword argument PREDICATE.
8003 Reset frameset--target-display to nil. Doc fix.
8004
8005 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
8006
8007 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
8008 (bat-mode): Use it.
8009 (bat-mode-syntax-table): Mark \n as end-of-comment.
8010 (bat-font-lock-keywords): Remove comment rule.
8011
8012 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
8013 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
8014
8015 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
8016 (byte-compile-callargs-warn): Use `push'.
8017 (byte-compile-arglist-warn): Ignore higher-order "calls".
8018 (byte-compile-file-form-autoload): Use `pcase'.
8019 (byte-compile-function-form): If quoting a symbol, check that it exists.
8020
8021 2013-08-07 Eli Zaretskii <eliz@gnu.org>
8022
8023 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
8024 and add a few popular commands found in batch files.
8025 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
8026 (dos-mode): Doc fixes.
8027
8028 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
8029
8030 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
8031 (dos-mode): Use setq-local. Add space after "rem".
8032 (dos-mode-syntax-table): Don't use "w" for symbol chars.
8033 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
8034
8035 2013-08-07 Arni Magnusson <arnima@hafro.is>
8036
8037 * progmodes/dos.el: New file.
8038 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
8039 dos-mode.
8040
8041 2013-08-06 Glenn Morris <rgm@gnu.org>
8042
8043 * calendar/calendar.el: Add new faces, and day-header-array.
8044 (calendar-weekday-header, calendar-weekend-header)
8045 (calendar-month-header): New faces.
8046 (calendar-day-header-construct): New function.
8047 (calendar-day-header-width): Also :set calendar-day-header-array.
8048 (calendar-american-month-header, calendar-european-month-header)
8049 (calendar-iso-month-header): Use calendar- faces.
8050 (calendar-generate-month):
8051 Use calendar-day-header-array for day headers; apply faces to them.
8052 (calendar-mode): Check calendar-font-lock-keywords non-nil.
8053 (calendar-abbrev-construct): Add optional maxlen argument.
8054 (calendar-day-name-array): Doc fix.
8055 (calendar-day-name-array, calendar-abbrev-length)
8056 (calendar-day-abbrev-array):
8057 Also :set calendar-day-header-array, and maybe redraw.
8058 (calendar-day-header-array): New option. (Bug#15007)
8059 (calendar-font-lock-keywords): Set to nil and make obsolete.
8060 (calendar-day-name): Add option to use header array.
8061
8062 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8063
8064 * net/shr.el (shr-render-td): Remove debugging.
8065 (shr-render-td): Make width computation consistent by defaulting
8066 all zero-width columns to 10 characters. This may not be optimal,
8067 but it's at least consistent.
8068 (shr-make-table-1): Redo last change to fix the real problem in
8069 colspan handling.
8070
8071 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8072
8073 * files.el (cache-long-line-scans):
8074 Make obsolete alias to `cache-long-scans'.
8075
8076 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
8077
8078 * frameset.el (frameset, frameset-filter-alist)
8079 (frameset-filter-params, frameset-save, frameset--reuse-frame)
8080 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
8081 (frameset-compute-pos): Rename from frameset--compute-pos,
8082 and add docstring.
8083 (frameset-move-onscreen): Use frameset-compute-pos.
8084 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
8085
8086 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
8087 Fix typos in docstrings.
8088
8089 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8090
8091 * frame.el (get-other-frame): Tiny cleanup.
8092
8093 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
8094
8095 * vc/vc.el (vc-default-ignore-completion-table):
8096 Silence byte-compiler warning.
8097
8098 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
8099 slot, which can indeed be nil.
8100 (frameset-live-filter-alist, frameset-persistent-filter-alist):
8101 Move entry for `left' from persistent to live filter alist.
8102 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
8103 Doc fixes.
8104 (frameset-filter-params): When restoring a frame, copy items added to
8105 `filtered', to avoid unwittingly modifying the original parameters.
8106 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
8107 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
8108
8109 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
8110 to use looking-at-p instead of looking-at. (Bug#15028)
8111
8112 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
8113
8114 Revert introduction of isearch-filter-predicates (bug#14714).
8115 Rely on add-function instead.
8116 * isearch.el (isearch-filter-predicates): Rename it back to
8117 isearch-filter-predicate.
8118 (isearch-message-prefix): Use advice-function-mapc and advice
8119 properties to get the isearch-message-prefix.
8120 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
8121 instead of run-hook-with-args-until-failure.
8122 (isearch-filter-visible): Not obsolete any more.
8123 * loadup.el: Preload nadvice.
8124 * replace.el (perform-replace): Revert to funcall
8125 instead of run-hook-with-args-until-failure.
8126 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
8127 * dired-aux.el (dired-isearch-filenames-mode): Rename from
8128 dired-isearch-filenames-toggle; make it into a proper minor mode.
8129 Use add/remove-function.
8130 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
8131 Call the minor-mode rather than add/remove-hook.
8132 (dired-isearch-filter-filenames):
8133 Remove isearch-message-prefix property.
8134 * info.el (Info--search-loop): New function, extracted from Info-search.
8135 Funcall isearch-filter-predicate instead of
8136 run-hook-with-args-until-failure isearch-filter-predicates.
8137 (Info-search): Use it.
8138 (Info-mode): Use isearch-filter-predicate instead of
8139 isearch-filter-predicates.
8140
8141 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8142
8143 Do not call to `selected-window' where it is assumed by default.
8144 Affected functions are `window-minibuffer-p', `window-dedicated-p',
8145 `window-hscroll', `window-width', `window-height', `window-buffer',
8146 `window-frame', `window-start', `window-point', `next-window'
8147 and `window-display-table'.
8148 * abbrev.el (abbrev--default-expand):
8149 * bs.el (bs--show-with-configuration):
8150 * buff-menu.el (Buffer-menu-mouse-select):
8151 * calc/calc.el (calc):
8152 * calendar/calendar.el (calendar-generate-window):
8153 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
8154 (diary-make-entry):
8155 * comint.el (send-invisible, comint-dynamic-complete-filename)
8156 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
8157 * completion.el (complete):
8158 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
8159 * disp-table.el (describe-current-display-table):
8160 * doc-view.el (doc-view-insert-image):
8161 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
8162 * ehelp.el (with-electric-help):
8163 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8164 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
8165 * emacs-lisp/helper.el (Helper-help-scroller):
8166 * emulation/cua-base.el (cua--post-command-handler-1):
8167 * eshell/esh-mode.el (eshell-output-filter):
8168 * ffap.el (ffap-gnus-wrapper):
8169 * help-macro.el (make-help-screen):
8170 * hilit-chg.el (highlight-compare-buffers):
8171 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
8172 * hl-line.el (global-hl-line-highlight):
8173 * icomplete.el (icomplete-simple-completing-p):
8174 * isearch.el (isearch-done):
8175 * jit-lock.el (jit-lock-stealth-fontify):
8176 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
8177 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
8178 * mpc.el (mpc-tagbrowser, mpc):
8179 * net/rcirc.el (rcirc-any-buffer):
8180 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
8181 * play/landmark.el (landmark-max-width, landmark-max-height):
8182 * play/zone.el (zone):
8183 * progmodes/compile.el (compilation-goto-locus):
8184 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
8185 * progmodes/etags.el (find-tag-other-window):
8186 * progmodes/fortran.el (fortran-column-ruler):
8187 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
8188 * progmodes/verilog-mode.el (verilog-point-text):
8189 * reposition.el (reposition-window):
8190 * rot13.el (toggle-rot13-mode):
8191 * server.el (server-switch-buffer):
8192 * shell.el (shell-dynamic-complete-command)
8193 (shell-dynamic-complete-environment-variable):
8194 * simple.el (insert-buffer, set-selective-display)
8195 (delete-completion-window):
8196 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
8197 (speedbar-recenter):
8198 * startup.el (fancy-splash-head):
8199 * textmodes/ispell.el (ispell-command-loop):
8200 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
8201 * tutorial.el (help-with-tutorial):
8202 * vc/add-log.el (add-change-log-entry):
8203 * vc/compare-w.el (compare-windows):
8204 * vc/ediff-help.el (ediff-indent-help-message):
8205 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
8206 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
8207 (ediff-setup-control-frame):
8208 * vc/emerge.el (emerge-position-region):
8209 * vc/pcvs-util.el (cvs-bury-buffer):
8210 * window.el (walk-windows, mouse-autoselect-window-select):
8211 * winner.el (winner-set-conf, winner-undo): Related users changed.
8212
8213 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
8214
8215 * frameset.el (frameset--set-id): Doc fix.
8216 (frameset-frame-id, frameset-frame-id-equal-p)
8217 (frameset-locate-frame-id): New functions.
8218 (frameset--process-minibuffer-frames, frameset--reuse-frame)
8219 (frameset-restore): Use them.
8220
8221 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8222
8223 Do not call to `selected-frame' where it is assumed by default.
8224 Affected functions are `raise-frame', `redraw-frame',
8225 `frame-first-window', `frame-terminal' and `delete-frame'.
8226 * calendar/appt.el (appt-disp-window):
8227 * epg.el (epg-wait-for-completion):
8228 * follow.el (follow-delete-other-windows-and-split)
8229 (follow-avoid-tail-recenter):
8230 * international/mule.el (set-terminal-coding-system):
8231 * mail/rmail.el (rmail-mail-return):
8232 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
8233 * progmodes/f90.el (f90-add-imenu-menu):
8234 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
8235 * server.el (server-switch-buffer):
8236 * simple.el (delete-completion-window):
8237 * talk.el (talk):
8238 * term/xterm.el (terminal-init-xterm-modify-other-keys)
8239 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
8240 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
8241 * vc/ediff.el (ediff-documentation): Related users changed.
8242 * frame.el (selected-terminal): Remove the leftover.
8243
8244 2013-08-05 Glenn Morris <rgm@gnu.org>
8245
8246 * calendar/calendar.el (calendar-generate-month):
8247 Fix for calendar-column-width != 1 + calendar-day-digit-width.
8248 (calendar-generate-month, calendar-font-lock-keywords):
8249 Fix for calendar-day-header-width > length of any day name.
8250
8251 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
8252
8253 * desktop.el (desktop-clear): Use new name of sort predicate.
8254
8255 * frameset.el (frameset): Add docstring. Move :version property to its
8256 own `version' slot.
8257 (frameset-copy): Rename from copy-frameset.
8258 (frameset-p): Check more thoroughly.
8259 (frameset-prop): Do not check for :version, which is no longer a prop.
8260 (frameset-live-filter-alist, frameset-persistent-filter-alist):
8261 Use new :never value instead of t.
8262 (frameset-filter-alist): Expand and clarify docstring.
8263 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
8264 (frameset-filter-minibuffer, frameset-filter-save-param)
8265 (frameset-filter-restore-param, frameset-filter-iconified):
8266 Add pointer to docstring of frameset-filter-alist.
8267 (frameset-filter-params): Rename filter values to be more meaningful:
8268 :never instead of t, and reverse the meanings of :save and :restore.
8269 (frameset--process-minibuffer-frames): Clarify error message.
8270 (frameset-save): Avoid unnecessary and confusing call to framep.
8271 Use new BOA constructor for framesets.
8272 (frameset--reuse-list): Doc fix.
8273 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
8274 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
8275 (frameset-minibufferless-first-p): Doc fix.
8276 Rename from frameset-sort-frames-for-deletion.
8277 (frameset-restore): Doc fixes. Use new function names.
8278 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
8279
8280 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
8281
8282 * desktop.el (desktop-restore-forces-onscreen)
8283 (desktop-restore-reuses-frames): Document :keyword constant values.
8284 (desktop-filter-parameters-alist): Remove, now identical to
8285 frameset-filter-alist.
8286 (desktop--filter-tty*): Remove, moved to frameset.el.
8287 (desktop-save-frameset, desktop-restore-frameset):
8288 Do not pass :filters argument.
8289
8290 * frameset.el (frameset-live-filter-alist)
8291 (frameset-persistent-filter-alist): New variables.
8292 (frameset-filter-alist): Use them. Add autoload cookie.
8293 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
8294 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
8295 `frameset--id' (it's supposed to be internal to frameset.el).
8296 (frameset--process-minibuffer-frames): Ditto. Doc fix.
8297 (frameset--initial-params): New function.
8298 (frameset--get-frame): Use it. Doc fix.
8299 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
8300 Accept :all, not 'all.
8301 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
8302 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
8303 with fbound symbols. Fix frame id matching, and remove matching ids if
8304 the frame being restored is deleted. Obey :delete.
8305
8306 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8307
8308 * subr.el (macrop): New function.
8309 (text-clone--maintaining): New var.
8310 (text-clone--maintain): Rename from text-clone-maintain. Use it
8311 instead of inhibit-modification-hooks.
8312
8313 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
8314 a proxy, so as handle autoloads and redefinitions of the target.
8315 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
8316
8317 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
8318 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
8319 (pcase--mutually-exclusive-p): New function.
8320 (pcase--split-consp): Use it.
8321 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
8322 mutually exclusive with the current predicate.
8323
8324 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
8325 (edebug-macrop): Remove. Use `macrop' instead.
8326 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
8327 (ad-macro-p):
8328 * eshell/esh-cmd.el (eshell-macrop):
8329 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
8330
8331 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8332
8333 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
8334 (advice-mapc): New function, using it.
8335 (advice-function-member-p): New function.
8336 (advice--normalize): Store the cdr in advice--saved-rewrite since
8337 that's the part that will be changed.
8338 (advice--symbol-function): New function.
8339 (advice-remove): Handle removal before the function is defined.
8340 Adjust to new advice--saved-rewrite.
8341 (advice-member-p): Use advice-function-member-p and
8342 advice--symbol-function.
8343
8344 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
8345
8346 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
8347 (frameset-filter-minibuffer): Doc fix.
8348 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
8349 (frameset--set-id, frameset--process-minibuffer-frames)
8350 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
8351 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
8352
8353 * desktop.el (desktop-clear): Only delete frames when called
8354 interactively and desktop-restore-frames is non-nil. Doc fix.
8355 (desktop-read): Set desktop-saved-frameset to nil.
8356
8357 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
8358
8359 * vc/vc.el (vc-ignore): Rewrite.
8360 (vc-default-ignore-completion-table, vc--read-lines)
8361 (vc--add-line, vc--remove-regexp): New functions.
8362
8363 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
8364 (vc-svn-ignore-completion-table): New function.
8365
8366 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
8367 (vc-hg-ignore-completion-table)
8368 (vc-hg-find-ignore-file): New functions.
8369
8370 * vc/vc-git.el (vc-git-ignore): Rewrite.
8371 (vc-git-ignore-completion-table)
8372 (vc-git-find-ignore-file): New functions.
8373
8374 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
8375
8376 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
8377 (vc-bzr-ignore-completion-table)
8378 (vc-bzr-find-ignore-file): New functions.
8379
8380 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
8381
8382 * frameset.el (frameset-prop): New function and setter.
8383 (frameset-save): Do not modify frame list passed by the caller.
8384
8385 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
8386
8387 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
8388
8389 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
8390
8391 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
8392 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
8393
8394 * custom.el (custom-initialize-default, custom-initialize-set)
8395 (custom-initialize-reset, custom-initialize-changed): Affect the
8396 toplevel-default-value (bug#6275, bug#14586).
8397 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
8398 for bug#6275.
8399
8400 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
8401
8402 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8403 Add cl-def* expressions.
8404
8405 * frameset.el (frameset-filter-params): Fix order of arguments.
8406
8407 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
8408
8409 Move code related to saving frames to frameset.el.
8410 * desktop.el: Require frameset.
8411 (desktop-restore-frames): Doc fix.
8412 (desktop-restore-reuses-frames): Rename from
8413 desktop-restoring-reuses-frames.
8414 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
8415 (desktop-clear): Clear frames too.
8416 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
8417 (desktop--filter-tty*, desktop-save, desktop-read):
8418 Use frameset functions.
8419 (desktop-before-saving-frames-functions, desktop--filter-*-color)
8420 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
8421 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
8422 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
8423 (desktop--process-minibuffer-frames, desktop-save-frames)
8424 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
8425 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
8426 (desktop--sort-states, desktop-restoring-frames-p)
8427 (desktop-restore-frames): Remove. Most code moved to frameset.el.
8428 (desktop-restoring-frameset-p, desktop-restore-frameset)
8429 (desktop--check-dont-save, desktop-save-frameset): New functions.
8430 (desktop--app-id): New constant.
8431 (desktop-first-buffer, desktop-buffer-ok-count)
8432 (desktop-buffer-fail-count): Move before first use.
8433 * frameset.el: New file.
8434
8435 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
8436
8437 * files.el: Use lexical-binding.
8438 (dir-locals-read-from-file): Remove unused `err' variable.
8439 (hack-dir-local-variables--warned-coding): New var.
8440 (hack-dir-local-variables): Use it to avoid repeated warnings.
8441 (make-backup-file-name--default-function): New function.
8442 (make-backup-file-name-function): Use it as default.
8443 (buffer-stale--default-function): New function.
8444 (buffer-stale-function): Use it as default.
8445 (revert-buffer-insert-file-contents--default-function): New function.
8446 (revert-buffer-insert-file-contents-function): Use it as default.
8447 (insert-directory): Avoid add-to-list.
8448
8449 * autorevert.el (auto-revert-handler): Simplify.
8450 Use buffer-stale--default-function.
8451
8452 2013-08-01 Tassilo Horn <tsdh@gnu.org>
8453
8454 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
8455
8456 * whitespace.el (whitespace-ensure-local-variables): New function.
8457 (whitespace-cleanup-region): Call it.
8458 (whitespace-turn-on): Call it.
8459
8460 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
8461
8462 Complete file name handlers.
8463
8464 * net/tramp.el (tramp-handle-set-visited-file-modtime)
8465 (tramp-handle-verify-visited-file-modtime)
8466 (tramp-handle-file-notify-rm-watch): New functions.
8467 (tramp-call-process): Do not bind `default-directory'.
8468
8469 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
8470 Order alphabetically.
8471 <access-file, add-name-to-file, dired-call-process>:
8472 <dired-compress-file, file-acl, file-notify-rm-watch>:
8473 <file-ownership-preserved-p, file-selinux-context>:
8474 <make-directory-internal, make-symbolic-link, set-file-acl>:
8475 <set-file-selinux-context, set-visited-file-modtime>:
8476 <verify-visited-file-modtime>: Add handler.
8477 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
8478
8479 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
8480 <file-notify-add-watch, file-notify-rm-watch>:
8481 <set-file-times, set-visited-file-modtime>:
8482 <verify-visited-file-modtime>: Add handler.
8483 (with-tramp-gvfs-error-message)
8484 (tramp-gvfs-handle-set-visited-file-modtime)
8485 (tramp-gvfs-fuse-file-name): Remove.
8486 (tramp-gvfs-handle-file-notify-add-watch)
8487 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
8488 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
8489
8490 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
8491 Order alphabetically.
8492 <file-notify-rm-watch>: Use default Tramp handler.
8493 <executable-find>: Remove private handler.
8494 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
8495 `default-directory'.
8496 (tramp-sh-handle-executable-find)
8497 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
8498 (tramp-sh-file-gvfs-monitor-dir-process-filter)
8499 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
8500 Do not use `format' in `tramp-message'.
8501
8502 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
8503 <file-notify-rm-watch, set-visited-file-modtime>:
8504 <verify-visited-file-modtime>: Add handler.
8505 (tramp-smb-call-winexe): Do not bind `default-directory'.
8506
8507 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
8508
8509 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
8510
8511 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
8512
8513 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
8514 use it.
8515 (log-view-diff-changeset): Same.
8516 (log-view-diff-common): Call backend command `previous-revision'
8517 to find out the previous revision, in both cases. Swap the
8518 variables `to' and `fr', so that `fr' usually refers to the
8519 earlier revision (Bug#14989).
8520
8521 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
8522
8523 * ibuf-ext.el (ibuffer-filter-by-filename):
8524 Make it work with dired buffers too.
8525
8526 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8527
8528 * emacs-lisp/re-builder.el (reb-color-display-p):
8529 * files.el (save-buffers-kill-terminal):
8530 * net/browse-url.el (browse-url):
8531 * server.el (server-save-buffers-kill-terminal):
8532 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
8533 Prefer nil to selected-frame for the first arg of frame-parameter.
8534
8535 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
8536
8537 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
8538
8539 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
8540
8541 * minibuffer.el (completion--twq-all): Try and preserve each
8542 completion's case choice (bug#14907).
8543
8544 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
8545
8546 * net/network-stream.el (open-network-stream): Mention the new
8547 :nogreeting parameter.
8548 (network-stream-open-starttls): Use the :nogreeting parameter
8549 (bug#14938).
8550
8551 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
8552
8553 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
8554 more natural than popping.
8555
8556 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
8557 (shr-urlify): Highlight under mouse.
8558
8559 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
8560
8561 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
8562
8563 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
8564
8565 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
8566 buffer for output.
8567
8568 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
8569 point-min==1. Fix search string. Fix parentheses missing.
8570
8571 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
8572 assume point-min==1. Fix search string. Fix parentheses missing.
8573
8574 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
8575
8576 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
8577 buffer for output.
8578
8579 2013-07-29 Eli Zaretskii <eliz@gnu.org>
8580
8581 * frame.el (frame-notice-user-settings): Avoid inflooping when the
8582 initial frame is minibuffer-less. (Bug#14841)
8583
8584 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
8585
8586 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
8587 option.
8588
8589 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8590 (tramp-maybe-open-connection): Use it.
8591
8592 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
8593
8594 * desktop.el (desktop--make-frame): Include `minibuffer' in the
8595 minimal set of parameters passed when creating a frame, because
8596 the minibuffer status of a frame cannot be changed later.
8597
8598 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
8599
8600 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
8601 replace-regexp-in-string and inadvertent omissions in previous change.
8602 (todo-filter-items): Ensure only file names are comma-separated in
8603 name of filtered items buffer.
8604
8605 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
8606
8607 * desktop.el: Optionally force offscreen frames back onscreen.
8608 (desktop-restoring-reuses-frames): New option.
8609 (desktop--compute-pos, desktop--move-onscreen): New functions.
8610 (desktop--make-frame): Use desktop--move-onscreen.
8611
8612 2013-07-27 Alan Mackenzie <acm@muc.de>
8613
8614 Fontify a Java generic method as a function.
8615 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
8616 value to t.
8617
8618 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
8619
8620 * calendar/todo-mode.el: Add command to rename todo files.
8621 (todo-rename-file): New command.
8622 (todo-key-bindings-t): Add key binding for it. Change the
8623 bindings of todo-filter-regexp-items(-multifile) to use `x'
8624 instead of `r', since the latter is better suited to the new
8625 renaming command.
8626
8627 2013-07-27 Alan Mackenzie <acm@muc.de>
8628
8629 Make Java try-with-resources statement parse properly.
8630 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
8631 (c-block-stmt-1-2-key): New language constants/variables.
8632 * progmodes/cc-engine.el (c-beginning-of-statement-1)
8633 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
8634 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
8635 with c-block-stmt-1-2-key.
8636
8637 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
8638
8639 * desktop.el (desktop--make-frame): Apply most frame parameters after
8640 creating the frame to force (partially or totally) offscreen frames to
8641 be restored as such.
8642
8643 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
8644
8645 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
8646 (Bug#14948)
8647
8648 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8649
8650 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
8651 `base' arg of backtrace-frame.
8652
8653 2013-07-26 Eli Zaretskii <eliz@gnu.org>
8654
8655 * simple.el (list-processes): Doc fix.
8656
8657 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
8658
8659 * desktop.el (desktop--select-frame):
8660 Try harder to reuse existing frames.
8661
8662 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8663
8664 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
8665 (edebug-eval): Use backtrace-eval.
8666 (edebug--display, edebug--recursive-edit): Don't let-bind the
8667 edebug-outer-* vars that keep track of variables we locally let-bind.
8668 (edebug-outside-excursion): Don't restore outside values of locally
8669 let-bound vars.
8670 (edebug--display): Use user-error.
8671 (cl-lexical-debug, cl-debug-env): Remove.
8672
8673 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
8674
8675 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
8676 are restored to be sure that they are visible before deleting any
8677 remaining ones.
8678
8679 2013-07-26 Matthias Meulien <orontee@gmail.com>
8680
8681 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
8682 vc-print-root-log. (Bug#14948)
8683
8684 2013-07-26 Richard Stallman <rms@gnu.org>
8685
8686 Add aliases for encrypting mail.
8687 * epa.el (epa-mail-aliases): New option.
8688 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
8689 Bind inhibit-read-only so read-only text doesn't ruin everything.
8690 (epa-mail-default-recipients): New subroutine broken out.
8691 Handle epa-mail-aliases.
8692
8693 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8694
8695 Add support for lexical variables to the debugger's `e' command.
8696 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
8697 vars, except for debugger-outer-match-data.
8698 (debugger-frame-number): Move check for "on a function call" from
8699 callers into it. Add `skip-base' argument.
8700 (debugger-frame, debugger-frame-clear): Simplify accordingly.
8701 (debugger-env-macro): Only reset the state stored in non-variables,
8702 i.e. current-buffer and match-data.
8703 (debugger-eval-expression): Rewrite using backtrace-eval.
8704 * subr.el (internal--called-interactively-p--get-frame): Remove.
8705 (called-interactively-p):
8706 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
8707 `base' arg of backtrace-frame instead.
8708
8709 2013-07-26 Glenn Morris <rgm@gnu.org>
8710
8711 * align.el (align-regexp): Doc fix. (Bug#14857)
8712 (align-region): Explicit error if subexpression missing/does not match.
8713
8714 * simple.el (global-visual-line-mode):
8715 Do not duplicate the mode lighter. (Bug#14858)
8716
8717 2013-07-25 Martin Rudalics <rudalics@gmx.at>
8718
8719 * window.el (display-buffer): In display-buffer bind
8720 split-window-keep-point to t, bug#14829.
8721
8722 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
8723
8724 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
8725 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
8726 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
8727 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
8728 Change accordingly.
8729 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
8730 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
8731
8732 2013-07-25 Glenn Morris <rgm@gnu.org>
8733
8734 * dired-x.el (dired-mark-extension): Convert comment to doc string.
8735
8736 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
8737
8738 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
8739 parameter to modify-frame-parameters if the value has not changed;
8740 this is a workaround for bug#14949.
8741 (desktop--make-frame): On cl-delete-if call, check parameter name,
8742 not full parameter.
8743
8744 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
8745
8746 * vc/vc.el (vc-ignore): New function.
8747
8748 * vc/vc-svn.el (vc-svn-ignore): New function.
8749
8750 * vc/vc-hg.el (vc-hg-ignore): New function.
8751
8752 * vc/vc-git.el (vc-git-ignore): New function.
8753
8754 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
8755 (vc-dir-ignore): New function.
8756
8757 * vc/vc-cvs.el (vc-cvs-ignore): New function.
8758 (cvs-append-to-ignore): Move here from pcvs.el.
8759
8760 * vc/vc-bzr.el (vc-bzr-ignore): New function.
8761
8762 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
8763
8764 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
8765
8766 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
8767 (desktop-restore-frames): Warn when deleting an existing frame failed.
8768
8769 2013-07-24 Glenn Morris <rgm@gnu.org>
8770
8771 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
8772
8773 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
8774
8775 * filenotify.el (file-notify-supported-p):
8776 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
8777 Remove functions.
8778
8779 * autorevert.el (auto-revert-use-notify)
8780 (auto-revert-notify-add-watch):
8781 * net/tramp.el (tramp-file-name-for-operation):
8782 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
8783 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8784 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
8785 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
8786 Remove `file-notify-supported-p' entry.
8787
8788 2013-07-24 Glenn Morris <rgm@gnu.org>
8789
8790 * printing.el: Replace all uses of deleted ps-windows-system,
8791 ps-lp-system, ps-flatten-list with lpr- versions.
8792
8793 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
8794
8795 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
8796 checked with memq (bug#14935).
8797
8798 * files.el (revert-buffer-function): Use a non-nil default.
8799 (revert-buffer-preserve-modes): Declare var to
8800 provide access to the `preserve-modes' argument.
8801 (revert-buffer): Let-bind it.
8802 (revert-buffer--default): New function, extracted from revert-buffer.
8803
8804 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
8805
8806 * lpr.el: Signal print errors more prominently.
8807 (print-region-function): Don't default to nil.
8808 (lpr-print-region): New function, extracted from print-region-1.
8809 Check lpr's return value and signal an error in case of problem.
8810 (print-region-1): Use it.
8811 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
8812 versions instead.
8813 (ps-printer-name): Default to nil.
8814 (ps-printer-name-option): Default to lpr-printer-switch.
8815 (ps-print-region-function): Don't default to nil.
8816 (ps-postscript-code-directory): Simplify default.
8817 (ps-do-despool): Use lpr-print-region to properly check the outcome.
8818 (ps-string-list, ps-eval-switch, ps-flatten-list)
8819 (ps-flatten-list-1): Remove.
8820 (ps-multibyte-buffer): Avoid setq.
8821 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
8822 (print-region-function, ps-print-region-function): Don't set them here.
8823
8824 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
8825
8826 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
8827 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
8828 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
8829 (ido-decorations): Doc fix.
8830
8831 * ansi-color.el: Fix old URL.
8832
8833 2013-07-23 Michael R. Mauger <michael@mauger.com>
8834
8835 * progmodes/sql.el: Version 3.3
8836 (sql-product-alist): Improve oracle :prompt-cont-regexp.
8837 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
8838 (sql-interactive-remove-continuation-prompt): Rewrite, use
8839 functions above. Fix continuation prompt and complete output line
8840 handling.
8841 (sql-redirect-one, sql-execute): Use `read-only-mode' on
8842 redirected output buffer.
8843 (sql-mode): Restore deleted code (Bug#13591).
8844
8845 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
8846
8847 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
8848
8849 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
8850
8851 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
8852
8853 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
8854 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8855 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
8856
8857 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
8858
8859 * desktop.el (desktop-clear): Simplify; remove useless checks
8860 against invalid buffer names.
8861 (desktop-list*): Use cl-list*.
8862 (desktop-buffer-info, desktop-create-buffer): Simplify.
8863
8864 2013-07-23 Leo Liu <sdl.web@gmail.com>
8865
8866 * bookmark.el (bookmark-make-record): Restore NAME as a default
8867 value. (Bug#14933)
8868
8869 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
8870
8871 * emacs-lisp/autoload.el (autoload--setup-output): New function,
8872 extracted from autoload--insert-text.
8873 (autoload--insert-text): Remove.
8874 (autoload--print-cookie-text): New function, extracted from
8875 autoload--insert-cookie-text.
8876 (autoload--insert-cookie-text): Remove.
8877 (autoload-generate-file-autoloads): Adjust calls accordingly.
8878
8879 * winner.el (winner-hook-installed-p): Remove.
8880 (winner-mode): Simplify accordingly.
8881
8882 * subr.el (add-to-list): Fix compiler-macro when `append' is
8883 not constant. Don't use `cl-member' for the base case.
8884
8885 * progmodes/subword.el: Fix boundary case (bug#13758).
8886 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
8887 own group.
8888 (subword-backward-regexp): Make it a constant.
8889 (subword-forward-internal): Don't treat a trailing capital as the
8890 beginning of a word.
8891
8892 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
8893
8894 * emacs-lisp/package.el (package-menu-mode): Don't modify the
8895 global value of tabulated-list-revert-hook (bug#14930).
8896
8897 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
8898
8899 * desktop.el: Require 'cl-lib.
8900 (desktop-before-saving-frames-functions): New hook.
8901 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
8902 for frames being saved. Rename from desktop--save-minibuffer-frames.
8903 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
8904 Do not save frames with non-nil `desktop-dont-save' parameter.
8905 Filter out deleted frames.
8906 (desktop--find-frame): Use cl-find-if.
8907 (desktop--select-frame): Use cl-(first|second|third) to access values
8908 of desktop-mini.
8909 (desktop--make-frame): Use cl-delete-if.
8910 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
8911 (desktop-restore-frames): Use cl-(first|second|third) to access values
8912 of desktop-mini. Look for visible frame at the end, not while
8913 restoring frames.
8914
8915 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
8916 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
8917 Use string-match-p, looking-at-p (bug#14927).
8918
8919 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
8920
8921 * desktop.el (desktop-saved-frame-states):
8922 Rename from desktop--saved-states; all users changed.
8923 (desktop-save-frames): Rename from desktop--save-frames.
8924 Do not save state to desktop file.
8925 (desktop-save): Save desktop-saved-frame-states to desktop file
8926 and reset to nil.
8927 (desktop-restoring-frames-p): New function.
8928 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
8929 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
8930 buffer-lists when restoring frames. Suggested by Martin Rudalics.
8931
8932 * desktop.el: Correctly restore iconified frames.
8933 (desktop--filter-iconified-position): New function.
8934 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
8935
8936 2013-07-20 Glenn Morris <rgm@gnu.org>
8937
8938 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
8939 Let `message' do the formatting.
8940 (def-gdb-preempt-display-buffer): Add explicit format.
8941
8942 * image-dired.el (image-dired-track-original-file):
8943 Use with-current-buffer.
8944 (image-dired-track-thumbnail): Use with-current-buffer.
8945 Avoid changing point of wrong window.
8946
8947 * image-dired.el (image-dired-track-original-file):
8948 Avoid changing point of wrong window. (Bug#14909)
8949
8950 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
8951
8952 * progmodes/gdb-mi.el (gdb-done-or-error):
8953 Guard against "%" in gdb output. (Bug#14127)
8954
8955 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
8956
8957 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
8958 (Bug#14826)
8959
8960 * international/mule.el (coding-system-iso-2022-flags): Fix last
8961 change.
8962
8963 2013-07-20 Kenichi Handa <handa@gnu.org>
8964
8965 * international/mule.el (coding-system-iso-2022-flags):
8966 Add `8-bit-level-4'. (Bug#8522)
8967
8968 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8969
8970 * net/shr.el (shr-mouse-browse-url): New command and keystroke
8971 (bug#14815).
8972
8973 * net/eww.el (eww-process-text-input): Allow inputting when the
8974 point is at the start of the line, as the properties aren't
8975 front-sticky.
8976
8977 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
8978 degenerate widths.
8979
8980 2013-07-19 Richard Stallman <rms@gnu.org>
8981
8982 * epa.el (epa-popup-info-window): Doc fix.
8983
8984 * subr.el (split-string): New arg TRIM.
8985
8986 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
8987
8988 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
8989 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
8990
8991 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
8992
8993 * filenotify.el (file-notify--library): Rename from
8994 `file-notify-support'. Do not autoload. Adapt all uses.
8995 (file-notify-supported-p): New defun.
8996
8997 * autorevert.el (auto-revert-use-notify):
8998 Use `file-notify-supported-p' instead of `file-notify-support'.
8999 Adapt docstring.
9000 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
9001
9002 * net/tramp.el (tramp-file-name-for-operation):
9003 Add `file-notify-supported-p'.
9004
9005 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
9006 New defun.
9007 (tramp-sh-file-name-handler-alist): Add it as handler for
9008 `file-notify-supported-p '.
9009
9010 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
9011 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
9012 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
9013 Add `ignore' as handler for `file-notify-*' functions.
9014
9015 2013-07-17 Eli Zaretskii <eliz@gnu.org>
9016
9017 * simple.el (line-move-partial, line-move): Don't start vscroll or
9018 scroll-up if the current line is not taller than the window.
9019 (Bug#14881)
9020
9021 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
9022
9023 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
9024 highlight question marks in the method names as strings.
9025 (ruby-block-beg-keywords): Inline.
9026 (ruby-font-lock-keyword-beg-re): Extract from
9027 `ruby-font-lock-keywords'.
9028
9029 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
9030
9031 * frame.el (blink-cursor-blinks): New defcustom.
9032 (blink-cursor-blinks-done): New defvar.
9033 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
9034 (blink-cursor-timer-function): Check if number of blinks has been
9035 done on X and NS.
9036 (blink-cursor-suspend, blink-cursor-check): New defuns.
9037
9038 2013-07-15 Glenn Morris <rgm@gnu.org>
9039
9040 * edmacro.el (edmacro-format-keys): Fix previous change.
9041
9042 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
9043
9044 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
9045 The hack didn't work outside English locales anyway.
9046
9047 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
9048
9049 * simple.el (define-alternatives): Rename from alternatives-define,
9050 per RMS' suggestion.
9051
9052 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
9053
9054 * desktop.el (desktop-restore-frames): Change default to t.
9055 (desktop-restore-in-current-display): Now offer more options.
9056 (desktop-restoring-reuses-frames): New customization option.
9057 (desktop--saved-states): Doc fix.
9058 (desktop-filter-parameters-alist): New variable, renamed and expanded
9059 from desktop--excluded-frame-parameters.
9060 (desktop--target-display): New variable.
9061 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
9062 (desktop--filter-tty*, desktop--filter-*-color)
9063 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
9064 (desktop--filter-save-desktop-parm)
9065 (desktop-restore-in-original-display-p): New functions.
9066 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
9067 (desktop--save-minibuffer-frames): New function, inspired by a similar
9068 function from Martin Rudalics.
9069 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
9070 (desktop--restore-in-this-display-p): Remove.
9071 (desktop--find-frame): Rename from desktop--find-frame-in-display
9072 and add predicate argument.
9073 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
9074 (desktop--reuse-list): New variable.
9075 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
9076 New functions.
9077 (desktop--restore-frames): Add support for "minibuffer-special" frames.
9078
9079 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
9080
9081 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
9082
9083 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
9084
9085 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9086 Highlight conversion methods on Kernel.
9087
9088 2013-07-13 Alan Mackenzie <acm@muc.de>
9089
9090 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
9091 and comment it out. This out-commenting enables certain C++
9092 declarations to be parsed correctly.
9093
9094 2013-07-13 Eli Zaretskii <eliz@gnu.org>
9095
9096 * international/mule.el (define-coding-system): Doc fix.
9097
9098 * simple.el (default-font-height): Don't call font-info if the
9099 frame's default font didn't change since the frame was created.
9100 (Bug#14838)
9101
9102 2013-07-13 Leo Liu <sdl.web@gmail.com>
9103
9104 * ido.el (ido-read-file-name): Guard against non-symbol value.
9105
9106 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
9107
9108 * progmodes/python.el (python-imenu--build-tree): Fix corner case
9109 in nested defuns.
9110
9111 2013-07-13 Leo Liu <sdl.web@gmail.com>
9112
9113 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
9114 ido-set-matches call. (Bug#6852)
9115
9116 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
9117
9118 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
9119 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
9120 Ruby 2.0.
9121 (ruby-font-lock-keywords): Distinguish calls to functions with
9122 module-like names from module references. Highlight character
9123 literals.
9124
9125 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
9126
9127 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
9128 (gdb-send): Handle continued commands. (Bug#14847)
9129
9130 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
9131
9132 * desktop.el (desktop--v2s): Remove unused local variable.
9133 (desktop-save-buffer): Make defvar-local; adjust docstring.
9134 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
9135 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
9136
9137 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
9138
9139 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
9140
9141 2013-07-12 Eli Zaretskii <eliz@gnu.org>
9142
9143 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
9144 (Bug#14842)
9145
9146 2013-07-12 Glenn Morris <rgm@gnu.org>
9147
9148 * doc-view.el: Require cl-lib at runtime too.
9149 (doc-view-remove-if): Remove.
9150 (doc-view-search-next-match, doc-view-search-previous-match):
9151 Use cl-remove-if.
9152
9153 * edmacro.el: Require cl-lib at runtime too.
9154 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
9155 (edmacro-mismatch, edmacro-subseq): Remove.
9156
9157 * shadowfile.el: Require cl-lib.
9158 (shadow-remove-if): Remove.
9159 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
9160 Use cl-remove-if.
9161
9162 * wid-edit.el: Require cl-lib.
9163 (widget-choose): Use cl-remove-if.
9164 (widget-remove-if): Remove.
9165
9166 * progmodes/ebrowse.el: Require cl-lib at runtime too.
9167 (ebrowse-delete-if-not): Remove.
9168 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
9169 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
9170 Use cl-delete-if-not.
9171
9172 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
9173
9174 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
9175 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
9176
9177 2013-07-12 Leo Liu <sdl.web@gmail.com>
9178
9179 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
9180
9181 2013-07-11 Glenn Morris <rgm@gnu.org>
9182
9183 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
9184 (edebug-gensym-index, edebug-gensym):
9185 Remove reimplementation of cl-gensym.
9186 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
9187
9188 * thumbs.el: Require cl-lib at run-time too.
9189 (thumbs-gensym-counter, thumbs-gensym):
9190 Remove reimplementation of cl-gensym.
9191 (thumbs-temp-file): Use cl-gensym.
9192
9193 * emacs-lisp/ert.el: Require cl-lib at runtime too.
9194 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
9195 (ert--intersection, ert--set-difference, ert--set-difference-eq)
9196 (ert--union, ert--gensym-counter, ert--gensym-counter)
9197 (ert--coerce-to-vector, ert--remove*, ert--string-position)
9198 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
9199 (ert-make-test-unbound, ert--expand-should-1)
9200 (ert--expand-should, ert--should-error-handle-error)
9201 (should-error, ert--explain-equal-rec)
9202 (ert--plist-difference-explanation, ert-select-tests)
9203 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
9204 Use cl-lib functions rather than reimplementations.
9205
9206 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
9207
9208 * net/tramp.el (tramp-methods): Extend docstring.
9209 (tramp-connection-timeout): New defcustom.
9210 (tramp-error-with-buffer): Reset timestamp only when appropriate.
9211 (with-tramp-progress-reporter): Simplify.
9212 (tramp-process-actions): Improve messages.
9213
9214 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9215 * net/tramp-sh.el (tramp-maybe-open-connection):
9216 Use `tramp-connection-timeout'.
9217 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
9218 (Bug#14808)
9219
9220 2013-07-11 Leo Liu <sdl.web@gmail.com>
9221
9222 * ido.el (ido-read-file-name): Conform to the requirements of
9223 read-file-name. (Bug#11861)
9224 (ido-read-directory-name): Conform to the requirements of
9225 read-directory-name.
9226
9227 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
9228
9229 * subr.el (delay-warning): New function.
9230
9231 2013-07-10 Eli Zaretskii <eliz@gnu.org>
9232
9233 * simple.el (default-line-height): New function.
9234 (line-move-partial, line-move): Use it instead of computing the
9235 line height inline.
9236 (line-move-partial): Always compute ROWH. If the last line is
9237 partially-visible, but its text is completely visible, allow
9238 cursor to enter such a partially-visible line.
9239
9240 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
9241
9242 Improve error messages. (Bug#14808)
9243
9244 * net/tramp.el (tramp-current-connection): New defvar, moved from
9245 tramp-sh.el.
9246 (tramp-message-show-progress-reporter-message): Remove, not
9247 needed anymore.
9248 (tramp-error-with-buffer): Show message in minibuffer.
9249 Discard input before waiting. Reset connection timestamp.
9250 (with-tramp-progress-reporter): Improve messages.
9251 (tramp-process-actions): Use progress reporter. Delete process in
9252 case of error. Improve messages.
9253
9254 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
9255 Call `tramp-error-with-buffer' with vector and buffer.
9256 (tramp-current-connection): Remove.
9257 (tramp-maybe-open-connection): The car of
9258 `tramp-current-connection' are the first 3 slots of the vector.
9259
9260 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
9261
9262 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
9263 inside continued strings.
9264
9265 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
9266
9267 Timestamp fixes for undo (Bug#14824).
9268 * files.el (clear-visited-file-modtime): Move here from fileio.c.
9269
9270 2013-07-10 Leo Liu <sdl.web@gmail.com>
9271
9272 * files.el (require-final-newline): Allow safe local value.
9273 (Bug#14834)
9274
9275 2013-07-09 Leo Liu <sdl.web@gmail.com>
9276
9277 * ido.el (ido-read-directory-name): Handle fallback.
9278 (ido-read-file-name): Update DIR to ido-current-directory.
9279 (Bug#1516)
9280 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
9281
9282 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
9283
9284 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
9285 "autoload". Remove "warn lower camel case" section, previously
9286 commented out. Highlight negation char. Do not highlight the
9287 target in singleton method definitions.
9288
9289 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
9290
9291 * faces.el (tty-setup-hook): Declare the hook.
9292
9293 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
9294 and detect when a guard/pred depends on local vars (bug#14773).
9295 (pcase--u1): Adjust caller.
9296
9297 2013-07-08 Eli Zaretskii <eliz@gnu.org>
9298
9299 * simple.el (line-move-partial, line-move): Account for
9300 line-spacing.
9301 (line-move-partial): Avoid setting vscroll when the last
9302 partially-visible line in window is of default height.
9303
9304 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
9305
9306 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
9307 been used a while.
9308
9309 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
9310
9311 * subr.el (read-quoted-char): Remove unused local variable `char'.
9312
9313 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
9314
9315 * ediff.el (ediff-version): Version update.
9316 (ediff-files-command, ediff3-files-command, ediff-merge-command)
9317 (ediff-merge-with-ancestor-command, ediff-directories-command)
9318 (ediff-directories3-command, ediff-merge-directories-command)
9319 (ediff-merge-directories-with-ancestor-command): New functions.
9320 All are command-line interfaces to ediff: to facilitate calling
9321 Emacs with the appropriate ediff functions invoked.
9322
9323 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
9324 (viper-save-kill-buffer): Check if buffer is modified.
9325
9326 * viper.el (viper-version): Version update.
9327 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
9328
9329 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
9330
9331 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
9332 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
9333 (viper-intercept-ESC-key): Simplify.
9334 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
9335 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
9336 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
9337 (viper-setup-ESC-to-escape): New functions.
9338 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
9339 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
9340
9341 2013-07-07 Eli Zaretskii <eliz@gnu.org>
9342
9343 * simple.el (default-font-height, window-screen-lines):
9344 New functions.
9345 (line-move, line-move-partial): Use them instead of
9346 frame-char-height and window-text-height. This makes scrolling
9347 text smoother when the buffer's default face uses a font that is
9348 different from the frame's default font.
9349
9350 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
9351
9352 * files.el (write-file): Do not display confirm dialog for NS,
9353 it does its own dialog, which can't be canceled (Bug#14578).
9354
9355 2013-07-06 Eli Zaretskii <eliz@gnu.org>
9356
9357 * simple.el (line-move-partial): Adjust the row returned by
9358 posn-at-point for the current window-vscroll. (Bug#14567)
9359
9360 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
9361
9362 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
9363 (tramp-sh-file-inotifywait-process-filter): Handle file names with
9364 spaces.
9365
9366 2013-07-06 Martin Rudalics <rudalics@gmx.at>
9367
9368 * window.el (window-state-put-stale-windows): New variable.
9369 (window--state-put-2): Save list of windows without matching buffer.
9370 (window-state-put): Remove "bufferless" windows if possible.
9371
9372 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
9373
9374 * simple.el (alternatives-define): Remove leftover :group keyword.
9375 Tweak docstring.
9376
9377 2013-07-06 Leo Liu <sdl.web@gmail.com>
9378
9379 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
9380 (ido-enable-virtual-buffers): New variable.
9381 (ido-buffer-internal, ido-toggle-virtual-buffers)
9382 (ido-make-buffer-list): Use it.
9383 (ido-exhibit): Support turning on and off virtual buffers
9384 automatically.
9385
9386 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
9387
9388 * simple.el (alternatives-define): New macro.
9389
9390 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
9391
9392 * subr.el (read-quoted-char): Use read-key.
9393 (sit-for): Let read-event decode tty input (bug#14782).
9394
9395 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
9396
9397 * calendar/todo-mode.el: Add handling of file deletion, both by
9398 mode command and externally. Fix various related bugs.
9399 Clarify Commentary and improve some documentation strings and code.
9400 (todo-delete-file): New command.
9401 (todo-check-file): New function.
9402 (todo-show): Handle external deletion of the file we're trying to
9403 show (bug#14688). Replace called-interactively-p by an optional
9404 prefix argument to avoid problematic interaction with catch form
9405 when byte compiled (bug#14702).
9406 (todo-quit): Handle external deletion of the archive's todo file.
9407 Make sure the buffer that was visiting the archive file is still
9408 live before trying to bury it.
9409 (todo-category-completions): Handle external deletion of any
9410 category completion files.
9411 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
9412 of todo files, in case of external deletion.
9413 (todo-add-file): Replace unnecessary setq by let-binding.
9414 (todo-find-archive): Check whether there are any archives.
9415 Replace unnecessary setq by let-binding.
9416 (todo-archive-done-item): Use find-file-noselect to get the
9417 archive buffer whether or not the archive already exists.
9418 Remove superfluous code. Use file size instead of buffer-file-name to
9419 check if the archive is new; if it is, update list of archives.
9420 (todo-default-todo-file): Allow nil to be a valid value for when
9421 there are no todo files.
9422 (todo-reevaluate-default-file-defcustom): Use corrected definition
9423 of todo-default-todo-file.
9424 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
9425 (todo-delete-category, todo-show-categories-table)
9426 (todo-category-number): Clarify comment.
9427 (todo-filter-items): Clarify documentation string.
9428 (todo-show-current-file, todo-display-as-todo-file)
9429 (todo-reset-and-enable-done-separator): Tweak documentation string.
9430 (todo-done-separator): Make separator length window-width, since
9431 bug#2749 is now fixed.
9432
9433 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
9434
9435 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
9436 Support both "gvfs-monitor-dir" and "inotifywait".
9437 (tramp-sh-file-inotifywait-process-filter): Rename from
9438 `tramp-sh-file-notify-process-filter'.
9439 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9440 (tramp-get-remote-gvfs-monitor-dir): New defuns.
9441
9442 2013-07-05 Leo Liu <sdl.web@gmail.com>
9443
9444 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
9445
9446 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9447
9448 * frame.el (display-pixel-height, display-pixel-width)
9449 (display-mm-height, display-mm-width): Mention behavior on
9450 multi-monitor setups in docstrings.
9451 (w32-display-monitor-attributes-list): Declare function.
9452 (display-monitor-attributes-list): Use it.
9453
9454 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
9455
9456 * filenotify.el: New package.
9457
9458 * autorevert.el (top): Require filenotify.el.
9459 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
9460 instead.
9461 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
9462 (auto-revert-notify-handler): Use `file-notify-*' functions.
9463
9464 * subr.el (file-notify-handle-event): Move function to filenotify.el.
9465
9466 * net/tramp.el (tramp-file-name-for-operation):
9467 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
9468
9469 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
9470 for `file-notify-add-watch' and `file-notify-rm-watch'.
9471 (tramp-process-sentinel): Improve trace.
9472 (tramp-sh-handle-file-notify-add-watch)
9473 (tramp-sh-file-notify-process-filter)
9474 (tramp-sh-handle-file-notify-rm-watch)
9475 (tramp-get-remote-inotifywait): New defuns.
9476
9477 2013-07-03 Juri Linkov <juri@jurta.org>
9478
9479 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
9480 call of `occur-read-primary-args' to interactive spec.
9481
9482 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
9483 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
9484
9485 2013-07-03 Matthias Meulien <orontee@gmail.com>
9486
9487 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
9488 `Buffer-menu-multi-occur'. Add it to the menu.
9489 (Buffer-menu-mode): Document it in docstring.
9490 (Buffer-menu-multi-occur): New command. (Bug#14673)
9491
9492 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
9493
9494 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
9495 keywords and built-ins.
9496
9497 2013-07-03 Glenn Morris <rgm@gnu.org>
9498
9499 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
9500
9501 Make info-xref checks case-sensitive by default
9502 * info.el (Info-find-node, Info-find-in-tag-table)
9503 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
9504 Add option for exact case matching of nodes.
9505 * info-xref.el (info-xref): New custom group.
9506 (info-xref-case-fold): New option.
9507 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
9508
9509 2013-07-03 Leo Liu <sdl.web@gmail.com>
9510
9511 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
9512
9513 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
9514
9515 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
9516 middle of block statement initially, lower the depth. Remove
9517 FIXME comment, not longer valid. Remove middle of block statement
9518 detection, no need to do that anymore since we've been using
9519 `ruby-parse-region' here.
9520
9521 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
9522
9523 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
9524
9525 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
9526
9527 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
9528
9529 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
9530
9531 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
9532 (desktop-restore-in-current-display): New customization option.
9533 (desktop--excluded-frame-parameters): Add `font'.
9534 (desktop--save-frames): Rename from desktop--save-windows.
9535 (desktop--restore-in-this-display-p): New function.
9536 (desktop--make-full-frame): Remove unwanted width/height from
9537 full(width|height) frames.
9538 (desktop--restore-frames): Rename from desktop--restore-windows.
9539 Obey desktop-restore-current-display. Do not delete old frames or
9540 select a new frame unless we were able to restore at least one frame.
9541
9542 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
9543
9544 * files.el (find-file-noselect): Simplify conditional expression.
9545
9546 * textmodes/remember.el (remember-append-to-file):
9547 Don't mix `find-buffer-visiting' and `get-file-buffer'.
9548
9549 Add `remember-notes' function to store random notes across Emacs
9550 restarts.
9551 * textmodes/remember.el (remember-data-file): Add :set callback to
9552 affect notes buffer (if any).
9553 (remember-notes): New command.
9554 (remember-notes-buffer-name, bury-remember-notes-on-kill):
9555 New defcustoms for the `remember-notes' function.
9556 (remember-notes-save-and-bury-buffer): New command.
9557 (remember-notes-mode-map): New variable.
9558 (remember-mode): New minor mode.
9559 (remember-notes--kill-buffer-query): New function.
9560 * startup.el (initial-buffer-choice): Add notes to custom type.
9561
9562 2013-06-30 Eli Zaretskii <eliz@gnu.org>
9563
9564 * bindings.el (right-char, left-char): Don't call sit-for, this is
9565 no longer needed. Use arithmetic comparison only for numerical
9566 arguments.
9567
9568 * international/mule-cmds.el (select-safe-coding-system):
9569 Handle the case of FROM being a string correctly. (Bug#14755)
9570
9571 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9572
9573 * net/shr.el (shr-make-table-1): Add a sanity check that allows
9574 progression on degenerate tables.
9575 (shr-rescale-image): ImageMagick animated images currently don't work.
9576
9577 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
9578
9579 Some fixes and improvements for desktop frame restoration.
9580 It is still experimental and disabled by default.
9581 * desktop.el (desktop--save-windows): Put the selected frame at
9582 the head of the list.
9583 (desktop--make-full-frame): New function.
9584 (desktop--restore-windows): Try to re-select the frame that was
9585 selected upon saving. Do not abort if some frames fail to restore,
9586 just show an error message and continue. Set up maximized frames
9587 so they have default non-maximized dimensions.
9588
9589 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
9590
9591 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
9592 Don't start heredoc inside a string or comment.
9593
9594 2013-06-29 Eli Zaretskii <eliz@gnu.org>
9595
9596 * bindings.el (visual-order-cursor-movement): New defcustom.
9597 (right-char, left-char): Provide visual-order cursor motion by
9598 calling move-point-visually. Update the doc strings.
9599
9600 2013-06-28 Kenichi Handa <handa@gnu.org>
9601
9602 * international/mule.el (define-coding-system): New coding system
9603 properties :inhibit-null-byte-detection,
9604 :inhibit-iso-escape-detection, and :prefer-utf-8.
9605 (set-buffer-file-coding-system): If :charset-list property of
9606 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
9607 appropriate for setting.
9608
9609 * international/mule-cmds.el (select-safe-coding-system):
9610 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
9611 multibyte characters, return utf-8 (or one of its siblings).
9612
9613 * international/mule-conf.el (prefer-utf-8): New coding system.
9614 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
9615 files.
9616
9617 2013-06-28 Ivan Kanis <ivan@kanis.fr>
9618
9619 * net/shr.el (shr-render-region): New function.
9620
9621 * net/eww.el: Autoload `eww-browse-url'.
9622
9623 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
9624
9625 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9626 Adapt to `package-desc-version' being a list.
9627 Use `package--ac-desc-version' to retrieve version from a package
9628 archive element.
9629
9630 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
9631
9632 New experimental feature to save&restore window and frame setup.
9633 * desktop.el (desktop-save-windows): New defcustom.
9634 (desktop--saved-states): New var.
9635 (desktop--excluded-frame-parameters): New defconst.
9636 (desktop--filter-frame-parms, desktop--find-frame-in-display)
9637 (desktop--restore-windows, desktop--save-windows): New functions.
9638 (desktop-save): Call `desktop--save-windows'.
9639 (desktop-read): Call `desktop--restore-windows'.
9640
9641 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9642
9643 * net/shr.el (add-face-text-property): Remove compat definition.
9644
9645 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
9646
9647 * info.el (Info-try-follow-nearest-node): Move search for footnote
9648 above search for node name to prevent missing a footnote (bug#14717).
9649
9650 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
9651
9652 * obsolete/otodo-mode.el: Add obsolescence info to file header.
9653
9654 2013-06-27 Leo Liu <sdl.web@gmail.com>
9655
9656 * net/eww.el (eww-read-bookmarks): Check file size.
9657
9658 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
9659
9660 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
9661 advice--pending if newdef is nil or an autoload (bug#13820).
9662 (advice-mapc): New function.
9663
9664 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
9665
9666 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
9667 probably.
9668 (eww-mode-map): Add a menu bar.
9669 (eww-add-bookmark): New command.
9670 (eww-bookmark-mode): New mode and commands.
9671 (eww-add-bookmark): Remove newlines from the title.
9672 (eww-bookmark-browse): Don't bug out if it's the only window.
9673
9674 2013-06-26 Glenn Morris <rgm@gnu.org>
9675
9676 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
9677 (hfy-size): Handle ttys. (Bug#14668)
9678
9679 * info-xref.el: Update for Texinfo 5 change in *note format.
9680 (info-xref-node-re, info-xref-note-re): New constants.
9681 (info-xref-check-buffer): Use info-xref-note-re.
9682
9683 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
9684
9685 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
9686
9687 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
9688 nil terminate the loop (bug#14718).
9689
9690 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9691
9692 * net/eww.el: Rework history traversal. When going forward/back,
9693 put these actions into the history, too, so that they can be
9694 replayed.
9695 (eww-render): Move the history reset to the correct buffer.
9696
9697 2013-06-25 Juri Linkov <juri@jurta.org>
9698
9699 * files-x.el (modify-dir-local-variable): Change the header comment
9700 in the file with directory local variables. (Bug#14692)
9701
9702 * files-x.el (read-file-local-variable-value): Add `default'.
9703 (Bug#14710)
9704
9705 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9706
9707 * net/eww.el (eww-make-unique-file-name): Create a unique file
9708 name before saving to entering `y' accidentally asynchronously.
9709
9710 2013-06-25 Ivan Kanis <ivan@kanis.fr>
9711
9712 * net/eww.el (eww-download): New command and keystroke.
9713
9714 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9715
9716 * net/eww.el (eww-copy-page-url): Change name of command.
9717
9718 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
9719 be more consistent with Info and dired.
9720
9721 * net/eww.el (eww-mode-map): Ditto.
9722
9723 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9724
9725 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
9726 packages from archives.
9727 (package-archive-contents): Change format; include obsolete packages.
9728 (package-desc): Use `dir' to mark builtin packages.
9729 (package--from-builtin): Set the `dir' field to `builtin'.
9730 (generated-autoload-file, version-control): Declare.
9731 (package-compute-transaction): Change first arg and return value to be
9732 lists of package-descs. Adjust to new package-archive-contents format.
9733 (package--add-to-archive-contents): Adjust to new
9734 package-archive-contents format.
9735 (package-download-transaction): Arg is now a list of package-descs.
9736 (package-install): If `pkg' is a package name, pass it as
9737 a requirement, so it is subject to the usual (e.g. disabled) checks.
9738 (describe-package): Accept package-desc as well.
9739 (describe-package-1): Describe a specific package-desc. Add links to
9740 other package-descs for the same package name.
9741 (package-menu-describe-package): Pass the actual package-desc.
9742 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
9743 works correctly.
9744 (package-desc-status): New function.
9745 (package-menu--refresh): New function, extracted
9746 from package-menu--generate.
9747 (package-menu--generate): Use it.
9748 (package-delete): Update package-alist.
9749 (package-menu-execute): Don't call package-initialize.
9750
9751 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
9752 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
9753 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
9754 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
9755 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
9756 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
9757
9758 2013-06-25 Martin Rudalics <rudalics@gmx.at>
9759
9760 * window.el (window--state-get-1): Workaround for bug#14527.
9761 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
9762
9763 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9764
9765 * net/eww.el (eww-back-url): Implement the history by stashing all
9766 the data into a list.
9767 (eww-forward-url): Allow going forward in the history, too.
9768
9769 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9770
9771 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
9772 for values and use read--expression for expressions (bug#14710).
9773 (read-file-local-variable): Avoid setq.
9774 (read-file-local-variable-mode): Use minor-mode-list.
9775
9776 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9777
9778 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
9779 for DOI URLs.
9780
9781 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9782
9783 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
9784 Update imenu-support when dialect changes.
9785
9786 2013-06-25 Leo Liu <sdl.web@gmail.com>
9787
9788 * ido.el (ido-read-internal): Allow forward slash on windows.
9789
9790 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
9791
9792 * net/eww.el (eww): Start of strings is \\`, not ^.
9793
9794 2013-06-24 Ivan Kanis <ivan@kanis.fr>
9795
9796 * net/shr.el (shr-browse-url): Fix interactive spec.
9797
9798 * net/eww.el (eww): Add a trailing slash to domain names.
9799
9800 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
9801
9802 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
9803
9804 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
9805
9806 * net/shr.el (shr-browse-url): Use an external browser if given a
9807 prefix.
9808
9809 * net/eww.el (eww-external-browser): Move to shr.
9810
9811 2013-06-24 Ivan Kanis <ivan@kanis.fr>
9812
9813 * net/eww.el (eww): Work more correctly for file: URLs.
9814 (eww-detect-charset): Allow quoted charsets.
9815 (eww-yank-page-url): New command and keystroke.
9816
9817 2013-06-24 Daiki Ueno <ueno@gnu.org>
9818
9819 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
9820 file name of gpg executable.
9821 (epg-context-program): New function.
9822 (epg-context-home-directory): New function.
9823 (epg-context-set-program): New function.
9824 (epg-context-set-home-directory): New function.
9825 (epg--start): Use `epg-context-program' instead of
9826 'epg-gpg-program'.
9827 (epg--list-keys-1): Likewise.
9828
9829 2013-06-24 Leo Liu <sdl.web@gmail.com>
9830
9831 * ido.el (ido-read-internal): Fix bug#14620.
9832
9833 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
9834
9835 * faces.el (face-documentation): Simplify.
9836 (read-face-attribute, tty-find-type, x-resolve-font-name):
9837 Use `string-match-p'.
9838 (list-faces-display): Use `string-match-p'. Simplify.
9839 (face-spec-recalc): Check face to avoid face alias loops.
9840 (read-color): Use `string-match-p' and non-capturing parenthesis.
9841
9842 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
9843
9844 * net/shr.el (shr-rescale-image): Use the new
9845 :max-width/:max-height functionality.
9846
9847 2013-06-23 Ivan Kanis <ivan@kanis.fr>
9848
9849 * net/eww.el (eww-search-prefix): New variable.
9850 (eww): Use it.
9851 (eww-external-browser): New variable.
9852 (eww-mode-map): New keystroke.
9853 (eww-browse-with-external-browser): New command.
9854
9855 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
9856
9857 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
9858
9859 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
9860 Don't skip aligning the next header field when padding is 0;
9861 otherwise, field width is not respected unless the title is as
9862 wide as the field.
9863
9864 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9865
9866 * emacs-lisp/package.el (package-el-version): Remove.
9867 (package-process-define-package): Fix inf-loop.
9868 (package-install): Allow symbols as arguments again.
9869
9870 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
9871
9872 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
9873 add some more keyword-like methods.
9874 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
9875
9876 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
9877
9878 * bs.el (bs-buffer-show-mark): Make defvar-local.
9879 (bs-mode): Use setq-local.
9880
9881 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
9882 (emacs-lock--try-unlocking): Make defvar-local.
9883
9884 2013-06-22 Glenn Morris <rgm@gnu.org>
9885
9886 * play/cookie1.el (cookie-apropos): Minor simplification.
9887
9888 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
9889
9890 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
9891
9892 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
9893 `regexp-opt', it breaks the build during dumping.
9894
9895 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
9896
9897 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9898 Highlight keyword-like methods on Kernel and Module with
9899 font-lock-builtin-face.
9900 (auto-mode-alist): Consolidate different entries into one regexp
9901 and add more *file-s.
9902
9903 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
9904
9905 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
9906
9907 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
9908 (diary-entry): Use it in the action of this button type instead of
9909 diary-goto-entry.
9910
9911 * calendar/todo-mode.el: New version.
9912 (todo-add-category): Append new category to end of file and give
9913 it the highest number, instead of putting it at the beginning and
9914 giving it 0. Incorporate noninteractive functionality.
9915 (todo-forward-category): Adapt to 1-based category numbering.
9916 Allow skipping over archived categories.
9917 (todo-backward-category): Derive from todo-forward-category.
9918 (todo-backward-item, todo-forward-item): Make noninteractive and
9919 delegate interactive part to new commands. Make sensitive to done items.
9920 (todo-categories): Make value an alist of category names and
9921 vectors of item counts.
9922 (todo-category-beg): Make a defconst.
9923 (todo-category-number): Use 1 instead of 0 as initial value.
9924 (todo-category-select): Make sensitive to overlays, optional item
9925 highlighting and done items.
9926 (todo-delete-item): Make sensitive to overlays and marked and done items.
9927 (todo-edit-item): Make sensitive to overlays and editing of
9928 date/time header optional. Add format checks.
9929 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
9930 no-op if point is not on an item. Advertise using todo-edit-quit.
9931 (todo-edit-mode): Make sensitive to new format, font-locking, and
9932 multiple todo files.
9933 (todo-insert-item, todo-insert-item-here): Derive from
9934 todo-basic-insert-item and extend functionality.
9935 (todo-item-end, todo-item-start): Make sensitive to done items.
9936 (todo-item-string): Don't return text properties. Restore point.
9937 (todo-jump-to-category): Make sensitive to multiple todo files and
9938 todo archives. Use extended category completion.
9939 (todo-lower-item, todo-raise-item): Rename to *-priority and
9940 derive from todo-set-item-priority.
9941 (todo-mode): Derive from special-mode. Make sensitive to new
9942 format, font-locking and multiple todo files. Make read-only.
9943 (todo-mode-map): Don't suppress digit keys, so they can supply
9944 prefix arguments. Add many new key bindings.
9945 (todo-prefix): Insert as an overlay instead of file text.
9946 Change semantics from diary date expression to purely visual mark.
9947 (todo-print): Rename to todo-print-buffer. Make buffer display
9948 features printable. Remove option to restrict number of items
9949 printed. Add option to print to file.
9950 (todo-print-function): Rename to todo-print-buffer-function.
9951 (todo-quit): Extend to handle exiting new todo modes.
9952 (todo-remove-item): Make sensitive to overlays.
9953 (todo-save): Extend to buffers of filtered items.
9954 (todo-show): Make sensitive to done items, multiple todo files and
9955 new todo modes. Offer to convert legacy todo file before creating
9956 first new todo file.
9957 (todo-show-priorities): Rename to todo-top-priorities.
9958 Change semantics of value 0.
9959 (todo-top-priorities): Rename to todo-filter-top-priorities,
9960 derive from todo-filter-items and extend functionality.
9961 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
9962 and extend functionality to other types of filtered items.
9963 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
9964 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
9965 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
9966 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
9967 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
9968 (todo-edit-mode-hook, todo-entry-prefix-function)
9969 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
9970 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
9971 (todo-initials, todo-insert-threshold, todo-item-string-start)
9972 (todo-line-string, todo-menu, todo-mode-hook)
9973 (todo-more-important-p, todo-previous-answer, todo-previous-line)
9974 (todo-print-priorities, todo-remove-separator)
9975 (todo-save-top-priorities-too, todo-string-count-lines)
9976 (todo-string-multiline-p, todo-time-string-format)
9977 (todo-tmp-buffer-name): Remove.
9978 (todo-add-file, todo-archive-done-item, todo-choose-archive)
9979 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
9980 (todo-edit-category-diary-inclusion)
9981 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
9982 (todo-edit-file, todo-edit-item-date-day)
9983 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
9984 (todo-edit-item-date-month, todo-edit-item-date-to-today)
9985 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
9986 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
9987 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
9988 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
9989 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
9990 (todo-filter-top-priorities-multifile, todo-find-archive)
9991 (todo-find-filtered-items-file, todo-go-to-source-item)
9992 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
9993 (todo-jump-to-archive-category, todo-lower-category)
9994 (todo-mark-category, todo-marked-item-p, todo-merge-category)
9995 (todo-move-category, todo-move-item, todo-next-button)
9996 (todo-next-item, todo-padded-string, todo-powerset)
9997 (todo-previous-button, todo-previous-item)
9998 (todo-print-buffer-to-file, todo-raise-category)
9999 (todo-rename-category, todo-repair-categories-sexp, todo-search)
10000 (todo-set-category-number, todo-set-item-priority)
10001 (todo-set-top-priorities-in-category)
10002 (todo-set-top-priorities-in-file, todo-show-categories-table)
10003 (todo-sort-categories-alphabetically-or-numerically)
10004 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
10005 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
10006 (todo-toggle-item-header, todo-toggle-item-highlighting)
10007 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
10008 (todo-toggle-view-done-items, todo-toggle-view-done-only)
10009 (todo-unarchive-items, todo-unmark-category): New commands.
10010 (todo-absolute-file-name, todo-add-to-buffer-list)
10011 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
10012 (todo-basic-insert-item, todo-category-completions)
10013 (todo-category-number, todo-category-string-matcher-1)
10014 (todo-category-string-matcher-2, todo-check-filtered-items-file)
10015 (todo-check-format, todo-clear-matches)
10016 (todo-comment-string-matcher, todo-convert-legacy-date-time)
10017 (todo-current-category, todo-date-string-matcher)
10018 (todo-define-insertion-command, todo-diary-expired-matcher)
10019 (todo-diary-goto-entry, todo-diary-item-p)
10020 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
10021 (todo-display-categories, todo-display-sorted, todo-done-item-p)
10022 (todo-done-item-section-p, todo-done-separator)
10023 (todo-done-string-matcher, todo-files, todo-filter-items)
10024 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
10025 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
10026 (todo-insert-category-line, todo-insert-item-from-calendar)
10027 (todo-insert-sort-button, todo-insert-with-overlays)
10028 (todo-insertion-command-name, todo-insertion-key-bindings)
10029 (todo-label-to-key, todo-longest-category-name-length)
10030 (todo-make-categories-list, todo-mode-external-set)
10031 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
10032 (todo-modes-set-3, todo-multiple-filter-files)
10033 (todo-nondiary-marker-matcher, todo-prefix-overlays)
10034 (todo-read-category, todo-read-date, todo-read-dayname)
10035 (todo-read-file-name, todo-read-time)
10036 (todo-reevaluate-category-completions-files-defcustom)
10037 (todo-reevaluate-default-file-defcustom)
10038 (todo-reevaluate-filelist-defcustoms)
10039 (todo-reevaluate-filter-files-defcustom)
10040 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
10041 (todo-reset-done-separator, todo-reset-done-separator-string)
10042 (todo-reset-done-string, todo-reset-global-current-todo-file)
10043 (todo-reset-highlight-item, todo-reset-nondiary-marker)
10044 (todo-reset-prefix, todo-set-categories)
10045 (todo-set-date-from-calendar, todo-set-show-current-file)
10046 (todo-set-top-priorities, todo-short-file-name)
10047 (todo-show-current-file, todo-sort, todo-time-string-matcher)
10048 (todo-total-item-counts, todo-update-buffer-list)
10049 (todo-update-categories-display, todo-update-categories-sexp)
10050 (todo-update-count, todo-validate-name, todo-y-or-n-p):
10051 New functions.
10052 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
10053 New major modes.
10054 (todo-categories, todo-display, todo-edit, todo-faces)
10055 (todo-filtered): New defgroups.
10056 (todo-archived-only, todo-button, todo-category-string, todo-date)
10057 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
10058 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
10059 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
10060 (todo-add-item-if-new-category, todo-always-add-time-string)
10061 (todo-categories-align, todo-categories-archived-label)
10062 (todo-categories-category-label, todo-categories-diary-label)
10063 (todo-categories-done-label, todo-categories-number-separator)
10064 (todo-categories-todo-label, todo-categories-totals-label)
10065 (todo-category-completions-files, todo-completion-ignore-case)
10066 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
10067 (todo-done-separator-string, todo-done-string)
10068 (todo-files-function, todo-filter-done-items, todo-filter-files)
10069 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
10070 (todo-initial-category, todo-initial-file, todo-item-mark)
10071 (todo-legacy-date-time-regexp, todo-mode-line-function)
10072 (todo-nondiary-marker, todo-number-prefix)
10073 (todo-print-buffer-function, todo-show-current-file)
10074 (todo-show-done-only, todo-show-first, todo-show-with-done)
10075 (todo-skip-archived-categories, todo-top-priorities-overrides)
10076 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
10077 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
10078 New defcustoms.
10079 (todo-category-done, todo-date-pattern, todo-date-string-start)
10080 (todo-diary-items-buffer, todo-done-string-start)
10081 (todo-filtered-items-buffer, todo-item-start)
10082 (todo-month-abbrev-array, todo-month-name-array)
10083 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
10084 (todo-top-priorities-buffer): New defconsts.
10085 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
10086 (todo-categories-with-marks, todo-category-string-face)
10087 (todo-comment-face, todo-comment-string, todo-current-todo-file)
10088 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
10089 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
10090 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
10091 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
10092 (todo-font-lock-keywords, todo-global-current-todo-file)
10093 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
10094 (todo-insertion-commands-args)
10095 (todo-insertion-commands-args-genlist)
10096 (todo-insertion-commands-names, todo-insertion-map)
10097 (todo-key-bindings-t, todo-key-bindings-t+a)
10098 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
10099 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
10100 (todo-nondiary-face, todo-print-buffer, todo-time-face)
10101 (todo-visited): New variables.
10102
10103 2013-06-21 Glenn Morris <rgm@gnu.org>
10104
10105 * play/cookie1.el (cookie-apropos): Add optional display argument.
10106 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
10107 (psychoanalyze-pinhead): Use cookie-doctor.
10108
10109 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
10110
10111 * emacs-lisp/package.el (tar-get-file-descriptor)
10112 (tar--extract): Declare.
10113
10114 2013-06-21 Eduard Wiebe <usenet@pusto.de>
10115
10116 Extend flymake's warning predicate to be a function (bug#14217).
10117 * progmodes/flymake.el (flymake-warning-predicate): New.
10118 (flymake-parse-line): Use it.
10119 (flymake-warning-re): Make obsolete alias to
10120 `flymake-warning-predicate'.
10121
10122 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10123
10124 * emacs-lisp/package.el (package-alist): Include obsolete packages.
10125 (package-obsolete-list): Remove.
10126 (package-activate): Remove min-version argument. Add `force' argument.
10127 Adjust to new package-alist format.
10128 (package-mark-obsolete): Remove.
10129 (package-unpack): Force reload of the package's autoloads.
10130 (package-installed-p): Check builtins if the installed package is not
10131 recent enough.
10132 (package-initialize): Don't reset package-obsolete-list.
10133 Don't specify which package version to activate.
10134 (package-process-define-package, describe-package-1)
10135 (package-menu--generate): Adjust to new package-alist format.
10136
10137 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
10138
10139 * allout-widgets.el (allout-widgets-mode-off)
10140 (allout-widgets-mode-on, allout-widgets-pre-command-business)
10141 (allout-widgets-post-command-business)
10142 (allout-widgets-after-copy-or-kill-function)
10143 (allout-widgets-after-undo-function, allout-test-range-overlaps)
10144 (allout-decorate-item-and-context)
10145 (allout-graphics-modification-handler): Fix typos in docstrings.
10146 (allout-get-or-create-parent-widget): Use `looking-at-p'.
10147
10148 * cmuscheme.el (scheme-start-file): Doc fix.
10149 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
10150 (scheme-input-filter): Use `string-match-p'.
10151
10152 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
10153
10154 * dired-x.el: Use Dired consistently in docstrings.
10155
10156 * dired.el: Use Dired consistently in docstrings.
10157 (dired-readin, dired-mode): Use `setq-local'.
10158 (dired-switches-alist): Make defvar-local.
10159 (dired-buffers-for-dir): Use `zerop'.
10160 (dired-safe-switches-p, dired-switches-escape-p)
10161 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
10162 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
10163 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
10164 (dired-goto-next-nontrivial-file): Use `string-match-p'.
10165 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
10166 (dired-toggle-marks, dired-mark-files-containing-regexp)
10167 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
10168 (dired-flag-auto-save-files, dired-flag-backup-files):
10169 Use `looking-at-p'.
10170 (dired-mark-files-regexp, dired-build-subdir-alist):
10171 Use `string-match-p', `looking-at-p'.
10172
10173 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
10174 (direct-print-region-helper): Use `string-match-p'.
10175
10176 2013-06-21 Leo Liu <sdl.web@gmail.com>
10177
10178 * comint.el (comint-redirect-results-list-from-process):
10179 Fix infinite loop.
10180
10181 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10182
10183 * net/eww.el (eww-update-header-line-format): Quote % characters.
10184
10185 2013-06-21 Glenn Morris <rgm@gnu.org>
10186
10187 * play/cookie1.el (cookie): New custom group.
10188 (cookie-file): New option.
10189 (cookie-check-file): New function.
10190 (cookie): Make it interactive. Make start and end messages optional.
10191 Interactively, display the result. Default to cookie-file.
10192 (cookie-insert): Default to cookie-file.
10193 (cookie-snarf): Make start and end messages optional.
10194 Default to cookie-file. Use with-temp-buffer.
10195 (cookie-read): Rename from read-cookie.
10196 Make start and end messages optional. Default to cookie-file.
10197 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
10198 Do not autoload it.
10199 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
10200 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
10201
10202 2013-06-21 Leo Liu <sdl.web@gmail.com>
10203
10204 * progmodes/octave.el (octave-mode): Backward compatibility fix.
10205
10206 2013-06-21 Glenn Morris <rgm@gnu.org>
10207
10208 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
10209
10210 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10211 Daniel Hackney <dan@haxney.org>
10212
10213 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
10214 Consolidate the single-file vs tarball code.
10215 (package-desc-suffix): New function.
10216 (package-desc-full-name): Don't bother inlining it.
10217 (package-load-descriptor): Return the new package-desc.
10218 (package-mark-obsolete): Remove unused arg `package'.
10219 (package-unpack): Make it work for single files as well.
10220 Make it update package-alist.
10221 (package--make-autoloads-and-stuff): Rename from
10222 package--make-autoloads-and-compile. Don't compile any more.
10223 (package--compile): New function.
10224 (package-generate-description-file): New function, extracted from
10225 package-unpack-single.
10226 (package-unpack-single): Remove.
10227 (package--with-work-buffer): Add indentation and debugging info.
10228 (package-download-single): Remove.
10229 (package-install-from-archive): Rename from package-download-tar, make
10230 it take a pkg-desc, and make it work for single files as well.
10231 (package-download-transaction): Simplify.
10232 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
10233 external tar program.
10234 (package-install-from-buffer): Remove `pkg-desc' argument.
10235 Use package-tar-file-info for tar-mode buffers.
10236 (package-install-file): Simplify accordingly.
10237 (package-archive-base): Change to take a pkg-desc.
10238 * tar-mode.el (tar--check-descriptor): New function, extracted from
10239 tar-get-descriptor.
10240 (tar-get-descriptor): Use it.
10241 (tar-get-file-descriptor): New function.
10242 (tar--extract): New function, extracted from tar-extract.
10243 (tar--extract): Use it.
10244 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
10245 case the summary uses non-ascii. Adjust to new calling convention of
10246 package-tar-file-info.
10247
10248 2013-06-21 Leo Liu <sdl.web@gmail.com>
10249
10250 * comint.el (comint-redirect-results-list-from-process):
10251 Fix random delay. (Bug#14681)
10252
10253 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
10254
10255 * profiler.el (profiler-format-number): Use log, not log10.
10256
10257 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
10258
10259 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
10260
10261 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10262
10263 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
10264 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
10265 yet available.
10266 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
10267 (AUTOGENEL): ... here.
10268 * emacs-lisp/cl-macs.el (cl--sublis): New function.
10269 (cl--defsubst-expand): Use it.
10270
10271 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
10272
10273 * subr.el (log10): Move here from C code, and declare as obsolete.
10274 All uses of (log10 X) replaced with (log X 10).
10275
10276 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
10277
10278 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
10279 Declare with `defvar-local'.
10280 (tabulated-list-use-header-line, tabulated-list-entries)
10281 (tabulated-list-padding, tabulated-list-printer)
10282 (tabulated-list-sort-key): Declare with `defvar-local'.
10283 (tabulated-list-init-header, tabulated-list-print-fake-header):
10284 Use `setq-local'.
10285
10286 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
10287
10288 * arc-mode.el (archive-mode): Add `archive-write-file' to
10289 `write-contents-functions' also for remote files. (Bug#14652)
10290
10291 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
10292
10293 * cus-edit.el (custom-commands): Fix typos.
10294 (custom-display): Fix tooltip text.
10295 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
10296 Fix typos in docstrings.
10297 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
10298 (custom-unlispify-menu-entry, custom-magic-value-create)
10299 (custom-add-see-also, custom-group-value-create): Use ?\s.
10300 (custom-guess-type, customize-apropos, editable-field)
10301 (custom-face-value-create): Use `string-match-p'.
10302 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
10303
10304 * custom.el (custom-load-symbol): Use `string-match-p'.
10305
10306 * ansi-color.el: Convert to lexical binding.
10307 (ansi-colors): Fix URL.
10308 (ansi-color-context, ansi-color-context-region): Use defvar-local.
10309 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
10310 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
10311
10312 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10313
10314 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
10315
10316 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
10317
10318 2013-06-19 Tom Tromey <tromey@redhat.com>
10319
10320 * net/eww.el (eww-top-url): Remove.
10321 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
10322 (eww-render): Set new variables. Don't set eww-top-url.
10323 (eww-handle-link): Handle "prev", "home", and "contents".
10324 Downcase the rel text.
10325 (eww-top-url): Choose best top URL.
10326
10327 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10328
10329 * net/eww.el: Rewrite to implement form elements "by hand" instead of
10330 relying in widget.el. Using widget.el leads to too many
10331 user interface inconsistencies.
10332 (eww-self-insert): Implement entering commands in text fields.
10333 (eww-process-text-input): New function to make text input field editing
10334 work.
10335 (eww-submit): Rewrite to use the new-style form methods.
10336 (eww-select-display): Display the correct selected item.
10337 (eww-change-select): Implement changing the select value.
10338 (eww-toggle-checkbox): Implement radio/checkboxes.
10339 (eww-update-field): Fix compilation error.
10340 (eww-tag-textarea): Implement <textarea>.
10341
10342 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
10343 we don't shadow mode-specific bindings.
10344
10345 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
10346 nothing to push.
10347
10348 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
10349
10350 2013-06-19 Glenn Morris <rgm@gnu.org>
10351
10352 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
10353
10354 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
10355
10356 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
10357 not needed.
10358
10359 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
10360
10361 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10362
10363 * net/browse-url.el (browse-url-browser-function):
10364 `eww-browse-url' has the right calling signature, `eww' does not.
10365
10366 2013-06-19 Glenn Morris <rgm@gnu.org>
10367
10368 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
10369 Only eval autoloaded macros.
10370 (byte-compile-autoload): Only give the macro warning for macros.
10371
10372 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
10373 (ps-underlined-faces): Declare.
10374
10375 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
10376 (speedbar-add-supported-extension): Declare.
10377
10378 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
10379 Don't include a date stamp in the header of the generated file;
10380 it leads to needless differences between output files.
10381
10382 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
10383
10384 * net/secrets.el (secrets-struct-secret-content-type):
10385 Replace check of introspection data by a test call of "CreateItem".
10386 Some servers do not offer introspection.
10387
10388 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10389
10390 * electric.el (electric-pair-mode): Improve interaction with
10391 electric-layout-mode.
10392 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
10393 (electric-pair-syntax): Use text-mode-syntax-table in comments
10394 and strings.
10395 (electric-pair--insert): New function.
10396 (electric-pair-post-self-insert-function): Use it and
10397 electric--after-char-pos.
10398
10399 2013-06-19 Leo Liu <sdl.web@gmail.com>
10400
10401 * progmodes/octave.el (octave-help): Fix regexp.
10402
10403 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10404
10405 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
10406 (shr-table-horizontal-line): Allow nil as a value, and change the
10407 default.
10408 (shr-insert-table-ruler): Respect the nil value.
10409
10410 2013-06-18 Tom Tromey <tromey@barimba>
10411
10412 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
10413 New defvars.
10414 (eww-open-file): New defun.
10415 (eww-render): Initialize new variables.
10416 (eww-display-html): Handle "link" and "a".
10417 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
10418 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
10419 (eww-back-url): Rename from eww-previous-url.
10420 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
10421 New defuns.
10422
10423 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
10424
10425 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
10426 Distinguish ternary operator tokens from slash symbol and slash
10427 char literal.
10428
10429 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
10430
10431 Convert symbol prettification into minor mode and global minor mode.
10432
10433 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
10434 `prog-prettify-symbols', and make a local defvar instead of defcustom.
10435 (prettify-symbols--keywords): Rename from
10436 `prog-prettify-symbols-alist' and make a local defvar.
10437 (prettify-symbols--compose-symbol): Rename from
10438 `prog--prettify-font-lock-compose-symbol'.
10439 (prettify-symbols--make-keywords): Rename from
10440 `prog-prettify-font-lock-symbols-keywords' and simplify.
10441 (prog-prettify-install): Remove.
10442 (prettify-symbols-mode): New minor mode, based on
10443 `prog-prettify-install'.
10444 (turn-on-prettify-symbols-mode): New function.
10445 (global-prettify-symbols-mode): New globalized minor mode.
10446
10447 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10448 * progmodes/cfengine.el (cfengine3-mode):
10449 * progmodes/perl-mode.el (perl-mode): Don't call
10450 `prog-prettify-install'; set `prettify-symbols-alist' instead.
10451
10452 2013-06-18 Juri Linkov <juri@jurta.org>
10453
10454 * files-x.el (modify-file-local-variable-message): New function.
10455 (modify-file-local-variable)
10456 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
10457 and call `modify-file-local-variable-message' when it's non-nil.
10458 (add-file-local-variable, delete-file-local-variable)
10459 (add-file-local-variable-prop-line)
10460 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
10461 and use it. (Bug#9820)
10462
10463 2013-06-18 Juri Linkov <juri@jurta.org>
10464
10465 * emulation/vi.el (vi-shell-op):
10466 * emulation/vip.el (vip-execute-com, ex-command):
10467 * emulation/viper-cmd.el (viper-exec-bang):
10468 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
10469 the call of `shell-command-on-region'. (Bug#14637)
10470
10471 * simple.el (shell-command-on-region): Doc fix.
10472
10473 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10474
10475 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
10476 (bug#14633).
10477
10478 2013-06-18 Glenn Morris <rgm@gnu.org>
10479
10480 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
10481
10482 * newcomment.el (comment-search-forward, comment-search-backward):
10483 Doc fix. (Bug#14376)
10484
10485 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
10486
10487 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
10488 (buffer-face-mode-invoke): Doc fix.
10489
10490 2013-06-18 Matthias Meulien <orontee@gmail.com>
10491
10492 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
10493 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
10494
10495 2013-06-18 Glenn Morris <rgm@gnu.org>
10496
10497 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
10498 Replace obsolete function generic-make-keywords with its expansion.
10499
10500 * progmodes/python.el (ffap-alist): Declare.
10501
10502 * textmodes/reftex.el (bibtex-mode-map): Declare.
10503
10504 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10505
10506 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
10507 (package-unpack, package-unpack-single): Return the pkg-dir.
10508 (package-download-transaction): Use it to update package-alist.
10509
10510 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10511
10512 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
10513 possible choice.
10514
10515 2013-06-17 Juri Linkov <juri@jurta.org>
10516
10517 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
10518
10519 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
10520
10521 * emacs-lisp/package.el (package-load-descriptor):
10522 Remove `with-syntax-table' call, `read' doesn't need it.
10523 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
10524
10525 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
10526
10527 * startup.el (command-line): Expand package name returned by
10528 `package--description-file' (bug#14639).
10529
10530 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
10531
10532 * emacs-lisp/package.el (package-load-descriptor): Do not call
10533 `emacs-lisp-mode', just use its syntax table.
10534
10535 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
10536
10537 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
10538 `font-lock-extra-managed-props' if any prettifying keyword is added.
10539 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
10540 (prog-mode): Use `setq-local'.
10541
10542 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10543
10544 * international/characters.el (standard-case-table): Set syntax of ?»
10545 and ?« to punctuation.
10546
10547 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
10548
10549 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
10550 Save relevant match data before calling `syntax-ppss' (bug#14595).
10551
10552 2013-06-15 Juri Linkov <juri@jurta.org>
10553
10554 * files-x.el (modify-file-local-variable-prop-line): Add local
10555 variables to the end of the existing comment on the first line.
10556 Use `file-auto-mode-skip' to skip interpreter magic line,
10557 and also skip XML declaration.
10558
10559 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10560
10561 * startup.el (package--builtin-versions): New var.
10562 (package-subdirectory-regexp): Remove.
10563 (package--description-file): Hard code its value instead.
10564
10565 * emacs-lisp/package.el: Don't activate packages older than builtin.
10566 (package-obsolete-list): Rename from package-obsolete-alist, and make
10567 it into a simple list of package-desc.
10568 (package-strip-version): Remove.
10569 (package-built-in-p): Use package--builtin-versions.
10570 (package-mark-obsolete): Simplify.
10571 (package-process-define-package): Mark it obsolete if older than the
10572 builtin version.
10573 (package-handle-response): Use line-end-position.
10574 (package-read-archive-contents, package--download-one-archive):
10575 Simplify.
10576 (package--add-to-archive-contents): Skip if older than the builtin or
10577 installed version.
10578 (package-menu-describe-package): Fix last change.
10579 (package-list-unversioned): New var.
10580 (package-menu--generate): Use it.
10581
10582 * emacs-lisp/autoload.el: Manage package--builtin-versions.
10583 (autoload--insert-text, autoload--insert-cookie-text): New functions.
10584 (autoload-builtin-package-versions): New variable.
10585 (autoload-generate-file-autoloads): Use them.
10586 Remove the list of autoloaded functions/macros from the
10587 (autoload...) comments.
10588
10589 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
10590
10591 2013-06-15 Eli Zaretskii <eliz@gnu.org>
10592
10593 * simple.el (line-move-partial): Don't jump to the next screen
10594 line as soon as it becomes visible. Instead, continue enlarging
10595 the vscroll until the portion of a tall screen line that's left on
10596 display is about the height of the frame's default font.
10597 (Bug#14567)
10598
10599 2013-06-15 Glenn Morris <rgm@gnu.org>
10600
10601 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
10602 compilation-error-regexp-alist void, or local while let-bound.
10603
10604 * progmodes/make-mode.el (makefile-mode-syntax-table):
10605 Treat "=" as punctuation. (Bug#14614)
10606
10607 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
10608
10609 * help-fns.el (describe-variable):
10610 Add extra line for permanent-local variables.
10611
10612 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
10613
10614 * progmodes/scheme.el (scheme-font-lock-keywords-2):
10615 Add export, import, library. (Bug#9164)
10616 (library): Set indent function.
10617
10618 2013-06-14 Glenn Morris <rgm@gnu.org>
10619
10620 * term/xterm.el (xterm--query):
10621 Stop after first matching handler. (Bug#14615)
10622
10623 2013-06-14 Ivan Kanis <ivan@kanis.fr>
10624
10625 Add support for dired in saveplace.
10626 * dired.el (dired-initial-position-hook): New variable.
10627 (dired-initial-position): Call hook to place cursor position.
10628 * saveplace.el (save-place-to-alist): Add dired position.
10629 (save-place-dired-hook): New function.
10630
10631 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10632
10633 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
10634 through a symbol rather than letrec.
10635
10636 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
10637 (package-desc): Add `dir' field.
10638 (package-desc-full-name): New function.
10639 (package-load-descriptor): Combine the two arguments. Don't use `load'.
10640 (package-maybe-load-descriptor): Remove.
10641 (package-load-all-descriptors): Just call package-load-descriptor.
10642 (package--disabled-p): New function.
10643 (package-desc-vers, package-desc-doc): Remove aliases.
10644 (package--dir): Remove function.
10645 (package-activate): Check if a package is disabled.
10646 (package-process-define-package): New function, extracted from
10647 define-package.
10648 (define-package): Turn into a place holder.
10649 (package-unpack-single, package-tar-file-info):
10650 Use package--description-file.
10651 (package-compute-transaction): Use package--disabled-p.
10652 (package-download-transaction): Don't call
10653 package-maybe-load-descriptor since they're all loaded anyway.
10654 (package-install): Change argument to be a pkg-desc.
10655 (package-delete): Use a single pkg-desc argument.
10656 (describe-package-1): Use package-desc-dir instead of package--dir.
10657 Use package-desc property instead of package-symbol.
10658 (package-install-button-action): Adjust accordingly.
10659 (package--push): Rewrite.
10660 (package-menu--print-info): Adjust accordingly. Change the ID format
10661 to be a pkg-desc.
10662 (package-menu-describe-package, package-menu-get-status)
10663 (package-menu--find-upgrades, package-menu-mark-upgrades)
10664 (package-menu-execute, package-menu--name-predicate):
10665 Adjust accordingly.
10666 * startup.el (package--description-file): New function.
10667 (command-line): Use it.
10668 * emacs-lisp/package-x.el (package-upload-buffer-internal):
10669 Use package-desc-version.
10670
10671 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
10672 (byte-compile-preprocess): Use it.
10673 (byte-compile-file-form-defalias): Try a bit harder to use macros we
10674 can't quite recognize.
10675 (byte-compile-add-to-list): Remove.
10676 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
10677 (cconv-closure-convert): Add assertion.
10678
10679 * emacs-lisp/map-ynp.el: Use lexical-binding.
10680 (map-y-or-n-p): Remove unused vars `tail' and `object'.
10681 Factor out some repeated code.
10682
10683 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10684
10685 * subr.el (with-eval-after-load): New macro.
10686 (eval-after-load): Allow form to be a function.
10687 take advantage of lexical-binding.
10688 (do-after-load-evaluation): Use dolist and adjust to new format.
10689 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
10690
10691 2013-06-13 Juri Linkov <juri@jurta.org>
10692
10693 * replace.el (perform-replace): Display "symbol " and other search
10694 modes from `isearch-message-prefix' in the *Help* buffer.
10695
10696 * isearch.el (isearch-query-replace): Add " symbol" and other
10697 possible search modes from `isearch-message-prefix' to the prompt.
10698 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
10699 when reading a regexp to collect.
10700
10701 2013-06-13 Juri Linkov <juri@jurta.org>
10702
10703 * isearch.el (word-search-regexp): Match whitespace if the search
10704 string begins or ends in whitespace. The LAX arg is applied to
10705 both ends of the search string. Use `regexp-quote' and explicit
10706 \< and \> instead of \b. Use \` and \' instead of ^ and $.
10707 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
10708 boundaries are replaced with symbol boundaries, and characters
10709 between symbols match non-word non-symbol syntax. (Bug#14602)
10710
10711 2013-06-13 Juri Linkov <juri@jurta.org>
10712
10713 * isearch.el (isearch-del-char): Don't exceed the length of
10714 `isearch-string' by the prefix arg. (Bug#14563)
10715
10716 2013-06-13 Juri Linkov <juri@jurta.org>
10717
10718 * isearch.el (isearch-yank-word, isearch-yank-line)
10719 (isearch-char-by-name, isearch-quote-char)
10720 (isearch-printing-char, isearch-process-search-char):
10721 Add optional count prefix arg. (Bug#14563)
10722
10723 * international/isearch-x.el
10724 (isearch-process-search-multibyte-characters):
10725 Add optional count prefix arg.
10726
10727 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10728
10729 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
10730 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
10731 lexical-binding.
10732
10733 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
10734
10735 * subr.el (set-temporary-overlay-map): Add on-exit argument.
10736
10737 2013-06-13 Glenn Morris <rgm@gnu.org>
10738
10739 * startup.el (tty-handle-args):
10740 Don't just discard "--" and anything after. (Bug#14608)
10741
10742 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
10743
10744 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
10745
10746 Implement changes in Secret Service API. Make it backward compatible.
10747 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
10748 (secrets-create-item): Use it. Prefix properties with interface.
10749
10750 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
10751
10752 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
10753 (term-emulate-terminal): Respect term-suppress-hard-newline.
10754
10755 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
10756
10757 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
10758 Only remove a `thumb-file' overlay. (Bug#14548)
10759
10760 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
10761
10762 * mail/reporter.el (reporter-submit-bug-report):
10763 Handle missing package-name. (Bug#14600)
10764
10765 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10766
10767 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
10768 (reftex-citation-prompt, reftex-default-bibliography)
10769 (reftex-bib-or-thebib, reftex-get-bibfile-list)
10770 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
10771 (reftex-bib-sort-author, reftex-bib-sort-year)
10772 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
10773 (reftex-extract-bib-entries-from-thebibliography)
10774 (reftex-get-bibkey-default, reftex-get-bib-names)
10775 (reftex-parse-bibtex-entry, reftex-get-bib-field)
10776 (reftex-format-bib-entry, reftex-parse-bibitem)
10777 (reftex-format-bibitem, reftex-do-citation)
10778 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
10779 (reftex-restrict-bib-matches, reftex-extract-bib-file)
10780 (reftex-insert-bib-matches, reftex-format-citation)
10781 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
10782 (reftex-create-bibtex-file): Add docstrings, mostly by converting
10783 existing comments into docstrings.
10784
10785 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
10786
10787 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
10788
10789 2013-06-12 Andreas Schwab <schwab@suse.de>
10790
10791 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
10792 for auto-save files.
10793
10794 2013-06-12 Glenn Morris <rgm@gnu.org>
10795
10796 * ido.el (ido-delete-ignored-files): Remove.
10797 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
10798 Go back to calling ido-ignore-item-p directly.
10799
10800 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
10801
10802 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
10803
10804 * ido.el (ido-delete-ignored-files): New function,
10805 split from ido-make-file-list-1.
10806 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
10807 (ido-make-file-list-1): Use ido-delete-ignored-files.
10808
10809 2013-06-12 Leo Liu <sdl.web@gmail.com>
10810
10811 * progmodes/octave.el (inferior-octave-startup)
10812 (inferior-octave-completion-table)
10813 (inferior-octave-track-window-width-change)
10814 (octave-eldoc-function-signatures, octave-help)
10815 (octave-find-definition): Use single quoted strings.
10816 (inferior-octave-startup-args): Change default value.
10817 (inferior-octave-startup): Do not hard code "-i" and
10818 "--no-line-editing".
10819 (inferior-octave-resync-dirs): Add optional arg NOERROR.
10820 (inferior-octave-directory-tracker): Use it.
10821 (octave-goto-function-definition): Robustify.
10822 (octave-help): Support highlighting operators in 'See also'.
10823 (octave-find-definition): Find subfunctions only in Octave mode.
10824
10825 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10826
10827 * help-fns.el (help-fns--compiler-macro): If the handler function is
10828 named, then put a link to it.
10829 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
10830 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
10831 (cl-typep): Use it.
10832 (cl-eval-when): Simplify debug spec.
10833 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
10834 compiler-macro function instead of setting `compiler-macro-file'.
10835
10836 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
10837
10838 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
10839 * vc/vc-hooks.el (vc-stay-local): Doc fix.
10840
10841 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10842 Daniel Hackney <dan@haxney.org>
10843
10844 First part of Daniel Hackney's patch to package.el.
10845 * emacs-lisp/package.el: Use defstruct.
10846 (package-desc): New, main struct.
10847 (package--bi-desc, package--ac-desc): New structs, used to describe the
10848 format in external files.
10849 (package-desc-vers): Replace with package-desc-version accessor.
10850 (package-desc-doc): Replace with package-desc-summary accessor.
10851 (package-activate-1): Remove `package' arg since the pkg-vec now
10852 includes the name.
10853 (define-package): Use package-desc-from-define.
10854 (package-unpack-single): Change file-name arg to be a symbol.
10855 (package--add-to-archive-contents): Use package-desc-create and new
10856 accessor functions to package--ac-desc.
10857 (package-buffer-info, package-tar-file-info): Return a package-desc.
10858 (package-install-from-buffer): Remove `type' argument. Change pkg-info
10859 arg to be a package-desc.
10860 (package-install-file): Adjust accordingly. Use \' to match EOS.
10861 (package--from-builtin): New function.
10862 (describe-package-1, package-menu--generate): Use it.
10863 (package--make-autoloads-and-compile): Change name arg to be a symbol.
10864 (package-generate-autoloads): Idem and return the name of the file.
10865 * emacs-lisp/package-x.el (package-upload-buffer-internal):
10866 Change pkg-info arg to be a package-desc.
10867 Use package-make-ac-desc.
10868 (package-upload-file): Use \' to match EOS.
10869 * finder.el (finder-compile-keywords): Use package-make-builtin.
10870
10871 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10872
10873 * vc/vc.el (vc-deduce-fileset): Change error message.
10874 (vc-read-backend): New function.
10875 (vc-next-action): Use it.
10876
10877 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
10878
10879 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
10880 (prolog-font-lock-keywords): Use regexp-opt instead.
10881 Don't manually highlight strings.
10882 (prolog-mode-variables): Simplify comment-start-skip.
10883 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
10884
10885 * emacs-lisp/generic.el (generic--normalise-comments)
10886 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
10887 (generic-mode-set-comments): Use them.
10888 (generic-bracket-support): Use setq-local.
10889 (generic-make-keywords-list): Declare obsolete.
10890
10891 2013-06-11 Glenn Morris <rgm@gnu.org>
10892
10893 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10894 Prettify after setting font-lock-defaults. (Bug#14574)
10895
10896 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
10897
10898 * replace.el (query-replace, occur-read-regexp-defaults-function)
10899 (replace-search):
10900 * subr.el (declare-function, number-sequence, local-set-key)
10901 (substitute-key-definition, locate-user-emacs-file)
10902 (with-silent-modifications, split-string, eval-after-load):
10903 Fix typos, remove unneeded backslashes and reflow some docstrings.
10904
10905 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10906
10907 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
10908 default for Elisp files.
10909
10910 2013-06-11 Glenn Morris <rgm@gnu.org>
10911
10912 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
10913 although define-derived-mode was doing this anyway. (Bug#14583)
10914
10915 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
10916
10917 * allout.el (allout-encryption-plaintext-sanitization-regexps):
10918 Fix make-variable-buffer-local call to refer to the correct variable.
10919
10920 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
10921
10922 * eshell/em-term.el (eshell-visual-commands)
10923 (eshell-visual-subcommands, eshell-visual-options):
10924 Add summary line to docstrings. Add cross-references.
10925
10926 2013-06-10 Glenn Morris <rgm@gnu.org>
10927
10928 * epa.el (epa-read-file-name): New function. (Bug#14510)
10929 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
10930
10931 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
10932
10933 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
10934 output redirection to be ignored with visual commands.
10935
10936 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
10937
10938 * eshell/em-term.el (eshell-visual-command-p): New function.
10939 (eshell-term-initialize): Move long lambda to separate function
10940 eshell-visual-command-p.
10941 * eshell/em-dirs.el (eshell-dirs-initialize):
10942 * eshell/em-script.el (eshell-script-initialize):
10943 Add missing #' to lambda.
10944
10945 2013-06-08 Leo Liu <sdl.web@gmail.com>
10946
10947 * progmodes/octave.el (octave-add-log-current-defun): New function.
10948 (octave-mode): Set add-log-current-defun-function.
10949 (octave-goto-function-definition): Do not move point if not found.
10950 (octave-find-definition): Enhance to try subfunctions first.
10951
10952 2013-06-08 Glenn Morris <rgm@gnu.org>
10953
10954 * emacs-lisp/bytecomp.el (byte-compile-char-before)
10955 (byte-compile-backward-char, byte-compile-backward-word):
10956 Improve previous change, to handle non-explicit nil.
10957
10958 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
10959
10960 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
10961 (smie--opener/closer-at-point): New function.
10962 (smie--matching-block-data): Use it. Don't match from right after an
10963 opener or right before a closer. Obey smie-blink-matching-inners.
10964 Don't signal a mismatch for repeated inners like "switch..case..case".
10965
10966 2013-06-07 Leo Liu <sdl.web@gmail.com>
10967
10968 * progmodes/octave.el (octave-mode): Set comment-use-global-state
10969 to t. (Bug#14303)
10970 (octave-function-header-regexp): Fix. (Bug#14570)
10971 (octave-help-mode-finish-hook, octave-help-mode-finish):
10972 Remove. Just use temp-buffer-show-hook.
10973
10974 * newcomment.el (comment-search-backward): Revert last change.
10975 (Bug#14434)
10976
10977 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
10978
10979 2013-06-07 Eli Zaretskii <eliz@gnu.org>
10980
10981 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
10982 through xargs, to avoid failure due to MS-Windows limitations on
10983 command-line length.
10984
10985 2013-06-06 Glenn Morris <rgm@gnu.org>
10986
10987 * font-lock.el (lisp-font-lock-keywords-2):
10988 Treat user-error like error.
10989
10990 * emacs-lisp/bytecomp.el (byte-compile-char-before)
10991 (byte-compile-backward-char, byte-compile-backward-word):
10992 Handle explicit nil arguments. (Bug#14565)
10993
10994 2013-06-05 Alan Mackenzie <acm@muc.de>
10995
10996 * isearch.el (isearch-allow-prefix): New user option.
10997 (isearch-other-meta-char): Don't exit isearch when a prefix
10998 argument is typed whilst `isearch-allow-prefix' is non-nil.
10999 (Bug#9706)
11000
11001 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11002
11003 * autorevert.el (auto-revert-notify-handler): Use memq.
11004 Hide assertion failure.
11005
11006 * skeleton.el: Use cl-lib.
11007 (skeleton-further-elements): Use defvar-local.
11008 (skeleton-insert): Use cl-progv.
11009
11010 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
11011
11012 * progmodes/prog-mode.el (prog-prettify-symbols)
11013 (prog-prettify-install): Update docstrings.
11014
11015 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11016
11017 * simple.el: Move all the prog-mode code to prog-mode.el.
11018 * progmodes/prog-mode.el: New file.
11019 * loadup.el: Add prog-mode.el.
11020
11021 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
11022
11023 * simple.el (prog-prettify-symbols): Add version.
11024 (prog-prettify-install): Add convenience function to prettify symbols.
11025
11026 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
11027 (perl--augmented-font-lock-keywords-1)
11028 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
11029 variables and use it.
11030
11031 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
11032 (cfengine3-mode): Remove unneeded variable and use it.
11033
11034 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
11035 (lisp--augmented-font-lock-keywords-1)
11036 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
11037 Remove unneeded variables and use it.
11038
11039 2013-06-05 João Távora <joaotavora@gmail.com>
11040
11041 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
11042 to point when opening the connection. (Bug#14380)
11043
11044 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11045
11046 * subr.el (load-history-regexp, load-history-filename-element)
11047 (eval-after-load, after-load-functions, do-after-load-evaluation)
11048 (eval-next-after-load, display-delayed-warnings)
11049 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
11050 definition of save-match-data.
11051 (overriding-local-map): Remove accidental obsolescence declaration.
11052
11053 * emacs-lisp/edebug.el (edebug-result): Move before first use.
11054
11055 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
11056
11057 Generalize symbol prettify support to prog-mode and implement it
11058 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
11059 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
11060 (prog--prettify-font-lock-compose-symbol)
11061 (prog-prettify-font-lock-symbols-keywords): New variables and
11062 functions to support symbol prettification.
11063 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
11064 (lisp--augmented-font-lock-keywords-1)
11065 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
11066 (lisp--prettify-symbols-alist): Implement prettify of lambda.
11067 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
11068 (cfengine3--prettify-symbols-alist, cfengine3-mode):
11069 Implement prettify of -> => :: strings.
11070 * progmodes/perl-mode.el (perl-prettify-symbols)
11071 (perl--font-lock-compose-symbol)
11072 (perl--font-lock-symbols-keywords): Move to prog-mode.
11073 (perl--prettify-symbols-alist): Prettify -> => :: strings.
11074 (perl-font-lock-keywords-1)
11075 (perl-font-lock-keywords-2): Remove explicit prettify support.
11076 (perl--augmented-font-lock-keywords)
11077 (perl--augmented-font-lock-keywords-1)
11078 (perl--augmented-font-lock-keywords-2, perl-mode):
11079 Implement prettify support.
11080
11081 2013-06-05 Leo Liu <sdl.web@gmail.com>
11082
11083 Re-implement SMIE matching block highlight using
11084 show-paren-data-function. (Bug#14395)
11085 * emacs-lisp/smie.el (smie-matching-block-highlight)
11086 (smie--highlight-matching-block-overlay)
11087 (smie--highlight-matching-block-lastpos)
11088 (smie-highlight-matching-block)
11089 (smie-highlight-matching-block-mode): Remove.
11090 (smie--matching-block-data-cache): New variable.
11091 (smie--matching-block-data): New function.
11092 (smie-setup): Use smie--matching-block-data for
11093 show-paren-data-function.
11094
11095 * progmodes/octave.el (octave-mode-menu): Fix.
11096 (octave-find-definition): Skip garbage lines.
11097
11098 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11099
11100 Fix compilation error with simultaneous dynamic+lexical scoping.
11101 Add warning when a defvar appears after the first let-binding.
11102 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
11103 (byte-compile-close-variables): Initialize it.
11104 (byte-compile--declare-var): New function.
11105 (byte-compile-file-form-defvar)
11106 (byte-compile-file-form-define-abbrev-table)
11107 (byte-compile-file-form-custom-declare-variable): Use it.
11108 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
11109 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
11110 (byte-compile-bind): Handle dynamic bindings that shadow
11111 lexical bindings.
11112 (byte-compile-unbind): Make arg non-optional.
11113 (byte-compile-let): Simplify.
11114 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
11115 (cconv--analyse-function, cconv-analyse-form): Populate it.
11116 Protect byte-compile-bound-variables to limit the scope of defvars.
11117 (cconv-analyse-form): Add missing rule for (defvar <foo>).
11118 Remove unneeded rule for `declare'.
11119
11120 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
11121 so as to avoid depending on cl-adjoin at run-time.
11122 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
11123
11124 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
11125 (macroexp--warn-and-return): Use it.
11126
11127 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11128
11129 * subr.el: Convert to lexical binding.
11130 (overriding-local-map): Make obsolete.
11131 (add-to-list): Doc fix. Add compiler macro.
11132 (read-key): Swap values of local maps.
11133
11134 2013-06-05 Leo Liu <sdl.web@gmail.com>
11135
11136 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
11137
11138 2013-06-04 Leo Liu <sdl.web@gmail.com>
11139
11140 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
11141 (compilation-auto-jump): Suppress the "Mark set" message to give
11142 way to exit message.
11143
11144 2013-06-04 Alan Mackenzie <acm@muc.de>
11145
11146 Remove faulty optimisation from indentation calculation.
11147 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
11148 search limit based on 2000 characters back from indent-point.
11149
11150 2013-06-03 Tassilo Horn <tsdh@gnu.org>
11151
11152 * eshell/em-term.el (cl-lib): Require `cl-lib'.
11153
11154 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
11155
11156 * emacs-lisp/lisp.el: Use lexical-binding.
11157 (lisp--local-variables-1, lisp--local-variables): New functions.
11158 (lisp--local-variables-completion-table): New var.
11159 (lisp-completion-at-point): Use it complete let-bound vars.
11160
11161 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
11162 eagerly (bug#14422).
11163
11164 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
11165
11166 * autorevert.el (auto-revert-notify-enabled)
11167 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
11168 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
11169 (auto-revert-notify-handler): Handle also gfilenotify.
11170
11171 * subr.el (file-notify-handle-event): New defun. Replacing ...
11172 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
11173 Remove.
11174
11175 2013-06-03 Juri Linkov <juri@jurta.org>
11176
11177 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
11178 `M-s h .'. (Bug#14427)
11179
11180 * hi-lock.el (highlight-symbol-at-point): New alias for the new
11181 command `hi-lock-face-symbol-at-point'.
11182 (hi-lock-face-symbol-at-point): New command.
11183 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
11184 (hi-lock-menu): Add `highlight-symbol-at-point'.
11185 (hi-lock-mode): Doc fix.
11186
11187 * isearch.el (isearch-forward-symbol-at-point): New command.
11188 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
11189 (isearch-highlight-regexp): Add a regexp which matches
11190 words/symbols for word/symbol mode.
11191
11192 * subr.el (find-tag-default-bounds): New function with the body
11193 mostly moved from `find-tag-default'.
11194 (find-tag-default): Move most code to `find-tag-default-bounds',
11195 call it and apply `buffer-substring-no-properties' afterwards.
11196
11197 2013-06-03 Tassilo Horn <tsdh@gnu.org>
11198
11199 * eshell/em-term.el (eshell-term-initialize):
11200 Use `cl-intersection' rather than `intersection'.
11201
11202 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
11203
11204 * vc/log-view.el: Doc fix.
11205 (log-view-mode-map): Copy keymap from `special-mode-map'.
11206
11207 2013-06-02 Eric Ludlam <zappo@gnu.org>
11208
11209 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
11210 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
11211 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
11212 (eieio-unbound, eieio-default-superclass)
11213 (eieio--define-field-accessors, method-static, method-before)
11214 (method-primary, method-after, method-num-lists)
11215 (method-generic-before, method-generic-primary)
11216 (method-generic-after, method-num-slots)
11217 (eieio-specialized-key-to-generic-key)
11218 (eieio--check-type, class-v, class-p)
11219 (eieio-class-name, define-obsolete-function-alias)
11220 (eieio-class-parents-fast, eieio-class-children-fast)
11221 (same-class-fast-p, class-constructor, generic-p)
11222 (generic-primary-only-p, generic-primary-only-one-p)
11223 (class-option-assoc, class-option, eieio-object-p)
11224 (class-abstract-p, class-method-invocation-order)
11225 (eieio-defclass-autoload-map, eieio-defclass-autoload)
11226 (eieio-class-un-autoload, eieio-defclass)
11227 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
11228 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
11229 (eieio--defgeneric-init-form, eieio-defgeneric-form)
11230 (eieio-defgeneric-reset-generic-form)
11231 (eieio-defgeneric-form-primary-only)
11232 (eieio-defgeneric-reset-generic-form-primary-only)
11233 (eieio-defgeneric-form-primary-only-one)
11234 (eieio-defgeneric-reset-generic-form-primary-only-one)
11235 (eieio-unbind-method-implementations)
11236 (eieio--defmethod, eieio--typep)
11237 (eieio-perform-slot-validation, eieio-validate-slot-value)
11238 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
11239 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
11240 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
11241 (eieio-slot-name-index, eieio-class-slot-name-index)
11242 (eieio-set-defaults, eieio-initarg-to-attribute)
11243 (eieio-attribute-to-initarg, eieio-c3-candidate)
11244 (eieio-c3-merge-lists, eieio-class-precedence-c3)
11245 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
11246 (eieio-class-precedence-list, eieio-generic-call-methodname)
11247 (eieio-generic-call-arglst, eieio-generic-call-key)
11248 (eieio-generic-call-next-method-list)
11249 (eieio-pre-method-execution-functions, eieio-generic-call)
11250 (eieio-generic-call-primary-only, eieiomt-method-list)
11251 (eieiomt-optimizing-obarray, eieiomt-install)
11252 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
11253 (eieio-generic-form, eieio-defmethod, make-obsolete)
11254 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
11255 (defclass): Remove `eval-and-compile' from macro.
11256 (call-next-method, shared-initialize): Instead of using
11257 `scoped-class' variable, use new eieio--scoped-class, and
11258 eieio--with-scoped-class.
11259 (initialize-instance): Rename local variable 'scoped-class' to
11260 'this-class' to remove ambiguitity from old global.
11261
11262 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
11263 eieio.el.
11264 (eieio--scoped-class-stack): New variable.
11265 (eieio--scoped-class): New fcn.
11266 (eieio--with-scoped-class): New scoping macro.
11267 (eieio-defclass): Use pushnew instead of add-to-list.
11268 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
11269 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
11270 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
11271 `scoped-class' variable, use new eieio--scoped-class, and
11272 eieio--with-scoped-class.
11273
11274 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
11275
11276 2013-06-02 Tassilo Horn <tsdh@gnu.org>
11277
11278 * eshell/esh-ext.el (eshell-external-command): Pass args to
11279 `eshell-find-interpreter'.
11280 (eshell-find-interpreter): Add new second parameter ARGS.
11281
11282 * eshell/em-script.el (eshell-script-initialize): Add second arg
11283 to the function added as MATCH to `eshell-interpreter-alist'.
11284
11285 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
11286 the function added as MATCH to `eshell-interpreter-alist'.
11287
11288 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
11289 (eshell-visual-options): New defcustom.
11290 (eshell-escape-control-x): Adapt docstring.
11291 (eshell-term-initialize): Test `eshell-visual-subcommands' and
11292 `eshell-visual-options' in addition to `eshell-visual-commands'.
11293 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
11294
11295 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
11296
11297 * progmodes/python.el (python-indent-block-enders): Add break,
11298 continue and raise keywords.
11299
11300 2013-06-01 Glenn Morris <rgm@gnu.org>
11301
11302 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
11303
11304 Plain (f)boundp silences compilation warnings since Emacs 22.1.
11305 * progmodes/cc-cmds.el (delete-forward-p):
11306 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
11307 * progmodes/cc-engine.el (buffer-syntactic-context):
11308 * progmodes/cc-fonts.el (face-property-instance):
11309 * progmodes/cc-mode.el (set-keymap-parents):
11310 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
11311 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
11312 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
11313 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
11314 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
11315
11316 * progmodes/cc-vars.el (other): Emacs has this widget since
11317 at least 21.1, so don't (re)define it.
11318
11319 * eshell/em-cmpl.el (eshell-cmpl-initialize):
11320 Replace the obsolete alias pcomplete-arg-quote-list.
11321
11322 2013-06-01 Leo Liu <sdl.web@gmail.com>
11323
11324 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
11325 punctuation syntax.
11326 (inferior-octave-minimal-columns)
11327 (inferior-octave-last-column-width): New variables.
11328 (inferior-octave-track-window-width-change): New function.
11329 (inferior-octave-mode): Adjust column width so that Octave output,
11330 for example from 'ls', can fit into the window nicely.
11331
11332 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
11333
11334 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
11335 Highlight expansions inside regexp literals.
11336
11337 2013-05-31 Glenn Morris <rgm@gnu.org>
11338
11339 * obsolete/sym-comp.el (symbol-complete):
11340 Replace obsolete completion-annotate-function.
11341
11342 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
11343
11344 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
11345
11346 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
11347 New function, checks if point is inside a literal that allows
11348 expression expansion.
11349 (ruby-syntax-propertize-expansion): Use it.
11350 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
11351 around the body.
11352
11353 2013-05-30 Juri Linkov <juri@jurta.org>
11354
11355 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
11356 to "\M-si".
11357 (isearch-invisible): New variable.
11358 (isearch-forward): Doc fix.
11359 (isearch-mode): Set `isearch-invisible'
11360 to the value of `search-invisible'.
11361 (isearch-toggle-case-fold): Doc fix.
11362 (isearch-toggle-invisible): New command.
11363 (isearch-query-replace): Let-bind `search-invisible'
11364 to the value of `isearch-invisible'.
11365 (isearch-search): Use `isearch-invisible' instead of
11366 `search-invisible'. Let-bind `search-invisible'
11367 to the value of `isearch-invisible'. (Bug#11378)
11368
11369 2013-05-30 Juri Linkov <juri@jurta.org>
11370
11371 * replace.el (perform-replace): Avoid `isearch-range-invisible'
11372 call when `query-flag' is nil and `search-invisible' is non-nil.
11373 (Bug#11746)
11374
11375 2013-05-30 Glenn Morris <rgm@gnu.org>
11376
11377 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
11378
11379 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
11380 (cc-require): Suppress spurious "noruntime" warnings.
11381 (cc-require-when-compile): Use fboundp, for sake of compiler.
11382
11383 * progmodes/cc-mode.el: Move load of cc-vars before that of
11384 cc-langs (which in turn loads cc-vars), to quieten compiler.
11385
11386 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11387
11388 * paren.el: Simplify the code.
11389 (show-paren-mode): Always start the timer.
11390 (show-paren--idle-timer): Rename from show-paren-idle-timer.
11391 (show-paren--overlay, show-paren--overlay-1): Rename from
11392 show-paren-overlay and show-paren-overlay-1, and initialize to an
11393 overlay rather than to nil.
11394 (show-paren-function): Misc cleanup and simplifications.
11395
11396 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11397
11398 * paren.el (show-paren-data-function): New hook.
11399 (show-paren--default): New function, extracted from show-paren-function.
11400 (show-paren-function): Use show-paren-data-function.
11401
11402 2013-05-30 Glenn Morris <rgm@gnu.org>
11403
11404 * ielm.el (ielm-map, ielm-complete-symbol):
11405 Use completion-at-point rather than obsolete functions.
11406 (inferior-emacs-lisp-mode): Doc fix.
11407 Set completion-at-point-functions, rather than
11408 comint-dynamic-complete-functions.
11409
11410 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
11411 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
11412 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
11413
11414 * image.el (image-animated-p): Tweak definition.
11415
11416 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
11417 (rlogin-process-connection-type): Tweak default. Add set-after.
11418 (rlogin-host): Doc fix.
11419 (rlogin): Tweak prompt.
11420 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
11421
11422 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
11423 * progmodes/tcl.el (inferior-tcl-mode-map):
11424 Use completion-at-point rather than obsolete alias.
11425
11426 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
11427
11428 * minibuffer.el (read-file-name-completion-ignore-case):
11429 Move before completion--in-region, for eager macro expansion.
11430
11431 2013-05-29 Juri Linkov <juri@jurta.org>
11432
11433 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
11434 for total count of matching lines. Add `global-matches' for total
11435 count of matches. Rename `matches' to `lines' for count of
11436 matching lines. Add `matches' for count of matches.
11437 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
11438 to `prev-line' for line number of prev match endpt.
11439 Increment `matches' for every match. Print the number of
11440 matching lines in the header.
11441 (occur-context-lines): Rename `lines' to `curr-line'.
11442 Rename `prev-lines' to `prev-line'. (Bug#14017)
11443
11444 2013-05-29 Juri Linkov <juri@jurta.org>
11445
11446 * replace.el (perform-replace): Add `skip-read-only-count',
11447 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
11448 Increment them for corresponding conditions and report the number
11449 of skipped occurrences in the final message. (Bug#11746)
11450 (query-replace, query-replace-regexp, query-replace-regexp-eval)
11451 (replace-string, replace-regexp): Doc fix.
11452
11453 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11454
11455 * emacs-lisp/trace.el (trace--read-args): Provide a default.
11456
11457 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
11458 prog-mode-map (bug#14504).
11459
11460 2013-05-29 Leo Liu <sdl.web@gmail.com>
11461
11462 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
11463 (octave-help): Small simplification.
11464
11465 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
11466 off the highlight first.
11467
11468 2013-05-29 Glenn Morris <rgm@gnu.org>
11469
11470 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
11471 Handle idlwave-last-system-routine-info-cons-cell being nil.
11472
11473 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
11474 (idlwave-write-paths): Simplify via with-temp-buffer.
11475
11476 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
11477 * emulation/cua-rect.el: Also load cua-base at run time.
11478
11479 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
11480 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
11481 (cperl-imenu-on-info): Require imenu.
11482
11483 2013-05-28 Alan Mackenzie <acm@muc.de>
11484
11485 Handle "capitalised keywords" correctly.
11486 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
11487
11488 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
11489
11490 * eshell/em-unix.el: Add -r option to cp.
11491
11492 2013-05-28 Glenn Morris <rgm@gnu.org>
11493
11494 * vc/vc-arch.el (vc-exec-after): Declare.
11495 (vc-switches): Autoload.
11496 * vc/vc-bzr.el: No need to require vc when compiling.
11497 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
11498 (vc-resynch-buffer, vc-dir-refresh): Declare.
11499 (vc-setup-buffer, vc-switches): Autoload.
11500 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
11501 (vc-resynch-buffer): Declare.
11502 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
11503 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
11504 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
11505 (grep-read-regexp, grep-read-files, grep-expand-template)
11506 (vc-dir-refresh): Declare.
11507 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
11508 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
11509 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
11510 * vc/vc-mtn.el (vc-exec-after): Declare.
11511 (vc-switches): Autoload.
11512 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
11513 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
11514 (vc-file-tree-walk): Declare.
11515 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
11516 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
11517 (vc-tag-precondition, vc-rename-master): Autoload.
11518 * vc/vc-svn.el (vc-exec-after): Declare.
11519 (vc-switches, vc-setup-buffer): Autoload.
11520 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
11521 Autoload.
11522 (vc-resynch-buffer): Declare.
11523
11524 * obsolete/fast-lock.el (byte-compile-warnings):
11525 Don't warn about obsolete features in this obsolete file.
11526
11527 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
11528 Move definition before use.
11529
11530 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
11531 (dun-unix-verbs): Remove dun-zippy.
11532 (dun-zippy): Remove function.
11533
11534 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
11535
11536 2013-05-27 Juri Linkov <juri@jurta.org>
11537
11538 * replace.el (replace-search): New function with code moved out
11539 from `perform-replace'.
11540 (replace-highlight, replace-dehighlight): Move function definitions
11541 up closer to `replace-search'. (Bug#11746)
11542
11543 2013-05-27 Juri Linkov <juri@jurta.org>
11544
11545 * replace.el (perform-replace): Ignore invisible matches.
11546 In addition to checking `query-replace-skip-read-only', also
11547 filter out matches by calling `run-hook-with-args-until-failure'
11548 on `isearch-filter-predicates', and also check `search-invisible'
11549 for t or call `isearch-range-invisible'.
11550 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
11551
11552 2013-05-27 Juri Linkov <juri@jurta.org>
11553
11554 * isearch.el (isearch-filter-predicates): Rename from
11555 `isearch-filter-predicate'. Doc fix. (Bug#11378)
11556 (isearch-message-prefix): Display text from the property
11557 `isearch-message-prefix' of the currently active filters.
11558 (isearch-search): Don't compare `isearch-filter-predicate' with
11559 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
11560 on `isearch-filter-predicates'. Also check `search-invisible' for t
11561 or call `isearch-range-invisible'.
11562 (isearch-filter-visible): Make obsolete.
11563 (isearch-lazy-highlight-search):
11564 Call `run-hook-with-args-until-failure' on
11565 `isearch-filter-predicates' and use `isearch-range-invisible'.
11566
11567 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
11568 `isearch-filter-predicates' instead of `funcall'ing
11569 `isearch-filter-predicate'.
11570 (Info-mode): Set `Info-isearch-filter' to
11571 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
11572
11573 * dired-aux.el (dired-isearch-filter-predicate-orig):
11574 Remove variable.
11575 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
11576 (dired-isearch-filenames-end): Add and remove
11577 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
11578 instead of changing the value of `isearch-filter-predicate'.
11579 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
11580 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
11581 Put property `isearch-message-prefix' to "filename " on
11582 `dired-isearch-filter-filenames'.
11583
11584 * wdired.el (wdired-change-to-wdired-mode):
11585 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
11586 locally instead of changing `isearch-filter-predicate'.
11587 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
11588
11589 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
11590
11591 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
11592 return the commit hash (Bug#14459). Also set the
11593 `vc-git-detached' property.
11594 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
11595 (vc-git-mode-line-string): Use the same help-echo format whether
11596 in detached mode or not, because we know the actual revision now.
11597 When in detached mode, shorten the revision to 7 chars.
11598
11599 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11600
11601 * emacs-lisp/easy-mmode.el (define-minor-mode):
11602 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
11603 mode hook and provide a docstring.
11604
11605 2013-05-27 Alan Mackenzie <acm@muc.de>
11606
11607 Remove spurious syntax-table text properties inserted by C-y.
11608 * progmodes/cc-mode.el (c-after-change): Also clear hard
11609 syntax-table property with value nil.
11610
11611 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
11612
11613 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
11614 when reading the events; the buffer layout shall not be changed.
11615
11616 2013-05-27 Leo Liu <sdl.web@gmail.com>
11617
11618 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
11619 New variable.
11620 (inferior-octave-directory-tracker): Automatically re-sync
11621 default-directory.
11622 (octave-help): Improve handling of 'See also'.
11623
11624 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11625
11626 * doc-view.el: Minor naming convention tweaks.
11627 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
11628
11629 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
11630 even if there's no `display' property yet (bug#14435).
11631
11632 2013-05-25 Eli Zaretskii <eliz@gnu.org>
11633
11634 * subr.el (unmsys--file-name): Rename from reveal-filename.
11635
11636 * Makefile.in (custom-deps, finder-data, autoloads)
11637 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
11638 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
11639 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
11640
11641 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11642
11643 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
11644 error-completion on the first 2 args of condition-case (bug#14446).
11645 Don't burp at EOB.
11646
11647 2013-05-25 Leo Liu <sdl.web@gmail.com>
11648
11649 * comint.el (comint-previous-matching-input): Do not flood the
11650 *Messages* buffer with trivial messages.
11651
11652 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11653
11654 * progmodes/flymake.el (flymake-nop): Don't return a string.
11655 (flymake-set-at): Fix typo.
11656
11657 * simple.el (read--expression): New function, extracted from
11658 eval-expression. Set completion-at-point-functions (bug#14465).
11659 (eval-expression, eval-minibuffer): Use it.
11660
11661 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
11662
11663 * progmodes/flymake.el (flymake-save-buffer-in-file)
11664 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
11665 (flymake-selected-frame, flymake-log, flymake-ins-after)
11666 (flymake-set-at, flymake-get-buildfile-from-cache)
11667 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
11668 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
11669 Refine the doc string.
11670 (flymake-get-file-name-mode-and-masks): Reformat.
11671 (flymake-get-real-file-name-function): Fix a minor bug.
11672
11673 2013-05-24 Juri Linkov <juri@jurta.org>
11674
11675 * progmodes/grep.el (grep-mode-font-lock-keywords):
11676 Support =linenumber= format used by git-grep for lines with
11677 function names. (Bug#13549)
11678
11679 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
11680
11681 * progmodes/octave.el (octave-smie-rules): Return nil rather than
11682 0 after a semi-colon; it works better for smie-auto-fill.
11683 (octave--indent-new-comment-line): New function.
11684 (octave-indent-new-comment-line): Use it (indirectly).
11685 (octave-mode): Don't disable smie-auto-fill. Use add-function to
11686 modify comment-line-break-function.
11687
11688 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
11689 (smie-setup): Use add-function to set it.
11690
11691 2013-05-24 Sam Steingold <sds@gnu.org>
11692
11693 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
11694 argument (before the `interactive' argument).
11695
11696 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
11697
11698 * image-mode.el (image-mode-winprops): Add winprops to
11699 image-mode-winprops-alist before running
11700 image-mode-new-window-functions.
11701 * doc-view.el (doc-view-new-window-function): Don't delay
11702 doc-view-goto-page via timers (bug#14435).
11703
11704 2013-05-24 Tassilo Horn <tsdh@gnu.org>
11705
11706 * doc-view.el: Integrate with desktop.el. (Bug#14435)
11707 (doc-view-desktop-save-buffer): New function.
11708 (doc-view-restore-desktop-buffer): New function.
11709 (desktop-buffer-mode-handlers):
11710 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
11711 handler.
11712 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
11713 `desktop-save-buffer' function.
11714
11715 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
11716
11717 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
11718 (tramp-gvfs-file-name-handler): Raise a user error when
11719 `tramp-gvfs-enabled' is nil.
11720 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
11721 Do not raise a user error when loading package. (Bug#14447)
11722
11723 * net/xesam.el: Move to obsolete/.
11724
11725 2013-05-24 Glenn Morris <rgm@gnu.org>
11726
11727 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
11728
11729 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
11730
11731 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
11732 (Info-find-node, Man-getpage-in-background): Declare.
11733
11734 * mail/unrmail.el (unrmail):
11735 Replace obsolete detect-coding-with-priority.
11736
11737 * net/socks.el (socks-split-string): Use this rather than split-string.
11738 (socks-nslookup-host): Update for above change.
11739 (dynamic-choice, s5-dynamic-choice-match)
11740 (s5-dynamic-choice-match-inline, s5-widget-value-create):
11741 Comment out unused code.
11742
11743 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
11744 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
11745 (gud-tooltip-echo-area): Make obsolete.
11746 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
11747
11748 * progmodes/js.el (js--optimize-arglist): Declare.
11749
11750 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
11751
11752 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
11753 (ediff-window-C): Declare.
11754
11755 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
11756 Tweak requires to silence compiler.
11757
11758 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
11759 (he-search-string, he-tried-table, he-expand-list)
11760 (he-init-string, he-string-member, he-substitute-string)
11761 (he-reset-string): Declare.
11762
11763 * obsolete/options.el (list-options): Use custom-variable-p,
11764 rather than obsolete alias.
11765
11766 2013-05-23 Sam Steingold <sds@gnu.org>
11767
11768 * simple.el (shell-command-on-region): Pass the `replace' argument
11769 down to `call-process-region' to comply with the doc as reported on
11770 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
11771
11772 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
11773
11774 * emacs-lisp/smie.el (smie-indent-forward-token)
11775 (smie-indent-backward-token): Handle string tokens (bug#14381).
11776
11777 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11778
11779 * ielm.el (ielm-menu): New menu.
11780 (inferior-emacs-lisp-mode): Set comment-start.
11781
11782 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11783
11784 * textmodes/reftex.el (reftex-ref-style-toggle):
11785 Fix deactivate action.
11786
11787 * textmodes/reftex-vars.el (reftex-ref-style-alist):
11788 Add cleveref macros.
11789
11790 * textmodes/reftex-parse.el
11791 (reftex-locate-bibliography-files): Accept options for
11792 bibliography commands.
11793 * textmodes/reftex-vars.el (reftex-bibliography-commands):
11794 Add addbibresource. Basic Biblatex support.
11795
11796 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
11797
11798 * net/tramp-gvfs.el (top):
11799 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
11800 when loading package. (Bug#14447)
11801
11802 2013-05-23 Glenn Morris <rgm@gnu.org>
11803
11804 * progmodes/js.el: No need to load comint when compiling.
11805 (ring-insert, comint-send-string, comint-send-input)
11806 (comint-last-input-end, ido-chop): Declare.
11807
11808 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
11809 * vc/ediff-mult.el: Adjust requires.
11810 (ediff-directories-internal, ediff-directory-revisions-internal)
11811 (ediff-patch-file-internal): Declare.
11812 * vc/ediff-ptch.el: Adjust requires.
11813 (ediff-use-last-dir, ediff-buffers-internal): Declare.
11814 (ediff-find-file): Autoload.
11815 * vc/ediff-util.el: No need to load ediff when compiling.
11816 (ediff-regions-internal): Declare.
11817 * vc/ediff-wind.el: Adjust requires.
11818 (ediff-compute-toolbar-width): Define when compiling.
11819 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
11820 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
11821 (dired-get-filename, dired-get-marked-files)
11822 (ediff-last-dir-patch, ediff-patch-default-directory)
11823 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
11824 (ediff-patch-buffer-internal): Declare.
11825
11826 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
11827 (ispell-process, ispell-buffer-local-words, lm-summary)
11828 (lm-section-start, lm-section-end): Declare.
11829 (checkdoc-ispell-init): Simplify.
11830
11831 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
11832 (he-string-member, he-reset-string, he-substitute-string): Declare.
11833
11834 * eshell/em-ls.el: Adjust requires.
11835 (eshell-glob-regexp): Declare.
11836 * eshell/em-tramp.el: Adjust requires.
11837 (eshell-parse-command): Autoload.
11838 * eshell/em-xtra.el: Adjust requires.
11839 (eshell-parse-command): Autoload.
11840 * eshell/esh-ext.el: Adjust requires.
11841 (eshell-parse-command, eshell-close-handles): Autoload.
11842 * eshell/esh-io.el: Adjust requires.
11843 (eshell-output-filter): Autoload.
11844 * eshell/esh-util.el: No need to load tramp when compiling.
11845 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
11846 Declare.
11847 (eshell-parse-ange-ls): Require ange-ftp and tramp.
11848 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
11849 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
11850 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
11851 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
11852 * eshell/esh-opt.el, eshell/esh-proc.el:
11853 * eshell/esh-var.el: Adjust requires.
11854 * eshell/eshell.el: Do not require esh-util twice.
11855 (eshell-add-input-to-history): Declare.
11856 (eshell-command): Check history module is active before using it.
11857
11858 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
11859
11860 2013-05-22 Leo Liu <sdl.web@gmail.com>
11861
11862 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
11863
11864 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
11865
11866 * autorevert.el (auto-revert-notify-add-watch)
11867 (auto-revert-notify-handler): Add `attrib' for the inotify case,
11868 it indicates changes in file modification time.
11869
11870 2013-05-22 Glenn Morris <rgm@gnu.org>
11871
11872 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
11873 Always delete the autoloaded function from the noruntime and
11874 unresolved functions lists.
11875
11876 * allout.el: No need to load epa, epg, overlay when compiling.
11877 (epg-context-set-passphrase-callback, epg-list-keys)
11878 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
11879 (epg-key-user-id-list): Declare.
11880
11881 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
11882 (viper-set-parsing-style-toggling-macro)
11883 (viper-set-emacs-state-searchstyle-macros):
11884 Use called-interactively-p on Emacs.
11885 (viper-looking-back): Make it an obsolete alias. Update callers.
11886 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
11887 Use looking-back rather than viper-looking-back.
11888 (viper-tmp-insert-at-eob, viper-enlarge-region)
11889 (viper-read-string-with-history, viper-register-to-point)
11890 (viper-append-to-register, viper-change-state-to-vi)
11891 (viper-backward-char-carefully, viper-forward-char-carefully)
11892 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
11893 (viper-change-state-to-emacs): Declare.
11894 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
11895 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
11896 * emulation/viper-mous.el: Do not load viper-cmd.
11897 (viper-backward-char-carefully, viper-forward-char-carefully)
11898 (viper-forward-word, viper-adjust-window): Declare.
11899
11900 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
11901
11902 * progmodes/idlw-help.el (idlwave-help-fontify):
11903 Use called-interactively-p.
11904
11905 * term/w32console.el (w32-get-console-codepage)
11906 (w32-get-console-output-codepage): Declare.
11907
11908 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
11909 Remove unnecessary declarations.
11910 (dframe-message): Doc fix.
11911
11912 * info.el (dframe-select-attached-frame, dframe-current-frame):
11913 Declare.
11914
11915 * speedbar.el (speedbar-message): Make it an obsolete alias.
11916 Update all callers.
11917 (speedbar-with-attached-buffer)
11918 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
11919 (speedbar-with-writable): Use backquote.
11920 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
11921 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
11922 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
11923 rather than speedbar- aliases.
11924 * mail/rmail.el: Load dframe rather than speedbar when compiling.
11925 (speedbar-make-specialized-keymap, speedbar-insert-button)
11926 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
11927 (speedbar-do-function-pointer): Declare.
11928 (rmail-speedbar-button, rmail-speedbar-find-file)
11929 (rmail-speedbar-move-message):
11930 Use dframe-with-attached-buffer rather than speedbar- alias.
11931 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
11932 (dframe-message, speedbar-make-specialized-keymap)
11933 (speedbar-add-expansion-list, speedbar-mode-functions-list)
11934 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
11935 (speedbar-insert-button, dframe-select-attached-frame)
11936 (dframe-maybee-jump-to-attached-frame)
11937 (speedbar-change-initial-expansion-list)
11938 (speedbar-previously-used-expansion-list-name): Declare.
11939 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
11940 Use dframe-message, dframe-with-attached-buffer rather than
11941 speedbar- aliases.
11942 (gud-sentinel): Silence compiler.
11943 * progmodes/vhdl-mode.el (speedbar-refresh)
11944 (speedbar-do-function-pointer, speedbar-add-supported-extension)
11945 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
11946 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
11947 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
11948 (speedbar-file-lists, speedbar-make-tag-line)
11949 (speedbar-line-directory, speedbar-goto-this-file)
11950 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
11951 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
11952 (speedbar-make-button, speedbar-reset-scanners)
11953 (speedbar-files-item-info, speedbar-line-text)
11954 (speedbar-find-file-in-frame, speedbar-set-timer)
11955 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
11956 (speedbar-with-writable): Do not (re)define it.
11957 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
11958 rather than speedbar- alias.
11959
11960 2013-05-21 Leo Liu <sdl.web@gmail.com>
11961
11962 * progmodes/octave.el (octave-mode-menu): Update and re-organize
11963 menu items.
11964 (octave-mode): Tweak fill-nobreak-predicate.
11965 (inferior-octave-startup): Check process to avoid infinite loop.
11966 (inferior-octave): Pop to buffer first to show abornmal process
11967 exit information.
11968
11969 2013-05-21 Glenn Morris <rgm@gnu.org>
11970
11971 * printing.el (pr-menu-bar): Define when compiling.
11972
11973 2013-05-21 Leo Liu <sdl.web@gmail.com>
11974
11975 * progmodes/octave.el (octave-auto-fill): Remove.
11976 (octave-indent-new-comment-line): Improve.
11977 (octave-mode): Use auto fill mode through
11978 comment-line-break-function and fill-nobreak-predicate.
11979 (octave-goto-function-definition): Support DEFUN_DLD.
11980 (octave-beginning-of-defun): Small tweak.
11981 (octave-help): Show parent directory.
11982
11983 2013-05-21 Glenn Morris <rgm@gnu.org>
11984
11985 * files.el (dired-unmark):
11986 * progmodes/gud.el (gdb-input): Update declarations.
11987
11988 * calculator.el (electric, ehelp): No need to load when compiling.
11989 (Electric-command-loop, electric-describe-mode): Declare.
11990
11991 * doc-view.el (doc-view-current-converter-processes): Move before use.
11992
11993 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
11994 Move MODE-set-explicitly definition before use.
11995
11996 * international/mule-diag.el (mule-diag):
11997 Don't use obsolete window-system-version.
11998
11999 * mail/feedmail.el (smtpmail): No need to load when compiling.
12000 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
12001
12002 * mail/mail-utils.el (rfc822): No need to load when compiling.
12003 (rfc822-addresses): Autoload it.
12004 (mail-strip-quoted-names): Trivial simplification.
12005
12006 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
12007 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
12008
12009 * net/snmp-mode.el (tempo): Don't duplicate requires.
12010
12011 * progmodes/prolog.el (info): No need to load when compiling.
12012 (comint): Require before shell requires it.
12013 (Info-goto-node): Autoload it.
12014 (Info-follow-nearest-node): Declare.
12015 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
12016
12017 * textmodes/artist.el (picture-mode-exit): Declare.
12018
12019 * textmodes/reftex-parse.el (reftex-parse-from-file):
12020 Trivial rewrite so the compiler can parse it better.
12021
12022 2013-05-20 Leo Liu <sdl.web@gmail.com>
12023
12024 * progmodes/octave.el (octave-help-mode-map)
12025 (octave-help-mode-finish-hook): New variables.
12026 (octave-help-mode, octave-help-mode-finish): New functions.
12027 (octave-help): Use octave-help-mode.
12028
12029 2013-05-20 Glenn Morris <rgm@gnu.org>
12030
12031 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
12032
12033 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
12034
12035 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
12036 start at point, so that expansion starting right after opening
12037 slash in a regexp is recognized.
12038 (ruby-syntax-before-regexp-re): New defvar, extracted from
12039 ruby-syntax-propertize-function. Since the value of this regexp
12040 is looked up at runtime now, we should be able to turn
12041 `ruby-syntax-methods-before-regexp' into a defcustom later.
12042 (ruby-syntax-propertize-function): Split regexp matching into two
12043 parts, for opening and closing slashes. That allows us to skip
12044 over string interpolations and support multiline regexps.
12045 Don't call `ruby-syntax-propertize-expansions', instead use another rule
12046 for them, which calls `ruby-syntax-propertize-expansion'.
12047 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
12048 call to `ruby-syntax-propertize-function'.
12049 (ruby-syntax-propertize-expansion): Extracted from
12050 `ruby-syntax-propertize-expansions'. Handles one expansion.
12051 (ruby-syntax-propertize-percent-literal): Leave point right after
12052 the percent symbol, so that the expression expansion rule can
12053 propertize the contents.
12054 (ruby-syntax-propertize-heredoc): Leave point at bol following the
12055 heredoc openers.
12056 (ruby-syntax-propertize-expansions): Remove.
12057
12058 2013-05-18 Juri Linkov <juri@jurta.org>
12059
12060 * man.el (Man-default-man-entry): Remove `-' from the end
12061 of the default value. (Bug#14400)
12062
12063 2013-05-18 Glenn Morris <rgm@gnu.org>
12064
12065 * comint.el (comint-password-prompt-regexp):
12066 Allow "password for XXX" where XXX contains colons (eg https://...).
12067
12068 2013-05-18 Leo Liu <sdl.web@gmail.com>
12069
12070 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
12071 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
12072 (octave-source-directories): Don't check process.
12073 (octave-source-directories, octave-find-definition): Doc fix.
12074
12075 2013-05-18 Glenn Morris <rgm@gnu.org>
12076
12077 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
12078 Remove backspace/delete bindings. (Bug#14392)
12079
12080 * cus-dep.el (custom-make-dependencies): Sort the output.
12081 (custom-versions-load-alist): Convert comment to doc.
12082
12083 2013-05-17 Leo Liu <sdl.web@gmail.com>
12084
12085 * newcomment.el (comment-search-backward): Stricter in finding
12086 comment start. (Bug#14303)
12087
12088 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
12089 (octave-comment-start-skip): Properly anchored.
12090
12091 2013-05-17 Leo Liu <sdl.web@gmail.com>
12092
12093 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
12094 Clean up when turned off. (Bug#14395)
12095 (smie--highlight-matching-block-overlay): No longer buffer-local.
12096 (smie-highlight-matching-block): Adjust.
12097
12098 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
12099
12100 Doc string fix for "nanoseconds" (Bug#14406).
12101 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
12102 Fix doc string typo that had "nanoseconds" instead of "microseconds".
12103
12104 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
12105
12106 * calc/calc-units.el (math-extract-units): Preserve powers
12107 of units.
12108
12109 2013-05-17 Leo Liu <sdl.web@gmail.com>
12110
12111 * subr.el (delete-consecutive-dups): New function.
12112 * ido.el (ido-set-matches-1): Use it.
12113 * progmodes/octave.el (inferior-octave-completion-table): Use it.
12114 * ido.el (ido-remove-consecutive-dups): Remove.
12115
12116 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12117
12118 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
12119 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
12120 regexp-opt's `words'.
12121
12122 2013-05-16 Leo Liu <sdl.web@gmail.com>
12123
12124 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
12125 (smie--highlight-matching-block-overlay)
12126 (smie--highlight-matching-block-lastpos)
12127 (smie--highlight-matching-block-timer): New variables.
12128 (smie-highlight-matching-block): New function.
12129 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
12130 (smie-setup): Conditionally enable smie-blink-matching-open.
12131
12132 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
12133
12134 Sync with upstream verilog-mode r840.
12135 * progmodes/verilog-mode.el (verilog-mode-version)
12136 (verilog-mode-release-date): Update.
12137 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
12138 (verilog-sig-tieoff): Fix string error on
12139 AUTORESET with colon define, bug594. Reported by Andrew Hou.
12140 (verilog-read-decls): Fix parameters confusing
12141 AUTOINST interfaces, bug565. Reported by Leith Johnson.
12142
12143 2013-05-16 Eli Zaretskii <eliz@gnu.org>
12144
12145 * subr.el (reveal-filename): New function.
12146
12147 * loadup.el: Compute Emacs executable versions on MS-Windows,
12148 where executables have the .exe extension. Add a hard link
12149 emacs-XX.YY.ZZ.exe on MS-Windows.
12150
12151 * Makefile.in (XARGS_LIMIT): New variable.
12152 (custom-deps, finder-data, autoloads)
12153 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
12154 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
12155 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
12156 (compile-main): Limit xargs according to $(XARGS_LIMIT).
12157
12158 2013-05-16 Leo Liu <sdl.web@gmail.com>
12159
12160 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
12161 (octave-mode-menu, octave-mode-map): Remove its uses.
12162
12163 2013-05-16 Reto Zimmermann <reto@gnu.org>
12164
12165 Sync with upstream vhdl mode v3.34.2.
12166 * progmodes/vhdl-mode.el: Use `push' throughout.
12167 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
12168 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
12169 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
12170 (vhdl-actual-generic-name): New option to derive actual generic name.
12171 (vhdl-port-paste-signals): Replace formal by actual generics.
12172 (vhdl-beautify): New name for old group vhdl-align. Update users.
12173 (vhdl-beautify-options): New option.
12174 (vhdl-last-input-event): New compat alias. Use throughout.
12175 (vhdl-goto-line): Replace user level function `goto-line'.
12176 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
12177 vhdl-fix-statement-buffer.
12178 (vhdl-create-mode-menu): Add some entries.
12179 (vhdl-align-region-groups): Respect vhdl-beautify-options.
12180 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
12181 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
12182 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
12183 to force statements on one line.
12184 (vhdl-remove-trailing-spaces-region):
12185 New, split from vhdl-remove-trailing-spaces.
12186 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
12187 Respect vhdl-beautify-options.
12188 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
12189 (vhdl-update-sensitivity-list): Not add with index if exists without.
12190 Not include array index with signal. Ignore keywords in comments.
12191 (vhdl-get-visible-signals): Regexp tweaks.
12192 (vhdl-template-component-inst): Handle empty library.
12193 (vhdl-template-type): Add template for 'enum' type.
12194 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
12195 Use vhdl-replace-string.
12196 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
12197 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
12198 (vhdl-speedbar-initialize): Update for above name change.
12199 (vhdl-compose-wire-components): Fix in handling of constants.
12200 (vhdl-error-regexp-emacs-alist): New variable.
12201 (vhdl-error-regexp-add-emacs): New function;
12202 adds support for new compile.el (Emacs 22+)
12203 (vhdl-generate-makefile-1): Change target order for single lib. units.
12204 Allow use of absolute file names.
12205
12206 2013-05-16 Leo Liu <sdl.web@gmail.com>
12207
12208 * simple.el (prog-indent-sexp): Indent enclosing defun.
12209
12210 2013-05-15 Glenn Morris <rgm@gnu.org>
12211
12212 * cus-start.el (show-trailing-whitespace): Move to editing basics.
12213 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
12214 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
12215 (whitespace-highlight): Move to whitespace group.
12216
12217 * comint.el (comint-source):
12218 * pcmpl-linux.el (pcmpl-linux):
12219 * shell.el (shell-faces):
12220 * eshell/esh-opt.el (eshell-opt):
12221 * international/ccl.el (ccl): Remove empty custom groups.
12222
12223 * completion.el (dynamic-completion-mode):
12224 * jit-lock.el (jit-lock-debug-mode):
12225 * minibuffer.el (completion-in-region-mode):
12226 * type-break.el (type-break-mode-line-message-mode)
12227 (type-break-query-mode):
12228 * emulation/tpu-edt.el (tpu-edt-mode):
12229 * progmodes/subword.el (global-subword-mode, global-superword-mode):
12230 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
12231 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
12232
12233 * term/xterm.el (xterm): Change parent group to terminals.
12234
12235 * master.el (master): Remove empty custom group.
12236 (master-mode): Remove unused :group argument.
12237 * textmodes/refill.el (refill): Remove empty custom group.
12238 (refill-mode): Remove unused :group argument.
12239
12240 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
12241
12242 * cus-dep.el: Provide a feature.
12243 (custom-make-dependencies): Ignore dotfiles (dir-locals).
12244 Don't mistakenly ignore files whose basenames match a basename
12245 from preloaded-file-list (eg cedet/ede/simple.el).
12246 Add a fallback method for getting :group.
12247
12248 2013-05-15 Juri Linkov <juri@jurta.org>
12249
12250 * isearch.el (isearch-char-by-name): Rename from
12251 `isearch-insert-char-by-name'. Doc fix.
12252 (isearch-forward): Mention `isearch-char-by-name' in
12253 the docstring. (Bug#13348)
12254
12255 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
12256 `exit-minibuffer' instead of
12257 `isearch-nonincremental-exit-minibuffer'.
12258 (isearch-edit-string): Remove mention of
12259 `isearch-nonincremental-exit-minibuffer' from docstring.
12260 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
12261 (isearch-forward-exit-minibuffer)
12262 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
12263
12264 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12265
12266 * loadup.el: Just use unversioned DOC.
12267
12268 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
12269 literals as extending to EOB.
12270 (nxml-last-fontify-end): Remove unused variable.
12271 (nxml-after-change1): Use with-silent-modifications.
12272 (nxml-extend-after-change-region): Simplify.
12273 (nxml-extend-after-change-region1): Remove function.
12274 (nxml-after-change1): Don't adjust for dependent regions.
12275 (nxml-fontify-matcher): Simplify.
12276 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
12277 (xmltok-add-dependent): Remove function.
12278 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
12279 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
12280 (xmltok-scan-prolog-after-processing-instruction-open): Treat
12281 unclosed <[[, <?, comment, and other literals as extending to EOB.
12282 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
12283 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
12284 Remove functions.
12285 (rng-do-some-validation-1): Don't mark dependent regions.
12286 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
12287 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
12288 (nxml-clear-dependent-regions): Remove functions.
12289 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
12290 (nxml-ensure-scan-up-to-date):
12291 Don't clear&mark dependent regions.
12292
12293 2013-05-15 Leo Liu <sdl.web@gmail.com>
12294
12295 * progmodes/octave.el (octave-goto-function-definition):
12296 Improve and fix callers.
12297
12298 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12299
12300 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
12301 the setter (bug#14387).
12302
12303 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
12304 surrounding group (bug#14402).
12305
12306 2013-05-14 Juri Linkov <juri@jurta.org>
12307
12308 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
12309 (Bug#14390)
12310
12311 2013-05-14 Glenn Morris <rgm@gnu.org>
12312
12313 * progmodes/f90.el (f90-imenu-generic-expression):
12314 Fix typo in 2013-05-08 change. (Bug#14402)
12315
12316 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
12317
12318 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
12319 Remove signals for which replies are never received.
12320
12321 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
12322
12323 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
12324 (gdb-handler-alist, gdb-handler-number): Remove variables.
12325 (gdb-handler-list): New variable.
12326 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
12327 (gdb-pending-handler-p, gdb-handle-reply)
12328 (gdb-remove-all-pending-triggers): New functions.
12329 (gdb-discard-unordered-replies): New defcustom.
12330 (gdb-handler): New defstruct.
12331 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
12332 instead of gdb-pending-triggers. Update docstring.
12333 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
12334 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
12335 (gdb-var-update-handler, def-gdb-auto-update-trigger)
12336 (def-gdb-auto-update-handler, gdb-get-changed-registers)
12337 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
12338 (gdb-frame-handler): Pending triggers are now automatically managed.
12339 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
12340 Remove argument.
12341 (gdb-input): Automatically handles pending triggers. Update docstring.
12342 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
12343 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
12344 Update comments.
12345 (gdb-done-or-error): Now use gdb-handle-reply.
12346
12347 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
12348
12349 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
12350 gdb-debug-log.
12351
12352 2013-05-14 Glenn Morris <rgm@gnu.org>
12353
12354 * subr.el (user-emacs-directory-warning): New option.
12355 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
12356
12357 2013-05-14 Leo Liu <sdl.web@gmail.com>
12358
12359 * progmodes/octave.el (octave-font-lock-keywords): Fix error
12360 during redisplay.
12361 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
12362 (octave-font-lock-texinfo-comment): Fix invalid search bound
12363 error: wrong side of point.
12364
12365 2013-05-14 Glenn Morris <rgm@gnu.org>
12366
12367 * progmodes/flymake.el (flymake-xml-program): New option.
12368 (flymake-xml-init): Use it.
12369
12370 * term/xterm.el: Provide a feature.
12371
12372 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
12373
12374 2013-05-13 Glenn Morris <rgm@gnu.org>
12375
12376 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
12377 Add compat aliases as a hack workaround. (Bug#14384)
12378
12379 2013-05-13 Leo Liu <sdl.web@gmail.com>
12380
12381 * progmodes/octave.el (octave-indent-comment): Fix indentation for
12382 ###, and %!.
12383 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
12384 C-M-q.
12385 (octave-comment-start-skip): Include %!.
12386 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
12387
12388 2013-05-12 Leo Liu <sdl.web@gmail.com>
12389
12390 * progmodes/octave.el (inferior-octave-startup): Store the value
12391 of __octave_srcdir__ for octave-source-directories.
12392 (inferior-octave-check-process): New function refactored out of
12393 inferior-octave-send-list-and-digest.
12394 (octave-source-directories)
12395 (octave-find-definition-filename-function): New variables.
12396 (octave-source-directories)
12397 (octave-find-definition-default-filename): New functions.
12398 (octave-find-definition): Improve to find functions implemented in C++.
12399
12400 2013-05-12 Glenn Morris <rgm@gnu.org>
12401
12402 * calendar/diary-lib.el (diary-outlook-format-1):
12403 Don't include dayname in the output. (Bug#14349)
12404
12405 2013-05-11 Glenn Morris <rgm@gnu.org>
12406
12407 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
12408
12409 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
12410 Treat cc-provide like provide.
12411
12412 2013-05-11 Kevin Ryde <user42@zip.com.au>
12413
12414 * cus-dep.el (custom-make-dependencies):
12415 Use generated-autoload-load-name for the sake of files such
12416 such cedet/semantic/bovine/c.el, where the base file name
12417 is not in load-path. (Bug#5277)
12418
12419 2013-05-11 Glenn Morris <rgm@gnu.org>
12420
12421 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
12422 Provide features.
12423
12424 2013-05-11 Leo Liu <sdl.web@gmail.com>
12425
12426 * progmodes/octave.el (octave-indent-comment): Improve.
12427 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
12428 (octave-eldoc-function-signatures, octave-eldoc-function):
12429 New functions.
12430 (octave-mode, inferior-octave-mode): Add eldoc support.
12431
12432 2013-05-11 Richard Stallman <rms@gnu.org>
12433
12434 * epa.el (epa-decrypt-file): Take output file name as argument
12435 and read it using `interactive'.
12436
12437 2013-05-11 Leo Liu <sdl.web@gmail.com>
12438
12439 * progmodes/octave.el (octave-beginning-of-line)
12440 (octave-end-of-line): Check before using up-list because it jumps
12441 out of more syntactic contructs since moving to smie.
12442 (octave-indent-comment): New function.
12443 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
12444 (octave-begin-keywords, octave-end-keywords)
12445 (octave-reserved-words, octave-smie-bnf-table)
12446 (octave-smie-rules): Add new keywords from Octave 3.6.4.
12447
12448 2013-05-11 Glenn Morris <rgm@gnu.org>
12449
12450 * faces.el (internal-face-x-get-resource):
12451 * frame.el (ns-display-monitor-attributes-list):
12452 * calc/calc-aent.el (math-to-radians-2):
12453 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
12454 Fix declarations.
12455
12456 * calc/calc-menu.el: Make it loadable in isolation.
12457
12458 * net/eudcb-bbdb.el: Make it loadable without bbdb.
12459 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
12460 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
12461 (eudc-bbdb-query-internal): Require 'bbdb.
12462
12463 * lpr.el (lpr-headers-switches):
12464 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
12465
12466 * progmodes/sql.el (sql-login-params): Fix and improve :type.
12467
12468 * emulation/edt-mapper.el: In batch mode, error rather than hang.
12469
12470 * term.el (term-set-escape-char): Make it idempotent.
12471
12472 2013-05-10 Leo Liu <sdl.web@gmail.com>
12473
12474 * progmodes/octave.el (inferior-octave-completion-table):
12475 No longer a function and all uses changed. Use cache to speed up
12476 completion due to bug#11906.
12477 (octave-beginning-of-defun): Re-write to be more general.
12478
12479 2013-05-10 Glenn Morris <rgm@gnu.org>
12480
12481 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
12482
12483 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12484
12485 * comint.el (comint-redirect-send-command-to-process): Use :around
12486 rather than :override for comint-redirect-filter.
12487 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
12488 Call it instead of comint-redirect-original-filter-function (which
12489 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
12490
12491 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
12492
12493 * frame.el (display-monitor-attributes-list): Add NS case.
12494 (ns-display-monitor-attributes-list): Declare.
12495
12496 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
12497
12498 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
12499
12500 2013-05-09 Glenn Morris <rgm@gnu.org>
12501
12502 * international/fontset.el (vertical-centering-font-regexp):
12503 Set standard-value.
12504
12505 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
12506
12507 * bookmark.el (bookmark-search-delay):
12508 * cus-start.el (vertical-centering-font-regexp):
12509 * ps-mule.el (ps-mule-font-info-database-default):
12510 * ps-print.el (ps-default-fg, ps-default-bg):
12511 * type-break.el (type-break-good-break-interval):
12512 * whitespace.el (whitespace-indentation-regexp)
12513 (whitespace-space-after-tab-regexp):
12514 * emacs-lisp/testcover.el (testcover-1value-functions)
12515 (testcover-noreturn-functions, testcover-progn-functions)
12516 (testcover-prog1-functions):
12517 * emulation/viper-init.el (viper-emacs-state-cursor-color):
12518 * eshell/em-glob.el (eshell-glob-translate-alist):
12519 * play/tetris.el (tetris-tty-colors):
12520 * progmodes/cpp.el (cpp-face-default-list):
12521 * progmodes/flymake.el (flymake-allowed-file-name-masks):
12522 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
12523 (idlwave-help-browser-generic-args):
12524 * progmodes/make-mode.el (makefile-special-targets-list):
12525 * progmodes/python.el (python-shell-virtualenv-path):
12526 * progmodes/verilog-mode.el (verilog-active-low-regexp)
12527 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
12528 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
12529 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
12530 * textmodes/reftex-vars.el (reftex-format-label-function):
12531 * textmodes/remember.el (remember-diary-file): Fix custom types.
12532
12533 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
12534 Add :version.
12535
12536 2013-05-09 Leo Liu <sdl.web@gmail.com>
12537
12538 * progmodes/octave.el (inferior-octave-completion-at-point):
12539 Restore file completion. (Bug#14300)
12540 (inferior-octave-startup): Fix incorrect highlighting for the
12541 first prompt.
12542
12543 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12544
12545 * progmodes/ruby-mode.el: First cut at SMIE support.
12546 (ruby-use-smie): New var.
12547 (ruby-smie-grammar): New constant.
12548 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
12549 (ruby-smie--forward-token, ruby-smie--backward-token)
12550 (ruby-smie-rules): New functions.
12551 (ruby-mode-variables): Setup SMIE if applicable.
12552
12553 2013-05-08 Eli Zaretskii <eliz@gnu.org>
12554
12555 * simple.el (line-move-visual): Signal beginning/end of buffer
12556 only if vertical-motion moved less than it was requested. Avoids
12557 silly incorrect error messages when there are display strings with
12558 multiple newlines at EOL.
12559
12560 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12561
12562 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
12563 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
12564 (prolog-char-quote-workaround):
12565 * progmodes/cperl-mode.el (cperl-under-as-char):
12566 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
12567 Mark as obsolete.
12568 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
12569 their declaration.
12570 (vhdl-mode-syntax-table-init): Remove.
12571
12572 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
12573 last change.
12574
12575 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
12576 syntax for "_".
12577 (ld-script-font-lock-keywords):
12578 Change regexps to use things like \_< and \_>.
12579
12580 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
12581 Change all regexps to use things like \_< and \_>.
12582
12583 * progmodes/autoconf.el (autoconf-definition-regexp)
12584 (autoconf-font-lock-keywords, autoconf-current-defun-function):
12585 Handle a _ with symbol syntax.
12586 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
12587
12588 * progmodes/ada-mode.el (ada-mode-abbrev-table):
12589 Consolidate declaration.
12590 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
12591 the declaration.
12592 (ada-create-syntax-table): Remove.
12593 (ada-capitalize-word): Don't mess with the syntax of "_" since it
12594 already has the right syntax nowadays.
12595 (ada-goto-next-word): Don't change the syntax of "_".
12596
12597 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
12598 with-wrapper-hook.
12599
12600 2013-05-08 Sam Steingold <sds@gnu.org>
12601
12602 * thingatpt.el (thing-at-point): Accept optional second argument
12603 NO-PROPERTIES to strip the text properties from the return value.
12604 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
12605 to `thing-at-point' instead of stripping the properties ourselves.
12606 Also, when `thing-at-point' fails to find a url, prepend "http://"
12607 to the filename at point on the assumption that the user is
12608 pointing at something like gnu.org/gnu.
12609
12610 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
12611
12612 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
12613 * faces.el (crm-separator):
12614 Silence byte-compiler.
12615
12616 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
12617 (tool-bar-map): Remove unneeded defvars.
12618
12619 2013-05-08 Leo Liu <sdl.web@gmail.com>
12620
12621 Re-work a fix for bug#10994 based on Le Wang's patch.
12622 * ido.el (ido-remove-consecutive-dups): New helper.
12623 (ido-completing-read): Use it.
12624 (ido-chop): Revert fix for bug#10994.
12625
12626 2013-05-08 Adam Spiers <emacs@adamspiers.org>
12627
12628 * cus-edit.el (custom-save-variables):
12629 Pretty-print long values. (Bug#14187)
12630
12631 2013-05-08 Glenn Morris <rgm@gnu.org>
12632
12633 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
12634 (m4-mode-syntax-table): Init in the defvar.
12635 (m4-mode-abbrev-table): Let define-derived-mode define it.
12636
12637 2013-05-08 Tom Tromey <tromey@redhat.com>
12638
12639 * progmodes/m4-mode.el (m4-mode-syntax-table):
12640 Do not treat "_" as word constituent. (Bug#14167)
12641
12642 2013-05-07 Glenn Morris <rgm@gnu.org>
12643
12644 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
12645 Remove explicit eshell-isearch-cancel-map.
12646
12647 * progmodes/f90.el (f90-smart-end-names): New option.
12648 (f90-smart-end): Doc fix.
12649 (f90-end-block-optional-name): New constant.
12650 (f90-block-match): Respect f90-smart-end-names.
12651
12652 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12653
12654 * progmodes/octave.el (octave-smie-forward-token): Be more careful
12655 about implicit semi-colons (bug#14218).
12656
12657 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12658
12659 * frame.el (display-monitor-attributes-list)
12660 (frame-monitor-attributes): New functions.
12661
12662 2013-05-06 Leo Liu <sdl.web@gmail.com>
12663
12664 * progmodes/octave.el (octave-syntax-propertize-function): Change
12665 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
12666 (octave-font-lock-keywords): Use octave-operator-regexp.
12667 (octave-completion-at-point): Rename from
12668 octave-completion-at-point-function.
12669 (inferior-octave-directory-tracker): Robustify.
12670 (octave-text-functions): Remove and fix its uses. No such things
12671 any more.
12672
12673 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12674
12675 * emacs-lisp/trace.el (trace--display-buffer): New function.
12676 (trace-make-advice): Use it.
12677
12678 2013-05-06 Juri Linkov <juri@jurta.org>
12679
12680 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
12681 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
12682 Doc fix.
12683 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
12684 in the help string. (Bug#12985)
12685
12686 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
12687
12688 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
12689
12690 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12691
12692 * progmodes/perl-mode.el: Add support for here documents.
12693 (perl-syntax-propertize-function): Match here-doc markers.
12694 (perl-syntax-propertize-special-constructs): Find their end.
12695 (perl-imenu-generic-expression): Use [:alnum:].
12696
12697 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
12698 (advice--add-function): Refresh the advice if already present
12699 (bug#14317).
12700
12701 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
12702
12703 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
12704
12705 2013-05-06 Glenn Morris <rgm@gnu.org>
12706
12707 * w32-fns.el (w32-charset-info-alist): Declare.
12708
12709 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
12710 of its defcustom properties.
12711 (eshell-cmpl-initialize): No need to load pcomplete.
12712
12713 * generic-x.el: No need to require comint when compiling.
12714
12715 * net/eudc-export.el: Make it loadable without bbdb.
12716 (top-level): Use require rather than load-library.
12717 (eudc-create-bbdb-record, eudc-bbdbify-phone)
12718 (eudc-batch-export-records-to-bbdb)
12719 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
12720 Require bbdb.
12721
12722 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12723
12724 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
12725 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
12726 some tweaks, instead.
12727
12728 2013-05-05 Leo Liu <sdl.web@gmail.com>
12729
12730 * progmodes/octave.el (octave-font-lock-keywords)
12731 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
12732 (inferior-octave-send-list-and-digest): Improve error message.
12733 (octave-mode, inferior-octave-mode): Use setq-local.
12734 (octave-help): Set info-lookup-mode.
12735
12736 2013-05-05 Richard Stallman <rms@gnu.org>
12737
12738 * vc/compare-w.el (compare-windows-whitespace):
12739 Treat no-break space as whitespace.
12740
12741 * mail/rmailsum.el (rmail-summary-rmail-update):
12742 Detect empty summary and don't change selected message.
12743 (rmail-summary-goto-msg): Likewise.
12744
12745 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
12746 Doc fixes, rename args.
12747
12748 2013-05-05 Alan Mackenzie <acm@muc.de>
12749
12750 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
12751
12752 2013-05-05 Juri Linkov <juri@jurta.org>
12753
12754 * info.el (Info-read-subfile): Use (point-min) instead of (point)
12755 to not add the length of the summary segment to the return value.
12756 (Bug#14125)
12757
12758 2013-05-05 Leo Liu <sdl.web@gmail.com>
12759
12760 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
12761 (inferior-octave-output-filter): Remove.
12762 (octave-send-region, inferior-octave-startup): Fix callers.
12763 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
12764 (octave-binary-file-extensions): New user variable.
12765 (octave-find-definition): Confirm if opening binary files.
12766 (octave-help-file): Use octave-find-definition to get the binary
12767 confirmation.
12768 (octave-help): Adjust for octave-help-file change.
12769
12770 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12771
12772 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
12773 Merge the two entries that handle function definitions.
12774 (pascal--syntax-propertize): New const.
12775 (pascal-mode): Use it. Use setq-local.
12776
12777 2013-05-04 Glenn Morris <rgm@gnu.org>
12778
12779 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
12780 (diary-from-outlook): Respect diary-from-outlook-function.
12781
12782 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12783
12784 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
12785 Move the declaration from C.
12786 (read-minibuffer, eval-minibuffer): Move from C.
12787 (completion-setup-function): Avoid minibuffer-completion-contents.
12788
12789 2013-05-03 Leo Liu <sdl.web@gmail.com>
12790
12791 * progmodes/octave.el (octave-font-lock-keywords): Do not
12792 dehighlight 'end' in comments or strings.
12793 (octave-completing-read, octave-goto-function-definition):
12794 New helpers.
12795 (octave-help-buffer): New user variable.
12796 (octave-help-file, octave-help-function): New button types.
12797 (octave-help): New command and bind it to C-h ;.
12798 (octave-find-definition): New command and bind it to M-.
12799 (user-error): Alias to error if not defined.
12800
12801 2013-05-02 Leo Liu <sdl.web@gmail.com>
12802
12803 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
12804 for \. (bug#14332)
12805 (octave-font-lock-keywords): Include [ and {.
12806
12807 2013-05-02 Leo Liu <sdl.web@gmail.com>
12808
12809 * progmodes/octave.el (inferior-octave-startup-file): Change default.
12810 (inferior-octave): Remove calling comint-mode and return the buffer.
12811 (inferior-octave-startup): Cosmetic changes.
12812
12813 2013-05-02 Leo Liu <sdl.web@gmail.com>
12814
12815 * progmodes/octave.el (octave-syntax-propertize-function):
12816 Include the case when ' is at line beginning. (Bug#14336)
12817
12818 2013-05-02 Glenn Morris <rgm@gnu.org>
12819
12820 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
12821 * desktop.el (vc-dir-mode): Just autoload it here.
12822
12823 2013-05-02 Alan Mackenzie <acm@muc.de>
12824
12825 Eliminate variable c-standard-font-lock-fontify-region-function.
12826 * progmodes/cc-mode.el
12827 (c-standard-font-lock-fontify-region-function): Remove.
12828 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
12829
12830 2013-05-01 Leo Liu <sdl.web@gmail.com>
12831
12832 * progmodes/octave.el: Compatible with older emacs-24 releases.
12833 (inferior-octave-has-built-in-variables): Remove. Built-in
12834 variables were removed from Octave in 2007.
12835 (inferior-octave-startup): Fix uses.
12836 (comint-line-beginning-position): Remove compatibility code for
12837 emacs 21.
12838
12839 2013-05-01 Juri Linkov <juri@jurta.org>
12840
12841 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
12842
12843 2013-05-01 Juri Linkov <juri@jurta.org>
12844
12845 * comint.el (comint-previous-matching-input): Don't print message
12846 "History item: %d" when `isearch-mode' is active.
12847 (comint-history-isearch-message): Print message "History item: %d"
12848 when `comint-input-ring-index' is not empty and this function is
12849 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
12850
12851 2013-05-01 Leo Liu <sdl.web@gmail.com>
12852
12853 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
12854 definitions. Use completion-at-point to insert keywords.
12855 (octave-abbrev-start): Remove.
12856 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
12857
12858 2013-04-30 Leo Liu <sdl.web@gmail.com>
12859
12860 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
12861 change.
12862
12863 2013-04-30 Alan Mackenzie <acm@muc.de>
12864
12865 Handle arbitrarily long C++ member initialisation lists.
12866 * progmodes/cc-engine.el (c-back-over-member-initializers):
12867 new function.
12868 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
12869 (most) member init lists.
12870
12871 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12872
12873 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
12874 variable.
12875
12876 2013-04-30 Leo Liu <sdl.web@gmail.com>
12877
12878 * progmodes/octave.el (octave-variables): Remove. No builtin
12879 variables any more. All converted to functions.
12880 (octave-font-lock-keywords, octave-completion-at-point-function):
12881 Fix uses.
12882 (octave-font-lock-texinfo-comment): New user variable.
12883 (octave-texinfo-font-lock-keywords): New variable for texinfo
12884 comment block.
12885 (octave-function-comment-block): New face.
12886 (octave-font-lock-texinfo-comment): New function.
12887 (octave-mode): Font lock texinfo comment block.
12888
12889 2013-04-29 Leo Liu <sdl.web@gmail.com>
12890
12891 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
12892 indexing expression.
12893 (octave-continuation-string): Do not use \.
12894 (inferior-octave-complete-impossible): Remove.
12895 (inferior-octave-completion-table)
12896 (inferior-octave-completion-at-point): Remove its uses.
12897 (inferior-octave-startup): completion_matches was introduced to
12898 Octave in 1996 so safe to assume it.
12899 (octave-function-file-comment): Improve to follow how Octave does it.
12900 (octave-update-function-file-comment): Tweak.
12901
12902 2013-04-29 Leo Liu <sdl.web@gmail.com>
12903
12904 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
12905 (inferior-octave-startup): Remove inferior-octave-startup-hook.
12906 (octave-function-file-comment): Fix typo.
12907 (octave-sync-function-file-names): Use read-char-choice.
12908
12909 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
12910
12911 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
12912 to t for the less important warnings.
12913
12914 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
12915
12916 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
12917
12918 2013-04-27 Glenn Morris <rgm@gnu.org>
12919
12920 * vc/log-view.el (log-view-current-entry):
12921 Treat "---" separator lines as part of the following rev. (Bug#14169)
12922
12923 2013-04-27 Juri Linkov <juri@jurta.org>
12924
12925 * subr.el (read-number): Doc fix about using it by interactive
12926 code letter `n'. (Bug#14254)
12927
12928 2013-04-27 Juri Linkov <juri@jurta.org>
12929
12930 * desktop.el (desktop-auto-save-timeout): New option.
12931 (desktop-file-checksum): New variable.
12932 (desktop-save): Add optional arg `auto-save' and don't auto-save
12933 if nothing changed.
12934 (desktop-auto-save-timer): New variable.
12935 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
12936 (after-init-hook): Call `desktop-auto-save-set-timer'.
12937 Suggested by Reuben Thomas <rrt@sc3d.org> in
12938 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
12939
12940 2013-04-27 Leo Liu <sdl.web@gmail.com>
12941
12942 * progmodes/octave.el (octave-function-file-p)
12943 (octave-skip-comment-forward, octave-function-file-comment)
12944 (octave-update-function-file-comment): New functions.
12945 (octave-mode-map): Bind C-c ; to
12946 octave-update-function-file-comment.
12947 (octave-mode-menu): Add octave-update-function-file-comment.
12948 (octave-mode, inferior-octave-mode): Fix doc-string.
12949 (octave-insert-defun): Conform to Octave's coding convention.
12950 (Bug#14285)
12951
12952 * files.el (basic-save-buffer): Don't let errors in
12953 before-save-hook prevent saving buffer.
12954
12955 2013-04-20 Roland Winkler <winkler@gnu.org>
12956
12957 * faces.el (read-face-name): Use completing-read if arg multiple
12958 is nil.
12959
12960 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
12961
12962 * ls-lisp.el (ls-lisp-insert-directory): If no files are
12963 displayed, move point to after the totals line.
12964 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
12965 for the details.
12966
12967 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
12968
12969 * emacs-lisp/package.el (package-autoload-ensure-default-file):
12970 Add current dir to the load-path.
12971 (package-generate-autoloads): Don't rely on
12972 autoload-ensure-default-file.
12973
12974 2013-04-26 Reuben Thomas <rrt@sc3d.org>
12975
12976 * textmodes/remember.el (remember-store-in-files): Document that
12977 the file name format is passed to `format-time-string'.
12978
12979 2013-04-26 Leo Liu <sdl.web@gmail.com>
12980
12981 * progmodes/octave.el (octave-sync-function-file-names): New function.
12982 (octave-mode): Use it in before-save-hook.
12983
12984 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
12985
12986 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
12987 (bug#14274).
12988
12989 * progmodes/octave.el (octave-smie-forward-token): Properly skip
12990 \n and comment, even if it's not an implicit ; (bug#14218).
12991
12992 2013-04-26 Glenn Morris <rgm@gnu.org>
12993
12994 * subr.el (read-number): Once more use `read' rather than
12995 `string-to-number', to trap non-numeric input. (Bug#14254)
12996
12997 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
12998
12999 * emacs-lisp/syntax.el (syntax-propertize-multiline):
13000 Use `syntax-multiline' text property consistently instead of
13001 `font-lock-multiline'. (Bug#14237)
13002
13003 2013-04-26 Glenn Morris <rgm@gnu.org>
13004
13005 * emacs-lisp/shadow.el (list-load-path-shadows):
13006 No longer necessary to check for duplicate simple.el, since
13007 2012-07-07 change to init_lread to not include installation lisp
13008 directories in load-path when running uninstalled. (Bug#14270)
13009
13010 2013-04-26 Leo Liu <sdl.web@gmail.com>
13011
13012 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
13013 (octave-mode, inferior-octave-mode): Use setq-local.
13014 (octave-not-in-string-or-comment-p): Rename to
13015 octave-in-string-or-comment-p.
13016 (octave-in-comment-p, octave-in-string-p)
13017 (octave-in-string-or-comment-p): Replace defsubst with defun.
13018
13019 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
13020
13021 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
13022
13023 2013-04-25 Bastien Guerry <bzg@gnu.org>
13024
13025 * textmodes/remember.el (remember-data-directory)
13026 (remember-directory-file-name-format): Fix custom types.
13027
13028 2013-04-25 Leo Liu <sdl.web@gmail.com>
13029
13030 * progmodes/octave.el (octave-completion-at-point-function):
13031 Make use of inferior octave process.
13032 (octave-initialize-completions): Remove.
13033 (inferior-octave-completion-table): New function.
13034 (inferior-octave-completion-at-point): Use it.
13035 (octave-completion-alist): Remove.
13036
13037 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13038
13039 * progmodes/opascal.el: Use font-lock and syntax-propertize.
13040 (opascal-mode-syntax-table): New var.
13041 (opascal-literal-kind, opascal-is-literal-end)
13042 (opascal-literal-token-at): Rewrite.
13043 (opascal--literal-start-re, opascal-font-lock-keywords)
13044 (opascal--syntax-propertize): New constants.
13045 (opascal-font-lock-defaults): Adjust.
13046 (opascal-mode): Use them. Set comment-<foo> variables as well.
13047 (delphi-comment-face, opascal-comment-face, delphi-string-face)
13048 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
13049 (delphi-other-face, opascal-other-face): Remove face variables.
13050 (opascal-save-state): Remove macro.
13051 (opascal-fontifying-progress-step): Remove constant.
13052 (opascal--ignore-changes): Remove var.
13053 (opascal-set-token-property, opascal-parse-next-literal)
13054 (opascal-is-stable-literal, opascal-complete-literal)
13055 (opascal-is-literal-start, opascal-face-of)
13056 (opascal-parse-region, opascal-parse-region-until-stable)
13057 (opascal-fontify-region, opascal-after-change)
13058 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
13059 (opascal-debug-parse-region, opascal-debug-parse-window)
13060 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
13061 (opascal-debug-fontify-buffer): Remove.
13062 (opascal-debug-mode-map): Adjust accordingly.
13063
13064 2013-04-25 Leo Liu <sdl.web@gmail.com>
13065
13066 Merge octave-mod.el and octave-inf.el into octave.el with some
13067 cleanups.
13068 * progmodes/octave.el: New file renamed from octave-mod.el.
13069 * progmodes/octave-inf.el: Merged into octave.el.
13070 * progmodes/octave-mod.el: Renamed to octave.el.
13071
13072 2013-04-25 Tassilo Horn <tsdh@gnu.org>
13073
13074 * textmodes/reftex-vars.el
13075 (reftex-label-ignored-macros-and-environments): New defcustom.
13076
13077 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
13078
13079 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13080
13081 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
13082 (smie-indent-keyword): Improve the check to ensure that the next
13083 comment is really on the same line.
13084 (smie-indent-comment): Don't align with a subsequent closer (or eob).
13085
13086 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
13087 semi-colons if the line is not otherwise empty (bug#14218).
13088
13089 2013-04-25 Glenn Morris <rgm@gnu.org>
13090
13091 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
13092
13093 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
13094
13095 * progmodes/opascal.el (opascal-set-token-property): Rename from
13096 opascal-set-text-properties and only set `token' (bug#14134).
13097 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
13098 (opascal-literal-text-properties): Remove.
13099 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
13100 Adjust callers.
13101
13102 2013-04-24 Reuben Thomas <rrt@sc3d.org>
13103
13104 * textmodes/remember.el (remember-handler-functions): Add an
13105 option for a new handler `remember-store-in-files'.
13106 (remember-data-directory, remember-directory-file-name-format):
13107 New options.
13108 (remember-store-in-files): New function to store remember notes
13109 as separate files within a directory.
13110
13111 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
13112
13113 * progmodes/compile.el (compilation-next-error-function):
13114 Pass "formats" to compilation-find-file (bug#11777).
13115
13116 2013-04-24 Glenn Morris <rgm@gnu.org>
13117
13118 * vc/vc-bzr.el (vc-bzr-print-log):
13119 * vc/vc-hg.el (vc-hg-print-log):
13120 * vc/vc-svn.el (vc-svn-print-log):
13121 Fix START-REVISION with LIMIT != 1. (Bug#14168)
13122
13123 * vc/vc-bzr.el (vc-bzr-print-log):
13124 * vc/vc-cvs.el (vc-cvs-print-log):
13125 * vc/vc-git.el (vc-git-print-log):
13126 * vc/vc-hg.el (vc-hg-print-log):
13127 * vc/vc-mtn.el (vc-mtn-print-log):
13128 * vc/vc-rcs.el (vc-rcs-print-log):
13129 * vc/vc-sccs.el (vc-sccs-print-log):
13130 * vc/vc-svn.el (vc-svn-print-log):
13131 * vc/vc.el (vc-print-log-internal): Doc fixes.
13132
13133 2013-04-23 Glenn Morris <rgm@gnu.org>
13134
13135 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
13136 Remove venerable code attempting to avoid substitute-command-keys.
13137
13138 2013-04-23 Tassilo Horn <tsdh@gnu.org>
13139
13140 * textmodes/reftex-vars.el (reftex-label-regexps):
13141 Call `reftex-compile-variables' after changes to this variable.
13142
13143 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
13144
13145 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
13146 Use lexical-binding.
13147 (jit-lock-force-redisplay): Use markers, check buffer's continued
13148 existence and beware narrowed buffers.
13149 (jit-lock-fontify-now): Adjust call accordingly.
13150
13151 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
13152
13153 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
13154 to avoid misleading the user.
13155
13156 2013-04-22 Leo Liu <sdl.web@gmail.com>
13157
13158 * info-look.el: Prefer latex2e.info. (Bug#14240)
13159
13160 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
13161
13162 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
13163
13164 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
13165 * net/tramp.el (tramp-call-process): ... here.
13166 (tramp-set-completion-function, tramp-parse-putty):
13167 * net/tramp-adb.el (tramp-adb-execute-adb-command):
13168 * net/tramp-gvfs.el (tramp-gvfs-send-command):
13169 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
13170 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
13171 (tramp-call-local-coding-command): Use `tramp-call-process'
13172 instead of `tramp-compat-call-process'.
13173
13174 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
13175 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
13176 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
13177 (tramp-find-inline-compress): Improve traces.
13178 (tramp-maybe-send-script): Check for Perl binary.
13179 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
13180
13181 2013-04-22 Daiki Ueno <ueno@gnu.org>
13182
13183 * epg.el (epg-context-pinentry-mode): New function.
13184 (epg-context-set-pinentry-mode): New function.
13185 (epg--start): Pass --pinentry-mode option to gpg command.
13186
13187 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
13188
13189 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
13190 `comint-dynamic-complete' is obsolete since 24.1, replaced by
13191 `completion-at-point'. (Bug#13774)
13192
13193 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
13194 default key binding for `describe-distribution' has been moved to
13195 `C-h C-o'. (Bug#13970)
13196
13197 2013-04-21 Glenn Morris <rgm@gnu.org>
13198
13199 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
13200 Add doc strings.
13201 (vc-print-log): Clarify interactive prompt.
13202
13203 2013-04-20 Glenn Morris <rgm@gnu.org>
13204
13205 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
13206 No longer include timestamp etc information.
13207
13208 2013-04-20 Roland Winkler <winkler@gnu.org>
13209
13210 * faces.el (read-face-name): Bug fix, return just one face if arg
13211 multiple is nil. (Bug#14209)
13212
13213 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13214
13215 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
13216 (remove-function): Autoload.
13217
13218 * comint.el (comint-redirect-original-filter-function): Remove.
13219 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
13220 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
13221 (vc-cvs-annotate-command):
13222 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
13223 * progmodes/prolog.el (prolog-consult-compile):
13224 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
13225 Use add/remove-function instead.
13226 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
13227 (gud-tooltip-process-output, gud-tooltip-tips):
13228 Use add/remove-function instead.
13229 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
13230 (scheme-interaction-mode, exit-scheme-interaction-mode):
13231 Use add/remove-function instead.
13232
13233 * vc/vc-dispatcher.el: Use lexical-binding.
13234 (vc--process-sentinel): Rename from vc-process-sentinel.
13235 Change last arg to be the code to run. Don't use vc-previous-sentinel
13236 and vc-sentinel-commands any more.
13237 (vc-exec-after): Allow code to be a function. Use add/remove-function.
13238 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
13239
13240 2013-04-19 Masatake YAMATO <yamato@redhat.com>
13241
13242 * progmodes/sh-script.el (sh-imenu-generic-expression):
13243 Handle function names with a single character. (Bug#14111)
13244
13245 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
13246
13247 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
13248 for subroutines defined in an eval (bug#14182).
13249
13250 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13251
13252 * bookmark.el (bookmark-completing-read): Improve handling of empty
13253 string (bug#14176).
13254
13255 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13256
13257 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
13258
13259 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
13260
13261 New faster Imenu implementation (bug#14058).
13262 * progmodes/python.el:
13263 (python-imenu-prev-index-position):
13264 (python-imenu-format-item-label-function)
13265 (python-imenu-format-parent-item-label-function)
13266 (python-imenu-format-parent-item-jump-label-function):
13267 New vars.
13268 (python-imenu-format-item-label)
13269 (python-imenu-format-parent-item-label)
13270 (python-imenu-format-parent-item-jump-label)
13271 (python-imenu--put-parent, python-imenu--build-tree)
13272 (python-imenu-create-index, python-imenu-create-flat-index)
13273 (python-util-popn): New functions.
13274 (python-mode): Set imenu-create-index-function to
13275 python-imenu-create-index.
13276
13277 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13278
13279 * winner.el (winner-active-region): Use region-active-p, activate-mark
13280 and deactivate-mark (bug#14225).
13281
13282 * simple.el (deactivate-mark): Don't inline it.
13283
13284 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
13285
13286 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
13287
13288 2013-04-18 Tassilo Horn <tsdh@gnu.org>
13289
13290 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
13291 file extensions from the archive-mode entry in order to prefer
13292 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
13293
13294 2013-04-18 Leo Liu <sdl.web@gmail.com>
13295
13296 * bindings.el (help-event-list): Add ?\?.
13297
13298 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13299
13300 * subr.el (with-wrapper-hook): Declare obsolete.
13301 * simple.el (filter-buffer-substring-function): New hook.
13302 (filter-buffer-substring): Use it.
13303 (filter-buffer-substring-functions): Mark obsolete.
13304 * minibuffer.el (completion-in-region-function): New hook.
13305 (completion-in-region): Use it.
13306 (completion-in-region-functions): Mark obsolete.
13307 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
13308 * abbrev.el (abbrev-expand-function): New hook.
13309 (expand-abbrev): Use it.
13310 (abbrev-expand-functions): Mark obsolete.
13311 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
13312 and :filter-return.
13313
13314 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
13315
13316 * progmodes/python.el (python-nav--syntactically): Fix cornercases
13317 and do not care about match data.
13318
13319 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13320
13321 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
13322 completion tables when completing error conditions and
13323 `declare' arguments.
13324 (lisp-complete-symbol, field-complete): Mark as obsolete.
13325 (check-parens): Unmatched parens are user errors.
13326 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
13327
13328 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
13329
13330 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
13331 command changed buffer (ie. `flyspell-pre-buffer' is not current
13332 buffer), which prevents making decisions based on invalid value of
13333 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
13334 cause an error when `flyspell-pre-point' was nil after switching
13335 buffers.
13336 (flyspell-post-command-hook): No longer needs to change buffers when
13337 checking pre-word. While at it remove unnecessary progn.
13338
13339 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
13340
13341 * textmodes/ispell.el (ispell-add-per-file-word-list):
13342 Fix `flyspell-correct-word-before-point' error when accepting
13343 words and `coment-padding' is an integer by using
13344 `comment-normalize-vars' (Bug #14214).
13345
13346 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
13347
13348 New defun movement commands.
13349 * progmodes/python.el (python-nav--syntactically)
13350 (python-nav--forward-defun, python-nav-backward-defun)
13351 (python-nav-forward-defun): New functions.
13352
13353 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
13354
13355 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
13356 (python-syntax-context): Use named compiler-macro for backwards
13357 compatibility with Emacs 24.x.
13358
13359 2013-04-17 Leo Liu <sdl.web@gmail.com>
13360
13361 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
13362 octave-hide-process-buffer.
13363
13364 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13365
13366 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
13367 (bug#14216).
13368
13369 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
13370
13371 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
13372 Fix adjustment of offset when receiving incomplete responses from GDB
13373 (bug#14129).
13374
13375 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13376
13377 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
13378 python-mode-abbrev-table.
13379 (python-skeleton-define): Adjust accordingly.
13380 (python-mode-abbrev-table): New table that inherits from it so that
13381 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
13382
13383 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
13384 (abbrev-symbol): Use it.
13385 (abbrev--before-point): Use it since we already handle inheritance.
13386
13387 2013-04-16 Leo Liu <sdl.web@gmail.com>
13388
13389 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
13390 binding to info-lookup-symbol.
13391
13392 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
13393
13394 * minibuffer.el (completion--twq-all):
13395 * term/ns-win.el (ns-initialize-window-system):
13396 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
13397
13398 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13399
13400 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
13401 global bindings.
13402
13403 * doc-view.el (doc-view-start-process): Handle url-handler directories.
13404
13405 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
13406
13407 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
13408 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
13409 to nil.
13410 (ruby-end-of-defun): Remove the unused arg, change the docstring
13411 to reflect that this function is only used as the value of
13412 `end-of-defun-function'.
13413 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
13414 to reflect an earlier change that beginning/end-of-defun functions
13415 jump between methods in a class definition, as well as top-level
13416 functions.
13417
13418 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13419
13420 * minibuffer.el (minibuffer-complete): Don't just scroll
13421 a *Completions* that's been iconified.
13422 (minibuffer-force-complete): Make sure repetitions do cycle when going
13423 through completion-in-region -> minibuffer-complete.
13424
13425 2013-04-15 Alan Mackenzie <acm@muc.de>
13426
13427 Correct the placement of c-cpp-delimiters when there're #s not at
13428 col 0.
13429
13430 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
13431 place a submatch around the #.
13432 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
13433 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
13434 on the #, not BOL.
13435
13436 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13437
13438 * emacs-lisp/nadvice.el: Properly test names when adding advice.
13439 (advice--member-p): New arg `name'.
13440 (advice--add-function, advice-member-p): Use it (bug#14202).
13441
13442 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
13443
13444 Reformulate java imenu-generic-expression.
13445 The old expression contained ill formed regexps.
13446
13447 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
13448 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
13449 (cc-imenu-java-method-arg-regexp): New defconsts.
13450 (cc-imenu-java-build-type-args-regex): New defun.
13451 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
13452 handling of spaces in the regexp.
13453
13454 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13455
13456 * textmodes/ispell.el (ispell-command-loop): Remove
13457 flyspell highlight of a word when ispell accepts it (bug #14178).
13458
13459 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
13460
13461 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
13462 uses code from the previous `ange-ftp-run-real-handler'.
13463 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
13464 only in case that function exist. This is needed for proper
13465 unloading of Tramp.
13466
13467 2013-04-15 Tassilo Horn <tsdh@gnu.org>
13468
13469 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
13470
13471 * textmodes/reftex.el (reftex-compile-variables): Use it.
13472
13473 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13474
13475 * files.el (normal-mode): Only use default major-mode if no other mode
13476 was specified.
13477
13478 * emacs-lisp/trace.el (trace-values): New function.
13479
13480 * files.el: Allow : in local variables (bug#14089).
13481 (hack-local-variable-regexp): New var.
13482 (hack-local-variables-prop-line, hack-local-variables): Use it.
13483
13484 2013-04-13 Roland Winkler <winkler@gnu.org>
13485
13486 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
13487 data before it gets modified by bibtex-beginning-of-entry.
13488
13489 2013-04-13 Roland Winkler <winkler@gnu.org>
13490
13491 * textmodes/bibtex.el (bibtex-url): Doc fix.
13492
13493 2013-04-13 Roland Winkler <winkler@gnu.org>
13494
13495 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
13496 does not visit a BibTeX file, exclude it from the list of buffers
13497 returned by bibtex-initialize.
13498
13499 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
13500
13501 * window.el (split-window): Remove interactive form, since as a
13502 command this function is a special case of split-window-below.
13503 Correct doc string.
13504
13505 2013-04-12 Roland Winkler <winkler@gnu.org>
13506
13507 * faces.el (read-face-name): Do not override value of arg default.
13508 Allow single faces and strings as default values. Remove those
13509 elements from return value that are not faces.
13510 (describe-face): Simplify.
13511 (face-at-point): New optional args thing and multiple so that this
13512 function can provide the same functionality previously provided by
13513 read-face-name.
13514 (make-face-bold, make-face-unbold, make-face-italic)
13515 (make-face-unitalic, make-face-bold-italic, invert-face)
13516 (modify-face, read-face-and-attribute): Use face-at-point.
13517
13518 * cus-edit.el (customize-face, customize-face-other-window)
13519 * cus-theme.el (custom-theme-add-face)
13520 * face-remap.el (buffer-face-set)
13521 * facemenu.el (facemenu-set-face): Use face-at-point.
13522
13523 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
13524
13525 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
13526
13527 2013-04-10 Tassilo Horn <tsdh@gnu.org>
13528
13529 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
13530 off leading { and trailing } from field values.
13531
13532 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13533
13534 * emacs-lisp/timer.el (timer--check): New function.
13535 (timer--time, timer-set-function, timer-event-handler): Use it.
13536 (timer-set-idle-time): Simplify.
13537 (timer--activate): CSE.
13538 (timer-event-handler): Give more info in error message.
13539 (internal-timer-start-idle): New function, moved from C.
13540
13541 * mpc.el (mpc-proc): Add `restart' argument.
13542 (mpc-proc-cmd): Use it.
13543 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
13544 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
13545 less often.
13546
13547 2013-04-10 Masatake YAMATO <yamato@redhat.com>
13548
13549 * progmodes/sh-script.el: Implement `sh-mode' own
13550 `add-log-current-defun-function' (bug#14112).
13551 (sh-current-defun-name): New function.
13552 (sh-mode): Use the function.
13553
13554 2013-04-09 Bastien Guerry <bzg@gnu.org>
13555
13556 * simple.el (choose-completion-string): Fix docstring (bug#14163).
13557
13558 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
13559
13560 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
13561
13562 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
13563 timer (bug#14156).
13564
13565 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
13566
13567 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
13568 declaration.
13569
13570 2013-04-07 Leo Liu <sdl.web@gmail.com>
13571
13572 * pcmpl-x.el: New file.
13573
13574 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
13575
13576 Do not set x-display-name until X connection is established.
13577 This is needed to prevent from weird situation described at
13578 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
13579 * frame.el (make-frame): Set x-display-name after call to
13580 window system initialization function, not before.
13581 * term/x-win.el (x-initialize-window-system): Add optional
13582 display argument and use it.
13583 * term/w32-win.el (w32-initialize-window-system):
13584 * term/ns-win.el (ns-initialize-window-system):
13585 * term/pc-win.el (msdos-initialize-window-system):
13586 Add compatible optional display argument.
13587
13588 2013-04-06 Eli Zaretskii <eliz@gnu.org>
13589
13590 * files.el (normal-backup-enable-predicate): On MS-Windows and
13591 MS-DOS compare truenames of temporary-file-directory and of the
13592 file, so that 8+3 aliases (usually found in $TEMP on Windows)
13593 don't fail comparison by compare-strings. Also, compare file
13594 names case-insensitively on MS-Windows and MS-DOS.
13595
13596 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
13597
13598 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
13599 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
13600
13601 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
13602
13603 * whitespace.el (whitespace-color-on, whitespace-color-off):
13604 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
13605
13606 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
13607
13608 * ispell.el (ispell-set-spellchecker-params):
13609 Really set `ispell-args' for all equivs.
13610
13611 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
13612
13613 * ido.el (ido-completions): Use extra elements of ido-decorations
13614 (bug#14143).
13615 (ido-decorations): Update docstring.
13616
13617 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
13618
13619 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13620 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
13621 nil during initialization, in order not to miss changes since the
13622 file was opened. (Bug#14140)
13623
13624 2013-04-05 Leo Liu <sdl.web@gmail.com>
13625
13626 * kmacro.el (kmacro-call-macro): Fix bug#14135.
13627
13628 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
13629
13630 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
13631
13632 2013-04-04 Glenn Morris <rgm@gnu.org>
13633
13634 * electric.el (electric-pair-inhibit-predicate): Add :version.
13635
13636 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13637
13638 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
13639 when a package is required several times (bug#14082).
13640
13641 2013-04-04 Roland Winkler <winkler@gnu.org>
13642
13643 * faces.el (read-face-name): Behave as promised by the docstring.
13644 Assume that arg default is a list of faces.
13645 (describe-face): Call read-face-name with list of default faces.
13646
13647 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13648
13649 * bookmark.el: Fix deletion of bookmarks (bug#13972).
13650 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
13651 (bookmark-bmenu-execute-deletions): Only skip first line if it's
13652 the header.
13653 (bookmark-exit-hook-internal): Save even if list is empty.
13654
13655 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
13656
13657 * emacs-lisp/package.el (package-pinned-packages): New var.
13658 (package--add-to-archive-contents): Obey it (bug#14118).
13659
13660 2013-04-03 Alan Mackenzie <acm@muc.de>
13661
13662 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
13663 Also adapt to the new values of element 7 of a parse state.
13664
13665 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
13666 parameter `not-in-delimiter'. Handle being inside comment opener.
13667 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
13668 character in case we're typing a '*' after a '/'.
13669 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
13670 instead by passing the parameter to c-state-pp-to-literal.
13671
13672 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
13673 for elt. 7 of a parse state.
13674
13675 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
13676
13677 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
13678 * international/latin1-disp.el, international/mule-util.el:
13679 * language/cyril-util.el, language/european.el, language/ind-util.el:
13680 * language/lao-util.el, language/thai.el, language/tibet-util.el:
13681 * language/tibetan.el, language/viet-util.el:
13682 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
13683
13684 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
13685
13686 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
13687 (electric-pair-post-self-insert-function): Use it.
13688 (electric-pair-default-inhibit): New function, extracted from
13689 electric-pair-post-self-insert-function.
13690
13691 2013-03-31 Roland Winkler <winkler@gnu.org>
13692
13693 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
13694
13695 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
13696
13697 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
13698
13699 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
13700
13701 Un-indent after "pass" and "return" statements (Bug#13888)
13702 * progmodes/python.el (python-indent-block-enders): New var.
13703 (python-indent-calculate-indentation): Use it.
13704
13705 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
13706
13707 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
13708 defun. Defining it as defalias could introduce too eager
13709 byte-compiler optimization. (Bug#14030)
13710
13711 2013-03-30 Chong Yidong <cyd@gnu.org>
13712
13713 * iswitchb.el (iswitchb-read-buffer): Fix typo.
13714
13715 2013-03-30 Leo Liu <sdl.web@gmail.com>
13716
13717 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
13718 (kmacro-execute-from-register): Pass the keyboard macro to
13719 kmacro-call-macro or repeating won't work correctly.
13720
13721 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
13722
13723 * progmodes/subword.el: Back to using `forward-symbol'.
13724
13725 * subr.el (forward-whitespace, forward-symbol)
13726 (forward-same-syntax): Move from thingatpt.el.
13727
13728 2013-03-29 Leo Liu <sdl.web@gmail.com>
13729
13730 * kmacro.el (kmacro-to-register): New command.
13731 (kmacro-execute-from-register): New function.
13732 (kmacro-keymap): Bind to 'x'. (Bug#14071)
13733
13734 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
13735
13736 * mpc.el: Use defvar-local and setq-local.
13737 (mpc--proc-connect): Connection failures are not bugs.
13738 (mpc-mode-map): `follow-link' only applies to the buffer's content.
13739 (mpc-volume-map): Bind to the up-events.
13740
13741 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
13742
13743 * progmodes/subword.el (superword-mode): Use `forward-sexp'
13744 instead of `forward-symbol'.
13745
13746 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13747
13748 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
13749 (edebug--recursive-edit): Use it.
13750 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
13751 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
13752
13753 2013-03-28 Leo Liu <sdl.web@gmail.com>
13754
13755 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
13756
13757 2013-03-27 Eli Zaretskii <eliz@gnu.org>
13758
13759 * facemenu.el (list-colors-callback): New defvar.
13760 (list-colors-redisplay): New function.
13761 (list-colors-display): Install list-colors-redisplay as the
13762 revert-buffer-function. (Bug#14063)
13763
13764 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13765
13766 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
13767 and suffixes don't overlap (bug#14061).
13768
13769 * case-table.el: Use lexical-binding.
13770 (case-table-get-table): New function.
13771 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
13772
13773 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
13774
13775 * progmodes/subword.el: Add `superword-mode' to do word motion
13776 over symbol_words (parallels and leverages `subword-mode' which
13777 does word motion inside MixedCaseWords).
13778
13779 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
13780
13781 * eshell/em-unix.el: Move su and sudo to...
13782 * eshell/em-tramp.el: ...Eshell tramp module.
13783
13784 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13785
13786 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
13787 Change return value to be a sexp. Delay `get-buffer' to after
13788 restoring the desktop (bug#13951).
13789
13790 2013-03-26 Leo Liu <sdl.web@gmail.com>
13791
13792 * register.el: Move semantic tag handling back to
13793 cedet/semantic/senator.el. (Bug#14052)
13794
13795 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13796
13797 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
13798 into the prompt either (bug#13963).
13799
13800 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
13801
13802 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
13803 part of "(error-foo)".
13804
13805 2013-03-24 Juri Linkov <juri@jurta.org>
13806
13807 * replace.el (list-matching-lines-prefix-face): New defcustom.
13808 (occur-1): Pass `list-matching-lines-prefix-face' to the function
13809 `occur-engine' if `face-differs-from-default-p' returns t.
13810 (occur-engine): Add `,' inside backquote construct to evaluate
13811 `prefix-face'. Propertize the prefix with the `prefix-face' face.
13812 Pass `prefix-face' to the functions `occur-context-lines' and
13813 `occur-engine-add-prefix'.
13814 (occur-engine-add-prefix, occur-context-lines): Add optional arg
13815 `prefix-face' and propertize the prefix with `prefix-face'.
13816 (Bug#14017)
13817
13818 2013-03-24 Leo Liu <sdl.web@gmail.com>
13819
13820 * nxml/rng-valid.el (rng-validate-while-idle)
13821 (rng-validate-quick-while-idle): Guard against deleted buffer.
13822 (Bug#13999)
13823
13824 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
13825 is the last entry in kill-buffer-hook.
13826
13827 * files.el (kill-buffer-hook): Doc fix.
13828
13829 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
13830
13831 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
13832 Make it safe-local.
13833
13834 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
13835
13836 2013-03-23 Leo Liu <sdl.web@gmail.com>
13837
13838 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
13839 Remove.
13840
13841 * nxml/rng-valid.el (rng-validate-mode)
13842 (rng-after-change-function, rng-do-some-validation):
13843 * nxml/rng-maint.el (rng-validate-buffer):
13844 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
13845 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
13846 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
13847 (nxml-extend-after-change-region): Use with-silent-modifications.
13848
13849 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
13850 timer-idle-list.
13851
13852 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
13853 (rng-next-error-1, rng-previous-error-1): Do not let-bind
13854 timer-idle-list. (Bug#13999)
13855
13856 2013-03-23 Juri Linkov <juri@jurta.org>
13857
13858 * info.el (info-index-match): New face.
13859 (Info-index, Info-apropos-matches): Add a nested subgroup to the
13860 main pattern and add text properties with the new face to matches
13861 in index entries relative to the beginning of the index entry.
13862 (Bug#14015)
13863
13864 2013-03-21 Eric Ludlam <zappo@gnu.org>
13865
13866 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
13867 Inhibit read only while inserting objects.
13868
13869 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
13870
13871 * progmodes/cfengine.el: Update docs to mention
13872 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
13873 symbol motion. Remove "_" from the word syntax.
13874
13875 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
13876
13877 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
13878 syntax for both `cfengine2-mode' and `cfengine3-mode'.
13879
13880 2013-03-20 Juri Linkov <juri@jurta.org>
13881
13882 * info.el (Info-next-reference-or-link)
13883 (Info-prev-reference-or-link): New functions.
13884 (Info-next-reference, Info-prev-reference): Use them.
13885 (Info-try-follow-nearest-node): Handle footnote navigation.
13886 (Info-fontify-node): Fontify footnotes. (Bug#13989)
13887
13888 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13889
13890 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
13891 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
13892
13893 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
13894
13895 Suppress unnecessary non-ASCII chatter during build process.
13896 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
13897 (batch-skkdic-convert): Suppress most of the chatter.
13898 It's not needed so much now that machines are faster,
13899 and its non-ASCII component was confusing; see Dmitry Gutov in
13900 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
13901
13902 2013-03-20 Leo Liu <sdl.web@gmail.com>
13903
13904 * ido.el (ido-chop): Fix bug#10994.
13905
13906 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
13907
13908 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
13909 Remove vars.
13910 (whitespace-color-on, whitespace-color-off):
13911 Use `font-lock-fontify-buffer' (Bug#13817).
13912
13913 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13914
13915 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
13916 remapping in mode-line.
13917 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
13918
13919 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
13920
13921 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
13922 value for `whitespace-line' face (Bug#13875).
13923 (whitespace-font-lock-keywords): Change description.
13924 (whitespace-color-on): Don't save `font-lock-keywords' value, save
13925 the constructed keywords instead.
13926 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
13927
13928 2013-03-19 Leo Liu <sdl.web@gmail.com>
13929
13930 * progmodes/compile.el (compilation-display-error): New command.
13931 (compilation-mode-map, compilation-minor-mode-map): Bind it to
13932 C-o. (Bug#13992)
13933
13934 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
13935
13936 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
13937
13938 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
13939
13940 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
13941
13942 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
13943
13944 * net/tramp-compat.el (tramp-compat-user-error): New defun.
13945
13946 * net/tramp-adb.el (tramp-adb-handle-shell-command):
13947 * net/tramp-gvfs.el (top):
13948 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
13949 (tramp-handle-shell-command): Use it.
13950 (tramp-dissect-file-name): Raise an error when hostname is a
13951 method name, and neither method nor user is specified.
13952
13953 * net/trampver.el: Update release number.
13954
13955 2013-03-18 Leo Liu <sdl.web@gmail.com>
13956
13957 Make sure eldoc can be turned off properly.
13958 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
13959 eldoc-mode.
13960 (eldoc-display-message-p): Revert last change.
13961 (eldoc-display-message-no-interference-p)
13962 (eldoc-print-current-symbol-info): Tweak.
13963
13964 2013-03-18 Tassilo Horn <tsdh@gnu.org>
13965
13966 * doc-view.el (doc-view-new-window-function): Check the new window
13967 overlay's display property instead the char property of the
13968 buffer's first char. Use `with-selected-window' instead of
13969 `save-window-excursion' with `select-window'.
13970 (doc-view-document->bitmap): Check the current doc-view overlay's
13971 display property instead the char property of the buffer's first char.
13972
13973 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
13974
13975 Automate the build of ja-dic.el (Bug#13984).
13976 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
13977 from the input, rather than assume that it's been done for us by the
13978 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
13979 the current date into a ja-dic.el comment, as that complicates
13980 regression testing.
13981
13982 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
13983
13984 * whitespace.el: Fix double evaluation.
13985 (whitespace-space, whitespace-hspace, whitespace-tab)
13986 (whitespace-newline, whitespace-trailing, whitespace-line)
13987 (whitespace-space-before-tab, whitespace-indentation)
13988 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
13989 obsolete defvars.
13990 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
13991 (whitespace-color-on): Use a single font-lock-add-keywords call.
13992 Fix double-evaluation of face variables.
13993
13994 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
13995
13996 * net/tramp-adb.el (tramp-adb-parse-device-names):
13997 Use `start-process' instead of `call-process'. Otherwise, the
13998 function might be blocked under MS Windows. (Bug#13299)
13999
14000 2013-03-17 Leo Liu <sdl.web@gmail.com>
14001
14002 Extend eldoc to display info in the mode-line. (Bug#13978)
14003 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
14004 (eldoc-mode-line-string): New variable.
14005 (eldoc-minibuffer-message): New function.
14006 (eldoc-message-function): New variable.
14007 (eldoc-message): Use it.
14008 (eldoc-display-message-p)
14009 (eldoc-display-message-no-interference-p):
14010 Support eldoc-post-insert-mode.
14011
14012 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
14013 (eval-expression): Run it.
14014
14015 2013-03-17 Roland Winkler <winkler@gnu.org>
14016
14017 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
14018 strings in the list of return values.
14019
14020 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
14021
14022 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
14023 radix before checking for HMS forms.
14024
14025 2013-03-16 Leo Liu <sdl.web@gmail.com>
14026
14027 * progmodes/scheme.el: Add indentation and font-locking for λ.
14028 (Bug#13975)
14029
14030 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
14031
14032 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
14033 token before point (bug#13942).
14034
14035 2013-03-16 Leo Liu <sdl.web@gmail.com>
14036
14037 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
14038
14039 2013-03-16 Eli Zaretskii <eliz@gnu.org>
14040
14041 * startup.el (command-line-normalize-file-name): Fix handling of
14042 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
14043 <xfq.free@gmail.com> in
14044 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
14045
14046 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
14047
14048 Sync with Tramp 2.2.7.
14049
14050 * net/trampver.el: Update release number.
14051
14052 2013-03-14 Tassilo Horn <tsdh@gnu.org>
14053
14054 * doc-view.el: Fix bug#13887.
14055 (doc-view-insert-image): Don't modify overlay associated to
14056 non-live windows, and implement horizontal centering of image in
14057 case it's smaller than the window.
14058 (doc-view-new-window-function): Force redisplay of new windows on
14059 doc-view buffers.
14060
14061 2013-03-13 Karl Fogel <kfogel@red-bean.com>
14062
14063 * saveplace.el (save-place-alist-to-file): Don't sort
14064 `save-place-alist', just pretty-print it (bug#13882).
14065
14066 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
14067
14068 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
14069 Check whether `default-file-name-coding-system' is bound.
14070 It isn't in XEmacs.
14071
14072 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
14073
14074 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
14075 backquotes for `obsolete' (bug#13929).
14076
14077 * international/mule.el (find-auto-coding): Include file name in
14078 obsolescence warning (bug#13922).
14079
14080 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
14081
14082 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
14083 for CFEngine 3-specific indentation.
14084 (cfengine3-indent-line): Use it. Fix up category regex.
14085 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
14086
14087 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14088
14089 * type-break.el (type-break-file-name):
14090 * textmodes/remember.el (remember-data-file):
14091 * strokes.el (strokes-file):
14092 * shadowfile.el (shadow-initialize):
14093 * saveplace.el (save-place-file):
14094 * ps-bdf.el (bdf-cache-file):
14095 * progmodes/idlwave.el (idlwave-config-directory):
14096 * net/quickurl.el (quickurl-url-file):
14097 * international/kkc.el (kkc-init-file-name):
14098 * ido.el (ido-save-directory-list-file):
14099 * emulation/viper.el (viper-custom-file-name):
14100 * emulation/vip.el (vip-startup-file):
14101 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
14102 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
14103
14104 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
14105
14106 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
14107 * language/thai-word.el: Switch to UTF-8.
14108
14109 See ChangeLog.16 for earlier changes.
14110
14111 ;; Local Variables:
14112 ;; coding: utf-8
14113 ;; End:
14114
14115 Copyright (C) 2011-2014 Free Software Foundation, Inc.
14116
14117 This file is part of GNU Emacs.
14118
14119 GNU Emacs is free software: you can redistribute it and/or modify
14120 it under the terms of the GNU General Public License as published by
14121 the Free Software Foundation, either version 3 of the License, or
14122 (at your option) any later version.
14123
14124 GNU Emacs is distributed in the hope that it will be useful,
14125 but WITHOUT ANY WARRANTY; without even the implied warranty of
14126 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14127 GNU General Public License for more details.
14128
14129 You should have received a copy of the GNU General Public License
14130 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.