lisp/*.el: Fix typos.
[bpt/emacs.git] / lisp / ChangeLog
1 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2
3 * align.el (align-regexp): Remove superfluous backslash.
4
5 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
6 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
7 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
8 Fix docstring typos.
9 (ffap-next): Use C-u in docstring.
10 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
11 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
12 Remove superfluous backslashes.
13 (ffap-string-at-point): Reflow docstring.
14
15 * server.el (server-host): Reflow docstring.
16 (server-unload-function): Fix docstring typo.
17 (server-eval-at): Remove superfluous backslash.
18
19 * skeleton.el (skeleton-insert): Remove superfluous backslash.
20 (skeleton-insert): Doc fix.
21 (skeleton-insert): Reflow docstring.
22
23 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
24 (tty-color-approximate, tty-color-by-index, tty-color-values)
25 (tty-color-desc): Remove superfluous backslashes.
26
27 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
28
29 * electric.el (electric-newline-and-maybe-indent): New command.
30 Bind it globally to C-j.
31 (electric-indent-mode): Don't mess with the global map any more.
32 Don't drop the post-self-insert-hook is some buffer is still using it
33 (bug#16770).
34 * bindings.el (global-map): Remove C-j binding.
35
36 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
37 the docstring of functions advised before dumping (bug#16993).
38
39 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
40
41 * ps-print.el (ps-generate-postscript-with-faces):
42 Explicitly deactivate the mark (bug#16866).
43 * simple.el (deactivate-mark): Update region highlight.
44
45 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
46
47 * emacs-lisp/package.el (describe-package-1):
48 Decode commentary (bug#16733).
49
50 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
51
52 * custom.el (defcustom): Doc fix: recommend avoiding destructive
53 modification of the value argument of :set (bug#16755).
54
55 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 * simple.el (newline-and-indent): Do autofill (bug#17031).
58
59 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
60
61 * newcomment.el (comment-normalize-vars): Only add escaping check
62 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
63 (comment-beginning): Use `narrow-to-region' instead of moving back
64 one character.
65 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
66 (comment-start-skip): Update the docstring.
67
68 2014-03-18 Richard Stallman <rms@gnu.org>
69
70 * dired.el (dired-display-file): Force use of other window.
71
72 2014-03-18 Daniel Colascione <dancol@dancol.org>
73
74 * startup.el (tty-handle-args): Remove debug message from 2007.
75
76 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
77
78 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
79 (advice--make-interactive-form): Use it to avoid (auto)loading function.
80 (advice--make-1, advice-add, advice-remove):
81 Remove braindead :advice-pending hack.
82
83 2014-03-17 Glenn Morris <rgm@gnu.org>
84
85 * calendar/calendar.el (calendar-generate-month): Apply weekend
86 face to the right days; fixes 2013-08-06 change. (Bug#17028)
87
88 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
89
90 * net/tramp.el (tramp-action-out-of-band): Read pending output.
91 (tramp-call-process): Trace also DESTINATION.
92
93 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
94 Quote file names when they are local. Remove superfluous trace.
95
96 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
97
98 * newcomment.el (comment-beginning): If `comment-start-skip'
99 doesn't match, move back one char and try again. (Bug#16971)
100
101 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
102 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
103 Set `comment-start-skip' to a simpler value that doesn't try to
104 check if the semicolon is escaped (this is handled by
105 `syntax-ppss' now). (Bug#16971)
106
107 * progmodes/scheme.el (scheme-mode-variables): Same.
108
109 2014-03-16 Martin Rudalics <rudalics@gmx.at>
110
111 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
112 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
113 current (Bug#16816, Bug#17007).
114 (with-current-buffer-window): New macro doing the same as
115 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
116 * help.el (help-print-return-message): Warn in doc-string to not
117 use this in `with-help-window'.
118 (describe-bindings-internal): Call `describe-buffer-bindings'
119 from within help buffer. See Juanma's scenario in (Bug#16816).
120 (with-help-window): Update doc-string.
121 * dired.el (dired-mark-pop-up):
122 * files.el (save-buffers-kill-emacs):
123 * register.el (register-preview): Use `with-current-buffer-window'
124 instead of `with-temp-buffer-window'.
125
126 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
127
128 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
129 Implement inserting into current buffer, documented in their docstrings.
130 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
131 (rst-section-tree-point, rst-forward-section, rst-indent)
132 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
133 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
134 (rst-font-lock-handle-adornment-pre-match-form)
135 (rst-repeat-last-character): Reflow docstrings.
136 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
137 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
138 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
139 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
140 Fix docstring typos.
141 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
142 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
143 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
144
145 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
146
147 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
148 for compatibility with other ports.
149 (ns-initialize-window-system): Use it. It is set in term/common-win.el
150 from the -xrm command line argument, but in the Nextstep port its value
151 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
152
153 * progmodes/python.el (defconst, python-syntax-count-quotes)
154 (python-indent-region, python-indent-shift-right)
155 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
156 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
157 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
158 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
159 (inferior-python-mode, python-shell-make-comint, run-python-internal)
160 (python-shell-buffer-substring, python-shell-send-buffer)
161 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
162 (python-completion-complete-at-point, python-fill-docstring-style)
163 (python-eldoc-function, python-imenu-format-item-label)
164 (python-imenu-format-parent-item-label)
165 (python-imenu-format-parent-item-jump-label)
166 (python-imenu--build-tree, python-imenu-create-index)
167 (python-imenu-create-flat-index): Fix docstring typos.
168 (python-indent-context, python-shell-prompt-regexp, run-python):
169 Remove superfluous backslashes.
170 (python-indent-line, python-nav-beginning-of-defun)
171 (python-shell-get-buffer, python-shell-get-process)
172 (python-info-current-defun, python-info-current-line-comment-p)
173 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
174 (python-indent-post-self-insert-function, python-shell-send-file)
175 (python-shell-completion-get-completions)
176 (python-shell-completion-complete-or-indent)
177 (python-eldoc--get-doc-at-point): Reflow docstrings.
178
179 2014-03-14 Glenn Morris <rgm@gnu.org>
180
181 * emacs-lisp/package.el (package-menu-mode-map):
182 Replace use of obsolete function alias. Tweak menu item text.
183
184 * info.el (Info-finder-find-node):
185 Ignore the `emacs' metapackage. (Bug#10813)
186
187 * finder.el (finder-list-matches): Include unversioned packages
188 in the result of a keyword search.
189
190 * finder.el (finder--builtins-descriptions): New constant.
191 (finder-compile-keywords): Use finder--builtins-descriptions.
192
193 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
194
195 * simple.el (blink-matching-paren): Describe the new value,
196 `jump', enabling the old behavior.
197 (blink-matching-open): Use that value. (Bug#17008)
198
199 2014-03-14 Glenn Morris <rgm@gnu.org>
200
201 * finder.el (finder-no-scan-regexp): Add leim-list.
202 (finder-compile-keywords):
203 Don't skip files with same basename. (Bug#14010)
204 * Makefile.in (setwins_finder): New, excluding leim.
205 (finder-data): Use setwins_finder.
206
207 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
208 (help-function-arglist, help-make-usage): Move from here...
209 * help.el (help-split-fundoc, help-add-fundoc-usage)
210 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
211 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
212
213 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
214
215 * net/socks.el (socks, socks-override-functions)
216 (socks-find-services-entry):
217 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
218 (hif-find-ifdef-block):
219 * progmodes/modula2.el (m2-indent): Fix docstring typos.
220
221 * net/tls.el (tls-program): Reflow docstring.
222
223 * progmodes/pascal.el (pascal-mode-abbrev-table)
224 (pascal-imenu-generic-expression, pascal-auto-endcomments)
225 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
226 (pascal-outline-mode): Fix docstring typos.
227 (pascal-mode): Let define-derived-mode document mode hook.
228 (pascal-uncomment-area): Reflow.
229 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
230
231 * progmodes/opascal.el (opascal-compound-block-indent)
232 (opascal-case-label-indent): Fix docstring typos.
233 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
234
235 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
236
237 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
238 Fontify multiple adjacent negation chars. (Bug#17004)
239
240 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
241
242 * emacs-lisp/package.el (package--prepare-dependencies):
243 Accept requirements without explicit version (bug#14941).
244
245 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
246
247 * register.el (register-separator, copy-to-register): Doc fixes.
248 (register-preview-default): Remove unnecessary call to concat.
249
250 * frameset.el (frameset-restore): When checking for a visible frame,
251 use the action map instead of calling visible-frame-list.
252
253 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
254
255 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
256
257 2014-03-12 Martin Rudalics <rudalics@gmx.at>
258
259 * window.el (fit-frame-to-buffer): Get maximum width from
260 display's width instead of height.
261
262 2014-03-12 Glenn Morris <rgm@gnu.org>
263
264 * desktop.el (desktop-restore-frames)
265 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
266 (desktop-restore-reuses-frames): Doc tweaks.
267
268 * electric.el (electric-indent-mode): Doc fix.
269
270 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
271
272 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
273 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
274 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
275 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
276 (cvs-dired-use-hook): Fix docstring typos.
277 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
278 Doc fixes.
279
280 * vc/pcvs-defs.el (cvs-auto-remove-handled)
281 (cvs-auto-remove-directories, cvs-default-ignore-marks)
282 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
283 (cvs-execute-single-dir): Fix docstring typos.
284
285 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
286 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
287
288 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
289
290 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
291 Fix docstring typos.
292
293 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
294
295 * frameset.el (frameset--jump-to-register): Add autoload; it could be
296 called from jump-to-register after unloading the frameset package.
297
298 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
299
300 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
301 (bug#16975). Deactivate the mark before setting it to nil.
302 (activate-mark): Do nothing if region is already active.
303
304 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
305
306 * frameset.el (frameset--target-display): Remove definition; declare.
307 (frameset-save, frameset-restore): Let-bind frameset--target-display.
308
309 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
310
311 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
312 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
313 when the advice is pending.
314 (advice-remove): Remove this marker when not needed any more.
315
316 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
317
318 * frameset.el: Separate options for reusing frames and cleaning up.
319 (frameset--reuse-list): Remove definition; declare.
320 (frameset--action-map): Declare.
321 (frameset--find-frame-if): Doc fix.
322 (frameset--restore-frame): Cache frame action.
323 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
324 how to clean up the frame list after restoring. Remove cleaning
325 options from REUSE-FRAMES. Change all keyword values to symbols.
326 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
327
328 * desktop.el (desktop-restore-forces-onscreen)
329 (desktop-restore-reuses-frames): Use non-keyword values.
330 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
331
332 2014-03-10 Glenn Morris <rgm@gnu.org>
333
334 * files.el (find-file): Doc fix: update info node name.
335
336 * emacs-lisp/advice.el (ad-add-advice, defadvice):
337 Doc fix: remove references to deleted info nodes.
338
339 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
340
341 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
342 Do not add `nil' to the environment, when there's no remote `locale'.
343 (tramp-find-inline-encoding): Check, that the remote host has
344 installed perl, before sending scripts.
345
346 2014-03-10 Leo Liu <sdl.web@gmail.com>
347
348 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
349 Clear eldoc-last-message. (Bug#16920)
350
351 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
352
353 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
354 (bug#14430).
355
356 2014-03-09 Juri Linkov <juri@jurta.org>
357
358 * ansi-color.el (ansi-color-names-vector): Copy default colors
359 from `xterm-standard-colors' that look well on the default white
360 background (and also on the black background) to avoid illegible
361 color combinations like yellow-on-white and white-on-white.
362 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
363
364 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
365
366 * frameset.el (frameset-restore): When no frame is visible, do not
367 generate a list of frames, just make visible the selected one.
368
369 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
370
371 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
372 it only contains the repository root. (Bug#16897)
373
374 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
375
376 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
377 only when `remote-file-name-inhibit-cache' is nil.
378 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
379
380 2014-03-06 Martin Rudalics <rudalics@gmx.at>
381
382 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
383 Fix doc-strings.
384 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
385 fit-frame-to-buffer variable. Fix doc-string.
386 (fit-window-to-buffer): Set ONLY argument in call of
387 fit-frame-to-buffer. Fix doc-string.
388
389 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
390
391 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
392 (tramp-action-password): Clear password cache if needed.
393 (tramp-read-passwd): Do not clear password cache.
394
395 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
396 cache unless it is the first password request.
397
398 2014-03-06 Glenn Morris <rgm@gnu.org>
399
400 * simple.el (newline): Doc tweak.
401
402 * emacs-lisp/shadow.el (load-path-shadows-find):
403 Ignore dir-locals. (Bug#12357)
404
405 2014-03-05 Glenn Morris <rgm@gnu.org>
406
407 * files.el (interpreter-mode-alist):
408 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
409
410 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
411
412 * frameset.el (frameset--initial-params): Filter out null entries.
413
414 2014-03-05 Martin Rudalics <rudalics@gmx.at>
415
416 * window.el (window-min-height, window-min-width):
417 Rewrite doc-strings.
418 (window-body-size): Add PIXELWISE argument to make it consistent
419 with its callees.
420
421 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
422
423 * finder.el (finder-mode-map, finder-mode-syntax-table):
424 Revert part of 2014-02-28 change.
425
426 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
427
428 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
429 (eww-setup-buffer): Clear next/prev/etc more reliably.
430 (eww-textarea-map): [tab] doesn't work on tty.
431 Reported by Mario Lang.
432
433 * net/shr.el (shr-map): Ditto.
434
435 2014-03-04 Glenn Morris <rgm@gnu.org>
436
437 * minibuffer.el (completion-hilit-commonality):
438 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
439
440 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
441
442 * hilit-chg.el (hilit-chg-unload-function): New function.
443 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
444 (hilit-chg-map-changes): Prefer cardinal number to digit.
445 (hilit-chg-display-changes): Reflow docstring.
446 (highlight-changes-rotate-faces): Remove superfluous backslash.
447
448 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
449
450 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
451 `tramp-send-command-and-check'.
452
453 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
454
455 * hexl.el (hexl-address-region, hexl-ascii-region)
456 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
457 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
458 (hexl-forward-word, hexl-previous-line, hexl-next-line):
459 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
460 (hexl-mode): Doc fix.
461 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
462 (hexl-mode-ruler): Fix typos in docstrings.
463
464 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
465 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
466 Remove superfluous backslashes.
467 (strokes-last-stroke, strokes-global-map, strokes-mode):
468 Reflow docstrings.
469 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
470 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
471 (strokes-distance-squared, strokes-global-set-stroke)
472 (strokes-global-set-stroke-string): Doc fixes.
473 (strokes-help): Fix typos; reflow docstring.
474
475 2014-03-04 Martin Rudalics <rudalics@gmx.at>
476
477 * window.el (window-in-direction): Fix doc-string.
478
479 2014-03-04 Glenn Morris <rgm@gnu.org>
480
481 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
482 Explicit error if no grammar.
483 (smie-config-save): Doc fix. Fix quote typo.
484
485 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
486
487 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
488 electric-indent-mode-hook if we obey electric-indent-mode.
489 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
490 decide whether we obey electric-indent-mode.
491 (c-change-set-fl-decl-start, c-extend-after-change-region):
492 Silence warnings.
493 (c-electric-indent-mode-hook): Assume we do want to obey
494 electric-indent-mode.
495
496 * electric.el (electric-indent-mode-has-been-called): Remove.
497 (electric-indent-mode): Fix accordingly.
498
499 * files.el (hack-local-variables): Mention file name in warning.
500
501 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
502
503 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
504
505 * binding.el: Add comment describing why C-d binds to `delete-char'.
506 * simple.el (delete-forward-char): Mark as interactive-only.
507
508 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
509
510 * icomplete.el (icomplete-completions):
511 Follow-up to 2014-03-01 change.
512
513 * icomplete.el: Miscellaneous doc fixes.
514 Use Icomplete everywhere instead of icomplete for consistency.
515 (icomplete-max-delay-chars): Fix typo.
516 (icomplete-mode): Use \[].
517 (icomplete-tidy, icomplete-exhibit): Reflow.
518 (icomplete-minibuffer-setup-hook, icomplete-completions):
519 Remove superfluous backlashes.
520
521 * ido.el: Miscellaneous doc fixes.
522 Use Ido everywhere instead of ido or `ido' for consistency.
523 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
524 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
525 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
526 (ido-separator): Extract obsolescence info from docstring and declare
527 with make-obsolete-variable.
528 (ido-minibuffer-setup-hook): Simplify example.
529 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
530 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
531 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
532 (ido-everywhere): Reflow docstring.
533 (ido-toggle-vc): Doc fix.
534 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
535 of long list of keybindings.
536
537 2014-03-03 Glenn Morris <rgm@gnu.org>
538
539 * frame.el (display-pixel-height, display-pixel-width)
540 (display-mm-dimensions-alist, display-mm-height)
541 (display-mm-width): Doc tweaks.
542
543 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
544
545 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
546 case of undo in region.
547
548 2014-03-02 Martin Rudalics <rudalics@gmx.at>
549
550 * window.el (fit-window-to-buffer): Fix argument in window-size
551 call when window is horizontally combined.
552
553 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
554
555 * icomplete.el (icomplete-completions): Use string-width.
556 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
557
558 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
559
560 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
561 Highlight regexp options. (Bug#16914)
562
563 2014-03-01 Martin Rudalics <rudalics@gmx.at>
564
565 * window.el (window--max-delta-1): Round down when calculating
566 how many lines/columns we can get from a window.
567
568 2014-03-01 Glenn Morris <rgm@gnu.org>
569
570 * isearch.el (search-invisible): Doc fix.
571
572 * minibuffer.el (completion-hilit-commonality):
573 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
574 * comint.el (comint-dynamic-list-completions): Doc fix.
575 * comint.el (comint-dynamic-list-completions):
576 * filecache.el (file-cache-minibuffer-complete):
577 * tempo.el (tempo-display-completions):
578 * eshell/em-hist.el (eshell-list-history):
579 Replace use of obsolete argument of display-completion-list.
580
581 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
582
583 * icomplete.el (icomplete-completions):
584 Revert back to using "..." when ?… cannot be displayed.
585
586 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
587
588 * finder.el (finder-unload-function): New function.
589
590 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
591
592 * dframe.el (dframe-detach):
593 * find-dired.el (find-dired, find-name-dired):
594 * finder.el (finder-mode-map, finder-mode-syntax-table)
595 (finder-headmark, finder-select, finder-mouse-select):
596 Fix docstring typos.
597
598 2014-02-28 Martin Rudalics <rudalics@gmx.at>
599
600 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
601 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
602 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
603 Fix doc-string based on a suggestion by Nicolas Richard
604 <theonewiththeevillook@yahoo.fr>.
605 * help.el (with-help-window): Fix doc-string.
606
607 2014-02-28 Ivan Kanis <ivan@kanis.fr>
608
609 * net/shr.el (shr-image-animate): New option.
610 (shr-put-image): Respect shr-image-animate.
611
612 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
613
614 * net/tramp-adb.el (tramp-adb-parse-device-names):
615 Use `accept-process-output'.
616 (tramp-adb-handle-file-truename): Cache the localname only.
617 (tramp-adb-handle-make-directory)
618 (tramp-adb-handle-delete-directory): Flush file properties correctly.
619 (tramp-adb-handle-set-file-modes): Do not raise an error when file
620 modes cannot be changed.
621
622 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
623 file properties of symlinks.
624
625 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
626
627 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
628 required/optional fields to match development biblatex. (Bug#16781)
629
630 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
631
632 * saveplace.el (toggle-save-place):
633 Fix argument handling. (Bug#16673)
634
635 2014-02-28 Glenn Morris <rgm@gnu.org>
636
637 * minibuffer.el (completions-first-difference)
638 (completions-common-part, completion-hilit-commonality): Doc fixes.
639
640 2014-02-28 Karl Berry <karl@gnu.org>
641
642 * info.el (Info-mode-map): Add H for describe-mode,
643 to synchronize with standalone Info.
644
645 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
646
647 * progmodes/sql.el (sql-interactive-mode):
648 Avoid setting global comint-input-ring-separator. (Bug#16814)
649
650 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
651
652 * net/dbus.el (dbus--init-bus): Declare function.
653 (dbus-path-local, dbus-interface-local): New defconst.
654 (dbus-init-bus): Use them.
655 (dbus-return-values-table): Extend doc.
656 (dbus-handle-bus-disconnect): Extend error message.
657
658 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
659
660 * subr.el (y-or-n-p): Fix double space issue in message.
661
662 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
663
664 * net/tramp.el (tramp-call-process): Improve trace message.
665 (tramp-handle-insert-file-contents): Trace error case.
666
667 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
668 <insert-directory>: Use `tramp-handle-insert-directory'.
669 (tramp-adb-handle-insert-directory): Remove function.
670 (tramp-adb-send-command-and-check): New defun, replacing
671 `tramp-adb-command-exit-status'. Change all callees.
672 (tramp-adb-handle-file-attributes)
673 (tramp-adb-handle-directory-files-and-attributes): Use it.
674 (tramp-adb-ls-output-name-less-p):
675 Use `directory-listing-before-filename-regexp'.
676 (tramp-adb-handle-delete-directory): Flush also file properties of
677 the truename of directory.
678 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
679 (tramp-adb-handle-file-local-copy): Make the local copy readable.
680 (tramp-adb-handle-write-region): Implement APPEND.
681 (tramp-adb-handle-rename-file): Make it more robust. Flush file
682 properties correctly.
683 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
684 variables. Check for connected devices only when needed.
685
686 2014-02-27 Glenn Morris <rgm@gnu.org>
687
688 * minibuffer.el (completion-table-dynamic)
689 (completion-table-with-cache): Doc fixes.
690
691 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
692 (completing-read-multiple): Doc fixes.
693
694 2014-02-27 Daniel Colascione <dancol@dancol.org>
695
696 * minibuffer.el (completion--nth-completion): Fix indentation.
697
698 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
699 explicit tramp path is empty.
700
701 2014-02-27 Glenn Morris <rgm@gnu.org>
702
703 * emacs-lisp/crm.el (completing-read-multiple):
704 Empower help-enable-auto-load.
705
706 2014-02-26 Glenn Morris <rgm@gnu.org>
707
708 * startup.el (command-line): Don't init the tty in daemon mode.
709
710 Avoid calling tty-setup-hook twice, eg if a term file
711 explicitly calls tty-run-terminal-initialization. (Bug#16859)
712 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
713 (tty-create-frame-with-faces): Use it.
714 * startup.el (command-line): Pass run-hook argument
715 to tty-run-terminal-initialization.
716
717 * dired.el (dired-restore-desktop-buffer): Demote errors;
718 eg in case a glob match fails. (Bug#16884)
719
720 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
721
722 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
723 error from `read-from-string'. (Bug#16850)
724
725 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
726 result of `completing-read' in the interactive form. (Bug#16854)
727
728 2014-02-25 Glenn Morris <rgm@gnu.org>
729
730 * image.el (image-animate, image-animate-timeout):
731 Stop animating images in dead buffers. (Bug#16878)
732
733 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
734
735 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
736 Doc fixes.
737 * startup.el (term-setup-hook): Doc fix. Make obsolete.
738 * term/sun.el (sun-raw-prefix-hooks):
739 Use tty-setup-hook instead of term-setup-hook.
740 (terminal-init-sun): Construct message from bytecomp plist.
741 * term/wyse50.el (enable-arrow-keys): Doc fix.
742
743 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
744
745 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
746 Fix docstring typos.
747
748 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
749
750 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
751
752 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
753
754 * minibuffer.el (completion--try-word-completion):
755 Fix error when completing M-x commands (bug#16808).
756
757 2014-02-24 Leo Liu <sdl.web@gmail.com>
758
759 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
760
761 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
762
763 * apropos.el (apropos-print): Avoid formatting error when
764 apropos-do-all and apropos-compact-layout are both t.
765
766 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
767
768 * apropos.el (apropos-property, apropos-all-words-regexp)
769 (apropos-true-hit, apropos-variable, apropos-print):
770 Fix docstring typos, and remove obsolete comment.
771
772 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
773
774 * net/tramp-sh.el (tramp-sh-handle-file-truename):
775 Preserve trailing "/". (Bug#16851)
776
777 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
778
779 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
780 after `=>' (bug#16811).
781 (ruby-smie-rules): Handle the inconsistent second element of the
782 list returned by `smie-indent--parent'.
783 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
784 method call.
785
786 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
787
788 * elec-pair.el (electric-pair-text-syntax-table)
789 (electric-pair-syntax-info, electric-pair--syntax-ppss)
790 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
791 (electric-pair--looking-at-unterminated-string-p): Doc fix.
792 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
793
794 2014-02-22 Glenn Morris <rgm@gnu.org>
795
796 * imenu.el (imenu--generic-function): Doc fix.
797
798 * register.el (frame-configuration-to-register): Make obsolete.
799
800 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
801
802 * desktop.el (desktop-save-buffer-p): Do not fail when
803 desktop-files-not-to-save is nil. Return t for true result
804 as the doc says.
805
806 2014-02-22 Daniel Colascione <dancol@dancol.org>
807
808 * net/secrets.el (secrets-create-item, secrets-search-items):
809 Check that attribute values are strings, avoiding the construction
810 of invalid dbus messages.
811
812 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
813
814 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
815 defun-declarations-alist.
816
817 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
818
819 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
820 (bug#16829).
821
822 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
823
824 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
825 (whitespace-newline, whitespace-trailing, whitespace-line)
826 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
827 (whitespace-space-after-tab): Fix typo in docstrings.
828
829 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
830
831 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
832
833 * electric.el (electric-indent-functions-without-reindent):
834 Add `yaml-indent-line'.
835
836 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
837
838 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
839 It has done nothing for years; should be removed after the release.
840
841 * simple.el (choose-completion): Fix docstring typo.
842 (read-quoted-char-radix): Remove unneeded * in docstring.
843 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
844 Don't escape parentheses unnecessarily in docstrings.
845
846 2014-02-21 Martin Rudalics <rudalics@gmx.at>
847
848 Fix handling of window-min-height/-width (Bug#16738).
849 * window.el (window--dump-window, window--dump-frame):
850 New functions.
851 (window--min-size-1): Account for window dividers.
852 When window-resize-pixelwise is nil, delay rounding till after the
853 sum of the window components has been calculated.
854 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
855 nil make sure at least one text line and two text columns remain
856 fully visible.
857 (window-resize): Signal an error when window-resize-apply fails.
858 (window--resize-child-windows): Fix calculation of by how many
859 pixels a window can still be shrunk via window-new-normal.
860 (adjust-window-trailing-edge): Call window--resizable with
861 correct TRAIL argument.
862
863 (with-temp-buffer-window): Don't evaluate BODY within
864 with-current-buffer (Bug#16816).
865
866 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
867
868 * net/tramp.el (tramp-check-cached-permissions):
869 Call `file-attributes' with `suffix' being a symbol but a string.
870
871 2014-02-21 Daniel Colascione <dancol@dancol.org>
872
873 * net/dbus.el (dbus-init-bus-1): Declare new subr.
874 (dbus-init-bus): New function: call into dbus-init-bus-1
875 and installs a handler for the disconnect signal.
876 (dbus-call-method): Rewrite to look for result in cons.
877 (dbus-call-method-handler): Store result in cons.
878 (dbus-check-event): Recognize events with nil sender as valid.
879 (dbus-handle-bus-disconnect): New function. React to bus
880 disconnection signal by synthesizing dbus error for each
881 pending synchronous or asynchronous call.
882 (dbus-notice-synchronous-call-errors): New function.
883 (dbus-handle-event): Raise errors directly only when `dbus-debug'
884 is true, not all the time.
885
886 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
887
888 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
889 Remove obsolescence declarations, these variables do not exist anymore.
890
891 * savehist.el (savehist-save-minibuffer-history)
892 (savehist-additional-variables, savehist-file, savehist-mode-hook)
893 (savehist-save-hook, savehist-coding-system, savehist-loaded)
894 (savehist-load, savehist-install, savehist-autosave): Fix typos;
895 mostly, refer to "Savehist mode" when talking about the mode,
896 and not the function.
897
898 * saveplace.el (save-place): Remove redundant info in docstring.
899 (save-place-forget-unreadable-files, toggle-save-place)
900 (save-place-forget-unreadable-files, save-place-dired-hook):
901 Fix typos and remove unneeded backslashes.
902
903 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
904
905 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
906 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
907
908 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
909 <insert-directory>: Use `tramp-handle-insert-directory'.
910 (tramp-gvfs-handle-insert-directory): Remove function.
911
912 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
913 Call `tramp-handle-insert-directory'.
914
915 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
916
917 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
918 before the start of buffer/region (bug#16799).
919
920 2014-02-20 Glenn Morris <rgm@gnu.org>
921
922 * isearch.el (search-invisible): Doc fix.
923
924 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
925
926 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
927 (bug#16657).
928
929 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
930
931 * frameset.el (frameset-restore): Delay removing an old frame's
932 duplicate id until the new frame has been correctly created.
933
934 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
935
936 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
937 (tramp-check-cached-permissions): Call `file-attributes' if the
938 cache is empty.
939
940 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
941 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
942
943 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
944 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
945 (tramp-gvfs-maybe-open-connection): Set always connection
946 properties, even if target is mounted already.
947
948 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
949 Set tramp-autoload cookie.
950 (tramp-get-remote-touch): New defun.
951 (tramp-sh-handle-set-file-times): Use it.
952 (tramp-sh-handle-directory-files-and-attributes):
953 Use `tramp-handle-directory-files-and-attributes' if neither stat
954 nor perl are available on the remote host.
955
956 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
957 "/". Write long listing only when "l" belongs to the switches.
958
959 * net/trampver.el: Update release number.
960
961 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
962
963 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
964
965 2014-02-19 Martin Rudalics <rudalics@gmx.at>
966
967 * window.el (window-state-put): Allow WINDOW to refer to an
968 internal window (Bug#16793).
969
970 2014-02-19 Glenn Morris <rgm@gnu.org>
971
972 * textmodes/remember.el: Move provide statement to end.
973 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
974 (remember-notes): Doc fixes.
975
976 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
977
978 * delsel.el (delete-char): Restore incorrectly erased property
979 (bug#16795).
980
981 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
982
983 * frameset.el (frameset--restore-frame): When a frame is being reused
984 and its root window is not alive, delete all the frame's windows before
985 restoring the window state. This works around the issue in bug#16793.
986
987 2014-02-18 Glenn Morris <rgm@gnu.org>
988
989 * textmodes/remember.el (remember-data-directory)
990 (remember-directory-file-name-format, remember-store-in-files)
991 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
992 (remember-notes-save-and-bury-buffer)
993 (remember-notes--kill-buffer-query): Doc fixes.
994
995 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
996
997 2014-02-17 Alan Mackenzie <acm@muc.de>
998
999 Connect electric-indent-mode up with CC Mode. Bug #15478.
1000 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
1001 to electric-indent-{,local-}-mode.
1002 (c-basic-common-init): Set electric-indent-inhibit.
1003 Initialise c-electric-flag from electric-indent-mode.
1004 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
1005 New hook functions which propagate electric-indent-mode to CC mode.
1006
1007 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
1008 hit, toggle electric-indent-local-mode.
1009
1010 * electric.el (electric-indent-mode-has-been-called):
1011 New variable.
1012
1013 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
1014
1015 * frameset.el (frameset-cfg-id): New function.
1016 (frameset--reuse-frame, frameset-restore): Use it.
1017 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
1018
1019 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1020
1021 * ido.el (ido-file-internal): Remove unused var `d'.
1022 Use \` for to match BoS. Fit within 80n columns.
1023
1024 2014-02-17 Daniel Colascione <dancol@dancol.org>
1025
1026 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
1027 dbus-call-method check for completion using a busy-wait loop with
1028 gradual backoff.
1029
1030 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
1031
1032 Sync with Tramp 2.2.9.
1033
1034 * net/trampver.el: Update release number.
1035
1036 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
1037
1038 * ido.el (ido-file-internal): Don't add the name of an existing
1039 directory twice. (Bug#16747)
1040
1041 2014-02-16 Glenn Morris <rgm@gnu.org>
1042
1043 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
1044 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
1045
1046 2014-02-15 Michael R. Mauger <michael@mauger.com>
1047
1048 * progmodes/sql.el: Version 3.4
1049 (sql-oracle-options): New default value ("-L").
1050 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
1051 (sql-placeholders-filter): Correct placeholder pattern.
1052 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
1053 (sql-login-delay): New variable.
1054 (sql-product-interactive): Use it.
1055
1056 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
1057
1058 * frameset.el (frameset--jump-to-register): Check that buffer is live
1059 (bug#16749).
1060
1061 2014-02-15 Glenn Morris <rgm@gnu.org>
1062
1063 * info.el (info-initialize): Revert 2014-01-10 change.
1064
1065 2014-02-14 Glenn Morris <rgm@gnu.org>
1066
1067 * replace.el (map-query-replace-regexp)
1068 (read-regexp-defaults-function, read-regexp): Doc fixes.
1069
1070 * dired.el (dired-read-regexp):
1071 * faces.el (list-faces-display):
1072 * misearch.el (multi-isearch-read-matching-buffers)
1073 (multi-isearch-read-matching-files):
1074 * play/cookie1.el (cookie-apropos):
1075 * progmodes/grep.el (grep-read-regexp): Doc fixes.
1076
1077 * textmodes/remember.el (remember): Use frameset-to-register
1078 rather than frame-configuration-to-register.
1079
1080 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
1081
1082 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
1083 incorrect keybinding.
1084
1085 2014-02-13 Daniel Colascione <dancol@dancol.org>
1086
1087 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
1088 when adding overlays so that line numbers from compiler match line
1089 numbers we use.
1090
1091 2014-02-13 Glenn Morris <rgm@gnu.org>
1092
1093 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
1094
1095 * jit-lock.el (jit-lock-mode): Doc fix.
1096
1097 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
1098
1099 * apropos.el (apropos-read-pattern): When the user passes an empty
1100 string, give a more helpful error message than "Wrong type
1101 argument: stringp, nil".
1102
1103 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1104
1105 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
1106
1107 2014-02-13 Glenn Morris <rgm@gnu.org>
1108
1109 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
1110
1111 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
1112
1113 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
1114 shift-select commands.
1115
1116 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
1117
1118 * progmodes/js.el (js-indent-line): Don't widen.
1119 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
1120
1121 2014-02-12 Glenn Morris <rgm@gnu.org>
1122
1123 * icomplete.el (icomplete): Add info-link to defgroup.
1124 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
1125 (icomplete-minibuffer-map, icomplete-mode)
1126 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
1127
1128 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
1129 (package-menu-filter): Rename from package-menu-filter-interactive.
1130 Doc fix.
1131
1132 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
1133
1134 * frameset.el (frameset--jump-to-register): Select the required
1135 window and buffer before restoring position (bug#16696).
1136
1137 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
1138
1139 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
1140
1141 2014-02-10 Glenn Morris <rgm@gnu.org>
1142
1143 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
1144
1145 2014-02-10 Eli Zaretskii <eliz@gnu.org>
1146
1147 * w32-common-fns.el (x-get-selection): Doc fix.
1148 * select.el (x-get-selection): Doc fix. (Bug#15109)
1149
1150 * face-remap.el (face-remap-add-relative)
1151 (face-remap-remove-relative, face-remap-reset-base)
1152 (face-remap-set-base): Call force-mode-line-update to redisplay
1153 the current buffer due to potential change in faces. (Bug#16709)
1154
1155 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
1156
1157 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
1158 script more robustly.
1159
1160 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
1161
1162 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
1163
1164 * simple.el (choose-completion): Doc fix (bug#14160).
1165
1166 * subr.el (event-start): Say what a nil EVENT value means.
1167
1168 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
1169 (bug#14197).
1170
1171 * progmodes/grep.el (find-program): Doc fix (bug#14289).
1172
1173 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
1174
1175 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
1176
1177 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
1178 predicate function (bug#15455).
1179
1180 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
1181
1182 * ielm.el (inferior-emacs-lisp-mode): Instead of
1183 `comment-use-global-state', set `comment-use-syntax'.
1184
1185 2014-02-10 Glenn Morris <rgm@gnu.org>
1186
1187 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
1188
1189 2014-02-09 Alan Mackenzie <acm@muc.de>
1190
1191 Fix c-invalidate-state-cache on narrowed buffers.
1192 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
1193 Widen when setting and clearing the CPP delimiter properties.
1194
1195 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
1196
1197 * help.el (describe-bindings): Doc fix (bug#9888).
1198
1199 * files.el (save-buffer): Use ARG as the parameter name for
1200 consistency (bug#10346).
1201 (save-buffer): Clarify the 0 argument (bug#10346).
1202
1203 * cus-edit.el (customize-apropos): Fix error string.
1204 (custom-buffer-create): Doc fix (bug#11122).
1205 (custom-sort-items): Doc fix (bug#11121).
1206
1207 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
1208
1209 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
1210 (icomplete-simple-completing-p): Mention the previous variable.
1211
1212 * font-lock.el (font-lock-value-in-major-mode): Clarify the
1213 meaning of the parameter (bug#12282).
1214
1215 * files.el (find-file-noselect): Clarify prompt when changing
1216 readedness (bug#13261).
1217 (locate-file): Suffixes aren't returned, so don't say that they
1218 are (bug#12674).
1219 (backup-inhibited): Doc clarification (bug#12525).
1220
1221 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
1222 before we actually start to delete things (bug#16331).
1223
1224 * subr.el (event-start): Doc fix (bug#14228).
1225 (event-end): Ditto.
1226
1227 2014-02-09 Glenn Morris <rgm@gnu.org>
1228
1229 * emacs-lisp/warnings.el (lwarn):
1230 Empower help-enable-auto-load. (Bug#15940)
1231
1232 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
1233
1234 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
1235 (Bug#16690)
1236
1237 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
1238
1239 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1240 Insert output at end of buffer. (Bug#16120)
1241
1242 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
1243
1244 * simple.el (choose-completion-string-functions): Document new
1245 calling convention (bug#14153).
1246 (execute-extended-command): Clarify doc string (bug#13373).
1247
1248 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
1249
1250 * find-dired.el (find-name-dired): Doc fix (bug#14290).
1251 (find-grep-dired): Doc fix (bug#14288).
1252
1253 2014-02-08 Juri Linkov <juri@jurta.org>
1254
1255 * isearch.el (isearch-quote-char): Check character validity
1256 like in `quoted-insert' (bug#16677).
1257
1258 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
1259
1260 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
1261
1262 * isearch.el (isearch-hide-immediately): Doc clarification
1263 (bug#14723).
1264
1265 * simple.el (line-move): Document utility function used many
1266 places in the Emacs sources (bug#14843).
1267
1268 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
1269 (dired-prev-marked-file): Doc fix (bug#14855).
1270 (dired-up-directory): Doc fix (bug#14848).
1271
1272 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
1273
1274 * files.el (file-relative-name): Doc fix (bug#15159).
1275
1276 * fringe.el (fringe-styles): Doc fix (bug#15239).
1277
1278 * isearch.el (isearch-filter-predicate): Documentation typo fix
1279 (bug#15474).
1280
1281 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
1282
1283 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
1284
1285 * replace.el (replace-match-maybe-edit): Doc clarification
1286 (bug#15632).
1287
1288 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
1289
1290 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
1291
1292 2014-02-08 Glenn Morris <rgm@gnu.org>
1293
1294 * help-fns.el (describe-variable):
1295 Check {file,dir}-local-variables-alist, and buffer-file-name,
1296 in the correct buffer.
1297
1298 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
1299
1300 * help-fns.el (describe-variable): Fix the case where
1301 a value is directory-local with no dir-locals file. (Bug#16635)
1302
1303 2014-02-08 Glenn Morris <rgm@gnu.org>
1304
1305 * abbrev.el (edit-abbrevs-mode):
1306 Derive from fundamental-mode. (Bug#16682)
1307
1308 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
1309
1310 * simple.el (quoted-insert): Check character validity (bug#16677).
1311
1312 2014-02-07 Juri Linkov <juri@jurta.org>
1313
1314 * desktop.el (desktop-read): Claim the lock when the owner is not
1315 the current process. (Bug#16157)
1316
1317 2014-02-07 Juri Linkov <juri@jurta.org>
1318
1319 * desktop.el (desktop-buffers-not-to-save): Change default from nil
1320 to "\\` ". (Bug#16651)
1321
1322 2014-02-07 Juri Linkov <juri@jurta.org>
1323
1324 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
1325 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
1326 (desktop-auto-save-cancel-timer): New function with some code from
1327 `desktop-auto-save-set-timer'.
1328 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
1329 Instead of setting `desktop-save-mode' to nil, call
1330 `desktop-save-mode' with arg 0. (Bug#16630)
1331
1332 2014-02-07 Glenn Morris <rgm@gnu.org>
1333
1334 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
1335 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
1336 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
1337
1338 * obsolete/iswitchb.el: Move to obsolete/.
1339 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
1340 since obsolete/ is not scanned for autoloads.
1341 * emacs-lisp/authors.el (authors-valid-file-names):
1342 Add iswitchb.el.
1343
1344 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
1345 Disable now non-functional find-file-hook.
1346
1347 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
1348
1349 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
1350 instead of ";" in order to avoid additional prompts. Let heredoc
1351 scripts read from tty. (Bug#16582)
1352 (tramp-send-command): No special handling of heredocs, it isn't
1353 necessary anymore.
1354
1355 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
1356
1357 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
1358 with a space (bug#16664). Limit the symbols considered to the ones
1359 that are bound or fbound (bug#16646).
1360
1361 2014-02-06 Glenn Morris <rgm@gnu.org>
1362
1363 * epa.el (epa-mail-aliases): Doc fix.
1364
1365 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
1366
1367 * emacs-lisp/lisp.el (lisp-completion-at-point):
1368 Use `completion-table-merge' instead of `completion-table-in-turn'
1369 (bug#16604).
1370
1371 * minibuffer.el (completion-table-merge): New function.
1372
1373 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
1374
1375 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
1376 (tramp-sh-handle-set-file-acl)
1377 (tramp-sh-handle-start-file-process)
1378 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
1379 (tramp-find-executable, tramp-send-command): Use it.
1380
1381 2014-02-05 Glenn Morris <rgm@gnu.org>
1382
1383 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
1384
1385 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
1386
1387 * progmodes/python.el (python-shell-send-string)
1388 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
1389
1390 2014-02-04 Anders Lindgren <andlind@gmail.com>
1391
1392 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
1393 the names (bug#16620).
1394
1395 2014-02-03 Martin Rudalics <rudalics@gmx.at>
1396
1397 * faces.el (window-divider): New default value. Rewrite doc-string.
1398 (window-divider-first-pixel, window-divider-last-pixel): New faces.
1399
1400 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
1401
1402 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
1403 `protected' and `public' can also be called without arguments.
1404
1405 2014-02-03 Glenn Morris <rgm@gnu.org>
1406
1407 * register.el (window-configuration-to-register)
1408 (frame-configuration-to-register): Unadvertise unused argument.
1409 * frameset.el (frameset-to-register): Remove unused argument.
1410
1411 * frameset.el (frameset-to-register):
1412 * kmacro.el (kmacro-to-register):
1413 * register.el (increment-register):
1414 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
1415 (calc-append-to-register, calc-prepend-to-register):
1416 * play/gametree.el (gametree-layout-to-register)
1417 (gametree-apply-register-layout):
1418 * textmodes/picture.el (picture-clear-rectangle-to-register)
1419 (picture-yank-rectangle-from-register):
1420 * vc/emerge.el (emerge-combine-versions-register):
1421 Use register-read-with-preview to read registers.
1422
1423 2014-02-03 João Távora <joaotavora@gmail.com>
1424
1425 * elec-pair.el (electric-pair-backward-delete-char): Don't error
1426 when at beginning of (possibly narrowed) buffer.
1427
1428 2014-02-02 Daniel Colascione <dancol@dancol.org>
1429
1430 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
1431 Also try to display local help from just before point.
1432
1433 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
1434
1435 c-parse-state. Don't "append-lower-brace-pair" in certain
1436 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
1437 recognised as a comment.
1438
1439 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
1440 as well as normal comment starter.
1441 (c-parse-state-get-strategy): Extra return possibility
1442 'back-and-forward.
1443 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
1444 return value list to indicate replacement of a brace-pair cons
1445 with its car.
1446 (c-parse-state-1): With 'back-and-forward, only call
1447 c-append-lower-brace-pair-to state-cache when cons-separated.
1448
1449 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
1450
1451 * term/ns-win.el (ns-suspend-error): New function.
1452 (ns-initialize-window-system): Add ns-suspend-error to
1453 suspend-hook (Bug#16612).
1454
1455 2014-02-02 Daniel Colascione <dancol@dancol.org>
1456
1457 * progmodes/cc-defs.el (c-find-assignment-for-mode):
1458 Make loading cc-mode silent.
1459
1460 2014-02-02 Daniel Colascione <dancol@dancol.org>
1461
1462 * comint.el (comint-prompt-read-only): Change doc to suggest
1463 remap keybinding.
1464
1465 2014-02-02 Glenn Morris <rgm@gnu.org>
1466
1467 * register.el (register-read-with-preview, point-to-register)
1468 (window-configuration-to-register, frame-configuration-to-register)
1469 (jump-to-register, number-to-register, view-register, insert-register)
1470 (copy-to-register, append-to-register, prepend-to-register)
1471 (copy-rectangle-to-register): Doc fixes.
1472
1473 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
1474
1475 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
1476 * emacs-lisp/find-func.el (find-function-C-source): Idem.
1477 * emacs-lisp/nadvice.el (advice--cd*r): New function.
1478 * help-fns.el (describe-function-1): Use it.
1479
1480 2014-02-02 Glenn Morris <rgm@gnu.org>
1481
1482 * register.el (register-preview-default): New function,
1483 split from register-preview.
1484 (register-preview-function): Rename from register-preview-functions,
1485 make it not a hook.
1486 (register-preview): Use register-preview-function.
1487 (register-read-with-preview): Error on non-character event. (Bug#16595)
1488
1489 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
1490
1491 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
1492 `:' before binary operators (bug#16609). Don't check for `:'
1493 before `[' and `(', or their syntax status. A percent literal
1494 can't end with either.
1495 (ruby-font-lock-keywords): For built-ins that require arguments,
1496 check that they're followed by something that looks like argument
1497 (bug#16610).
1498
1499 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
1500
1501 * subr.el (butlast): Document what an omitted N means (bug#13437).
1502 (nbutlast): Ditto.
1503
1504 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
1505
1506 * net/shr.el (shr-generic): Make into a defsubst to make the stack
1507 depth shallower (bug#16587).
1508 (shr-tag-svg): Respect `shr-inhibit-images'.
1509 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
1510
1511 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
1512
1513 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
1514 (ruby-smie-grammar): Make "." right-associative. Make its priority
1515 lower than the ternary and all binary operators.
1516 (ruby-smie-rules): Indent "(" relative to the first non-"."
1517 parent, or the first "." parent at indentation.
1518 Use `ruby-align-chained-calls' for indentation of "." tokens.
1519 (Bug#16593)
1520
1521 2014-01-31 Juri Linkov <juri@jurta.org>
1522
1523 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
1524 from `make-hash-table'.
1525
1526 * textmodes/ispell.el (ispell-init-process): Change message format
1527 to be consistent with other messages.
1528
1529 2014-01-31 Glenn Morris <rgm@gnu.org>
1530
1531 * delsel.el (delete-selection-mode): Doc fix.
1532
1533 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
1534 (trace-function-background): Doc fixes.
1535
1536 * ido.el (ido-use-virtual-buffers): Doc fix.
1537 Reset :version, since the default value has not changed.
1538
1539 * register.el (register-preview-delay, register-read-with-preview):
1540 Doc fixes.
1541
1542 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
1543 do not mess with mail-buffer position (fixes 2009-11-03 change).
1544 * progmodes/cc-mode.el (c-submit-bug-report):
1545 Check auto-fill-mode is bound. (Bug#16592)
1546
1547 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
1548
1549 * startup.el (fancy-splash-image-file): New function,
1550 split from fancy-splash-head.
1551 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
1552 so that we are both using the same image. (Bug#16574)
1553
1554 2014-01-30 Glenn Morris <rgm@gnu.org>
1555
1556 * simple.el (eval-expression): Doc fix.
1557
1558 * hexl.el (hexl-mode-hook):
1559 * ielm.el (ielm-mode-hook):
1560 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
1561 (lisp-interaction-mode-hook):
1562 * progmodes/cfengine.e (cfengine3-documentation-function):
1563 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
1564
1565 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1566
1567 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
1568 is a symbol (bug#16584).
1569
1570 2014-01-30 Glenn Morris <rgm@gnu.org>
1571
1572 * help.el (help-for-help-internal): Add "P" to text.
1573
1574 2014-01-29 Glenn Morris <rgm@gnu.org>
1575
1576 * simple.el (just-one-space, cycle-spacing): Doc fixes.
1577
1578 2014-01-28 Martin Rudalics <rudalics@gmx.at>
1579
1580 * window.el (fit-frame-to-buffer): Fix calculations for margins and
1581 height constraints.
1582
1583 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
1584
1585 * progmodes/hideif.el: Extend to full CPP expression syntax.
1586 (hif-token-alist): Add missing tokens.
1587 (hif-token-regexp): Add support for float/octal/hex immediates.
1588 (hif-string-literal-regexp): New const.
1589 (hif-tokenize): Recognize strings and float/octal/hex immediates.
1590 (hif-exprlist): New function.
1591 (hif-parse-if-exp): Use it.
1592 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
1593 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
1594 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
1595 (hif-logxor, hif-comma): New functions.
1596
1597 2014-01-28 Glenn Morris <rgm@gnu.org>
1598
1599 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
1600
1601 * indent.el (tab-stop-list): Doc fix. Add :version.
1602
1603 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
1604 (cvs-append-to-ignore): Add compatibility alias.
1605
1606 2014-01-27 Glenn Morris <rgm@gnu.org>
1607
1608 * dired.el (dired-hide-details-mode): Don't autoload it,
1609 since it cannot be used outside Dired buffers anyway.
1610
1611 * emulation/cua-base.el (cua-mode): Doc fix.
1612
1613 * dired.el (dired-hide-details-hide-symlink-targets)
1614 (dired-hide-details-hide-information-lines)
1615 (dired-hide-details-mode): Doc fixes.
1616
1617 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
1618 * strokes.el (strokes-file): Doc fix. Bump :version.
1619 (strokes-help): Doc fix.
1620 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
1621 * emulation/viper.el (viper): Doc fix for custom group.
1622 (top-level): Remove oh-so-no-longer-relevant text about vip.
1623 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
1624
1625 * ido.el (ido-save-directory-list-file):
1626 * saveplace.el (save-place-file):
1627 * calendar/timeclock.el (timeclock-file):
1628 * net/quickurl.el (quickurl-url-file):
1629 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
1630 * progmodes/idlwave.el (idlwave-config-directory):
1631 * textmodes/remember.el (remember-data-file):
1632 Bump :version.
1633
1634 2014-01-26 Glenn Morris <rgm@gnu.org>
1635
1636 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
1637 Doc fix. Make obsolete.
1638 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
1639
1640 * sort.el (delete-duplicate-lines): Doc fix.
1641
1642 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1643
1644 * progmodes/ada-mode.el (ada):
1645 * woman.el (woman): Link to info manual and Commentary section.
1646
1647 * progmodes/flymake.el (flymake):
1648 * nxml/nxml-mode.el (nxml):
1649 * net/eww.el (eww):
1650 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
1651 * htmlfontify.el (htmlfontify):
1652 * ses.el (ses):
1653 * epa.el (epa):
1654 * ido.el (ido): Link to info manual.
1655
1656 2014-01-25 Leo Liu <sdl.web@gmail.com>
1657
1658 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
1659
1660 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
1661
1662 * net/shr.el (shr-tag-img): Prefer the title over the alt text
1663 (bug#16537).
1664
1665 >>>>>>> MERGE-SOURCE
1666 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
1667
1668 * net/eww.el (eww-download-callback):
1669 Fix reference to eww-download-directory.
1670
1671 * emacs-lisp/bytecomp.el (byte-compile-file):
1672 Remove unused local variable `file-name'.
1673
1674 2014-01-24 Glenn Morris <rgm@gnu.org>
1675
1676 * woman.el (woman-default-faces, woman-monochrome-faces):
1677 Fix obsolescence specification.
1678
1679 * subr.el (with-demoted-errors): Doc fix.
1680
1681 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1682
1683 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
1684 (cl--macroexp-fboundp): New function.
1685 (cl--make-type-test): Use it.
1686
1687 2014-01-23 Glenn Morris <rgm@gnu.org>
1688
1689 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
1690 * simple.el (eval-expression): Doc fixes.
1691
1692 2014-01-22 Glenn Morris <rgm@gnu.org>
1693
1694 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
1695
1696 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
1697
1698 * emacs-lisp/package.el: Write files silently.
1699 (package-autoload-ensure-default-file, package--write-file-no-coding)
1700 (package-generate-description-file, package--download-one-archive)
1701 (package-install-from-archive): Tell `write-region' to stay quiet.
1702 (package-menu-mode, package-menu--print-info): Omit the Archive column
1703 if there's only one archive.
1704 (package-all-keywords, package--has-keyword-p): Remove dead code.
1705
1706 2014-01-22 Glenn Morris <rgm@gnu.org>
1707
1708 * version.el (emacs-bzr-version-bzr): Fix typo.
1709
1710 * version.el (emacs-repository-get-version):
1711 Check either .bzr or .git, but not both.
1712 Make the git case actually use the DIR argument, and return nil
1713 rather than the empty string.
1714 Avoid error if .git exists but the git executable is not found.
1715
1716 2014-01-22 Martin Rudalics <rudalics@gmx.at>
1717
1718 Fixes in window size functions around Bug#16430 and Bug#16470.
1719 * window.el (window-total-size, window-size): New argument ROUND.
1720 (window--min-delta-1, window-min-delta, window--max-delta-1):
1721 Be more conservative when calculating the numbers of lines or
1722 columns a window can shrink (Bug#16430).
1723 (fit-window-to-buffer): Simplify code.
1724 * term.el (term-window-width): Call window-body-width again.
1725
1726 2014-01-22 Glenn Morris <rgm@gnu.org>
1727
1728 * image.el (image-format-suffixes): Doc fix.
1729
1730 * international/quail.el (quail-define-package): Doc fix.
1731
1732 * emacs-lisp/authors.el (authors-valid-file-names)
1733 (authors-renamed-files-alist): Additions.
1734
1735 * vc/vc-git.el (vc-git-print-log): Remove --follow;
1736 reverts 2014-01-09 change. (Bug#16422)
1737
1738 * calc/calc-embed.el (thing-at-point-looking-at):
1739 * emacs-lisp/map-ynp.el (x-popup-dialog):
1740 * obsolete/lmenu.el (x-popup-dialog):
1741 * emacs-lisp/package.el (url-recreate-url):
1742 * mail/mailclient.el (clipboard-kill-ring-save):
1743 * subr.el (x-popup-dialog): Update declaration.
1744 * mail/rmail.el (rmail-mime-message-p):
1745 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
1746
1747 2014-01-21 Daniel Colascione <dancol@dancol.org>
1748
1749 * progmodes/sh-script.el (sh--inside-noncommand-expression):
1750 Correctly detect when we're inside an arithmetic expansion form
1751 containing nested parenthesis.
1752 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
1753 to detect cases where we shouldn't expand "<<" to a heredoc
1754 skeleton.
1755
1756 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
1757
1758 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
1759 (eldoc--message-command-p): New function.
1760 (eldoc-display-message-p): Use it.
1761 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
1762 message is not automatically erased for us.
1763 (eldoc-print-current-symbol-info): Erase previous message, if any.
1764
1765 2014-01-21 Tassilo Horn <tsdh@gnu.org>
1766
1767 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
1768 specify it's an interactive function.
1769
1770 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
1771 Fix regex used for scanning for citation keys which failed for
1772 citations with optional arguments.
1773
1774 2014-01-21 Leo Liu <sdl.web@gmail.com>
1775
1776 * simple.el (read--expression): Don't enable eldoc-mode.
1777
1778 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
1779
1780 * simple.el (move-beginning-of-line): Make sure we don't move forward
1781 (bug#16497).
1782
1783 2014-01-20 Juri Linkov <juri@jurta.org>
1784
1785 * saveplace.el (toggle-save-place, save-place-to-alist)
1786 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
1787 'dired-mode) before checking for dired-directory. (Bug#16477)
1788
1789 2014-01-20 Juri Linkov <juri@jurta.org>
1790
1791 * indent.el (indent-line-to): Use backward-to-indentation
1792 instead of back-to-indentation. (Bug#16461)
1793
1794 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
1795
1796 Revert some of the CANNOT_DUMP fix (Bug#16494).
1797 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
1798 but fixing this can wait until after the next release.
1799 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
1800
1801 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
1802
1803 * eshell/esh-mode.el (eshell-password-prompt-regexp):
1804 Use `password-word-equivalents'.
1805 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
1806 to t. (Bug#5664, Bug#13124)
1807
1808 2014-01-19 Alan Mackenzie <acm@muc.de>
1809
1810 Bind open-paren-in-column-0-is-defun-start to nil at some entry
1811 points.
1812 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
1813 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
1814 * progmodes/cc-mode.el (c-before-change, c-after-change)
1815 (c-font-lock-fontify-region): Bind it here.
1816
1817 2014-01-19 Martin Rudalics <rudalics@gmx.at>
1818
1819 * term.el (term-window-width): Call window-text-width instead of
1820 window-width (Bug#16470).
1821
1822 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
1823
1824 * simple.el (password-word-equivalents): Remove duplicates.
1825 Sort, to make this easier next time.
1826 Downcase. Omit ": " after "jelszó".
1827
1828 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
1829
1830 * term/common-win.el (saved-region-selection): Defvar it.
1831 (x-select-text): Set saved-region-selection (Bug#16382).
1832
1833 2014-01-18 Glenn Morris <rgm@gnu.org>
1834
1835 * emacs-lisp/authors.el (authors-aliases)
1836 (authors-renamed-files-alist): Add some entries.
1837
1838 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
1839
1840 * net/tramp.el (tramp-password-prompt-regexp):
1841 Use `password-word-equivalents' if available.
1842 (tramp-action-password, tramp-process-one-action)
1843 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
1844
1845 2014-01-17 Chong Yidong <cyd@gnu.org>
1846
1847 * simple.el (password-word-equivalents): New defcustom.
1848 * comint.el (comint-password-prompt-regexp): Use it. Bump version
1849 to 24.4.
1850 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
1851 to t. (Bug#13124)
1852
1853 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
1854
1855 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
1856 (ruby-align-to-stmt-keywords): Change the default value.
1857 Use `ruby-alignable-keywords' to generate the possible customization
1858 choices.
1859 (ruby-smie-rules): Instead of using a hardcoded list of alignable
1860 keywords, check against the value of `ruby-alignable-keywords'
1861 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
1862
1863 2014-01-17 Glenn Morris <rgm@gnu.org>
1864
1865 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
1866
1867 Make M-x authors return zero *Authors Errors* from current logs.
1868 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
1869 (authors-ignored-files): Add some entries, remove others.
1870 (authors-ambiguous-files, authors-valid-file-names):
1871 Add some entries.
1872 (authors-renamed-files-alist): Add, remove, and adjust entries.
1873 (authors-renamed-files-regexps): Add some entries.
1874 Remove some very broad ones. Make some entries `lax'.
1875 (authors-lax-changelogs): New constant.
1876 (authors-disambiguate-file-name): Treat top-level specially.
1877 (authors-lax-changelog-p): New function.
1878 (authors-canonical-file-name): Check file as written against
1879 authors-valid-file-names. Do not special-case etc/.
1880 Handle `lax' logs and authors-renamed-files-regexps elements.
1881
1882 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
1883
1884 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
1885 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
1886 callers.
1887
1888 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
1889
1890 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
1891 Assume we're already in the proper buffer.
1892 Inspired by Anders Lindgren <andlind@gmail.com>.
1893 (follow-post-command-hook): Call it from the right buffer.
1894 (follow-comint-scroll-to-bottom): Adjust call.
1895 (follow-all-followers): Use get-buffer-window-list.
1896
1897 2014-01-15 Daniel Colascione <dancol@dancol.org>
1898
1899 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
1900 `buffer-file-name' in interactive-form so that we don't leave
1901 pathless file names in `file-name-history'.
1902
1903 2014-01-15 Juri Linkov <juri@jurta.org>
1904
1905 * indent.el (indent-rigidly): Set deactivate-mark to nil
1906 in transient indentation mode. (Bug#16438)
1907
1908 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
1909
1910 * emacs-lisp/package.el (package-desc-keywords): New function
1911 (Bug#16222).
1912 (describe-package-1, package-all-keywords)
1913 (package--has-keyword-p): Use it.
1914
1915 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1916
1917 * simple.el (define-alternatives): When creating the
1918 COMMAND-alternatives variable, assign COMMAND as its definition
1919 name so that `describe-variable' can relocate it.
1920
1921 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
1922
1923 * font-lock.el (font-lock-keywords): Fix typo in docstring
1924 (bug#16307).
1925
1926 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1927
1928 * ispell.el (ispell-region): Reset `in-comment' for new line
1929 instead of wrongly reset `add-coment' (bug#13577).
1930
1931 2014-01-14 Daiki Ueno <ueno@gnu.org>
1932
1933 * epa-file.el (epa-file-write-region): Encode the region according
1934 to `buffer-file-format'. Problem reported at:
1935 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
1936
1937 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
1938
1939 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
1940 so it applies in the right buffer (bug#16410).
1941
1942 2014-01-13 Daniel Colascione <dancol@dancol.org>
1943
1944 * textmodes/rst.el (rst-define-key): Provide deprecated
1945 keybindings through named functions instead of anonymous ones so
1946 that "??" doesn't appear in describe-mode output.
1947
1948 2014-01-13 Bastien Guerry <bzg@gnu.org>
1949
1950 * simple.el (define-alternatives): Call the selected command
1951 interactively. When setting `COMMAND--implementation' for the
1952 first time, tell the user how to chose another implementation.
1953 Enhance the docstring.
1954
1955 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1956
1957 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
1958 (log-edit--match-first-line): New function.
1959 (log-edit-font-lock-keywords): Use it.
1960 (log-edit-mode): Make jit-lock-defer-multiline work.
1961
1962 2014-01-13 Bastien Guerry <bzg@gnu.org>
1963
1964 * rect.el (rectangle-mark-mode): When the region is not active,
1965 display a message saying that the mark as been set and that
1966 rectangle mode is in use.
1967 (rectangle--highlight-for-redisplay): Only put an overlay with a
1968 visible vertical bar when (display-graphic-p) is non-nil.
1969 This partially fixes Bug#16403.
1970
1971 2014-01-13 Juri Linkov <juri@jurta.org>
1972
1973 * info.el (Info-find-file): Go to DIR before displaying the error
1974 about a nonexistent file if no previous Info file is visited.
1975 Use `user-error' instead of `error' for "Info file %s does not exist".
1976 (Info-find-node-2): In case of a nonexistent node in unwind forms
1977 go to the Top node if there is no previous node to revert to.
1978 (Bug#16405)
1979
1980 2014-01-13 Martin Rudalics <rudalics@gmx.at>
1981
1982 fit-frame/window-to-buffer code fixes including one for Bug#14096.
1983 * window.el (fit-frame-to-buffer): Fix doc-string.
1984 Respect window-min-height/-width. Fit pixelwise when
1985 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
1986 when avoiding that frame goes partially off-screen.
1987 (fit-window-to-buffer): Respect window-min-height/-width
1988 (Bug#14096).
1989
1990 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
1991
1992 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
1993 after an empty line.
1994
1995 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
1996
1997 * net/shr.el (shr-render-region): Autoload.
1998
1999 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
2000
2001 * net/eww.el (eww-download-directory): Rename from
2002 `eww-download-path' (Bug#16419).
2003
2004 2014-01-12 Leo Liu <sdl.web@gmail.com>
2005
2006 * dired-x.el (dired-mode-map): Fix last change.
2007
2008 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
2009
2010 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
2011
2012 Spelling fixes.
2013 * emacs-lisp/generic.el (generic--normalize-comments):
2014 Rename from generic--normalise-comments. All uses changed.
2015 * play/bubbles.el (bubbles--neighborhood-score)
2016 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
2017 (bubbles--neighborhood-available)
2018 (bubbles--update-neighborhood-score):
2019 Rename from names with 'neighbourhood'. All uses changed.
2020
2021 2014-01-12 Leo Liu <sdl.web@gmail.com>
2022
2023 Re-implement the feature of showing eldoc info after editing.
2024 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
2025 (eldoc-edit-message-commands): New function.
2026 (eldoc-print-after-edit): New variable.
2027 (eldoc-pre-command-refresh-echo-area): Emit message only by
2028 eldoc-message-commands.
2029 (eldoc-mode): Restrict eldoc-message-commands to editing commands
2030 if eldoc-print-after-edit is set. (Bug#16346)
2031 * simple.el (read--expression): Enable eldoc-mode.
2032 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
2033
2034 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
2035 Eric S. Raymond <esr@thyrsus.com>
2036
2037 * version.el (emacs-repository-get-version): Enhance so the
2038 function works correctly in either a Bazaar or Git repo.
2039
2040 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
2041
2042 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
2043 Goes with removal of the joke manpages from /etc.
2044
2045 2014-01-10 Kenichi Handa <handa@gnu.org>
2046
2047 * mail/rmail.el (rmail-get-coding-system):
2048 Check rmail-get-coding-function before "funcall"ing it.
2049
2050 2014-01-10 Glenn Morris <rgm@gnu.org>
2051
2052 * emacs-lisp/authors.el (authors-fixed-entries):
2053 Update for files that no longer exist.
2054
2055 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
2056
2057 * version.el (emacs-bzr-get-version): Restore compatibilty with
2058 24.3 (Tested).
2059
2060 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
2061
2062 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
2063 and Podfile.
2064
2065 2014-01-10 Eli Zaretskii <eliz@gnu.org>
2066
2067 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
2068
2069 2014-01-10 Chong Yidong <cyd@gnu.org>
2070
2071 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
2072
2073 2014-01-10 Anders Lindgren <andlind@gmail.com>
2074
2075 * follow.el (follow-cache-command-list): Include right-char and
2076 left-char.
2077
2078 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
2079
2080 Spelling fixes.
2081 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
2082 * woman.el (woman-mark-horizontal-position):
2083 Rename from woman-mark-horizonal-position. Use changed.
2084
2085 2014-01-10 Glenn Morris <rgm@gnu.org>
2086
2087 * info.el (info-initialize): If running uninstalled, ensure our
2088 own info files are always found first, even if INFOPATH is set.
2089
2090 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
2091
2092 2014-01-09 David Engster <deng@randomsample.de>
2093
2094 * emacs-lisp/eieio-custom.el:
2095 * emacs-lisp/eieio-opt.el: Set generated autoload file to
2096 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
2097 * emacs-lisp/eieio.el: Regenerate autoloads.
2098
2099 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
2100
2101 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
2102 following renames. (Bug#8756)
2103
2104 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
2105
2106 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
2107 (bug#16382).
2108 (activate-mark): Add `no-tmm' argument.
2109 (set-mark, push-mark-command): Use it instead of running
2110 activate-mark-hook by hand.
2111
2112 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
2113
2114 In preparation for the move to git, sanitize out some
2115 Bazaar-specific names.
2116
2117 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
2118
2119 * version.el (emacs-bzr-version): Name changed to
2120 emacs-repository-version. Obsolete-variable alias made.
2121 * loadup.el: Follow through on this name change.
2122 * mail/emacsbug.el (report-emacs-bug): Factor out any
2123 assumption about the version control system in use.
2124
2125 2014-01-08 David Engster <deng@randomsample.de>
2126
2127 * help-fns.el (help-fns-describe-function-functions):
2128 New variable to call functions for augmenting help buffers.
2129 (describe-function-1): Remove explicit calls to
2130 `help-fns--compiler-macro', `help-fns--parent-mode' and
2131 `help-fns--obsolete'. Put them in above new variable instead, and
2132 call them through `run-hook-with-args'.
2133 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
2134 `eieio-describe-class'. Not meant for interactive use anymore,
2135 but to augment existing help buffers. Remove optional second
2136 argument. Create proper button for file location.
2137 Rewrite function to use `insert' instead of `princ' and `prin1' where
2138 possible.
2139 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
2140 (eieio-method-def, eieio-class-def): Move further up.
2141 (describe-method, describe-generic, eieio-describe-method):
2142 Remove aliases.
2143 (eieio-help-constructor, eieio-help-generic): Rename from
2144 `eieio-describe-constructor' and `eieio-describe-generic', resp.
2145 Rewrite to use `insert' in the current buffer and use proper help
2146 buttons.
2147 (eieio-help-find-method-definition)
2148 (eieio-help-find-class-definition): Also accept symbols as
2149 arguments.
2150 (eieio-help-mode-augmentation-maybee): Remove.
2151 (eieio-describe-class-sb): Use `describe-function'.
2152 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
2153 Add `eieio-help-generic' and `eieio-help-constructor'.
2154
2155 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
2156
2157 Spelling fixes.
2158 * language/china-util.el (hz-ascii-designation):
2159 Rename from hz-ascii-designnation.
2160 (hz-ascii-designation): Rename from hz-ascii-designnation.
2161 All uses changed.
2162
2163 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2164
2165 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
2166 package-alist.
2167
2168 2014-01-08 Bastien Guerry <bzg@gnu.org>
2169
2170 * emacs-lisp/package.el (package-delete):
2171 Correctly delete the package from package-alist.
2172
2173 2014-01-08 Daiki Ueno <ueno@gnu.org>
2174
2175 * emacs-lisp/package.el (url-recreate-url): Declare.
2176 (url-http-target-url): Declare.
2177 (package-handle-response): Include requested URL in the error message.
2178 (package--check-signature): Don't re-signal errors from
2179 package--with-work-buffer. Suggested by Stefan Monnier.
2180
2181 2014-01-07 Bastien Guerry <bzg@gnu.org>
2182
2183 * minibuffer.el (completion--try-word-completion): When both a
2184 hyphen and a space are possible candidates for the character
2185 following a word, display both candidates. (Bug#15980)
2186
2187 2014-01-07 Martin Rudalics <rudalics@gmx.at>
2188
2189 * window.el (balance-windows-2): While rounding don't give a
2190 window more than the remainder. Bug#16351, bug#16383.
2191
2192 2014-01-07 Glenn Morris <rgm@gnu.org>
2193
2194 * menu-bar.el (menu-bar-help-extra-packages): Remove.
2195 (menu-bar-help-menu): Use view-external-packages instead.
2196
2197 2014-01-07 Bastien Guerry <bzg@gnu.org>
2198
2199 * emacs-lisp/package.el (package-delete): Also delete the package
2200 name from `package-alist', not its description only.
2201
2202 2014-01-07 Glenn Morris <rgm@gnu.org>
2203
2204 * help.el (view-external-packages):
2205 * menu-bar.el (menu-bar-help-extra-packages):
2206 Visit efaq.info rather than etc/MORE.STUFF.
2207
2208 2014-01-07 Juri Linkov <juri@jurta.org>
2209
2210 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
2211 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
2212
2213 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
2214 that shadows RET. (Bug#16342)
2215
2216 2014-01-07 Chong Yidong <cyd@gnu.org>
2217
2218 * isearch.el (isearch-yank-char, isearch-yank-word)
2219 (isearch-yank-line): Doc fix.
2220
2221 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
2222
2223 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
2224 * emacs-lisp/elint.el (elint-find-builtins):
2225 * emacs-lisp/eldoc.el (eldoc-symbol-function):
2226 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
2227 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
2228 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
2229 * apropos.el (apropos-safe-documentation):
2230 * subr.el (symbol-file): Remove redundant fboundp.
2231 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
2232
2233 2014-01-06 Bastien Guerry <bzg@gnu.org>
2234
2235 * hl-line.el (global-hl-line-overlay): Make a local variable.
2236 (global-hl-line-overlays): New variable to store all overlays.
2237 (global-hl-line-mode): Don't delete overlays from the current
2238 buffer when `global-hl-line-sticky-flag' is non-nil.
2239 (global-hl-line-highlight): Add new overlays to
2240 `global-hl-line-overlays'.
2241 (global-hl-line-unhighlight-all): New function to delete all
2242 overlays when turning off `global-hl-line-mode'.
2243 This fixes Bug#16183.
2244
2245 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
2246
2247 * subr.el (set-transient-map): Fix nested case and docstring.
2248
2249 2014-01-06 Tassilo Horn <tsdh@gnu.org>
2250
2251 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
2252 `Texinfo' entry.
2253
2254 2014-01-06 Daniel Colascione <dancol@dancol.org>
2255
2256 Fix defun navigation in vc log view.
2257
2258 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
2259 like `beginning-of-defun'.
2260 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
2261 log-view-end-of-defun to log-view-end-of-defun-1. Replace
2262 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
2263 (log-view-extract-comment): Call `log-view-current-entry' directly
2264 instead of relying on broken `log-view-beginning-of-defun' behavior.
2265
2266 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
2267
2268 Spelling fixes.
2269 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
2270 * emacs-lisp/debug.el (cancel-debug-on-entry):
2271 * epg.el (epg-error-to-string):
2272 * files.el (recover-file):
2273 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
2274 * mail/emacsbug.el (report-emacs-bug-hook):
2275 * mail/sendmail.el (mail-recover):
2276 * ses.el (ses-yank-resize):
2277 * term/ns-win.el (ns-print-buffer):
2278 Spelling fixes in diagnostics, mostly for "canceled" with one L.
2279 * epg.el (epg-key-capability-alist): Rename from misspelled version.
2280 All uses changed.
2281 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
2282
2283 2014-01-06 Leo Liu <sdl.web@gmail.com>
2284
2285 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
2286 to avoid shadowing global key. (Bug#16354)
2287
2288 2014-01-06 Daniel Colascione <dancol@dancol.org>
2289
2290 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
2291 rst-mode.
2292
2293 2014-01-05 Martin Rudalics <rudalics@gmx.at>
2294
2295 * window.el (balance-windows): Add mising t to fix Bug#16351.
2296
2297 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2298
2299 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
2300 (bug#16285).
2301 (shr-insert): If we have a word that's longer than `shr-width',
2302 break after it anyway. Otherwise we'll do no breaking once we get
2303 such a long word.
2304
2305 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2306
2307 * net/eww.el (eww): Support single/double quote for search.
2308 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
2309 (eww-history-quit): Delete and use quit-window.
2310 (eww-history-kill): Delete, because it doesn't work well and
2311 not necessary.
2312 (eww-history-mode-map): Delete some keys and add easy-menu.
2313
2314 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
2315
2316 Fix misspelling of 'chinese' in rx (Bug#16237).
2317 * emacs-lisp/rx.el (rx-categories): Correct spelling of
2318 chinese-two-byte.
2319
2320 Change subword regexps back to vars (Bug#16296).
2321 * progmodes/subword.el (subword-forward-regexp)
2322 (subword-backward-regexp): Change these back to variables.
2323
2324 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
2325
2326 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
2327 syntax-begin-function (bug#16247).
2328
2329 2014-01-03 Chong Yidong <cyd@gnu.org>
2330
2331 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
2332 (advice--docstring): Delete variable.
2333 (advice--make-1): Leave the docstring empty.
2334 (advice-add): Use function-documentation for advised docstring.
2335
2336 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
2337 Ignore function-documentation property when getting documentation.
2338 (ad-activate-advised-definition): Use function-documentation
2339 generate the docstring.
2340 (ad-make-advised-definition): Don't call
2341 ad-make-advised-definition-docstring.
2342 (ad-make-advised-definition-docstring, ad-advised-definition-p):
2343 Delete functions.
2344
2345 * progmodes/sql.el (sql-help): Use function-documentation instead
2346 of dynamic-docstring-function property. No need to autoload now.
2347 (sql--help-docstring): New variable.
2348 (sql--make-help-docstring): Use it.
2349
2350 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
2351
2352 * ielm.el (ielm-tab): Retarget.
2353 (ielm-map): Use ielm-tab for tab.
2354 (ielm-complete-filename): Use comint-filename-completion.
2355 (ielm-complete-symbol): Remove.
2356 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
2357 remove ielm-tab from completion-at-point-functions (bug#16224).
2358
2359 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
2360 Beware signals raised by predicates (bug#16201).
2361
2362 2014-01-02 Richard Stallman <rms@gnu.org>
2363
2364 * dired-aux.el (dired-do-print): Handle printer-name.
2365
2366 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
2367 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
2368 (rmail-epa-decrypt): Turn off mime processing.
2369
2370 * mail/rmail.el (rmail-make-in-reply-to-field):
2371 Add parens in message-id.
2372
2373 * mail/rmail.el (rmail-get-coding-function): Variable.
2374 (rmail-get-coding-system): Use it.
2375
2376 2013-12-31 Eli Zaretskii <eliz@gnu.org>
2377
2378 * international/mule-conf.el: Unify the charset indian-is13194.
2379 (indian-is13194): Specify unify-map.
2380
2381 2013-12-31 Leo Liu <sdl.web@gmail.com>
2382
2383 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
2384
2385 2013-12-30 Daniel Colascione <dancol@dancol.org>
2386
2387 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
2388 of printing a useless when we resume from sleep.
2389
2390 * progmodes/sh-script.el
2391 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
2392 in indentation code. (Bug#16233)
2393
2394 2013-12-28 João Távora <joaotavora@gmail.com>
2395
2396 * elec-pair.el (electric-pair-post-self-insert-function):
2397 Don't open extra newlines at beginning of buffer. (Bug#16272)
2398
2399 2013-12-28 Eli Zaretskii <eliz@gnu.org>
2400
2401 * frame.el (window-system-for-display): Don't allow to create a
2402 GUI frame from a -nw session on MS-Windows. (Bug#14739)
2403
2404 2013-12-28 Glenn Morris <rgm@gnu.org>
2405
2406 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
2407 Update callers.
2408
2409 * apropos.el (apropos-match-face):
2410 * calculator.el (calculator-displayer):
2411 * dabbrev.el (dabbrev-search-these-buffers-only):
2412 * face-remap.el (buffer-face-mode-face):
2413 * simple.el (yank-handled-properties):
2414 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
2415 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
2416 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
2417 (hashcash-double-spend-database):
2418 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
2419 (ruby-deep-indent-paren-style):
2420 * textmodes/flyspell.el (flyspell-auto-correct-binding):
2421 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
2422 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
2423 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
2424 Specify custom types.
2425
2426 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
2427 * bookmark.el (bookmark-bmenu-use-header-line):
2428 * doc-view.el (doc-view-scale-internally):
2429 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
2430 * register.el (register-preview-delay):
2431 * net/shr.el (shr-bullet):
2432 * progmodes/cfengine.el (cfengine-cf-promises)
2433 (cfengine-parameters-indent):
2434 * progmodes/octave.el (inferior-octave-error-regexp-alist):
2435 * textmodes/reftex-vars.el (reftex-label-regexps):
2436 * vc/log-edit.el (log-edit-setup-add-author): Add version.
2437
2438 * net/tls.el (tls-certtool-program): Fix default value.
2439
2440 * desktop.el (desktop-restore-in-current-display):
2441 * newcomment.el (comment-empty-lines):
2442 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
2443 (idlwave-pad-keyword):
2444 * progmodes/tcl.el (tcl-tab-always-indent):
2445 * textmodes/reftex-vars.el (reftex-index-default-tag):
2446 * elec-pair.el (electric-pair-skip-whitespace):
2447 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
2448
2449 * emacs-lisp/authors.el (authors-ignored-files)
2450 (authors-valid-file-names, authors-renamed-files-alist): Additions.
2451
2452 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
2453
2454 * shell.el (shell-dynamic-complete-command): Doc fix.
2455 (shell--command-completion-data): Shell completion now matches
2456 executable filenames from the current buffer's directory, on
2457 systems in which this behavior is the default (windows-nt, ms-dos).
2458
2459 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
2460
2461 * net/shr.el (shr-insert): Don't infloop if the width is zero.
2462
2463 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
2464
2465 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
2466 (bug#16251).
2467
2468 * electric.el: Move all electric-pair-* to elec-pair.el.
2469 * elec-pair.el: New file, split from electric.el.
2470
2471 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
2472
2473 * net/shr.el (shr-find-fill-point): Don't try to fill if the
2474 indentation level is larger than the width, because that will
2475 infloop.
2476 (shr-insert): Fill repeatedly long texts, so that Japanese is
2477 formatted correctly (bug#16263).
2478 (shr-find-fill-point): Off by one error in comparison with the
2479 indentation.
2480
2481 2013-12-26 João Távora <joaotavora@gmail.com>
2482
2483 * electric.el (electric-pair-mode): More flexible engine for skip-
2484 and inhibit predicates, new options for pairing-related functionality.
2485 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
2486 if that keeps or improves their balance in buffers.
2487 (electric-pair-delete-adjacent-pairs): Delete the pair when
2488 backspacing over adjacent matched delimiters.
2489 (electric-pair-open-extra-newline): Open extra newline when
2490 inserting newlines between adjacent matched delimiters.
2491 (electric--sort-post-self-insertion-hook):
2492 Sort post-self-insert-hook according to priority values when
2493 minor-modes are activated.
2494 * simple.el (newline-and-indent): Call newline with interactive
2495 set to t.
2496 (blink-paren-post-self-insert-function): Set priority to 100.
2497 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2498 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
2499 comments. Locally set electric-pair-skip-whitespace to 'chomp and
2500 electric-pair-open-newline-between-pairs to nil.
2501
2502 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
2503
2504 * progmodes/python.el: Use lexical-binding.
2505 (python-nav-beginning-of-defun): Stop searching ASAP.
2506
2507 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
2508
2509 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
2510 Fix interactive spec. Doc fix. (Bug#15754)
2511
2512 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
2513
2514 * emacs-lisp/byte-run.el (eval-when-compile):
2515 * progmodes/cc-defs.el (cc-eval-when-compile):
2516 Fix edebug spec (bug#16184).
2517
2518 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
2519
2520 * net/shr.el (shr-visit-file): Remove debugging function.
2521 (shr-insert): Don't infloop if we can't find a good place to break
2522 the line (bug#16256).
2523
2524 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
2525
2526 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
2527 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
2528 python-nav-lisp-forward-sexp-safe.
2529 (python-nav--forward-sexp): New argument SAFE allows switching
2530 forward sexp movement behavior for parens.
2531 (python-nav-forward-sexp): Throw errors on unterminated parens
2532 (Bug#16191).
2533 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
2534 (python-nav-backward-sexp-safe): New functions.
2535 (python-shell-buffer-substring):
2536 Use `python-nav-forward-sexp-safe'.
2537
2538 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
2539
2540 * net/shr.el (shr-find-fill-point): Don't break lines before a
2541 quotation mark.
2542 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
2543 (shr-find-fill-point): Remove the special checks for the quotation
2544 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
2545
2546 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2547
2548 * net/eww.el (eww-form-textarea): Use a different face for
2549 textareas than text input since they have different keymaps
2550 (bug#16142).
2551
2552 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
2553
2554 * progmodes/python.el (python-nav-beginning-of-statement):
2555 Speed up (Bug#15295).
2556
2557 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
2558
2559 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
2560 the window configuration.
2561
2562 2013-12-24 Eli Zaretskii <eliz@gnu.org>
2563
2564 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
2565 we run on MS-Windows or MS-DOS.
2566
2567 2013-12-24 Martin Rudalics <rudalics@gmx.at>
2568
2569 * window.el (balance-windows-area): Call window-size instead of
2570 window-height and window-width. Bug#16241.
2571
2572 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
2573
2574 * net/eww.el (eww-bookmark-quit): Remove.
2575 (eww-bookmark-browse): Restore the window configuration when you
2576 choose a bookmark (bug#16144).
2577
2578 2013-12-24 Daniel Colascione <dancol@dancol.org>
2579
2580 * icomplete.el: Remove redundant :group arguments to `defcustom'
2581 throughout.
2582 (icomplete-show-matches-on-no-input): New customizable variable.
2583 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
2584 we have something to show.
2585 (icomplete-exhibit): Compute completions even if we have no user input.
2586
2587 2013-12-23 Daniel Colascione <dancol@dancol.org>
2588
2589 * icomplete.el: Move `provide' to end of file.
2590
2591 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
2592
2593 * net/gnutls.el (gnutls-verify-error): Add version tag.
2594
2595 2013-12-23 Chong Yidong <cyd@gnu.org>
2596
2597 * subr.el (set-transient-map): Rename from
2598 set-temporary-overlay-map. Doc fix.
2599
2600 * face-remap.el (text-scale-adjust):
2601 * indent.el (indent-rigidly):
2602 * kmacro.el (kmacro-call-macro):
2603 * minibuffer.el (minibuffer-force-complete):
2604 * repeat.el (repeat):
2605 * simple.el (universal-argument--mode):
2606 * calendar/todo-mode.el (todo-insert-item--next-param):
2607 * progmodes/f90.el (f90-abbrev-start): Callers changed.
2608
2609 * indent.el (indent-rigidly): Use substitute-command-keys.
2610
2611 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2612
2613 * net/eww.el (eww-tag-select): Add text-property to jump to next
2614 select field.
2615 (eww): Add non-supported ftp error.
2616
2617 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2618
2619 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
2620 comments. Handle electric indent after typing `?' and `!'.
2621
2622 2013-12-22 Chong Yidong <cyd@gnu.org>
2623
2624 * faces.el (face-spec-recalc): If the theme specs are not
2625 applicable to a frame, fall back on the defface spec.
2626 This prevents themes from obliterating faces on low-color terminals.
2627
2628 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2629
2630 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
2631 after `{'. We need it after block openers, and it doesn't seem
2632 to hurt after hash openers.
2633
2634 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2635
2636 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
2637 extracted from `ruby-smie-rules'.
2638 (ruby--electric-indent-chars): New variable.
2639 (ruby--electric-indent-p): New function.
2640 (ruby-mode): Use `electric-indent-functions' instead of
2641 `electric-indent-chars'.
2642
2643 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
2644
2645 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
2646 docstring.
2647 (ruby-smie-rules): Indent plus one level after `=>'.
2648
2649 2013-12-21 Richard Stallman <rms@gnu.org>
2650
2651 * simple.el (newline): Doc fix.
2652
2653 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
2654
2655 * net/eww.el (eww-list-histories, eww-list-histories)
2656 (eww-history-browse, eww-history-quit, eww-history-kill)
2657 (eww-history-mode-map, eww-history-mode): New command and
2658 functions to list browser histories.
2659 (eww-form-text): Support text form with disabled
2660 and readonly attributes.
2661 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
2662
2663 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2664
2665 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
2666 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
2667 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
2668 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
2669 Use `user-error'.
2670 (eww-bookmark-mode-map): Add menu.
2671 (eww-render, eww-mode): Use `setq-local'.
2672 (eww-tool-bar-map): New variable.
2673 (eww-mode): Set `tool-bar-map'.
2674 (eww-view-source): Check for `html-mode' with `fboundp'.
2675
2676 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2677
2678 * net/shr.el (shr--extract-best-source): Don't bug out on audio
2679 elements with text inside. Also remove debugging.
2680
2681 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
2682
2683 * cus-start.el (all): Add ns-use-srgb-colorspace.
2684
2685 2013-12-21 Chong Yidong <cyd@gnu.org>
2686
2687 * custom.el (custom-theme-recalc-face): Do nothing if the face is
2688 undefined. Thus, theme settings for undefined faces do not take
2689 effect until the faces are defined with defface, the same as with
2690 theme variables.
2691
2692 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
2693 (face-spec-reset-face): Don't assign extra properties in temacs.
2694 (face-spec-recalc): Apply X resources too.
2695
2696 2013-12-21 Chong Yidong <cyd@gnu.org>
2697
2698 * faces.el (face-spec-set):
2699 * cus-face.el (custom-theme-set-faces, custom-set-faces):
2700 * custom.el (defface): Doc fixes (Bug#16203).
2701
2702 * indent.el (indent-rigidly-map): Add docstring, and move commands
2703 into named functions.
2704 (indent-rigidly-left, indent-rigidly-right)
2705 (indent-rigidly-left-to-tab-stop)
2706 (indent-rigidly-right-to-tab-stop): New functions. Decide on
2707 indentation direction based on bidi direction, and accumulate
2708 sequential commands in a single undo boundary.
2709 (indent-rigidly--pop-undo): New utility function.
2710
2711 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
2712
2713 * faces.el (read-face-name): Require crm.el when using crm-separator.
2714
2715 2013-12-20 Daniel Colascione <dancol@dancol.org>
2716
2717 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
2718 so that we don't reflow comments into the shebang line.
2719
2720 2013-12-20 Juri Linkov <juri@jurta.org>
2721
2722 * saveplace.el (save-place-to-alist): Add `dired-filename' as
2723 a position when `dired-directory' is non-nil. Check integer
2724 positions with `integerp'.
2725 (toggle-save-place, save-places-to-alist): Add check for
2726 `dired-directory'.
2727 (save-place-find-file-hook): Check integer positions with
2728 `integerp'.
2729 (save-place-dired-hook): Use `dired-goto-file' when
2730 `dired-filename' is found in the assoc list. Check integer
2731 positions with `integerp'.
2732 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
2733
2734 * dired.el (dired-initial-position-hook): Rename back from
2735 `dired-initial-point-hook'.
2736 (dired-initial-position): Rename `dired-initial-point-hook' to
2737 `dired-initial-position-hook'.
2738 (dired-file-name-at-point): Doc fix. (Bug#15329)
2739
2740 2013-12-20 Juri Linkov <juri@jurta.org>
2741
2742 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
2743 (read-regexp-suggestions): New function.
2744 (read-regexp): Use `read-regexp-defaults-function' to get default values.
2745 Use `read-regexp-suggestions'. Add non-empty default to history
2746 for empty input.
2747 (occur-read-regexp-defaults-function): Remove function.
2748 (occur-read-primary-args): Use `regexp-history-last' instead of
2749 `occur-read-regexp-defaults-function'.
2750
2751 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
2752 (hi-lock-line-face-buffer, hi-lock-face-buffer)
2753 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
2754 `hi-lock-read-regexp-defaults-function'. Doc fix.
2755 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
2756 with `find-tag-default-as-symbol-regexp'. Doc fix.
2757 (hi-lock-read-regexp-defaults): Remove function.
2758 (hi-lock-regexp-okay): Add check for null.
2759
2760 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
2761 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
2762
2763 * subr.el (find-tag-default-as-symbol-regexp): New function.
2764 (find-tag-default-as-regexp): Move symbol regexp formatting to
2765 `find-tag-default-as-symbol-regexp'.
2766
2767 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
2768
2769 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
2770 (Bug#14179)
2771
2772 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
2773
2774 * calendar/todo-mode.el: New implementation of item insertion
2775 commands and key bindings.
2776 (todo-key-prompt): New face.
2777 (todo-insert-item): New command.
2778 (todo-insert-item--parameters): New defconst, replacing defvar
2779 todo-insertion-commands-args-genlist.
2780 (todo-insert-item--param-key-alist): New defconst, replacing
2781 defvar todo-insertion-commands-arg-key-list.
2782 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
2783 (todo-insert-item--argsleft, todo-insert-item--apply-args)
2784 (todo-insert-item--next-param): New functions.
2785 (todo-insert-item--args, todo-insert-item--argleft)
2786 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
2787 New variables.
2788 (todo-key-bindings-t): Change binding of "i" from
2789 todo-insertion-map to todo-insert-item.
2790 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
2791 (todo-insertion-command-name, todo-insertion-commands-names)
2792 (todo-define-insertion-command, todo-insertion-commands)
2793 (todo-insertion-key-bindings, todo-insertion-map): Remove.
2794
2795 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
2796
2797 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
2798 (todo-toggle-item-highlighting): Use eval-and-compile instead of
2799 eval-when-compile.
2800 (todo-move-category): Allow choosing a non-existing todo file to
2801 move the category to, and create that file.
2802 (todo-default-priority): New user option.
2803 (todo-set-item-priority): Use it.
2804 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
2805 (desktop-restore-file-buffer): Declare.
2806 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
2807 (todo-modes-set-2): Locally set desktop-save-buffer to
2808 todo-desktop-save-buffer.
2809 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
2810 (auto-mode-alist): Add autoload cookie.
2811
2812 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
2813
2814 * emacs-lisp/subr-x.el: Renamed from helpers.el.
2815 helpers.el was a poor choice of name.
2816 (string-remove-prefix): New function.
2817 (string-remove-suffix): New function.
2818
2819 2013-12-20 Martin Rudalics <rudalics@gmx.at>
2820
2821 Fix assignment for new window total sizes.
2822 * window.el (window--pixel-to-size): Remove function.
2823 (window--pixel-to-total-1, window--pixel-to-total):
2824 Fix calculation of new total sizes.
2825
2826 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
2827
2828 * comint.el (comint-output-filter): Fix rear-nonsticky property
2829 placement (Bug#16010).
2830
2831 2013-12-20 Chong Yidong <cyd@gnu.org>
2832
2833 * faces.el (read-color): Minor fix for completion function.
2834
2835 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
2836
2837 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
2838 New option. (Bug#16182)
2839 (ruby-smie--indent-to-stmt-p): Use it.
2840 (ruby-smie-rules): Revert the logic in the handling of `when'.
2841 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
2842 (ruby-deep-arglist, ruby-deep-indent-paren)
2843 (ruby-deep-indent-paren-style): Update docstrings to note that the
2844 vars don't have any effect with SMIE.
2845
2846 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
2847
2848 * calc/calc.el (calc-enter, calc-pop): Use the variable
2849 `calc-context-sensitive-enter'.
2850
2851 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
2852
2853 * net/shr.el (shr-insert): Protect against infloops in degenerate
2854 tables.
2855
2856 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2857
2858 * progmodes/octave.el (octave): Add link to manual and octave
2859 homepage.
2860 (octave-mode-menu): Link to octave-mode manual.
2861
2862 2013-12-20 Leo Liu <sdl.web@gmail.com>
2863
2864 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
2865 insertion using skeleton-end-newline. (Bug#16138)
2866
2867 2013-12-20 Juri Linkov <juri@jurta.org>
2868
2869 * replace.el (occur-engine): Use `add-face-text-property'
2870 to add the face property to matches and titles. (Bug#14645)
2871
2872 * hi-lock.el (hi-green): Use lighter color "light green" closer to
2873 the palette of other hi-lock colors.
2874 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
2875
2876 2013-12-19 Juri Linkov <juri@jurta.org>
2877
2878 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
2879 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
2880 (minibuffer-history-symbol): Move variable declaration closer to
2881 its usage.
2882
2883 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
2884 (Bug#14785)
2885
2886 2013-12-19 Juri Linkov <juri@jurta.org>
2887
2888 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
2889 New function.
2890 (log-edit-hook): Add it to :options. (Bug#16170)
2891
2892 2013-12-19 Juri Linkov <juri@jurta.org>
2893
2894 * simple.el (eval-expression-print-format): Don't check for
2895 command names and the last command. Always display additional
2896 formats of the integer result in the echo area, and insert them
2897 to the current buffer only with a zero prefix arg.
2898 Display character when char-displayable-p is non-nil.
2899 (eval-expression): With a zero prefix arg, set `print-length' and
2900 `print-level' to nil, and insert the integer values from
2901 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
2902
2903 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
2904 `eval-last-sexp-arg-internal'. Doc fix.
2905 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
2906 `eval-last-sexp-print-value'. Doc fix.
2907 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
2908 Set `print-length' and `print-level' to nil when arg is zero.
2909 (eval-last-sexp): Doc fix.
2910 (eval-defun-2): Print the integer values from
2911 `eval-expression-print-format' at the end.
2912
2913 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
2914 values from `eval-expression-print-format' at the end.
2915
2916 * ielm.el (ielm-eval-input): Print the integer
2917 values from `eval-expression-print-format' at the end.
2918
2919 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
2920
2921 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
2922 2013-12-11T19:01:44Z!tzz@lifelogs.com.
2923
2924 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2925
2926 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
2927 (hl-line-highlight, global-hl-line-highlight): Use it.
2928 (hl-line-overlay): Use defvar-local.
2929
2930 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
2931
2932 * term/ns-win.el: Require dnd.
2933 (global-map): Remove drag items.
2934 (ns-insert-text, ns-set-foreground-at-mouse)
2935 (ns-set-background-at-mouse):
2936 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
2937 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
2938 New functions.
2939
2940 2013-12-19 Glenn Morris <rgm@gnu.org>
2941
2942 * emacs-lisp/ert.el (ert-select-tests):
2943 Fix string/symbol mixup. (Bug#16121)
2944
2945 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
2946
2947 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
2948 keywords to their parent.
2949
2950 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
2951
2952 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
2953 first arg to be a string (fixed dead code), or an operator symbol.
2954 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
2955 operator symbols.
2956 (ruby-smie-rules): Remove parent token check in the `.' clause, it
2957 did nothing. Don't respond to `(:after ".")', it will be called
2958 with :before anyway. Remove the ` @ ' rule, it didn't seem to
2959 change anything. Only return indentation for binary operators
2960 when they are hanging. De-dent opening paren when its parent is
2961 `.', otherwise it looks bad when the dot is not at bol or eol
2962 (bug#16182).
2963
2964 2013-12-19 Juri Linkov <juri@jurta.org>
2965
2966 * replace.el (query-replace-read-args): Split a non-negative arg
2967 and a negative arg into separate elements.
2968 (query-replace, query-replace-regexp, replace-string)
2969 (replace-regexp): Add arg `backward'. Doc fix.
2970 (replace-match-maybe-edit): When new arg `backward' is non-nil,
2971 move point to the beginning of the match.
2972 (replace-search, replace-highlight): Use new arg `backward'
2973 to set the value of `isearch-forward'.
2974 (perform-replace): Add arg `backward' and use it to perform
2975 replacement backward. (Bug#14979)
2976
2977 * isearch.el (isearch-query-replace): Use a negative prefix arg
2978 to call `perform-replace' with a non-nil arg `backward'.
2979
2980 2013-12-18 Juri Linkov <juri@jurta.org>
2981
2982 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
2983 to the default list. Move `log-edit-show-files' to the end.
2984 Add more available functions to options.
2985 (log-edit): Move default specific settings to
2986 `log-edit-insert-message-template'. Don't move point.
2987 (log-edit-insert-message-template): New function.
2988 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
2989 (Bug#16170)
2990
2991 2013-12-18 Juri Linkov <juri@jurta.org>
2992
2993 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
2994 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
2995
2996 2013-12-18 Leo Liu <sdl.web@gmail.com>
2997
2998 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
2999 (Bug#16186)
3000
3001 2013-12-18 Eli Zaretskii <eliz@gnu.org>
3002
3003 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
3004 formats for displaying file sizes when the -s switch is given.
3005 Instead, compute a separate format for displaying the size in
3006 blocks, which is displayed in addition to the "regular" size.
3007 When -h is given in addition to -s, produce size in blocks in
3008 human-readable form as well. (Bug#16179)
3009
3010 2013-12-18 Tassilo Horn <tsdh@gnu.org>
3011
3012 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
3013 Reference tables with ~\ref{...} instead of only \ref{...}.
3014
3015 2013-12-18 Chong Yidong <cyd@gnu.org>
3016
3017 * cus-edit.el (custom-magic-alist): Fix "themed" description
3018 (Bug#14348).
3019
3020 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
3021 is non-nil, do not create a new entry in the symbol's theme-value
3022 or theme-face property; update theme-settings only (Bug#14664).
3023 (custom-available-themes): Doc fix.
3024
3025 * cus-theme.el (custom-new-theme-mode-map): Add bindings
3026 (Bug#15674).
3027
3028 * replace.el (occur-engine): Avoid infloop (Bug#7593).
3029
3030 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3031
3032 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
3033 (Bug#13914).
3034
3035 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
3036
3037 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
3038
3039 2013-12-18 Glenn Morris <rgm@gnu.org>
3040
3041 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
3042 * cus-start.el (load-prefer-newer): New option.
3043
3044 2013-12-18 Le Wang <l26wang@gmail.com>
3045
3046 * comint.el (comint-previous-matching-input-from-input):
3047 Retain point (Bug#13404).
3048
3049 2013-12-18 Chong Yidong <cyd@gnu.org>
3050
3051 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
3052
3053 2013-12-18 Glenn Morris <rgm@gnu.org>
3054
3055 * mail/emacsbug.el (report-emacs-bug):
3056 Only mention enable-multibyte-characters if non-standard.
3057
3058 2013-12-17 Juri Linkov <juri@jurta.org>
3059
3060 * arc-mode.el (archive-extract-by-file): Check if directory exists
3061 before deletion to not show irrelevant errors if it doesn't exist.
3062
3063 2013-12-17 Juri Linkov <juri@jurta.org>
3064
3065 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
3066 (Bug#14751)
3067
3068 * net/eww.el (browse-web): Add alias to `eww'.
3069 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
3070 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
3071
3072 * net/browse-url.el (browse-url-browser-function): Move `eww'
3073 closer to similar functions.
3074
3075 * startup.el (fancy-startup-screen, fancy-about-screen):
3076 Set browse-url-browser-function to eww-browse-url locally.
3077 (Bug#14751)
3078
3079 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3080
3081 * window.el (window--pixel-to-total): Remove unused `mini' var.
3082 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
3083 (split-window): Remove unused `new' var.
3084 (window--display-buffer): Remove unused `frame' and `delta' vars.
3085 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
3086 and display-width'.
3087
3088 2013-12-17 Martin Rudalics <rudalics@gmx.at>
3089
3090 * dired.el (dired-mark-pop-up):
3091 * register.el (register-preview): Don't bind
3092 split-height-threshold here since it's now done in
3093 display-buffer-below-selected.
3094
3095 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
3096
3097 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
3098 xterm-rgb-convert-to-16bit.
3099 (rxvt-register-default-colors): Standardize with
3100 xterm-register-default-colors (Bug#14078).
3101
3102 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
3103
3104 * simple.el (kill-region): Pass mark first, then point, so that
3105 kill-append works right (Bug#12819).
3106 (copy-region-as-kill, kill-ring-save): Likewise.
3107
3108 2013-12-17 Leo Liu <sdl.web@gmail.com>
3109
3110 * net/rcirc.el (rcirc-add-face):
3111 * eshell/em-prompt.el (eshell-emit-prompt):
3112 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
3113 (Bug#16167)
3114
3115 2013-12-17 Chong Yidong <cyd@gnu.org>
3116
3117 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
3118 Suggested by Xue Fuqiao.
3119
3120 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
3121
3122 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
3123
3124 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3125
3126 * net/shr.el (shr-insert-document): Remove unused var
3127 `shr-preliminary-table-render'.
3128 (shr-rescale-image): Remove unused arg `force'.
3129 (shr-put-image): Update calls accordingly.
3130 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
3131
3132 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
3133
3134 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
3135 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
3136 :close-all, to see which indentation method to use (Bug#16116).
3137 (smie-rules-function): Document the method :close-all.
3138
3139 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
3140
3141 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
3142
3143 * net/eww.el (eww-display-html): If we can't find the anchor we're
3144 looking for, then go to point-min.
3145
3146 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
3147
3148 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
3149 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
3150 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
3151 Expand dir too, in case it's relative.
3152
3153 2013-12-16 Juri Linkov <juri@jurta.org>
3154
3155 * desktop.el (desktop-auto-save-timeout): Change default to
3156 `auto-save-timeout'. Doc fix.
3157 (desktop-save): Skip the timestamp in desktop-saved-frameset
3158 when checking for auto-save changes.
3159 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
3160 `desktop-auto-save' is called repeatedly by the idle timer.
3161 (desktop-auto-save-set-timer): Replace `run-with-timer' with
3162 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
3163 (Bug#15331)
3164
3165 2013-12-16 Juri Linkov <juri@jurta.org>
3166
3167 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
3168 (Bug#16035)
3169 (isearch-pre-command-hook): Check `this-command' for symbolp.
3170
3171 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
3172
3173 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
3174
3175 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
3176
3177 * progmodes/cfengine.el (cfengine3--current-word): Remove.
3178 (cfengine3--current-function): Bring in the current-function
3179 functionality from `cfengine3--current-word'.
3180 (cfengine3-completion-function): Bring in the
3181 bounds-of-current-word functionality from
3182 `cfengine3--current-word'.
3183
3184 2013-12-16 Martin Rudalics <rudalics@gmx.at>
3185
3186 * window.el (display-buffer-below-selected):
3187 Bind split-height-threshold to 0 as suggested by Juri Linkov.
3188
3189 2013-12-16 Leo Liu <sdl.web@gmail.com>
3190
3191 * progmodes/compile.el (compile-goto-error): Do not push-mark.
3192 Remove NOMSG arg and all uses changed.
3193
3194 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
3195
3196 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
3197 (cua--deactivate-rectangle): Don't deactivate the mark.
3198 (cua-set-rectangle-mark): Don't set mark-active since
3199 cua--activate-rectangle already does it for us.
3200 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
3201 non-rectangular region.
3202
3203 * emulation/cua-base.el (cua-repeat-replace-region):
3204 Use with-current-buffer.
3205
3206 * net/gnutls.el: Use cl-lib.
3207 (gnutls-negotiate): `mapcan' -> cl-mapcan.
3208
3209 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
3210
3211 * emacs-lisp/package.el (package-built-in-p): Support both
3212 built-in and the package.el converted package descriptions.
3213 (package-show-package-list): Allow keywords.
3214 (package-keyword-button-action): Use it instead of
3215 `finder-list-matches'.
3216 (package-menu-filter-interactive): Interactive filtering (by
3217 keyword) function.
3218 (package-menu--generate): Support keywords and change keymappings
3219 and headers when they are given.
3220 (package--has-keyword-p): Helper function.
3221 (package-menu--refresh): Use it.
3222 (package--mapc): Helper function.
3223 (package-all-keywords): Use it.
3224 (package-menu-mode-map): Set up menu items and keybindings to
3225 provide a filtering UI.
3226
3227 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
3228
3229 * net/gnutls.el (gnutls-verify-error): New defcustom to control
3230 the behavior when a certificate fails validation. Defaults to
3231 old behavior: never abort, just warn.
3232 (gnutls-negotiate): Use it.
3233
3234 2013-12-14 Martin Rudalics <rudalics@gmx.at>
3235
3236 * window.el (display-buffer-below-selected): Never split window
3237 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
3238
3239 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
3240
3241 * emacs-lisp/package.el (package--prepare-dependencies): New function.
3242 (package-buffer-info): Use it (bug#15108).
3243
3244 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
3245
3246 * icomplete.el (icomplete-completions): Make sure the prefix is already
3247 displayed elsewhere before hiding it (bug#16219).
3248
3249 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
3250
3251 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
3252 open-paren tokens when preceded by a open-paren, too.
3253 (ruby-smie-rules): Handle virtual indentation after open-paren
3254 tokens specially. If there is code between it and eol, return the
3255 column where is starts (Bug#16118).
3256
3257 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
3258
3259 * progmodes/cfengine.el: Fix `add-hook' doc.
3260 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
3261 (cfengine3--current-word): Fix parameters.
3262 (cfengine3-make-syntax-cache): Simplify further.
3263 (cfengine3-completion-function, cfengine3--current-function):
3264 Use `assq' for symbols.
3265 (cfengine3--current-function): Fix `cfengine3--current-word' call.
3266
3267 2013-12-13 Glenn Morris <rgm@gnu.org>
3268
3269 * loadup.el (load-path): Warn if site-load or site-init changes it.
3270 No more need to reset it when bootstrapping.
3271
3272 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
3273
3274 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
3275 locations for cf-promises.
3276 (cfengine-mode-syntax-functions-regex): New caching variable.
3277 (cfengine3-fallback-syntax): Fallback syntax for cases where
3278 cf-promises doesn't run.
3279 (cfengine3--current-word): Reimplement using
3280 `cfengine-mode-syntax-functions-regex'.
3281 (cfengine3-completion-function, cfengine3--current-function):
3282 Use `cfengine3-make-syntax-cache' directly.
3283 (cfengine3-clear-syntax-cache): New function.
3284 (cfengine3-make-syntax-cache): Simplify and create
3285 `cfengine-mode-syntax-functions-regex' on demand.
3286 (cfengine3-format-function-docstring): Don't call
3287 `cfengine3-make-syntax-cache' explicitly.
3288
3289 2013-12-13 Martin Rudalics <rudalics@gmx.at>
3290
3291 Fix windmove-find-other-window broken after pixelwise resizing
3292 (Bug#16017).
3293 * windmove.el (windmove-other-window-loc): Revert change from
3294 2013-12-04.
3295 (windmove-find-other-window): Call window-in-direction.
3296 * window.el (window-in-direction): New arguments SIGN, WRAP and
3297 MINI to emulate original windmove-find-other-window behavior.
3298
3299 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
3300
3301 * simple.el (blink-matching--overlay): New variable.
3302 (blink-matching-open): Instead of moving point, highlight the
3303 matching paren with an overlay
3304 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
3305
3306 * faces.el (paren-showing-faces, show-paren-match)
3307 (show-paren-mismatch): Move from paren.el.
3308
3309 2013-12-13 Leo Liu <sdl.web@gmail.com>
3310
3311 * indent.el (indent-region): Disable progress reporter in
3312 minibuffer. (Bug#16108)
3313
3314 * bindings.el (visual-order-cursor-movement): Fix version.
3315
3316 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3317
3318 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
3319 Also match after beginning of line.
3320 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
3321 files. Thanks to Russell Sim. (Bug#15378)
3322
3323 2013-12-13 Juri Linkov <juri@jurta.org>
3324
3325 * simple.el <Keypad support>: Remove key bindings duplicated
3326 with bindings.el. (Bug#14397)
3327
3328 2013-12-13 Juri Linkov <juri@jurta.org>
3329
3330 * comint.el (comint-mode-map): Replace `delete-char' with
3331 `delete-forward-char'. (Bug#16109)
3332
3333 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
3334
3335 * progmodes/python.el (python-indent-calculate-indentation):
3336 Fix de-denters cornercase. (Bug#15731)
3337
3338 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3339
3340 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
3341 (advice--make): Pay attention to `depth'.
3342 (advice--make-1): Don't autoload commands eagerly.
3343 * emacs-lisp/elp.el (elp-instrument-function):
3344 * emacs-lisp/trace.el (trace-function-internal):
3345 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
3346
3347 * iswitchb.el (iswitchb-mode): Don't belittle ido.
3348
3349 2013-12-12 Eli Zaretskii <eliz@gnu.org>
3350
3351 * term/w32-win.el (w32-handle-dropped-file):
3352 * startup.el (normal-top-level):
3353 * net/browse-url.el (browse-url-file-url):
3354 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
3355 decode file names using 'utf-8' rather than
3356 file-name-coding-system.
3357
3358 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
3359
3360 * progmodes/python.el (python-indent-context)
3361 (python-indent-calculate-indentation): Fix auto-identation
3362 behavior for comment blocks. (Bug#15916)
3363
3364 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
3365
3366 * progmodes/python.el (python-indent-calculate-indentation):
3367 When determining indentation, don't treat "return", "pass", etc., as
3368 operators when they are just string constituents. (Bug#15812)
3369
3370 2013-12-12 Juri Linkov <juri@jurta.org>
3371
3372 * uniquify.el (uniquify-buffer-name-style): Change default to
3373 `post-forward-angle-brackets'.
3374
3375 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
3376 `uniquify'. Change default to `post-forward-angle-brackets'.
3377
3378 2013-12-11 Glenn Morris <rgm@gnu.org>
3379
3380 * emacs-lisp/package.el (finder-list-matches):
3381 Autoload rather than falsely declaring.
3382
3383 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
3384
3385 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
3386 (eww-mode-map): Use them.
3387
3388 2013-12-11 Martin Rudalics <rudalics@gmx.at>
3389
3390 * window.el (display-buffer-in-side-window): Fix doc-string
3391 (Bug#16115).
3392
3393 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
3394
3395 * vc/vc-git.el: Silence byte-compiler warnings.
3396 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
3397 (log-edit-set-header): Declare.
3398
3399 2013-12-11 Eli Zaretskii <eliz@gnu.org>
3400
3401 * Makefile.in (custom-deps, finder-data): Run output file names
3402 through unmsys--file-name. (Bug#16099)
3403
3404 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3405
3406 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
3407 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
3408
3409 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
3410 instead of deleting the selection "by hand" (bug#16098).
3411 Rely on insert-for-yank to yank rectangles.
3412 (cua-highlight-region-shift-only): Mark obsolete.
3413 (cua-mode): Don't enable/disable transient-mark-mode,
3414 shift-select-mode (cua-mode works both with and without them), and
3415 pc-selection-mode (obsolete).
3416 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
3417 (cua--deactivate-rectangle): Deactivate it.
3418
3419 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
3420 (delete-selection-helper): Make sure yank starts at the top of the
3421 deleted region.
3422 (minibuffer-keyboard-quit): Use region-active-p.
3423
3424 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
3425
3426 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
3427 to `delete' (bug#16109).
3428
3429 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3430
3431 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
3432 info manual and show keybindings and set `:group' keyword.
3433
3434 2013-12-11 Juri Linkov <juri@jurta.org>
3435
3436 * delsel.el (delete-active-region): Let-bind `this-command'
3437 to prevent `kill-region' from changing its original value.
3438 (delete-selection-helper): Handle `overwrite-mode' for the type
3439 `kill' exactly the same way as for the type `t'.
3440 (insert-char, quoted-insert, reindent-then-newline-and-indent):
3441 Support more commands. (Bug#13312)
3442
3443 2013-12-11 Juri Linkov <juri@jurta.org>
3444
3445 * bindings.el: Map kp keys to non-kp keys systematically
3446 with basic modifiers control, meta and shift. (Bug#14397)
3447
3448 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3449
3450 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
3451 "Close browser" menu items. Fix wrong function of "List
3452 bookmarks".
3453
3454 2013-12-11 Juri Linkov <juri@jurta.org>
3455
3456 * misearch.el (multi-isearch-buffers): Set the value of
3457 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
3458 arg of isearch-forward to t.
3459 (multi-isearch-buffers-regexp): Set the value of
3460 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
3461 arg of isearch-forward-regexp to t.
3462 (multi-isearch-files): Set the value of
3463 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
3464 arg of isearch-forward to t.
3465 (multi-isearch-files-regexp): Set the value of
3466 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
3467 arg of isearch-forward-regexp to t. (Bug#16035)
3468
3469 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
3470 arg of isearch-forward to t.
3471 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
3472 arg of isearch-forward-regexp to t.
3473 (dired-isearch-filter-filenames): Remove unnecessary check for
3474 `dired-isearch-filenames'.
3475
3476 * comint.el (comint-history-isearch-backward):
3477 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
3478 (comint-history-isearch-backward-regexp):
3479 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
3480
3481 2013-12-10 Eli Zaretskii <eliz@gnu.org>
3482
3483 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
3484 unmsys--file-name. (Bug#16099)
3485
3486 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
3487
3488 * emacs-lisp/package.el (package-keyword-button-action):
3489 Remove finder.el require dependency.
3490
3491 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
3492
3493 * emacs-lisp/package.el: Require finder.el.
3494 (describe-package-1): Add keyword buttons.
3495 (package-make-button): New convenience function.
3496 (package-keyword-button-action): Keyword button action using
3497 `finder-list-matches'.
3498
3499 2013-12-09 Eli Zaretskii <eliz@gnu.org>
3500
3501 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
3502 last commit.
3503
3504 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
3505
3506 * autorevert.el (auto-revert-notify-add-watch): Do not handle
3507 symlinked files.
3508
3509 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
3510
3511 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
3512 after the end of a percent literal.
3513
3514 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
3515
3516 * progmodes/ruby-mode.el (ruby-forward-string): Document.
3517 Handle caret-delimited strings (Bug#16079).
3518
3519 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
3520
3521 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
3522 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
3523 `ruby-parse-partial' (Bug#16078).
3524
3525 2013-12-09 Leo Liu <sdl.web@gmail.com>
3526
3527 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
3528
3529 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
3530
3531 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
3532 (js-switch-indent-offset): New option.
3533 (js--proper-indentation): Use it. And handle the case when
3534 "default" is actually a key in an object literal.
3535 (js--same-line): New function.
3536 (js--multi-line-declaration-indentation): Use it.
3537 (js--indent-in-array-comp, js--array-comp-indentation):
3538 New functions.
3539 (js--proper-indentation): Use them, to handle array comprehension
3540 continuations.
3541
3542 2013-12-08 Leo Liu <sdl.web@gmail.com>
3543
3544 * progmodes/flymake.el (flymake-highlight-line): Re-write.
3545 (flymake-make-overlay): Remove arg MOUSE-FACE.
3546 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
3547
3548 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3549
3550 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
3551 New function.
3552 (redisplay-highlight-region-function): Use it.
3553
3554 * emulation/cua-base.el (cua--explicit-region-start)
3555 (cua--last-region-shifted): Remove.
3556 (cua--deactivate): Use deactivate-mark.
3557 (cua--pre-command-handler-1): Don't handle shift-selection.
3558 (cua--post-command-handler-1): Don't change transient-mark-mode.
3559 (cua--select-keymaps): Use region-active-p rather than
3560 cua--explicit-region-start or cua--last-region-shifted.
3561 (cua-mode): Enable shift-select-mode.
3562
3563 2013-12-08 Leo Liu <sdl.web@gmail.com>
3564
3565 * progmodes/flymake.el (flymake-popup-current-error-menu):
3566 Rename from flymake-display-err-menu-for-current-line. Reimplement.
3567 (flymake-posn-at-point-as-event, flymake-popup-menu)
3568 (flymake-make-emacs-menu): Remove. (Bug#16077)
3569
3570 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3571
3572 * rect.el (rectangle-mark-mode): Activate mark even if
3573 transient-mark-mode is off (bug#16066).
3574 (rectangle--highlight-for-redisplay): Fix boundary condition when point
3575 is > mark and at bolp.
3576
3577 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
3578 (region-extract-function): Use it.
3579 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
3580 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
3581 Delete functions.
3582 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
3583 kill-ring-save, kill-region, delete-char, delete-forward-char.
3584 Ignore self-insert-iso.
3585
3586 * emulation/cua-gmrk.el (cua--init-global-mark):
3587 Ignore `self-insert-iso'.
3588
3589 * emulation/cua-base.el (cua--prefix-copy-handler)
3590 (cua--prefix-cut-handler): Rely on region-extract-function rather than
3591 checking cua--rectangle.
3592 (cua-delete-region): Use region-extract-function.
3593 (cua-replace-region): Delete function.
3594 (cua-copy-region, cua-cut-region): Obey region-extract-function.
3595 (cua--pre-command-handler-1): Don't do the delete-selection thing.
3596 (cua--self-insert-char-p): Ignore `self-insert-iso'.
3597 (cua--init-keymaps): Don't remap delete-selection commands.
3598 (cua-mode): Use delete-selection-mode instead of rolling our own
3599 (bug#16085).
3600
3601 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
3602 Obey region-extract-function.
3603
3604 Make registers and delete-selection-mode work on rectangles.
3605 * register.el (describe-register-1): Don't modify the register's value.
3606 (copy-to-register): Obey region-extract-function.
3607 * delsel.el (delete-active-region): Obey region-extract-function.
3608
3609 2013-12-08 Leo Liu <sdl.web@gmail.com>
3610
3611 * progmodes/flymake.el (flymake, flymake-error-bitmap)
3612 (flymake-warning-bitmap, flymake-fringe-indicator-position)
3613 (flymake-compilation-prevents-syntax-check)
3614 (flymake-start-syntax-check-on-newline)
3615 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
3616 (flymake-start-syntax-check-on-find-file, flymake-log-level)
3617 (flymake-xml-program, flymake-master-file-dirs)
3618 (flymake-master-file-count-limit)
3619 (flymake-allowed-file-name-masks): Relocate.
3620 (flymake-makehash, flymake-float-time)
3621 (flymake-replace-regexp-in-string, flymake-split-string)
3622 (flymake-get-temp-dir): Remove.
3623 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
3624 (flymake-current-row, flymake-selected-frame)
3625 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
3626 related functions. (Bug#16077)
3627
3628 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
3629
3630 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
3631
3632 2013-12-07 Tassilo Horn <tsdh@gnu.org>
3633
3634 * help-fns.el (describe-function-1): Use new advice-* functions
3635 rather than old ad-* functions. Fix function type description and
3636 source links for advised functions and subrs.
3637
3638 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
3639
3640 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
3641
3642 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
3643
3644 * progmodes/compile.el (compilation-start):
3645 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
3646
3647 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3648 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
3649
3650 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
3651
3652 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3653 Touch up the last change.
3654
3655 2013-12-06 Leo Liu <sdl.web@gmail.com>
3656
3657 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
3658 (inferior-octave-startup): Always use "octave> " for prompt.
3659 (octave-goto-function-definition)
3660 (octave-sync-function-file-names)
3661 (octave-find-definition-default-filename): Remove redundant backquotes.
3662
3663 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
3664
3665 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
3666 syntax for `?'.
3667 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
3668 where appropriate already.
3669 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
3670 end of method names (Bug#15874).
3671
3672 2013-12-06 Juri Linkov <juri@jurta.org>
3673
3674 * isearch.el (isearch--saved-overriding-local-map):
3675 New internal variable.
3676 (isearch-mode): Set it to the initial value of
3677 `overriding-terminal-local-map'.
3678 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
3679 with `isearch--saved-overriding-local-map'. (Bug#16035)
3680
3681 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
3682
3683 * progmodes/octave.el (inferior-octave-completion-table):
3684 Turn back into function, use `completion-table-with-cache'
3685 (Bug#11906). Update all references.
3686
3687 * minibuffer.el (completion-table-with-cache): New function.
3688
3689 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
3690
3691 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
3692
3693 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
3694
3695 * net/eww.el (eww-current-source): New variable to store page
3696 source.
3697 (eww-display-html, eww-mode, eww-save-history)
3698 (eww-restore-history): Use it.
3699 (eww-view-source): New command to view page source.
3700 Opportunistically uses `html-mode' to highlight the buffer.
3701 (eww-mode-map): Install it.
3702
3703 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
3704
3705 * net/dbus.el (dbus-unregister-service)
3706 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
3707 Fix docstring.
3708 (dbus-unregister-service): Skip :serial entries in
3709 `dbus-registered-objects-table'.
3710 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
3711
3712 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
3713
3714 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
3715 around keywords with extra `split-string' argument.
3716
3717 2013-12-04 Martin Rudalics <rudalics@gmx.at>
3718
3719 * windmove.el (windmove-other-window-loc): Handle navigation
3720 between windows (excluding the minibuffer window - Bug#16017).
3721
3722 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
3723
3724 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
3725 in D-Bus type syntax.
3726 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
3727 preserve unibyte strings. (Bug#16048)
3728
3729 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
3730
3731 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
3732 Call force-mode-line-update is the proper buffer (bug#16042).
3733
3734 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
3735
3736 * vc/log-edit.el (log-edit-add-new-comment): Rename to
3737 `log-edit-remember-comment', make argument optional. Adjust all
3738 callers.
3739 (log-edit-mode): Add `log-edit-remember-comment' to
3740 `kill-buffer-hook' locally.
3741 (log-edit-kill-buffer): Don't remember comment explicitly since
3742 the buffer is killed anyway.
3743
3744 2013-12-04 Juri Linkov <juri@jurta.org>
3745
3746 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
3747 add-hook and remove-hook for multi-buffer search. (Bug#16035)
3748
3749 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
3750
3751 * notifications.el (notifications-close-notification): Call the
3752 D-Bus method with ID being a `:uint32'. (Bug#16030)
3753
3754 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
3755
3756 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
3757
3758 2013-12-03 Juri Linkov <juri@jurta.org>
3759
3760 * progmodes/compile.el (compilation-start): Rename window alist
3761 entry `no-display-ok' to `allow-no-window'.
3762
3763 * simple.el (shell-command): Add window alist entry
3764 `allow-no-window' to `display-buffer'.
3765 (async-shell-command): Doc fix.
3766
3767 * window.el (display-buffer-no-window): New action function.
3768 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
3769
3770 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
3771
3772 * vc/log-edit.el (log-edit-set-header): Extract from
3773 `log-edit-toggle-header'.
3774 (log-edit-extract-headers): Separate the summary, when extracted
3775 from header, from the rest of the message with an empty line.
3776
3777 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
3778 line, if present, to the Summary header.
3779
3780 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
3781
3782 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
3783 in current-buffer (bug#16029).
3784
3785 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
3786
3787 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
3788 (debugger-mode-map): Bind it.
3789 (debugger--backtrace-base): New function.
3790 (debugger-eval-expression): Use it.
3791 (debugger-frame-number): Skip local vars when present.
3792 (debugger--locals-visible-p, debugger--insert-locals)
3793 (debugger--show-locals, debugger--hide-locals): New functions.
3794
3795 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
3796
3797 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
3798 "LC_ALL".
3799 (tramp-get-remote-locale): New defun.
3800 (tramp-open-connection-setup-interactive-shell): Use it.
3801
3802 2013-12-02 Leo Liu <sdl.web@gmail.com>
3803
3804 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
3805
3806 * progmodes/sh-script.el (sh-shell-process):
3807 * progmodes/octave.el (inferior-octave-process-live-p):
3808 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
3809 (gdb-inferior-io-sentinel):
3810 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
3811
3812 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
3813
3814 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
3815 `save-selected-window' to `log-edit-hide-buf'. This makes
3816 `log-edit-show-files' idempotent.
3817 (log-edit-show-files): Mark the new window as dedicated.
3818
3819 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
3820
3821 * vc/log-edit.el (log-edit-mode-map): Add binding for
3822 `log-edit-kill-biffer'.
3823 (log-edit-hide-buf): Add a FIXME comment.
3824 (log-edit-add-new-comment): New function, extracted from
3825 `log-edit-done'.
3826 (log-edit-done, log-edit-add-to-changelog): Use it.
3827 (log-edit-kill-buffer): New command.
3828
3829 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3830
3831 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
3832 instead of killing the buffer.
3833
3834 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
3835
3836 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
3837
3838 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3839
3840 * net/eww.el (eww-form-checkbox-selected-symbol)
3841 (eww-form-checkbox-symbol): New customizable variable.
3842 (eww-form-checkbox, eww-toggle-checkbox):
3843 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
3844
3845 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
3846 (shr--get-media-pref, shr--extract-best-source): New function.
3847 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
3848 no :src tag was specified.
3849
3850 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
3851 (eww-render): Handle `eww-use-external-browser-for-content-type'.
3852 Use \\` to match beginning of string instead of ^.
3853 (eww-browse-with-external-browser): Provide optional URL parameter.
3854 (eww-render): Set `eww-current-title' back to "".
3855
3856 * net/shr.el (shr-tag-video): Display content for video if no
3857 poster is available.
3858 (shr-tag-audio): Add support for <audio> tag.
3859
3860 * net/eww.el (eww-text-input-types): New const.
3861 (eww-process-text-input): Treat input types in
3862 `eww-text-input-types' as text.
3863
3864 * net/shr.el (shr-tag-table): Fix comment typo.
3865
3866 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3867
3868 * net/eww.el (eww-follow-link): New command to avoid reloading
3869 pages when we follow #target links (bug#15243).
3870 (eww-quit): Special mode buffers shouldn't query before exiting.
3871
3872 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
3873
3874 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
3875 forms.
3876
3877 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3878
3879 * net/eww.el (eww-restore-history): Update the window title after
3880 moving in the history.
3881 (eww-current-dom): New variable used to save the current DOM.
3882
3883 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
3884
3885 * vc/log-edit.el (log-edit-mode-map): Add binding for
3886 `log-edit-beginning-of-line'.
3887 (log-edit-setup-add-author): New user option.
3888 (log-edit-beginning-of-line): New command.
3889 (log-edit): Move major mode call above the contents setup so that
3890 the local variable values are already applied.
3891 (log-edit): Only insert "Author: " when
3892 `log-edit-setup-add-author' is non-nil.
3893 (log-edit): When SETUP is non-nil, position point after ": "
3894 instead of point-min.
3895
3896 2013-12-01 Glenn Morris <rgm@gnu.org>
3897
3898 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
3899
3900 2013-11-30 Eli Zaretskii <eliz@gnu.org>
3901
3902 * startup.el (fancy-splash-frame): On MS-Windows, trigger
3903 redisplay to make sure the initial frame gets a chance to become
3904 visible. (Bug#16014)
3905
3906 2013-11-30 Martin Rudalics <rudalics@gmx.at>
3907
3908 Support resizing frames and windows pixelwise.
3909 * cus-start.el (frame-resize-pixelwise)
3910 (window-resize-pixelwise): New entries.
3911 * emacs-lisp/debug.el (debug): Use window-total-height instead
3912 of window-total-size.
3913 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
3914 * help.el (describe-bindings-internal): Use help-buffer as
3915 argument for with-help-window.
3916 (temp-buffer-max-width): New option.
3917 (resize-temp-buffer-window, help-window-setup)
3918 (with-help-window): Rewrite.
3919 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
3920 dragging dividers.
3921 * window.el (frame-char-size, window-min-pixel-height)
3922 (window-safe-min-pixel-height, window-safe-min-pixel-width)
3923 (window-min-pixel-width, window-safe-min-pixel-size)
3924 (window-combination-p, window-safe-min-size)
3925 (window-resizable-p, window--size-to-pixel)
3926 (window--pixel-to-size, window--resize-apply-p): New functions.
3927 (window-safe-min-height): Fix doc-string.
3928 (window-size, window-min-size, window--min-size-1)
3929 (window-sizable, window-sizable-p, window--min-delta-1)
3930 (window-min-delta, window--max-delta-1, window-max-delta)
3931 (window--resizable, window--resizable-p, window-resizable)
3932 (window-full-height-p, window-full-width-p, window-at-side-p)
3933 (window--in-direction-2, window-in-direction)
3934 (window--resize-reset-1, window--resize-mini-window)
3935 (window-resize, window-resize-no-error)
3936 (window--resize-child-windows-normal)
3937 (window--resize-child-windows, window--resize-siblings)
3938 (window--resize-this-window, window--resize-root-window)
3939 (window--resize-root-window-vertically)
3940 (adjust-window-trailing-edge, enlarge-window, shrink-window)
3941 (maximize-window, minimize-window, delete-window)
3942 (quit-restore-window, window-split-min-size, split-window)
3943 (balance-windows-2, balance-windows)
3944 (balance-windows-area-adjust, balance-windows-area)
3945 (window--state-get-1, window-state-get, window--state-put-1)
3946 (window--state-put-2, window-state-put)
3947 (display-buffer-record-window, window--display-buffer):
3948 Make functions handle pixelwise sizing of windows.
3949 (display-buffer--action-function-custom-type)
3950 (display-buffer-fallback-action):
3951 Add display-buffer-in-previous-window.
3952 (display-buffer-use-some-window): Resize window to height it had
3953 before.
3954 (fit-window-to-buffer-horizontally): New option.
3955 (fit-frame-to-buffer): Describe new values.
3956 (fit-frame-to-buffer-bottom-margin): Replace with
3957 fit-frame-to-buffer-margins.
3958 (window--sanitize-margin): New function.
3959 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
3960 using window-text-pixel-size.
3961
3962 2013-11-30 Glenn Morris <rgm@gnu.org>
3963
3964 * emacs-lisp/bytecomp.el (byte-compile-form):
3965 Make the `interactive-only' warning like the `obsolete' one.
3966 * comint.el (comint-run):
3967 * files.el (insert-file-literally, insert-file):
3968 * replace.el (replace-string, replace-regexp):
3969 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
3970 (goto-line, insert-buffer, next-line, previous-line):
3971 Tweak `interactive-only' spec.
3972
3973 Stop keeping (most) generated cedet grammar files in the repository.
3974 * Makefile.in (semantic): New.
3975 (compile-main): Depend on semantic.
3976
3977 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
3978
3979 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
3980 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
3981
3982 * uniquify.el (uniquify-buffer-name-style): Change default.
3983
3984 * loadup.el: Preload "uniquify".
3985
3986 * time.el (display-time-update): Update all mode lines (bug#15999).
3987
3988 * electric.el (electric-indent-mode): Enable by default.
3989 * loadup.el: Preload "electric".
3990
3991 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
3992
3993 * emacs-lisp/helpers.el (string-empty-p): New function.
3994 (string-blank-p): New function.
3995
3996 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
3997
3998 * imenu.el (imenu--index-alist): Add missing dot to the docstring
3999 (Bug#14029).
4000
4001 2013-11-29 Andreas Politz <politza@fh-trier.de>
4002 * imenu.el (imenu--subalist-p): Don't error on non-conses and
4003 allow non-lambda lists as functions.
4004 (imenu--in-alist): Don't recurse into non-subalists.
4005 (imenu): Don't pass function itself as an argument (Bug#14029).
4006
4007 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
4008
4009 * progmodes/python.el (python-mode-map): Remove binding for ":".
4010 (python-indent-electric-colon): Remove command.
4011 (python-indent-post-self-insert-function): Integrate the previous code
4012 of python-indent-electric-colon. Make it conditional on
4013 electric-indent-mode.
4014 (python-mode): Add ?: to electric-indent-chars.
4015 Move python-indent-post-self-insert-function to the end of
4016 post-self-insert-hook.
4017
4018 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4019
4020 * doc-view.el (doc-view-goto-page): Update mode-line.
4021
4022 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
4023
4024 2013-11-27 Glenn Morris <rgm@gnu.org>
4025
4026 * international/charprop.el, international/uni-bidi.el:
4027 * international/uni-category.el, international/uni-combining.el:
4028 * international/uni-comment.el, international/uni-decimal.el:
4029 * international/uni-decomposition.el, international/uni-digit.el:
4030 * international/uni-lowercase.el, international/uni-mirrored.el:
4031 * international/uni-name.el, international/uni-numeric.el:
4032 * international/uni-old-name.el, international/uni-titlecase.el:
4033 * international/uni-uppercase.el:
4034 Remove generated files from VCS repository.
4035
4036 2013-11-27 Eli Zaretskii <eliz@gnu.org>
4037
4038 * filenotify.el (file-notify-add-watch): Don't special-case
4039 w32notify when computing the directory to watch.
4040
4041 2013-11-27 Glenn Morris <rgm@gnu.org>
4042
4043 Make bootstrap without generated uni-*.el files possible again.
4044 * loadup.el: Update command-line-args checking for unidata-gen.
4045 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
4046 * composite.el, international/characters.el:
4047 Handle unicode tables being undefined.
4048
4049 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
4050 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
4051 (compile-main): Depend on leim rule.
4052 (leim): New rule.
4053 * loadup.el: Move leim-list.el to leim/ subdirectory.
4054 * startup.el (normal-top-level): No more leim directory.
4055 * international/ja-dic-cnv.el (skkdic-convert):
4056 Disable version-control and autoloads in output files.
4057 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
4058 Disable version-control and autoloads in output files.
4059 * leim/quail: Move here from ../leim.
4060 * leim/quail/hangul.el (hangul-input-method-activate):
4061 Add autoload cookie.
4062 (generated-autoload-load-name): Set file-local value.
4063 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
4064 (generated-autoload-load-name): Set file-local value.
4065
4066 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
4067
4068 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
4069 (eww-add-bookmark): Ask confirmation when add to bookmarks.
4070 (eww-quit): Ask confirmation before quitting eww.
4071
4072 2013-11-26 Eli Zaretskii <eliz@gnu.org>
4073
4074 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
4075 reading output from Diff on MS-Windows and MS-DOS.
4076
4077 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
4078
4079 * emacs-lisp/helpers.el (string-reverse): New function.
4080
4081 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
4082
4083 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
4084 names on MS Windows, like "/[::1]:".
4085
4086 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
4087 SWITCHES.
4088
4089 2013-11-26 Glenn Morris <rgm@gnu.org>
4090
4091 * progmodes/python.el (python-indent-guess-indent-offset):
4092 Avoid corner-case error. (Bug#15975)
4093
4094 Preload leim-list.el. (Bug#4789)
4095 * loadup.el: Load leim-list.el when found.
4096 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
4097
4098 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
4099
4100 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
4101
4102 * emacs-lisp/helpers.el (string-join): New function.
4103
4104 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
4105
4106 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4107 Mark as obsolete and replace it with a symbol property.
4108 (byte-compile-form): Use new 'interactive-only property.
4109 * comint.el, files.el, replace.el, simple.el:
4110 Apply new 'interactive-only properly.
4111
4112 2013-11-25 Martin Rudalics <rudalics@gmx.at>
4113
4114 * window.el (display-buffer-at-bottom): Make sure that
4115 split-window-sensibly creates the new window on bottom
4116 (Bug#15961).
4117
4118 2013-11-23 David Kastrup <dak@gnu.org>
4119
4120 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
4121 on the conflict markers when available.
4122 (smerge--get-marker): New function.
4123 (smerge-end-re, smerge-base-re): Add subgroup.
4124
4125 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4126
4127 * frame.el (handle-focus-in, handle-focus-out): Add missing
4128 interactive spec.
4129
4130 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
4131
4132 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
4133 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
4134
4135 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
4136
4137 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
4138 (gomoku--last-pos): New var.
4139 (gomoku--intangible-chars): New const.
4140 (gomoku--intangible): New function.
4141 (gomoku-mode): Use it. Derive from special-mode.
4142 (gomoku-move-up): Adjust line count.
4143 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
4144 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
4145 Simplify accordingly.
4146
4147 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
4148 Remove blink-cursor code.
4149 (blink-cursor-timer-function, blink-cursor-suspend):
4150 Don't special-case GUIs.
4151 (blink-cursor-mode): Use focus-in/out-hook.
4152
4153 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
4154
4155 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
4156 work when annotation is invisible (Bug#13886).
4157
4158 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
4159
4160 * json.el (json-alist-p): Only return non-nil if the alist has
4161 simple keys (Bug#13518).
4162
4163 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
4164
4165 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
4166 when control-statement is the first statement in a buffer (Bug#15956).
4167
4168 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
4169
4170 * imenu.el (imenu-generic-skip-comments-and-strings):
4171 New option (Bug#15560).
4172 (imenu--generic-function): Use it.
4173
4174 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
4175
4176 * minibuffer.el (completion--in-region-1): Scroll the correct window.
4177 (Bug#13898)
4178
4179 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
4180
4181 * emacs-lisp/helpers.el: Add some string helpers.
4182 (string-trim-left): Removes leading whitespace.
4183 (string-trim-right): Removes trailing whitespace.
4184 (string-trim): Removes leading and trailing whitespace.
4185
4186 * subr.el (string-suffix-p): New function.
4187
4188 2013-11-23 Glenn Morris <rgm@gnu.org>
4189
4190 * progmodes/python.el (python-shell-send-file):
4191 Add option to delete file when done. (Bug#15647)
4192 (python-shell-send-string, python-shell-send-region): Use it.
4193
4194 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
4195
4196 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
4197 to set buffer-read-only to t, never to nil. (Bug#15938)
4198
4199 * textmodes/tex-mode.el (latex-noindent-environments):
4200 Add safe-local-variable property. (Bug#15936)
4201
4202 2013-11-23 Glenn Morris <rgm@gnu.org>
4203
4204 * textmodes/enriched.el (enriched-mode): Doc fix.
4205 * emacs-lisp/authors.el (authors-renamed-files-alist):
4206 Add enriched.doc -> enriched.txt.
4207
4208 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
4209
4210 2013-11-22 Leo Liu <sdl.web@gmail.com>
4211
4212 * progmodes/octave.el (inferior-octave-startup): Spit out error
4213 message.
4214
4215 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
4216
4217 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
4218 Improve docstring.
4219 Add :version.
4220 (ruby-encoding-magic-comment-style): Add :version.
4221
4222 2013-11-22 Leo Liu <sdl.web@gmail.com>
4223
4224 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
4225 (Bug#15076)
4226 (octave-help-mode): Adapt to change to help-mode-finish to use
4227 derived-mode-p on 2013-09-17.
4228 (inferior-octave-prompt): Also match octave-gui.
4229 (octave-kill-process): Don't ask twice. (Bug#10564)
4230
4231 2013-11-22 Leo Liu <sdl.web@gmail.com>
4232
4233 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
4234 (inferior-octave-startup, inferior-octave-check-process)
4235 (inferior-octave-track-window-width-change)
4236 (octave-completion-at-point, octave-eldoc-function): Use it.
4237 (octave-kill-process): Provide confirmation. (Bug#10564)
4238
4239 2013-11-21 Leo Liu <sdl.web@gmail.com>
4240
4241 * progmodes/octave.el (octave-mode, inferior-octave-mode):
4242 Fix obsolete variable comment-use-global-state.
4243
4244 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4245
4246 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
4247 Add `octave-source-file'.
4248 (octave-source-file): New function. (Bug#15935)
4249
4250 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
4251
4252 * net/eww.el (eww-local-regex): New variable.
4253 (eww): Use it to detect localhost and similar.
4254
4255 2013-11-21 Leo Liu <sdl.web@gmail.com>
4256
4257 Add completion for command `ag'.
4258 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
4259 (pcomplete/ag): New function.
4260 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
4261
4262 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4263
4264 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
4265 (bug#14646).
4266 (make-obsolete): Remove interactive spec.
4267
4268 2013-11-21 Glenn Morris <rgm@gnu.org>
4269
4270 * startup.el (command-line-1): Use path-separator with -L.
4271
4272 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
4273
4274 * emacs-lisp/package.el (describe-package-1): Add package archive
4275 to shown fields.
4276
4277 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
4278
4279 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
4280 Change default to "# encoding: %s" to differentiate it from the
4281 default Ruby encoding comment template.
4282
4283 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
4284
4285 * ses.el (ses-mode): Doc fix. (Bug#14748)
4286
4287 2013-11-20 Leo Liu <sdl.web@gmail.com>
4288
4289 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
4290
4291 2013-11-19 Dan Nicolaescu <dann@gnu.org>
4292
4293 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
4294 when rebase or bisect are in progress.
4295
4296 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
4297
4298 * filenotify.el (file-notify-add-watch): Doc fix.
4299
4300 2013-11-19 Leo Liu <sdl.web@gmail.com>
4301
4302 * obsolete/rcompile.el: Mark obsolete.
4303
4304 * progmodes/compile.el (compilation-start)
4305 (compilation-goto-locus, compilation-find-file):
4306 Pass no-display-ok and handle nil value from display-buffer.
4307 (Bug#13594)
4308
4309 * window.el (display-buffer-alist, display-buffer): Document the
4310 new parameter no-display-ok. Return either a window or nil
4311 but never a non-window value.
4312
4313 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4314
4315 * electric.el (electric-indent-mode-map): Remove.
4316 (electric-indent-mode): Change the global-map instead (bug#15915).
4317
4318 * textmodes/text-mode.el (paragraph-indent-minor-mode):
4319 Use add-function.
4320
4321 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
4322
4323 * emacs-lisp/nadvice.el (remove-function): Align with
4324 add-function's behavior.
4325
4326 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
4327 (gdb--string-regexp): New constant.
4328 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
4329 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
4330 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
4331 submatch 1.
4332 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
4333 Adjust use accordingly.
4334 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
4335
4336 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
4337
4338 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
4339 interpolation curlies (Bug#15914).
4340
4341 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
4342
4343 * calc/calc.el (calc-context-sensitive-enter): New variable.
4344 (calc-enter): Use `calc-context-sensitive-enter'.
4345
4346 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
4347
4348 * progmodes/cfengine.el: Version bump.
4349 (cfengine-cf-promises): New defcustom to locate cf-promises.
4350 (cfengine3-vartypes): Add new "data" type.
4351 (cfengine3--current-word): New function to get current name-like
4352 word or its bounds.
4353 (cfengine3--current-function): New function to look up a CFEngine
4354 function's definition.
4355 (cfengine3-format-function-docstring): New function.
4356 (cfengine3-make-syntax-cache): New function.
4357 (cfengine3-documentation-function): New function: ElDoc glue.
4358 (cfengine3-completion-function): New function: completion glue.
4359 (cfengine3-mode): Set `compile-command',
4360 `eldoc-documentation-function', and add to
4361 `completion-at-point-functions'.
4362
4363 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
4364
4365 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
4366 `tramp-current-connection'.
4367
4368 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
4369
4370 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
4371 nil/self/true/false with "end of symbol".
4372
4373 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
4374
4375 * subr.el (version-regexp-alist): Fix a typo.
4376
4377 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
4378
4379 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
4380 "en_US.utf8" and "LC_CTYPE" to "".
4381 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
4382 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
4383
4384 2013-11-15 Leo Liu <sdl.web@gmail.com>
4385
4386 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
4387
4388 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4389
4390 * progmodes/gud.el (ctl-x-map):
4391 Remove C-x SPC binding. (Bug#12342)
4392 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
4393
4394 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
4395
4396 * subr.el (version-regexp-alist):
4397 Recognize hg, svn and darcs versions as snapshot versions.
4398
4399 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
4400 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
4401 (ruby--encoding-comment-required-p): Extract from
4402 `ruby-mode-set-encoding'.
4403 (ruby-mode-set-encoding): Add the ability to always insert an
4404 utf-8 encoding comment. Fix and simplify coding comment update
4405 logic.
4406
4407 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
4408
4409 * net/tramp-gvfs.el (top): Run init code only when
4410 `tramp-gvfs-enabled' is not nil.
4411 (tramp-gvfs-enabled): Check also :system bus.
4412
4413 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4414
4415 Sync with upstream verilog-mode revision 78e66ba.
4416 * progmodes/verilog-mode.el (verilog-end-of-defun)
4417 (verilog-type-completion, verilog-get-list): Remove unused funcs.
4418 (verilog-get-end-of-defun): Remove unused argument.
4419 (verilog-comment-depth): Remove unused local `e'.
4420 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
4421 Don't pass arg to verilog-get-end-of-defun.
4422
4423 2013-11-14 Glenn Morris <rgm@gnu.org>
4424
4425 * obsolete/assoc.el (aget): Prefix dynamic variable.
4426
4427 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
4428
4429 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
4430
4431 * widget.el, hfy-cmap.el: Remove bogus package version number.
4432
4433 2013-11-13 Glenn Morris <rgm@gnu.org>
4434
4435 * replace.el (replace-eval-replacement):
4436 Try to give more helpful error message. (Bug#15836)
4437
4438 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
4439 (archive-7z-update): Avoid custom type mismatches.
4440
4441 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
4442
4443 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
4444
4445 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
4446 address can be empty.
4447
4448 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
4449 Accept nil SWITCHES.
4450 (tramp-gvfs-handle-write-region): Implement APPEND.
4451
4452 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
4453
4454 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
4455 binary "|" operator and closing block args delimiter.
4456 Remove FIXME comment referring to Ruby 1.8-only syntax.
4457 (ruby-smie--implicit-semi-p): Not after "|" operator.
4458 (ruby-smie--closing-pipe-p): New function.
4459 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
4460 (ruby-smie-rules): Indent after "|".
4461
4462 2013-11-12 Glenn Morris <rgm@gnu.org>
4463
4464 * ps-print.el (ps-face-attribute-list):
4465 Handle anonymous faces. (Bug#15827)
4466
4467 2013-11-12 Martin Rudalics <rudalics@gmx.at>
4468
4469 * window.el (display-buffer-other-frame): Fix doc-string.
4470 (Bug#15868)
4471
4472 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4473
4474 * subr.el (force-mode-line-update): Delete, move to buffer.c.
4475
4476 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
4477
4478 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
4479 (tramp-sh-handle-file-local-copy): Don't write a message when
4480 saving temporary files.
4481
4482 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
4483 both directories are remote.
4484 (tramp-smb-handle-directory-files): Do not return double entries.
4485 Do not expand full file names.
4486 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
4487 (tramp-smb-handle-write-region): Implement APPEND.
4488 (tramp-smb-get-stat-capability): Fix a stupid bug.
4489
4490 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4491
4492 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
4493
4494 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4495
4496 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
4497 throwing error over malformed let/let* (bug#15814).
4498
4499 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4500
4501 * iswitchb.el (iswitchb-mode): Mark obsolete.
4502
4503 2013-11-11 Glenn Morris <rgm@gnu.org>
4504
4505 * international/uni-bidi.el, international/uni-category.el:
4506 * international/uni-name.el, international/uni-numeric.el:
4507 Regenerate for Unicode 6.3.0.
4508
4509 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
4510
4511 * net/tramp.el (tramp-methods):
4512 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
4513 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
4514
4515 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
4516
4517 * progmodes/sh-script.el (sh-font-lock-keywords-var):
4518 Force highlighting text after Summary keyword in doc face for rpm.
4519
4520 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
4521
4522 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
4523 available and the word has no wildcards, append one to the grep pattern.
4524 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
4525 (ispell-complete-word): Call `ispell-lookup-words' with the value
4526 independent of `ispell-look-p'.
4527
4528 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4529
4530 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
4531 Not after "||".
4532 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
4533 their parent.
4534
4535 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4536
4537 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
4538 (ruby-font-lock-keywords): Use backquote.
4539
4540 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4541
4542 * progmodes/ruby-mode.el (ruby-smie--forward-token)
4543 (ruby-smie--backward-token): Only consider full-string matches.
4544
4545 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
4546
4547 * faces.el (describe-face): Add distant-foreground.
4548
4549 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
4550
4551 * progmodes/ruby-mode.el: Improve encoding comment handling.
4552 (ruby-encoding-magic-comment-style): New option.
4553 (ruby-custom-encoding-magic-comment-template): New option.
4554 (ruby--insert-coding-comment, ruby--detect-encoding):
4555 New functions extracted from `ruby-mode-set-encoding'.
4556 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
4557 to control the style of the auto-inserted encoding comment.
4558
4559 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4560
4561 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
4562 Use `smie-backward-sexp' with token argument.
4563
4564 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
4565
4566 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
4567 Remove instrumentation code.
4568
4569 2013-11-08 Glenn Morris <rgm@gnu.org>
4570
4571 * progmodes/autoconf.el (autoconf-mode):
4572 Tweak comment-start-skip. (Bug#15822)
4573
4574 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4575
4576 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
4577 at bobp (bug#15826).
4578 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
4579
4580 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
4581
4582 * man.el (Man-start-calling): New macro, extracted from
4583 Man-getpage-in-background.
4584 (Man-getpage-in-background): Use it.
4585 (Man-update-manpage): New command.
4586 (Man-mode-map): Bind it.
4587
4588 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
4589
4590 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
4591 of "and", "or", "&&" and "||".
4592 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
4593 argument. Prohibit opening curly brace because it could only be a
4594 block opener in that position.
4595 (ruby-smie--forward-token, ruby-smie--backward-token):
4596 Separate "|" from "&" or "*" going after it. That can happen in block
4597 arguments.
4598 (ruby-smie--indent-to-stmt): New function, seeks the end of
4599 previous statement or beginning of buffer.
4600 (ruby-smie-rules): Use it.
4601 (ruby-smie-rules): Check if there's a ":" before a curly block
4602 opener candidate; if there is, it's a hash.
4603
4604 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
4605
4606 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
4607 (cl--block-wrapper): Fix last accidental change.
4608
4609 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
4610
4611 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
4612 Instrument, in order to hunt failure on hydra.
4613
4614 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4615
4616 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
4617 malformed bindings form (bug#15814).
4618
4619 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
4620
4621 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
4622 "." compared to " @ ". This incidentally fixes some indentation
4623 examples with "do".
4624 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
4625 (ruby-smie-grammar): New tokens: "and" and "or".
4626 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
4627 Exclude "and" and "or". Remove "do" in order to work around token
4628 priorities.
4629 (ruby-smie-rules): Add all infix tokens. Handle the case of
4630 beginning-of-buffer.
4631
4632 2013-11-06 Glenn Morris <rgm@gnu.org>
4633
4634 * Makefile.in (setwins_almost, setwins_for_subdirs):
4635 Avoid accidental matches.
4636
4637 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4638
4639 * menu-bar.el (popup-menu): Use key-binding.
4640
4641 2013-11-06 Eli Zaretskii <eliz@gnu.org>
4642
4643 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
4644 menus, support also the menus produced by minor modes.
4645 (Bug#15817)
4646
4647 2013-11-06 Leo Liu <sdl.web@gmail.com>
4648
4649 * thingatpt.el (thing-at-point-looking-at): Add optional arg
4650 DISTANCE to bound the search. All uses changed. (Bug#15808)
4651
4652 2013-11-06 Glenn Morris <rgm@gnu.org>
4653
4654 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
4655 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
4656 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
4657
4658 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
4659
4660 * electric.el (electric-indent-just-newline): New command.
4661 (electric-indent-mode-map): New keymap.
4662 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
4663 Re-add :group which weren't redundant.
4664
4665 * electric.el (electric-indent-local-mode): New minor mode.
4666 (electric-indent-functions-without-reindent): New var.
4667 (electric-indent-post-self-insert-function): Use it.
4668 * emacs-lisp/gv.el (buffer-local-value): Add setter.
4669
4670 2013-11-05 Eli Zaretskii <eliz@gnu.org>
4671
4672 * international/quail.el (quail-help): Be more explicit about the
4673 meaning of the labels shown on the keys. (Bug#15800)
4674
4675 * startup.el (normal-top-level): Load the subdirs.el files before
4676 setting the locale environment. (Bug#15805)
4677
4678 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
4679
4680 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
4681 via arguments so as to get the right ones (bug#15418).
4682
4683 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
4684
4685 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
4686
4687 Fix problems found while writing a test suite.
4688
4689 * net/tramp-compat.el (tramp-compat-load): New defun.
4690 * net/tramp.el (tramp-handle-load): Use it.
4691
4692 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
4693 "(numberp ok-if-already-exists)" correctly.
4694
4695 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
4696
4697 * international/characters.el (glyphless-char-display-control):
4698 Add usage note.
4699
4700 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
4701
4702 * progmodes/python.el (python-mode):
4703 * progmodes/scheme.el (scheme-mode):
4704 * progmodes/prolog.el (prolog-mode):
4705 * progmodes/ruby-mode.el (ruby-mode):
4706 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
4707 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
4708
4709 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4710
4711 * rect.el (rectangle--highlight-for-redisplay):
4712 * emacs-lisp/smie.el (smie--next-indent-change):
4713 Use buffer-chars-modified-tick.
4714
4715 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
4716
4717 * electric.el (electric-indent-post-self-insert-function):
4718 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
4719
4720 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
4721
4722 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
4723
4724 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4725
4726 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
4727 (bug#15786).
4728
4729 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4730
4731 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
4732
4733 * progmodes/python.el: Fix up last change.
4734 (python-shell--save-temp-file): New function.
4735 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
4736 `string' comes from the current buffer.
4737 (python-shell-send-string-no-output): Remove `msg' arg.
4738 (python--use-fake-loc): New var.
4739 (python-shell-buffer-substring): Obey it. Try to compensate for the
4740 extra coding line added by python-shell--save-temp-file.
4741 (python-shell-send-region): Use python-shell--save-temp-file and
4742 python-shell-send-file directly. Add `nomain' argument.
4743 (python-shell-send-buffer): Use python-shell-send-region.
4744 (python-electric-pair-string-delimiter): New function.
4745 (python-mode): Use it.
4746
4747 2013-11-04 Eli Zaretskii <eliz@gnu.org>
4748
4749 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
4750 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
4751 environment and decoding all of the default-directory's to here
4752 from command-line.
4753 (command-line): Decode also argv[0].
4754
4755 * loadup.el: Error out if default-directory is a multibyte string
4756 when we are dumping.
4757
4758 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
4759
4760 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
4761
4762 * emacs-lisp/package.el (package-menu-mode)
4763 (package-menu--print-info, package-menu--archive-predicate):
4764 Add Archive column to package list.
4765
4766 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
4767
4768 Fix problems found while writing a test suite.
4769
4770 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
4771 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
4772 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
4773 to nil when running original file name handler. Otherwise,
4774 there are problems with constructs like "$$FOO".
4775
4776 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
4777 for `localname'.
4778
4779 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
4780
4781 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
4782
4783 * subr.el (version<, version<=, version=):
4784 Update docstrings with information for snapshot versions.
4785
4786 * helpers.el: New library for misc helper functions.
4787 (hash-table-keys): New function returning a list of hash keys.
4788 (hash-table-values): New function returning a list of hash values.
4789
4790 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
4791
4792 * progmodes/ruby-mode.el (ruby-smie--forward-token)
4793 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
4794
4795 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
4796
4797 * textmodes/fill.el (fill-single-char-nobreak-p): New function
4798 checking whether point is after a 1-letter word.
4799
4800 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
4801
4802 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
4803 Don't infloop when expanding region over `multiline' syntax-type that
4804 begins a line (bug#15778).
4805
4806 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4807
4808 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
4809 Make it into a proper minor mode.
4810 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
4811 (rectangle-mark-mode-map): New keymap.
4812 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
4813
4814 2013-11-04 Glenn Morris <rgm@gnu.org>
4815
4816 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
4817
4818 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
4819
4820 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
4821 (ruby-smie-rules): Use smie-rule-parent instead.
4822
4823 * emacs-lisp/smie.el (smie-rule-parent): Always call
4824 smie-indent-virtual rather than only for hanging tokens.
4825 (smie--next-indent-change): New helper command.
4826
4827 2013-11-03 Glenn Morris <rgm@gnu.org>
4828
4829 * Makefile.in (abs_srcdir): Remove.
4830 (emacs): Unset EMACSLOADPATH.
4831
4832 2013-11-02 Glenn Morris <rgm@gnu.org>
4833
4834 * Makefile.in (EMACS): Use a relative filename.
4835 (abs_top_builddir): Remove.
4836 (custom-deps, finder-data, autoloads): Use --chdir.
4837
4838 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
4839
4840 Use relative filenames in TAGS files.
4841 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
4842 (lisptagsfiles4, TAGS): Use relative file names.
4843 (TAGS-LISP): Remove.
4844 (maintainer-clean): No more TAGS-LISP file.
4845
4846 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
4847 (lisptagsfiles4): Use absolute filenames again.
4848 (TAGS, TAGS-LISP): Not everything needs to run in one line.
4849 Remove all *loaddefs files, not just the first. Remove esh-groups.
4850 (maintainer-clean): Delete TAGS, TAGS-LISP.
4851
4852 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
4853
4854 * emacs-lisp/package.el (package-version-join):
4855 Recognize snapshot versions.
4856
4857 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
4858
4859 * subr.el (version-regexp-alist): Add support for snapshot versions.
4860
4861 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
4862
4863 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
4864 New function, replacement for `smie-rule-parent' for when we want to
4865 skip over our direct parent if it's an assignment token..
4866 (ruby-smie-rules): Use it.
4867
4868 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
4869
4870 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
4871 unconditionally. Remove now unnecessary forward declarations.
4872 Remove XEmacs-specific setup.
4873 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
4874 (ruby-font-lock-syntactic-keywords)
4875 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
4876 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
4877 (ruby-here-doc-end-syntax): Remove.
4878 (ruby-mode): Don't check whether `syntax-propertize-rules' is
4879 defined as function.
4880
4881 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
4882
4883 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
4884
4885 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
4886
4887 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
4888 table and abbrev table, `define-derived-mode' does that for us
4889 anyway.
4890
4891 2013-11-01 Glenn Morris <rgm@gnu.org>
4892
4893 * Makefile.in: Remove manual mh-e dependencies (writing .elc
4894 files is atomic for some time, so no parallel compilation issues).
4895
4896 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
4897
4898 * faces.el (face-x-resources): Add :distant-foreground.
4899 (region): Use :distant-foreground for gtk and ns.
4900
4901 2013-11-01 Tassilo Horn <tsdh@gnu.org>
4902
4903 Allow multiple bibliographies when BibLaTeX is used rather than
4904 BibTeX.
4905 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
4906 (reftex-locate-bibliography-files): Us it.
4907
4908 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
4909
4910 * image.el (image-type-header-regexps): Fix the 'pbm' part to
4911 allow comments in pbm files.
4912
4913 * term/w32-win.el (dynamic-library-alist): Support newer versions
4914 of libjpeg starting with v7: look only for the DLL from the
4915 version against which Emacs was built.
4916 Support versions of libpng beyond 1.4.x.
4917 Support libtiff v4.x.
4918
4919 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
4920
4921 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
4922 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
4923 Add property :safe.
4924 (ruby-deep-arglist): Add property :type.
4925
4926 2013-10-31 Glenn Morris <rgm@gnu.org>
4927
4928 * Makefile.in (custom-deps, finder-data): No need to setq the target
4929 variables, we are in the right directory and the defaults work fine.
4930
4931 2013-10-30 Glenn Morris <rgm@gnu.org>
4932
4933 * Makefile.in (autoloads): Do not use abs_lisp.
4934
4935 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4936 `newline' does not respect `standard-output', so use `princ'.
4937
4938 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
4939
4940 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
4941 * buff-menu.el (Buffer-menu--unmark): New function.
4942 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
4943
4944 2013-10-30 Glenn Morris <rgm@gnu.org>
4945
4946 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
4947
4948 * emacs-lisp/package.el (lm-homepage): Declare.
4949
4950 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
4951 Fix doc typos.
4952
4953 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
4954
4955 * Makefile.in (finder-data, autoloads, update-subdirs)
4956 (compile-main, compile-clean, compile-always, bootstrap-clean):
4957 Check return value of cd.
4958 (compile-calc): Remove.
4959
4960 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
4961
4962 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
4963
4964 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
4965 (byte-compile-and-folded): New function.
4966 (=, <, >, <=, >=): Use it.
4967
4968 * dos-w32.el (minibuffer-history-case-insensitive-variables)
4969 (path-separator, null-device, buffer-file-coding-system)
4970 (lpr-headers-switches): Check system-type before modifying them.
4971 (find-buffer-file-type-coding-system): Mark obsolete.
4972 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
4973 find-file-not-found-set-buffer-file-coding-system.
4974 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
4975 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
4976 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
4977 (w32-direct-print-region-helper, w32-direct-print-region-function)
4978 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
4979 * startup.el (normal-top-level-add-subdirs-to-load-path):
4980 * ps-print.el (ps-print-region-function):
4981 * lpr.el (print-region-function): Use new name.
4982
4983 * subr.el (custom-declare-variable-early): Remove function.
4984 (custom-declare-variable-list): Remove var.
4985 (error, user-error): Remove `while' loop.
4986 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
4987 (user-emacs-directory-warning, locate-user-emacs-file):
4988 Move to files.el.
4989 * simple.el (read-quoted-char-radix, read-quoted-char):
4990 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
4991 Move from subr.el.
4992 * custom.el (custom-declare-variable-list): Don't process
4993 custom-declare-variable-list.
4994
4995 * progmodes/python.el (python-shell-get-buffer): New function.
4996 (python-shell-get-process): Use it.
4997 (python-shell-send-string): Always use utf-8 and add a cookie to tell
4998 Python which encoding was used. Don't split-string since we only care
4999 about the first line. Return the temp-file, if applicable.
5000 (python-shell-send-region): Tell compile.el how to turn locations in
5001 the temp-file into locations in the source buffer.
5002
5003 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
5004
5005 * subr.el (undefined): Add missing behavior from the C code for
5006 unbound keys.
5007
5008 * rect.el: Use lexical-binding. Add new rectangular region support.
5009 (rectangle-mark): New command.
5010 (rectangle--region): New var.
5011 (deactivate-mark-hook): Reset rectangle--region.
5012 (rectangle--extract-region, rectangle--insert-for-yank)
5013 (rectangle--highlight-for-redisplay)
5014 (rectangle--unhighlight-for-redisplay): New functions.
5015 (region-extract-function, redisplay-unhighlight-region-function)
5016 (redisplay-highlight-region-function): Use them to handle
5017 rectangular region.
5018 * simple.el (region-extract-function): New var.
5019 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
5020 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
5021 (kill-region): Replace obsolete `yank-handler' arg with `region'.
5022 (copy-region-as-kill, kill-ring-save): Add `region' argument.
5023 (redisplay-unhighlight-region-function)
5024 (redisplay-highlight-region-function): New vars.
5025 (redisplay--update-region-highlight): New function.
5026 (pre-redisplay-function): Use it.
5027 (exchange-point-and-mark): Don't deactivate the mark before
5028 reactivate-it anyway.
5029 * comint.el (comint-kill-region): Remove yank-handler argument.
5030 * delsel.el (delete-backward-char, backward-delete-char-untabify)
5031 (delete-char): Remove property, since it's now part of their
5032 default behavior.
5033 (self-insert-iso): Remove property since this command doesn't exist.
5034
5035 * emacs-lisp/package.el (package--download-one-archive)
5036 (describe-package-1): Don't query the user about final newline.
5037
5038 2013-10-29 Daniel Colascione <dancol@dancol.org>
5039
5040 * net/tramp.el (tramp-methods): Document new functionality.
5041 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
5042 tramp-hostname-checker if method provides one instead of scanning
5043 argument list for "%h" to decide hostname acceptability.
5044
5045 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
5046
5047 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
5048 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
5049 Handle COPY-CONTENTS. (Bug#15737)
5050
5051 2013-10-28 Daiki Ueno <ueno@gnu.org>
5052
5053 * epa-file.el
5054 (epa-file-cache-passphrase-for-symmetric-encryption):
5055 Document that this option has no effect with GnuPG 2.0 (bug#15552).
5056
5057 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
5058
5059 * image.el (defimage, image-load-path): Doc fixes.
5060
5061 2013-10-27 Alan Mackenzie <acm@muc.de>
5062
5063 Indent statements in macros following "##" correctly.
5064 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
5065 Modify the "#" arm of a cond form to handle "#" and "##" operators.
5066
5067 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
5068
5069 * linum.el (linum-update-window): Fix boundary test (bug#13446).
5070
5071 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
5072
5073 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
5074 after `=' is probably a new expression.
5075
5076 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5077
5078 * man.el (man-imenu-title): New option.
5079 (Man-mode-map): Add menu. (Bug#15722)
5080 (Man-mode): Add imenu to menu.
5081
5082 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
5083
5084 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
5085 specific in what the first arg can be: a non-keyword word,
5086 string/regexp/percent literal opener, opening paren, or unary
5087 operator followed directly by word.
5088
5089 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5090
5091 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
5092 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
5093 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
5094 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
5095 Remove vars, they do not apply any more.
5096 (prolog-mode-abbrev-table): Remove redundant declaration.
5097 (prolog-upper-case-string, prolog-lower-case-string): Remove.
5098 (prolog-use-smie): Remove.
5099 (prolog-smie-rules): Add indentation rule for the if-then-else layout
5100 supported by prolog-electric-if-then-else-flag.
5101 (prolog-mode-variables, prolog-menu): Use setq-local.
5102 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
5103 Remove binding to `Backspace' since this key doesn't exist anyway.
5104 Remove bindings for electric self-inserting keys.
5105 (prog-mode): Assume it's defined.
5106 (prolog-post-self-insert): New function.
5107 (prolog-mode): Use it.
5108 (prolog-indent-line, prolog-indent-level)
5109 (prolog-find-indent-of-matching-paren)
5110 (prolog-indentation-level-of-line, prolog-goto-comment-column)
5111 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
5112 (prolog-goto-next-paren, prolog-in-string-or-comment)
5113 (prolog-tokenize, prolog-inside-mline-comment)
5114 (prolog-find-start-of-mline-comment): Remove functions.
5115 (prolog-find-unmatched-paren, prolog-clause-end)
5116 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
5117 (prolog-electric--if-then-else): Rename from
5118 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
5119 (prolog-tokenize-searchkey): Remove const.
5120 (prolog-clause-info): Use forward-sexp.
5121 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
5122 (prolog-electric-if-then-else): Remove commands.
5123 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
5124 for use in post-self-insert-hook.
5125 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
5126 for use in post-self-insert-hook.
5127 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
5128 for use in post-self-insert-hook.
5129 (prolog-electric--underscore): Rename from prolog-electric--underscore;
5130 adapt it for use in post-self-insert-hook.
5131
5132 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
5133
5134 * emacs-lisp/ert.el (ert-run-tests-interactively):
5135 Use `completing-read'. (Bug#9756)
5136
5137 2013-10-25 Eli Zaretskii <eliz@gnu.org>
5138
5139 * simple.el (line-move): Call line-move-1 instead of
5140 line-move-visual when the current window hscroll is zero, but
5141 temporary-goal-column indicates we will need to hscroll as result
5142 of the movement. (Bug#15712)
5143
5144 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
5145
5146 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
5147 capitalization. Use :visible instead of :active.
5148 Fix `ruby-indent-exp' reference. Add menu items for the generic
5149 commands that are used with SMIE.
5150 (ruby-do-end-to-brace): Insert space after `{'.
5151
5152 2013-10-25 John Anthony <john@jo.hnanthony.com>
5153
5154 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
5155
5156 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
5157
5158 2013-10-25 Glenn Morris <rgm@gnu.org>
5159
5160 * vc/vc.el (vc-print-log): Don't use a working revision unless
5161 one was explicitly specified. (Bug#15322)
5162
5163 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5164
5165 * subr.el (add-to-list): Preserve return value in compiler-macro
5166 (bug#15692).
5167
5168 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5169
5170 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
5171 result. Ask user to retry using '-all' flag. (Bug#15701)
5172
5173 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5174
5175 * emacs-lisp/smie.el: New smie-config system.
5176 (smie-config): New defcustom.
5177 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
5178 (smie-config-guess, smie-config-save): New commands.
5179 (smie-config--mode-local, smie-config--buffer-local)
5180 (smie-config--trace, smie-config--modefuns): New vars.
5181 (smie-config--advice, smie-config--mode-hook)
5182 (smie-config--setter, smie-config-local, smie-config--get-trace)
5183 (smie-config--guess-value, smie-config--guess): New functions.
5184 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
5185 text properties. Treat "string fence" syntax like string syntax.
5186
5187 * progmodes/sh-script.el (sh-use-smie): Change default.
5188 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
5189 (sh-var-value): Simplify by CSE.
5190 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
5191 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
5192 is used.
5193 (sh-guess-basic-offset): Use cl-incf.
5194 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
5195
5196 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
5197
5198 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
5199 (bug#15699).
5200
5201 2013-10-24 Glenn Morris <rgm@gnu.org>
5202
5203 * Makefile.in (abs_top_srcdir): Remove.
5204 (update-subdirs): Use relative path to update-subdirs.
5205
5206 2013-10-24 Eli Zaretskii <eliz@gnu.org>
5207
5208 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
5209 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
5210 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
5211 Call unmsys--file-name before expand-file-name, not after it.
5212
5213 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
5214
5215 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
5216 (ert-test-skipped): New error.
5217 (ert-skip, ert-stats-skipped): New defuns.
5218 (ert--skip-unless): New macro.
5219 (ert-test-skipped): New struct.
5220 (ert--run-test-debugger, ert-test-result-type-p)
5221 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
5222 (ert--stats-set-test-and-result, ert-char-for-test-result)
5223 (ert-string-for-test-result, ert-run-tests-batch)
5224 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
5225 Handle skipped tests. (Bug#9803)
5226
5227 2013-10-24 Glenn Morris <rgm@gnu.org>
5228
5229 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
5230
5231 * Makefile.in (abs_top_srcdir): New, set by configure.
5232 (update-subdirs): Correct build-aux location.
5233
5234 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
5235
5236 * vc/vc.el (vc-print-root-log): Always set `default-directory'
5237 value, whether we could auto-deduce `backend', or not.
5238
5239 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
5240 with parameters" example. Simplify the "is it block or is it
5241 hash" check, but also make it more thorough.
5242
5243 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
5244
5245 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
5246
5247 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5248
5249 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
5250 { if it is hanging.
5251
5252 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
5253 :before ";".
5254
5255 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
5256
5257 * progmodes/compile.el (compilation-directory-matcher)
5258 (compilation-page-delimiter):
5259 Support GNU Make-4.0 directory quoting. (Bug#15678)
5260
5261 2013-10-23 Leo Liu <sdl.web@gmail.com>
5262
5263 * ido.el (ido-tidy): Handle read-only text.
5264
5265 2013-10-23 Glenn Morris <rgm@gnu.org>
5266
5267 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
5268 (emacs, compile, compile-always):
5269 Quote entities that might contain whitespace.
5270 (custom-deps, finder-data, autoloads): Use abs_lisp.
5271 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
5272 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
5273 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
5274
5275 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
5276
5277 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
5278 Use `following-char'.
5279
5280 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
5281
5282 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
5283 * progmodes/ruby-mode.el (ruby-smie-rules):
5284 Remove corresponding workaround. Fix indentation rule of ";" so it
5285 also applies when ";" is the parent.
5286
5287 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
5288
5289 * frame.el (display-screens, display-pixel-height)
5290 (display-pixel-width, display-mm-width, display-backing-store)
5291 (display-save-under, display-planes, display-color-cells)
5292 (display-visual-class, display-monitor-attributes-list):
5293 Mention the optional ‘display’ argument in doc strings.
5294
5295 2013-10-22 Michael Gauland <mikelygee@amuri.net>
5296
5297 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
5298 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
5299
5300 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
5301
5302 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
5303 TODO. Add "." after " @ ".
5304 (ruby-smie--at-dot-call): New function. Checks if point at method
5305 call with explicit target.
5306 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
5307 to the method name tokens when it precedes them.
5308 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
5309 (ruby-smie-rules): Add rule for indentation before and after "."
5310 token.
5311
5312 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5313
5314 * textmodes/remember.el (remember-diary-extract-entries):
5315 Avoid add-to-list.
5316
5317 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
5318 an instruction.
5319
5320 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
5321
5322 * progmodes/ruby-mode.el (ruby-smie-grammar):
5323 Add (almost) all infix operators.
5324 (ruby-smie--implicit-semi-p): Add new operator chars.
5325
5326 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
5327 `smie-down-list'.
5328 (ruby-smie--args-separator-p): Check that there's no newline
5329 between method call and its arguments.
5330
5331 2013-10-20 Alan Mackenzie <acm@muc.de>
5332
5333 Allow comma separated lists after Java "implements".
5334
5335 * progmodes/cc-engine.el (c-backward-over-enum-header):
5336 Parse commas.
5337 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
5338 from a "disallowed" list in enum fontification.
5339
5340 2013-10-20 Johan Bockgård <bojohan@gnu.org>
5341
5342 * startup.el (default-frame-background-mode): Remove unused defvar.
5343
5344 * progmodes/verilog-mode.el (verilog-mode): Don't set
5345 comment-indent-function globally.
5346
5347 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
5348
5349 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
5350 Move Info menu item creation to ns-win.el.
5351
5352 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
5353 in menu bar.
5354
5355 * menu-bar.el: Move GNUstep specific menus...
5356
5357 * term/ns-win.el (ns-initialize-window-system): ... to here.
5358
5359 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5360
5361 * simple.el (newline): Only run post-self-insert-hook when
5362 called interactively.
5363
5364 2013-10-19 Johan Bockgård <bojohan@gnu.org>
5365
5366 * icomplete.el (icomplete-with-completion-tables): Add :version.
5367
5368 2013-10-19 Alan Mackenzie <acm@muc.de>
5369
5370 Fix fontification bugs with constructors and const.
5371
5372 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
5373 CASE 2) Remove the check for the absence of a suffix construct
5374 after a function declaration with only types (no identifiers) in
5375 the parentheses. Also, accept a function declaration with just a
5376 type inside the parentheses, if this type can be positively
5377 recognised as such, or if a prefix keyword like "explicit" nails
5378 down the construct as a declaration.
5379
5380 2013-10-19 Eli Zaretskii <eliz@gnu.org>
5381
5382 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
5383 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
5384 the problem whereby selecting a menu item that leads to a
5385 minibuffer prompt moves the cursor out of the minibuffer window,
5386 making it hard to type at the prompt. Suggested by Stefan Monnier
5387 <monnier@iro.umontreal.ca>.
5388
5389 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
5390
5391 * menu-bar.el: Don't make Services menu.
5392
5393 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5394
5395 * ffap.el: Handle "/usr/include/c++/<version>" directories.
5396 (ffap-alist): Use ffap-c++-mode for c++-mode.
5397 (ffap-c++-path): New variable.
5398 (ffap-c++-mode): New function.
5399
5400 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
5401
5402 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
5403
5404 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
5405
5406 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
5407 introduced on 2013-09-08, which results in an infinite loop
5408 requesting a password.
5409
5410 2013-10-18 Glenn Morris <rgm@gnu.org>
5411
5412 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
5413
5414 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
5415
5416 Sync with upstream verilog-mode revision 1a6ecec7.
5417 * progmodes/verilog-mode.el (verilog-mode-version): Update.
5418 (verilog-mode-release-date): Remove.
5419 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
5420 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
5421 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
5422 (verilog-auto-tieoff-ignore-regexp)
5423 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
5424 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
5425 (verilog-signals-with, verilog-dir-cache-preserving)
5426 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
5427 Doc fixes.
5428 (verilog-case-fold): New option, to control case folding in
5429 regexp searches, bug597.
5430 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
5431 (verilog-string-match-fold, verilog-in-paren-count)
5432 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
5433 (verilog-at-close-struct-p): New functions.
5434 (verilog-beg-block-re-ordered, verilog-extended-case-re)
5435 (verilog-forward-sexp, verilog-set-auto-endcomments)
5436 (verilog-leap-to-case-head): Handle "unique0" case.
5437 (verilog-in-constraint-re): New constant.
5438 (verilog-keywords, verilog-type-font-keywords):
5439 Add some SystemVerilog 1800-2012 keywords.
5440 (verilog-label-be): Remove unimplemented argument, bug669.
5441 (verilog-batch-execute-func): When batch expanding clear
5442 create-lockfiles to prevent spurious user locks when a file ends
5443 up not changing.
5444 (verilog-calculate-indent, verilog-calc-1)
5445 (verilog-at-close-constraint-p, verilog-at-constraint-p)
5446 (verilog-do-indent): Fix indentation of nested constraints
5447 and structures.
5448 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
5449 (verilog-auto-inst-param): Use verilog-string-match-fold.
5450 (verilog-read-inst-module-matcher):
5451 Fix AUTOINST on gate primitives with #1.
5452 (verilog-read-decls): Fix double-declaring user-defined typed signals.
5453 Reads all user-defined typed variables.
5454 (verilog-read-defines): Fix reading definitions inside comments, bug647.
5455 (verilog-signals-matching-regexp)
5456 (verilog-signals-not-matching-regexp, verilog-auto):
5457 Respect verilog-case-fold.
5458 (verilog-diff-report): Fix line count.
5459 (verilog-auto-assign-modport): Remove unused local `modi'.
5460 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
5461 better handle multidimensional arrays.
5462 Fix packed array ports misadding bit index in AUTOINST, bug637.
5463 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
5464 to not double-declare existing outputs and inputs, respectively.
5465 (verilog-template-map): Bind U to verilog-sk-uvm-component.
5466 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
5467 (verilog-sk-uvm-component): New skeleton.
5468 (verilog-submit-bug-report): Add verilog-case-fold,
5469 remove verilog-mode-release-date.
5470
5471 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
5472
5473 * subr.el (sit-for): Call (input-pending-p t) so as to behave
5474 as before.
5475
5476 2013-10-18 Reuben Thomas <rrt@sc3d.org>
5477
5478 * textmodes/remember.el (remember): Set buffer-offer-save in
5479 remember buffers (bug#13566).
5480
5481 2013-10-18 Daniel Colascione <dancol@dancol.org>
5482
5483 When evaluating forms in ielm, direct standard output to ielm
5484 buffer. Add new ielm-return-for-effect command. Remove trailing
5485 whitespace throughout.
5486
5487 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
5488 (ielm-return-for-effect): New command.
5489 (ielm-send-input): Accept optional `for-effect' parameter.
5490 (ielm-eval-input): Accept optional `for-effect' parameter.
5491 Bind `standard-output' to stream we create using
5492 `ielm-standard-output-impl'. Suppress printing result when
5493 `for-effect'.
5494 (ielm-standard-output-impl): New function.
5495 (inferior-emacs-lisp-mode): Explain new features in documentation.
5496
5497 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
5498
5499 Code cleanup.
5500
5501 * net/tramp.el (tramp-debug-message): Do not check for connection
5502 buffer.
5503 (tramp-message): Use "vector" connection property.
5504
5505 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
5506 (tramp-equal-remote, tramp-eshell-directory-change)
5507 * net/tramp-adb.el (tramp-adb-handle-copy-file)
5508 (tramp-adb-handle-rename-file)
5509 * net/tramp-cmds.el (tramp-list-remote-buffers)
5510 (tramp-cleanup-connection, tramp-cleanup-this-connection)
5511 * net/tramp-compat.el (tramp-compat-process-running-p)
5512 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
5513 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
5514 (tramp-gvfs-handle-rename-file)
5515 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
5516 (tramp-set-file-uid-gid)
5517 * net/tramp-smb.el (tramp-smb-handle-copy-file)
5518 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
5519 of `file-remote-p'.
5520
5521 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
5522 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
5523 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
5524 (tramp-gw-open-network-stream): Suppress unrelated traces.
5525
5526 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
5527 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
5528 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
5529 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
5530 connection property.
5531
5532 * net/tramp-cache.el (top): Suppress traces when reading
5533 persistency file.
5534
5535 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
5536 Refactor common code. Improve debug message.
5537 (tramp-maybe-open-connection)
5538 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
5539 connection buffer too early.
5540
5541 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
5542 from `tramp-smb-actions-with-acl'.
5543 (tramp-smb-actions-set-acl): New defconst.
5544 (tramp-smb-handle-copy-directory)
5545 (tramp-smb-action-get-acl): New defun, renamed from
5546 `tramp-smb-action-with-acl'.
5547 (tramp-smb-action-set-acl): New defun.
5548 (tramp-smb-handle-set-file-acl): Rewrite.
5549
5550 2013-10-17 Glenn Morris <rgm@gnu.org>
5551
5552 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
5553
5554 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
5555
5556 * skeleton.el (skeleton-newline): Remove.
5557 (skeleton-internal-1): Use (insert "\n") instead.
5558
5559 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
5560 let-bindings.
5561
5562 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
5563 forward-sexp-function while we redo its job (bug#15613).
5564
5565 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
5566
5567 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
5568 represented by lists.
5569
5570 2013-10-16 Glenn Morris <rgm@gnu.org>
5571
5572 * tmm.el (tmm--history): New dynamic variable.
5573 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
5574
5575 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
5576
5577 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
5578 (tramp-smb-errors): Add error messages.
5579 (tramp-smb-actions-with-acl): New defconst.
5580 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
5581 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
5582 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
5583 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
5584 (tramp-smb-get-stat-capability): Fix tests.
5585
5586 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
5587
5588 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
5589 (bug#15580).
5590
5591 2013-10-16 Glenn Morris <rgm@gnu.org>
5592
5593 * ansi-color.el (ansi-color-drop-regexp):
5594 Add 1J, 1K, 2K. (Bug#15617)
5595
5596 * files.el (hack-local-variables--warned-lexical): New.
5597 (hack-local-variables):
5598 Warn about misplaced lexical-binding. (Bug#15616)
5599
5600 * net/eww.el (eww-render): Always set eww-current-url,
5601 and update header line. (Bug#15622)
5602 (eww-display-html): ... Rather than just doing it here.
5603
5604 2013-10-15 Eli Zaretskii <eliz@gnu.org>
5605
5606 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
5607 menu navigations commands.
5608
5609 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
5610
5611 * progmodes/subword.el (subword-capitalize): Be careful when
5612 the search for [[:alpha:]] fails (bug#15580).
5613
5614 2013-10-14 Eli Zaretskii <eliz@gnu.org>
5615
5616 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
5617 to commands that scroll the menu.
5618
5619 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
5620
5621 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
5622 Handle methods ending with `?' and `!'.
5623
5624 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
5625
5626 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
5627 `japanese-cp932' to `cp932' to fix the problem where saving a
5628 source file written in Shift_JIS twice would end up having
5629 `coding: japanese-cp932' which Ruby could not recognize.
5630 (ruby-mode-set-encoding): Add support for encodings mapped to nil
5631 in `ruby-encoding-map'.
5632 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
5633 doesn't need to be explicitly declared in magic comment.
5634 (ruby-encoding-map): Add type declaration for better customize UI.
5635
5636 2013-10-13 Glenn Morris <rgm@gnu.org>
5637
5638 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
5639 Occur buffers are read-only. http://bugs.debian.org/720775
5640
5641 * emacs-lisp/authors.el (authors-fixed-entries):
5642 Comment out old alpha stuff.
5643
5644 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
5645
5646 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
5647 to `after-save-hook' instead of `before-save-hook'.
5648 (ruby-mode-set-encoding): Use the value of coding system used to
5649 write the file. Call `basic-save-buffer-1' after modifying the
5650 buffer.
5651
5652 2013-10-13 Alan Mackenzie <acm@muc.de>
5653
5654 Fix indentation/fontification of Java enum with
5655 "implements"/generic.
5656
5657 * progmodes/cc-engine.el (c-backward-over-enum-header):
5658 Extracted from the three other places and enhanced to handle generics.
5659 (c-inside-bracelist-p): Uses new function above.
5660 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
5661 function above.
5662 (c-font-lock-enum-tail): Uses new function above.
5663
5664 2013-10-13 Kenichi Handa <handa@gnu.org>
5665
5666 * international/mule-cmds.el (select-safe-coding-system): Remove a
5667 superfluous condition in chekcing whether a coding system is safe
5668 or not.
5669
5670 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
5671
5672 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
5673
5674 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
5675
5676 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
5677
5678 2013-10-13 Glenn Morris <rgm@gnu.org>
5679
5680 * menu-bar.el (menu-bar-update-buffers):
5681 Unify Buffers menu prompt string. (Bug#15576)
5682
5683 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
5684
5685 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
5686 Add some entries.
5687 (authors-fixed-entries): Use accented form of name.
5688
5689 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5690
5691 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
5692 method calls (bug#15594).
5693 (ruby-smie--args-separator-p): New function.
5694 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
5695 recognize paren-free method calls.
5696
5697 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
5698 internals of universal-argument.
5699
5700 2013-10-11 Eli Zaretskii <eliz@gnu.org>
5701
5702 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
5703 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
5704 dropped menu on second mouse click on the menu bar.
5705
5706 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5707
5708 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
5709 (explicit-shell-file-name): Declare.
5710 (sh--vars-before-point, sh--cmd-completion-table): New functions.
5711 (sh-completion-at-point-function): New function.
5712 (sh-mode): Use it.
5713 (sh-smie--keyword-p): Remove unused argument.
5714 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
5715 vars.
5716 (sh-set-shell): Always setup SMIE, even if we use the
5717 old indentation code.
5718
5719 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
5720
5721 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
5722 cases of ? and =.
5723 (ruby-smie-rules): Simplify the "do" rule. The cases when the
5724 predicate would return nil are almost non-existent.
5725 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
5726
5727 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
5728 cache also after commands that modify the buffer but don't move
5729 point.
5730
5731 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
5732
5733 * env.el (substitute-env-in-file-name): New function.
5734 (substitute-env-vars): Extend the meaning of the optional arg.
5735
5736 2013-10-10 Eli Zaretskii <eliz@gnu.org>
5737
5738 * term/w32-win.el (dynamic-library-alist): Define separate lists
5739 of GIF DLLs for versions before and after 5.0.0 of giflib.
5740 (Bug#15531)
5741
5742 2013-10-10 João Távora <joaotavora@gmail.com>
5743
5744 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
5745 not locked, use last revision and current source as
5746 defaults. (Bug#15569)
5747
5748 2013-10-10 Masatake YAMATO <yamato@redhat.com>
5749
5750 * menu-bar.el (menu-bar-open): Don't use popup-menu if
5751 menu-bar is hidden.
5752
5753 2013-10-10 Martin Rudalics <rudalics@gmx.at>
5754
5755 * window.el (pop-to-buffer-same-window): Fix doc-string.
5756 (Bug#15492)
5757
5758 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
5759
5760 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
5761
5762 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
5763
5764 * calendar/icalendar.el (icalendar-import-file):
5765 Fix interactive spec. (Bug#15482)
5766
5767 2013-10-10 Glenn Morris <rgm@gnu.org>
5768
5769 * desktop.el (desktop-save): Default to saving in .emacs.d,
5770 since PWD is no longer in desktop-path by default. (Bug#15319)
5771
5772 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
5773 now that text mode has a menu with the same entry.
5774 (menu-bar-text-mode-auto-fill): Remove now unused func.
5775 * textmodes/text-mode.el (text-mode-map):
5776 Use auto-fill help text from menu-bar.el.
5777
5778 2013-10-10 John Anthony <john@jo.hnanthony.com>
5779
5780 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
5781
5782 2013-10-09 Juri Linkov <juri@jurta.org>
5783
5784 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
5785 instead of this-command-keys. Add universal-argument-more and
5786 universal-argument-minus to the list of prefix commands. (Bug#15568)
5787
5788 2013-10-09 Glenn Morris <rgm@gnu.org>
5789
5790 * vc/vc-svn.el (vc-svn-create-repo):
5791 Expand paths in file://... url. (Bug#15446)
5792
5793 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
5794 Add some entries.
5795 (authors): Remove unused local variables.
5796
5797 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
5798
5799 * profiler.el: Create a more coherent calltree from partial backtraces.
5800 (profiler-format): Hide the tail with `invisible' so that C-s can still
5801 find the hidden elements.
5802 (profiler-calltree-depth): Don't recurse so enthusiastically.
5803 (profiler-function-equal): New hash-table-test.
5804 (profiler-calltree-build-unified): New function.
5805 (profiler-calltree-build): Use it.
5806 (profiler-report-make-name-part): Indent the calltree less.
5807 (profiler-report-mode): Add visibility specs for profiler-format.
5808 (profiler-report-expand-entry, profiler-report-toggle-entry):
5809 Expand the whole subtree when provided with a prefix arg.
5810
5811 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
5812
5813 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
5814 iuwu-mod token.
5815 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
5816 hanging iuwu-mod token.
5817 (ruby-smie--forward-token): Do not include a dot after a token in
5818 that token.
5819 (ruby-smie--backward-token): Likewise.
5820
5821 2013-10-08 Juri Linkov <juri@jurta.org>
5822
5823 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
5824 to isearch-other-control-char.
5825 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
5826 and isearch-post-command-hook to post-command-hook.
5827 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
5828 and isearch-post-command-hook from post-command-hook.
5829 (isearch-unread-key-sequence)
5830 (isearch-reread-key-sequence-naturally)
5831 (isearch-lookup-scroll-key, isearch-other-control-char)
5832 (isearch-other-meta-char): Remove functions.
5833 (isearch-pre-command-hook, isearch-post-command-hook):
5834 New functions based on isearch-other-meta-char rewritten
5835 relying on the new behavior of overriding-terminal-local-map
5836 that does not replace the local keymaps any more. (Bug#15200)
5837
5838 2013-10-08 Eli Zaretskii <eliz@gnu.org>
5839
5840 Support menus on text-mode terminals.
5841 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
5842 functionality.
5843
5844 * tooltip.el (tooltip-mode): Don't error out on TTYs.
5845
5846 * menu-bar.el (popup-menu, popup-menu-normalize-position):
5847 Move here from mouse.el.
5848 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
5849 and arrow keys.
5850 (tty-menu-navigation-map): New map for TTY menu navigation.
5851
5852 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
5853
5854 * frame.el (display-mouse-p): Report text-mode mouse as available
5855 on w32.
5856 (display-popup-menus-p): Report availability if mouse is
5857 available; don't condition on window-system.
5858
5859 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
5860 (tty-menu-selected-face): New faces.
5861
5862 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5863
5864 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
5865 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
5866 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
5867 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
5868 New constants.
5869 (lisp-mode-variables): New `elisp' argument.
5870 (emacs-lisp-mode): Use it.
5871 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
5872 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
5873
5874 * indent.el: Use lexical-binding.
5875 (indent-region): Add progress reporter.
5876 (tab-stop-list): Make it implicitly extend to infinity by repeating the
5877 last step.
5878 (indent--next-tab-stop): New function to implement this behavior.
5879 (tab-to-tab-stop, move-to-tab-stop): Use it.
5880
5881 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
5882
5883 * indent.el (indent-rigidly--current-indentation): New function.
5884 (indent-rigidly-map): New var.
5885 (indent-rigidly): Use it to provide interactive mode (bug#8196).
5886
5887 2013-10-08 Bastien Guerry <bzg@gnu.org>
5888
5889 * register.el (insert-register): Fix 2013-10-07 change.
5890
5891 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
5892
5893 * progmodes/perl-mode.el: Use lexical-binding.
5894 Remove redundant :group args.
5895 (perl-nochange): Change default to be closer to other major modes's
5896 standard behavior.
5897 (perl-indent-line): Don't consider text on current line as a
5898 valid beginning of function from which to indent.
5899
5900 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
5901 with more than one argument (bug#15538).
5902
5903 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
5904
5905 * vc/pcvs.el: Use lexical-binding.
5906 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
5907 environment of `eval'.
5908 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
5909 than a list of expressions. Adjust callers.
5910 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
5911
5912 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
5913
5914 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
5915 case of the dot in a chained method call being on the following line.
5916
5917 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5918
5919 * electric.el (electric-indent-inhibit): New var.
5920 (electric-indent-post-self-insert-function): Use it.
5921 * progmodes/python.el (python-mode): Set it.
5922
5923 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
5924 open braces.
5925
5926 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
5927
5928 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
5929 (css-mode): Use electric-indent-chars.
5930
5931 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
5932 (font-lock-beg, font-lock-end): Move before first use.
5933 (nxml-mode): Use syntax-propertize-function.
5934 (nxml-after-change, nxml-after-change1): Adjust accordingly.
5935 (nxml-extend-after-change-region): Remove.
5936 * nxml/xmltok.el: Use lexical-binding.
5937 (xmltok-save): Use `declare'.
5938 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
5939 * nxml/nxml-util.el: Use lexical-binding.
5940 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
5941 Use `declare'.
5942 * nxml/nxml-ns.el: Use lexical-binding.
5943 (nxml-ns-save): Use `declare'.
5944 (nxml-ns-prefixes-for): Avoid add-to-list.
5945 * nxml/rng-match.el: Use lexical-binding.
5946 (rng--ipattern): Use cl-defstruct.
5947 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
5948 (rng-cons-group-after, rng-subst-group-after)
5949 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
5950 Use closures instead of `(lambda...).
5951
5952 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
5953
5954 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
5955 of BEG and END.
5956
5957 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
5958 Use `tramp-handle-insert-file-contents'.
5959 (tramp-gvfs-handle-insert-file-contents): Remove function.
5960
5961 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
5962 Use `save-restriction' in order to keep markers.
5963
5964 * net/trampver.el: Update release number.
5965
5966 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
5967
5968 * progmodes/compile.el (compilation-parse-errors):
5969 Use compilation--put-prop.
5970 (compilation--ensure-parse): Check compilation-multiline.
5971
5972 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
5973
5974 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
5975 lexical-binding.
5976
5977 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
5978
5979 * progmodes/ruby-mode.el: Fix recently added tests.
5980 (ruby-smie-grammar): Add - and +.
5981 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
5982 (ruby-smie--backward-id): New functions.
5983 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
5984 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
5985 any more.
5986
5987 2013-10-07 Leo Liu <sdl.web@gmail.com>
5988
5989 * register.el (register-preview-delay)
5990 (register-preview-functions): New variables.
5991 (register-read-with-preview, register-preview)
5992 (register-describe-oneline): New functions.
5993 (point-to-register, window-configuration-to-register)
5994 (frame-configuration-to-register, jump-to-register)
5995 (number-to-register, view-register, insert-register)
5996 (copy-to-register, append-to-register, prepend-to-register)
5997 (copy-rectangle-to-register): Use register-read-with-preview to
5998 read register. (Bug#15525)
5999
6000 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
6001
6002 * net/network-stream.el (network-stream-open-starttls): Don't add
6003 --insecure if it's already present, because that gnutls-cli
6004 rejects getting that parameter twice.
6005
6006 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
6007
6008 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
6009 keyword, too.
6010
6011 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
6012
6013 * newcomment.el (comment-use-global-state): Change default value
6014 to t, mark obsolete (Bug#15251).
6015 (comment-beginning): In addition to `comment-to-syntax', check the
6016 value of `comment-use-global-state'.
6017
6018 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6019
6020 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
6021 (ruby-comment-column): Follow the global default, by default.
6022 (ruby-smie-grammar): Add assignment syntax.
6023 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
6024 open-paren, a comma, or a \.
6025 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
6026 and line continuations.
6027 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
6028 followed by implicit semi-colons. Add rule for string concatenation
6029 and for indentation at BOB.
6030 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
6031
6032 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
6033 calling next-sexp, since next-token may have skipped chars which
6034 next-sexp doesn't know should be skipped!
6035
6036 2013-10-05 Leo Liu <sdl.web@gmail.com>
6037
6038 * progmodes/octave.el (octave-send-region):
6039 Call compilation-forget-errors.
6040
6041 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
6042
6043 * vc/vc-svn.el (vc-svn-find-admin-dir):
6044 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
6045 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
6046 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
6047 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
6048
6049 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
6050
6051 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
6052
6053 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
6054
6055 * subr.el (read-passwd): Hide chars even when called within a context
6056 where after-change-functions is disabled (bug#15501).
6057 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
6058 until we removed ourself from overriding-terminal-local-map.
6059
6060 2013-10-04 Leo Liu <sdl.web@gmail.com>
6061
6062 * progmodes/octave.el (inferior-octave-mode):
6063 Call compilation-forget-errors.
6064
6065 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
6066
6067 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
6068
6069 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
6070
6071 * net/secrets.el (secrets-create-collection): Add optional
6072 argument ALIAS. Use proper Label keyword. Append ALIAS as
6073 dbus-call-method argument. (Bug#15516)
6074
6075 2013-10-04 Leo Liu <sdl.web@gmail.com>
6076
6077 * progmodes/octave.el (inferior-octave-error-regexp-alist)
6078 (inferior-octave-compilation-font-lock-keywords): New variables.
6079 (compilation-error-regexp-alist)
6080 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
6081 (inferior-octave-mode): Use compilation-shell-minor-mode.
6082
6083 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
6084
6085 * minibuffer.el (completion--replace): Be careful that `end' might be
6086 a marker.
6087
6088 2013-10-03 Daiki Ueno <ueno@gnu.org>
6089
6090 Add support for package signature checking.
6091 * emacs-lisp/package.el (url-http-file-exists-p)
6092 (epg-make-context, epg-context-set-home-directory)
6093 (epg-verify-string, epg-context-result-for)
6094 (epg-signature-status, epg-signature-to-string)
6095 (epg-check-configuration, epg-configuration)
6096 (epg-import-keys-from-file): Declare.
6097 (package-check-signature): New user option.
6098 (package-unsigned-archives): New user option.
6099 (package-desc): Add `signed' field.
6100 (package-load-descriptor): Set `signed' field if .signed file exists.
6101 (package--archive-file-exists-p): New function.
6102 (package--check-signature): New function.
6103 (package-install-from-archive): Check package signature.
6104 (package--download-one-archive): Check archive signature.
6105 (package-delete): Remove .signed file.
6106 (package-import-keyring): New command.
6107 (package-refresh-contents): Import default keyring.
6108 (package-desc-status): Add "unsigned" status.
6109 (describe-package-1, package-menu--print-info)
6110 (package-menu-mark-delete, package-menu--find-upgrades)
6111 (package-menu--status-predicate): Support "unsigned" status.
6112
6113 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6114
6115 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
6116 the new compilation scheme using the new byte-codes.
6117
6118 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
6119 (byte-pophandler): New byte codes.
6120 (byte-goto-ops): Adjust accordingly.
6121 (byte-compile--use-old-handlers): New var.
6122 (byte-compile-catch): Use new byte codes depending on
6123 byte-compile--use-old-handlers.
6124 (byte-compile-condition-case--old): Rename from
6125 byte-compile-condition-case.
6126 (byte-compile-condition-case--new): New function.
6127 (byte-compile-condition-case): New function that dispatches depending
6128 on byte-compile--use-old-handlers.
6129 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
6130 when we can.
6131
6132 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
6133 Optimize under `condition-case' and `catch' if
6134 byte-compile--use-old-handlers is nil.
6135 (disassemble-offset): Handle new bytecodes.
6136
6137 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6138
6139 * subr.el (error): Use `declare'.
6140 (decode-char, encode-char): Use advertised-calling-convention instead
6141 of the docstring to discourage use of the `restriction' arg.
6142
6143 2013-10-03 Daiki Ueno <ueno@gnu.org>
6144
6145 * epg.el (epg-verify-file): Add a comment saying that it does not
6146 notify verification error as a return value nor a signal.
6147 (epg-verify-string): Ditto.
6148
6149 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
6150
6151 * progmodes/compile.el (compilation-start): Try globbing the arg to
6152 `cd' (bug#15417).
6153
6154 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
6155
6156 Sync with Tramp 2.2.8.
6157
6158 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
6159 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
6160 * net/trampver.el: Update release number.
6161
6162 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
6163
6164 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
6165 and default-process-coding-system for darwin only.
6166
6167 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6168
6169 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
6170
6171 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
6172
6173 * vc/vc-git.el (vc-git-grep): Disable pager.
6174
6175 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
6176
6177 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
6178 Use :url instead of :homepage, as per
6179 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
6180
6181 * newcomment.el (comment-beginning): When `comment-use-syntax' is
6182 non-nil, use `syntax-ppss' (Bug#15251).
6183
6184 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6185
6186 * progmodes/octave.el (inferior-octave-startup-file):
6187 Prefer ~/.emacs.d/init_octave.m.
6188
6189 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
6190
6191 * emacs-lisp/package.el (package-desc-from-define):
6192 Accept additional arguments as plist, convert them to an alist and store
6193 them in the `extras' slot.
6194 (package-generate-description-file): Convert extras alist back to
6195 plist and append to the `define-package' form arguments.
6196 (package--alist-to-plist): New function.
6197 (package--ac-desc): Add `extras' slot.
6198 (package--add-to-archive-contents): Check if the archive-contents
6199 vector is long enough, and if it is, pass its `extras' slot value
6200 to `package-desc-create'.
6201 (package-buffer-info): Call `lm-homepage', pass the returned value
6202 to `package-desc-from-define'.
6203 (describe-package-1): Render the homepage button (Bug#13291).
6204
6205 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6206 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
6207
6208 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
6209
6210 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
6211 and default-process-coding-system to utf-8-unix (Bug#15402).
6212
6213 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
6214
6215 * subr.el (looking-back): Do not recommend using looking-back.
6216
6217 2013-09-28 Alan Mackenzie <acm@muc.de>
6218
6219 Fix indentation/fontification of Java enum with "implements".
6220
6221 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
6222 regexp which matches "implements", etc., in Java.
6223 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
6224 specifier clauses coming after "enum".
6225 * progmodes/cc-fonts.el (c-font-lock-declarations)
6226 (c-font-lock-enum-tail): Check for extra specifier clauses coming
6227 after "enum".
6228
6229 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
6230
6231 * faces.el (region): Change ns_selection_color to
6232 ns_selection_fg_color, add ns_selection_bg_color.
6233
6234 2013-09-28 Leo Liu <sdl.web@gmail.com>
6235
6236 * progmodes/octave.el (inferior-octave-completion-table)
6237 (inferior-octave-completion-at-point): Minor tweaks.
6238
6239 * textmodes/ispell.el (ispell-lookup-words): Rename from
6240 lookup-words. (Bug#15460)
6241 (lookup-words): Obsolete.
6242 (ispell-complete-word, ispell-command-loop): All uses changed.
6243
6244 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6245
6246 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
6247 (octave-mode-menu): Add octave-send-buffer.
6248 (octave-send-buffer): New function.
6249
6250 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6251
6252 * progmodes/octave.el (octave-mode-map): Add key binding for
6253 octave-lookfor.
6254 (octave-mode-menu): Add octave-lookfor.
6255 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
6256 octave-lookfor.
6257 (octave-lookfor): New function.
6258
6259 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6260
6261 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
6262 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
6263 its convention.
6264 (cl--loop-set-iterator-function): New function.
6265 (cl-loop): Adjust accordingly, so as not to use cl-subst.
6266 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
6267 Bind `it' with `let' instead of substituting it with `cl-subst'.
6268 (cl--unused-var-p): New function.
6269 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
6270 Eliminate some unused variable warnings (bug#15326).
6271
6272 2013-09-27 Tassilo Horn <tsdh@gnu.org>
6273
6274 * doc-view.el (doc-view-scale-reset): Rename from
6275 `doc-view-reset-zoom-level'.
6276 (doc-view-scale-adjust): New command.
6277 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
6278 `doc-view-scale-adjust'.
6279
6280 2013-09-26 Tassilo Horn <tsdh@gnu.org>
6281
6282 * doc-view.el (doc-view-reset-zoom-level): New command.
6283 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
6284 zoom commands (bug#15466).
6285
6286 2013-09-26 Kenichi Handa <handa@gnu.org>
6287
6288 * international/quail.el (quail-help): Make it not a command.
6289
6290 2013-09-26 Leo Liu <sdl.web@gmail.com>
6291
6292 * minibuffer.el (completion-all-sorted-completions): Make args
6293 optional as they are.
6294
6295 2013-09-25 Daniel Colascione <dancol@dancol.org>
6296
6297 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
6298 specs are and that they're not evaluated.
6299
6300 2013-09-24 Sam Steingold <sds@gnu.org>
6301
6302 * midnight.el (clean-buffer-list-kill-regexps)
6303 (clean-buffer-list-kill-buffer-names): Update for the new Man
6304 buffer naming which includes the object name.
6305
6306 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6307
6308 * eshell/esh-cmd.el (eshell--sep-terms): New var.
6309 (eshell-parse-command, eshell-parse-pipeline): Use it since
6310 eshell-separate-commands requires a dynamic scoped var.
6311 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
6312
6313 2013-09-23 Leo Liu <sdl.web@gmail.com>
6314
6315 * autoinsert.el (auto-insert-alist): Make the value of
6316 lexical-binding match its file setting.
6317
6318 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
6319
6320 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
6321
6322 * autoarg.el (autoarg-kp-digit-argument):
6323 * electric.el (Electric-command-loop):
6324 * kmacro.el (kmacro-step-edit-insert):
6325 Do not set universal-argument-num-events.
6326
6327 2013-09-22 Leo Liu <sdl.web@gmail.com>
6328
6329 * files.el (interpreter-mode-alist): Add octave.
6330
6331 2013-09-21 Alan Mackenzie <acm@muc.de>
6332
6333 C++: fontify identifier in declaration following "public:" correctly.
6334 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
6335 to match "public", etc.
6336 (c-decl-prefix-re): Add ":" into the C++ value.
6337 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
6338 bit. Add a check for a ":" preceded by "public", etc.
6339
6340 2013-09-21 Eli Zaretskii <eliz@gnu.org>
6341
6342 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
6343 recognized by GDB 7.5 and later.
6344
6345 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
6346
6347 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
6348
6349 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6350
6351 * subr.el (internal--call-interactively): New const.
6352 (called-interactively-p): Use it (bug#3984).
6353
6354 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
6355
6356 * vc/pcvs.el (cvs-mode-ignore):
6357 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
6358 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
6359
6360 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6361
6362 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
6363 (eshell-ls-orig-insert-directory): Remove.
6364 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
6365 (eshell-ls-use-in-dired): Use advice-add/remove.
6366 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
6367 Add `orig-fun' arg for use in :around advice.
6368 Make it check (redundantly) eshell-ls-use-in-dired.
6369
6370 2013-09-19 Glenn Morris <rgm@gnu.org>
6371
6372 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
6373
6374 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
6375
6376 * emacs-lisp/eieio.el (class-parent): Undo previous change.
6377
6378 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
6379
6380 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
6381 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
6382 (tramp-get-remote-python): New defuns.
6383 (tramp-get-remote-uid-with-perl)
6384 (tramp-get-remote-gid-with-perl): New defuns. Perl code
6385 contributed by yary <not.com@gmail.com> (tiny change).
6386 (tramp-get-remote-uid-with-python)
6387 (tramp-get-remote-gid-with-python): New defuns. Python code
6388 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
6389 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
6390
6391 2013-09-19 Glenn Morris <rgm@gnu.org>
6392
6393 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
6394
6395 * eshell/em-unix.el (eshell-remove-entries):
6396 Rename argument to avoid name-clash with global `top-level'.
6397
6398 * eshell/esh-proc.el (eshell-kill-process-function):
6399 Remove eshell-reset-after-proc from eshell-kill-hook if present.
6400 (eshell-reset-after-proc): Remove unused arg `proc'.
6401
6402 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
6403 (directory-files-and-attributes): Mark unused arg.
6404
6405 * eshell/em-unix.el (eshell-remove-entries):
6406 Remove unused arg `path'. Update callers.
6407
6408 * eshell/em-hist.el (eshell-hist-parse-arguments):
6409 Remove unused arg `silent'. Update callers.
6410
6411 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
6412 Fix (f)boundp mix-up.
6413
6414 * eshell/em-smart.el (eshell-smart-scroll-window)
6415 (eshell-disable-after-change):
6416 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
6417
6418 2013-09-18 Alan Mackenzie <acm@muc.de>
6419
6420 Fix fontification of type when followed by "const".
6421 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
6422 "known" types from fontification.
6423
6424 2013-09-18 Glenn Morris <rgm@gnu.org>
6425
6426 * emacs-lisp/chart.el (x-display-color-cells): Declare.
6427 (chart-face-list): Drop Emacsen without display-color-p.
6428
6429 * net/eww.el (libxml-parse-html-region): Declare.
6430 (eww-display-html): Explicit error if no libxml2 support.
6431
6432 * doc-view.el (doc-view-mode): Silence --without-x compilation.
6433
6434 * image.el (image-type-from-buffer, image-multi-frame-p):
6435 Remove --without-x warning/error.
6436
6437 * mouse.el (mouse-yank-primary):
6438 * term.el (term-mouse-paste):
6439 Reorder to silence --without-x compilation.
6440
6441 * mpc.el (doc-view-mode): Silence --without-x compilation.
6442
6443 * mail/rmailmm.el (rmail-mime-set-bulk-data):
6444 Silence --without-x compilation.
6445
6446 * progmodes/gud.el (gud-find-file, gud-mode):
6447 Silence --without-x compilation.
6448 (tooltip-mode): Declare.
6449
6450 * wdired.el (dired-backup-overwrite): Remove declaration.
6451 (wdired-mode-map): Add doc string.
6452
6453 * custom.el (x-get-resource): Declare.
6454
6455 * eshell/em-glob.el (ange-cache):
6456 * eshell/em-unix.el (ange-cache): Declare.
6457
6458 * faces.el (x-display-list, x-open-connection, x-get-resource):
6459 Declare.
6460
6461 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
6462 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
6463 Declare.
6464
6465 * frame.el (x-display-grayscale-p, x-display-name): Declare.
6466
6467 * net/gnutls.el (gnutls-log-level): Declare.
6468
6469 * net/shr.el (image-size, image-animate): Declare.
6470
6471 * simple.el (font-info): Declare.
6472
6473 * subr.el (x-popup-dialog): Declare.
6474
6475 * term/common-win.el (x-select-enable-primary)
6476 (x-last-selected-text-primary, x-last-selected-text-clipboard):
6477 Declare.
6478
6479 * term/ns-win.el (x-handle-args): Declare.
6480
6481 * term/x-win.el (x-select-enable-clipboard): Declare.
6482
6483 * term/w32-win.el (create-default-fontset): Declare.
6484
6485 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
6486 Declare.
6487
6488 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
6489 (fit-frame-to-buffer): Explicit error if --without-x.
6490 (mouse-autoselect-window-select): Silence compiler.
6491
6492 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
6493
6494 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
6495 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
6496 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
6497 * eshell/esh-util.el (eshell-sublist):
6498 Remove unused local variables.
6499
6500 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
6501
6502 * textmodes/two-column.el: Make 2C-split work for --without-x.
6503 (scroll-bar-columns): Autoload.
6504 (top-level): Require fringe when compiling.
6505
6506 2013-09-18 Leo Liu <sdl.web@gmail.com>
6507
6508 * subr.el (add-hook): Robustify to handle closure as well.
6509
6510 2013-09-17 Glenn Morris <rgm@gnu.org>
6511
6512 * simple.el (messages-buffer-mode-map): Unbind "g".
6513
6514 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6515
6516 * help-mode.el (help-mode-finish): Use derived-mode-p.
6517 Remove obsolete highlighting.
6518
6519 * play/life.el (life-mode): Use define-derived-mode. Derive from
6520 special-mode.
6521 (life): Let-bind inhibit-read-only.
6522 (life-setup): Avoid `setq'. Use `life-mode'.
6523
6524 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
6525 which should not be needed any more.
6526 (package-menu-refresh, package-menu-describe-package): Use user-error.
6527
6528 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
6529 (eshell-post-rewrite-command-hook): Make obsolete.
6530 (eshell-parse-command): Simplify.
6531 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
6532 (eshell--cmd): Declare.
6533 (eshell-parse-pipeline): Remove unused var `final-p'.
6534 Pass a dynvar to eshell-post-rewrite-command-hook.
6535 Implement the new eshell-post-rewrite-command-function.
6536 (eshell-invoke-directly): Remove unused arg `input'.
6537 * eshell/esh-io.el (eshell-io-initialize):
6538 Use eshell-post-rewrite-command-function (bug#15399).
6539 (eshell--apply-redirections): Rename from eshell-apply-redirections;
6540 adjust to new calling convention.
6541 (eshell-create-handles): Rename args to avoid clashing with dynvar
6542 `standard-output'.
6543
6544 2013-09-17 Glenn Morris <rgm@gnu.org>
6545
6546 * simple.el (messages-buffer-mode): New major mode.
6547 (messages-buffer): New function.
6548 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
6549 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
6550 (ert-run-test): Use `messages-buffer' function.
6551 (ert--force-message-log-buffer-truncation): Ignore read-only.
6552 * help.el (view-echo-area-messages): Use `messages-buffer' function.
6553 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
6554
6555 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6556
6557 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
6558
6559 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
6560
6561 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
6562
6563 * icomplete.el (icomplete-in-buffer): New var.
6564 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
6565 vars and replace them with functions.
6566 (icomplete-minibuffer-setup): Adjust accordingly.
6567 (icomplete--completion-table, icomplete--completion-predicate)
6568 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
6569 New functions.
6570 (icomplete-forward-completions, icomplete-backward-completions)
6571 (icomplete-simple-completing-p, icomplete-exhibit)
6572 (icomplete-completions): Use them.
6573 (icomplete--in-region-buffer): New var.
6574 (icomplete--in-region-setup): New function.
6575 (icomplete-mode): Use it.
6576
6577 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
6578 (bug#15379).
6579 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
6580 return args and options.
6581 (eshell-eval-using-options): Use the new return value of
6582 eshell--do-opts to set the options's vars in their scope.
6583 (eshell--set-option): Rename from eshell-set-option.
6584 Add arg `opt-vals'.
6585 (eshell--process-option): Rename from eshell-process-option.
6586 Add arg `opt-vals'.
6587 (eshell--process-args): Use an `opt-vals' alist to store the options's
6588 values during their processing and return them additionally to the
6589 remaining args.
6590
6591 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
6592
6593 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
6594 continuation character an operator, as far as indentation is
6595 concerned (Bug#15369).
6596
6597 2013-09-15 Martin Rudalics <rudalics@gmx.at>
6598
6599 * window.el (window--state-put-2): Don't process buffer state
6600 when buffer doesn't exist any more (Bug#15382).
6601
6602 2013-09-15 Glenn Morris <rgm@gnu.org>
6603
6604 * eshell/em-unix.el (eshell/rm):
6605 Make -f ignore missing files. (Bug#15373)
6606
6607 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
6608 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
6609 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
6610
6611 2013-09-14 Glenn Morris <rgm@gnu.org>
6612
6613 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
6614
6615 2013-09-13 Glenn Morris <rgm@gnu.org>
6616
6617 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
6618 (dired-guess-default): Make `file' available in the env. (Bug#15363)
6619
6620 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
6621
6622 * frame.el (x-focus-frame): Mark as declared in frame.c.
6623
6624 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6625
6626 * ls-lisp.el: Use advice-add.
6627 (original-insert-directory): Remove.
6628 (ls-lisp--insert-directory): Rename from insert-directory; add
6629 `orig-fun' argument.
6630 (insert-directory): Advise.
6631
6632 2013-09-13 Eli Zaretskii <eliz@gnu.org>
6633
6634 * term.el (term-emulate-terminal): Decode the command string
6635 before passing it to term-command-hook. (Bug#15337)
6636
6637 2013-09-13 Glenn Morris <rgm@gnu.org>
6638
6639 * eshell/esh-util.el (ange-cache): Move declaration earlier.
6640
6641 * eshell/esh-ext.el (eshell-search-path): Declare.
6642
6643 * eshell/em-prompt.el (eshell/pwd): Autoload it.
6644 Otherwise an error occurs if eshell-dirs module not loaded.
6645
6646 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
6647
6648 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
6649
6650 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
6651 `tramp-check-proper-host'. Check for a valid method name.
6652
6653 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6654 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
6655 * net/tramp-sh.el (tramp-maybe-open-connection):
6656 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
6657
6658 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
6659 also for hash values.
6660
6661 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6662
6663 * term/ns-win.el (parameters): Don't declare as dynamic.
6664 (before-make-frame-hook): Don't add ineffective function.
6665
6666 * eshell/*.el: Use lexical-binding (bug#15231).
6667
6668 2013-09-12 Kenichi Handa <handa@gnu.org>
6669
6670 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
6671
6672 2013-09-12 Glenn Morris <rgm@gnu.org>
6673
6674 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
6675 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
6676
6677 * subr.el (do-after-load-evaluation): Also give compiler warnings
6678 when obsolete files are used (except by obsolete files).
6679
6680 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
6681 in the status output, assume `filename' is the first. (Bug#15322)
6682
6683 * vc/vc.el (vc-deduce-fileset): Doc fix.
6684
6685 * calc/calc-help.el (Info-goto-node):
6686 * progmodes/cperl-mode.el (Info-find-node):
6687 * vc/ediff.el (Info-goto-node): Update declarations.
6688
6689 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
6690
6691 * vc/vc-bzr.el (vc-compilation-mode): Declare.
6692 (vc-bzr-pull): Require vc-dispatcher.
6693 * vc/vc-git.el (vc-compilation-mode): Declare.
6694 (vc-git-pull): Require vc-dispatcher.
6695
6696 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
6697
6698 * progmodes/octave.el (help-button-action): Declare.
6699
6700 * shell.el (shell-directory-tracker): Output error as a message
6701 rather than just returning it as a string.
6702 (shell-process-pushd): Remove useless use of message.
6703
6704 * dframe.el (dframe-timer-fn):
6705 * files.el (dir-locals-read-from-file):
6706 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
6707 (mpc-format):
6708 * reveal.el (reveal-post-command):
6709 * saveplace.el (load-save-place-alist-from-file):
6710 * shell.el (shell-resync-dirs):
6711 * w32-common-fns.el (x-get-selection-value):
6712 * emacs-lisp/copyright.el (copyright-find-copyright):
6713 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
6714 * emulation/tpu-edt.el (tpu-copy-keyfile):
6715 * play/bubbles.el (bubbles--mark-neighbourhood):
6716 * progmodes/executable.el
6717 (executable-make-buffer-file-executable-if-script-p):
6718 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
6719
6720 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6721
6722 Cleanup Eshell to rely less on dynamic scoping.
6723 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
6724 last-value, and ext-command here. Bind `args' closer to `body'.
6725 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
6726 (eshell--args): Declare new dynamic var.
6727 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
6728 last-value, and ext-command. Pass `args' to `body'.
6729 (eshell-process-args): Bind eshell--args.
6730 (eshell-set-option): Use eshell--args.
6731 * eshell/eshell.el (eshell): Use derived-mode-p.
6732 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
6733 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
6734 (eshell-glob-function): Declare.
6735 * eshell/esh-util.el: Require cl-lib.
6736 (eshell-read-hosts-file): Avoid add-to-list.
6737 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
6738 `err'.
6739 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
6740 Declare.
6741 (eshell/diff): Remove unused var `err'.
6742 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
6743 `killflag'.
6744 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
6745 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
6746 first use.
6747 * eshell/em-glob.el (eshell-glob-matches, message-shown):
6748 Move declaration before first use.
6749 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
6750 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
6751 rely on cl-return.
6752
6753 2013-09-12 Glenn Morris <rgm@gnu.org>
6754
6755 * term/ns-win.el (global-map): Remove binding for ispell-next,
6756 deleted 1999-05-29. (Bug#15357)
6757
6758 2013-09-11 Glenn Morris <rgm@gnu.org>
6759
6760 * echistory.el (electric-command-history): Remove call to deleted func.
6761
6762 * play/landmark.el (landmark-mode): Fix typos.
6763
6764 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
6765 Check cvs-sort-ignore-file is bound.
6766
6767 * savehist.el: No need for cl when compiling on Emacs.
6768
6769 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
6770
6771 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
6772 (bug#15338).
6773 (eshell-self-insert-command, eshell-send-invisible):
6774 Remove unused argument.
6775 (eshell-handle-control-codes): Remove unused var `orig'.
6776 Avoid delete-backward-char.
6777
6778 * files.el (set-auto-mode): Simplify a bit further.
6779
6780 2013-09-11 Glenn Morris <rgm@gnu.org>
6781
6782 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
6783 (set-auto-mode): Don't regexp-quote elements.
6784 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
6785 * progmodes/cc-mode.el (interpreter-mode-alist):
6786 * progmodes/ruby-mode.el (interpreter-mode-alist):
6787 Revert previous change.
6788
6789 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
6790
6791 * play/snake.el (snake-mode):
6792 * play/mpuz.el (mpuz-mode):
6793 * play/landmark.el (lm-mode):
6794 * play/blackbox.el (blackbox-mode):
6795 * play/5x5.el (5x5-mode):
6796 * obsolete/options.el (Edit-options-mode):
6797 * net/quickurl.el (quickurl-list-mode):
6798 * net/newst-treeview.el (newsticker-treeview-mode):
6799 * mail/rmailsum.el (rmail-summary-mode):
6800 * mail/mspools.el (mspools-mode):
6801 * locate.el (locate-mode):
6802 * ibuffer.el (ibuffer-mode):
6803 * emulation/ws-mode.el (wordstar-mode):
6804 * emacs-lisp/debug.el (debugger-mode):
6805 * array.el (array-mode):
6806 * net/eudc.el (eudc-mode): Use define-derived-mode.
6807 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
6808 Move initialization into declaration.
6809 (mairix-searches-mode): Use define-derived-mode.
6810 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
6811 (eudc-edit-hotlist): Use dolist.
6812 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
6813 (Man-mode): Use define-derived-mode.
6814 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
6815 (Info-edit-mode): Use define-derived-mode.
6816 (Info-cease-edit): Use Info-mode.
6817 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
6818 into declaration.
6819 (eshell-mode): Use define-derived-mode.
6820 * chistory.el (command-history-mode-map): Rename from
6821 command-history-map.
6822 (command-history-mode): Use define-derived-mode.
6823 (Command-history-setup): Remove function.
6824 * calc/calc.el (calc-trail-mode-map): New var.
6825 (calc-trail-mode): Use define-derived-mode.
6826 (calc-trail-buffer): Set calc-main-buffer manually.
6827 * bookmark.el (bookmark-insert-annotation): New function.
6828 (bookmark-edit-annotation): Use it.
6829 (bookmark-edit-annotation-mode): Make it a proper major mode.
6830 (bookmark-send-edited-annotation): Use derived-mode-p.
6831 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
6832 closer to its ideal place. Use \' to match EOS.
6833
6834 * profiler.el (profiler-calltree-find): Use function-equal.
6835
6836 2013-09-10 Glenn Morris <rgm@gnu.org>
6837
6838 * files.el (interpreter-mode-alist): Convert to regexps.
6839 (set-auto-mode): Adapt for this. (Bug#15306)
6840 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
6841 Comment out unused variable.
6842 * progmodes/cc-mode.el (interpreter-mode-alist):
6843 * progmodes/python.el (interpreter-mode-alist):
6844 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
6845 * progmodes/sh-script.el (sh-set-shell):
6846 No longer use interpreter-mode-alist to get list of shells.
6847
6848 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
6849
6850 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
6851
6852 * simple.el: Use set-temporary-overlay-map for universal-argument.
6853 (universal-argument-map): Don't use default-bindings (bug#15317).
6854 Bind switch-frame explicitly. Replace universal-argument-minus with
6855 a conditional binding.
6856 (universal-argument-num-events, saved-overriding-map): Remove.
6857 (restore-overriding-map): Remove.
6858 (universal-argument--mode): Rename from save&set-overriding-map,
6859 and rewrite.
6860 (universal-argument, universal-argument-more, negative-argument)
6861 (digit-argument): Adjust accordingly.
6862 (universal-argument-minus): Remove.
6863 (universal-argument-other-key): Remove.
6864
6865 * subr.el (with-demoted-errors): Add `format' argument.
6866
6867 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
6868
6869 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
6870 `tramp-cleanup-connection'.
6871
6872 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
6873 parameters KEEP-DEBUG and KEEP-PASSWORD.
6874
6875 * net/tramp.el (tramp-file-name-handler):
6876 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6877 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
6878 (tramp-maybe-open-connection):
6879 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
6880 Use `tramp-cleanup-connection'.
6881
6882 * net/tramp-sh.el (tramp-maybe-open-connection):
6883 Catch 'uname-changed inside the progress reporter.
6884
6885 2013-09-10 Glenn Morris <rgm@gnu.org>
6886
6887 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
6888
6889 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
6890 returns "alternate access method" in mode (eg "-rw-r--r--.").
6891
6892 2013-09-08 Glenn Morris <rgm@gnu.org>
6893
6894 * saveplace.el (load-save-place-alist-from-file):
6895 Demote errors. (Bug#15305)
6896
6897 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
6898
6899 Improve compatibility with older Emacsen, and XEmacs.
6900
6901 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
6902 only if it is bound. It isn't for XEmacs.
6903 (with-tramp-progress-reporter): Do not let-bind `result'.
6904 This yields to scoping errors in XEmacs.
6905 (tramp-handle-make-auto-save-file-name): New function, moved from
6906 tramp-sh.el.
6907
6908 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
6909 for `make-auto-save-file-name'.
6910 (tramp-adb--gnu-switches-to-ash):
6911 Use `tramp-compat-replace-regexp-in-string'.
6912
6913 * net/tramp-cache.el (tramp-cache-print): Call
6914 `substring-no-properties' only if it is bound. It isn't for XEmacs.
6915
6916 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
6917 bound. It isn't for XEmacs.
6918
6919 * net/tramp-compat.el (tramp-compat-copy-file):
6920 Catch `wrong-number-of-arguments' error.
6921 (tramp-compat-replace-regexp-in-string): New defun.
6922
6923 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
6924 for `make-auto-save-file-name'.
6925 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
6926 `copy-file'.
6927 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
6928 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
6929 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
6930
6931 * net/tramp-gw.el (tramp-gw-open-network-stream):
6932 Use `tramp-compat-replace-regexp-in-string'.
6933
6934 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6935 Call `tramp-handle-make-auto-save-file-name'.
6936 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
6937 (tramp-sh-file-gvfs-monitor-dir-process-filter)
6938 (tramp-sh-file-inotifywait-process-filter):
6939 Use `tramp-compat-replace-regexp-in-string'.
6940 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
6941
6942 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
6943 for `make-auto-save-file-name'.
6944 (tramp-smb-handle-copy-directory):
6945 Call `tramp-compat-replace-regexp-in-string'.
6946 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
6947 (tramp-smb-handle-copy-file): Improve error message.
6948 (tramp-smb-handle-rename-file): Rename directly only in case
6949 `newname' does not exist yet. This is a restriction of smbclient.
6950 (tramp-smb-maybe-open-connection): Rerun the function only when
6951 `auth-sources' is non-nil.
6952
6953 2013-09-08 Kenichi Handa <handa@gnu.org>
6954
6955 * international/characters.el: Set category "^" (Combining) for
6956 more characters.
6957
6958 2013-09-07 Alan Mackenzie <acm@muc.de>
6959
6960 Correctly fontify Java class constructors.
6961 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
6962 in Java Mode.
6963 (c-recognize-typeless-decls): Set the Java value to t.
6964 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
6965 While handling a "(", add a check for, effectively, Java, and handle a
6966 "typeless" declaration there.
6967
6968 2013-09-07 Roland Winkler <winkler@gnu.org>
6969
6970 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
6971 field subtitle for entry type book.
6972
6973 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
6974
6975 * minibuffer.el: Make minibuffer-complete call completion-in-region
6976 rather than other way around.
6977 (completion--some, completion-pcm--find-all-completions):
6978 Don't delay signals when debugging.
6979 (minibuffer-completion-contents): Beware fields within the
6980 minibuffer contents.
6981 (completion-all-sorted-completions): Use defvar-local.
6982 (completion--do-completion, completion--cache-all-sorted-completions)
6983 (completion-all-sorted-completions, minibuffer-force-complete):
6984 Add args `beg' and `end'.
6985 (completion--in-region-1): New fun, extracted from minibuffer-complete.
6986 (minibuffer-complete): Use completion-in-region.
6987 (completion-complete-and-exit): New fun, extracted from
6988 minibuffer-complete-and-exit.
6989 (minibuffer-complete-and-exit): Use it.
6990 (completion--complete-and-exit): Rename from
6991 minibuffer--complete-and-exit.
6992 (completion-in-region--single-word): New function, extracted from
6993 minibuffer-complete-word.
6994 (minibuffer-complete-word): Use it.
6995 (display-completion-list): Make `common-substring' argument obsolete.
6996 (completion--in-region): Call completion--in-region-1 instead of
6997 minibuffer-complete.
6998 (completion-help-at-point): Pass boundaries to
6999 minibuffer-completion-help as args rather than via an overlay.
7000 (completion-pcm--string->pattern): Use `any-delim'.
7001 (completion-pcm--optimize-pattern): New function.
7002 (completion-pcm--pattern->regex): Handle `any-delim'.
7003 * icomplete.el (icomplete-forward-completions)
7004 (icomplete-backward-completions, icomplete-completions):
7005 Adjust calls to completion-all-sorted-completions and
7006 completion--cache-all-sorted-completions.
7007 (icomplete-with-completion-tables): Default to t.
7008 * emacs-lisp/crm.el (crm--current-element): Rename from
7009 crm--select-current-element. Don't put an overlay but return the
7010 boundaries instead.
7011 (crm--completion-command): Take two new args to bind to the boundaries.
7012 (crm-completion-help): Adjust accordingly.
7013 (crm-complete): Use completion-in-region.
7014 (crm-complete-word): Use completion-in-region--single-word.
7015 (crm-complete-and-exit): Use completion-complete-and-exit.
7016
7017 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7018
7019 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
7020 than dynamically.
7021
7022 2013-09-06 Juri Linkov <juri@jurta.org>
7023
7024 * info.el (Info-display-images-node): When image file doesn't exist
7025 display text version of the image if it's provided in the Info file.
7026 Otherwise, display the location of missing image from SRC attribute.
7027 Add help-echo text property from ALT attribute. (Bug#15279)
7028
7029 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7030
7031 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
7032 (edit-abbrevs-mode): Use define-derived-mode.
7033
7034 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
7035 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
7036 that it's defined.
7037 (epa-key-list-mode, epa-key-mode, epa-info-mode):
7038 Use define-derived-mode.
7039
7040 * epg.el (epg-start-encrypt): Minor CSE simplification.
7041
7042 2013-09-06 William Xu <william.xwl@gmail.com>
7043
7044 * arc-mode.el: Add support for 7za (bug#15264).
7045 (archive-7z-program): New var.
7046 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
7047 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
7048 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
7049
7050 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
7051
7052 Remove URL syntax.
7053
7054 * net/tramp.el (tramp-syntax, tramp-prefix-format)
7055 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
7056 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
7057 (tramp-postfix-host-format, tramp-file-name-regexp)
7058 (tramp-completion-file-name-regexp)
7059 (tramp-completion-dissect-file-name)
7060 (tramp-handle-substitute-in-file-name): Remove 'url case.
7061 (tramp-file-name-regexp-url)
7062 (tramp-completion-file-name-regexp-url): Remove constants.
7063
7064 2013-09-06 Glenn Morris <rgm@gnu.org>
7065
7066 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
7067
7068 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
7069
7070 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
7071 keywords" below "here-doc beginnings" (Bug#15270).
7072
7073 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7074
7075 * subr.el (pop): Use `car-safe'.
7076 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
7077 to detect unused `pop' return value.
7078
7079 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
7080 var `block-regexp'.
7081 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
7082 (python-fill-string): Remove unused var `marker'.
7083 (python-skeleton-add-menu-items): Remove unused var `items'.
7084
7085 * international/mule-cmds.el: Require CL.
7086 (find-coding-systems-for-charsets): Avoid add-to-list.
7087 (sanitize-coding-system-list): New function, extracted from
7088 select-safe-coding-system-interactively.
7089 (select-safe-coding-system-interactively): Use it.
7090 (read-input-method-name): Accept symbols for `default'.
7091
7092 * emacs-lisp/advice.el (defadvice): Add indent rule.
7093
7094 2013-09-05 Daniel Hackney <dan@haxney.org>
7095
7096 * dired-x.el:
7097 * net/ange-ftp.el:
7098 * net/browse-url.el:
7099 * net/dbus.el:
7100 * net/eudc.el:
7101 * net/eudcb-ldap.el:
7102 * net/eww.el:
7103 * net/imap.el:
7104 * printing.el:
7105 * vc/ediff-diff.el:
7106 * vc/ediff-init.el:
7107 * vc/ediff-merg.el:
7108 * vc/ediff-mult.el:
7109 * vc/ediff-util.el:
7110 * vc/ediff-wind.el:
7111 * vc/ediff.el:
7112 * vc/emerge.el:
7113 * vc/pcvs.el:
7114 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
7115 byte compiler. Remove some unused let-bound variables.
7116
7117 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7118
7119 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
7120 a "ref-cell", since it gets better optimized (bug#14883).
7121
7122 2013-09-05 Glenn Morris <rgm@gnu.org>
7123
7124 * progmodes/cc-awk.el (c-forward-sws): Declare.
7125
7126 2013-09-04 Glenn Morris <rgm@gnu.org>
7127
7128 * generic-x.el [rul-generic-mode]: Require cc-mode.
7129 (c++-mode-syntax-table): Declare.
7130 (rul-generic-mode-syntax-table): Init in the defvar.
7131
7132 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7133
7134 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
7135 (vc-do-command, vc-set-async-update):
7136 * vc/vc-mtn.el (vc-mtn-dir-status):
7137 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
7138 (vc-hg-pull, vc-hg-merge-branch):
7139 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
7140 (vc-git-merge-branch):
7141 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
7142 (vc-cvs-dir-status-files):
7143 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
7144 (vc-bzr-dir-status-files):
7145 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
7146 * vc/vc-annotate.el: Use lexical-binding.
7147 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
7148 (vc-sentinel-movepoint): Declare.
7149 (vc-annotate): Don't use `goto-line'.
7150 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
7151 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
7152 (vc-sentinel-movepoint): Declare.
7153 * vc/vc-svn.el: Use lexical-binding.
7154 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
7155 * vc/vc-sccs.el:
7156 * vc/vc-rcs.el: Use lexical-binding.
7157
7158 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
7159 `deleted'. Don't drop errors silently.
7160
7161 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
7162
7163 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
7164
7165 * vc/vc.el (vc-ignore): Rewrite.
7166 (vc-default-ignore): New function.
7167 (vc-default-ignore-completion-table): Use find-ignore-file.
7168
7169 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
7170 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
7171 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
7172 Remove. Most code moved to vc.el.
7173
7174 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
7175
7176 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
7177 * net/tramp-smb.el (tramp-smb-get-file-entries):
7178 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
7179 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
7180
7181 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
7182 Update call to it.
7183 (eww-change-select): Remove unused var `properties'.
7184 (eww-make-unique-file-name): Remove unused var `base'.
7185
7186 * finder.el (finder-compile-keywords): Don't mess with windows.
7187
7188 * calculator.el (calculator-funcall): Fix typo in last change.
7189
7190 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
7191
7192 * emacs-lisp/package.el (package-activate-1): Don't let a missing
7193 <pkg>-autoloads.el file stop us.
7194
7195 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
7196 warnings, and factor out common code.
7197
7198 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
7199
7200 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
7201 two-character operators and whether the character preceding them
7202 changes their meaning (Bug#15208).
7203
7204 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
7205
7206 Format code sent to Python shell for robustness.
7207 * progmodes/python.el (python-shell-buffer-substring):
7208 New function.
7209 (python-shell-send-region, python-shell-send-buffer): Use it.
7210
7211 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
7212
7213 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
7214 * net/tramp.el (tramp-user-error): ... here.
7215 (tramp-find-method, tramp-check-proper-host)
7216 (tramp-dissect-file-name, tramp-debug-message)
7217 (tramp-handle-shell-command):
7218 * net/tramp-adb.el (tramp-adb-handle-shell-command):
7219 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
7220
7221 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
7222
7223 2013-09-02 Martin Rudalics <rudalics@gmx.at>
7224
7225 * avoid.el (mouse-avoidance-point-position)
7226 (mouse-avoidance-too-close-p): Handle case where posn-at-point
7227 returns nil.
7228
7229 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
7230
7231 * progmodes/python.el (python-shell-completion-get-completions):
7232 Drop use of deleted `comint-last-prompt-overlay'.
7233 (python-nav-if-name-main): New command.
7234
7235 2013-09-01 Glenn Morris <rgm@gnu.org>
7236
7237 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7238 Avoid leading space in $wins. Otherwise the sed command used by
7239 eg compile-main ends up containing "/*.el". (Bug#15170)
7240
7241 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
7242
7243 2013-08-30 Glenn Morris <rgm@gnu.org>
7244
7245 * emacs-lisp/bytecomp.el (byte-recompile-directory):
7246 Fix is-this-a-directory logic. (Bug#15220)
7247
7248 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7249
7250 * textmodes/css-mode.el: Use SMIE.
7251 (css-smie-grammar): New var.
7252 (css-smie--forward-token, css-smie--backward-token)
7253 (css-smie-rules): New functions.
7254 (css-mode): Use them.
7255 (css-navigation-syntax-table): Remove var.
7256 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
7257 (css-indent-calculate, css-indent-line): Remove functions.
7258
7259 Misc changes to reduce use of `(lambda...); and other cleanups.
7260 * cus-edit.el: Use lexical-binding.
7261 (customize-push-and-save, customize-apropos)
7262 (custom-buffer-create-internal): Use closures.
7263 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
7264 * progmodes/ada-xref.el: Use setq.
7265 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
7266 * dframe.el: Use lexical-binding.
7267 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
7268 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
7269 * descr-text.el: Use lexical-binding.
7270 (describe-text-widget, describe-text-sexp, describe-property-list):
7271 Use closures.
7272 * comint.el (comint-history-isearch-push-state): Use a closure.
7273 * calculator.el: Use lexical-binding.
7274 (calculator-number-to-string): Make it work with lexical-binding.
7275 (calculator-funcall): Same and use cl-letf.
7276
7277 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
7278 (lisp--company-doc-string, lisp--company-location): New functions.
7279 (lisp-completion-at-point): Use them to improve Company support.
7280
7281 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
7282 params of lambda expressions.
7283 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
7284 (ruby-smie--opening-pipe-p): New function.
7285 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
7286 symbols and matched |...| for formal params.
7287 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
7288 from being treated as hanging. Handle "rescue".
7289
7290 2013-08-29 Glenn Morris <rgm@gnu.org>
7291
7292 * progmodes/cc-engine.el (c-pull-open-brace):
7293 Move definition before use.
7294
7295 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
7296
7297 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
7298 are immutable. Don't use `unsafe' any more.
7299 (cl--defsubst-expand): Don't substitute at the same time as keeping
7300 a residual unused let-binding. Don't use `unsafe' any more.
7301
7302 2013-08-29 Glenn Morris <rgm@gnu.org>
7303
7304 * calendar/cal-china.el (calendar-chinese-year-cache):
7305 Recenter on 2015.
7306
7307 * nxml/nxml-util.el (nxml-debug-clear-inside):
7308 Use cl-loop rather than loop.
7309
7310 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
7311
7312 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
7313
7314 2013-08-28 Glenn Morris <rgm@gnu.org>
7315
7316 * progmodes/antlr-mode.el: No need to require cc-mode twice.
7317
7318 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
7319
7320 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
7321
7322 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7323
7324 * simple.el (repeat-complex-command--called-interactively-skip):
7325 New function.
7326 (repeat-complex-command): Use it (bug#14136).
7327
7328 * progmodes/cc-mode.el: Minor cleanup of var declarations.
7329 (c-define-abbrev-table): Add `doc' argument.
7330 (c-mode-abbrev-table, c++-mode-abbrev-table)
7331 (objc-mode-abbrev-table, java-mode-abbrev-table)
7332 (idl-mode-abbrev-table, pike-mode-abbrev-table)
7333 (awk-mode-abbrev-table): Use it.
7334 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
7335 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
7336 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
7337 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
7338 Move initialization into the declaration; and remove any
7339 autoload cookie.
7340
7341 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
7342 and dynamic let binding.
7343
7344 * vc/smerge-mode.el: Remove redundant :group args.
7345
7346 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
7347 to load-path.
7348
7349 2013-08-28 Juri Linkov <juri@jurta.org>
7350
7351 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
7352 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
7353 (isearch-other-meta-char): Handle an undefined shifted printing
7354 character by downshifting it. (Bug#15200)
7355
7356 2013-08-28 Juri Linkov <juri@jurta.org>
7357
7358 * isearch.el (isearch-search): Change regexp error message for
7359 non-regexp searches. (Bug#15166)
7360
7361 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
7362
7363 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
7364 for portability to hosts where /bin/sh has problems.
7365
7366 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7367
7368 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
7369
7370 2013-08-27 Juri Linkov <juri@jurta.org>
7371
7372 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
7373 in the keyboard macro. (Bug#15126)
7374
7375 2013-08-27 Juri Linkov <juri@jurta.org>
7376
7377 * isearch.el (isearch-quote-char): Comment out converting unibyte
7378 to multibyte, thus syncing with its `quoted-insert' counterpart.
7379 (Bug#15166)
7380
7381 2013-08-27 Martin Rudalics <rudalics@gmx.at>
7382
7383 * window.el (display-buffer-use-some-window): Add missing
7384 argument in call of get-largest-window (Bug#15185).
7385 Reported by Stephen Leake.
7386
7387 2013-08-27 Glenn Morris <rgm@gnu.org>
7388
7389 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
7390
7391 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
7392
7393 * progmodes/python.el (python-font-lock-keywords): Don't return nil
7394 from a matcher-function unless there's no more matches (bug#15161).
7395
7396 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
7397
7398 * minibuffer.el: Revert change from 2013-08-20.
7399
7400 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
7401 with text property `tramp-default', if appropriate.
7402 (tramp-check-proper-host): New defun.
7403 (tramp-dissect-file-name): Do not check hostname. Revert change
7404 of 2013-03-18.
7405 (tramp-backtrace): Make VEC-OR-PROC optional.
7406
7407 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
7408 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
7409 * net/tramp-sh.el (tramp-maybe-open-connection):
7410 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
7411 Apply `tramp-check-proper-host'.
7412
7413 2013-08-26 Tassilo Horn <tsdh@gnu.org>
7414
7415 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
7416 lambda expression in order to have `describe-variable' display it.
7417
7418 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
7419
7420 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
7421 BUF can be optional. (Bug#15186)
7422
7423 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
7424
7425 * progmodes/flymake.el (flymake-get-real-file-name-function):
7426 Fix broken customization. (Bug#15184)
7427
7428 2013-08-25 Alan Mackenzie <acm@muc.de>
7429
7430 Improve indentation of bracelists defined by macros (without "=").
7431
7432 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
7433 expansion begins with "{", regard it as bracelist when it doesn't
7434 contain a ";".
7435
7436 Parse C++ inher-intro when there's a template split over 2 lines.
7437
7438 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
7439 rigorously the search for "class" etc. followed by ":".
7440
7441 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
7442 random languages a regexp which never matches rather than nil.
7443
7444 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
7445
7446 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
7447 (c-awk-regexp-one-line-possibly-open-char-list-re)
7448 (c-awk-one-line-possibly-open-regexp-re)
7449 (c-awk-one-line-non-syn-ws*-re): Remove.
7450 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
7451 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
7452 (c-awk-space*-unclosed-regexp-/-re): New constants.
7453 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
7454 aren't regexp delimiters.
7455
7456 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
7457 handling for a rare situation in AWK Mode involving unterminated
7458 strings/regexps.
7459
7460 2013-08-23 Glenn Morris <rgm@gnu.org>
7461
7462 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
7463
7464 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
7465
7466 * files.el (create-file-buffer): If the result would begin with
7467 spaces, prepend a "|" instead of removing them. (Bug#15162)
7468
7469 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
7470
7471 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
7472 text-properties (bug#15155).
7473
7474 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
7475 exist any more.
7476 (calc-keypad-redraw): Remove unused var `pad'.
7477 (calc-keypad-press): Remove unused var `menu'.
7478
7479 2013-08-23 Martin Rudalics <rudalics@gmx.at>
7480
7481 * window.el (display-buffer-pop-up-frame):
7482 Call pop-up-frame-function with BUFFER current so `make-frame' will
7483 use it as the new frame's buffer (Bug#15133).
7484
7485 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
7486
7487 * calendar/timeclock.el: Minor cleanups.
7488 (timeclock-ask-before-exiting, timeclock-use-display-time):
7489 Use `symbol'.
7490 (timeclock-modeline-display): Define as alias before the
7491 actual definition.
7492 (timeclock-mode-line-display): Use define-minor-mode.
7493 (timeclock-day-list-template): Make it a function, add an argument.
7494 (timeclock-day-list-required, timeclock-day-list-length)
7495 (timeclock-day-list-debt, timeclock-day-list-span)
7496 (timeclock-day-list-break): Adjust calls accordingly.
7497
7498 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
7499
7500 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
7501 Use read--expression so that completion works again.
7502
7503 2013-08-21 Sam Steingold <sds@gnu.org>
7504
7505 Add rudimentary inferior shell interaction
7506 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
7507 (sh-set-shell): Reset it.
7508 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
7509 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
7510
7511 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
7512
7513 * align.el: Use lexical-binding.
7514 (align-region): Simplify accordingly.
7515
7516 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
7517
7518 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
7519
7520 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
7521 `non-essential' up.
7522
7523 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
7524
7525 * net/tramp.el:
7526 * net/tramp-adb.el:
7527 * net/tramp-cmds.el:
7528 * net/tramp-ftp.el:
7529 * net/tramp-gvfs.el:
7530 * net/tramp-gw.el:
7531 * net/tramp-sh.el: Don't wrap external variable declarations by
7532 `eval-when-compile'.
7533
7534 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7535
7536 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
7537 now that Emacs supports ImageMagick animations.
7538
7539 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
7540
7541 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
7542 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
7543
7544 2013-08-16 Martin Rudalics <rudalics@gmx.at>
7545
7546 * window.el (mouse-autoselect-window-select): Do autoselect when
7547 mouse pointer is on margin.
7548
7549 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
7550
7551 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
7552
7553 2013-08-16 Glenn Morris <rgm@gnu.org>
7554
7555 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
7556 Handle "Remote Directory" response of some clients. (Bug#15058)
7557
7558 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
7559 Tweak warning. (Bug#14926)
7560
7561 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
7562 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
7563
7564 * image-mode.el (image-mode-map): Add menu items to reverse,
7565 increase, decrease, reset animation speed.
7566 (image--set-speed, image-increase-speed, image-decrease-speed)
7567 (image-reverse-speed, image-reset-speed): New functions.
7568 (image-mode-map): Add bindings for speed commands.
7569
7570 * image.el (image-animate-get-speed, image-animate-set-speed):
7571 New functions.
7572 (image-animate-timeout): Respect image :speed property.
7573
7574 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7575
7576 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
7577 previous line (bug#15101).
7578 (debugger-eval-expression, debugger-record-expression):
7579 Use read--expression (bug#15102).
7580
7581 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
7582
7583 Remove byte compiler warnings, visible when compiling with
7584 `byte-compile-force-lexical-warnings' set to t.
7585
7586 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
7587 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
7588 (tramp-handle-unhandled-file-name-directory)
7589 (tramp-handle-file-notify-add-watch, tramp-action-login)
7590 (tramp-action-succeed, tramp-action-permission-denied)
7591 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
7592 arguments with "_".
7593
7594 * net/tramp-adb.el (tramp-adb-parse-device-names)
7595 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
7596 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
7597 (tramp-adb-handle-file-truename): Remove unused arguments.
7598
7599 * net/tramp-cache.el (tramp-flush-directory-property)
7600 (tramp-flush-connection-property, tramp-list-connections)
7601 (tramp-parse-connection-properties): Prefix unused arguments with "_".
7602
7603 * net/tramp-compat.el (tramp-compat-make-temp-file):
7604 Rename FILENAME to F.
7605
7606 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
7607 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
7608 (tramp-zeroconf-parse-workstation-device-names)
7609 (tramp-zeroconf-parse-webdav-device-names)
7610 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
7611
7612 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
7613 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
7614
7615 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
7616 arguments.
7617 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
7618 (tramp-sh-handle-insert-file-contents-literally)
7619 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
7620 with "_".
7621 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
7622 Remove unused variables.
7623
7624 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
7625 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
7626 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
7627
7628 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
7629 Make them a defconst.
7630 (tramp-uuencode-region): Remove unused variable.
7631
7632 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
7633
7634 * frameset.el (frameset--prop-setter): New function.
7635 (frameset-prop): Add gv-setter declaration.
7636 (frameset-filter-minibuffer): Deal with the case that the minibuffer
7637 parameter was already set in FILTERED. Doc fix.
7638 (frameset--record-minibuffer-relationships): Allow saving a
7639 minibufferless frame without its corresponding minibuffer frame.
7640 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
7641 frame, if the frame id matches.
7642 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
7643 frames before orphaned ones.
7644 (frameset-restore): Warn about orphaned windows, instead of error out.
7645
7646 2013-08-14 Martin Rudalics <rudalics@gmx.at>
7647
7648 * window.el (window-make-atom): Don't overwrite parameter
7649 already present.
7650 (display-buffer-in-atom-window): Handle special case where we
7651 split an already atomic window.
7652 (window--major-non-side-window, display-buffer-in-side-window)
7653 (window--side-check): Ignore minibuffer window when walking
7654 window tree.
7655 (window-deletable-p): Return 'frame only if no other frame uses
7656 our minibuffer window.
7657 (record-window-buffer): Run buffer-list-update-hook.
7658 (split-window): Make sure window--check-frame won't destroy an
7659 existing atomic window in case the new window gets nested
7660 inside.
7661 (display-buffer-at-bottom): Ignore minibuffer window when
7662 walking window tree. Don't split a side window.
7663 (pop-to-buffer): Don't set-buffer here, the select-window call
7664 should do that.
7665 (mouse-autoselect-window-select): Autoselect only if we are in the
7666 text portion of the window.
7667
7668 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7669
7670 * net/shr.el (shr-parse-image-data): New function to grab both the
7671 data itself and the Content-Type.
7672 (shr-put-image): Use it.
7673
7674 * net/eww.el (eww-display-image): Ditto.
7675
7676 * image.el (image-content-type-suffixes): New variable.
7677
7678 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
7679
7680 * progmodes/python.el (python-imenu--build-tree)
7681 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
7682
7683 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
7684
7685 * simple.el (backward-word): Mention the optional argument.
7686
7687 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7688
7689 * frameset.el (frameset--make): Rename constructor from make-frameset.
7690 (frameset-p, frameset-valid-p): Don't autoload.
7691 (frameset-valid-p): Use normal accessors.
7692
7693 2013-08-13 Glenn Morris <rgm@gnu.org>
7694
7695 * progmodes/compile.el (compile-command): Tweak example in doc.
7696 * obsolete/scribe.el (scribe-mode):
7697 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
7698
7699 * mail/feedmail.el (feedmail-confirm-outgoing)
7700 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
7701
7702 * cus-start.el (truncate-partial-width-windows): Fix type.
7703
7704 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
7705
7706 * net/shr.el (shr-table-horizontal-line): Fix custom type.
7707
7708 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7709
7710 * emacs-lisp/timer.el (timer--time-setter): New function.
7711 (timer--time): Use it as gv-setter.
7712
7713 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
7714 setter is not a symbol.
7715
7716 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
7717
7718 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
7719 if sending fails. This makes debugging easier.
7720
7721 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
7722
7723 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
7724 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
7725 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
7726
7727 2013-08-12 Eli Zaretskii <eliz@gnu.org>
7728
7729 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
7730
7731 2013-08-12 Glenn Morris <rgm@gnu.org>
7732
7733 * format.el (format-annotate-function):
7734 Handle read-only text properties in the source. (Bug#14887)
7735
7736 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7737
7738 * net/eww.el (eww-display-html): Ignore coding system errors.
7739 One web site uses "utf-8lias" as the coding system.
7740
7741 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
7742
7743 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
7744
7745 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
7746
7747 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
7748 (tutorial--detailed-help): Remove unused local variables.
7749 (tutorial--save-tutorial-to): Use ignore-errors.
7750 (help-with-tutorial): Use looking-at-p.
7751
7752 * view.el (view-buffer-other-window, view-buffer-other-frame):
7753 Mark unused arguments.
7754
7755 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
7756 (woman-select-symbol-fonts, woman, woman-find-file)
7757 (woman-insert-file-contents, woman-non-underline-faces):
7758 Use string-match-p.
7759 (woman1-unquote): Move declaration.
7760
7761 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
7762 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
7763 argument. Remove unused local variable.
7764 (xml-parse-elem-type): Use string-match-p.
7765 (xml-substitute-numeric-entities): Use ignore-errors.
7766
7767 * calculator.el (calculator): Mark unused argument.
7768 (calculator-paste, calculator-quit, calculator-integer-p):
7769 Use ignore-errors.
7770 (calculator-string-to-number, calculator-decimal, calculator-exp)
7771 (calculator-op-or-exp): Use string-match-p.
7772
7773 * dired.el (dired-buffer-more-recently-used-p): Declare.
7774 (dired-insert-set-properties, dired-insert-old-subdirs):
7775 Use ignore-errors.
7776
7777 * dired-aux.el (dired-compress): Use ignore-errors.
7778 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
7779 (dired-do-async-shell-command, dired-do-shell-command)
7780 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
7781 (dired-insert-subdir-validate): Use string-match-p.
7782 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
7783 (dired-add-entry): Use string-match-p, looking-at-p.
7784 (dired-insert-subdir-newpos): Remove unused local variable.
7785
7786 * filenotify.el (file-notify-callback): Remove unused local variable.
7787
7788 * filesets.el (filesets-error): Mark unused argument.
7789 (filesets-which-command-p, filesets-filter-dir-names)
7790 (filesets-directory-files, filesets-get-external-viewer)
7791 (filesets-ingroup-get-data): Use string-match-p.
7792
7793 * find-file.el (ff-other-file-name, ff-other-file-name)
7794 (ff-find-the-other-file, ff-cc-hh-converter):
7795 Remove unused local variables.
7796 (ff-get-file-name): Use string-match-p.
7797 (ff-all-dirs-under): Use ignore-errors.
7798
7799 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
7800 (follow-select-if-visible): Remove unused local variable.
7801
7802 * forms.el (read-file-filter): Move declaration.
7803 (forms--make-format, forms--make-parser, forms-insert-record):
7804 Quote function with #'.
7805 (forms--update): Use string-match-p. Quote function with #'.
7806
7807 * help-mode.el (help-dir-local-var-def): Mark unused argument.
7808 (help-make-xrefs): Use looking-at-p.
7809 (help-xref-on-pp): Use looking-at-p, ignore-errors.
7810
7811 * ibuffer.el (ibuffer-ext-visible-p): Declare.
7812 (ibuffer-confirm-operation-on): Use string-match-p.
7813
7814 * msb.el (msb-item-handler, msb-dired-item-handler):
7815 Mark unused arguments.
7816
7817 * ses.el (ses-decode-cell-symbol)
7818 (ses-kill-override): Remove unused local variable.
7819 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
7820 (ses-load): Use ignore-errors, looking-at-p.
7821 (ses-jump-safe): Use ignore-errors.
7822 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
7823
7824 * tabify.el (untabify, tabify): Mark unused arguments.
7825
7826 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
7827 Mark unused argument.
7828 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
7829 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
7830
7831 * emacs-lisp/timer.el (timer--time): Define setter with
7832 gv-define-setter to avoid deprecation warning.
7833
7834 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
7835 (*record-cmpl-statistics-p*): Remove (was commented out).
7836 (cmpl-statistics-block): Remove (body was commented out).
7837 All callers changed.
7838 (add-completions-from-buffer, load-completions-from-file):
7839 Remove unused variables.
7840
7841 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
7842
7843 * filecache.el (file-cache-delete-file-list):
7844 Print message only when told so.
7845 (file-cache-files-matching): Use #' in mapconcat argument.
7846
7847 * ffap.el (ffap-url-at-point): Fix reference to variable
7848 thing-at-point-default-mail-uri-scheme.
7849
7850 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
7851
7852 * subr.el (define-error): New function.
7853 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
7854 error-file-not-found and define with define-error.
7855 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
7856 and define with define-error.
7857 * userlock.el (file-locked, file-supersession):
7858 * simple.el (mark-inactive):
7859 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
7860 * progmodes/ada-mode.el (ada-mode-errors):
7861 * play/life.el (life-extinct):
7862 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
7863 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
7864 * nxml/rng-util.el (rng-error):
7865 * nxml/rng-uri.el (rng-uri-error):
7866 * nxml/rng-match.el (rng-compile-error):
7867 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
7868 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
7869 * nxml/nxml-rap.el (nxml-scan-error):
7870 * nxml/nxml-outln.el (nxml-outline-error):
7871 * net/soap-client.el (soap-error):
7872 * net/gnutls.el (gnutls-error):
7873 * net/ange-ftp.el (ftp-error):
7874 * mpc.el (mpc-proc-error):
7875 * json.el (json-error, json-readtable-error, json-unknown-keyword)
7876 (json-number-format, json-string-escape, json-string-format)
7877 (json-key-format, json-object-format):
7878 * jka-compr.el (compression-error):
7879 * international/quail.el (quail-error):
7880 * international/kkc.el (kkc-error):
7881 * emacs-lisp/ert.el (ert-test-failed):
7882 * calc/calc.el (calc-error, inexact-result, math-overflow)
7883 (math-underflow):
7884 * bookmark.el (bookmark-error-no-filename):
7885 * epg.el (epg-error): Define with define-error.
7886
7887 * time.el (display-time-event-handler)
7888 (display-time-next-load-average): Don't call sit-for since it seems
7889 unnecessary (bug#15045).
7890
7891 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
7892 Use #' instead of ' to quote functions.
7893 (checkdoc-output-mode): Use setq-local.
7894 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
7895 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
7896 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
7897 (checkdoc-ispell, checkdoc-ispell-current-buffer)
7898 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
7899 (checkdoc-ispell-message-text, checkdoc-ispell-start)
7900 (checkdoc-ispell-continue, checkdoc-ispell-comments)
7901 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
7902
7903 * ido.el (ido-completion-help): Fix up compiler warning.
7904
7905 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
7906
7907 * frameset.el (frameset-p): Add autoload cookie.
7908 (frameset--jump-to-register): New function, based on code moved from
7909 register.el.
7910 (frameset-to-register): Move from register.el. Adapt to `registerv'.
7911
7912 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
7913 (frameset-restore, frameset-save, frameset-session-filter-alist):
7914 Remove declarations.
7915 (register-alist): Doc fix.
7916 (frameset-to-register): Move to frameset.el.
7917 (jump-to-register, describe-register-1): Remove frameset-specific code.
7918
7919 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7920
7921 * allout-widgets.el (allout-widgets-pre-command-business)
7922 (allout-widgets-post-command-business)
7923 (allout-widgets-after-change-handler)
7924 (allout-decorate-item-and-context, allout-set-boundary-marker)
7925 (allout-body-modification-handler)
7926 (allout-graphics-modification-handler): Mark ignored arguments.
7927 (allout-widgets-post-command-business)
7928 (allout-widgets-exposure-change-processor)
7929 (allout-widgets-exposure-undo-processor)
7930 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
7931 (allout-parse-item-at-point, allout-decorate-item-guides)
7932 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
7933 * allout.el (epa-passphrase-callback-function): Declare.
7934 (allout-overlay-insert-in-front-handler)
7935 (allout-overlay-interior-modification-handler)
7936 (allout-isearch-end-handler, allout-chart-siblings)
7937 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
7938 (allout-yank-processing, allout-process-exposed)
7939 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
7940 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
7941 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
7942 (lisp-indent-defform): Mark ignored arguments.
7943 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
7944 (calculate-lisp-indent): Remove unused variables.
7945 * international/characters.el (indian-2-column, arabic-2-column)
7946 (tibetan): Mark ignored arguments.
7947 (use-cjk-char-width-table): Mark ignored arguments.
7948 Remove unused variables.
7949 * international/fontset.el (build-default-fontset-data)
7950 (x-compose-font-name, create-fontset-from-fontset-spec):
7951 Mark ignored arguments.
7952 (fontset-plain-name): Remove unused variables.
7953 * international/mule.el (charset-id, charset-bytes, generic-char-p)
7954 (keyboard-coding-system): Mark ignored arguments.
7955 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
7956 * help.el (resize-temp-buffer-window):
7957 * window.el (display-buffer-in-major-side-window)
7958 (display-buffer-in-side-window, display-buffer-in-previous-window):
7959 Remove unused variables.
7960 * isearch.el (isearch-forward-symbol):
7961 * version.el (emacs-bzr-version-bzr):
7962 * international/mule-cmds.el (current-language-environment):
7963 * term/common-win.el (x-handle-iconic, x-handle-geometry)
7964 (x-handle-display):
7965 * term/pc-win.el (x-list-fonts, x-display-planes)
7966 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
7967 (x-server-version, x-display-screens, x-display-mm-height)
7968 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
7969 (x-selection-owner-p, x-own-selection-internal)
7970 (x-disown-selection-internal, x-get-selection-internal)
7971 (msdos-initialize-window-system):
7972 * term/tty-colors.el (tty-color-alist, tty-color-clear):
7973 * term/x-win.el (x-handle-no-bitmap-icon):
7974 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
7975 (vc-default-find-file-hook, vc-default-extra-menu):
7976 Mark ignored arguments.
7977
7978 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7979
7980 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
7981 break-condition in the context of the debugged code (bug#12685).
7982
7983 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
7984
7985 * comint.el:
7986 Do not use an overlay to highlight the last prompt. (Bug#14744)
7987 (comint-mode): Make comint-last-prompt buffer local.
7988 (comint-last-prompt): New variable.
7989 (comint-last-prompt-overlay): Remove. Superseded by
7990 comint-last-prompt.
7991 (comint-snapshot-last-prompt, comint-output-filter):
7992 Use comint-last-prompt.
7993
7994 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
7995
7996 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
7997 (frameset-save): Check validity of the resulting frameset.
7998
7999 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
8000
8001 * ido.el (ido-record-command): Add doc string.
8002
8003 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
8004
8005 * frameset.el (frameset): Do not disable creation of the default
8006 frameset-p predicate. Doc fix.
8007 (frameset-valid-p): New function, copied from the old predicate-p.
8008 Add additional checks.
8009 (frameset-restore): Check with frameset-valid-p.
8010 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
8011 (frameset-name, frameset-description, frameset-properties)
8012 (frameset-states): Add docstring.
8013 (frameset-session-filter-alist, frameset-persistent-filter-alist)
8014 (frameset-filter-alist): Doc fixes.
8015
8016 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
8017
8018 * frameset.el (frameset-p, frameset-prop): Doc fixes.
8019
8020 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8021
8022 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
8023 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
8024 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
8025 (byte-compile-normal-call): Remove obsolescence check.
8026
8027 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
8028
8029 * frameset.el (frameset-restore): Doc fix.
8030
8031 * register.el (frameset-frame-id, frameset-frame-with-id)
8032 (frameset-p, frameset-restore, frameset-save): Declare.
8033 (register-alist): Document framesets.
8034 (frameset-session-filter-alist): Declare.
8035 (frameset-to-register): New function.
8036 (jump-to-register): Implement jumping to framesets. Doc fix.
8037 (describe-register-1): Describe framesets.
8038
8039 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
8040
8041 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
8042
8043 * desktop.el (desktop-save-frameset): Use new frameset-save args.
8044 Use lexical-binding.
8045
8046 * frameset.el (frameset): Use type vector, not list (incompatible
8047 change). Do not declare a new constructor, use the default one.
8048 Upgrade suggested properties `app', `name' and `desc' to slots `app',
8049 `name' and `description', respectively, and add read-only slot
8050 `timestamp'. Doc fixes.
8051 (frameset-copy, frameset-persistent-filter-alist)
8052 (frameset-filter-alist, frameset-switch-to-gui-p)
8053 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
8054 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
8055 (frameset-filter-iconified, frameset-keep-original-display-p):
8056 Doc fixes.
8057 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
8058 Rename from frameset-filter-(save|restore)-param. All callers changed.
8059 Doc fix.
8060 (frameset-p): Adapt to change to vector and be more thorough.
8061 Change arg name to OBJECT. Doc fix.
8062 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
8063 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
8064 All callers changed.
8065 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
8066 All callers changed.
8067 (frameset--record-minibuffer-relationships): Rename from
8068 frameset--process-minibuffer-frames. All callers changed.
8069 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
8070 Use new default constructor (again). Doc fix.
8071 (frameset--find-frame-if): Rename from `frameset--find-frame'.
8072 All callers changed.
8073 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
8074 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
8075 Doc fix.
8076 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
8077 PARAMETERS and WINDOW-STATE, respectively.
8078 (frameset-restore): Add new keyword argument PREDICATE.
8079 Reset frameset--target-display to nil. Doc fix.
8080
8081 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
8082
8083 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
8084 (bat-mode): Use it.
8085 (bat-mode-syntax-table): Mark \n as end-of-comment.
8086 (bat-font-lock-keywords): Remove comment rule.
8087
8088 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
8089 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
8090
8091 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
8092 (byte-compile-callargs-warn): Use `push'.
8093 (byte-compile-arglist-warn): Ignore higher-order "calls".
8094 (byte-compile-file-form-autoload): Use `pcase'.
8095 (byte-compile-function-form): If quoting a symbol, check that it exists.
8096
8097 2013-08-07 Eli Zaretskii <eliz@gnu.org>
8098
8099 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
8100 and add a few popular commands found in batch files.
8101 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
8102 (dos-mode): Doc fixes.
8103
8104 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
8105
8106 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
8107 (dos-mode): Use setq-local. Add space after "rem".
8108 (dos-mode-syntax-table): Don't use "w" for symbol chars.
8109 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
8110
8111 2013-08-07 Arni Magnusson <arnima@hafro.is>
8112
8113 * progmodes/dos.el: New file.
8114 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
8115 dos-mode.
8116
8117 2013-08-06 Glenn Morris <rgm@gnu.org>
8118
8119 * calendar/calendar.el: Add new faces, and day-header-array.
8120 (calendar-weekday-header, calendar-weekend-header)
8121 (calendar-month-header): New faces.
8122 (calendar-day-header-construct): New function.
8123 (calendar-day-header-width): Also :set calendar-day-header-array.
8124 (calendar-american-month-header, calendar-european-month-header)
8125 (calendar-iso-month-header): Use calendar- faces.
8126 (calendar-generate-month):
8127 Use calendar-day-header-array for day headers; apply faces to them.
8128 (calendar-mode): Check calendar-font-lock-keywords non-nil.
8129 (calendar-abbrev-construct): Add optional maxlen argument.
8130 (calendar-day-name-array): Doc fix.
8131 (calendar-day-name-array, calendar-abbrev-length)
8132 (calendar-day-abbrev-array):
8133 Also :set calendar-day-header-array, and maybe redraw.
8134 (calendar-day-header-array): New option. (Bug#15007)
8135 (calendar-font-lock-keywords): Set to nil and make obsolete.
8136 (calendar-day-name): Add option to use header array.
8137
8138 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8139
8140 * net/shr.el (shr-render-td): Remove debugging.
8141 (shr-render-td): Make width computation consistent by defaulting
8142 all zero-width columns to 10 characters. This may not be optimal,
8143 but it's at least consistent.
8144 (shr-make-table-1): Redo last change to fix the real problem in
8145 colspan handling.
8146
8147 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8148
8149 * files.el (cache-long-line-scans):
8150 Make obsolete alias to `cache-long-scans'.
8151
8152 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
8153
8154 * frameset.el (frameset, frameset-filter-alist)
8155 (frameset-filter-params, frameset-save, frameset--reuse-frame)
8156 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
8157 (frameset-compute-pos): Rename from frameset--compute-pos,
8158 and add docstring.
8159 (frameset-move-onscreen): Use frameset-compute-pos.
8160 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
8161
8162 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
8163 Fix typos in docstrings.
8164
8165 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8166
8167 * frame.el (get-other-frame): Tiny cleanup.
8168
8169 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
8170
8171 * vc/vc.el (vc-default-ignore-completion-table):
8172 Silence byte-compiler warning.
8173
8174 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
8175 slot, which can indeed be nil.
8176 (frameset-live-filter-alist, frameset-persistent-filter-alist):
8177 Move entry for `left' from persistent to live filter alist.
8178 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
8179 Doc fixes.
8180 (frameset-filter-params): When restoring a frame, copy items added to
8181 `filtered', to avoid unwittingly modifying the original parameters.
8182 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
8183 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
8184
8185 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
8186 to use looking-at-p instead of looking-at. (Bug#15028)
8187
8188 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
8189
8190 Revert introduction of isearch-filter-predicates (bug#14714).
8191 Rely on add-function instead.
8192 * isearch.el (isearch-filter-predicates): Rename it back to
8193 isearch-filter-predicate.
8194 (isearch-message-prefix): Use advice-function-mapc and advice
8195 properties to get the isearch-message-prefix.
8196 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
8197 instead of run-hook-with-args-until-failure.
8198 (isearch-filter-visible): Not obsolete any more.
8199 * loadup.el: Preload nadvice.
8200 * replace.el (perform-replace): Revert to funcall
8201 instead of run-hook-with-args-until-failure.
8202 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
8203 * dired-aux.el (dired-isearch-filenames-mode): Rename from
8204 dired-isearch-filenames-toggle; make it into a proper minor mode.
8205 Use add/remove-function.
8206 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
8207 Call the minor-mode rather than add/remove-hook.
8208 (dired-isearch-filter-filenames):
8209 Remove isearch-message-prefix property.
8210 * info.el (Info--search-loop): New function, extracted from Info-search.
8211 Funcall isearch-filter-predicate instead of
8212 run-hook-with-args-until-failure isearch-filter-predicates.
8213 (Info-search): Use it.
8214 (Info-mode): Use isearch-filter-predicate instead of
8215 isearch-filter-predicates.
8216
8217 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8218
8219 Do not call to `selected-window' where it is assumed by default.
8220 Affected functions are `window-minibuffer-p', `window-dedicated-p',
8221 `window-hscroll', `window-width', `window-height', `window-buffer',
8222 `window-frame', `window-start', `window-point', `next-window'
8223 and `window-display-table'.
8224 * abbrev.el (abbrev--default-expand):
8225 * bs.el (bs--show-with-configuration):
8226 * buff-menu.el (Buffer-menu-mouse-select):
8227 * calc/calc.el (calc):
8228 * calendar/calendar.el (calendar-generate-window):
8229 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
8230 (diary-make-entry):
8231 * comint.el (send-invisible, comint-dynamic-complete-filename)
8232 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
8233 * completion.el (complete):
8234 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
8235 * disp-table.el (describe-current-display-table):
8236 * doc-view.el (doc-view-insert-image):
8237 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
8238 * ehelp.el (with-electric-help):
8239 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8240 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
8241 * emacs-lisp/helper.el (Helper-help-scroller):
8242 * emulation/cua-base.el (cua--post-command-handler-1):
8243 * eshell/esh-mode.el (eshell-output-filter):
8244 * ffap.el (ffap-gnus-wrapper):
8245 * help-macro.el (make-help-screen):
8246 * hilit-chg.el (highlight-compare-buffers):
8247 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
8248 * hl-line.el (global-hl-line-highlight):
8249 * icomplete.el (icomplete-simple-completing-p):
8250 * isearch.el (isearch-done):
8251 * jit-lock.el (jit-lock-stealth-fontify):
8252 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
8253 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
8254 * mpc.el (mpc-tagbrowser, mpc):
8255 * net/rcirc.el (rcirc-any-buffer):
8256 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
8257 * play/landmark.el (landmark-max-width, landmark-max-height):
8258 * play/zone.el (zone):
8259 * progmodes/compile.el (compilation-goto-locus):
8260 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
8261 * progmodes/etags.el (find-tag-other-window):
8262 * progmodes/fortran.el (fortran-column-ruler):
8263 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
8264 * progmodes/verilog-mode.el (verilog-point-text):
8265 * reposition.el (reposition-window):
8266 * rot13.el (toggle-rot13-mode):
8267 * server.el (server-switch-buffer):
8268 * shell.el (shell-dynamic-complete-command)
8269 (shell-dynamic-complete-environment-variable):
8270 * simple.el (insert-buffer, set-selective-display)
8271 (delete-completion-window):
8272 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
8273 (speedbar-recenter):
8274 * startup.el (fancy-splash-head):
8275 * textmodes/ispell.el (ispell-command-loop):
8276 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
8277 * tutorial.el (help-with-tutorial):
8278 * vc/add-log.el (add-change-log-entry):
8279 * vc/compare-w.el (compare-windows):
8280 * vc/ediff-help.el (ediff-indent-help-message):
8281 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
8282 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
8283 (ediff-setup-control-frame):
8284 * vc/emerge.el (emerge-position-region):
8285 * vc/pcvs-util.el (cvs-bury-buffer):
8286 * window.el (walk-windows, mouse-autoselect-window-select):
8287 * winner.el (winner-set-conf, winner-undo): Related users changed.
8288
8289 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
8290
8291 * frameset.el (frameset--set-id): Doc fix.
8292 (frameset-frame-id, frameset-frame-id-equal-p)
8293 (frameset-locate-frame-id): New functions.
8294 (frameset--process-minibuffer-frames, frameset--reuse-frame)
8295 (frameset-restore): Use them.
8296
8297 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8298
8299 Do not call to `selected-frame' where it is assumed by default.
8300 Affected functions are `raise-frame', `redraw-frame',
8301 `frame-first-window', `frame-terminal' and `delete-frame'.
8302 * calendar/appt.el (appt-disp-window):
8303 * epg.el (epg-wait-for-completion):
8304 * follow.el (follow-delete-other-windows-and-split)
8305 (follow-avoid-tail-recenter):
8306 * international/mule.el (set-terminal-coding-system):
8307 * mail/rmail.el (rmail-mail-return):
8308 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
8309 * progmodes/f90.el (f90-add-imenu-menu):
8310 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
8311 * server.el (server-switch-buffer):
8312 * simple.el (delete-completion-window):
8313 * talk.el (talk):
8314 * term/xterm.el (terminal-init-xterm-modify-other-keys)
8315 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
8316 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
8317 * vc/ediff.el (ediff-documentation): Related users changed.
8318 * frame.el (selected-terminal): Remove the leftover.
8319
8320 2013-08-05 Glenn Morris <rgm@gnu.org>
8321
8322 * calendar/calendar.el (calendar-generate-month):
8323 Fix for calendar-column-width != 1 + calendar-day-digit-width.
8324 (calendar-generate-month, calendar-font-lock-keywords):
8325 Fix for calendar-day-header-width > length of any day name.
8326
8327 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
8328
8329 * desktop.el (desktop-clear): Use new name of sort predicate.
8330
8331 * frameset.el (frameset): Add docstring. Move :version property to its
8332 own `version' slot.
8333 (frameset-copy): Rename from copy-frameset.
8334 (frameset-p): Check more thoroughly.
8335 (frameset-prop): Do not check for :version, which is no longer a prop.
8336 (frameset-live-filter-alist, frameset-persistent-filter-alist):
8337 Use new :never value instead of t.
8338 (frameset-filter-alist): Expand and clarify docstring.
8339 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
8340 (frameset-filter-minibuffer, frameset-filter-save-param)
8341 (frameset-filter-restore-param, frameset-filter-iconified):
8342 Add pointer to docstring of frameset-filter-alist.
8343 (frameset-filter-params): Rename filter values to be more meaningful:
8344 :never instead of t, and reverse the meanings of :save and :restore.
8345 (frameset--process-minibuffer-frames): Clarify error message.
8346 (frameset-save): Avoid unnecessary and confusing call to framep.
8347 Use new BOA constructor for framesets.
8348 (frameset--reuse-list): Doc fix.
8349 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
8350 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
8351 (frameset-minibufferless-first-p): Doc fix.
8352 Rename from frameset-sort-frames-for-deletion.
8353 (frameset-restore): Doc fixes. Use new function names.
8354 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
8355
8356 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
8357
8358 * desktop.el (desktop-restore-forces-onscreen)
8359 (desktop-restore-reuses-frames): Document :keyword constant values.
8360 (desktop-filter-parameters-alist): Remove, now identical to
8361 frameset-filter-alist.
8362 (desktop--filter-tty*): Remove, moved to frameset.el.
8363 (desktop-save-frameset, desktop-restore-frameset):
8364 Do not pass :filters argument.
8365
8366 * frameset.el (frameset-live-filter-alist)
8367 (frameset-persistent-filter-alist): New variables.
8368 (frameset-filter-alist): Use them. Add autoload cookie.
8369 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
8370 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
8371 `frameset--id' (it's supposed to be internal to frameset.el).
8372 (frameset--process-minibuffer-frames): Ditto. Doc fix.
8373 (frameset--initial-params): New function.
8374 (frameset--get-frame): Use it. Doc fix.
8375 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
8376 Accept :all, not 'all.
8377 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
8378 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
8379 with fbound symbols. Fix frame id matching, and remove matching ids if
8380 the frame being restored is deleted. Obey :delete.
8381
8382 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8383
8384 * subr.el (macrop): New function.
8385 (text-clone--maintaining): New var.
8386 (text-clone--maintain): Rename from text-clone-maintain. Use it
8387 instead of inhibit-modification-hooks.
8388
8389 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
8390 a proxy, so as handle autoloads and redefinitions of the target.
8391 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
8392
8393 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
8394 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
8395 (pcase--mutually-exclusive-p): New function.
8396 (pcase--split-consp): Use it.
8397 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
8398 mutually exclusive with the current predicate.
8399
8400 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
8401 (edebug-macrop): Remove. Use `macrop' instead.
8402 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
8403 (ad-macro-p):
8404 * eshell/esh-cmd.el (eshell-macrop):
8405 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
8406
8407 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
8408
8409 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
8410 (advice-mapc): New function, using it.
8411 (advice-function-member-p): New function.
8412 (advice--normalize): Store the cdr in advice--saved-rewrite since
8413 that's the part that will be changed.
8414 (advice--symbol-function): New function.
8415 (advice-remove): Handle removal before the function is defined.
8416 Adjust to new advice--saved-rewrite.
8417 (advice-member-p): Use advice-function-member-p and
8418 advice--symbol-function.
8419
8420 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
8421
8422 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
8423 (frameset-filter-minibuffer): Doc fix.
8424 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
8425 (frameset--set-id, frameset--process-minibuffer-frames)
8426 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
8427 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
8428
8429 * desktop.el (desktop-clear): Only delete frames when called
8430 interactively and desktop-restore-frames is non-nil. Doc fix.
8431 (desktop-read): Set desktop-saved-frameset to nil.
8432
8433 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
8434
8435 * vc/vc.el (vc-ignore): Rewrite.
8436 (vc-default-ignore-completion-table, vc--read-lines)
8437 (vc--add-line, vc--remove-regexp): New functions.
8438
8439 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
8440 (vc-svn-ignore-completion-table): New function.
8441
8442 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
8443 (vc-hg-ignore-completion-table)
8444 (vc-hg-find-ignore-file): New functions.
8445
8446 * vc/vc-git.el (vc-git-ignore): Rewrite.
8447 (vc-git-ignore-completion-table)
8448 (vc-git-find-ignore-file): New functions.
8449
8450 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
8451
8452 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
8453 (vc-bzr-ignore-completion-table)
8454 (vc-bzr-find-ignore-file): New functions.
8455
8456 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
8457
8458 * frameset.el (frameset-prop): New function and setter.
8459 (frameset-save): Do not modify frame list passed by the caller.
8460
8461 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
8462
8463 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
8464
8465 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
8466
8467 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
8468 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
8469
8470 * custom.el (custom-initialize-default, custom-initialize-set)
8471 (custom-initialize-reset, custom-initialize-changed): Affect the
8472 toplevel-default-value (bug#6275, bug#14586).
8473 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
8474 for bug#6275.
8475
8476 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
8477
8478 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8479 Add cl-def* expressions.
8480
8481 * frameset.el (frameset-filter-params): Fix order of arguments.
8482
8483 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
8484
8485 Move code related to saving frames to frameset.el.
8486 * desktop.el: Require frameset.
8487 (desktop-restore-frames): Doc fix.
8488 (desktop-restore-reuses-frames): Rename from
8489 desktop-restoring-reuses-frames.
8490 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
8491 (desktop-clear): Clear frames too.
8492 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
8493 (desktop--filter-tty*, desktop-save, desktop-read):
8494 Use frameset functions.
8495 (desktop-before-saving-frames-functions, desktop--filter-*-color)
8496 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
8497 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
8498 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
8499 (desktop--process-minibuffer-frames, desktop-save-frames)
8500 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
8501 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
8502 (desktop--sort-states, desktop-restoring-frames-p)
8503 (desktop-restore-frames): Remove. Most code moved to frameset.el.
8504 (desktop-restoring-frameset-p, desktop-restore-frameset)
8505 (desktop--check-dont-save, desktop-save-frameset): New functions.
8506 (desktop--app-id): New constant.
8507 (desktop-first-buffer, desktop-buffer-ok-count)
8508 (desktop-buffer-fail-count): Move before first use.
8509 * frameset.el: New file.
8510
8511 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
8512
8513 * files.el: Use lexical-binding.
8514 (dir-locals-read-from-file): Remove unused `err' variable.
8515 (hack-dir-local-variables--warned-coding): New var.
8516 (hack-dir-local-variables): Use it to avoid repeated warnings.
8517 (make-backup-file-name--default-function): New function.
8518 (make-backup-file-name-function): Use it as default.
8519 (buffer-stale--default-function): New function.
8520 (buffer-stale-function): Use it as default.
8521 (revert-buffer-insert-file-contents--default-function): New function.
8522 (revert-buffer-insert-file-contents-function): Use it as default.
8523 (insert-directory): Avoid add-to-list.
8524
8525 * autorevert.el (auto-revert-handler): Simplify.
8526 Use buffer-stale--default-function.
8527
8528 2013-08-01 Tassilo Horn <tsdh@gnu.org>
8529
8530 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
8531
8532 * whitespace.el (whitespace-ensure-local-variables): New function.
8533 (whitespace-cleanup-region): Call it.
8534 (whitespace-turn-on): Call it.
8535
8536 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
8537
8538 Complete file name handlers.
8539
8540 * net/tramp.el (tramp-handle-set-visited-file-modtime)
8541 (tramp-handle-verify-visited-file-modtime)
8542 (tramp-handle-file-notify-rm-watch): New functions.
8543 (tramp-call-process): Do not bind `default-directory'.
8544
8545 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
8546 Order alphabetically.
8547 <access-file, add-name-to-file, dired-call-process>:
8548 <dired-compress-file, file-acl, file-notify-rm-watch>:
8549 <file-ownership-preserved-p, file-selinux-context>:
8550 <make-directory-internal, make-symbolic-link, set-file-acl>:
8551 <set-file-selinux-context, set-visited-file-modtime>:
8552 <verify-visited-file-modtime>: Add handler.
8553 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
8554
8555 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
8556 <file-notify-add-watch, file-notify-rm-watch>:
8557 <set-file-times, set-visited-file-modtime>:
8558 <verify-visited-file-modtime>: Add handler.
8559 (with-tramp-gvfs-error-message)
8560 (tramp-gvfs-handle-set-visited-file-modtime)
8561 (tramp-gvfs-fuse-file-name): Remove.
8562 (tramp-gvfs-handle-file-notify-add-watch)
8563 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
8564 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
8565
8566 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
8567 Order alphabetically.
8568 <file-notify-rm-watch>: Use default Tramp handler.
8569 <executable-find>: Remove private handler.
8570 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
8571 `default-directory'.
8572 (tramp-sh-handle-executable-find)
8573 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
8574 (tramp-sh-file-gvfs-monitor-dir-process-filter)
8575 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
8576 Do not use `format' in `tramp-message'.
8577
8578 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
8579 <file-notify-rm-watch, set-visited-file-modtime>:
8580 <verify-visited-file-modtime>: Add handler.
8581 (tramp-smb-call-winexe): Do not bind `default-directory'.
8582
8583 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
8584
8585 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
8586
8587 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
8588
8589 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
8590 use it.
8591 (log-view-diff-changeset): Same.
8592 (log-view-diff-common): Call backend command `previous-revision'
8593 to find out the previous revision, in both cases. Swap the
8594 variables `to' and `fr', so that `fr' usually refers to the
8595 earlier revision (Bug#14989).
8596
8597 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
8598
8599 * ibuf-ext.el (ibuffer-filter-by-filename):
8600 Make it work with dired buffers too.
8601
8602 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8603
8604 * emacs-lisp/re-builder.el (reb-color-display-p):
8605 * files.el (save-buffers-kill-terminal):
8606 * net/browse-url.el (browse-url):
8607 * server.el (server-save-buffers-kill-terminal):
8608 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
8609 Prefer nil to selected-frame for the first arg of frame-parameter.
8610
8611 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
8612
8613 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
8614
8615 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
8616
8617 * minibuffer.el (completion--twq-all): Try and preserve each
8618 completion's case choice (bug#14907).
8619
8620 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
8621
8622 * net/network-stream.el (open-network-stream): Mention the new
8623 :nogreeting parameter.
8624 (network-stream-open-starttls): Use the :nogreeting parameter
8625 (bug#14938).
8626
8627 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
8628
8629 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
8630 more natural than popping.
8631
8632 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
8633 (shr-urlify): Highlight under mouse.
8634
8635 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
8636
8637 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
8638
8639 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
8640
8641 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
8642 buffer for output.
8643
8644 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
8645 point-min==1. Fix search string. Fix parentheses missing.
8646
8647 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
8648 assume point-min==1. Fix search string. Fix parentheses missing.
8649
8650 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
8651
8652 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
8653 buffer for output.
8654
8655 2013-07-29 Eli Zaretskii <eliz@gnu.org>
8656
8657 * frame.el (frame-notice-user-settings): Avoid inflooping when the
8658 initial frame is minibuffer-less. (Bug#14841)
8659
8660 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
8661
8662 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
8663 option.
8664
8665 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8666 (tramp-maybe-open-connection): Use it.
8667
8668 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
8669
8670 * desktop.el (desktop--make-frame): Include `minibuffer' in the
8671 minimal set of parameters passed when creating a frame, because
8672 the minibuffer status of a frame cannot be changed later.
8673
8674 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
8675
8676 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
8677 replace-regexp-in-string and inadvertent omissions in previous change.
8678 (todo-filter-items): Ensure only file names are comma-separated in
8679 name of filtered items buffer.
8680
8681 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
8682
8683 * desktop.el: Optionally force offscreen frames back onscreen.
8684 (desktop-restoring-reuses-frames): New option.
8685 (desktop--compute-pos, desktop--move-onscreen): New functions.
8686 (desktop--make-frame): Use desktop--move-onscreen.
8687
8688 2013-07-27 Alan Mackenzie <acm@muc.de>
8689
8690 Fontify a Java generic method as a function.
8691 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
8692 value to t.
8693
8694 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
8695
8696 * calendar/todo-mode.el: Add command to rename todo files.
8697 (todo-rename-file): New command.
8698 (todo-key-bindings-t): Add key binding for it. Change the
8699 bindings of todo-filter-regexp-items(-multifile) to use `x'
8700 instead of `r', since the latter is better suited to the new
8701 renaming command.
8702
8703 2013-07-27 Alan Mackenzie <acm@muc.de>
8704
8705 Make Java try-with-resources statement parse properly.
8706 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
8707 (c-block-stmt-1-2-key): New language constants/variables.
8708 * progmodes/cc-engine.el (c-beginning-of-statement-1)
8709 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
8710 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
8711 with c-block-stmt-1-2-key.
8712
8713 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
8714
8715 * desktop.el (desktop--make-frame): Apply most frame parameters after
8716 creating the frame to force (partially or totally) offscreen frames to
8717 be restored as such.
8718
8719 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
8720
8721 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
8722 (Bug#14948)
8723
8724 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8725
8726 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
8727 `base' arg of backtrace-frame.
8728
8729 2013-07-26 Eli Zaretskii <eliz@gnu.org>
8730
8731 * simple.el (list-processes): Doc fix.
8732
8733 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
8734
8735 * desktop.el (desktop--select-frame):
8736 Try harder to reuse existing frames.
8737
8738 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8739
8740 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
8741 (edebug-eval): Use backtrace-eval.
8742 (edebug--display, edebug--recursive-edit): Don't let-bind the
8743 edebug-outer-* vars that keep track of variables we locally let-bind.
8744 (edebug-outside-excursion): Don't restore outside values of locally
8745 let-bound vars.
8746 (edebug--display): Use user-error.
8747 (cl-lexical-debug, cl-debug-env): Remove.
8748
8749 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
8750
8751 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
8752 are restored to be sure that they are visible before deleting any
8753 remaining ones.
8754
8755 2013-07-26 Matthias Meulien <orontee@gmail.com>
8756
8757 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
8758 vc-print-root-log. (Bug#14948)
8759
8760 2013-07-26 Richard Stallman <rms@gnu.org>
8761
8762 Add aliases for encrypting mail.
8763 * epa.el (epa-mail-aliases): New option.
8764 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
8765 Bind inhibit-read-only so read-only text doesn't ruin everything.
8766 (epa-mail-default-recipients): New subroutine broken out.
8767 Handle epa-mail-aliases.
8768
8769 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8770
8771 Add support for lexical variables to the debugger's `e' command.
8772 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
8773 vars, except for debugger-outer-match-data.
8774 (debugger-frame-number): Move check for "on a function call" from
8775 callers into it. Add `skip-base' argument.
8776 (debugger-frame, debugger-frame-clear): Simplify accordingly.
8777 (debugger-env-macro): Only reset the state stored in non-variables,
8778 i.e. current-buffer and match-data.
8779 (debugger-eval-expression): Rewrite using backtrace-eval.
8780 * subr.el (internal--called-interactively-p--get-frame): Remove.
8781 (called-interactively-p):
8782 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
8783 `base' arg of backtrace-frame instead.
8784
8785 2013-07-26 Glenn Morris <rgm@gnu.org>
8786
8787 * align.el (align-regexp): Doc fix. (Bug#14857)
8788 (align-region): Explicit error if subexpression missing/does not match.
8789
8790 * simple.el (global-visual-line-mode):
8791 Do not duplicate the mode lighter. (Bug#14858)
8792
8793 2013-07-25 Martin Rudalics <rudalics@gmx.at>
8794
8795 * window.el (display-buffer): In display-buffer bind
8796 split-window-keep-point to t, bug#14829.
8797
8798 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
8799
8800 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
8801 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
8802 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
8803 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
8804 Change accordingly.
8805 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
8806 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
8807
8808 2013-07-25 Glenn Morris <rgm@gnu.org>
8809
8810 * dired-x.el (dired-mark-extension): Convert comment to doc string.
8811
8812 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
8813
8814 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
8815 parameter to modify-frame-parameters if the value has not changed;
8816 this is a workaround for bug#14949.
8817 (desktop--make-frame): On cl-delete-if call, check parameter name,
8818 not full parameter.
8819
8820 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
8821
8822 * vc/vc.el (vc-ignore): New function.
8823
8824 * vc/vc-svn.el (vc-svn-ignore): New function.
8825
8826 * vc/vc-hg.el (vc-hg-ignore): New function.
8827
8828 * vc/vc-git.el (vc-git-ignore): New function.
8829
8830 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
8831 (vc-dir-ignore): New function.
8832
8833 * vc/vc-cvs.el (vc-cvs-ignore): New function.
8834 (cvs-append-to-ignore): Move here from pcvs.el.
8835
8836 * vc/vc-bzr.el (vc-bzr-ignore): New function.
8837
8838 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
8839
8840 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
8841
8842 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
8843 (desktop-restore-frames): Warn when deleting an existing frame failed.
8844
8845 2013-07-24 Glenn Morris <rgm@gnu.org>
8846
8847 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
8848
8849 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
8850
8851 * filenotify.el (file-notify-supported-p):
8852 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
8853 Remove functions.
8854
8855 * autorevert.el (auto-revert-use-notify)
8856 (auto-revert-notify-add-watch):
8857 * net/tramp.el (tramp-file-name-for-operation):
8858 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
8859 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8860 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
8861 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
8862 Remove `file-notify-supported-p' entry.
8863
8864 2013-07-24 Glenn Morris <rgm@gnu.org>
8865
8866 * printing.el: Replace all uses of deleted ps-windows-system,
8867 ps-lp-system, ps-flatten-list with lpr- versions.
8868
8869 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
8870
8871 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
8872 checked with memq (bug#14935).
8873
8874 * files.el (revert-buffer-function): Use a non-nil default.
8875 (revert-buffer-preserve-modes): Declare var to
8876 provide access to the `preserve-modes' argument.
8877 (revert-buffer): Let-bind it.
8878 (revert-buffer--default): New function, extracted from revert-buffer.
8879
8880 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
8881
8882 * lpr.el: Signal print errors more prominently.
8883 (print-region-function): Don't default to nil.
8884 (lpr-print-region): New function, extracted from print-region-1.
8885 Check lpr's return value and signal an error in case of problem.
8886 (print-region-1): Use it.
8887 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
8888 versions instead.
8889 (ps-printer-name): Default to nil.
8890 (ps-printer-name-option): Default to lpr-printer-switch.
8891 (ps-print-region-function): Don't default to nil.
8892 (ps-postscript-code-directory): Simplify default.
8893 (ps-do-despool): Use lpr-print-region to properly check the outcome.
8894 (ps-string-list, ps-eval-switch, ps-flatten-list)
8895 (ps-flatten-list-1): Remove.
8896 (ps-multibyte-buffer): Avoid setq.
8897 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
8898 (print-region-function, ps-print-region-function): Don't set them here.
8899
8900 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
8901
8902 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
8903 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
8904 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
8905 (ido-decorations): Doc fix.
8906
8907 * ansi-color.el: Fix old URL.
8908
8909 2013-07-23 Michael R. Mauger <michael@mauger.com>
8910
8911 * progmodes/sql.el: Version 3.3
8912 (sql-product-alist): Improve oracle :prompt-cont-regexp.
8913 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
8914 (sql-interactive-remove-continuation-prompt): Rewrite, use
8915 functions above. Fix continuation prompt and complete output line
8916 handling.
8917 (sql-redirect-one, sql-execute): Use `read-only-mode' on
8918 redirected output buffer.
8919 (sql-mode): Restore deleted code (Bug#13591).
8920
8921 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
8922
8923 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
8924
8925 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
8926
8927 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
8928
8929 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
8930 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8931 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
8932
8933 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
8934
8935 * desktop.el (desktop-clear): Simplify; remove useless checks
8936 against invalid buffer names.
8937 (desktop-list*): Use cl-list*.
8938 (desktop-buffer-info, desktop-create-buffer): Simplify.
8939
8940 2013-07-23 Leo Liu <sdl.web@gmail.com>
8941
8942 * bookmark.el (bookmark-make-record): Restore NAME as a default
8943 value. (Bug#14933)
8944
8945 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
8946
8947 * emacs-lisp/autoload.el (autoload--setup-output): New function,
8948 extracted from autoload--insert-text.
8949 (autoload--insert-text): Remove.
8950 (autoload--print-cookie-text): New function, extracted from
8951 autoload--insert-cookie-text.
8952 (autoload--insert-cookie-text): Remove.
8953 (autoload-generate-file-autoloads): Adjust calls accordingly.
8954
8955 * winner.el (winner-hook-installed-p): Remove.
8956 (winner-mode): Simplify accordingly.
8957
8958 * subr.el (add-to-list): Fix compiler-macro when `append' is
8959 not constant. Don't use `cl-member' for the base case.
8960
8961 * progmodes/subword.el: Fix boundary case (bug#13758).
8962 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
8963 own group.
8964 (subword-backward-regexp): Make it a constant.
8965 (subword-forward-internal): Don't treat a trailing capital as the
8966 beginning of a word.
8967
8968 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
8969
8970 * emacs-lisp/package.el (package-menu-mode): Don't modify the
8971 global value of tabulated-list-revert-hook (bug#14930).
8972
8973 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
8974
8975 * desktop.el: Require 'cl-lib.
8976 (desktop-before-saving-frames-functions): New hook.
8977 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
8978 for frames being saved. Rename from desktop--save-minibuffer-frames.
8979 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
8980 Do not save frames with non-nil `desktop-dont-save' parameter.
8981 Filter out deleted frames.
8982 (desktop--find-frame): Use cl-find-if.
8983 (desktop--select-frame): Use cl-(first|second|third) to access values
8984 of desktop-mini.
8985 (desktop--make-frame): Use cl-delete-if.
8986 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
8987 (desktop-restore-frames): Use cl-(first|second|third) to access values
8988 of desktop-mini. Look for visible frame at the end, not while
8989 restoring frames.
8990
8991 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
8992 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
8993 Use string-match-p, looking-at-p (bug#14927).
8994
8995 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
8996
8997 * desktop.el (desktop-saved-frame-states):
8998 Rename from desktop--saved-states; all users changed.
8999 (desktop-save-frames): Rename from desktop--save-frames.
9000 Do not save state to desktop file.
9001 (desktop-save): Save desktop-saved-frame-states to desktop file
9002 and reset to nil.
9003 (desktop-restoring-frames-p): New function.
9004 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
9005 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
9006 buffer-lists when restoring frames. Suggested by Martin Rudalics.
9007
9008 * desktop.el: Correctly restore iconified frames.
9009 (desktop--filter-iconified-position): New function.
9010 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
9011
9012 2013-07-20 Glenn Morris <rgm@gnu.org>
9013
9014 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
9015 Let `message' do the formatting.
9016 (def-gdb-preempt-display-buffer): Add explicit format.
9017
9018 * image-dired.el (image-dired-track-original-file):
9019 Use with-current-buffer.
9020 (image-dired-track-thumbnail): Use with-current-buffer.
9021 Avoid changing point of wrong window.
9022
9023 * image-dired.el (image-dired-track-original-file):
9024 Avoid changing point of wrong window. (Bug#14909)
9025
9026 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
9027
9028 * progmodes/gdb-mi.el (gdb-done-or-error):
9029 Guard against "%" in gdb output. (Bug#14127)
9030
9031 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
9032
9033 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
9034 (Bug#14826)
9035
9036 * international/mule.el (coding-system-iso-2022-flags): Fix last
9037 change.
9038
9039 2013-07-20 Kenichi Handa <handa@gnu.org>
9040
9041 * international/mule.el (coding-system-iso-2022-flags):
9042 Add `8-bit-level-4'. (Bug#8522)
9043
9044 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
9045
9046 * net/shr.el (shr-mouse-browse-url): New command and keystroke
9047 (bug#14815).
9048
9049 * net/eww.el (eww-process-text-input): Allow inputting when the
9050 point is at the start of the line, as the properties aren't
9051 front-sticky.
9052
9053 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
9054 degenerate widths.
9055
9056 2013-07-19 Richard Stallman <rms@gnu.org>
9057
9058 * epa.el (epa-popup-info-window): Doc fix.
9059
9060 * subr.el (split-string): New arg TRIM.
9061
9062 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
9063
9064 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
9065 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
9066
9067 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
9068
9069 * filenotify.el (file-notify--library): Rename from
9070 `file-notify-support'. Do not autoload. Adapt all uses.
9071 (file-notify-supported-p): New defun.
9072
9073 * autorevert.el (auto-revert-use-notify):
9074 Use `file-notify-supported-p' instead of `file-notify-support'.
9075 Adapt docstring.
9076 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
9077
9078 * net/tramp.el (tramp-file-name-for-operation):
9079 Add `file-notify-supported-p'.
9080
9081 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
9082 New defun.
9083 (tramp-sh-file-name-handler-alist): Add it as handler for
9084 `file-notify-supported-p '.
9085
9086 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
9087 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
9088 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
9089 Add `ignore' as handler for `file-notify-*' functions.
9090
9091 2013-07-17 Eli Zaretskii <eliz@gnu.org>
9092
9093 * simple.el (line-move-partial, line-move): Don't start vscroll or
9094 scroll-up if the current line is not taller than the window.
9095 (Bug#14881)
9096
9097 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
9098
9099 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
9100 highlight question marks in the method names as strings.
9101 (ruby-block-beg-keywords): Inline.
9102 (ruby-font-lock-keyword-beg-re): Extract from
9103 `ruby-font-lock-keywords'.
9104
9105 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
9106
9107 * frame.el (blink-cursor-blinks): New defcustom.
9108 (blink-cursor-blinks-done): New defvar.
9109 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
9110 (blink-cursor-timer-function): Check if number of blinks has been
9111 done on X and NS.
9112 (blink-cursor-suspend, blink-cursor-check): New defuns.
9113
9114 2013-07-15 Glenn Morris <rgm@gnu.org>
9115
9116 * edmacro.el (edmacro-format-keys): Fix previous change.
9117
9118 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
9119
9120 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
9121 The hack didn't work outside English locales anyway.
9122
9123 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
9124
9125 * simple.el (define-alternatives): Rename from alternatives-define,
9126 per RMS' suggestion.
9127
9128 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
9129
9130 * desktop.el (desktop-restore-frames): Change default to t.
9131 (desktop-restore-in-current-display): Now offer more options.
9132 (desktop-restoring-reuses-frames): New customization option.
9133 (desktop--saved-states): Doc fix.
9134 (desktop-filter-parameters-alist): New variable, renamed and expanded
9135 from desktop--excluded-frame-parameters.
9136 (desktop--target-display): New variable.
9137 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
9138 (desktop--filter-tty*, desktop--filter-*-color)
9139 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
9140 (desktop--filter-save-desktop-parm)
9141 (desktop-restore-in-original-display-p): New functions.
9142 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
9143 (desktop--save-minibuffer-frames): New function, inspired by a similar
9144 function from Martin Rudalics.
9145 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
9146 (desktop--restore-in-this-display-p): Remove.
9147 (desktop--find-frame): Rename from desktop--find-frame-in-display
9148 and add predicate argument.
9149 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
9150 (desktop--reuse-list): New variable.
9151 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
9152 New functions.
9153 (desktop--restore-frames): Add support for "minibuffer-special" frames.
9154
9155 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
9156
9157 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
9158
9159 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
9160
9161 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9162 Highlight conversion methods on Kernel.
9163
9164 2013-07-13 Alan Mackenzie <acm@muc.de>
9165
9166 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
9167 and comment it out. This out-commenting enables certain C++
9168 declarations to be parsed correctly.
9169
9170 2013-07-13 Eli Zaretskii <eliz@gnu.org>
9171
9172 * international/mule.el (define-coding-system): Doc fix.
9173
9174 * simple.el (default-font-height): Don't call font-info if the
9175 frame's default font didn't change since the frame was created.
9176 (Bug#14838)
9177
9178 2013-07-13 Leo Liu <sdl.web@gmail.com>
9179
9180 * ido.el (ido-read-file-name): Guard against non-symbol value.
9181
9182 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
9183
9184 * progmodes/python.el (python-imenu--build-tree): Fix corner case
9185 in nested defuns.
9186
9187 2013-07-13 Leo Liu <sdl.web@gmail.com>
9188
9189 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
9190 ido-set-matches call. (Bug#6852)
9191
9192 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
9193
9194 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
9195 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
9196 Ruby 2.0.
9197 (ruby-font-lock-keywords): Distinguish calls to functions with
9198 module-like names from module references. Highlight character
9199 literals.
9200
9201 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
9202
9203 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
9204 (gdb-send): Handle continued commands. (Bug#14847)
9205
9206 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
9207
9208 * desktop.el (desktop--v2s): Remove unused local variable.
9209 (desktop-save-buffer): Make defvar-local; adjust docstring.
9210 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
9211 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
9212
9213 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
9214
9215 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
9216
9217 2013-07-12 Eli Zaretskii <eliz@gnu.org>
9218
9219 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
9220 (Bug#14842)
9221
9222 2013-07-12 Glenn Morris <rgm@gnu.org>
9223
9224 * doc-view.el: Require cl-lib at runtime too.
9225 (doc-view-remove-if): Remove.
9226 (doc-view-search-next-match, doc-view-search-previous-match):
9227 Use cl-remove-if.
9228
9229 * edmacro.el: Require cl-lib at runtime too.
9230 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
9231 (edmacro-mismatch, edmacro-subseq): Remove.
9232
9233 * shadowfile.el: Require cl-lib.
9234 (shadow-remove-if): Remove.
9235 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
9236 Use cl-remove-if.
9237
9238 * wid-edit.el: Require cl-lib.
9239 (widget-choose): Use cl-remove-if.
9240 (widget-remove-if): Remove.
9241
9242 * progmodes/ebrowse.el: Require cl-lib at runtime too.
9243 (ebrowse-delete-if-not): Remove.
9244 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
9245 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
9246 Use cl-delete-if-not.
9247
9248 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
9249
9250 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
9251 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
9252
9253 2013-07-12 Leo Liu <sdl.web@gmail.com>
9254
9255 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
9256
9257 2013-07-11 Glenn Morris <rgm@gnu.org>
9258
9259 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
9260 (edebug-gensym-index, edebug-gensym):
9261 Remove reimplementation of cl-gensym.
9262 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
9263
9264 * thumbs.el: Require cl-lib at run-time too.
9265 (thumbs-gensym-counter, thumbs-gensym):
9266 Remove reimplementation of cl-gensym.
9267 (thumbs-temp-file): Use cl-gensym.
9268
9269 * emacs-lisp/ert.el: Require cl-lib at runtime too.
9270 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
9271 (ert--intersection, ert--set-difference, ert--set-difference-eq)
9272 (ert--union, ert--gensym-counter, ert--gensym-counter)
9273 (ert--coerce-to-vector, ert--remove*, ert--string-position)
9274 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
9275 (ert-make-test-unbound, ert--expand-should-1)
9276 (ert--expand-should, ert--should-error-handle-error)
9277 (should-error, ert--explain-equal-rec)
9278 (ert--plist-difference-explanation, ert-select-tests)
9279 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
9280 Use cl-lib functions rather than reimplementations.
9281
9282 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
9283
9284 * net/tramp.el (tramp-methods): Extend docstring.
9285 (tramp-connection-timeout): New defcustom.
9286 (tramp-error-with-buffer): Reset timestamp only when appropriate.
9287 (with-tramp-progress-reporter): Simplify.
9288 (tramp-process-actions): Improve messages.
9289
9290 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9291 * net/tramp-sh.el (tramp-maybe-open-connection):
9292 Use `tramp-connection-timeout'.
9293 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
9294 (Bug#14808)
9295
9296 2013-07-11 Leo Liu <sdl.web@gmail.com>
9297
9298 * ido.el (ido-read-file-name): Conform to the requirements of
9299 read-file-name. (Bug#11861)
9300 (ido-read-directory-name): Conform to the requirements of
9301 read-directory-name.
9302
9303 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
9304
9305 * subr.el (delay-warning): New function.
9306
9307 2013-07-10 Eli Zaretskii <eliz@gnu.org>
9308
9309 * simple.el (default-line-height): New function.
9310 (line-move-partial, line-move): Use it instead of computing the
9311 line height inline.
9312 (line-move-partial): Always compute ROWH. If the last line is
9313 partially-visible, but its text is completely visible, allow
9314 cursor to enter such a partially-visible line.
9315
9316 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
9317
9318 Improve error messages. (Bug#14808)
9319
9320 * net/tramp.el (tramp-current-connection): New defvar, moved from
9321 tramp-sh.el.
9322 (tramp-message-show-progress-reporter-message): Remove, not
9323 needed anymore.
9324 (tramp-error-with-buffer): Show message in minibuffer.
9325 Discard input before waiting. Reset connection timestamp.
9326 (with-tramp-progress-reporter): Improve messages.
9327 (tramp-process-actions): Use progress reporter. Delete process in
9328 case of error. Improve messages.
9329
9330 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
9331 Call `tramp-error-with-buffer' with vector and buffer.
9332 (tramp-current-connection): Remove.
9333 (tramp-maybe-open-connection): The car of
9334 `tramp-current-connection' are the first 3 slots of the vector.
9335
9336 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
9337
9338 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
9339 inside continued strings.
9340
9341 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
9342
9343 Timestamp fixes for undo (Bug#14824).
9344 * files.el (clear-visited-file-modtime): Move here from fileio.c.
9345
9346 2013-07-10 Leo Liu <sdl.web@gmail.com>
9347
9348 * files.el (require-final-newline): Allow safe local value.
9349 (Bug#14834)
9350
9351 2013-07-09 Leo Liu <sdl.web@gmail.com>
9352
9353 * ido.el (ido-read-directory-name): Handle fallback.
9354 (ido-read-file-name): Update DIR to ido-current-directory.
9355 (Bug#1516)
9356 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
9357
9358 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
9359
9360 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
9361 "autoload". Remove "warn lower camel case" section, previously
9362 commented out. Highlight negation char. Do not highlight the
9363 target in singleton method definitions.
9364
9365 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
9366
9367 * faces.el (tty-setup-hook): Declare the hook.
9368
9369 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
9370 and detect when a guard/pred depends on local vars (bug#14773).
9371 (pcase--u1): Adjust caller.
9372
9373 2013-07-08 Eli Zaretskii <eliz@gnu.org>
9374
9375 * simple.el (line-move-partial, line-move): Account for
9376 line-spacing.
9377 (line-move-partial): Avoid setting vscroll when the last
9378 partially-visible line in window is of default height.
9379
9380 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
9381
9382 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
9383 been used a while.
9384
9385 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
9386
9387 * subr.el (read-quoted-char): Remove unused local variable `char'.
9388
9389 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
9390
9391 * ediff.el (ediff-version): Version update.
9392 (ediff-files-command, ediff3-files-command, ediff-merge-command)
9393 (ediff-merge-with-ancestor-command, ediff-directories-command)
9394 (ediff-directories3-command, ediff-merge-directories-command)
9395 (ediff-merge-directories-with-ancestor-command): New functions.
9396 All are command-line interfaces to ediff: to facilitate calling
9397 Emacs with the appropriate ediff functions invoked.
9398
9399 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
9400 (viper-save-kill-buffer): Check if buffer is modified.
9401
9402 * viper.el (viper-version): Version update.
9403 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
9404
9405 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
9406
9407 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
9408 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
9409 (viper-intercept-ESC-key): Simplify.
9410 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
9411 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
9412 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
9413 (viper-setup-ESC-to-escape): New functions.
9414 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
9415 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
9416
9417 2013-07-07 Eli Zaretskii <eliz@gnu.org>
9418
9419 * simple.el (default-font-height, window-screen-lines):
9420 New functions.
9421 (line-move, line-move-partial): Use them instead of
9422 frame-char-height and window-text-height. This makes scrolling
9423 text smoother when the buffer's default face uses a font that is
9424 different from the frame's default font.
9425
9426 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
9427
9428 * files.el (write-file): Do not display confirm dialog for NS,
9429 it does its own dialog, which can't be canceled (Bug#14578).
9430
9431 2013-07-06 Eli Zaretskii <eliz@gnu.org>
9432
9433 * simple.el (line-move-partial): Adjust the row returned by
9434 posn-at-point for the current window-vscroll. (Bug#14567)
9435
9436 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
9437
9438 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
9439 (tramp-sh-file-inotifywait-process-filter): Handle file names with
9440 spaces.
9441
9442 2013-07-06 Martin Rudalics <rudalics@gmx.at>
9443
9444 * window.el (window-state-put-stale-windows): New variable.
9445 (window--state-put-2): Save list of windows without matching buffer.
9446 (window-state-put): Remove "bufferless" windows if possible.
9447
9448 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
9449
9450 * simple.el (alternatives-define): Remove leftover :group keyword.
9451 Tweak docstring.
9452
9453 2013-07-06 Leo Liu <sdl.web@gmail.com>
9454
9455 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
9456 (ido-enable-virtual-buffers): New variable.
9457 (ido-buffer-internal, ido-toggle-virtual-buffers)
9458 (ido-make-buffer-list): Use it.
9459 (ido-exhibit): Support turning on and off virtual buffers
9460 automatically.
9461
9462 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
9463
9464 * simple.el (alternatives-define): New macro.
9465
9466 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
9467
9468 * subr.el (read-quoted-char): Use read-key.
9469 (sit-for): Let read-event decode tty input (bug#14782).
9470
9471 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
9472
9473 * calendar/todo-mode.el: Add handling of file deletion, both by
9474 mode command and externally. Fix various related bugs.
9475 Clarify Commentary and improve some documentation strings and code.
9476 (todo-delete-file): New command.
9477 (todo-check-file): New function.
9478 (todo-show): Handle external deletion of the file we're trying to
9479 show (bug#14688). Replace called-interactively-p by an optional
9480 prefix argument to avoid problematic interaction with catch form
9481 when byte compiled (bug#14702).
9482 (todo-quit): Handle external deletion of the archive's todo file.
9483 Make sure the buffer that was visiting the archive file is still
9484 live before trying to bury it.
9485 (todo-category-completions): Handle external deletion of any
9486 category completion files.
9487 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
9488 of todo files, in case of external deletion.
9489 (todo-add-file): Replace unnecessary setq by let-binding.
9490 (todo-find-archive): Check whether there are any archives.
9491 Replace unnecessary setq by let-binding.
9492 (todo-archive-done-item): Use find-file-noselect to get the
9493 archive buffer whether or not the archive already exists.
9494 Remove superfluous code. Use file size instead of buffer-file-name to
9495 check if the archive is new; if it is, update list of archives.
9496 (todo-default-todo-file): Allow nil to be a valid value for when
9497 there are no todo files.
9498 (todo-reevaluate-default-file-defcustom): Use corrected definition
9499 of todo-default-todo-file.
9500 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
9501 (todo-delete-category, todo-show-categories-table)
9502 (todo-category-number): Clarify comment.
9503 (todo-filter-items): Clarify documentation string.
9504 (todo-show-current-file, todo-display-as-todo-file)
9505 (todo-reset-and-enable-done-separator): Tweak documentation string.
9506 (todo-done-separator): Make separator length window-width, since
9507 bug#2749 is now fixed.
9508
9509 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
9510
9511 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
9512 Support both "gvfs-monitor-dir" and "inotifywait".
9513 (tramp-sh-file-inotifywait-process-filter): Rename from
9514 `tramp-sh-file-notify-process-filter'.
9515 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9516 (tramp-get-remote-gvfs-monitor-dir): New defuns.
9517
9518 2013-07-05 Leo Liu <sdl.web@gmail.com>
9519
9520 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
9521
9522 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9523
9524 * frame.el (display-pixel-height, display-pixel-width)
9525 (display-mm-height, display-mm-width): Mention behavior on
9526 multi-monitor setups in docstrings.
9527 (w32-display-monitor-attributes-list): Declare function.
9528 (display-monitor-attributes-list): Use it.
9529
9530 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
9531
9532 * filenotify.el: New package.
9533
9534 * autorevert.el (top): Require filenotify.el.
9535 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
9536 instead.
9537 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
9538 (auto-revert-notify-handler): Use `file-notify-*' functions.
9539
9540 * subr.el (file-notify-handle-event): Move function to filenotify.el.
9541
9542 * net/tramp.el (tramp-file-name-for-operation):
9543 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
9544
9545 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
9546 for `file-notify-add-watch' and `file-notify-rm-watch'.
9547 (tramp-process-sentinel): Improve trace.
9548 (tramp-sh-handle-file-notify-add-watch)
9549 (tramp-sh-file-notify-process-filter)
9550 (tramp-sh-handle-file-notify-rm-watch)
9551 (tramp-get-remote-inotifywait): New defuns.
9552
9553 2013-07-03 Juri Linkov <juri@jurta.org>
9554
9555 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
9556 call of `occur-read-primary-args' to interactive spec.
9557
9558 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
9559 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
9560
9561 2013-07-03 Matthias Meulien <orontee@gmail.com>
9562
9563 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
9564 `Buffer-menu-multi-occur'. Add it to the menu.
9565 (Buffer-menu-mode): Document it in docstring.
9566 (Buffer-menu-multi-occur): New command. (Bug#14673)
9567
9568 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
9569
9570 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
9571 keywords and built-ins.
9572
9573 2013-07-03 Glenn Morris <rgm@gnu.org>
9574
9575 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
9576
9577 Make info-xref checks case-sensitive by default
9578 * info.el (Info-find-node, Info-find-in-tag-table)
9579 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
9580 Add option for exact case matching of nodes.
9581 * info-xref.el (info-xref): New custom group.
9582 (info-xref-case-fold): New option.
9583 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
9584
9585 2013-07-03 Leo Liu <sdl.web@gmail.com>
9586
9587 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
9588
9589 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
9590
9591 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
9592 middle of block statement initially, lower the depth. Remove
9593 FIXME comment, not longer valid. Remove middle of block statement
9594 detection, no need to do that anymore since we've been using
9595 `ruby-parse-region' here.
9596
9597 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
9598
9599 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
9600
9601 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
9602
9603 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
9604
9605 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
9606
9607 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
9608 (desktop-restore-in-current-display): New customization option.
9609 (desktop--excluded-frame-parameters): Add `font'.
9610 (desktop--save-frames): Rename from desktop--save-windows.
9611 (desktop--restore-in-this-display-p): New function.
9612 (desktop--make-full-frame): Remove unwanted width/height from
9613 full(width|height) frames.
9614 (desktop--restore-frames): Rename from desktop--restore-windows.
9615 Obey desktop-restore-current-display. Do not delete old frames or
9616 select a new frame unless we were able to restore at least one frame.
9617
9618 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
9619
9620 * files.el (find-file-noselect): Simplify conditional expression.
9621
9622 * textmodes/remember.el (remember-append-to-file):
9623 Don't mix `find-buffer-visiting' and `get-file-buffer'.
9624
9625 Add `remember-notes' function to store random notes across Emacs
9626 restarts.
9627 * textmodes/remember.el (remember-data-file): Add :set callback to
9628 affect notes buffer (if any).
9629 (remember-notes): New command.
9630 (remember-notes-buffer-name, bury-remember-notes-on-kill):
9631 New defcustoms for the `remember-notes' function.
9632 (remember-notes-save-and-bury-buffer): New command.
9633 (remember-notes-mode-map): New variable.
9634 (remember-mode): New minor mode.
9635 (remember-notes--kill-buffer-query): New function.
9636 * startup.el (initial-buffer-choice): Add notes to custom type.
9637
9638 2013-06-30 Eli Zaretskii <eliz@gnu.org>
9639
9640 * bindings.el (right-char, left-char): Don't call sit-for, this is
9641 no longer needed. Use arithmetic comparison only for numerical
9642 arguments.
9643
9644 * international/mule-cmds.el (select-safe-coding-system):
9645 Handle the case of FROM being a string correctly. (Bug#14755)
9646
9647 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9648
9649 * net/shr.el (shr-make-table-1): Add a sanity check that allows
9650 progression on degenerate tables.
9651 (shr-rescale-image): ImageMagick animated images currently don't work.
9652
9653 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
9654
9655 Some fixes and improvements for desktop frame restoration.
9656 It is still experimental and disabled by default.
9657 * desktop.el (desktop--save-windows): Put the selected frame at
9658 the head of the list.
9659 (desktop--make-full-frame): New function.
9660 (desktop--restore-windows): Try to re-select the frame that was
9661 selected upon saving. Do not abort if some frames fail to restore,
9662 just show an error message and continue. Set up maximized frames
9663 so they have default non-maximized dimensions.
9664
9665 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
9666
9667 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
9668 Don't start heredoc inside a string or comment.
9669
9670 2013-06-29 Eli Zaretskii <eliz@gnu.org>
9671
9672 * bindings.el (visual-order-cursor-movement): New defcustom.
9673 (right-char, left-char): Provide visual-order cursor motion by
9674 calling move-point-visually. Update the doc strings.
9675
9676 2013-06-28 Kenichi Handa <handa@gnu.org>
9677
9678 * international/mule.el (define-coding-system): New coding system
9679 properties :inhibit-null-byte-detection,
9680 :inhibit-iso-escape-detection, and :prefer-utf-8.
9681 (set-buffer-file-coding-system): If :charset-list property of
9682 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
9683 appropriate for setting.
9684
9685 * international/mule-cmds.el (select-safe-coding-system):
9686 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
9687 multibyte characters, return utf-8 (or one of its siblings).
9688
9689 * international/mule-conf.el (prefer-utf-8): New coding system.
9690 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
9691 files.
9692
9693 2013-06-28 Ivan Kanis <ivan@kanis.fr>
9694
9695 * net/shr.el (shr-render-region): New function.
9696
9697 * net/eww.el: Autoload `eww-browse-url'.
9698
9699 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
9700
9701 * emacs-lisp/package-x.el (package-upload-buffer-internal):
9702 Adapt to `package-desc-version' being a list.
9703 Use `package--ac-desc-version' to retrieve version from a package
9704 archive element.
9705
9706 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
9707
9708 New experimental feature to save&restore window and frame setup.
9709 * desktop.el (desktop-save-windows): New defcustom.
9710 (desktop--saved-states): New var.
9711 (desktop--excluded-frame-parameters): New defconst.
9712 (desktop--filter-frame-parms, desktop--find-frame-in-display)
9713 (desktop--restore-windows, desktop--save-windows): New functions.
9714 (desktop-save): Call `desktop--save-windows'.
9715 (desktop-read): Call `desktop--restore-windows'.
9716
9717 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9718
9719 * net/shr.el (add-face-text-property): Remove compat definition.
9720
9721 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
9722
9723 * info.el (Info-try-follow-nearest-node): Move search for footnote
9724 above search for node name to prevent missing a footnote (bug#14717).
9725
9726 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
9727
9728 * obsolete/otodo-mode.el: Add obsolescence info to file header.
9729
9730 2013-06-27 Leo Liu <sdl.web@gmail.com>
9731
9732 * net/eww.el (eww-read-bookmarks): Check file size.
9733
9734 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
9735
9736 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
9737 advice--pending if newdef is nil or an autoload (bug#13820).
9738 (advice-mapc): New function.
9739
9740 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
9741
9742 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
9743 probably.
9744 (eww-mode-map): Add a menu bar.
9745 (eww-add-bookmark): New command.
9746 (eww-bookmark-mode): New mode and commands.
9747 (eww-add-bookmark): Remove newlines from the title.
9748 (eww-bookmark-browse): Don't bug out if it's the only window.
9749
9750 2013-06-26 Glenn Morris <rgm@gnu.org>
9751
9752 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
9753 (hfy-size): Handle ttys. (Bug#14668)
9754
9755 * info-xref.el: Update for Texinfo 5 change in *note format.
9756 (info-xref-node-re, info-xref-note-re): New constants.
9757 (info-xref-check-buffer): Use info-xref-note-re.
9758
9759 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
9760
9761 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
9762
9763 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
9764 nil terminate the loop (bug#14718).
9765
9766 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9767
9768 * net/eww.el: Rework history traversal. When going forward/back,
9769 put these actions into the history, too, so that they can be
9770 replayed.
9771 (eww-render): Move the history reset to the correct buffer.
9772
9773 2013-06-25 Juri Linkov <juri@jurta.org>
9774
9775 * files-x.el (modify-dir-local-variable): Change the header comment
9776 in the file with directory local variables. (Bug#14692)
9777
9778 * files-x.el (read-file-local-variable-value): Add `default'.
9779 (Bug#14710)
9780
9781 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9782
9783 * net/eww.el (eww-make-unique-file-name): Create a unique file
9784 name before saving to entering `y' accidentally asynchronously.
9785
9786 2013-06-25 Ivan Kanis <ivan@kanis.fr>
9787
9788 * net/eww.el (eww-download): New command and keystroke.
9789
9790 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9791
9792 * net/eww.el (eww-copy-page-url): Change name of command.
9793
9794 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
9795 be more consistent with Info and dired.
9796
9797 * net/eww.el (eww-mode-map): Ditto.
9798
9799 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9800
9801 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
9802 packages from archives.
9803 (package-archive-contents): Change format; include obsolete packages.
9804 (package-desc): Use `dir' to mark builtin packages.
9805 (package--from-builtin): Set the `dir' field to `builtin'.
9806 (generated-autoload-file, version-control): Declare.
9807 (package-compute-transaction): Change first arg and return value to be
9808 lists of package-descs. Adjust to new package-archive-contents format.
9809 (package--add-to-archive-contents): Adjust to new
9810 package-archive-contents format.
9811 (package-download-transaction): Arg is now a list of package-descs.
9812 (package-install): If `pkg' is a package name, pass it as
9813 a requirement, so it is subject to the usual (e.g. disabled) checks.
9814 (describe-package): Accept package-desc as well.
9815 (describe-package-1): Describe a specific package-desc. Add links to
9816 other package-descs for the same package name.
9817 (package-menu-describe-package): Pass the actual package-desc.
9818 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
9819 works correctly.
9820 (package-desc-status): New function.
9821 (package-menu--refresh): New function, extracted
9822 from package-menu--generate.
9823 (package-menu--generate): Use it.
9824 (package-delete): Update package-alist.
9825 (package-menu-execute): Don't call package-initialize.
9826
9827 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
9828 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
9829 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
9830 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
9831 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
9832 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
9833
9834 2013-06-25 Martin Rudalics <rudalics@gmx.at>
9835
9836 * window.el (window--state-get-1): Workaround for bug#14527.
9837 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
9838
9839 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9840
9841 * net/eww.el (eww-back-url): Implement the history by stashing all
9842 the data into a list.
9843 (eww-forward-url): Allow going forward in the history, too.
9844
9845 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9846
9847 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
9848 for values and use read--expression for expressions (bug#14710).
9849 (read-file-local-variable): Avoid setq.
9850 (read-file-local-variable-mode): Use minor-mode-list.
9851
9852 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9853
9854 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
9855 for DOI URLs.
9856
9857 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9858
9859 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
9860 Update imenu-support when dialect changes.
9861
9862 2013-06-25 Leo Liu <sdl.web@gmail.com>
9863
9864 * ido.el (ido-read-internal): Allow forward slash on windows.
9865
9866 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
9867
9868 * net/eww.el (eww): Start of strings is \\`, not ^.
9869
9870 2013-06-24 Ivan Kanis <ivan@kanis.fr>
9871
9872 * net/shr.el (shr-browse-url): Fix interactive spec.
9873
9874 * net/eww.el (eww): Add a trailing slash to domain names.
9875
9876 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
9877
9878 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
9879
9880 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
9881
9882 * net/shr.el (shr-browse-url): Use an external browser if given a
9883 prefix.
9884
9885 * net/eww.el (eww-external-browser): Move to shr.
9886
9887 2013-06-24 Ivan Kanis <ivan@kanis.fr>
9888
9889 * net/eww.el (eww): Work more correctly for file: URLs.
9890 (eww-detect-charset): Allow quoted charsets.
9891 (eww-yank-page-url): New command and keystroke.
9892
9893 2013-06-24 Daiki Ueno <ueno@gnu.org>
9894
9895 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
9896 file name of gpg executable.
9897 (epg-context-program): New function.
9898 (epg-context-home-directory): New function.
9899 (epg-context-set-program): New function.
9900 (epg-context-set-home-directory): New function.
9901 (epg--start): Use `epg-context-program' instead of
9902 'epg-gpg-program'.
9903 (epg--list-keys-1): Likewise.
9904
9905 2013-06-24 Leo Liu <sdl.web@gmail.com>
9906
9907 * ido.el (ido-read-internal): Fix bug#14620.
9908
9909 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
9910
9911 * faces.el (face-documentation): Simplify.
9912 (read-face-attribute, tty-find-type, x-resolve-font-name):
9913 Use `string-match-p'.
9914 (list-faces-display): Use `string-match-p'. Simplify.
9915 (face-spec-recalc): Check face to avoid face alias loops.
9916 (read-color): Use `string-match-p' and non-capturing parenthesis.
9917
9918 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
9919
9920 * net/shr.el (shr-rescale-image): Use the new
9921 :max-width/:max-height functionality.
9922
9923 2013-06-23 Ivan Kanis <ivan@kanis.fr>
9924
9925 * net/eww.el (eww-search-prefix): New variable.
9926 (eww): Use it.
9927 (eww-external-browser): New variable.
9928 (eww-mode-map): New keystroke.
9929 (eww-browse-with-external-browser): New command.
9930
9931 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
9932
9933 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
9934
9935 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
9936 Don't skip aligning the next header field when padding is 0;
9937 otherwise, field width is not respected unless the title is as
9938 wide as the field.
9939
9940 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9941
9942 * emacs-lisp/package.el (package-el-version): Remove.
9943 (package-process-define-package): Fix inf-loop.
9944 (package-install): Allow symbols as arguments again.
9945
9946 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
9947
9948 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
9949 add some more keyword-like methods.
9950 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
9951
9952 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
9953
9954 * bs.el (bs-buffer-show-mark): Make defvar-local.
9955 (bs-mode): Use setq-local.
9956
9957 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
9958 (emacs-lock--try-unlocking): Make defvar-local.
9959
9960 2013-06-22 Glenn Morris <rgm@gnu.org>
9961
9962 * play/cookie1.el (cookie-apropos): Minor simplification.
9963
9964 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
9965
9966 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
9967
9968 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
9969 `regexp-opt', it breaks the build during dumping.
9970
9971 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
9972
9973 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9974 Highlight keyword-like methods on Kernel and Module with
9975 font-lock-builtin-face.
9976 (auto-mode-alist): Consolidate different entries into one regexp
9977 and add more *file-s.
9978
9979 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
9980
9981 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
9982
9983 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
9984 (diary-entry): Use it in the action of this button type instead of
9985 diary-goto-entry.
9986
9987 * calendar/todo-mode.el: New version.
9988 (todo-add-category): Append new category to end of file and give
9989 it the highest number, instead of putting it at the beginning and
9990 giving it 0. Incorporate noninteractive functionality.
9991 (todo-forward-category): Adapt to 1-based category numbering.
9992 Allow skipping over archived categories.
9993 (todo-backward-category): Derive from todo-forward-category.
9994 (todo-backward-item, todo-forward-item): Make noninteractive and
9995 delegate interactive part to new commands. Make sensitive to done items.
9996 (todo-categories): Make value an alist of category names and
9997 vectors of item counts.
9998 (todo-category-beg): Make a defconst.
9999 (todo-category-number): Use 1 instead of 0 as initial value.
10000 (todo-category-select): Make sensitive to overlays, optional item
10001 highlighting and done items.
10002 (todo-delete-item): Make sensitive to overlays and marked and done items.
10003 (todo-edit-item): Make sensitive to overlays and editing of
10004 date/time header optional. Add format checks.
10005 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
10006 no-op if point is not on an item. Advertise using todo-edit-quit.
10007 (todo-edit-mode): Make sensitive to new format, font-locking, and
10008 multiple todo files.
10009 (todo-insert-item, todo-insert-item-here): Derive from
10010 todo-basic-insert-item and extend functionality.
10011 (todo-item-end, todo-item-start): Make sensitive to done items.
10012 (todo-item-string): Don't return text properties. Restore point.
10013 (todo-jump-to-category): Make sensitive to multiple todo files and
10014 todo archives. Use extended category completion.
10015 (todo-lower-item, todo-raise-item): Rename to *-priority and
10016 derive from todo-set-item-priority.
10017 (todo-mode): Derive from special-mode. Make sensitive to new
10018 format, font-locking and multiple todo files. Make read-only.
10019 (todo-mode-map): Don't suppress digit keys, so they can supply
10020 prefix arguments. Add many new key bindings.
10021 (todo-prefix): Insert as an overlay instead of file text.
10022 Change semantics from diary date expression to purely visual mark.
10023 (todo-print): Rename to todo-print-buffer. Make buffer display
10024 features printable. Remove option to restrict number of items
10025 printed. Add option to print to file.
10026 (todo-print-function): Rename to todo-print-buffer-function.
10027 (todo-quit): Extend to handle exiting new todo modes.
10028 (todo-remove-item): Make sensitive to overlays.
10029 (todo-save): Extend to buffers of filtered items.
10030 (todo-show): Make sensitive to done items, multiple todo files and
10031 new todo modes. Offer to convert legacy todo file before creating
10032 first new todo file.
10033 (todo-show-priorities): Rename to todo-top-priorities.
10034 Change semantics of value 0.
10035 (todo-top-priorities): Rename to todo-filter-top-priorities,
10036 derive from todo-filter-items and extend functionality.
10037 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
10038 and extend functionality to other types of filtered items.
10039 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
10040 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
10041 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
10042 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
10043 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
10044 (todo-edit-mode-hook, todo-entry-prefix-function)
10045 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
10046 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
10047 (todo-initials, todo-insert-threshold, todo-item-string-start)
10048 (todo-line-string, todo-menu, todo-mode-hook)
10049 (todo-more-important-p, todo-previous-answer, todo-previous-line)
10050 (todo-print-priorities, todo-remove-separator)
10051 (todo-save-top-priorities-too, todo-string-count-lines)
10052 (todo-string-multiline-p, todo-time-string-format)
10053 (todo-tmp-buffer-name): Remove.
10054 (todo-add-file, todo-archive-done-item, todo-choose-archive)
10055 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
10056 (todo-edit-category-diary-inclusion)
10057 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
10058 (todo-edit-file, todo-edit-item-date-day)
10059 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
10060 (todo-edit-item-date-month, todo-edit-item-date-to-today)
10061 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
10062 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
10063 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
10064 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
10065 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
10066 (todo-filter-top-priorities-multifile, todo-find-archive)
10067 (todo-find-filtered-items-file, todo-go-to-source-item)
10068 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
10069 (todo-jump-to-archive-category, todo-lower-category)
10070 (todo-mark-category, todo-marked-item-p, todo-merge-category)
10071 (todo-move-category, todo-move-item, todo-next-button)
10072 (todo-next-item, todo-padded-string, todo-powerset)
10073 (todo-previous-button, todo-previous-item)
10074 (todo-print-buffer-to-file, todo-raise-category)
10075 (todo-rename-category, todo-repair-categories-sexp, todo-search)
10076 (todo-set-category-number, todo-set-item-priority)
10077 (todo-set-top-priorities-in-category)
10078 (todo-set-top-priorities-in-file, todo-show-categories-table)
10079 (todo-sort-categories-alphabetically-or-numerically)
10080 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
10081 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
10082 (todo-toggle-item-header, todo-toggle-item-highlighting)
10083 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
10084 (todo-toggle-view-done-items, todo-toggle-view-done-only)
10085 (todo-unarchive-items, todo-unmark-category): New commands.
10086 (todo-absolute-file-name, todo-add-to-buffer-list)
10087 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
10088 (todo-basic-insert-item, todo-category-completions)
10089 (todo-category-number, todo-category-string-matcher-1)
10090 (todo-category-string-matcher-2, todo-check-filtered-items-file)
10091 (todo-check-format, todo-clear-matches)
10092 (todo-comment-string-matcher, todo-convert-legacy-date-time)
10093 (todo-current-category, todo-date-string-matcher)
10094 (todo-define-insertion-command, todo-diary-expired-matcher)
10095 (todo-diary-goto-entry, todo-diary-item-p)
10096 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
10097 (todo-display-categories, todo-display-sorted, todo-done-item-p)
10098 (todo-done-item-section-p, todo-done-separator)
10099 (todo-done-string-matcher, todo-files, todo-filter-items)
10100 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
10101 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
10102 (todo-insert-category-line, todo-insert-item-from-calendar)
10103 (todo-insert-sort-button, todo-insert-with-overlays)
10104 (todo-insertion-command-name, todo-insertion-key-bindings)
10105 (todo-label-to-key, todo-longest-category-name-length)
10106 (todo-make-categories-list, todo-mode-external-set)
10107 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
10108 (todo-modes-set-3, todo-multiple-filter-files)
10109 (todo-nondiary-marker-matcher, todo-prefix-overlays)
10110 (todo-read-category, todo-read-date, todo-read-dayname)
10111 (todo-read-file-name, todo-read-time)
10112 (todo-reevaluate-category-completions-files-defcustom)
10113 (todo-reevaluate-default-file-defcustom)
10114 (todo-reevaluate-filelist-defcustoms)
10115 (todo-reevaluate-filter-files-defcustom)
10116 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
10117 (todo-reset-done-separator, todo-reset-done-separator-string)
10118 (todo-reset-done-string, todo-reset-global-current-todo-file)
10119 (todo-reset-highlight-item, todo-reset-nondiary-marker)
10120 (todo-reset-prefix, todo-set-categories)
10121 (todo-set-date-from-calendar, todo-set-show-current-file)
10122 (todo-set-top-priorities, todo-short-file-name)
10123 (todo-show-current-file, todo-sort, todo-time-string-matcher)
10124 (todo-total-item-counts, todo-update-buffer-list)
10125 (todo-update-categories-display, todo-update-categories-sexp)
10126 (todo-update-count, todo-validate-name, todo-y-or-n-p):
10127 New functions.
10128 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
10129 New major modes.
10130 (todo-categories, todo-display, todo-edit, todo-faces)
10131 (todo-filtered): New defgroups.
10132 (todo-archived-only, todo-button, todo-category-string, todo-date)
10133 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
10134 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
10135 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
10136 (todo-add-item-if-new-category, todo-always-add-time-string)
10137 (todo-categories-align, todo-categories-archived-label)
10138 (todo-categories-category-label, todo-categories-diary-label)
10139 (todo-categories-done-label, todo-categories-number-separator)
10140 (todo-categories-todo-label, todo-categories-totals-label)
10141 (todo-category-completions-files, todo-completion-ignore-case)
10142 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
10143 (todo-done-separator-string, todo-done-string)
10144 (todo-files-function, todo-filter-done-items, todo-filter-files)
10145 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
10146 (todo-initial-category, todo-initial-file, todo-item-mark)
10147 (todo-legacy-date-time-regexp, todo-mode-line-function)
10148 (todo-nondiary-marker, todo-number-prefix)
10149 (todo-print-buffer-function, todo-show-current-file)
10150 (todo-show-done-only, todo-show-first, todo-show-with-done)
10151 (todo-skip-archived-categories, todo-top-priorities-overrides)
10152 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
10153 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
10154 New defcustoms.
10155 (todo-category-done, todo-date-pattern, todo-date-string-start)
10156 (todo-diary-items-buffer, todo-done-string-start)
10157 (todo-filtered-items-buffer, todo-item-start)
10158 (todo-month-abbrev-array, todo-month-name-array)
10159 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
10160 (todo-top-priorities-buffer): New defconsts.
10161 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
10162 (todo-categories-with-marks, todo-category-string-face)
10163 (todo-comment-face, todo-comment-string, todo-current-todo-file)
10164 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
10165 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
10166 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
10167 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
10168 (todo-font-lock-keywords, todo-global-current-todo-file)
10169 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
10170 (todo-insertion-commands-args)
10171 (todo-insertion-commands-args-genlist)
10172 (todo-insertion-commands-names, todo-insertion-map)
10173 (todo-key-bindings-t, todo-key-bindings-t+a)
10174 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
10175 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
10176 (todo-nondiary-face, todo-print-buffer, todo-time-face)
10177 (todo-visited): New variables.
10178
10179 2013-06-21 Glenn Morris <rgm@gnu.org>
10180
10181 * play/cookie1.el (cookie-apropos): Add optional display argument.
10182 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
10183 (psychoanalyze-pinhead): Use cookie-doctor.
10184
10185 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
10186
10187 * emacs-lisp/package.el (tar-get-file-descriptor)
10188 (tar--extract): Declare.
10189
10190 2013-06-21 Eduard Wiebe <usenet@pusto.de>
10191
10192 Extend flymake's warning predicate to be a function (bug#14217).
10193 * progmodes/flymake.el (flymake-warning-predicate): New.
10194 (flymake-parse-line): Use it.
10195 (flymake-warning-re): Make obsolete alias to
10196 `flymake-warning-predicate'.
10197
10198 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10199
10200 * emacs-lisp/package.el (package-alist): Include obsolete packages.
10201 (package-obsolete-list): Remove.
10202 (package-activate): Remove min-version argument. Add `force' argument.
10203 Adjust to new package-alist format.
10204 (package-mark-obsolete): Remove.
10205 (package-unpack): Force reload of the package's autoloads.
10206 (package-installed-p): Check builtins if the installed package is not
10207 recent enough.
10208 (package-initialize): Don't reset package-obsolete-list.
10209 Don't specify which package version to activate.
10210 (package-process-define-package, describe-package-1)
10211 (package-menu--generate): Adjust to new package-alist format.
10212
10213 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
10214
10215 * allout-widgets.el (allout-widgets-mode-off)
10216 (allout-widgets-mode-on, allout-widgets-pre-command-business)
10217 (allout-widgets-post-command-business)
10218 (allout-widgets-after-copy-or-kill-function)
10219 (allout-widgets-after-undo-function, allout-test-range-overlaps)
10220 (allout-decorate-item-and-context)
10221 (allout-graphics-modification-handler): Fix typos in docstrings.
10222 (allout-get-or-create-parent-widget): Use `looking-at-p'.
10223
10224 * cmuscheme.el (scheme-start-file): Doc fix.
10225 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
10226 (scheme-input-filter): Use `string-match-p'.
10227
10228 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
10229
10230 * dired-x.el: Use Dired consistently in docstrings.
10231
10232 * dired.el: Use Dired consistently in docstrings.
10233 (dired-readin, dired-mode): Use `setq-local'.
10234 (dired-switches-alist): Make defvar-local.
10235 (dired-buffers-for-dir): Use `zerop'.
10236 (dired-safe-switches-p, dired-switches-escape-p)
10237 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
10238 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
10239 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
10240 (dired-goto-next-nontrivial-file): Use `string-match-p'.
10241 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
10242 (dired-toggle-marks, dired-mark-files-containing-regexp)
10243 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
10244 (dired-flag-auto-save-files, dired-flag-backup-files):
10245 Use `looking-at-p'.
10246 (dired-mark-files-regexp, dired-build-subdir-alist):
10247 Use `string-match-p', `looking-at-p'.
10248
10249 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
10250 (direct-print-region-helper): Use `string-match-p'.
10251
10252 2013-06-21 Leo Liu <sdl.web@gmail.com>
10253
10254 * comint.el (comint-redirect-results-list-from-process):
10255 Fix infinite loop.
10256
10257 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10258
10259 * net/eww.el (eww-update-header-line-format): Quote % characters.
10260
10261 2013-06-21 Glenn Morris <rgm@gnu.org>
10262
10263 * play/cookie1.el (cookie): New custom group.
10264 (cookie-file): New option.
10265 (cookie-check-file): New function.
10266 (cookie): Make it interactive. Make start and end messages optional.
10267 Interactively, display the result. Default to cookie-file.
10268 (cookie-insert): Default to cookie-file.
10269 (cookie-snarf): Make start and end messages optional.
10270 Default to cookie-file. Use with-temp-buffer.
10271 (cookie-read): Rename from read-cookie.
10272 Make start and end messages optional. Default to cookie-file.
10273 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
10274 Do not autoload it.
10275 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
10276 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
10277
10278 2013-06-21 Leo Liu <sdl.web@gmail.com>
10279
10280 * progmodes/octave.el (octave-mode): Backward compatibility fix.
10281
10282 2013-06-21 Glenn Morris <rgm@gnu.org>
10283
10284 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
10285
10286 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10287 Daniel Hackney <dan@haxney.org>
10288
10289 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
10290 Consolidate the single-file vs tarball code.
10291 (package-desc-suffix): New function.
10292 (package-desc-full-name): Don't bother inlining it.
10293 (package-load-descriptor): Return the new package-desc.
10294 (package-mark-obsolete): Remove unused arg `package'.
10295 (package-unpack): Make it work for single files as well.
10296 Make it update package-alist.
10297 (package--make-autoloads-and-stuff): Rename from
10298 package--make-autoloads-and-compile. Don't compile any more.
10299 (package--compile): New function.
10300 (package-generate-description-file): New function, extracted from
10301 package-unpack-single.
10302 (package-unpack-single): Remove.
10303 (package--with-work-buffer): Add indentation and debugging info.
10304 (package-download-single): Remove.
10305 (package-install-from-archive): Rename from package-download-tar, make
10306 it take a pkg-desc, and make it work for single files as well.
10307 (package-download-transaction): Simplify.
10308 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
10309 external tar program.
10310 (package-install-from-buffer): Remove `pkg-desc' argument.
10311 Use package-tar-file-info for tar-mode buffers.
10312 (package-install-file): Simplify accordingly.
10313 (package-archive-base): Change to take a pkg-desc.
10314 * tar-mode.el (tar--check-descriptor): New function, extracted from
10315 tar-get-descriptor.
10316 (tar-get-descriptor): Use it.
10317 (tar-get-file-descriptor): New function.
10318 (tar--extract): New function, extracted from tar-extract.
10319 (tar--extract): Use it.
10320 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
10321 case the summary uses non-ascii. Adjust to new calling convention of
10322 package-tar-file-info.
10323
10324 2013-06-21 Leo Liu <sdl.web@gmail.com>
10325
10326 * comint.el (comint-redirect-results-list-from-process):
10327 Fix random delay. (Bug#14681)
10328
10329 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
10330
10331 * profiler.el (profiler-format-number): Use log, not log10.
10332
10333 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
10334
10335 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
10336
10337 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10338
10339 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
10340 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
10341 yet available.
10342 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
10343 (AUTOGENEL): ... here.
10344 * emacs-lisp/cl-macs.el (cl--sublis): New function.
10345 (cl--defsubst-expand): Use it.
10346
10347 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
10348
10349 * subr.el (log10): Move here from C code, and declare as obsolete.
10350 All uses of (log10 X) replaced with (log X 10).
10351
10352 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
10353
10354 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
10355 Declare with `defvar-local'.
10356 (tabulated-list-use-header-line, tabulated-list-entries)
10357 (tabulated-list-padding, tabulated-list-printer)
10358 (tabulated-list-sort-key): Declare with `defvar-local'.
10359 (tabulated-list-init-header, tabulated-list-print-fake-header):
10360 Use `setq-local'.
10361
10362 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
10363
10364 * arc-mode.el (archive-mode): Add `archive-write-file' to
10365 `write-contents-functions' also for remote files. (Bug#14652)
10366
10367 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
10368
10369 * cus-edit.el (custom-commands): Fix typos.
10370 (custom-display): Fix tooltip text.
10371 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
10372 Fix typos in docstrings.
10373 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
10374 (custom-unlispify-menu-entry, custom-magic-value-create)
10375 (custom-add-see-also, custom-group-value-create): Use ?\s.
10376 (custom-guess-type, customize-apropos, editable-field)
10377 (custom-face-value-create): Use `string-match-p'.
10378 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
10379
10380 * custom.el (custom-load-symbol): Use `string-match-p'.
10381
10382 * ansi-color.el: Convert to lexical binding.
10383 (ansi-colors): Fix URL.
10384 (ansi-color-context, ansi-color-context-region): Use defvar-local.
10385 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
10386 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
10387
10388 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10389
10390 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
10391
10392 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
10393
10394 2013-06-19 Tom Tromey <tromey@redhat.com>
10395
10396 * net/eww.el (eww-top-url): Remove.
10397 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
10398 (eww-render): Set new variables. Don't set eww-top-url.
10399 (eww-handle-link): Handle "prev", "home", and "contents".
10400 Downcase the rel text.
10401 (eww-top-url): Choose best top URL.
10402
10403 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10404
10405 * net/eww.el: Rewrite to implement form elements "by hand" instead of
10406 relying in widget.el. Using widget.el leads to too many
10407 user interface inconsistencies.
10408 (eww-self-insert): Implement entering commands in text fields.
10409 (eww-process-text-input): New function to make text input field editing
10410 work.
10411 (eww-submit): Rewrite to use the new-style form methods.
10412 (eww-select-display): Display the correct selected item.
10413 (eww-change-select): Implement changing the select value.
10414 (eww-toggle-checkbox): Implement radio/checkboxes.
10415 (eww-update-field): Fix compilation error.
10416 (eww-tag-textarea): Implement <textarea>.
10417
10418 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
10419 we don't shadow mode-specific bindings.
10420
10421 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
10422 nothing to push.
10423
10424 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
10425
10426 2013-06-19 Glenn Morris <rgm@gnu.org>
10427
10428 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
10429
10430 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
10431
10432 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
10433 not needed.
10434
10435 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
10436
10437 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10438
10439 * net/browse-url.el (browse-url-browser-function):
10440 `eww-browse-url' has the right calling signature, `eww' does not.
10441
10442 2013-06-19 Glenn Morris <rgm@gnu.org>
10443
10444 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
10445 Only eval autoloaded macros.
10446 (byte-compile-autoload): Only give the macro warning for macros.
10447
10448 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
10449 (ps-underlined-faces): Declare.
10450
10451 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
10452 (speedbar-add-supported-extension): Declare.
10453
10454 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
10455 Don't include a date stamp in the header of the generated file;
10456 it leads to needless differences between output files.
10457
10458 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
10459
10460 * net/secrets.el (secrets-struct-secret-content-type):
10461 Replace check of introspection data by a test call of "CreateItem".
10462 Some servers do not offer introspection.
10463
10464 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10465
10466 * electric.el (electric-pair-mode): Improve interaction with
10467 electric-layout-mode.
10468 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
10469 (electric-pair-syntax): Use text-mode-syntax-table in comments
10470 and strings.
10471 (electric-pair--insert): New function.
10472 (electric-pair-post-self-insert-function): Use it and
10473 electric--after-char-pos.
10474
10475 2013-06-19 Leo Liu <sdl.web@gmail.com>
10476
10477 * progmodes/octave.el (octave-help): Fix regexp.
10478
10479 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10480
10481 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
10482 (shr-table-horizontal-line): Allow nil as a value, and change the
10483 default.
10484 (shr-insert-table-ruler): Respect the nil value.
10485
10486 2013-06-18 Tom Tromey <tromey@barimba>
10487
10488 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
10489 New defvars.
10490 (eww-open-file): New defun.
10491 (eww-render): Initialize new variables.
10492 (eww-display-html): Handle "link" and "a".
10493 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
10494 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
10495 (eww-back-url): Rename from eww-previous-url.
10496 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
10497 New defuns.
10498
10499 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
10500
10501 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
10502 Distinguish ternary operator tokens from slash symbol and slash
10503 char literal.
10504
10505 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
10506
10507 Convert symbol prettification into minor mode and global minor mode.
10508
10509 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
10510 `prog-prettify-symbols', and make a local defvar instead of defcustom.
10511 (prettify-symbols--keywords): Rename from
10512 `prog-prettify-symbols-alist' and make a local defvar.
10513 (prettify-symbols--compose-symbol): Rename from
10514 `prog--prettify-font-lock-compose-symbol'.
10515 (prettify-symbols--make-keywords): Rename from
10516 `prog-prettify-font-lock-symbols-keywords' and simplify.
10517 (prog-prettify-install): Remove.
10518 (prettify-symbols-mode): New minor mode, based on
10519 `prog-prettify-install'.
10520 (turn-on-prettify-symbols-mode): New function.
10521 (global-prettify-symbols-mode): New globalized minor mode.
10522
10523 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10524 * progmodes/cfengine.el (cfengine3-mode):
10525 * progmodes/perl-mode.el (perl-mode): Don't call
10526 `prog-prettify-install'; set `prettify-symbols-alist' instead.
10527
10528 2013-06-18 Juri Linkov <juri@jurta.org>
10529
10530 * files-x.el (modify-file-local-variable-message): New function.
10531 (modify-file-local-variable)
10532 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
10533 and call `modify-file-local-variable-message' when it's non-nil.
10534 (add-file-local-variable, delete-file-local-variable)
10535 (add-file-local-variable-prop-line)
10536 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
10537 and use it. (Bug#9820)
10538
10539 2013-06-18 Juri Linkov <juri@jurta.org>
10540
10541 * emulation/vi.el (vi-shell-op):
10542 * emulation/vip.el (vip-execute-com, ex-command):
10543 * emulation/viper-cmd.el (viper-exec-bang):
10544 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
10545 the call of `shell-command-on-region'. (Bug#14637)
10546
10547 * simple.el (shell-command-on-region): Doc fix.
10548
10549 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10550
10551 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
10552 (bug#14633).
10553
10554 2013-06-18 Glenn Morris <rgm@gnu.org>
10555
10556 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
10557
10558 * newcomment.el (comment-search-forward, comment-search-backward):
10559 Doc fix. (Bug#14376)
10560
10561 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
10562
10563 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
10564 (buffer-face-mode-invoke): Doc fix.
10565
10566 2013-06-18 Matthias Meulien <orontee@gmail.com>
10567
10568 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
10569 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
10570
10571 2013-06-18 Glenn Morris <rgm@gnu.org>
10572
10573 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
10574 Replace obsolete function generic-make-keywords with its expansion.
10575
10576 * progmodes/python.el (ffap-alist): Declare.
10577
10578 * textmodes/reftex.el (bibtex-mode-map): Declare.
10579
10580 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
10581
10582 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
10583 (package-unpack, package-unpack-single): Return the pkg-dir.
10584 (package-download-transaction): Use it to update package-alist.
10585
10586 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10587
10588 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
10589 possible choice.
10590
10591 2013-06-17 Juri Linkov <juri@jurta.org>
10592
10593 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
10594
10595 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
10596
10597 * emacs-lisp/package.el (package-load-descriptor):
10598 Remove `with-syntax-table' call, `read' doesn't need it.
10599 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
10600
10601 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
10602
10603 * startup.el (command-line): Expand package name returned by
10604 `package--description-file' (bug#14639).
10605
10606 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
10607
10608 * emacs-lisp/package.el (package-load-descriptor): Do not call
10609 `emacs-lisp-mode', just use its syntax table.
10610
10611 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
10612
10613 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
10614 `font-lock-extra-managed-props' if any prettifying keyword is added.
10615 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
10616 (prog-mode): Use `setq-local'.
10617
10618 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10619
10620 * international/characters.el (standard-case-table): Set syntax of ?»
10621 and ?« to punctuation.
10622
10623 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
10624
10625 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
10626 Save relevant match data before calling `syntax-ppss' (bug#14595).
10627
10628 2013-06-15 Juri Linkov <juri@jurta.org>
10629
10630 * files-x.el (modify-file-local-variable-prop-line): Add local
10631 variables to the end of the existing comment on the first line.
10632 Use `file-auto-mode-skip' to skip interpreter magic line,
10633 and also skip XML declaration.
10634
10635 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10636
10637 * startup.el (package--builtin-versions): New var.
10638 (package-subdirectory-regexp): Remove.
10639 (package--description-file): Hard code its value instead.
10640
10641 * emacs-lisp/package.el: Don't activate packages older than builtin.
10642 (package-obsolete-list): Rename from package-obsolete-alist, and make
10643 it into a simple list of package-desc.
10644 (package-strip-version): Remove.
10645 (package-built-in-p): Use package--builtin-versions.
10646 (package-mark-obsolete): Simplify.
10647 (package-process-define-package): Mark it obsolete if older than the
10648 builtin version.
10649 (package-handle-response): Use line-end-position.
10650 (package-read-archive-contents, package--download-one-archive):
10651 Simplify.
10652 (package--add-to-archive-contents): Skip if older than the builtin or
10653 installed version.
10654 (package-menu-describe-package): Fix last change.
10655 (package-list-unversioned): New var.
10656 (package-menu--generate): Use it.
10657
10658 * emacs-lisp/autoload.el: Manage package--builtin-versions.
10659 (autoload--insert-text, autoload--insert-cookie-text): New functions.
10660 (autoload-builtin-package-versions): New variable.
10661 (autoload-generate-file-autoloads): Use them.
10662 Remove the list of autoloaded functions/macros from the
10663 (autoload...) comments.
10664
10665 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
10666
10667 2013-06-15 Eli Zaretskii <eliz@gnu.org>
10668
10669 * simple.el (line-move-partial): Don't jump to the next screen
10670 line as soon as it becomes visible. Instead, continue enlarging
10671 the vscroll until the portion of a tall screen line that's left on
10672 display is about the height of the frame's default font.
10673 (Bug#14567)
10674
10675 2013-06-15 Glenn Morris <rgm@gnu.org>
10676
10677 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
10678 compilation-error-regexp-alist void, or local while let-bound.
10679
10680 * progmodes/make-mode.el (makefile-mode-syntax-table):
10681 Treat "=" as punctuation. (Bug#14614)
10682
10683 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
10684
10685 * help-fns.el (describe-variable):
10686 Add extra line for permanent-local variables.
10687
10688 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
10689
10690 * progmodes/scheme.el (scheme-font-lock-keywords-2):
10691 Add export, import, library. (Bug#9164)
10692 (library): Set indent function.
10693
10694 2013-06-14 Glenn Morris <rgm@gnu.org>
10695
10696 * term/xterm.el (xterm--query):
10697 Stop after first matching handler. (Bug#14615)
10698
10699 2013-06-14 Ivan Kanis <ivan@kanis.fr>
10700
10701 Add support for dired in saveplace.
10702 * dired.el (dired-initial-position-hook): New variable.
10703 (dired-initial-position): Call hook to place cursor position.
10704 * saveplace.el (save-place-to-alist): Add dired position.
10705 (save-place-dired-hook): New function.
10706
10707 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
10708
10709 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
10710 through a symbol rather than letrec.
10711
10712 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
10713 (package-desc): Add `dir' field.
10714 (package-desc-full-name): New function.
10715 (package-load-descriptor): Combine the two arguments. Don't use `load'.
10716 (package-maybe-load-descriptor): Remove.
10717 (package-load-all-descriptors): Just call package-load-descriptor.
10718 (package--disabled-p): New function.
10719 (package-desc-vers, package-desc-doc): Remove aliases.
10720 (package--dir): Remove function.
10721 (package-activate): Check if a package is disabled.
10722 (package-process-define-package): New function, extracted from
10723 define-package.
10724 (define-package): Turn into a place holder.
10725 (package-unpack-single, package-tar-file-info):
10726 Use package--description-file.
10727 (package-compute-transaction): Use package--disabled-p.
10728 (package-download-transaction): Don't call
10729 package-maybe-load-descriptor since they're all loaded anyway.
10730 (package-install): Change argument to be a pkg-desc.
10731 (package-delete): Use a single pkg-desc argument.
10732 (describe-package-1): Use package-desc-dir instead of package--dir.
10733 Use package-desc property instead of package-symbol.
10734 (package-install-button-action): Adjust accordingly.
10735 (package--push): Rewrite.
10736 (package-menu--print-info): Adjust accordingly. Change the ID format
10737 to be a pkg-desc.
10738 (package-menu-describe-package, package-menu-get-status)
10739 (package-menu--find-upgrades, package-menu-mark-upgrades)
10740 (package-menu-execute, package-menu--name-predicate):
10741 Adjust accordingly.
10742 * startup.el (package--description-file): New function.
10743 (command-line): Use it.
10744 * emacs-lisp/package-x.el (package-upload-buffer-internal):
10745 Use package-desc-version.
10746
10747 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
10748 (byte-compile-preprocess): Use it.
10749 (byte-compile-file-form-defalias): Try a bit harder to use macros we
10750 can't quite recognize.
10751 (byte-compile-add-to-list): Remove.
10752 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
10753 (cconv-closure-convert): Add assertion.
10754
10755 * emacs-lisp/map-ynp.el: Use lexical-binding.
10756 (map-y-or-n-p): Remove unused vars `tail' and `object'.
10757 Factor out some repeated code.
10758
10759 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10760
10761 * subr.el (with-eval-after-load): New macro.
10762 (eval-after-load): Allow form to be a function.
10763 take advantage of lexical-binding.
10764 (do-after-load-evaluation): Use dolist and adjust to new format.
10765 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
10766
10767 2013-06-13 Juri Linkov <juri@jurta.org>
10768
10769 * replace.el (perform-replace): Display "symbol " and other search
10770 modes from `isearch-message-prefix' in the *Help* buffer.
10771
10772 * isearch.el (isearch-query-replace): Add " symbol" and other
10773 possible search modes from `isearch-message-prefix' to the prompt.
10774 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
10775 when reading a regexp to collect.
10776
10777 2013-06-13 Juri Linkov <juri@jurta.org>
10778
10779 * isearch.el (word-search-regexp): Match whitespace if the search
10780 string begins or ends in whitespace. The LAX arg is applied to
10781 both ends of the search string. Use `regexp-quote' and explicit
10782 \< and \> instead of \b. Use \` and \' instead of ^ and $.
10783 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
10784 boundaries are replaced with symbol boundaries, and characters
10785 between symbols match non-word non-symbol syntax. (Bug#14602)
10786
10787 2013-06-13 Juri Linkov <juri@jurta.org>
10788
10789 * isearch.el (isearch-del-char): Don't exceed the length of
10790 `isearch-string' by the prefix arg. (Bug#14563)
10791
10792 2013-06-13 Juri Linkov <juri@jurta.org>
10793
10794 * isearch.el (isearch-yank-word, isearch-yank-line)
10795 (isearch-char-by-name, isearch-quote-char)
10796 (isearch-printing-char, isearch-process-search-char):
10797 Add optional count prefix arg. (Bug#14563)
10798
10799 * international/isearch-x.el
10800 (isearch-process-search-multibyte-characters):
10801 Add optional count prefix arg.
10802
10803 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10804
10805 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
10806 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
10807 lexical-binding.
10808
10809 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
10810
10811 * subr.el (set-temporary-overlay-map): Add on-exit argument.
10812
10813 2013-06-13 Glenn Morris <rgm@gnu.org>
10814
10815 * startup.el (tty-handle-args):
10816 Don't just discard "--" and anything after. (Bug#14608)
10817
10818 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
10819
10820 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
10821
10822 Implement changes in Secret Service API. Make it backward compatible.
10823 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
10824 (secrets-create-item): Use it. Prefix properties with interface.
10825
10826 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
10827
10828 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
10829 (term-emulate-terminal): Respect term-suppress-hard-newline.
10830
10831 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
10832
10833 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
10834 Only remove a `thumb-file' overlay. (Bug#14548)
10835
10836 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
10837
10838 * mail/reporter.el (reporter-submit-bug-report):
10839 Handle missing package-name. (Bug#14600)
10840
10841 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10842
10843 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
10844 (reftex-citation-prompt, reftex-default-bibliography)
10845 (reftex-bib-or-thebib, reftex-get-bibfile-list)
10846 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
10847 (reftex-bib-sort-author, reftex-bib-sort-year)
10848 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
10849 (reftex-extract-bib-entries-from-thebibliography)
10850 (reftex-get-bibkey-default, reftex-get-bib-names)
10851 (reftex-parse-bibtex-entry, reftex-get-bib-field)
10852 (reftex-format-bib-entry, reftex-parse-bibitem)
10853 (reftex-format-bibitem, reftex-do-citation)
10854 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
10855 (reftex-restrict-bib-matches, reftex-extract-bib-file)
10856 (reftex-insert-bib-matches, reftex-format-citation)
10857 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
10858 (reftex-create-bibtex-file): Add docstrings, mostly by converting
10859 existing comments into docstrings.
10860
10861 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
10862
10863 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
10864
10865 2013-06-12 Andreas Schwab <schwab@suse.de>
10866
10867 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
10868 for auto-save files.
10869
10870 2013-06-12 Glenn Morris <rgm@gnu.org>
10871
10872 * ido.el (ido-delete-ignored-files): Remove.
10873 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
10874 Go back to calling ido-ignore-item-p directly.
10875
10876 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
10877
10878 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
10879
10880 * ido.el (ido-delete-ignored-files): New function,
10881 split from ido-make-file-list-1.
10882 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
10883 (ido-make-file-list-1): Use ido-delete-ignored-files.
10884
10885 2013-06-12 Leo Liu <sdl.web@gmail.com>
10886
10887 * progmodes/octave.el (inferior-octave-startup)
10888 (inferior-octave-completion-table)
10889 (inferior-octave-track-window-width-change)
10890 (octave-eldoc-function-signatures, octave-help)
10891 (octave-find-definition): Use single quoted strings.
10892 (inferior-octave-startup-args): Change default value.
10893 (inferior-octave-startup): Do not hard code "-i" and
10894 "--no-line-editing".
10895 (inferior-octave-resync-dirs): Add optional arg NOERROR.
10896 (inferior-octave-directory-tracker): Use it.
10897 (octave-goto-function-definition): Robustify.
10898 (octave-help): Support highlighting operators in 'See also'.
10899 (octave-find-definition): Find subfunctions only in Octave mode.
10900
10901 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10902
10903 * help-fns.el (help-fns--compiler-macro): If the handler function is
10904 named, then put a link to it.
10905 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
10906 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
10907 (cl-typep): Use it.
10908 (cl-eval-when): Simplify debug spec.
10909 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
10910 compiler-macro function instead of setting `compiler-macro-file'.
10911
10912 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
10913
10914 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
10915 * vc/vc-hooks.el (vc-stay-local): Doc fix.
10916
10917 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
10918 Daniel Hackney <dan@haxney.org>
10919
10920 First part of Daniel Hackney's patch to package.el.
10921 * emacs-lisp/package.el: Use defstruct.
10922 (package-desc): New, main struct.
10923 (package--bi-desc, package--ac-desc): New structs, used to describe the
10924 format in external files.
10925 (package-desc-vers): Replace with package-desc-version accessor.
10926 (package-desc-doc): Replace with package-desc-summary accessor.
10927 (package-activate-1): Remove `package' arg since the pkg-vec now
10928 includes the name.
10929 (define-package): Use package-desc-from-define.
10930 (package-unpack-single): Change file-name arg to be a symbol.
10931 (package--add-to-archive-contents): Use package-desc-create and new
10932 accessor functions to package--ac-desc.
10933 (package-buffer-info, package-tar-file-info): Return a package-desc.
10934 (package-install-from-buffer): Remove `type' argument. Change pkg-info
10935 arg to be a package-desc.
10936 (package-install-file): Adjust accordingly. Use \' to match EOS.
10937 (package--from-builtin): New function.
10938 (describe-package-1, package-menu--generate): Use it.
10939 (package--make-autoloads-and-compile): Change name arg to be a symbol.
10940 (package-generate-autoloads): Idem and return the name of the file.
10941 * emacs-lisp/package-x.el (package-upload-buffer-internal):
10942 Change pkg-info arg to be a package-desc.
10943 Use package-make-ac-desc.
10944 (package-upload-file): Use \' to match EOS.
10945 * finder.el (finder-compile-keywords): Use package-make-builtin.
10946
10947 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10948
10949 * vc/vc.el (vc-deduce-fileset): Change error message.
10950 (vc-read-backend): New function.
10951 (vc-next-action): Use it.
10952
10953 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
10954
10955 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
10956 (prolog-font-lock-keywords): Use regexp-opt instead.
10957 Don't manually highlight strings.
10958 (prolog-mode-variables): Simplify comment-start-skip.
10959 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
10960
10961 * emacs-lisp/generic.el (generic--normalise-comments)
10962 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
10963 (generic-mode-set-comments): Use them.
10964 (generic-bracket-support): Use setq-local.
10965 (generic-make-keywords-list): Declare obsolete.
10966
10967 2013-06-11 Glenn Morris <rgm@gnu.org>
10968
10969 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10970 Prettify after setting font-lock-defaults. (Bug#14574)
10971
10972 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
10973
10974 * replace.el (query-replace, occur-read-regexp-defaults-function)
10975 (replace-search):
10976 * subr.el (declare-function, number-sequence, local-set-key)
10977 (substitute-key-definition, locate-user-emacs-file)
10978 (with-silent-modifications, split-string, eval-after-load):
10979 Fix typos, remove unneeded backslashes and reflow some docstrings.
10980
10981 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
10982
10983 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
10984 default for Elisp files.
10985
10986 2013-06-11 Glenn Morris <rgm@gnu.org>
10987
10988 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
10989 although define-derived-mode was doing this anyway. (Bug#14583)
10990
10991 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
10992
10993 * allout.el (allout-encryption-plaintext-sanitization-regexps):
10994 Fix make-variable-buffer-local call to refer to the correct variable.
10995
10996 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
10997
10998 * eshell/em-term.el (eshell-visual-commands)
10999 (eshell-visual-subcommands, eshell-visual-options):
11000 Add summary line to docstrings. Add cross-references.
11001
11002 2013-06-10 Glenn Morris <rgm@gnu.org>
11003
11004 * epa.el (epa-read-file-name): New function. (Bug#14510)
11005 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
11006
11007 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
11008
11009 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
11010 output redirection to be ignored with visual commands.
11011
11012 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
11013
11014 * eshell/em-term.el (eshell-visual-command-p): New function.
11015 (eshell-term-initialize): Move long lambda to separate function
11016 eshell-visual-command-p.
11017 * eshell/em-dirs.el (eshell-dirs-initialize):
11018 * eshell/em-script.el (eshell-script-initialize):
11019 Add missing #' to lambda.
11020
11021 2013-06-08 Leo Liu <sdl.web@gmail.com>
11022
11023 * progmodes/octave.el (octave-add-log-current-defun): New function.
11024 (octave-mode): Set add-log-current-defun-function.
11025 (octave-goto-function-definition): Do not move point if not found.
11026 (octave-find-definition): Enhance to try subfunctions first.
11027
11028 2013-06-08 Glenn Morris <rgm@gnu.org>
11029
11030 * emacs-lisp/bytecomp.el (byte-compile-char-before)
11031 (byte-compile-backward-char, byte-compile-backward-word):
11032 Improve previous change, to handle non-explicit nil.
11033
11034 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
11035
11036 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
11037 (smie--opener/closer-at-point): New function.
11038 (smie--matching-block-data): Use it. Don't match from right after an
11039 opener or right before a closer. Obey smie-blink-matching-inners.
11040 Don't signal a mismatch for repeated inners like "switch..case..case".
11041
11042 2013-06-07 Leo Liu <sdl.web@gmail.com>
11043
11044 * progmodes/octave.el (octave-mode): Set comment-use-global-state
11045 to t. (Bug#14303)
11046 (octave-function-header-regexp): Fix. (Bug#14570)
11047 (octave-help-mode-finish-hook, octave-help-mode-finish):
11048 Remove. Just use temp-buffer-show-hook.
11049
11050 * newcomment.el (comment-search-backward): Revert last change.
11051 (Bug#14434)
11052
11053 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
11054
11055 2013-06-07 Eli Zaretskii <eliz@gnu.org>
11056
11057 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
11058 through xargs, to avoid failure due to MS-Windows limitations on
11059 command-line length.
11060
11061 2013-06-06 Glenn Morris <rgm@gnu.org>
11062
11063 * font-lock.el (lisp-font-lock-keywords-2):
11064 Treat user-error like error.
11065
11066 * emacs-lisp/bytecomp.el (byte-compile-char-before)
11067 (byte-compile-backward-char, byte-compile-backward-word):
11068 Handle explicit nil arguments. (Bug#14565)
11069
11070 2013-06-05 Alan Mackenzie <acm@muc.de>
11071
11072 * isearch.el (isearch-allow-prefix): New user option.
11073 (isearch-other-meta-char): Don't exit isearch when a prefix
11074 argument is typed whilst `isearch-allow-prefix' is non-nil.
11075 (Bug#9706)
11076
11077 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11078
11079 * autorevert.el (auto-revert-notify-handler): Use memq.
11080 Hide assertion failure.
11081
11082 * skeleton.el: Use cl-lib.
11083 (skeleton-further-elements): Use defvar-local.
11084 (skeleton-insert): Use cl-progv.
11085
11086 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
11087
11088 * progmodes/prog-mode.el (prog-prettify-symbols)
11089 (prog-prettify-install): Update docstrings.
11090
11091 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11092
11093 * simple.el: Move all the prog-mode code to prog-mode.el.
11094 * progmodes/prog-mode.el: New file.
11095 * loadup.el: Add prog-mode.el.
11096
11097 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
11098
11099 * simple.el (prog-prettify-symbols): Add version.
11100 (prog-prettify-install): Add convenience function to prettify symbols.
11101
11102 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
11103 (perl--augmented-font-lock-keywords-1)
11104 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
11105 variables and use it.
11106
11107 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
11108 (cfengine3-mode): Remove unneeded variable and use it.
11109
11110 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
11111 (lisp--augmented-font-lock-keywords-1)
11112 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
11113 Remove unneeded variables and use it.
11114
11115 2013-06-05 João Távora <joaotavora@gmail.com>
11116
11117 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
11118 to point when opening the connection. (Bug#14380)
11119
11120 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11121
11122 * subr.el (load-history-regexp, load-history-filename-element)
11123 (eval-after-load, after-load-functions, do-after-load-evaluation)
11124 (eval-next-after-load, display-delayed-warnings)
11125 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
11126 definition of save-match-data.
11127 (overriding-local-map): Remove accidental obsolescence declaration.
11128
11129 * emacs-lisp/edebug.el (edebug-result): Move before first use.
11130
11131 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
11132
11133 Generalize symbol prettify support to prog-mode and implement it
11134 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
11135 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
11136 (prog--prettify-font-lock-compose-symbol)
11137 (prog-prettify-font-lock-symbols-keywords): New variables and
11138 functions to support symbol prettification.
11139 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
11140 (lisp--augmented-font-lock-keywords-1)
11141 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
11142 (lisp--prettify-symbols-alist): Implement prettify of lambda.
11143 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
11144 (cfengine3--prettify-symbols-alist, cfengine3-mode):
11145 Implement prettify of -> => :: strings.
11146 * progmodes/perl-mode.el (perl-prettify-symbols)
11147 (perl--font-lock-compose-symbol)
11148 (perl--font-lock-symbols-keywords): Move to prog-mode.
11149 (perl--prettify-symbols-alist): Prettify -> => :: strings.
11150 (perl-font-lock-keywords-1)
11151 (perl-font-lock-keywords-2): Remove explicit prettify support.
11152 (perl--augmented-font-lock-keywords)
11153 (perl--augmented-font-lock-keywords-1)
11154 (perl--augmented-font-lock-keywords-2, perl-mode):
11155 Implement prettify support.
11156
11157 2013-06-05 Leo Liu <sdl.web@gmail.com>
11158
11159 Re-implement SMIE matching block highlight using
11160 show-paren-data-function. (Bug#14395)
11161 * emacs-lisp/smie.el (smie-matching-block-highlight)
11162 (smie--highlight-matching-block-overlay)
11163 (smie--highlight-matching-block-lastpos)
11164 (smie-highlight-matching-block)
11165 (smie-highlight-matching-block-mode): Remove.
11166 (smie--matching-block-data-cache): New variable.
11167 (smie--matching-block-data): New function.
11168 (smie-setup): Use smie--matching-block-data for
11169 show-paren-data-function.
11170
11171 * progmodes/octave.el (octave-mode-menu): Fix.
11172 (octave-find-definition): Skip garbage lines.
11173
11174 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11175
11176 Fix compilation error with simultaneous dynamic+lexical scoping.
11177 Add warning when a defvar appears after the first let-binding.
11178 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
11179 (byte-compile-close-variables): Initialize it.
11180 (byte-compile--declare-var): New function.
11181 (byte-compile-file-form-defvar)
11182 (byte-compile-file-form-define-abbrev-table)
11183 (byte-compile-file-form-custom-declare-variable): Use it.
11184 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
11185 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
11186 (byte-compile-bind): Handle dynamic bindings that shadow
11187 lexical bindings.
11188 (byte-compile-unbind): Make arg non-optional.
11189 (byte-compile-let): Simplify.
11190 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
11191 (cconv--analyse-function, cconv-analyse-form): Populate it.
11192 Protect byte-compile-bound-variables to limit the scope of defvars.
11193 (cconv-analyse-form): Add missing rule for (defvar <foo>).
11194 Remove unneeded rule for `declare'.
11195
11196 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
11197 so as to avoid depending on cl-adjoin at run-time.
11198 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
11199
11200 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
11201 (macroexp--warn-and-return): Use it.
11202
11203 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
11204
11205 * subr.el: Convert to lexical binding.
11206 (overriding-local-map): Make obsolete.
11207 (add-to-list): Doc fix. Add compiler macro.
11208 (read-key): Swap values of local maps.
11209
11210 2013-06-05 Leo Liu <sdl.web@gmail.com>
11211
11212 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
11213
11214 2013-06-04 Leo Liu <sdl.web@gmail.com>
11215
11216 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
11217 (compilation-auto-jump): Suppress the "Mark set" message to give
11218 way to exit message.
11219
11220 2013-06-04 Alan Mackenzie <acm@muc.de>
11221
11222 Remove faulty optimisation from indentation calculation.
11223 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
11224 search limit based on 2000 characters back from indent-point.
11225
11226 2013-06-03 Tassilo Horn <tsdh@gnu.org>
11227
11228 * eshell/em-term.el (cl-lib): Require `cl-lib'.
11229
11230 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
11231
11232 * emacs-lisp/lisp.el: Use lexical-binding.
11233 (lisp--local-variables-1, lisp--local-variables): New functions.
11234 (lisp--local-variables-completion-table): New var.
11235 (lisp-completion-at-point): Use it complete let-bound vars.
11236
11237 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
11238 eagerly (bug#14422).
11239
11240 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
11241
11242 * autorevert.el (auto-revert-notify-enabled)
11243 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
11244 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
11245 (auto-revert-notify-handler): Handle also gfilenotify.
11246
11247 * subr.el (file-notify-handle-event): New defun. Replacing ...
11248 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
11249 Remove.
11250
11251 2013-06-03 Juri Linkov <juri@jurta.org>
11252
11253 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
11254 `M-s h .'. (Bug#14427)
11255
11256 * hi-lock.el (highlight-symbol-at-point): New alias for the new
11257 command `hi-lock-face-symbol-at-point'.
11258 (hi-lock-face-symbol-at-point): New command.
11259 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
11260 (hi-lock-menu): Add `highlight-symbol-at-point'.
11261 (hi-lock-mode): Doc fix.
11262
11263 * isearch.el (isearch-forward-symbol-at-point): New command.
11264 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
11265 (isearch-highlight-regexp): Add a regexp which matches
11266 words/symbols for word/symbol mode.
11267
11268 * subr.el (find-tag-default-bounds): New function with the body
11269 mostly moved from `find-tag-default'.
11270 (find-tag-default): Move most code to `find-tag-default-bounds',
11271 call it and apply `buffer-substring-no-properties' afterwards.
11272
11273 2013-06-03 Tassilo Horn <tsdh@gnu.org>
11274
11275 * eshell/em-term.el (eshell-term-initialize):
11276 Use `cl-intersection' rather than `intersection'.
11277
11278 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
11279
11280 * vc/log-view.el: Doc fix.
11281 (log-view-mode-map): Copy keymap from `special-mode-map'.
11282
11283 2013-06-02 Eric Ludlam <zappo@gnu.org>
11284
11285 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
11286 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
11287 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
11288 (eieio-unbound, eieio-default-superclass)
11289 (eieio--define-field-accessors, method-static, method-before)
11290 (method-primary, method-after, method-num-lists)
11291 (method-generic-before, method-generic-primary)
11292 (method-generic-after, method-num-slots)
11293 (eieio-specialized-key-to-generic-key)
11294 (eieio--check-type, class-v, class-p)
11295 (eieio-class-name, define-obsolete-function-alias)
11296 (eieio-class-parents-fast, eieio-class-children-fast)
11297 (same-class-fast-p, class-constructor, generic-p)
11298 (generic-primary-only-p, generic-primary-only-one-p)
11299 (class-option-assoc, class-option, eieio-object-p)
11300 (class-abstract-p, class-method-invocation-order)
11301 (eieio-defclass-autoload-map, eieio-defclass-autoload)
11302 (eieio-class-un-autoload, eieio-defclass)
11303 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
11304 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
11305 (eieio--defgeneric-init-form, eieio-defgeneric-form)
11306 (eieio-defgeneric-reset-generic-form)
11307 (eieio-defgeneric-form-primary-only)
11308 (eieio-defgeneric-reset-generic-form-primary-only)
11309 (eieio-defgeneric-form-primary-only-one)
11310 (eieio-defgeneric-reset-generic-form-primary-only-one)
11311 (eieio-unbind-method-implementations)
11312 (eieio--defmethod, eieio--typep)
11313 (eieio-perform-slot-validation, eieio-validate-slot-value)
11314 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
11315 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
11316 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
11317 (eieio-slot-name-index, eieio-class-slot-name-index)
11318 (eieio-set-defaults, eieio-initarg-to-attribute)
11319 (eieio-attribute-to-initarg, eieio-c3-candidate)
11320 (eieio-c3-merge-lists, eieio-class-precedence-c3)
11321 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
11322 (eieio-class-precedence-list, eieio-generic-call-methodname)
11323 (eieio-generic-call-arglst, eieio-generic-call-key)
11324 (eieio-generic-call-next-method-list)
11325 (eieio-pre-method-execution-functions, eieio-generic-call)
11326 (eieio-generic-call-primary-only, eieiomt-method-list)
11327 (eieiomt-optimizing-obarray, eieiomt-install)
11328 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
11329 (eieio-generic-form, eieio-defmethod, make-obsolete)
11330 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
11331 (defclass): Remove `eval-and-compile' from macro.
11332 (call-next-method, shared-initialize): Instead of using
11333 `scoped-class' variable, use new eieio--scoped-class, and
11334 eieio--with-scoped-class.
11335 (initialize-instance): Rename local variable 'scoped-class' to
11336 'this-class' to remove ambiguitity from old global.
11337
11338 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
11339 eieio.el.
11340 (eieio--scoped-class-stack): New variable.
11341 (eieio--scoped-class): New fcn.
11342 (eieio--with-scoped-class): New scoping macro.
11343 (eieio-defclass): Use pushnew instead of add-to-list.
11344 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
11345 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
11346 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
11347 `scoped-class' variable, use new eieio--scoped-class, and
11348 eieio--with-scoped-class.
11349
11350 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
11351
11352 2013-06-02 Tassilo Horn <tsdh@gnu.org>
11353
11354 * eshell/esh-ext.el (eshell-external-command): Pass args to
11355 `eshell-find-interpreter'.
11356 (eshell-find-interpreter): Add new second parameter ARGS.
11357
11358 * eshell/em-script.el (eshell-script-initialize): Add second arg
11359 to the function added as MATCH to `eshell-interpreter-alist'.
11360
11361 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
11362 the function added as MATCH to `eshell-interpreter-alist'.
11363
11364 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
11365 (eshell-visual-options): New defcustom.
11366 (eshell-escape-control-x): Adapt docstring.
11367 (eshell-term-initialize): Test `eshell-visual-subcommands' and
11368 `eshell-visual-options' in addition to `eshell-visual-commands'.
11369 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
11370
11371 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
11372
11373 * progmodes/python.el (python-indent-block-enders): Add break,
11374 continue and raise keywords.
11375
11376 2013-06-01 Glenn Morris <rgm@gnu.org>
11377
11378 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
11379
11380 Plain (f)boundp silences compilation warnings since Emacs 22.1.
11381 * progmodes/cc-cmds.el (delete-forward-p):
11382 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
11383 * progmodes/cc-engine.el (buffer-syntactic-context):
11384 * progmodes/cc-fonts.el (face-property-instance):
11385 * progmodes/cc-mode.el (set-keymap-parents):
11386 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
11387 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
11388 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
11389 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
11390 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
11391
11392 * progmodes/cc-vars.el (other): Emacs has this widget since
11393 at least 21.1, so don't (re)define it.
11394
11395 * eshell/em-cmpl.el (eshell-cmpl-initialize):
11396 Replace the obsolete alias pcomplete-arg-quote-list.
11397
11398 2013-06-01 Leo Liu <sdl.web@gmail.com>
11399
11400 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
11401 punctuation syntax.
11402 (inferior-octave-minimal-columns)
11403 (inferior-octave-last-column-width): New variables.
11404 (inferior-octave-track-window-width-change): New function.
11405 (inferior-octave-mode): Adjust column width so that Octave output,
11406 for example from 'ls', can fit into the window nicely.
11407
11408 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
11409
11410 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
11411 Highlight expansions inside regexp literals.
11412
11413 2013-05-31 Glenn Morris <rgm@gnu.org>
11414
11415 * obsolete/sym-comp.el (symbol-complete):
11416 Replace obsolete completion-annotate-function.
11417
11418 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
11419
11420 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
11421
11422 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
11423 New function, checks if point is inside a literal that allows
11424 expression expansion.
11425 (ruby-syntax-propertize-expansion): Use it.
11426 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
11427 around the body.
11428
11429 2013-05-30 Juri Linkov <juri@jurta.org>
11430
11431 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
11432 to "\M-si".
11433 (isearch-invisible): New variable.
11434 (isearch-forward): Doc fix.
11435 (isearch-mode): Set `isearch-invisible'
11436 to the value of `search-invisible'.
11437 (isearch-toggle-case-fold): Doc fix.
11438 (isearch-toggle-invisible): New command.
11439 (isearch-query-replace): Let-bind `search-invisible'
11440 to the value of `isearch-invisible'.
11441 (isearch-search): Use `isearch-invisible' instead of
11442 `search-invisible'. Let-bind `search-invisible'
11443 to the value of `isearch-invisible'. (Bug#11378)
11444
11445 2013-05-30 Juri Linkov <juri@jurta.org>
11446
11447 * replace.el (perform-replace): Avoid `isearch-range-invisible'
11448 call when `query-flag' is nil and `search-invisible' is non-nil.
11449 (Bug#11746)
11450
11451 2013-05-30 Glenn Morris <rgm@gnu.org>
11452
11453 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
11454
11455 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
11456 (cc-require): Suppress spurious "noruntime" warnings.
11457 (cc-require-when-compile): Use fboundp, for sake of compiler.
11458
11459 * progmodes/cc-mode.el: Move load of cc-vars before that of
11460 cc-langs (which in turn loads cc-vars), to quieten compiler.
11461
11462 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11463
11464 * paren.el: Simplify the code.
11465 (show-paren-mode): Always start the timer.
11466 (show-paren--idle-timer): Rename from show-paren-idle-timer.
11467 (show-paren--overlay, show-paren--overlay-1): Rename from
11468 show-paren-overlay and show-paren-overlay-1, and initialize to an
11469 overlay rather than to nil.
11470 (show-paren-function): Misc cleanup and simplifications.
11471
11472 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11473
11474 * paren.el (show-paren-data-function): New hook.
11475 (show-paren--default): New function, extracted from show-paren-function.
11476 (show-paren-function): Use show-paren-data-function.
11477
11478 2013-05-30 Glenn Morris <rgm@gnu.org>
11479
11480 * ielm.el (ielm-map, ielm-complete-symbol):
11481 Use completion-at-point rather than obsolete functions.
11482 (inferior-emacs-lisp-mode): Doc fix.
11483 Set completion-at-point-functions, rather than
11484 comint-dynamic-complete-functions.
11485
11486 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
11487 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
11488 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
11489
11490 * image.el (image-animated-p): Tweak definition.
11491
11492 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
11493 (rlogin-process-connection-type): Tweak default. Add set-after.
11494 (rlogin-host): Doc fix.
11495 (rlogin): Tweak prompt.
11496 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
11497
11498 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
11499 * progmodes/tcl.el (inferior-tcl-mode-map):
11500 Use completion-at-point rather than obsolete alias.
11501
11502 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
11503
11504 * minibuffer.el (read-file-name-completion-ignore-case):
11505 Move before completion--in-region, for eager macro expansion.
11506
11507 2013-05-29 Juri Linkov <juri@jurta.org>
11508
11509 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
11510 for total count of matching lines. Add `global-matches' for total
11511 count of matches. Rename `matches' to `lines' for count of
11512 matching lines. Add `matches' for count of matches.
11513 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
11514 to `prev-line' for line number of prev match endpt.
11515 Increment `matches' for every match. Print the number of
11516 matching lines in the header.
11517 (occur-context-lines): Rename `lines' to `curr-line'.
11518 Rename `prev-lines' to `prev-line'. (Bug#14017)
11519
11520 2013-05-29 Juri Linkov <juri@jurta.org>
11521
11522 * replace.el (perform-replace): Add `skip-read-only-count',
11523 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
11524 Increment them for corresponding conditions and report the number
11525 of skipped occurrences in the final message. (Bug#11746)
11526 (query-replace, query-replace-regexp, query-replace-regexp-eval)
11527 (replace-string, replace-regexp): Doc fix.
11528
11529 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
11530
11531 * emacs-lisp/trace.el (trace--read-args): Provide a default.
11532
11533 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
11534 prog-mode-map (bug#14504).
11535
11536 2013-05-29 Leo Liu <sdl.web@gmail.com>
11537
11538 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
11539 (octave-help): Small simplification.
11540
11541 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
11542 off the highlight first.
11543
11544 2013-05-29 Glenn Morris <rgm@gnu.org>
11545
11546 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
11547 Handle idlwave-last-system-routine-info-cons-cell being nil.
11548
11549 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
11550 (idlwave-write-paths): Simplify via with-temp-buffer.
11551
11552 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
11553 * emulation/cua-rect.el: Also load cua-base at run time.
11554
11555 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
11556 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
11557 (cperl-imenu-on-info): Require imenu.
11558
11559 2013-05-28 Alan Mackenzie <acm@muc.de>
11560
11561 Handle "capitalised keywords" correctly.
11562 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
11563
11564 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
11565
11566 * eshell/em-unix.el: Add -r option to cp.
11567
11568 2013-05-28 Glenn Morris <rgm@gnu.org>
11569
11570 * vc/vc-arch.el (vc-exec-after): Declare.
11571 (vc-switches): Autoload.
11572 * vc/vc-bzr.el: No need to require vc when compiling.
11573 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
11574 (vc-resynch-buffer, vc-dir-refresh): Declare.
11575 (vc-setup-buffer, vc-switches): Autoload.
11576 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
11577 (vc-resynch-buffer): Declare.
11578 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
11579 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
11580 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
11581 (grep-read-regexp, grep-read-files, grep-expand-template)
11582 (vc-dir-refresh): Declare.
11583 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
11584 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
11585 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
11586 * vc/vc-mtn.el (vc-exec-after): Declare.
11587 (vc-switches): Autoload.
11588 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
11589 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
11590 (vc-file-tree-walk): Declare.
11591 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
11592 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
11593 (vc-tag-precondition, vc-rename-master): Autoload.
11594 * vc/vc-svn.el (vc-exec-after): Declare.
11595 (vc-switches, vc-setup-buffer): Autoload.
11596 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
11597 Autoload.
11598 (vc-resynch-buffer): Declare.
11599
11600 * obsolete/fast-lock.el (byte-compile-warnings):
11601 Don't warn about obsolete features in this obsolete file.
11602
11603 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
11604 Move definition before use.
11605
11606 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
11607 (dun-unix-verbs): Remove dun-zippy.
11608 (dun-zippy): Remove function.
11609
11610 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
11611
11612 2013-05-27 Juri Linkov <juri@jurta.org>
11613
11614 * replace.el (replace-search): New function with code moved out
11615 from `perform-replace'.
11616 (replace-highlight, replace-dehighlight): Move function definitions
11617 up closer to `replace-search'. (Bug#11746)
11618
11619 2013-05-27 Juri Linkov <juri@jurta.org>
11620
11621 * replace.el (perform-replace): Ignore invisible matches.
11622 In addition to checking `query-replace-skip-read-only', also
11623 filter out matches by calling `run-hook-with-args-until-failure'
11624 on `isearch-filter-predicates', and also check `search-invisible'
11625 for t or call `isearch-range-invisible'.
11626 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
11627
11628 2013-05-27 Juri Linkov <juri@jurta.org>
11629
11630 * isearch.el (isearch-filter-predicates): Rename from
11631 `isearch-filter-predicate'. Doc fix. (Bug#11378)
11632 (isearch-message-prefix): Display text from the property
11633 `isearch-message-prefix' of the currently active filters.
11634 (isearch-search): Don't compare `isearch-filter-predicate' with
11635 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
11636 on `isearch-filter-predicates'. Also check `search-invisible' for t
11637 or call `isearch-range-invisible'.
11638 (isearch-filter-visible): Make obsolete.
11639 (isearch-lazy-highlight-search):
11640 Call `run-hook-with-args-until-failure' on
11641 `isearch-filter-predicates' and use `isearch-range-invisible'.
11642
11643 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
11644 `isearch-filter-predicates' instead of `funcall'ing
11645 `isearch-filter-predicate'.
11646 (Info-mode): Set `Info-isearch-filter' to
11647 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
11648
11649 * dired-aux.el (dired-isearch-filter-predicate-orig):
11650 Remove variable.
11651 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
11652 (dired-isearch-filenames-end): Add and remove
11653 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
11654 instead of changing the value of `isearch-filter-predicate'.
11655 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
11656 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
11657 Put property `isearch-message-prefix' to "filename " on
11658 `dired-isearch-filter-filenames'.
11659
11660 * wdired.el (wdired-change-to-wdired-mode):
11661 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
11662 locally instead of changing `isearch-filter-predicate'.
11663 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
11664
11665 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
11666
11667 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
11668 return the commit hash (Bug#14459). Also set the
11669 `vc-git-detached' property.
11670 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
11671 (vc-git-mode-line-string): Use the same help-echo format whether
11672 in detached mode or not, because we know the actual revision now.
11673 When in detached mode, shorten the revision to 7 chars.
11674
11675 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11676
11677 * emacs-lisp/easy-mmode.el (define-minor-mode):
11678 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
11679 mode hook and provide a docstring.
11680
11681 2013-05-27 Alan Mackenzie <acm@muc.de>
11682
11683 Remove spurious syntax-table text properties inserted by C-y.
11684 * progmodes/cc-mode.el (c-after-change): Also clear hard
11685 syntax-table property with value nil.
11686
11687 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
11688
11689 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
11690 when reading the events; the buffer layout shall not be changed.
11691
11692 2013-05-27 Leo Liu <sdl.web@gmail.com>
11693
11694 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
11695 New variable.
11696 (inferior-octave-directory-tracker): Automatically re-sync
11697 default-directory.
11698 (octave-help): Improve handling of 'See also'.
11699
11700 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
11701
11702 * doc-view.el: Minor naming convention tweaks.
11703 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
11704
11705 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
11706 even if there's no `display' property yet (bug#14435).
11707
11708 2013-05-25 Eli Zaretskii <eliz@gnu.org>
11709
11710 * subr.el (unmsys--file-name): Rename from reveal-filename.
11711
11712 * Makefile.in (custom-deps, finder-data, autoloads)
11713 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
11714 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
11715 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
11716
11717 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11718
11719 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
11720 error-completion on the first 2 args of condition-case (bug#14446).
11721 Don't burp at EOB.
11722
11723 2013-05-25 Leo Liu <sdl.web@gmail.com>
11724
11725 * comint.el (comint-previous-matching-input): Do not flood the
11726 *Messages* buffer with trivial messages.
11727
11728 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
11729
11730 * progmodes/flymake.el (flymake-nop): Don't return a string.
11731 (flymake-set-at): Fix typo.
11732
11733 * simple.el (read--expression): New function, extracted from
11734 eval-expression. Set completion-at-point-functions (bug#14465).
11735 (eval-expression, eval-minibuffer): Use it.
11736
11737 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
11738
11739 * progmodes/flymake.el (flymake-save-buffer-in-file)
11740 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
11741 (flymake-selected-frame, flymake-log, flymake-ins-after)
11742 (flymake-set-at, flymake-get-buildfile-from-cache)
11743 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
11744 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
11745 Refine the doc string.
11746 (flymake-get-file-name-mode-and-masks): Reformat.
11747 (flymake-get-real-file-name-function): Fix a minor bug.
11748
11749 2013-05-24 Juri Linkov <juri@jurta.org>
11750
11751 * progmodes/grep.el (grep-mode-font-lock-keywords):
11752 Support =linenumber= format used by git-grep for lines with
11753 function names. (Bug#13549)
11754
11755 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
11756
11757 * progmodes/octave.el (octave-smie-rules): Return nil rather than
11758 0 after a semi-colon; it works better for smie-auto-fill.
11759 (octave--indent-new-comment-line): New function.
11760 (octave-indent-new-comment-line): Use it (indirectly).
11761 (octave-mode): Don't disable smie-auto-fill. Use add-function to
11762 modify comment-line-break-function.
11763
11764 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
11765 (smie-setup): Use add-function to set it.
11766
11767 2013-05-24 Sam Steingold <sds@gnu.org>
11768
11769 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
11770 argument (before the `interactive' argument).
11771
11772 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
11773
11774 * image-mode.el (image-mode-winprops): Add winprops to
11775 image-mode-winprops-alist before running
11776 image-mode-new-window-functions.
11777 * doc-view.el (doc-view-new-window-function): Don't delay
11778 doc-view-goto-page via timers (bug#14435).
11779
11780 2013-05-24 Tassilo Horn <tsdh@gnu.org>
11781
11782 * doc-view.el: Integrate with desktop.el. (Bug#14435)
11783 (doc-view-desktop-save-buffer): New function.
11784 (doc-view-restore-desktop-buffer): New function.
11785 (desktop-buffer-mode-handlers):
11786 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
11787 handler.
11788 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
11789 `desktop-save-buffer' function.
11790
11791 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
11792
11793 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
11794 (tramp-gvfs-file-name-handler): Raise a user error when
11795 `tramp-gvfs-enabled' is nil.
11796 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
11797 Do not raise a user error when loading package. (Bug#14447)
11798
11799 * net/xesam.el: Move to obsolete/.
11800
11801 2013-05-24 Glenn Morris <rgm@gnu.org>
11802
11803 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
11804
11805 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
11806
11807 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
11808 (Info-find-node, Man-getpage-in-background): Declare.
11809
11810 * mail/unrmail.el (unrmail):
11811 Replace obsolete detect-coding-with-priority.
11812
11813 * net/socks.el (socks-split-string): Use this rather than split-string.
11814 (socks-nslookup-host): Update for above change.
11815 (dynamic-choice, s5-dynamic-choice-match)
11816 (s5-dynamic-choice-match-inline, s5-widget-value-create):
11817 Comment out unused code.
11818
11819 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
11820 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
11821 (gud-tooltip-echo-area): Make obsolete.
11822 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
11823
11824 * progmodes/js.el (js--optimize-arglist): Declare.
11825
11826 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
11827
11828 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
11829 (ediff-window-C): Declare.
11830
11831 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
11832 Tweak requires to silence compiler.
11833
11834 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
11835 (he-search-string, he-tried-table, he-expand-list)
11836 (he-init-string, he-string-member, he-substitute-string)
11837 (he-reset-string): Declare.
11838
11839 * obsolete/options.el (list-options): Use custom-variable-p,
11840 rather than obsolete alias.
11841
11842 2013-05-23 Sam Steingold <sds@gnu.org>
11843
11844 * simple.el (shell-command-on-region): Pass the `replace' argument
11845 down to `call-process-region' to comply with the doc as reported on
11846 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
11847
11848 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
11849
11850 * emacs-lisp/smie.el (smie-indent-forward-token)
11851 (smie-indent-backward-token): Handle string tokens (bug#14381).
11852
11853 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11854
11855 * ielm.el (ielm-menu): New menu.
11856 (inferior-emacs-lisp-mode): Set comment-start.
11857
11858 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11859
11860 * textmodes/reftex.el (reftex-ref-style-toggle):
11861 Fix deactivate action.
11862
11863 * textmodes/reftex-vars.el (reftex-ref-style-alist):
11864 Add cleveref macros.
11865
11866 * textmodes/reftex-parse.el
11867 (reftex-locate-bibliography-files): Accept options for
11868 bibliography commands.
11869 * textmodes/reftex-vars.el (reftex-bibliography-commands):
11870 Add addbibresource. Basic Biblatex support.
11871
11872 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
11873
11874 * net/tramp-gvfs.el (top):
11875 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
11876 when loading package. (Bug#14447)
11877
11878 2013-05-23 Glenn Morris <rgm@gnu.org>
11879
11880 * progmodes/js.el: No need to load comint when compiling.
11881 (ring-insert, comint-send-string, comint-send-input)
11882 (comint-last-input-end, ido-chop): Declare.
11883
11884 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
11885 * vc/ediff-mult.el: Adjust requires.
11886 (ediff-directories-internal, ediff-directory-revisions-internal)
11887 (ediff-patch-file-internal): Declare.
11888 * vc/ediff-ptch.el: Adjust requires.
11889 (ediff-use-last-dir, ediff-buffers-internal): Declare.
11890 (ediff-find-file): Autoload.
11891 * vc/ediff-util.el: No need to load ediff when compiling.
11892 (ediff-regions-internal): Declare.
11893 * vc/ediff-wind.el: Adjust requires.
11894 (ediff-compute-toolbar-width): Define when compiling.
11895 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
11896 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
11897 (dired-get-filename, dired-get-marked-files)
11898 (ediff-last-dir-patch, ediff-patch-default-directory)
11899 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
11900 (ediff-patch-buffer-internal): Declare.
11901
11902 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
11903 (ispell-process, ispell-buffer-local-words, lm-summary)
11904 (lm-section-start, lm-section-end): Declare.
11905 (checkdoc-ispell-init): Simplify.
11906
11907 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
11908 (he-string-member, he-reset-string, he-substitute-string): Declare.
11909
11910 * eshell/em-ls.el: Adjust requires.
11911 (eshell-glob-regexp): Declare.
11912 * eshell/em-tramp.el: Adjust requires.
11913 (eshell-parse-command): Autoload.
11914 * eshell/em-xtra.el: Adjust requires.
11915 (eshell-parse-command): Autoload.
11916 * eshell/esh-ext.el: Adjust requires.
11917 (eshell-parse-command, eshell-close-handles): Autoload.
11918 * eshell/esh-io.el: Adjust requires.
11919 (eshell-output-filter): Autoload.
11920 * eshell/esh-util.el: No need to load tramp when compiling.
11921 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
11922 Declare.
11923 (eshell-parse-ange-ls): Require ange-ftp and tramp.
11924 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
11925 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
11926 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
11927 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
11928 * eshell/esh-opt.el, eshell/esh-proc.el:
11929 * eshell/esh-var.el: Adjust requires.
11930 * eshell/eshell.el: Do not require esh-util twice.
11931 (eshell-add-input-to-history): Declare.
11932 (eshell-command): Check history module is active before using it.
11933
11934 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
11935
11936 2013-05-22 Leo Liu <sdl.web@gmail.com>
11937
11938 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
11939
11940 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
11941
11942 * autorevert.el (auto-revert-notify-add-watch)
11943 (auto-revert-notify-handler): Add `attrib' for the inotify case,
11944 it indicates changes in file modification time.
11945
11946 2013-05-22 Glenn Morris <rgm@gnu.org>
11947
11948 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
11949 Always delete the autoloaded function from the noruntime and
11950 unresolved functions lists.
11951
11952 * allout.el: No need to load epa, epg, overlay when compiling.
11953 (epg-context-set-passphrase-callback, epg-list-keys)
11954 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
11955 (epg-key-user-id-list): Declare.
11956
11957 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
11958 (viper-set-parsing-style-toggling-macro)
11959 (viper-set-emacs-state-searchstyle-macros):
11960 Use called-interactively-p on Emacs.
11961 (viper-looking-back): Make it an obsolete alias. Update callers.
11962 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
11963 Use looking-back rather than viper-looking-back.
11964 (viper-tmp-insert-at-eob, viper-enlarge-region)
11965 (viper-read-string-with-history, viper-register-to-point)
11966 (viper-append-to-register, viper-change-state-to-vi)
11967 (viper-backward-char-carefully, viper-forward-char-carefully)
11968 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
11969 (viper-change-state-to-emacs): Declare.
11970 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
11971 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
11972 * emulation/viper-mous.el: Do not load viper-cmd.
11973 (viper-backward-char-carefully, viper-forward-char-carefully)
11974 (viper-forward-word, viper-adjust-window): Declare.
11975
11976 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
11977
11978 * progmodes/idlw-help.el (idlwave-help-fontify):
11979 Use called-interactively-p.
11980
11981 * term/w32console.el (w32-get-console-codepage)
11982 (w32-get-console-output-codepage): Declare.
11983
11984 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
11985 Remove unnecessary declarations.
11986 (dframe-message): Doc fix.
11987
11988 * info.el (dframe-select-attached-frame, dframe-current-frame):
11989 Declare.
11990
11991 * speedbar.el (speedbar-message): Make it an obsolete alias.
11992 Update all callers.
11993 (speedbar-with-attached-buffer)
11994 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
11995 (speedbar-with-writable): Use backquote.
11996 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
11997 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
11998 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
11999 rather than speedbar- aliases.
12000 * mail/rmail.el: Load dframe rather than speedbar when compiling.
12001 (speedbar-make-specialized-keymap, speedbar-insert-button)
12002 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
12003 (speedbar-do-function-pointer): Declare.
12004 (rmail-speedbar-button, rmail-speedbar-find-file)
12005 (rmail-speedbar-move-message):
12006 Use dframe-with-attached-buffer rather than speedbar- alias.
12007 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
12008 (dframe-message, speedbar-make-specialized-keymap)
12009 (speedbar-add-expansion-list, speedbar-mode-functions-list)
12010 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
12011 (speedbar-insert-button, dframe-select-attached-frame)
12012 (dframe-maybee-jump-to-attached-frame)
12013 (speedbar-change-initial-expansion-list)
12014 (speedbar-previously-used-expansion-list-name): Declare.
12015 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
12016 Use dframe-message, dframe-with-attached-buffer rather than
12017 speedbar- aliases.
12018 (gud-sentinel): Silence compiler.
12019 * progmodes/vhdl-mode.el (speedbar-refresh)
12020 (speedbar-do-function-pointer, speedbar-add-supported-extension)
12021 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
12022 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
12023 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
12024 (speedbar-file-lists, speedbar-make-tag-line)
12025 (speedbar-line-directory, speedbar-goto-this-file)
12026 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
12027 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
12028 (speedbar-make-button, speedbar-reset-scanners)
12029 (speedbar-files-item-info, speedbar-line-text)
12030 (speedbar-find-file-in-frame, speedbar-set-timer)
12031 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
12032 (speedbar-with-writable): Do not (re)define it.
12033 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
12034 rather than speedbar- alias.
12035
12036 2013-05-21 Leo Liu <sdl.web@gmail.com>
12037
12038 * progmodes/octave.el (octave-mode-menu): Update and re-organize
12039 menu items.
12040 (octave-mode): Tweak fill-nobreak-predicate.
12041 (inferior-octave-startup): Check process to avoid infinite loop.
12042 (inferior-octave): Pop to buffer first to show abornmal process
12043 exit information.
12044
12045 2013-05-21 Glenn Morris <rgm@gnu.org>
12046
12047 * printing.el (pr-menu-bar): Define when compiling.
12048
12049 2013-05-21 Leo Liu <sdl.web@gmail.com>
12050
12051 * progmodes/octave.el (octave-auto-fill): Remove.
12052 (octave-indent-new-comment-line): Improve.
12053 (octave-mode): Use auto fill mode through
12054 comment-line-break-function and fill-nobreak-predicate.
12055 (octave-goto-function-definition): Support DEFUN_DLD.
12056 (octave-beginning-of-defun): Small tweak.
12057 (octave-help): Show parent directory.
12058
12059 2013-05-21 Glenn Morris <rgm@gnu.org>
12060
12061 * files.el (dired-unmark):
12062 * progmodes/gud.el (gdb-input): Update declarations.
12063
12064 * calculator.el (electric, ehelp): No need to load when compiling.
12065 (Electric-command-loop, electric-describe-mode): Declare.
12066
12067 * doc-view.el (doc-view-current-converter-processes): Move before use.
12068
12069 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
12070 Move MODE-set-explicitly definition before use.
12071
12072 * international/mule-diag.el (mule-diag):
12073 Don't use obsolete window-system-version.
12074
12075 * mail/feedmail.el (smtpmail): No need to load when compiling.
12076 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
12077
12078 * mail/mail-utils.el (rfc822): No need to load when compiling.
12079 (rfc822-addresses): Autoload it.
12080 (mail-strip-quoted-names): Trivial simplification.
12081
12082 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
12083 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
12084
12085 * net/snmp-mode.el (tempo): Don't duplicate requires.
12086
12087 * progmodes/prolog.el (info): No need to load when compiling.
12088 (comint): Require before shell requires it.
12089 (Info-goto-node): Autoload it.
12090 (Info-follow-nearest-node): Declare.
12091 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
12092
12093 * textmodes/artist.el (picture-mode-exit): Declare.
12094
12095 * textmodes/reftex-parse.el (reftex-parse-from-file):
12096 Trivial rewrite so the compiler can parse it better.
12097
12098 2013-05-20 Leo Liu <sdl.web@gmail.com>
12099
12100 * progmodes/octave.el (octave-help-mode-map)
12101 (octave-help-mode-finish-hook): New variables.
12102 (octave-help-mode, octave-help-mode-finish): New functions.
12103 (octave-help): Use octave-help-mode.
12104
12105 2013-05-20 Glenn Morris <rgm@gnu.org>
12106
12107 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
12108
12109 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
12110
12111 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
12112 start at point, so that expansion starting right after opening
12113 slash in a regexp is recognized.
12114 (ruby-syntax-before-regexp-re): New defvar, extracted from
12115 ruby-syntax-propertize-function. Since the value of this regexp
12116 is looked up at runtime now, we should be able to turn
12117 `ruby-syntax-methods-before-regexp' into a defcustom later.
12118 (ruby-syntax-propertize-function): Split regexp matching into two
12119 parts, for opening and closing slashes. That allows us to skip
12120 over string interpolations and support multiline regexps.
12121 Don't call `ruby-syntax-propertize-expansions', instead use another rule
12122 for them, which calls `ruby-syntax-propertize-expansion'.
12123 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
12124 call to `ruby-syntax-propertize-function'.
12125 (ruby-syntax-propertize-expansion): Extracted from
12126 `ruby-syntax-propertize-expansions'. Handles one expansion.
12127 (ruby-syntax-propertize-percent-literal): Leave point right after
12128 the percent symbol, so that the expression expansion rule can
12129 propertize the contents.
12130 (ruby-syntax-propertize-heredoc): Leave point at bol following the
12131 heredoc openers.
12132 (ruby-syntax-propertize-expansions): Remove.
12133
12134 2013-05-18 Juri Linkov <juri@jurta.org>
12135
12136 * man.el (Man-default-man-entry): Remove `-' from the end
12137 of the default value. (Bug#14400)
12138
12139 2013-05-18 Glenn Morris <rgm@gnu.org>
12140
12141 * comint.el (comint-password-prompt-regexp):
12142 Allow "password for XXX" where XXX contains colons (eg https://...).
12143
12144 2013-05-18 Leo Liu <sdl.web@gmail.com>
12145
12146 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
12147 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
12148 (octave-source-directories): Don't check process.
12149 (octave-source-directories, octave-find-definition): Doc fix.
12150
12151 2013-05-18 Glenn Morris <rgm@gnu.org>
12152
12153 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
12154 Remove backspace/delete bindings. (Bug#14392)
12155
12156 * cus-dep.el (custom-make-dependencies): Sort the output.
12157 (custom-versions-load-alist): Convert comment to doc.
12158
12159 2013-05-17 Leo Liu <sdl.web@gmail.com>
12160
12161 * newcomment.el (comment-search-backward): Stricter in finding
12162 comment start. (Bug#14303)
12163
12164 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
12165 (octave-comment-start-skip): Properly anchored.
12166
12167 2013-05-17 Leo Liu <sdl.web@gmail.com>
12168
12169 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
12170 Clean up when turned off. (Bug#14395)
12171 (smie--highlight-matching-block-overlay): No longer buffer-local.
12172 (smie-highlight-matching-block): Adjust.
12173
12174 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
12175
12176 Doc string fix for "nanoseconds" (Bug#14406).
12177 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
12178 Fix doc string typo that had "nanoseconds" instead of "microseconds".
12179
12180 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
12181
12182 * calc/calc-units.el (math-extract-units): Preserve powers
12183 of units.
12184
12185 2013-05-17 Leo Liu <sdl.web@gmail.com>
12186
12187 * subr.el (delete-consecutive-dups): New function.
12188 * ido.el (ido-set-matches-1): Use it.
12189 * progmodes/octave.el (inferior-octave-completion-table): Use it.
12190 * ido.el (ido-remove-consecutive-dups): Remove.
12191
12192 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
12193
12194 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
12195 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
12196 regexp-opt's `words'.
12197
12198 2013-05-16 Leo Liu <sdl.web@gmail.com>
12199
12200 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
12201 (smie--highlight-matching-block-overlay)
12202 (smie--highlight-matching-block-lastpos)
12203 (smie--highlight-matching-block-timer): New variables.
12204 (smie-highlight-matching-block): New function.
12205 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
12206 (smie-setup): Conditionally enable smie-blink-matching-open.
12207
12208 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
12209
12210 Sync with upstream verilog-mode r840.
12211 * progmodes/verilog-mode.el (verilog-mode-version)
12212 (verilog-mode-release-date): Update.
12213 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
12214 (verilog-sig-tieoff): Fix string error on
12215 AUTORESET with colon define, bug594. Reported by Andrew Hou.
12216 (verilog-read-decls): Fix parameters confusing
12217 AUTOINST interfaces, bug565. Reported by Leith Johnson.
12218
12219 2013-05-16 Eli Zaretskii <eliz@gnu.org>
12220
12221 * subr.el (reveal-filename): New function.
12222
12223 * loadup.el: Compute Emacs executable versions on MS-Windows,
12224 where executables have the .exe extension. Add a hard link
12225 emacs-XX.YY.ZZ.exe on MS-Windows.
12226
12227 * Makefile.in (XARGS_LIMIT): New variable.
12228 (custom-deps, finder-data, autoloads)
12229 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
12230 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
12231 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
12232 (compile-main): Limit xargs according to $(XARGS_LIMIT).
12233
12234 2013-05-16 Leo Liu <sdl.web@gmail.com>
12235
12236 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
12237 (octave-mode-menu, octave-mode-map): Remove its uses.
12238
12239 2013-05-16 Reto Zimmermann <reto@gnu.org>
12240
12241 Sync with upstream vhdl mode v3.34.2.
12242 * progmodes/vhdl-mode.el: Use `push' throughout.
12243 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
12244 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
12245 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
12246 (vhdl-actual-generic-name): New option to derive actual generic name.
12247 (vhdl-port-paste-signals): Replace formal by actual generics.
12248 (vhdl-beautify): New name for old group vhdl-align. Update users.
12249 (vhdl-beautify-options): New option.
12250 (vhdl-last-input-event): New compat alias. Use throughout.
12251 (vhdl-goto-line): Replace user level function `goto-line'.
12252 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
12253 vhdl-fix-statement-buffer.
12254 (vhdl-create-mode-menu): Add some entries.
12255 (vhdl-align-region-groups): Respect vhdl-beautify-options.
12256 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
12257 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
12258 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
12259 to force statements on one line.
12260 (vhdl-remove-trailing-spaces-region):
12261 New, split from vhdl-remove-trailing-spaces.
12262 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
12263 Respect vhdl-beautify-options.
12264 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
12265 (vhdl-update-sensitivity-list): Not add with index if exists without.
12266 Not include array index with signal. Ignore keywords in comments.
12267 (vhdl-get-visible-signals): Regexp tweaks.
12268 (vhdl-template-component-inst): Handle empty library.
12269 (vhdl-template-type): Add template for 'enum' type.
12270 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
12271 Use vhdl-replace-string.
12272 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
12273 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
12274 (vhdl-speedbar-initialize): Update for above name change.
12275 (vhdl-compose-wire-components): Fix in handling of constants.
12276 (vhdl-error-regexp-emacs-alist): New variable.
12277 (vhdl-error-regexp-add-emacs): New function;
12278 adds support for new compile.el (Emacs 22+)
12279 (vhdl-generate-makefile-1): Change target order for single lib. units.
12280 Allow use of absolute file names.
12281
12282 2013-05-16 Leo Liu <sdl.web@gmail.com>
12283
12284 * simple.el (prog-indent-sexp): Indent enclosing defun.
12285
12286 2013-05-15 Glenn Morris <rgm@gnu.org>
12287
12288 * cus-start.el (show-trailing-whitespace): Move to editing basics.
12289 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
12290 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
12291 (whitespace-highlight): Move to whitespace group.
12292
12293 * comint.el (comint-source):
12294 * pcmpl-linux.el (pcmpl-linux):
12295 * shell.el (shell-faces):
12296 * eshell/esh-opt.el (eshell-opt):
12297 * international/ccl.el (ccl): Remove empty custom groups.
12298
12299 * completion.el (dynamic-completion-mode):
12300 * jit-lock.el (jit-lock-debug-mode):
12301 * minibuffer.el (completion-in-region-mode):
12302 * type-break.el (type-break-mode-line-message-mode)
12303 (type-break-query-mode):
12304 * emulation/tpu-edt.el (tpu-edt-mode):
12305 * progmodes/subword.el (global-subword-mode, global-superword-mode):
12306 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
12307 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
12308
12309 * term/xterm.el (xterm): Change parent group to terminals.
12310
12311 * master.el (master): Remove empty custom group.
12312 (master-mode): Remove unused :group argument.
12313 * textmodes/refill.el (refill): Remove empty custom group.
12314 (refill-mode): Remove unused :group argument.
12315
12316 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
12317
12318 * cus-dep.el: Provide a feature.
12319 (custom-make-dependencies): Ignore dotfiles (dir-locals).
12320 Don't mistakenly ignore files whose basenames match a basename
12321 from preloaded-file-list (eg cedet/ede/simple.el).
12322 Add a fallback method for getting :group.
12323
12324 2013-05-15 Juri Linkov <juri@jurta.org>
12325
12326 * isearch.el (isearch-char-by-name): Rename from
12327 `isearch-insert-char-by-name'. Doc fix.
12328 (isearch-forward): Mention `isearch-char-by-name' in
12329 the docstring. (Bug#13348)
12330
12331 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
12332 `exit-minibuffer' instead of
12333 `isearch-nonincremental-exit-minibuffer'.
12334 (isearch-edit-string): Remove mention of
12335 `isearch-nonincremental-exit-minibuffer' from docstring.
12336 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
12337 (isearch-forward-exit-minibuffer)
12338 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
12339
12340 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12341
12342 * loadup.el: Just use unversioned DOC.
12343
12344 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
12345 literals as extending to EOB.
12346 (nxml-last-fontify-end): Remove unused variable.
12347 (nxml-after-change1): Use with-silent-modifications.
12348 (nxml-extend-after-change-region): Simplify.
12349 (nxml-extend-after-change-region1): Remove function.
12350 (nxml-after-change1): Don't adjust for dependent regions.
12351 (nxml-fontify-matcher): Simplify.
12352 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
12353 (xmltok-add-dependent): Remove function.
12354 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
12355 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
12356 (xmltok-scan-prolog-after-processing-instruction-open): Treat
12357 unclosed <[[, <?, comment, and other literals as extending to EOB.
12358 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
12359 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
12360 Remove functions.
12361 (rng-do-some-validation-1): Don't mark dependent regions.
12362 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
12363 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
12364 (nxml-clear-dependent-regions): Remove functions.
12365 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
12366 (nxml-ensure-scan-up-to-date):
12367 Don't clear&mark dependent regions.
12368
12369 2013-05-15 Leo Liu <sdl.web@gmail.com>
12370
12371 * progmodes/octave.el (octave-goto-function-definition):
12372 Improve and fix callers.
12373
12374 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12375
12376 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
12377 the setter (bug#14387).
12378
12379 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
12380 surrounding group (bug#14402).
12381
12382 2013-05-14 Juri Linkov <juri@jurta.org>
12383
12384 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
12385 (Bug#14390)
12386
12387 2013-05-14 Glenn Morris <rgm@gnu.org>
12388
12389 * progmodes/f90.el (f90-imenu-generic-expression):
12390 Fix typo in 2013-05-08 change. (Bug#14402)
12391
12392 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
12393
12394 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
12395 Remove signals for which replies are never received.
12396
12397 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
12398
12399 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
12400 (gdb-handler-alist, gdb-handler-number): Remove variables.
12401 (gdb-handler-list): New variable.
12402 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
12403 (gdb-pending-handler-p, gdb-handle-reply)
12404 (gdb-remove-all-pending-triggers): New functions.
12405 (gdb-discard-unordered-replies): New defcustom.
12406 (gdb-handler): New defstruct.
12407 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
12408 instead of gdb-pending-triggers. Update docstring.
12409 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
12410 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
12411 (gdb-var-update-handler, def-gdb-auto-update-trigger)
12412 (def-gdb-auto-update-handler, gdb-get-changed-registers)
12413 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
12414 (gdb-frame-handler): Pending triggers are now automatically managed.
12415 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
12416 Remove argument.
12417 (gdb-input): Automatically handles pending triggers. Update docstring.
12418 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
12419 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
12420 Update comments.
12421 (gdb-done-or-error): Now use gdb-handle-reply.
12422
12423 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
12424
12425 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
12426 gdb-debug-log.
12427
12428 2013-05-14 Glenn Morris <rgm@gnu.org>
12429
12430 * subr.el (user-emacs-directory-warning): New option.
12431 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
12432
12433 2013-05-14 Leo Liu <sdl.web@gmail.com>
12434
12435 * progmodes/octave.el (octave-font-lock-keywords): Fix error
12436 during redisplay.
12437 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
12438 (octave-font-lock-texinfo-comment): Fix invalid search bound
12439 error: wrong side of point.
12440
12441 2013-05-14 Glenn Morris <rgm@gnu.org>
12442
12443 * progmodes/flymake.el (flymake-xml-program): New option.
12444 (flymake-xml-init): Use it.
12445
12446 * term/xterm.el: Provide a feature.
12447
12448 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
12449
12450 2013-05-13 Glenn Morris <rgm@gnu.org>
12451
12452 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
12453 Add compat aliases as a hack workaround. (Bug#14384)
12454
12455 2013-05-13 Leo Liu <sdl.web@gmail.com>
12456
12457 * progmodes/octave.el (octave-indent-comment): Fix indentation for
12458 ###, and %!.
12459 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
12460 C-M-q.
12461 (octave-comment-start-skip): Include %!.
12462 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
12463
12464 2013-05-12 Leo Liu <sdl.web@gmail.com>
12465
12466 * progmodes/octave.el (inferior-octave-startup): Store the value
12467 of __octave_srcdir__ for octave-source-directories.
12468 (inferior-octave-check-process): New function refactored out of
12469 inferior-octave-send-list-and-digest.
12470 (octave-source-directories)
12471 (octave-find-definition-filename-function): New variables.
12472 (octave-source-directories)
12473 (octave-find-definition-default-filename): New functions.
12474 (octave-find-definition): Improve to find functions implemented in C++.
12475
12476 2013-05-12 Glenn Morris <rgm@gnu.org>
12477
12478 * calendar/diary-lib.el (diary-outlook-format-1):
12479 Don't include dayname in the output. (Bug#14349)
12480
12481 2013-05-11 Glenn Morris <rgm@gnu.org>
12482
12483 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
12484
12485 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
12486 Treat cc-provide like provide.
12487
12488 2013-05-11 Kevin Ryde <user42@zip.com.au>
12489
12490 * cus-dep.el (custom-make-dependencies):
12491 Use generated-autoload-load-name for the sake of files such
12492 such cedet/semantic/bovine/c.el, where the base file name
12493 is not in load-path. (Bug#5277)
12494
12495 2013-05-11 Glenn Morris <rgm@gnu.org>
12496
12497 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
12498 Provide features.
12499
12500 2013-05-11 Leo Liu <sdl.web@gmail.com>
12501
12502 * progmodes/octave.el (octave-indent-comment): Improve.
12503 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
12504 (octave-eldoc-function-signatures, octave-eldoc-function):
12505 New functions.
12506 (octave-mode, inferior-octave-mode): Add eldoc support.
12507
12508 2013-05-11 Richard Stallman <rms@gnu.org>
12509
12510 * epa.el (epa-decrypt-file): Take output file name as argument
12511 and read it using `interactive'.
12512
12513 2013-05-11 Leo Liu <sdl.web@gmail.com>
12514
12515 * progmodes/octave.el (octave-beginning-of-line)
12516 (octave-end-of-line): Check before using up-list because it jumps
12517 out of more syntactic contructs since moving to smie.
12518 (octave-indent-comment): New function.
12519 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
12520 (octave-begin-keywords, octave-end-keywords)
12521 (octave-reserved-words, octave-smie-bnf-table)
12522 (octave-smie-rules): Add new keywords from Octave 3.6.4.
12523
12524 2013-05-11 Glenn Morris <rgm@gnu.org>
12525
12526 * faces.el (internal-face-x-get-resource):
12527 * frame.el (ns-display-monitor-attributes-list):
12528 * calc/calc-aent.el (math-to-radians-2):
12529 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
12530 Fix declarations.
12531
12532 * calc/calc-menu.el: Make it loadable in isolation.
12533
12534 * net/eudcb-bbdb.el: Make it loadable without bbdb.
12535 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
12536 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
12537 (eudc-bbdb-query-internal): Require 'bbdb.
12538
12539 * lpr.el (lpr-headers-switches):
12540 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
12541
12542 * progmodes/sql.el (sql-login-params): Fix and improve :type.
12543
12544 * emulation/edt-mapper.el: In batch mode, error rather than hang.
12545
12546 * term.el (term-set-escape-char): Make it idempotent.
12547
12548 2013-05-10 Leo Liu <sdl.web@gmail.com>
12549
12550 * progmodes/octave.el (inferior-octave-completion-table):
12551 No longer a function and all uses changed. Use cache to speed up
12552 completion due to bug#11906.
12553 (octave-beginning-of-defun): Re-write to be more general.
12554
12555 2013-05-10 Glenn Morris <rgm@gnu.org>
12556
12557 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
12558
12559 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
12560
12561 * comint.el (comint-redirect-send-command-to-process): Use :around
12562 rather than :override for comint-redirect-filter.
12563 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
12564 Call it instead of comint-redirect-original-filter-function (which
12565 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
12566
12567 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
12568
12569 * frame.el (display-monitor-attributes-list): Add NS case.
12570 (ns-display-monitor-attributes-list): Declare.
12571
12572 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
12573
12574 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
12575
12576 2013-05-09 Glenn Morris <rgm@gnu.org>
12577
12578 * international/fontset.el (vertical-centering-font-regexp):
12579 Set standard-value.
12580
12581 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
12582
12583 * bookmark.el (bookmark-search-delay):
12584 * cus-start.el (vertical-centering-font-regexp):
12585 * ps-mule.el (ps-mule-font-info-database-default):
12586 * ps-print.el (ps-default-fg, ps-default-bg):
12587 * type-break.el (type-break-good-break-interval):
12588 * whitespace.el (whitespace-indentation-regexp)
12589 (whitespace-space-after-tab-regexp):
12590 * emacs-lisp/testcover.el (testcover-1value-functions)
12591 (testcover-noreturn-functions, testcover-progn-functions)
12592 (testcover-prog1-functions):
12593 * emulation/viper-init.el (viper-emacs-state-cursor-color):
12594 * eshell/em-glob.el (eshell-glob-translate-alist):
12595 * play/tetris.el (tetris-tty-colors):
12596 * progmodes/cpp.el (cpp-face-default-list):
12597 * progmodes/flymake.el (flymake-allowed-file-name-masks):
12598 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
12599 (idlwave-help-browser-generic-args):
12600 * progmodes/make-mode.el (makefile-special-targets-list):
12601 * progmodes/python.el (python-shell-virtualenv-path):
12602 * progmodes/verilog-mode.el (verilog-active-low-regexp)
12603 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
12604 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
12605 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
12606 * textmodes/reftex-vars.el (reftex-format-label-function):
12607 * textmodes/remember.el (remember-diary-file): Fix custom types.
12608
12609 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
12610 Add :version.
12611
12612 2013-05-09 Leo Liu <sdl.web@gmail.com>
12613
12614 * progmodes/octave.el (inferior-octave-completion-at-point):
12615 Restore file completion. (Bug#14300)
12616 (inferior-octave-startup): Fix incorrect highlighting for the
12617 first prompt.
12618
12619 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12620
12621 * progmodes/ruby-mode.el: First cut at SMIE support.
12622 (ruby-use-smie): New var.
12623 (ruby-smie-grammar): New constant.
12624 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
12625 (ruby-smie--forward-token, ruby-smie--backward-token)
12626 (ruby-smie-rules): New functions.
12627 (ruby-mode-variables): Setup SMIE if applicable.
12628
12629 2013-05-08 Eli Zaretskii <eliz@gnu.org>
12630
12631 * simple.el (line-move-visual): Signal beginning/end of buffer
12632 only if vertical-motion moved less than it was requested. Avoids
12633 silly incorrect error messages when there are display strings with
12634 multiple newlines at EOL.
12635
12636 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12637
12638 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
12639 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
12640 (prolog-char-quote-workaround):
12641 * progmodes/cperl-mode.el (cperl-under-as-char):
12642 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
12643 Mark as obsolete.
12644 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
12645 their declaration.
12646 (vhdl-mode-syntax-table-init): Remove.
12647
12648 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
12649 last change.
12650
12651 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
12652 syntax for "_".
12653 (ld-script-font-lock-keywords):
12654 Change regexps to use things like \_< and \_>.
12655
12656 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
12657 Change all regexps to use things like \_< and \_>.
12658
12659 * progmodes/autoconf.el (autoconf-definition-regexp)
12660 (autoconf-font-lock-keywords, autoconf-current-defun-function):
12661 Handle a _ with symbol syntax.
12662 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
12663
12664 * progmodes/ada-mode.el (ada-mode-abbrev-table):
12665 Consolidate declaration.
12666 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
12667 the declaration.
12668 (ada-create-syntax-table): Remove.
12669 (ada-capitalize-word): Don't mess with the syntax of "_" since it
12670 already has the right syntax nowadays.
12671 (ada-goto-next-word): Don't change the syntax of "_".
12672
12673 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
12674 with-wrapper-hook.
12675
12676 2013-05-08 Sam Steingold <sds@gnu.org>
12677
12678 * thingatpt.el (thing-at-point): Accept optional second argument
12679 NO-PROPERTIES to strip the text properties from the return value.
12680 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
12681 to `thing-at-point' instead of stripping the properties ourselves.
12682 Also, when `thing-at-point' fails to find a url, prepend "http://"
12683 to the filename at point on the assumption that the user is
12684 pointing at something like gnu.org/gnu.
12685
12686 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
12687
12688 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
12689 * faces.el (crm-separator):
12690 Silence byte-compiler.
12691
12692 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
12693 (tool-bar-map): Remove unneeded defvars.
12694
12695 2013-05-08 Leo Liu <sdl.web@gmail.com>
12696
12697 Re-work a fix for bug#10994 based on Le Wang's patch.
12698 * ido.el (ido-remove-consecutive-dups): New helper.
12699 (ido-completing-read): Use it.
12700 (ido-chop): Revert fix for bug#10994.
12701
12702 2013-05-08 Adam Spiers <emacs@adamspiers.org>
12703
12704 * cus-edit.el (custom-save-variables):
12705 Pretty-print long values. (Bug#14187)
12706
12707 2013-05-08 Glenn Morris <rgm@gnu.org>
12708
12709 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
12710 (m4-mode-syntax-table): Init in the defvar.
12711 (m4-mode-abbrev-table): Let define-derived-mode define it.
12712
12713 2013-05-08 Tom Tromey <tromey@redhat.com>
12714
12715 * progmodes/m4-mode.el (m4-mode-syntax-table):
12716 Do not treat "_" as word constituent. (Bug#14167)
12717
12718 2013-05-07 Glenn Morris <rgm@gnu.org>
12719
12720 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
12721 Remove explicit eshell-isearch-cancel-map.
12722
12723 * progmodes/f90.el (f90-smart-end-names): New option.
12724 (f90-smart-end): Doc fix.
12725 (f90-end-block-optional-name): New constant.
12726 (f90-block-match): Respect f90-smart-end-names.
12727
12728 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12729
12730 * progmodes/octave.el (octave-smie-forward-token): Be more careful
12731 about implicit semi-colons (bug#14218).
12732
12733 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12734
12735 * frame.el (display-monitor-attributes-list)
12736 (frame-monitor-attributes): New functions.
12737
12738 2013-05-06 Leo Liu <sdl.web@gmail.com>
12739
12740 * progmodes/octave.el (octave-syntax-propertize-function): Change
12741 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
12742 (octave-font-lock-keywords): Use octave-operator-regexp.
12743 (octave-completion-at-point): Rename from
12744 octave-completion-at-point-function.
12745 (inferior-octave-directory-tracker): Robustify.
12746 (octave-text-functions): Remove and fix its uses. No such things
12747 any more.
12748
12749 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12750
12751 * emacs-lisp/trace.el (trace--display-buffer): New function.
12752 (trace-make-advice): Use it.
12753
12754 2013-05-06 Juri Linkov <juri@jurta.org>
12755
12756 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
12757 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
12758 Doc fix.
12759 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
12760 in the help string. (Bug#12985)
12761
12762 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
12763
12764 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
12765
12766 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12767
12768 * progmodes/perl-mode.el: Add support for here documents.
12769 (perl-syntax-propertize-function): Match here-doc markers.
12770 (perl-syntax-propertize-special-constructs): Find their end.
12771 (perl-imenu-generic-expression): Use [:alnum:].
12772
12773 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
12774 (advice--add-function): Refresh the advice if already present
12775 (bug#14317).
12776
12777 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
12778
12779 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
12780
12781 2013-05-06 Glenn Morris <rgm@gnu.org>
12782
12783 * w32-fns.el (w32-charset-info-alist): Declare.
12784
12785 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
12786 of its defcustom properties.
12787 (eshell-cmpl-initialize): No need to load pcomplete.
12788
12789 * generic-x.el: No need to require comint when compiling.
12790
12791 * net/eudc-export.el: Make it loadable without bbdb.
12792 (top-level): Use require rather than load-library.
12793 (eudc-create-bbdb-record, eudc-bbdbify-phone)
12794 (eudc-batch-export-records-to-bbdb)
12795 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
12796 Require bbdb.
12797
12798 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12799
12800 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
12801 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
12802 some tweaks, instead.
12803
12804 2013-05-05 Leo Liu <sdl.web@gmail.com>
12805
12806 * progmodes/octave.el (octave-font-lock-keywords)
12807 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
12808 (inferior-octave-send-list-and-digest): Improve error message.
12809 (octave-mode, inferior-octave-mode): Use setq-local.
12810 (octave-help): Set info-lookup-mode.
12811
12812 2013-05-05 Richard Stallman <rms@gnu.org>
12813
12814 * vc/compare-w.el (compare-windows-whitespace):
12815 Treat no-break space as whitespace.
12816
12817 * mail/rmailsum.el (rmail-summary-rmail-update):
12818 Detect empty summary and don't change selected message.
12819 (rmail-summary-goto-msg): Likewise.
12820
12821 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
12822 Doc fixes, rename args.
12823
12824 2013-05-05 Alan Mackenzie <acm@muc.de>
12825
12826 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
12827
12828 2013-05-05 Juri Linkov <juri@jurta.org>
12829
12830 * info.el (Info-read-subfile): Use (point-min) instead of (point)
12831 to not add the length of the summary segment to the return value.
12832 (Bug#14125)
12833
12834 2013-05-05 Leo Liu <sdl.web@gmail.com>
12835
12836 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
12837 (inferior-octave-output-filter): Remove.
12838 (octave-send-region, inferior-octave-startup): Fix callers.
12839 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
12840 (octave-binary-file-extensions): New user variable.
12841 (octave-find-definition): Confirm if opening binary files.
12842 (octave-help-file): Use octave-find-definition to get the binary
12843 confirmation.
12844 (octave-help): Adjust for octave-help-file change.
12845
12846 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12847
12848 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
12849 Merge the two entries that handle function definitions.
12850 (pascal--syntax-propertize): New const.
12851 (pascal-mode): Use it. Use setq-local.
12852
12853 2013-05-04 Glenn Morris <rgm@gnu.org>
12854
12855 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
12856 (diary-from-outlook): Respect diary-from-outlook-function.
12857
12858 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12859
12860 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
12861 Move the declaration from C.
12862 (read-minibuffer, eval-minibuffer): Move from C.
12863 (completion-setup-function): Avoid minibuffer-completion-contents.
12864
12865 2013-05-03 Leo Liu <sdl.web@gmail.com>
12866
12867 * progmodes/octave.el (octave-font-lock-keywords): Do not
12868 dehighlight 'end' in comments or strings.
12869 (octave-completing-read, octave-goto-function-definition):
12870 New helpers.
12871 (octave-help-buffer): New user variable.
12872 (octave-help-file, octave-help-function): New button types.
12873 (octave-help): New command and bind it to C-h ;.
12874 (octave-find-definition): New command and bind it to M-.
12875 (user-error): Alias to error if not defined.
12876
12877 2013-05-02 Leo Liu <sdl.web@gmail.com>
12878
12879 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
12880 for \. (bug#14332)
12881 (octave-font-lock-keywords): Include [ and {.
12882
12883 2013-05-02 Leo Liu <sdl.web@gmail.com>
12884
12885 * progmodes/octave.el (inferior-octave-startup-file): Change default.
12886 (inferior-octave): Remove calling comint-mode and return the buffer.
12887 (inferior-octave-startup): Cosmetic changes.
12888
12889 2013-05-02 Leo Liu <sdl.web@gmail.com>
12890
12891 * progmodes/octave.el (octave-syntax-propertize-function):
12892 Include the case when ' is at line beginning. (Bug#14336)
12893
12894 2013-05-02 Glenn Morris <rgm@gnu.org>
12895
12896 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
12897 * desktop.el (vc-dir-mode): Just autoload it here.
12898
12899 2013-05-02 Alan Mackenzie <acm@muc.de>
12900
12901 Eliminate variable c-standard-font-lock-fontify-region-function.
12902 * progmodes/cc-mode.el
12903 (c-standard-font-lock-fontify-region-function): Remove.
12904 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
12905
12906 2013-05-01 Leo Liu <sdl.web@gmail.com>
12907
12908 * progmodes/octave.el: Compatible with older emacs-24 releases.
12909 (inferior-octave-has-built-in-variables): Remove. Built-in
12910 variables were removed from Octave in 2007.
12911 (inferior-octave-startup): Fix uses.
12912 (comint-line-beginning-position): Remove compatibility code for
12913 emacs 21.
12914
12915 2013-05-01 Juri Linkov <juri@jurta.org>
12916
12917 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
12918
12919 2013-05-01 Juri Linkov <juri@jurta.org>
12920
12921 * comint.el (comint-previous-matching-input): Don't print message
12922 "History item: %d" when `isearch-mode' is active.
12923 (comint-history-isearch-message): Print message "History item: %d"
12924 when `comint-input-ring-index' is not empty and this function is
12925 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
12926
12927 2013-05-01 Leo Liu <sdl.web@gmail.com>
12928
12929 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
12930 definitions. Use completion-at-point to insert keywords.
12931 (octave-abbrev-start): Remove.
12932 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
12933
12934 2013-04-30 Leo Liu <sdl.web@gmail.com>
12935
12936 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
12937 change.
12938
12939 2013-04-30 Alan Mackenzie <acm@muc.de>
12940
12941 Handle arbitrarily long C++ member initialisation lists.
12942 * progmodes/cc-engine.el (c-back-over-member-initializers):
12943 new function.
12944 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
12945 (most) member init lists.
12946
12947 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12948
12949 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
12950 variable.
12951
12952 2013-04-30 Leo Liu <sdl.web@gmail.com>
12953
12954 * progmodes/octave.el (octave-variables): Remove. No builtin
12955 variables any more. All converted to functions.
12956 (octave-font-lock-keywords, octave-completion-at-point-function):
12957 Fix uses.
12958 (octave-font-lock-texinfo-comment): New user variable.
12959 (octave-texinfo-font-lock-keywords): New variable for texinfo
12960 comment block.
12961 (octave-function-comment-block): New face.
12962 (octave-font-lock-texinfo-comment): New function.
12963 (octave-mode): Font lock texinfo comment block.
12964
12965 2013-04-29 Leo Liu <sdl.web@gmail.com>
12966
12967 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
12968 indexing expression.
12969 (octave-continuation-string): Do not use \.
12970 (inferior-octave-complete-impossible): Remove.
12971 (inferior-octave-completion-table)
12972 (inferior-octave-completion-at-point): Remove its uses.
12973 (inferior-octave-startup): completion_matches was introduced to
12974 Octave in 1996 so safe to assume it.
12975 (octave-function-file-comment): Improve to follow how Octave does it.
12976 (octave-update-function-file-comment): Tweak.
12977
12978 2013-04-29 Leo Liu <sdl.web@gmail.com>
12979
12980 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
12981 (inferior-octave-startup): Remove inferior-octave-startup-hook.
12982 (octave-function-file-comment): Fix typo.
12983 (octave-sync-function-file-names): Use read-char-choice.
12984
12985 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
12986
12987 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
12988 to t for the less important warnings.
12989
12990 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
12991
12992 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
12993
12994 2013-04-27 Glenn Morris <rgm@gnu.org>
12995
12996 * vc/log-view.el (log-view-current-entry):
12997 Treat "---" separator lines as part of the following rev. (Bug#14169)
12998
12999 2013-04-27 Juri Linkov <juri@jurta.org>
13000
13001 * subr.el (read-number): Doc fix about using it by interactive
13002 code letter `n'. (Bug#14254)
13003
13004 2013-04-27 Juri Linkov <juri@jurta.org>
13005
13006 * desktop.el (desktop-auto-save-timeout): New option.
13007 (desktop-file-checksum): New variable.
13008 (desktop-save): Add optional arg `auto-save' and don't auto-save
13009 if nothing changed.
13010 (desktop-auto-save-timer): New variable.
13011 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
13012 (after-init-hook): Call `desktop-auto-save-set-timer'.
13013 Suggested by Reuben Thomas <rrt@sc3d.org> in
13014 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
13015
13016 2013-04-27 Leo Liu <sdl.web@gmail.com>
13017
13018 * progmodes/octave.el (octave-function-file-p)
13019 (octave-skip-comment-forward, octave-function-file-comment)
13020 (octave-update-function-file-comment): New functions.
13021 (octave-mode-map): Bind C-c ; to
13022 octave-update-function-file-comment.
13023 (octave-mode-menu): Add octave-update-function-file-comment.
13024 (octave-mode, inferior-octave-mode): Fix doc-string.
13025 (octave-insert-defun): Conform to Octave's coding convention.
13026 (Bug#14285)
13027
13028 * files.el (basic-save-buffer): Don't let errors in
13029 before-save-hook prevent saving buffer.
13030
13031 2013-04-20 Roland Winkler <winkler@gnu.org>
13032
13033 * faces.el (read-face-name): Use completing-read if arg multiple
13034 is nil.
13035
13036 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
13037
13038 * ls-lisp.el (ls-lisp-insert-directory): If no files are
13039 displayed, move point to after the totals line.
13040 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
13041 for the details.
13042
13043 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
13044
13045 * emacs-lisp/package.el (package-autoload-ensure-default-file):
13046 Add current dir to the load-path.
13047 (package-generate-autoloads): Don't rely on
13048 autoload-ensure-default-file.
13049
13050 2013-04-26 Reuben Thomas <rrt@sc3d.org>
13051
13052 * textmodes/remember.el (remember-store-in-files): Document that
13053 the file name format is passed to `format-time-string'.
13054
13055 2013-04-26 Leo Liu <sdl.web@gmail.com>
13056
13057 * progmodes/octave.el (octave-sync-function-file-names): New function.
13058 (octave-mode): Use it in before-save-hook.
13059
13060 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
13061
13062 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
13063 (bug#14274).
13064
13065 * progmodes/octave.el (octave-smie-forward-token): Properly skip
13066 \n and comment, even if it's not an implicit ; (bug#14218).
13067
13068 2013-04-26 Glenn Morris <rgm@gnu.org>
13069
13070 * subr.el (read-number): Once more use `read' rather than
13071 `string-to-number', to trap non-numeric input. (Bug#14254)
13072
13073 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
13074
13075 * emacs-lisp/syntax.el (syntax-propertize-multiline):
13076 Use `syntax-multiline' text property consistently instead of
13077 `font-lock-multiline'. (Bug#14237)
13078
13079 2013-04-26 Glenn Morris <rgm@gnu.org>
13080
13081 * emacs-lisp/shadow.el (list-load-path-shadows):
13082 No longer necessary to check for duplicate simple.el, since
13083 2012-07-07 change to init_lread to not include installation lisp
13084 directories in load-path when running uninstalled. (Bug#14270)
13085
13086 2013-04-26 Leo Liu <sdl.web@gmail.com>
13087
13088 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
13089 (octave-mode, inferior-octave-mode): Use setq-local.
13090 (octave-not-in-string-or-comment-p): Rename to
13091 octave-in-string-or-comment-p.
13092 (octave-in-comment-p, octave-in-string-p)
13093 (octave-in-string-or-comment-p): Replace defsubst with defun.
13094
13095 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
13096
13097 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
13098
13099 2013-04-25 Bastien Guerry <bzg@gnu.org>
13100
13101 * textmodes/remember.el (remember-data-directory)
13102 (remember-directory-file-name-format): Fix custom types.
13103
13104 2013-04-25 Leo Liu <sdl.web@gmail.com>
13105
13106 * progmodes/octave.el (octave-completion-at-point-function):
13107 Make use of inferior octave process.
13108 (octave-initialize-completions): Remove.
13109 (inferior-octave-completion-table): New function.
13110 (inferior-octave-completion-at-point): Use it.
13111 (octave-completion-alist): Remove.
13112
13113 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13114
13115 * progmodes/opascal.el: Use font-lock and syntax-propertize.
13116 (opascal-mode-syntax-table): New var.
13117 (opascal-literal-kind, opascal-is-literal-end)
13118 (opascal-literal-token-at): Rewrite.
13119 (opascal--literal-start-re, opascal-font-lock-keywords)
13120 (opascal--syntax-propertize): New constants.
13121 (opascal-font-lock-defaults): Adjust.
13122 (opascal-mode): Use them. Set comment-<foo> variables as well.
13123 (delphi-comment-face, opascal-comment-face, delphi-string-face)
13124 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
13125 (delphi-other-face, opascal-other-face): Remove face variables.
13126 (opascal-save-state): Remove macro.
13127 (opascal-fontifying-progress-step): Remove constant.
13128 (opascal--ignore-changes): Remove var.
13129 (opascal-set-token-property, opascal-parse-next-literal)
13130 (opascal-is-stable-literal, opascal-complete-literal)
13131 (opascal-is-literal-start, opascal-face-of)
13132 (opascal-parse-region, opascal-parse-region-until-stable)
13133 (opascal-fontify-region, opascal-after-change)
13134 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
13135 (opascal-debug-parse-region, opascal-debug-parse-window)
13136 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
13137 (opascal-debug-fontify-buffer): Remove.
13138 (opascal-debug-mode-map): Adjust accordingly.
13139
13140 2013-04-25 Leo Liu <sdl.web@gmail.com>
13141
13142 Merge octave-mod.el and octave-inf.el into octave.el with some
13143 cleanups.
13144 * progmodes/octave.el: New file renamed from octave-mod.el.
13145 * progmodes/octave-inf.el: Merged into octave.el.
13146 * progmodes/octave-mod.el: Renamed to octave.el.
13147
13148 2013-04-25 Tassilo Horn <tsdh@gnu.org>
13149
13150 * textmodes/reftex-vars.el
13151 (reftex-label-ignored-macros-and-environments): New defcustom.
13152
13153 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
13154
13155 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13156
13157 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
13158 (smie-indent-keyword): Improve the check to ensure that the next
13159 comment is really on the same line.
13160 (smie-indent-comment): Don't align with a subsequent closer (or eob).
13161
13162 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
13163 semi-colons if the line is not otherwise empty (bug#14218).
13164
13165 2013-04-25 Glenn Morris <rgm@gnu.org>
13166
13167 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
13168
13169 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
13170
13171 * progmodes/opascal.el (opascal-set-token-property): Rename from
13172 opascal-set-text-properties and only set `token' (bug#14134).
13173 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
13174 (opascal-literal-text-properties): Remove.
13175 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
13176 Adjust callers.
13177
13178 2013-04-24 Reuben Thomas <rrt@sc3d.org>
13179
13180 * textmodes/remember.el (remember-handler-functions): Add an
13181 option for a new handler `remember-store-in-files'.
13182 (remember-data-directory, remember-directory-file-name-format):
13183 New options.
13184 (remember-store-in-files): New function to store remember notes
13185 as separate files within a directory.
13186
13187 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
13188
13189 * progmodes/compile.el (compilation-next-error-function):
13190 Pass "formats" to compilation-find-file (bug#11777).
13191
13192 2013-04-24 Glenn Morris <rgm@gnu.org>
13193
13194 * vc/vc-bzr.el (vc-bzr-print-log):
13195 * vc/vc-hg.el (vc-hg-print-log):
13196 * vc/vc-svn.el (vc-svn-print-log):
13197 Fix START-REVISION with LIMIT != 1. (Bug#14168)
13198
13199 * vc/vc-bzr.el (vc-bzr-print-log):
13200 * vc/vc-cvs.el (vc-cvs-print-log):
13201 * vc/vc-git.el (vc-git-print-log):
13202 * vc/vc-hg.el (vc-hg-print-log):
13203 * vc/vc-mtn.el (vc-mtn-print-log):
13204 * vc/vc-rcs.el (vc-rcs-print-log):
13205 * vc/vc-sccs.el (vc-sccs-print-log):
13206 * vc/vc-svn.el (vc-svn-print-log):
13207 * vc/vc.el (vc-print-log-internal): Doc fixes.
13208
13209 2013-04-23 Glenn Morris <rgm@gnu.org>
13210
13211 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
13212 Remove venerable code attempting to avoid substitute-command-keys.
13213
13214 2013-04-23 Tassilo Horn <tsdh@gnu.org>
13215
13216 * textmodes/reftex-vars.el (reftex-label-regexps):
13217 Call `reftex-compile-variables' after changes to this variable.
13218
13219 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
13220
13221 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
13222 Use lexical-binding.
13223 (jit-lock-force-redisplay): Use markers, check buffer's continued
13224 existence and beware narrowed buffers.
13225 (jit-lock-fontify-now): Adjust call accordingly.
13226
13227 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
13228
13229 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
13230 to avoid misleading the user.
13231
13232 2013-04-22 Leo Liu <sdl.web@gmail.com>
13233
13234 * info-look.el: Prefer latex2e.info. (Bug#14240)
13235
13236 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
13237
13238 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
13239
13240 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
13241 * net/tramp.el (tramp-call-process): ... here.
13242 (tramp-set-completion-function, tramp-parse-putty):
13243 * net/tramp-adb.el (tramp-adb-execute-adb-command):
13244 * net/tramp-gvfs.el (tramp-gvfs-send-command):
13245 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
13246 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
13247 (tramp-call-local-coding-command): Use `tramp-call-process'
13248 instead of `tramp-compat-call-process'.
13249
13250 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
13251 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
13252 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
13253 (tramp-find-inline-compress): Improve traces.
13254 (tramp-maybe-send-script): Check for Perl binary.
13255 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
13256
13257 2013-04-22 Daiki Ueno <ueno@gnu.org>
13258
13259 * epg.el (epg-context-pinentry-mode): New function.
13260 (epg-context-set-pinentry-mode): New function.
13261 (epg--start): Pass --pinentry-mode option to gpg command.
13262
13263 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
13264
13265 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
13266 `comint-dynamic-complete' is obsolete since 24.1, replaced by
13267 `completion-at-point'. (Bug#13774)
13268
13269 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
13270 default key binding for `describe-distribution' has been moved to
13271 `C-h C-o'. (Bug#13970)
13272
13273 2013-04-21 Glenn Morris <rgm@gnu.org>
13274
13275 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
13276 Add doc strings.
13277 (vc-print-log): Clarify interactive prompt.
13278
13279 2013-04-20 Glenn Morris <rgm@gnu.org>
13280
13281 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
13282 No longer include timestamp etc information.
13283
13284 2013-04-20 Roland Winkler <winkler@gnu.org>
13285
13286 * faces.el (read-face-name): Bug fix, return just one face if arg
13287 multiple is nil. (Bug#14209)
13288
13289 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13290
13291 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
13292 (remove-function): Autoload.
13293
13294 * comint.el (comint-redirect-original-filter-function): Remove.
13295 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
13296 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
13297 (vc-cvs-annotate-command):
13298 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
13299 * progmodes/prolog.el (prolog-consult-compile):
13300 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
13301 Use add/remove-function instead.
13302 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
13303 (gud-tooltip-process-output, gud-tooltip-tips):
13304 Use add/remove-function instead.
13305 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
13306 (scheme-interaction-mode, exit-scheme-interaction-mode):
13307 Use add/remove-function instead.
13308
13309 * vc/vc-dispatcher.el: Use lexical-binding.
13310 (vc--process-sentinel): Rename from vc-process-sentinel.
13311 Change last arg to be the code to run. Don't use vc-previous-sentinel
13312 and vc-sentinel-commands any more.
13313 (vc-exec-after): Allow code to be a function. Use add/remove-function.
13314 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
13315
13316 2013-04-19 Masatake YAMATO <yamato@redhat.com>
13317
13318 * progmodes/sh-script.el (sh-imenu-generic-expression):
13319 Handle function names with a single character. (Bug#14111)
13320
13321 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
13322
13323 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
13324 for subroutines defined in an eval (bug#14182).
13325
13326 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13327
13328 * bookmark.el (bookmark-completing-read): Improve handling of empty
13329 string (bug#14176).
13330
13331 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
13332
13333 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
13334
13335 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
13336
13337 New faster Imenu implementation (bug#14058).
13338 * progmodes/python.el:
13339 (python-imenu-prev-index-position):
13340 (python-imenu-format-item-label-function)
13341 (python-imenu-format-parent-item-label-function)
13342 (python-imenu-format-parent-item-jump-label-function):
13343 New vars.
13344 (python-imenu-format-item-label)
13345 (python-imenu-format-parent-item-label)
13346 (python-imenu-format-parent-item-jump-label)
13347 (python-imenu--put-parent, python-imenu--build-tree)
13348 (python-imenu-create-index, python-imenu-create-flat-index)
13349 (python-util-popn): New functions.
13350 (python-mode): Set imenu-create-index-function to
13351 python-imenu-create-index.
13352
13353 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13354
13355 * winner.el (winner-active-region): Use region-active-p, activate-mark
13356 and deactivate-mark (bug#14225).
13357
13358 * simple.el (deactivate-mark): Don't inline it.
13359
13360 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
13361
13362 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
13363
13364 2013-04-18 Tassilo Horn <tsdh@gnu.org>
13365
13366 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
13367 file extensions from the archive-mode entry in order to prefer
13368 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
13369
13370 2013-04-18 Leo Liu <sdl.web@gmail.com>
13371
13372 * bindings.el (help-event-list): Add ?\?.
13373
13374 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
13375
13376 * subr.el (with-wrapper-hook): Declare obsolete.
13377 * simple.el (filter-buffer-substring-function): New hook.
13378 (filter-buffer-substring): Use it.
13379 (filter-buffer-substring-functions): Mark obsolete.
13380 * minibuffer.el (completion-in-region-function): New hook.
13381 (completion-in-region): Use it.
13382 (completion-in-region-functions): Mark obsolete.
13383 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
13384 * abbrev.el (abbrev-expand-function): New hook.
13385 (expand-abbrev): Use it.
13386 (abbrev-expand-functions): Mark obsolete.
13387 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
13388 and :filter-return.
13389
13390 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
13391
13392 * progmodes/python.el (python-nav--syntactically): Fix cornercases
13393 and do not care about match data.
13394
13395 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13396
13397 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
13398 completion tables when completing error conditions and
13399 `declare' arguments.
13400 (lisp-complete-symbol, field-complete): Mark as obsolete.
13401 (check-parens): Unmatched parens are user errors.
13402 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
13403
13404 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
13405
13406 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
13407 command changed buffer (ie. `flyspell-pre-buffer' is not current
13408 buffer), which prevents making decisions based on invalid value of
13409 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
13410 cause an error when `flyspell-pre-point' was nil after switching
13411 buffers.
13412 (flyspell-post-command-hook): No longer needs to change buffers when
13413 checking pre-word. While at it remove unnecessary progn.
13414
13415 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
13416
13417 * textmodes/ispell.el (ispell-add-per-file-word-list):
13418 Fix `flyspell-correct-word-before-point' error when accepting
13419 words and `coment-padding' is an integer by using
13420 `comment-normalize-vars' (Bug #14214).
13421
13422 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
13423
13424 New defun movement commands.
13425 * progmodes/python.el (python-nav--syntactically)
13426 (python-nav--forward-defun, python-nav-backward-defun)
13427 (python-nav-forward-defun): New functions.
13428
13429 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
13430
13431 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
13432 (python-syntax-context): Use named compiler-macro for backwards
13433 compatibility with Emacs 24.x.
13434
13435 2013-04-17 Leo Liu <sdl.web@gmail.com>
13436
13437 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
13438 octave-hide-process-buffer.
13439
13440 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
13441
13442 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
13443 (bug#14216).
13444
13445 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
13446
13447 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
13448 Fix adjustment of offset when receiving incomplete responses from GDB
13449 (bug#14129).
13450
13451 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13452
13453 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
13454 python-mode-abbrev-table.
13455 (python-skeleton-define): Adjust accordingly.
13456 (python-mode-abbrev-table): New table that inherits from it so that
13457 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
13458
13459 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
13460 (abbrev-symbol): Use it.
13461 (abbrev--before-point): Use it since we already handle inheritance.
13462
13463 2013-04-16 Leo Liu <sdl.web@gmail.com>
13464
13465 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
13466 binding to info-lookup-symbol.
13467
13468 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
13469
13470 * minibuffer.el (completion--twq-all):
13471 * term/ns-win.el (ns-initialize-window-system):
13472 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
13473
13474 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
13475
13476 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
13477 global bindings.
13478
13479 * doc-view.el (doc-view-start-process): Handle url-handler directories.
13480
13481 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
13482
13483 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
13484 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
13485 to nil.
13486 (ruby-end-of-defun): Remove the unused arg, change the docstring
13487 to reflect that this function is only used as the value of
13488 `end-of-defun-function'.
13489 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
13490 to reflect an earlier change that beginning/end-of-defun functions
13491 jump between methods in a class definition, as well as top-level
13492 functions.
13493
13494 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13495
13496 * minibuffer.el (minibuffer-complete): Don't just scroll
13497 a *Completions* that's been iconified.
13498 (minibuffer-force-complete): Make sure repetitions do cycle when going
13499 through completion-in-region -> minibuffer-complete.
13500
13501 2013-04-15 Alan Mackenzie <acm@muc.de>
13502
13503 Correct the placement of c-cpp-delimiters when there're #s not at
13504 col 0.
13505
13506 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
13507 place a submatch around the #.
13508 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
13509 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
13510 on the #, not BOL.
13511
13512 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13513
13514 * emacs-lisp/nadvice.el: Properly test names when adding advice.
13515 (advice--member-p): New arg `name'.
13516 (advice--add-function, advice-member-p): Use it (bug#14202).
13517
13518 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
13519
13520 Reformulate java imenu-generic-expression.
13521 The old expression contained ill formed regexps.
13522
13523 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
13524 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
13525 (cc-imenu-java-method-arg-regexp): New defconsts.
13526 (cc-imenu-java-build-type-args-regex): New defun.
13527 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
13528 handling of spaces in the regexp.
13529
13530 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13531
13532 * textmodes/ispell.el (ispell-command-loop): Remove
13533 flyspell highlight of a word when ispell accepts it (bug #14178).
13534
13535 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
13536
13537 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
13538 uses code from the previous `ange-ftp-run-real-handler'.
13539 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
13540 only in case that function exist. This is needed for proper
13541 unloading of Tramp.
13542
13543 2013-04-15 Tassilo Horn <tsdh@gnu.org>
13544
13545 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
13546
13547 * textmodes/reftex.el (reftex-compile-variables): Use it.
13548
13549 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13550
13551 * files.el (normal-mode): Only use default major-mode if no other mode
13552 was specified.
13553
13554 * emacs-lisp/trace.el (trace-values): New function.
13555
13556 * files.el: Allow : in local variables (bug#14089).
13557 (hack-local-variable-regexp): New var.
13558 (hack-local-variables-prop-line, hack-local-variables): Use it.
13559
13560 2013-04-13 Roland Winkler <winkler@gnu.org>
13561
13562 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
13563 data before it gets modified by bibtex-beginning-of-entry.
13564
13565 2013-04-13 Roland Winkler <winkler@gnu.org>
13566
13567 * textmodes/bibtex.el (bibtex-url): Doc fix.
13568
13569 2013-04-13 Roland Winkler <winkler@gnu.org>
13570
13571 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
13572 does not visit a BibTeX file, exclude it from the list of buffers
13573 returned by bibtex-initialize.
13574
13575 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
13576
13577 * window.el (split-window): Remove interactive form, since as a
13578 command this function is a special case of split-window-below.
13579 Correct doc string.
13580
13581 2013-04-12 Roland Winkler <winkler@gnu.org>
13582
13583 * faces.el (read-face-name): Do not override value of arg default.
13584 Allow single faces and strings as default values. Remove those
13585 elements from return value that are not faces.
13586 (describe-face): Simplify.
13587 (face-at-point): New optional args thing and multiple so that this
13588 function can provide the same functionality previously provided by
13589 read-face-name.
13590 (make-face-bold, make-face-unbold, make-face-italic)
13591 (make-face-unitalic, make-face-bold-italic, invert-face)
13592 (modify-face, read-face-and-attribute): Use face-at-point.
13593
13594 * cus-edit.el (customize-face, customize-face-other-window)
13595 * cus-theme.el (custom-theme-add-face)
13596 * face-remap.el (buffer-face-set)
13597 * facemenu.el (facemenu-set-face): Use face-at-point.
13598
13599 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
13600
13601 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
13602
13603 2013-04-10 Tassilo Horn <tsdh@gnu.org>
13604
13605 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
13606 off leading { and trailing } from field values.
13607
13608 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
13609
13610 * emacs-lisp/timer.el (timer--check): New function.
13611 (timer--time, timer-set-function, timer-event-handler): Use it.
13612 (timer-set-idle-time): Simplify.
13613 (timer--activate): CSE.
13614 (timer-event-handler): Give more info in error message.
13615 (internal-timer-start-idle): New function, moved from C.
13616
13617 * mpc.el (mpc-proc): Add `restart' argument.
13618 (mpc-proc-cmd): Use it.
13619 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
13620 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
13621 less often.
13622
13623 2013-04-10 Masatake YAMATO <yamato@redhat.com>
13624
13625 * progmodes/sh-script.el: Implement `sh-mode' own
13626 `add-log-current-defun-function' (bug#14112).
13627 (sh-current-defun-name): New function.
13628 (sh-mode): Use the function.
13629
13630 2013-04-09 Bastien Guerry <bzg@gnu.org>
13631
13632 * simple.el (choose-completion-string): Fix docstring (bug#14163).
13633
13634 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
13635
13636 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
13637
13638 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
13639 timer (bug#14156).
13640
13641 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
13642
13643 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
13644 declaration.
13645
13646 2013-04-07 Leo Liu <sdl.web@gmail.com>
13647
13648 * pcmpl-x.el: New file.
13649
13650 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
13651
13652 Do not set x-display-name until X connection is established.
13653 This is needed to prevent from weird situation described at
13654 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
13655 * frame.el (make-frame): Set x-display-name after call to
13656 window system initialization function, not before.
13657 * term/x-win.el (x-initialize-window-system): Add optional
13658 display argument and use it.
13659 * term/w32-win.el (w32-initialize-window-system):
13660 * term/ns-win.el (ns-initialize-window-system):
13661 * term/pc-win.el (msdos-initialize-window-system):
13662 Add compatible optional display argument.
13663
13664 2013-04-06 Eli Zaretskii <eliz@gnu.org>
13665
13666 * files.el (normal-backup-enable-predicate): On MS-Windows and
13667 MS-DOS compare truenames of temporary-file-directory and of the
13668 file, so that 8+3 aliases (usually found in $TEMP on Windows)
13669 don't fail comparison by compare-strings. Also, compare file
13670 names case-insensitively on MS-Windows and MS-DOS.
13671
13672 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
13673
13674 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
13675 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
13676
13677 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
13678
13679 * whitespace.el (whitespace-color-on, whitespace-color-off):
13680 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
13681
13682 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
13683
13684 * ispell.el (ispell-set-spellchecker-params):
13685 Really set `ispell-args' for all equivs.
13686
13687 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
13688
13689 * ido.el (ido-completions): Use extra elements of ido-decorations
13690 (bug#14143).
13691 (ido-decorations): Update docstring.
13692
13693 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
13694
13695 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13696 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
13697 nil during initialization, in order not to miss changes since the
13698 file was opened. (Bug#14140)
13699
13700 2013-04-05 Leo Liu <sdl.web@gmail.com>
13701
13702 * kmacro.el (kmacro-call-macro): Fix bug#14135.
13703
13704 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
13705
13706 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
13707
13708 2013-04-04 Glenn Morris <rgm@gnu.org>
13709
13710 * electric.el (electric-pair-inhibit-predicate): Add :version.
13711
13712 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
13713
13714 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
13715 when a package is required several times (bug#14082).
13716
13717 2013-04-04 Roland Winkler <winkler@gnu.org>
13718
13719 * faces.el (read-face-name): Behave as promised by the docstring.
13720 Assume that arg default is a list of faces.
13721 (describe-face): Call read-face-name with list of default faces.
13722
13723 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13724
13725 * bookmark.el: Fix deletion of bookmarks (bug#13972).
13726 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
13727 (bookmark-bmenu-execute-deletions): Only skip first line if it's
13728 the header.
13729 (bookmark-exit-hook-internal): Save even if list is empty.
13730
13731 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
13732
13733 * emacs-lisp/package.el (package-pinned-packages): New var.
13734 (package--add-to-archive-contents): Obey it (bug#14118).
13735
13736 2013-04-03 Alan Mackenzie <acm@muc.de>
13737
13738 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
13739 Also adapt to the new values of element 7 of a parse state.
13740
13741 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
13742 parameter `not-in-delimiter'. Handle being inside comment opener.
13743 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
13744 character in case we're typing a '*' after a '/'.
13745 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
13746 instead by passing the parameter to c-state-pp-to-literal.
13747
13748 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
13749 for elt. 7 of a parse state.
13750
13751 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
13752
13753 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
13754 * international/latin1-disp.el, international/mule-util.el:
13755 * language/cyril-util.el, language/european.el, language/ind-util.el:
13756 * language/lao-util.el, language/thai.el, language/tibet-util.el:
13757 * language/tibetan.el, language/viet-util.el:
13758 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
13759
13760 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
13761
13762 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
13763 (electric-pair-post-self-insert-function): Use it.
13764 (electric-pair-default-inhibit): New function, extracted from
13765 electric-pair-post-self-insert-function.
13766
13767 2013-03-31 Roland Winkler <winkler@gnu.org>
13768
13769 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
13770
13771 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
13772
13773 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
13774
13775 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
13776
13777 Un-indent after "pass" and "return" statements (Bug#13888)
13778 * progmodes/python.el (python-indent-block-enders): New var.
13779 (python-indent-calculate-indentation): Use it.
13780
13781 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
13782
13783 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
13784 defun. Defining it as defalias could introduce too eager
13785 byte-compiler optimization. (Bug#14030)
13786
13787 2013-03-30 Chong Yidong <cyd@gnu.org>
13788
13789 * iswitchb.el (iswitchb-read-buffer): Fix typo.
13790
13791 2013-03-30 Leo Liu <sdl.web@gmail.com>
13792
13793 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
13794 (kmacro-execute-from-register): Pass the keyboard macro to
13795 kmacro-call-macro or repeating won't work correctly.
13796
13797 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
13798
13799 * progmodes/subword.el: Back to using `forward-symbol'.
13800
13801 * subr.el (forward-whitespace, forward-symbol)
13802 (forward-same-syntax): Move from thingatpt.el.
13803
13804 2013-03-29 Leo Liu <sdl.web@gmail.com>
13805
13806 * kmacro.el (kmacro-to-register): New command.
13807 (kmacro-execute-from-register): New function.
13808 (kmacro-keymap): Bind to 'x'. (Bug#14071)
13809
13810 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
13811
13812 * mpc.el: Use defvar-local and setq-local.
13813 (mpc--proc-connect): Connection failures are not bugs.
13814 (mpc-mode-map): `follow-link' only applies to the buffer's content.
13815 (mpc-volume-map): Bind to the up-events.
13816
13817 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
13818
13819 * progmodes/subword.el (superword-mode): Use `forward-sexp'
13820 instead of `forward-symbol'.
13821
13822 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13823
13824 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
13825 (edebug--recursive-edit): Use it.
13826 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
13827 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
13828
13829 2013-03-28 Leo Liu <sdl.web@gmail.com>
13830
13831 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
13832
13833 2013-03-27 Eli Zaretskii <eliz@gnu.org>
13834
13835 * facemenu.el (list-colors-callback): New defvar.
13836 (list-colors-redisplay): New function.
13837 (list-colors-display): Install list-colors-redisplay as the
13838 revert-buffer-function. (Bug#14063)
13839
13840 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13841
13842 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
13843 and suffixes don't overlap (bug#14061).
13844
13845 * case-table.el: Use lexical-binding.
13846 (case-table-get-table): New function.
13847 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
13848
13849 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
13850
13851 * progmodes/subword.el: Add `superword-mode' to do word motion
13852 over symbol_words (parallels and leverages `subword-mode' which
13853 does word motion inside MixedCaseWords).
13854
13855 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
13856
13857 * eshell/em-unix.el: Move su and sudo to...
13858 * eshell/em-tramp.el: ...Eshell tramp module.
13859
13860 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13861
13862 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
13863 Change return value to be a sexp. Delay `get-buffer' to after
13864 restoring the desktop (bug#13951).
13865
13866 2013-03-26 Leo Liu <sdl.web@gmail.com>
13867
13868 * register.el: Move semantic tag handling back to
13869 cedet/semantic/senator.el. (Bug#14052)
13870
13871 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13872
13873 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
13874 into the prompt either (bug#13963).
13875
13876 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
13877
13878 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
13879 part of "(error-foo)".
13880
13881 2013-03-24 Juri Linkov <juri@jurta.org>
13882
13883 * replace.el (list-matching-lines-prefix-face): New defcustom.
13884 (occur-1): Pass `list-matching-lines-prefix-face' to the function
13885 `occur-engine' if `face-differs-from-default-p' returns t.
13886 (occur-engine): Add `,' inside backquote construct to evaluate
13887 `prefix-face'. Propertize the prefix with the `prefix-face' face.
13888 Pass `prefix-face' to the functions `occur-context-lines' and
13889 `occur-engine-add-prefix'.
13890 (occur-engine-add-prefix, occur-context-lines): Add optional arg
13891 `prefix-face' and propertize the prefix with `prefix-face'.
13892 (Bug#14017)
13893
13894 2013-03-24 Leo Liu <sdl.web@gmail.com>
13895
13896 * nxml/rng-valid.el (rng-validate-while-idle)
13897 (rng-validate-quick-while-idle): Guard against deleted buffer.
13898 (Bug#13999)
13899
13900 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
13901 is the last entry in kill-buffer-hook.
13902
13903 * files.el (kill-buffer-hook): Doc fix.
13904
13905 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
13906
13907 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
13908 Make it safe-local.
13909
13910 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
13911
13912 2013-03-23 Leo Liu <sdl.web@gmail.com>
13913
13914 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
13915 Remove.
13916
13917 * nxml/rng-valid.el (rng-validate-mode)
13918 (rng-after-change-function, rng-do-some-validation):
13919 * nxml/rng-maint.el (rng-validate-buffer):
13920 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
13921 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
13922 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
13923 (nxml-extend-after-change-region): Use with-silent-modifications.
13924
13925 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
13926 timer-idle-list.
13927
13928 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
13929 (rng-next-error-1, rng-previous-error-1): Do not let-bind
13930 timer-idle-list. (Bug#13999)
13931
13932 2013-03-23 Juri Linkov <juri@jurta.org>
13933
13934 * info.el (info-index-match): New face.
13935 (Info-index, Info-apropos-matches): Add a nested subgroup to the
13936 main pattern and add text properties with the new face to matches
13937 in index entries relative to the beginning of the index entry.
13938 (Bug#14015)
13939
13940 2013-03-21 Eric Ludlam <zappo@gnu.org>
13941
13942 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
13943 Inhibit read only while inserting objects.
13944
13945 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
13946
13947 * progmodes/cfengine.el: Update docs to mention
13948 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
13949 symbol motion. Remove "_" from the word syntax.
13950
13951 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
13952
13953 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
13954 syntax for both `cfengine2-mode' and `cfengine3-mode'.
13955
13956 2013-03-20 Juri Linkov <juri@jurta.org>
13957
13958 * info.el (Info-next-reference-or-link)
13959 (Info-prev-reference-or-link): New functions.
13960 (Info-next-reference, Info-prev-reference): Use them.
13961 (Info-try-follow-nearest-node): Handle footnote navigation.
13962 (Info-fontify-node): Fontify footnotes. (Bug#13989)
13963
13964 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13965
13966 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
13967 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
13968
13969 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
13970
13971 Suppress unnecessary non-ASCII chatter during build process.
13972 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
13973 (batch-skkdic-convert): Suppress most of the chatter.
13974 It's not needed so much now that machines are faster,
13975 and its non-ASCII component was confusing; see Dmitry Gutov in
13976 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
13977
13978 2013-03-20 Leo Liu <sdl.web@gmail.com>
13979
13980 * ido.el (ido-chop): Fix bug#10994.
13981
13982 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
13983
13984 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
13985 Remove vars.
13986 (whitespace-color-on, whitespace-color-off):
13987 Use `font-lock-fontify-buffer' (Bug#13817).
13988
13989 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
13990
13991 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
13992 remapping in mode-line.
13993 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
13994
13995 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
13996
13997 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
13998 value for `whitespace-line' face (Bug#13875).
13999 (whitespace-font-lock-keywords): Change description.
14000 (whitespace-color-on): Don't save `font-lock-keywords' value, save
14001 the constructed keywords instead.
14002 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
14003
14004 2013-03-19 Leo Liu <sdl.web@gmail.com>
14005
14006 * progmodes/compile.el (compilation-display-error): New command.
14007 (compilation-mode-map, compilation-minor-mode-map): Bind it to
14008 C-o. (Bug#13992)
14009
14010 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
14011
14012 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
14013
14014 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
14015
14016 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
14017
14018 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
14019
14020 * net/tramp-compat.el (tramp-compat-user-error): New defun.
14021
14022 * net/tramp-adb.el (tramp-adb-handle-shell-command):
14023 * net/tramp-gvfs.el (top):
14024 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
14025 (tramp-handle-shell-command): Use it.
14026 (tramp-dissect-file-name): Raise an error when hostname is a
14027 method name, and neither method nor user is specified.
14028
14029 * net/trampver.el: Update release number.
14030
14031 2013-03-18 Leo Liu <sdl.web@gmail.com>
14032
14033 Make sure eldoc can be turned off properly.
14034 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
14035 eldoc-mode.
14036 (eldoc-display-message-p): Revert last change.
14037 (eldoc-display-message-no-interference-p)
14038 (eldoc-print-current-symbol-info): Tweak.
14039
14040 2013-03-18 Tassilo Horn <tsdh@gnu.org>
14041
14042 * doc-view.el (doc-view-new-window-function): Check the new window
14043 overlay's display property instead the char property of the
14044 buffer's first char. Use `with-selected-window' instead of
14045 `save-window-excursion' with `select-window'.
14046 (doc-view-document->bitmap): Check the current doc-view overlay's
14047 display property instead the char property of the buffer's first char.
14048
14049 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
14050
14051 Automate the build of ja-dic.el (Bug#13984).
14052 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
14053 from the input, rather than assume that it's been done for us by the
14054 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
14055 the current date into a ja-dic.el comment, as that complicates
14056 regression testing.
14057
14058 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
14059
14060 * whitespace.el: Fix double evaluation.
14061 (whitespace-space, whitespace-hspace, whitespace-tab)
14062 (whitespace-newline, whitespace-trailing, whitespace-line)
14063 (whitespace-space-before-tab, whitespace-indentation)
14064 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
14065 obsolete defvars.
14066 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
14067 (whitespace-color-on): Use a single font-lock-add-keywords call.
14068 Fix double-evaluation of face variables.
14069
14070 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
14071
14072 * net/tramp-adb.el (tramp-adb-parse-device-names):
14073 Use `start-process' instead of `call-process'. Otherwise, the
14074 function might be blocked under MS Windows. (Bug#13299)
14075
14076 2013-03-17 Leo Liu <sdl.web@gmail.com>
14077
14078 Extend eldoc to display info in the mode-line. (Bug#13978)
14079 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
14080 (eldoc-mode-line-string): New variable.
14081 (eldoc-minibuffer-message): New function.
14082 (eldoc-message-function): New variable.
14083 (eldoc-message): Use it.
14084 (eldoc-display-message-p)
14085 (eldoc-display-message-no-interference-p):
14086 Support eldoc-post-insert-mode.
14087
14088 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
14089 (eval-expression): Run it.
14090
14091 2013-03-17 Roland Winkler <winkler@gnu.org>
14092
14093 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
14094 strings in the list of return values.
14095
14096 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
14097
14098 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
14099 radix before checking for HMS forms.
14100
14101 2013-03-16 Leo Liu <sdl.web@gmail.com>
14102
14103 * progmodes/scheme.el: Add indentation and font-locking for λ.
14104 (Bug#13975)
14105
14106 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
14107
14108 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
14109 token before point (bug#13942).
14110
14111 2013-03-16 Leo Liu <sdl.web@gmail.com>
14112
14113 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
14114
14115 2013-03-16 Eli Zaretskii <eliz@gnu.org>
14116
14117 * startup.el (command-line-normalize-file-name): Fix handling of
14118 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
14119 <xfq.free@gmail.com> in
14120 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
14121
14122 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
14123
14124 Sync with Tramp 2.2.7.
14125
14126 * net/trampver.el: Update release number.
14127
14128 2013-03-14 Tassilo Horn <tsdh@gnu.org>
14129
14130 * doc-view.el: Fix bug#13887.
14131 (doc-view-insert-image): Don't modify overlay associated to
14132 non-live windows, and implement horizontal centering of image in
14133 case it's smaller than the window.
14134 (doc-view-new-window-function): Force redisplay of new windows on
14135 doc-view buffers.
14136
14137 2013-03-13 Karl Fogel <kfogel@red-bean.com>
14138
14139 * saveplace.el (save-place-alist-to-file): Don't sort
14140 `save-place-alist', just pretty-print it (bug#13882).
14141
14142 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
14143
14144 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
14145 Check whether `default-file-name-coding-system' is bound.
14146 It isn't in XEmacs.
14147
14148 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
14149
14150 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
14151 backquotes for `obsolete' (bug#13929).
14152
14153 * international/mule.el (find-auto-coding): Include file name in
14154 obsolescence warning (bug#13922).
14155
14156 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
14157
14158 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
14159 for CFEngine 3-specific indentation.
14160 (cfengine3-indent-line): Use it. Fix up category regex.
14161 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
14162
14163 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14164
14165 * type-break.el (type-break-file-name):
14166 * textmodes/remember.el (remember-data-file):
14167 * strokes.el (strokes-file):
14168 * shadowfile.el (shadow-initialize):
14169 * saveplace.el (save-place-file):
14170 * ps-bdf.el (bdf-cache-file):
14171 * progmodes/idlwave.el (idlwave-config-directory):
14172 * net/quickurl.el (quickurl-url-file):
14173 * international/kkc.el (kkc-init-file-name):
14174 * ido.el (ido-save-directory-list-file):
14175 * emulation/viper.el (viper-custom-file-name):
14176 * emulation/vip.el (vip-startup-file):
14177 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
14178 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
14179
14180 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
14181
14182 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
14183 * language/thai-word.el: Switch to UTF-8.
14184
14185 See ChangeLog.16 for earlier changes.
14186
14187 ;; Local Variables:
14188 ;; coding: utf-8
14189 ;; End:
14190
14191 Copyright (C) 2011-2014 Free Software Foundation, Inc.
14192
14193 This file is part of GNU Emacs.
14194
14195 GNU Emacs is free software: you can redistribute it and/or modify
14196 it under the terms of the GNU General Public License as published by
14197 the Free Software Foundation, either version 3 of the License, or
14198 (at your option) any later version.
14199
14200 GNU Emacs is distributed in the hope that it will be useful,
14201 but WITHOUT ANY WARRANTY; without even the implied warranty of
14202 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14203 GNU General Public License for more details.
14204
14205 You should have received a copy of the GNU General Public License
14206 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.