]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
Merge from origin/emacs-24
[gnu-emacs] / lisp / ChangeLog
1 2015-03-23 Glenn Morris <rgm@gnu.org>
2
3 * emacs-lisp/authors.el (authors-aliases)
4 (authors-obsolete-files-regexps): Additions.
5
6 2015-03-23 Jan Djärv <jan.h.d@swipnet.se>
7
8 * simple.el (deactivate-mark): Only modify PRIMARY if we own
9 PRIMARY (Bug#18939).
10
11 2015-03-23 Martin Rudalics <rudalics@gmx.at>
12
13 * emacs-lisp/debug.el (debug): Don't try using "previous" window
14 when its not live or on an invisible frame (Bug#17170).
15
16 2015-03-23 Dmitry Gutov <dgutov@yandex.ru>
17
18 * json.el (json-decode-char0): Delete this alias as well.
19 (json-read-escaped-char): Don't call it (bug#20154).
20
21 2015-03-23 Daniel Colascione <dancol@dancol.org>
22
23 * emacs-lisp/lisp-mode.el (lisp--el-non-funcall-position-p): New function.
24 (lisp--el-match-keyword): Use it.
25
26 2015-03-23 Daiki Ueno <ueno@gnu.org>
27
28 * subr.el (start-process): New function, ported from the C
29 implementation.
30
31 2015-03-23 Daniel Colascione <dancol@dancol.org>
32
33 Automatically adjust process window sizes.
34
35 * window.el (window-adjust-process-window-size-function): New
36 customizable variable.
37 (window-adjust-process-window-size)
38 (window-adjust-process-window-size-smallest)
39 (window-adjust-process-window-size-largest)
40 (window--process-window-list, window--adjust-process-windows):
41 New functions.
42 (window-configuration-change-hook): Add
43 `window--adjust-process-windows'.
44 * term.el (term-mode): Observe result of
45 `window-adjust-process-window-size-function'.
46 (term-check-size): Delete.
47
48 2015-03-22 Jackson Ray Hamilton <jackson@jacksonrayhamilton.com>
49
50 * textmodes/sgml-mode.el (sgml-attribute-offset): New defcustom.
51 (sgml-calculate-indent): Use `sgml-attribute-offset' for attribute
52 indentation (bug#20161).
53
54 2015-03-22 Dmitry Gutov <dgutov@yandex.ru>
55
56 * json.el (json-encode-char0): Delete this alias.
57 (json-encode-string): Rewrite to improve performance (bug#20154).
58 (json-encode-char): Fold into `json-encode-string'.
59
60 2015-03-22 Artur Malabarba <bruce.connor.am@gmail.com>
61
62 * menu-bar.el (menu-bar-update-buffers): Count displayed buffers
63 for `buffers-menu-max-size', not total buffers.
64
65 2015-03-21 Titus von der Malsburg <malsburg@posteo.de>
66
67 * window.el (window-font-width, window-font-height)
68 (window-max-chars-per-line): New functions.
69
70 * simple.el (default-font-height): Doc fix.
71 (default-font-width): New function.
72
73 2015-03-21 Tassilo Horn <tsdh@gnu.org>
74
75 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-1): Also
76 recognize (cl-)defmethod with (setf method) name.
77
78 2015-03-20 Tassilo Horn <tsdh@gnu.org>
79
80 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-1): Fix
81 false positive in function name font-locking.
82 (lisp-cl-font-lock-keywords-1): Ditto.
83
84 2015-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
85
86 * emacs-lisp/cl-macs.el (cl-defsubst): Ignore false-positive
87 occurrences of args via &cl-defs (bug#20149).
88
89 2015-03-20 Alan Mackenzie <acm@muc.de>
90
91 Fix debbugs#20146
92
93 * font-lock.el (font-lock-extend-jit-lock-region-after-change):
94 Return the calculated values, as per spec.
95
96 2015-03-20 Dmitry Gutov <dgutov@yandex.ru>
97
98 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `at_exit'
99 and `callcc' to the "methods with required arguments" section,
100 they need a block argument. Remove a `throw' duplicate.
101
102 2015-03-19 Vibhav Pant <vibhavp@gmail.com>
103
104 * progmodes/cperl-mode.el (cperl-electric-backspace):
105 Call delete-backward-space interactively instead of delete-char.
106
107 2015-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
108
109 * emacs-lisp/pcase.el (pcase-lambda): Rewrite.
110
111 * emacs-lisp/eieio.el (object-slots): Return slot names as before
112 (bug#20141).
113
114 2015-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
115
116 EIEIO: Change class's representation to unify instance and class slots
117 * emacs-lisp/eieio-core.el (eieio--class): Change field names and order
118 to match those of cl--class; use cl--slot for both instance slots and
119 class slots.
120 (eieio--object-num-slots): Use cl-struct-slot-info.
121 (eieio--object-class): Rename from eieio--object-class-object.
122 (eieio--object-class-name): Remove.
123 (eieio-defclass-internal): Adjust to new slot representation.
124 Store doc in class rather than in `variable-documentation'.
125 (eieio--perform-slot-validation-for-default): Change API to take
126 a slot object.
127 (eieio--slot-override): New function.
128 (eieio--add-new-slot): Rewrite.
129 (eieio-copy-parents-into-subclass): Rewrite.
130 (eieio--validate-slot-value, eieio--validate-class-slot-value)
131 (eieio-oref-default, eieio-oset-default)
132 (eieio--class-slot-name-index, eieio-set-defaults): Adjust to new
133 slot representation.
134 (eieio--c3-merge-lists): Simplify.
135 (eieio--class/struct-parents): New function.
136 (eieio--class-precedence-bfs): Use it.
137
138 * emacs-lisp/eieio.el (with-slots): Use macroexp-let2.
139 (object-class-fast): Change recommend replacement.
140 (eieio-object-class): Rewrite.
141 (slot-exists-p): Adjust to new slot representation.
142 (initialize-instance): Adjust to new slot representation.
143 (object-write): Adjust to new slot representation.
144
145 * emacs-lisp/eieio-opt.el (eieio--help-print-slot): New function
146 extracted from eieio-help-class-slots.
147 (eieio-help-class-slots): Use it. Adjust to new slot representation.
148
149 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
150 Declare to silence warnings.
151 (data-debug-insert-object-button): Avoid `object-slots'.
152 (data-debug/eieio-insert-slots): Adjust to new slot representation.
153
154 * emacs-lisp/eieio-custom.el (eieio-object-value-create)
155 (eieio-object-value-get): Adjust to new slot representation.
156
157 * emacs-lisp/eieio-compat.el
158 (eieio--generic-static-symbol-specializers):
159 Extract from eieio--generic-static-symbol-generalizer.
160 (eieio--generic-static-symbol-generalizer): Use it.
161
162 * emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
163 Manually map initargs to slot names.
164 (eieio-persistent-validate/fix-slot-value): Adjust to new
165 slot representation.
166
167 * emacs-lisp/cl-preloaded.el (cl--class): Fix type of `parents'.
168
169 2015-03-19 Vibhav Pant <vibhavp@gmail.com>
170
171 * leim/quail/hangul.el (hangul-delete-backward-char)
172 (hangul-to-hanja-conversion):
173 * progmodes/cperl-mode.el (cperl-electric-keyword)
174 (cperl-electric-backspace): Use delete-char instead of
175 delete-backward-char, fixes compilation warnings.
176
177 2015-03-18 Michael Albinus <michael.albinus@gmx.de>
178
179 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
180 Mark apostrophs with ?/ instead of \037. (Bug#20117)
181
182 2015-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
183
184 Add classes as run-time descriptors of cl-structs.
185 * emacs-lisp/cl-preloaded.el (cl--struct-get-class): New function.
186 (cl--make-slot-desc): New constructor.
187 (cl--plist-remove, cl--struct-register-child): New functions.
188 (cl-struct-define): Rewrite.
189 (cl-structure-class, cl-structure-object, cl-slot-descriptor)
190 (cl--class): New structs.
191 (cl--struct-default-parent): Initialize it here.
192 * emacs-lisp/cl-macs.el (cl--find-class): New macro.
193 (cl-defsubst, cl--defsubst-expand, cl--sublis): Move before first use.
194 (cl--struct-default-parent): New var.
195 (cl-defstruct): Adjust to new representation of classes; add
196 default parent. In accessors, signal `wrong-type-argument' rather than
197 a generic error.
198 (cl-struct-sequence-type, cl-struct-slot-info)
199 (cl-struct-slot-offset): Rewrite.
200 * emacs-lisp/cl-generic.el (cl--generic-struct-specializers)
201 (cl-generic-generalizers): Rewrite.
202
203 * emacs-lisp/macroexp.el (macroexp--debug-eager): New var.
204 (internal-macroexpand-for-load): Use it.
205
206 * emacs-lisp/debug.el (debug--implement-debug-on-entry):
207 Bind inhibit-debug-on-entry here...
208 (debug): Instead of here.
209
210 2015-03-18 Dima Kogan <dima@secretsauce.net>
211
212 Have gud-display-line not display source buffer in gud window.
213 * progmodes/gud.el (gud-display-line): Make display-buffer
214 not reuse selected window. (Bug#17675, Bug#19901, Bug#20034)
215
216 2015-03-17 Tassilo Horn <tsdh@gnu.org>
217
218 * emacs-lisp/byte-run.el (macro-declarations-alist):
219 New declaration no-font-lock-keyword.
220 (defmacro): Flush font-lock in existing elisp buffers.
221
222 * emacs-lisp/lisp-mode.el (lisp--el-update-after-load)
223 (lisp--el-update-macro-regexp, lisp--el-macro-regexp):
224 Delete functions and defconst.
225 (lisp--el-match-keyword): Rename from lisp--el-match-macro.
226 (lisp--el-font-lock-flush-elisp-buffers): New function.
227 (lisp-mode-variables): Remove code for updating
228 lisp--el-macro-regexp, and add
229 lisp--el-font-lock-flush-elisp-buffers to after-load-functions.
230
231 2015-03-17 Simen Heggestøyl <simenheg@gmail.com>
232
233 * textmodes/css-mode.el (css--font-lock-keywords):
234 Discriminate between pseudo-classes and pseudo-elements.
235 (css-pseudo-ids): Remove.
236 (css-pseudo-class-ids, css-pseudo-element-ids): New variables.
237 (css--complete-property): New function for completing CSS properties.
238 (css--complete-pseudo-element-or-class): New function
239 completing CSS pseudo-elements and pseudo-classes.
240 (css--complete-at-rule): New function for completing CSS at-rules.
241 (css-completion-at-point): New function.
242 (css-mode): Add support for completion.
243 (css-extract-keyword-list, css-extract-parse-val-grammar)
244 (css-extract-props-and-vals): Remove function in favor of manual
245 extraction.
246 (css-at-ids): Update list of CSS at-rule ids.
247 (css-property-ids): Update list of CSS properties.
248
249 2015-03-17 Bozhidar Batsov <bozhidar@batsov.com>
250
251 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Font-lock
252 more Kernel methods.
253
254 2015-03-17 Michael Albinus <michael.albinus@gmx.de>
255
256 * net/tramp-sh.el (tramp-maybe-send-script): Avoid leading tabs in
257 shell scripts. (Bug#20118)
258
259 2015-03-17 Eli Zaretskii <eliz@gnu.org>
260
261 * mouse.el (mouse-appearance-menu): If w32-use-w32-font-dialog is
262 nil, construct a menu of fixed fonts. This resurrects a feature
263 lost in Emacs 23.
264
265 * w32-vars.el (w32-use-w32-font-dialog): Add a ':set' function to
266 reset mouse-appearance-menu-map, so the font dialog is recomputed
267 the next time the menu is requested.
268 (w32-fixed-font-alist): Fix to use correct names of Courier fonts.
269
270 2015-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
271
272 * emacs-lisp/cl-macs.el (cl--transform-lambda): Refine last change
273 (bug#20125).
274
275 2015-03-17 Michael Albinus <michael.albinus@gmx.de>
276
277 * net/tramp-sh.el (tramp-ssh-controlmaster-options): Change test
278 for ControlPath in order to avoid DNS timeouts. (Bug#20015)
279
280 2015-03-16 Alan Mackenzie <acm@muc.de>
281
282 Edebug: Allow "S" to work during trace mode. Fixes debbugs #20074.
283 Also display the overlay arrow in go and go-nonstop modes.
284
285 * emacs-lisp/edebug.el (edebug--display-1): Move the
286 `input-pending' test to after trace mode's `sit-for'.
287 (edebug--recursive-edit): Insert "(sit-for 0)" after
288 "(edebug-overlay-arrow)".
289
290 2015-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
291
292 * emacs-lisp/cl-macs.el (cl--transform-lambda): Rework to avoid
293 cl--do-arglist in more cases; add comments to explain what's going on.
294 (cl--do-&aux): New function extracted from cl--do-arglist.
295 (cl--do-arglist): Use it.
296
297 * emacs-lisp/cl-generic.el: Add Version: header, for ELPA purposes.
298
299 * obsolete/iswitchb.el (iswitchb-read-buffer): Add `predicate' arg.
300 * isearchb.el (isearchb-iswitchb): Adjust accordingly.
301 * ido.el (ido-read-buffer): Add `predicate' argument.
302 * misearch.el (unload-function-defs-list): Declare before use.
303
304 2015-03-16 Vibhav Pant <vibhavp@gmail.com>
305
306 * net/browse-url.el (browse-url-browser-function): Add "Conkeror".
307 (browse-url-conkeror-program, browse-url-conkeror-arguments)
308 (browse-url-conkeror-new-window-is-buffer): New defcustoms.
309 (browse-url-default-browser): Check for `browse-url-conkeror'
310 and call `browse-url-conkeror-program'.
311 (browse-url-conkeror): New command.
312 (bug#19863)
313
314 2015-03-16 Vibhav Pant <vibhavp@gmail.com>
315
316 * eshell/esh-mode.el (eshell/clear): New function.
317
318 2015-03-16 Alan Mackenzie <acm@muc.de>
319
320 Make Edebug work with Follow Mode.
321
322 * emacs-lisp/edebug.el (edebug--display-1): Remove call to
323 edebug-adjust-window.
324 (edebug--recursive-edit): Don't bind pre/post-command-hooks to nil
325 over the recursive edit.
326 (edebug-adjust-window): Remove.
327
328 2015-03-15 Michael Albinus <michael.albinus@gmx.de>
329
330 * net/tramp-adb.el:
331 * net/tramp-gvfs.el:
332 * net/tramp-sh.el:
333 * net/tramp-smb.el: Set tramp-autoload cookie for all defcustoms.
334
335 * net/tramp.el (tramp-ssh-controlmaster-options)
336 (tramp-use-ssh-controlmaster-options): Move them to tramp-sh.el.
337 (tramp-default-method): Do not check for
338 `tramp-ssh-controlmaster-options'.
339
340 * net/tramp-sh.el (tramp-use-ssh-controlmaster-options):
341 New defcustom, moved from tramp.el.
342 (tramp-ssh-controlmaster-options): New defvar, moved from tramp.el
343 but with a nil initial value.
344 (tramp-ssh-controlmaster-options): New defun.
345 (tramp-do-copy-or-rename-file-out-of-band)
346 (tramp-maybe-open-connection): Use it. (Bug#20015)
347
348 2015-03-15 Tassilo Horn <tsdh@gnu.org>
349
350 * emacs-lisp/lisp-mode.el (lisp--el-macro-regexp): New defconst.
351 (lisp--el-update-macro-regexp, lisp--el-update-after-load)
352 (lisp--el-match-macro): New functions.
353 (lisp-mode-variables): Update lisp--el-macro-regexp and add
354 lisp--el-update-after-load to after-load-functions.
355
356 2015-03-15 Daniel Colascione <dancol@dancol.org>
357
358 * emacs-lisp/cl-indent.el
359 (lisp-indent-backquote-substitution-mode): New user option.
360 (common-lisp-indent-function-1, common-lisp-loop-part-indentation)
361 (common-lisp-indent-function): Support normally indenting
362 backquote substitutions.
363 (extended-loop-p): Rename to `lisp-extended-loop-p'.
364
365 2015-03-14 Michael R. Mauger <michael@mauger.com>
366
367 * progmodes/sql.el: Version 3.5
368 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): Match password prompts.
369 (sql-interactive-remove-continuation-prompt): Fix regression. (Bug#6686)
370
371 2015-03-14 Daniel Colascione <dancol@dancol.org>
372
373 * widget.el (define-widget): Check that documentation is a string
374 or nil; prevent wailing and gnashing of teeth when users forget to
375 pass a docstring and wonder why their properties don't work.
376
377 * startup.el (command-line): Process "--no-x-resources".
378
379 2015-03-13 Kevin Ryde <user42_kevin@yahoo.com.au>
380
381 info-look fixes for Texinfo 5
382 * info-look.el (c-mode, bison-mode, makefile-mode)
383 (makefile-automake-mode, texinfo-mode, autoconf-mode, awk-mode)
384 (latex-mode, emacs-lisp-mode, sh-mode, cfengine-mode):
385 Match `foo' and 'foo' and ‘foo’ for @item and similar.
386 (latex-mode): Match multi-arg \frac{num}{den} or \sqrt[root]{n} in
387 suffix regexp.
388
389 2015-03-12 Juri Linkov <juri@linkov.net>
390
391 * simple.el (next-line-or-history-element)
392 (previous-line-or-history-element): Remember the goal column of
393 possibly multi-line input, and restore it afterwards. (Bug#19824)
394
395 2015-03-12 Rasmus Pank Roulund <emacs@pank.eu>
396
397 * ido.el (ido-add-virtual-buffers-to-list): Include bookmark-alist
398 files (bug#19335).
399
400 2015-03-12 Eli Zaretskii <eliz@gnu.org>
401
402 * international/fontset.el (script-representative-chars): Add a
403 representative character for 'vai'.
404
405 2015-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
406
407 * international/quail.el (quail-input-method):
408 Use with-silent-modifications.
409
410 * simple.el (goto-history-element): Don't burp on t history.
411
412 2015-03-10 Paul Eggert <eggert@cs.ucla.edu>
413
414 Prefer "initialize" to "initialise"
415 * progmodes/js.el (js-indent-first-init):
416 Rename from js-indent-first-initialiser, to avoid worrying about
417 American vs British spelling. All uses changed.
418
419 2015-03-10 Glenn Morris <rgm@gnu.org>
420
421 * progmodes/js.el (js-indent-first-initialiser):
422 Fix doc, type, version.
423
424 2015-03-10 Jackson Ray Hamilton <jackson@jacksonrayhamilton.com>
425
426 * progmodes/js.el (js-indent-first-initialiser): New option.
427 (js--maybe-goto-declaration-keyword-end): New function.
428 (js--proper-indentation): Use js--maybe-goto-declaration-keyword-end.
429
430 2015-03-10 Thomas Fitzsimmons <fitzsim@fitzsim.org>
431
432 * net/ldap.el (ldap-attribute-syntaxes-alist): Add LDAP attributes
433 from RFC2798 Section 9.1.1. (Bug#8983)
434
435 2015-03-09 Nicolas Petton <nicolas@petton.fr>
436
437 * emacs-lisp/seq.el (seq-into): New function.
438 Bump seq.el version to 1.3.
439
440 2015-03-09 Dmitry Gutov <dgutov@yandex.ru>
441
442 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't consider
443 `=' a part of symbol when followed by `>'. (Bug#18644)
444 (ruby-syntax-before-regexp-re): Detect regexps after `!'.
445 (Bug#19285)
446
447 2015-03-09 Eli Zaretskii <eliz@gnu.org>
448
449 * dired.el (dired-delete-file): Doc fix. (Bug#20021)
450
451 2015-03-06 Sergio Durigan Junior <sergiodj@sergiodj.net>
452 Thomas Fitzsimmons <fitzsim@fitzsim.org>
453
454 * net/eudcb-bbdb.el (eudc-bbdb-field): New function.
455 (eudc-bbdb-filter-non-matching-record): Call eudc-bbdb-field.
456 (eudc-bbdb-format-record-as-result): Likewise.
457
458 2015-03-08 Dmitry Gutov <dgutov@yandex.ru>
459
460 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
461 Use `font-lock-constant-face' for nil, true and false.
462 Highlight `self' as a keyword. (Bug#17733)
463
464 2015-03-08 Nobuyoshi Nakada <nobu@ruby-lang.org>
465
466 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
467 Expect beginning of regexp also after open brace or vertical bar.
468 (Bug#20026)
469
470 2015-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
471
472 * battery.el (battery-echo-area-format): Simplify default.
473 (battery-linux-sysfs): Standardize on energy&power. Accept ADP1
474 for AC adapter.
475
476 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't try to
477 unfold `closure's since byte-compile-unfold-lambda doesn't know how to
478 do it.
479
480 2015-03-06 Oscar Fuentes <ofv@wanadoo.es>
481
482 * net/browse-url.el (browse-url-firefox): Remove outdated
483 MS-Windows limitations.
484
485 2015-03-06 Thomas Fitzsimmons <fitzsim@fitzsim.org>
486
487 * net/eudcb-ldap.el (eudc-ldap-cleanup-record-simple): Mark as
488 obsolete.
489 (eudc-ldap-cleanup-record-filtering-addresses): Add docstring.
490 Don't clean up postal addresses if ldap-ignore-attribute-codings
491 is set. Combine mail addresses into one field. (Bug#17720)
492 (eudc-ldap-simple-query-internal):
493 Call eudc-ldap-cleanup-record-filtering-addresses instead of
494 eudc-ldap-cleanup-record-simple.
495 (eudc-ldap-get-field-list): Likewise.
496
497 2015-03-05 Ivan Shmakov <ivan@siamics.net>
498
499 * net/eww.el (eww-html-p): New function (bug#20009).
500 (eww-render): Use it.
501
502 2015-03-05 Artur Malabarba <bruce.connor.am@gmail.com>
503
504 * desktop.el (desktop-buffer-info): Write docstring.
505 (desktop-buffer-info): Use `pushnew' instead of `add-to-list' and
506 unquote lamda.
507
508 * emacs-lisp/package.el (package-refresh-contents): Update doc.
509
510 2015-03-05 Dmitry Gutov <dgutov@yandex.ru>
511
512 * progmodes/js.el (js-mode-syntax-table): Add an entry for `.
513
514 2015-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
515
516 Replace *-function vars with generic functions in cl-generic.
517 * emacs-lisp/cl-generic.el (cl--generic-generalizer): New struct.
518 (cl-generic-tagcode-function, cl-generic-tag-types-function): Remove.
519 (cl--generic-t-generalizer): New const.
520 (cl--generic-make-method): Rename from `cl--generic-method-make'.
521 (cl--generic-make): Change calling convention.
522 (cl--generic): Add `options' field.
523 (cl-generic-function-options): New function.
524 (cl-defgeneric): Rewrite handling of options. Add support for :method
525 options and allow the use of a default body.
526 (cl-generic-define): Save options in the corresponding new field.
527 (cl-defmethod): Fix ordering of qualifiers.
528 (cl-generic-define-method): Use cl-generic-generalizers.
529 (cl--generic-get-dispatcher): Change calling convention, and change
530 calling convention of the returned function as well so as to take the
531 list of methods separately from the generic function object, so that it
532 can receive the original generic function object.
533 (cl--generic-make-next-function): New function, extracted from
534 cl--generic-make-function.
535 (cl--generic-make-function): Use it.
536 (cl-generic-method-combination-function): Remove.
537 (cl--generic-cyclic-definition): New error.
538 (cl-generic-call-method): Take a generic function object rather than
539 its name.
540 (cl-method-qualifiers): New alias.
541 (cl--generic-build-combined-method): Use cl-generic-combine-methods,
542 don't segregate by qualifiers here any more.
543 (cl--generic-standard-method-combination): Segregate by qualifiers
544 here instead. Add support for the `:extra' qualifier.
545 (cl--generic-cache-miss): Move earlier, adjust to new calling convention.
546 (cl-generic-generalizers, cl-generic-combine-methods):
547 New generic functions.
548 (cl-no-next-method, cl-no-applicable-method, cl-no-primary-method):
549 Use the new "default method in defgeneric" functionality, change
550 calling convention to receive a generic function object.
551 (cl--generic-head-used): New var.
552 (cl--generic-head-generalizer, cl--generic-eql-generalizer)
553 (cl--generic-struct-generalizer, cl--generic-typeof-generalizer):
554 New consts.
555 * emacs-lisp/eieio-core.el (eieio--generic-generalizer)
556 (eieio--generic-subclass-generalizer): New consts.
557 (cl-generic-generalizers): New methods.
558 * emacs-lisp/eieio-compat.el (eieio--generic-static-symbol-generalizer)
559 (eieio--generic-static-object-generalizer): New consts.
560 (cl-generic-generalizers) <(head eieio--static)>: New method.
561 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
562 Unfold closures like lambdas.
563
564 2015-03-04 Filipp Gunbin <fgunbin@fastmail.fm>
565
566 * autorevert.el (auto-revert-notify-add-watch):
567 Fix handler installation. (Bug#20000)
568
569 2015-03-04 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
570
571 * net/eww.el (eww-search-prefix, eww-open-file, eww-search-words)
572 (eww-same-page-p,eww-set-character-encoding): Fix docstring.
573 (eww): Do not end error messages with a period.
574
575 2015-03-04 Zhongwei Yao <ashi08104@gmail.com>
576
577 * net/tramp-adb.el (tramp-adb-connect-if-not-connected):
578 New user option.
579 (tramp-adb-ls-toolbox-regexp): Fix regexp in order to support file
580 names starting with a space.
581 (tramp-methods): Add `tramp-default-port' for "adb".
582 (tramp-adb-parse-device-names): Add traces. Return device names
583 with port, if present.
584 (tramp-adb-handle-directory-files-and-attributes): Quote all
585 remote file names.
586 (tramp-adb-get-device): New defun.
587 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
588 Use it.
589 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
590 variables. Remove checks for listed devices.
591
592 2015-03-04 Michael Albinus <michael.albinus@gmx.de>
593
594 * net/tramp.el (tramp): Add :link property.
595 (tramp-login-prompt-regexp): Allow also "user", as required by
596 Fritz!Box telnet.
597 (tramp-autoload-file-name-handler): Use "/".
598 (tramp-handle-unhandled-file-name-directory): Return nil when
599 required by the spec.
600
601 * net/tramp-cache.el (tramp-dump-connection-properties):
602 Use `with-temp-file'.
603
604 * net/tramp-sh.el (tramp-perl-file-attributes)
605 (tramp-perl-directory-files-and-attributes): Escape apostrophes in
606 file names.
607 (tramp-do-file-attributes-with-stat): Quote file name.
608 (tramp-sh-handle-directory-files-and-attributes): Fall back to
609 `tramp-handle-directory-files-and-attributes' in case of problems.
610 (tramp-do-directory-files-and-attributes-with-stat)
611 (tramp-sh-handle-file-name-all-completions)
612 (tramp-sh-handle-delete-directory)
613 (tramp-sh-handle-expand-file-name, tramp-sh-handle-process-file):
614 Normalize use of "cd".
615 (tramp-do-directory-files-and-attributes-with-stat): Use the
616 `quoting-style' arg of `ls' if possible. Make it also working for
617 file names with apostrophes.
618 (tramp-sh-handle-file-name-all-completions): Use arguments of `ls'
619 in proper order.
620 (tramp-do-copy-or-rename-file-via-buffer)
621 (tramp-sh-handle-file-local-copy): Use `with-temp-file'.
622 (tramp-get-remote-locale): Accept also \r in output.
623 (tramp-get-ls-command-with-quoting-style): New defun.
624 (tramp-get-inline-coding): Set `default-directory' to a local
625 directory. Sporadically, `call-process-region' does not handle a
626 remote default directory properly.
627
628 * net/trampver.el: Update release number.
629
630 2015-03-03 Agustín Martín Domingo <agustin6martin@gmail.com>
631
632 * textmodes/ispell.el (ispell-aspell-find-dictionary): Make sure
633 .dat files for aspell dicts are also searched for in location
634 described by `ispell-aspell-dict-dir', matching aspell's dict-dir
635 variable.
636
637 2015-03-03 Agustín Martín Domingo <agustin6martin@gmail.com>
638
639 * textmodes/ispell.el (ispell-dicts-name2locale-equivs-alist)
640 (ispell-hunspell-fill-dictionary-entry)
641 (ispell-find-hunspell-dictionaries)
642 (ispell-set-spellchecker-params): New generic name for
643 `ispell-hunspell-dictionary-equivs-alist'.
644 (ispell-aspell-add-aliases): Also use
645 `ispell-dicts-name2locale-equivs-alist' to get aspell aliases for
646 standard dict names.
647
648 2015-03-03 Glenn Morris <rgm@gnu.org>
649
650 * net/browse-url.el (browse-url-firefox-startup-arguments):
651 Make obsolete.
652 (browse-url-firefox): Doc fix. Remove -remote, which no longer
653 exists in Firefox 36. (Bug#19921)
654 (browse-url-firefox-sentinel): Remove function.
655
656 2015-03-03 Eli Zaretskii <eliz@gnu.org>
657
658 * frame.el (blink-cursor-timer-function): Don't increment
659 blink-cursor-blinks-done counter when a menu is active on a w32
660 frame. (Bug#19925)
661
662 2015-03-03 Juri Linkov <juri@linkov.net>
663
664 * comint.el (comint-line-beginning-position): Revert searching for
665 the prompt when comint-use-prompt-regexp is non-nil because it
666 doesn't distinguish input from output. Check the field property
667 `output' for the case when comint-use-prompt-regexp is nil.
668 (Bug#19710)
669
670 2015-03-03 Jérémy Compostella <jeremy.compostella@gmail.com>
671
672 * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
673 with PAGER=cat. (Bug#19870)
674
675 2015-03-03 Glenn Morris <rgm@gnu.org>
676
677 * textmodes/flyspell.el (flyspell-duplicate-distance):
678 Bump :version.
679
680 2015-03-03 Eli Zaretskii <eliz@gnu.org>
681
682 * textmodes/text-mode.el (text-mode-syntax-table): Make some
683 punctuation character behave as word-constituent, for more
684 compatibility with Unicode.
685
686 * simple.el (transient-mark-mode): Doc fix. (Bug#19841)
687
688 2015-03-03 Agustín Martín Domingo <agustin6martin@gmail.com>
689
690 Improve string search in `flyspell-word-search-*`. (Bug#16800)
691 * textmodes/flyspell.el (flyspell-duplicate-distance):
692 Limit default search distance for duplicated words to 40000.
693 (flyspell-word-search-backward, flyspell-word-search-forward):
694 Search as full word with defined casechars, not as substring.
695
696 2015-03-03 Juri Linkov <juri@linkov.net>
697
698 Better support for the case of typing RET on the prompt in comint.
699 * comint.el (comint-get-old-input-default): Go to the field end
700 when comint-use-prompt-regexp is nil.
701 (comint-line-beginning-position): Check if point is already
702 on the prompt before searching for the prompt when
703 comint-use-prompt-regexp is non-nil. (Bug#19710)
704
705 2015-03-03 Eli Zaretskii <eliz@gnu.org>
706
707 * frame.el (frame-notice-user-settings): Refresh the value of
708 frame parameters after calling tty-handle-reverse-video.
709 Call face-set-after-frame-default with the actual parameters, to avoid
710 resetting colors back to unspecified.
711 (set-background-color, set-foreground-color): Pass the foreground
712 and background colors to face-set-after-frame-default. (Bug#19802)
713
714 2015-03-03 Wolfgang Jenkner <wjenkner@inode.at>
715
716 * net/network-stream.el (network-stream-open-tls): Respect the
717 :end-of-capability setting.
718
719 2015-03-03 Juri Linkov <juri@linkov.net>
720
721 Revert the previous change of comint-line-beginning-position callers,
722 and modify comint-line-beginning-position instead.
723
724 * comint.el (comint-history-isearch-search)
725 (comint-history-isearch-message, comint-history-isearch-wrap):
726 Use comint-line-beginning-position instead of field-beginning.
727 (comint-send-input): Use either end-of-line or field-end
728 depending on comint-use-prompt-regexp.
729 (comint-line-beginning-position): Search backward
730 for comint-prompt-regexp if comint-use-prompt-regexp is non-nil.
731 Use field-beginning instead of line-beginning-position
732 if comint-use-prompt-regexp is nil. (Bug#19710)
733
734 2015-03-03 Robert Pluim <rpluim@gmail.com> (tiny change)
735
736 * calendar/todo-mode.el (todo-item-done): When done items are
737 hidden, restore point to its location prior to invoking this
738 command. (Bug#19727)
739
740 2015-03-03 Eli Zaretskii <eliz@gnu.org>
741
742 * textmodes/artist.el (artist-ellipse-compute-fill-info):
743 Use mapcar, not mapc, to create the other half of fill-info.
744 (Bug#19763)
745
746 2015-03-03 Nicolas Petton <nicolas@petton.fr>
747
748 * emacs-lisp/authors.el (authors-ignored-files)
749 (authors-renamed-files-alist): Additions.
750
751 2015-03-03 Michael Albinus <michael.albinus@gmx.de>
752
753 * net/tramp.el (tramp-ssh-controlmaster-options): Don't use a
754 tempfile for ControlPath. (Bug#19702)
755
756 2015-03-03 Michael Albinus <michael.albinus@gmx.de>
757
758 * net/tramp.el (tramp-ssh-controlmaster-options): Use "%C" for
759 ControlPath if possible. (Bug#19702)
760
761 2015-03-03 Glenn Morris <rgm@gnu.org>
762
763 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
764 (authors-valid-file-names, authors-renamed-files-alist): Additions.
765
766 2015-03-03 Alan Mackenzie <acm@muc.de>
767
768 CC Mode: Stop Font Lock forcing fontification from BOL. (Bug#19669)
769 * progmodes/cc-mode.el (c-font-lock-init):
770 Set font-lock-extend-region-functions to nil.
771
772 2015-03-03 Daniel Colascione <dancol@dancol.org>
773
774 * emacs-lisp/generator.el: Make globals conform to elisp
775 style throughout. Use more efficient font-lock patterns.
776 (cps-inhibit-atomic-optimization): Rename from
777 `cps-disable-atomic-optimization'.
778 (cps--gensym): New macro; replaces `cl-gensym' throughout.
779 (cps-generate-evaluator): Move the `iter-yield' local macro
780 definition here
781 (iter-defun, iter-lambda): from here.
782
783 (iter-defun): Use `macroexp-parse-body'.
784
785 2015-03-03 Daniel Colascione <dancol@dancol.org>
786
787 2015-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 * progmodes/gud.el: Use lexical-binding (bug#19966).
790
791 * emacs-lisp/gv.el (gv-ref): Warn about likely problematic cases.
792
793 2015-03-03 Daniel Colascione <dancol@dancol.org>
794
795 * emacs-lisp/generator.el: Make globals conform to elisp
796 style throughout. Use more efficient font-lock patterns.
797 (cps-inhibit-atomic-optimization): Rename from
798 `cps-disable-atomic-optimization'.
799 (cps--gensym): New macro; replaces `cl-gensym' throughout.
800 (cps-generate-evaluator): Move the `iter-yield' local macro
801 definition here...
802 (iter-defun, iter-lambda): ...from here.
803
804 2015-03-03 Artur Malabarba <bruce.connor.am@gmail.com>
805
806 * emacs-lisp/package.el (package-autoremove): Fix if logic.
807
808 2015-03-03 Martin Rudalics <rudalics@gmx.at>
809
810 * window.el (window--dump-frame): For pixel height return total
811 number of frame's lines.
812
813 2015-03-03 Daniel Colascione <dancol@dancol.org>
814
815 * emacs-lisp/cl-macs.el (cl-iter-defun): Add cl-iter-defun.
816
817 * emacs-lisp/generator.el (iter-defun): Correctly propagate
818 docstrings and declarations to underlying function.
819
820 2015-03-02 Daniel Colascione <dancol@dancol.org>
821
822 * emacs-lisp/generator.el: New file.
823
824 * vc/vc.el (vc-responsible-backend): Add autoload cookie for
825 `vc-responsible-backend'.
826
827 2015-03-01 Michael Albinus <michael.albinus@gmx.de>
828
829 * vc/vc-hooks.el (vc-state, vc-working-revision):
830 Use `vc-responsible-backend' in order to support unregistered files.
831
832 * vc/vc-rcs.el (vc-rcs-unregister): Support unregistered files.
833
834 * vc/vc-rcs.el (vc-rcs-fetch-master-state):
835 * vc/vc-sccs.el (vc-sccs-working-revision): Handle undefined
836 master name.
837
838 * vc/vc-src.el (vc-src-working-revision): Do not return an empty string.
839
840 2015-03-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
841
842 * net/shr.el (shr-insert): Remove soft hyphens.
843 (shr-insert): Also remove soft hypens from non-folded text.
844
845 2015-02-28 Eli Zaretskii <eliz@gnu.org>
846
847 * mail/rmailmm.el (rmail-mime-insert-html): Decode HTML payload
848 when the charset is only given by the HTML <head>, and allow to
849 specify the encoding with "C-x RET c".
850
851 2015-02-27 Mark Laws <mdl@60hz.org>
852
853 Support daemon mode on MS-Windows (bug#19688)
854 * server.el (server-process-filter): Force GUI frames on
855 MS-Windows in daemon mode, even if a TTY frame was requested.
856
857 * frameset.el (frameset-keep-original-display-p): Don't assume
858 windows-nt cannot be in daemon mode.
859
860 * frame.el (window-system-for-display): Don't assume windows-nt
861 cannot be in daemon mode.
862
863 2015-02-26 Ivan Shmakov <ivan@siamics.net>
864
865 * faces.el (face-list-p): Split from face-at-point.
866 (face-at-point): Use it.
867 * facemenu.el (facemenu-add-face): Likewise. (Bug#19912)
868
869 2015-02-26 Oscar Fuentes <ofv@wanadoo.es>
870
871 * vc/vc.el (vc-annotate-switches): New defcustom.
872 * vc/vc-bzr.el (vc-bzr-annotate-switches): New defcustom.
873 (vc-bzr-annotate-command): Use vc-switches.
874 * vc/vc-cvs.el (vc-cvs-annotate-switches): New defcustom.
875 (vc-cvs-annotate-command): Use vc-switches.
876 * vc/vc-git.el (vc-git-annotate-switches): New defcustom.
877 (vc-git-annotate-command): Use vc-switches.
878 * vc/vc-hg.el (vc-hg-annotate-switches): New defcustom.
879 (vc-hg-annotate-command): Use vc-switches.
880 * vc/vc-mtn.el (vc-mtn-annotate-switches): New defcustom.
881 (vc-mtn-annotate-command): Use vc-switches.
882 * vc/vc-svn.el (vc-svn-annotate-switches): New defcustom.
883 (vc-svn-annotate-command): Use vc-switches.
884
885 2015-02-26 Alan Mackenzie <acm@muc.de>
886
887 Handle "#" operator properly inside macro. Fix coding bug.
888
889 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
890 On finding a "#" which looks like the start of a macro, check it
891 isn't already inside a macro.
892
893 * progmodes/cc-engine.el (c-state-safe-place): Don't record a new
894 "safe" position into the list of them when this is beyond our
895 current position.
896
897 2015-02-26 Martin Rudalics <rudalics@gmx.at>
898
899 * menu-bar.el (menu-bar-non-minibuffer-window-p): Return nil when
900 the menu frame is dead. (Bug#19728)
901
902 2015-02-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
903
904 python.el: Handle tabs in python-indent-dedent-line.
905 * progmodes/python.el (python-indent-dedent-line): Fixes for
906 indentation with tabs. Thanks to <dale@codefu.org> (Bug#19730).
907
908 2015-02-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
909
910 * progmodes/python.el (python-indent-context): Respect user
911 indentation after comment.
912
913 2015-02-26 Tassilo Horn <tsdh@gnu.org>
914
915 * textmodes/reftex-vars.el (featurep): Conditionalize value of
916 reftex-label-regexps in order to stay compatible with XEmacs 21.5
917 which has no explicitly numbered groups in regexps (bug#19714).
918
919 2015-02-26 Daiki Ueno <ueno@gnu.org>
920
921 * net/dbus.el (dbus-register-signal): Convert "N" of ":argN" to
922 integer before comparison.
923
924 2015-02-25 Nicolas Richard <theonewiththeevillook@yahoo.fr>
925
926 * progmodes/elisp-mode.el (elisp--eval-last-sexp): Document argument.
927
928 2015-02-25 Oleh Krehel <ohwoeowho@gmail.com>
929
930 * emacs-lisp/check-declare.el (check-declare-warn):
931 Use compilation-style warnings.
932 (check-declare-files): Make sure that
933 `check-declare-warning-buffer' is in `compilation-mode'.
934
935 2015-02-25 Oleh Krehel <ohwoeowho@gmail.com>
936
937 * emacs-lisp/check-declare.el (check-declare-ext-errors):
938 New defcustom.
939 (check-declare): New defgroup.
940 (check-declare-verify): When `check-declare-ext-errors' is
941 non-nil, warn about an unfound function, instead of saying
942 "skipping external file".
943
944 2015-02-25 Tassilo Horn <tsdh@gnu.org>
945
946 * textmodes/reftex-vars.el (reftex-include-file-commands):
947 Call reftex-set-dirty on changes.
948
949 2015-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
950
951 * emacs-lisp/edebug.el (edebug--display): Save-excursion (bug#19611).
952 * emacs-lisp/debug.el (debugger-env-macro): Remove redundant
953 save-excursion.
954
955 2015-02-24 Glenn Morris <rgm@gnu.org>
956
957 * mail/rmailsum.el (rmail-summary-previous-all)
958 (rmail-summary-previous-msg): Simplify.
959
960 2015-02-25 Artur Malabarba <bruce.connor.am@gmail.com>
961
962 * simple.el (region-active-p): Fix doc to say non-nil.
963
964 2015-02-24 Samer Masterson <nosefrog@gmail.com>
965
966 * eshell/em-hist.el (eshell-hist-parse-word-designator):
967 Return args joined with " ".
968 * eshell/em-pred.el (eshell-parse-modifiers): Correct docstring.
969 (eshell-hist-parse-modifier): Pass mod a list instead of a string
970 (bug#18960).
971
972 2015-02-24 Karl Fogel <kfogel@red-bean.com> (tiny change)
973
974 * comint.el (comint-mode-map): Fix obvious typo.
975
976 2015-02-24 Johan Claesson <johanclaesson@bredband.net> (tiny change)
977
978 * filecache.el (file-cache-filter-regexps):
979 Add lock files. (Bug#19516)
980
981 2015-02-24 Glenn Morris <rgm@gnu.org>
982
983 * mail/rmailsum.el (rmail-summary-next-all)
984 (rmail-summary-previous-all, rmail-summary-next-msg):
985 Fix handling of optional argument. (Bug#19916)
986
987 * progmodes/f90.el (f90-beginning-of-subprogram)
988 (f90-end-of-subprogram, f90-match-end):
989 Handle continued strings where the continuation does not start
990 with "&" and happens to match our regexp. (Bug#19809)
991
992 2015-02-24 Bozhidar Batsov <bozhidar@batsov.com>
993
994 * comint.el (comint-clear-buffer): New command.
995 (comint-mode-map): Bind `comint-clear-buffer' to 'C-c M-o'.
996
997 2015-02-23 Pete Williamson <petewil0@googlemail.com> (tiny change)
998
999 Use ${EXEEXT} more uniformly in makefiles
1000 * Makefile.in (EMACS): Append ${EXEEXT}.
1001
1002 2015-02-23 Sam Steingold <sds@gnu.org>
1003
1004 * files.el (recover-session): Handle `auto-save-list-file-prefix'
1005 being a directory (empty non-directory part).
1006
1007 2015-02-23 Magnus Henoch <magnus.henoch@gmail.com>
1008
1009 * net/sasl.el (sasl-mechanism-alist): Refer to sasl-scram-rfc
1010 instead of sasl-scram-sha-1, as the former is the name that can be
1011 required.
1012
1013 * net/sasl-scram-rfc.el (sasl-scram-sha-1-steps)
1014 (sasl-scram-sha-1-client-final-message)
1015 (sasl-scram-sha-1-authenticate-server): Move to end of file.
1016
1017 2015-02-23 Paul Eggert <eggert@cs.ucla.edu>
1018
1019 * bindings.el (ctl-x-map): Use [?\C-\;] to get the desired binding.
1020 (Bug#19826)
1021
1022 2015-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
1023
1024 * emacs-lisp/macroexp.el (macroexp-parse-body): Handle cl-declare
1025 and :documentation. Change return value format accordingly.
1026 * emacs-lisp/cl-generic.el (cl--generic-lambda):
1027 * emacs-lisp/pcase.el (pcase-lambda): Adjust accordingly.
1028 * emacs-lisp/cl-macs.el (cl--transform-lambda): Use macroexp-parse-body.
1029
1030 2015-02-23 Dmitry Gutov <dgutov@yandex.ru>
1031
1032 Introduce `xref-etags-mode'.
1033 * progmodes/xref.el (xref-etags-mode--saved): New variable.
1034 (xref-etags-mode): New minor mode. (Bug#19466)
1035
1036 2015-02-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
1037
1038 * dom.el (dom-previous-sibling): New function.
1039
1040 2015-02-21 Paul Eggert <eggert@cs.ucla.edu>
1041
1042 * bindings.el (ctl-x-map): There is no 'C-;'.
1043 For now, make do with 'M-;'; this allows 'make bootstrap' to work.
1044 Perhaps some other binding should be chosen. (Bug#19826)
1045
1046 2015-02-21 Artur Malabarba <bruce.connor.am@gmail.com>
1047
1048 * bindings.el (ctl-x-map): Fix `comment-line' binding. (Bug#19826)
1049
1050 2015-02-21 Michael Albinus <michael.albinus@gmx.de>
1051
1052 * autorevert.el (auto-revert-notify-add-watch)
1053 (auto-revert-notify-handler, auto-revert-buffers): Handle also
1054 buffers without an associated file, like dired buffers. (Bug#16112)
1055
1056 2015-02-21 Dima Kogan <dima@secretsauce.net>
1057
1058 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
1059 (global-auto-revert-mode): Remove (let (auto-revert-use-notify) ... )
1060 wrappers. Call (auto-revert-buffers) consequently in order to
1061 install handlers.
1062
1063 2015-02-21 Wilson Snyder <wsnyder@wsnyder.org>
1064
1065 Sync with upstream verilog-mode revision 0d6420b.
1066 * progmodes/verilog-mode.el (verilog-mode-version): Update.
1067 (vector-skip-list): Remove.
1068 (verilog-auto-inst-port, verilog-auto-inst-port-list)
1069 (verilog-auto-inst, verilog-auto-inst-param):
1070 Use arguments rather than vector-skip.
1071 (verilog-auto-inst-port): Fix AUTOINST interfaces to not show
1072 modport if signal attachment is itself a modport.
1073 Reported by Matthew Lovell.
1074
1075 2015-02-21 Reto Zimmermann <reto@gnu.org>
1076
1077 Sync with upstream vhdl mode v3.37.1. Add VHDL'08 support.
1078 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp)
1079 (vhdl-doc-release-notes): Update.
1080 (vhdl-standard): Add VHDL'08 option.
1081 (vhdl-sensitivity-list-all): New option.
1082 (vhdl-directive-keywords): Add psl.
1083 (vhdl-offsets-alist-default, vhdl-mode-abbrev-table-init)
1084 (vhdl-template-construct-alist-init, vhdl-create-mode-menu):
1085 (vhdl-imenu-generic-expression): Add context, directive.
1086 (vhdl-offsets-alist, vhdl-mode, vhdl-doc-keywords): Doc fixes.
1087 (vhdl-template-map-init): Add vhdl-template-context.
1088 (vhdl-mode-syntax-table): Support VHDL'08 block comments.
1089 (vhdl-create-mode-menu): Add some entries.
1090 (vhdl-08-keywords, vhdl-08-types, vhdl-08-attributes)
1091 (vhdl-08-functions, vhdl-08-packages, vhdl-08-directives):
1092 New constants.
1093 (vhdl-directives): New variable.
1094 (vhdl-words-init, vhdl-template-process)
1095 (vhdl-template-replace-header-keywords): Support VHDL'08.
1096 (vhdl-abbrev-list-init): Add vhdl-directives.
1097 (vhdl-in-comment-p, vhdl-in-literal, vhdl-win-il)
1098 (vhdl-forward-syntactic-ws, vhdl-get-syntactic-context)
1099 (vhdl-lineup-comment): Handle block comments and directives.
1100 (vhdl-beginning-of-directive, vhdl-template-context)
1101 (vhdl-template-context-hook): New functions.
1102 (vhdl-libunit-re, vhdl-defun-re, vhdl-begin-p)
1103 (vhdl-corresponding-begin, vhdl-get-library-unit, vhdl-regress-line)
1104 (vhdl-align-declarations, vhdl-beginning-of-block, vhdl-end-of-block)
1105 (vhdl-font-lock-keywords-2, vhdl-get-end-of-unit)
1106 (vhdl-scan-context-clause): Add context.
1107
1108 2015-02-20 Glenn Morris <rgm@gnu.org>
1109
1110 * calendar/solar.el (solar-sunrise-sunset-string):
1111 Shorten message a little.
1112 (sunrise-sunset): Use message rather than a window. (Bug#19859)
1113
1114 * progmodes/f90.el (f90-keywords-re, f90-procedures-re)
1115 (f90-font-lock-keywords-2): Some F2008 additions.
1116
1117 2015-02-19 Dima Kogan <dima@secretsauce.net>
1118
1119 * autorevert.el (auto-revert-buffers-counter)
1120 (auto-revert-buffers-counter-lockedout): New variables.
1121 (auto-revert-buffers): Increase `auto-revert-buffers-counter'.
1122 (auto-revert-notify-handler): Apply `auto-revert-handler' if not
1123 suppressed by lockout. (Bug#18958)
1124
1125 2015-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
1126
1127 * emacs-lisp/eieio-opt.el (eieio-help-class): `eieio-class-parents'
1128 returns classes, not class names (bug#19891).
1129
1130 * emacs-lisp/cl-macs.el (cl-struct-slot-value): Handle a nil type.
1131
1132 * emacs-lisp/smie.el (smie-prec2->grammar): Fix corner case problem.
1133
1134 2015-02-18 Kelly Dean <kelly@prtime.org>
1135
1136 * register.el (jump-to-register):
1137 * emacs-lisp/lisp.el (check-parens):
1138 Push mark before goto-char so user doesn't lose his previous place.
1139
1140 2015-02-18 Kelly Dean <kelly@prtime.org>
1141
1142 * rect.el (rectangle-mark-mode):
1143 Suppress superfluous "Mark set" message from push-mark.
1144
1145 2015-02-18 Kelly Dean <kelly@prtime.org>
1146
1147 * help-mode.el (help-go-back, help-go-forward, help-follow):
1148 * simple.el (yank-pop, pop-to-mark-command, exchange-point-and-mark):
1149 * winner.el (winner-redo):
1150 * windmove.el (windmove-do-window-select):
1151 * register.el (jump-to-register, increment-register, insert-register)
1152 (append-to-register, prepend-to-register):
1153 * files.el (find-alternate-file, abort-if-file-too-large, write-file)
1154 (set-visited-file-name):
1155 * emacs-lisp/lisp.el (kill-backward-up-list):
1156 Use user-error instead of error. (Bug#14480)
1157
1158 2015-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
1159
1160 * emacs-lisp/checkdoc.el (checkdoc-show-diagnostics): Don't make bogus
1161 assumptions about window ordering.
1162
1163 2015-02-16 Kelly Dean <kelly@prtime.org>
1164
1165 * files.el (insert-file-contents-literally): Fix docstring typo.
1166
1167 2015-02-16 Kelly Dean <kelly@prtime.org>
1168
1169 * emacs-lisp/easy-mmode.el (define-minor-mode): Process macro
1170 arguments correctly. (Bug#19685)
1171 (define-minor-mode): Clarify docstring.
1172 Clarify mode switch messages for minor modes. (Bug#19690)
1173
1174 2015-02-16 Kelly Dean <kelly@prtime.org>
1175
1176 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1177 Create valid tar files. (Bug#19536)
1178
1179 2015-02-16 Kelly Dean <kelly@prtime.org>
1180
1181 * desktop.el (desktop-read): Conditionally re-enable desktop autosave.
1182 (Bug#19059)
1183
1184 2015-02-16 Kelly Dean <kelly@prtime.org>
1185
1186 * help-mode.el (help-do-xref): Prevent duplicated display of Info
1187 buffer, and prevent interference with existing buffer. (Bug#13190)
1188
1189 2015-02-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
1190
1191 python.el: Do not deactivate mark on shell fontification. (Bug#19871)
1192
1193 * progmodes/python.el (python-shell-font-lock-post-command-hook):
1194 Do not deactivate mark on fontification.
1195
1196 2015-02-16 Ivan Shmakov <ivan@siamics.net>
1197
1198 * net/eww.el: Fix desktop support. (Bug#19226)
1199 (eww-mode): Add autoload cookie.
1200 (eww-restore-desktop): Use inhibit-read-only.
1201
1202 * net/eww.el (eww-suggest-uris): Add autoload cookie, so that
1203 add-hook works correctly even if the file is not yet loaded.
1204
1205 2015-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
1206
1207 * emacs-lisp/eieio.el (defclass): Use make-instance rather than
1208 eieio-constructor.
1209 (set-slot-value): Mark as obsolete.
1210 (eieio-object-class-name): Improve call to eieio-class-name.
1211 (eieio-slot-descriptor-name, eieio-class-slots): New functions.
1212 (object-slots): Use it. Declare obsolete.
1213 (eieio-constructor): Merge it with `make-instance'.
1214 (initialize-instance): Use `dolist'.
1215 (eieio-override-prin1, eieio-edebug-prin1-to-string):
1216 Use eieio--class-print-name.
1217
1218 * emacs-lisp/eieio-core.el (eieio--class-print-name): New function.
1219 (eieio-class-name): Make it do what the docstring claims.
1220 (eieio-defclass-internal): Simplify since `prots' isn't used any more.
1221 (eieio--slot-name-index): Simplify accordingly.
1222 (eieio-barf-if-slot-unbound): Pass the class object rather than its
1223 name to `slot-unbound'.
1224
1225 * emacs-lisp/eieio-base.el (make-instance): Add a method here rather
1226 than on eieio-constructor.
1227
1228 2015-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
1229
1230 * emacs-lisp/cl-macs.el (cl-defstruct): Keep type=nil by default.
1231 * emacs-lisp/cl-preloaded.el (cl-struct-define): Add sanity checks
1232 about relationship between `type', `named', and `slots'.
1233 * emacs-lisp/cl-generic.el (cl--generic-struct-tagcode): Adjust to new
1234 value of `cl-struct-type' property.
1235
1236 2015-02-15 Jérémy Compostella <jeremy.compostella@gmail.com>
1237
1238 * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
1239 with PAGER=cat. (Bug#19870)
1240
1241 2015-02-14 Artur Malabarba <bruce.connor.am@gmail.com>
1242
1243 * emacs-lisp/package.el (package-read-all-archive-contents):
1244 Don't build the compatibility table.
1245 (package-refresh-contents, package-initialize): Do build the
1246 compatibility table.
1247 (package--build-compatibility-table): New function.
1248 (describe-package-1): Describe why a package is incompatible.
1249
1250 2015-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
1251
1252 * emacs-lisp/cl-preloaded.el (cl-struct-define): Register as children
1253 of the parent.
1254 (cl--assertion-failed): New function.
1255 (cl-assertion-failed): Move in from cl-lib.el.
1256
1257 * emacs-lisp/cl-macs.el (cl-defstruct): Don't generate code to register
1258 as children of its parents.
1259 (cl--make-type-test, cl--compiler-macro-typep): Remove functions.
1260 (cl-typep): Reimplement using define-inline.
1261 (cl-assert): Use cl--assertion-failed.
1262 (cl-struct-slot-value): Use define-inline.
1263
1264 * emacs-lisp/cl-lib.el: Move autoloaded code to cl-preload.
1265
1266 * textmodes/flyspell.el (flyspell-word): Defvar (bug#19844).
1267 (flyspell-generic-check-word-p): Mark as obsolete.
1268
1269 2015-02-13 Artur Malabarba <bruce.connor.am@gmail.com>
1270
1271 * emacs-lisp/package.el (package--compatibility-table): New var.
1272 (package--add-to-compatibility-table): New function.
1273 (package-read-all-archive-contents): Populate compatibility table.
1274 (package--incompatible-p): Also look in dependencies.
1275 (describe-package-1): Fix "incompat" handling.
1276
1277 2015-02-13 Lars Ingebrigtsen <larsi@gnus.org>
1278
1279 * net/rfc2104.el: Moved here from lisp/gnus.
1280
1281 2015-02-13 Magnus Henoch <magnus.henoch@gmail.com>
1282
1283 * net/sasl-scram-rfc.el: New file.
1284
1285 * net/sasl.el (sasl-mechanisms): Remove SCRAM-MD5.
1286 Add SCRAM-SHA-1 first.
1287 (sasl-mechanism-alist): Remove SCRAM-MD5 entry. Add SCRAM-SHA-1
1288 entry (bug#17636).
1289
1290 2015-02-13 Lars Ingebrigtsen <larsi@gnus.org>
1291
1292 * net/shr.el (shr-tag-li): Speed up rendering pages with lots of
1293 <ul>.
1294
1295 2015-02-12 Oleh Krehel <ohwoeowho@gmail.com>
1296
1297 * progmodes/gdb-mi.el (gdb-display-io-nopopup): New defcustom.
1298 (gdb-inferior-filter): Don't pop up the buried output buffer when
1299 `gdb-display-io-nopopup' is non-nil.
1300
1301 2015-02-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
1302
1303 python.el: Allow killing shell buffer if process is dead. (Bug#19823)
1304
1305 * progmodes/python.el (python-shell-font-lock-kill-buffer):
1306 Don't require a running process.
1307 (python-shell-font-lock-post-command-hook): Fontify only if the
1308 shell process is running.
1309
1310 2015-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1311
1312 * hi-lock.el (hi-lock-unface-buffer): Don't call
1313 font-lock-remove-keywords if not needed (bug#19796).
1314
1315 2015-02-11 Artur Malabarba <bruce.connor.am@gmail.com>
1316
1317 * emacs-lisp/package.el (package-install): Invert the second
1318 argument, for better backwards compatibility.
1319 (package-install-button-action, package-reinstall)
1320 (package-menu-execute): Account for the change.
1321
1322 2015-02-11 Nicolas Petton <nicolas@petton.fr>
1323
1324 * emacs-lisp/seq.el (seq-reverse): Add a backward-compatible
1325 version of seq-reverse that works on sequences in Emacs 24.
1326 Bump seq.el version to 1.2.
1327
1328 2015-02-11 Artur Malabarba <bruce.connor.am@gmail.com>
1329
1330 * emacs-lisp/package.el (package--incompatible-p): New function.
1331 Return non-nil if PKG has no chance of being installable.
1332 (package--emacs-version-list): New variable.
1333 (describe-package-1, package-desc-status)
1334 (package-menu--print-info, package-menu--status-predicate):
1335 Account for the "incompat" status.
1336
1337 2015-02-11 Martin Rudalics <rudalics@gmx.at>
1338
1339 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1340 Rename frame parameter `maximized' to `fullscreen-restore'.
1341 Restore fullwidth/-height after fullboth state. Update doc-strings.
1342
1343 2015-02-11 Lars Ingebrigtsen <larsi@gnus.org>
1344
1345 * net/shr.el (shr-insert): Make sure the space inserted has the
1346 right font (for width).
1347 (shr-fill-line): Preserve background colours when indenting/folding.
1348 (shr-ensure-paragraph): Don't insert a new paragraph as the first
1349 item in a <li>.
1350
1351 2015-02-10 Lars Ingebrigtsen <larsi@gnus.org>
1352
1353 * net/shr.el (shr-use-fonts): New variable.
1354 (shr-fill-text): Rename from "fold".
1355 (shr-pixel-column, shr-pixel-region, shr-string-pixel-width):
1356 New functions.
1357 (shr-insert): Just insert, don't fill the text. Filling is now
1358 done afterwards per display unit.
1359 (shr-fill-lines, shr-fill-line): New functions to fill text on a
1360 per-unit base.
1361 (shr-find-fill-point): Take a "beginning" parameter.
1362 (shr-indent): Indent using the :width display parameter when using
1363 fonts.
1364 (shr-parse-style): Ignore "inherit" values, since we already do that.
1365 (shr-tag-img): Remove the insertion states.
1366 (shr-tag-blockquote): New-style filling.
1367 (shr-tag-dd): Ditto.
1368 (shr-tag-li): Ditto.
1369 (shr-mark-fill): New function to mark lines that need filling.
1370 (shr-tag-h1): Use a larger font.
1371 (shr-tag-table-1): Get the natural and suggested widths in one
1372 rendering.
1373 (shr-tag-table): Create the "fixed" version of the table only once
1374 so that we can cache data in the table.
1375 (shr-insert-table): Get colspan calculations right by having
1376 zero-width columns after colspan ones.
1377 (shr-expand-alignments): New function to make :align-to specs work
1378 right when rendered in one buffer and displayed in another one.
1379 (shr-insert-table-ruler): Use :align-to to get the widths right.
1380 (shr-make-table): Cache more.
1381 (shr-make-table-1): Use the new <td> data layout.
1382 (shr-pixel-buffer-width): New function.
1383 (shr-render-td): Add a caching layer.
1384 (shr-dom-max-natural-width): New function.
1385 (shr-tag-h1): Don't use variable-pitch fonts on fontless rendering.
1386 (shr-tag-tt): New function.
1387 (shr-tag-hr): Compute the right length when using fonts.
1388 (shr-table-widths): Off-by-one error in width computation.
1389 (shr-expand-newlines): Remove dead code.
1390 (shr-insert-table): Extend background colors to the end of the column.
1391 (shr-insert-table): Only copy the background, not underline and
1392 the like.
1393 (shr-face-background): New function.
1394
1395 2015-02-10 Fabián Ezequiel Gallina <fgallina@gnu.org>
1396
1397 python.el: Improved shell font lock respecting markers. (Bug#19650)
1398
1399 * progmodes/python.el
1400 (python-shell-font-lock-get-or-create-buffer): Use special buffer name.
1401 (python-shell-font-lock-with-font-lock-buffer): Enable font lock.
1402 (python-shell-font-lock-post-command-hook): Fontify by copying text
1403 properties from fontified buffer to shell, keeping markers unchanged.
1404 (python-shell-font-lock-turn-off): Fix typo.
1405 (python-util-text-properties-replace-name): Delete function.
1406
1407 2015-02-09 Nicolas Petton <nicolas@petton.fr>
1408
1409 * emacs-lisp/seq.el (seq-group-by): Improves seq-group-by to
1410 return sequence elements in correct order.
1411
1412 2015-02-09 Simen Heggestøyl <simenheg@gmail.com> (tiny change)
1413
1414 * textmodes/css-mode.el (css-smie-rules): Fix paren indent (bug#19815).
1415
1416 2015-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
1417
1418 * emacs-lisp/cl-generic.el (cl--generic-lambda): Use macroexp-parse-body.
1419
1420 * emacs-lisp/eieio-core.el (eieio-oset-default): Catch the unexpected
1421 case where the default value would be re-interpreted as a form!
1422
1423 2015-02-09 Christopher Genovese <genovese@cmu.edu> (tiny change)
1424
1425 * help-fns.el (help-fns--signature): Keep doc for keymap.
1426
1427 2015-02-09 Kelly Dean <kelly@prtime.org>
1428
1429 * desktop.el: Save mark-ring less verbosely.
1430 (desktop-var-serdes-funs): New var.
1431 (desktop-buffer-info, desktop-create-buffer): Use it.
1432 (desktop-file-version): Update to 208.
1433
1434 2015-02-09 Leo Liu <sdl.web@gmail.com>
1435
1436 * emacs-lisp/pcase.el (pcase-lambda): New Macro. (Bug#19814)
1437
1438 * emacs-lisp/lisp-mode.el (el-kws-re): Include `pcase-lambda'.
1439
1440 * emacs-lisp/macroexp.el (macroexp-parse-body): New function.
1441
1442 2015-02-08 Paul Eggert <eggert@cs.ucla.edu>
1443
1444 Port to platforms lacking test -a and -o
1445 * Makefile.in (compile-clean):
1446 * net/tramp-sh.el (tramp-find-executable):
1447 Prefer '&&' and '||' to 'test -a' and 'test -o'.
1448
1449 2015-02-08 Artur Malabarba <bruce.connor.am@gmail.com>
1450
1451 * newcomment.el (comment-line): Fix missing paren.
1452
1453 2015-02-08 Ulrich Müller <ulm@gentoo.org>
1454
1455 * play/gamegrid.el: Update comment to reflect that the
1456 'update-game-score' helper program is now setgid by default.
1457
1458 2015-02-08 David Kastrup <dak@gnu.org>
1459
1460 * subr.el (apply-partially): Use lexical binding here.
1461
1462 2015-02-08 Artur Malabarba <bruce.connor.am@gmail.com>
1463
1464 * newcomment.el (comment-line): New command.
1465
1466 * bindings.el (ctl-x-map): Bind to `C-x C-;'.
1467
1468 2015-02-08 Oleh Krehel <ohwoeowho@gmail.com>
1469
1470 * outline.el (outline-show-entry): Fix one invisible char for the
1471 file's last outline. (Bug#19493)
1472
1473 2015-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1474
1475 * subr.el (indirect-function): Change advertised calling convention.
1476
1477 2015-02-08 Fabián Ezequiel Gallina <fgallina@gnu.org>
1478
1479 python.el: Fix completion-at-point. (Bug#19667)
1480
1481 * progmodes/python.el
1482 (python-shell-completion-native-get-completions): Force process buffer.
1483 (python-shell-completion-at-point): Handle case where call is not
1484 in a shell buffer.
1485
1486 2015-02-08 Fabián Ezequiel Gallina <fgallina@gnu.org>
1487
1488 python.el: Fix shell font-lock multiline input. (Bug#19744)
1489
1490 * progmodes/python.el
1491 (python-shell-font-lock-post-command-hook): Handle multiline input.
1492
1493 2015-02-08 Fabián Ezequiel Gallina <fgallina@gnu.org>
1494
1495 python.el: Make shell font-lock respect markers. (Bug#19650)
1496
1497 * progmodes/python.el (python-shell-font-lock-cleanup-buffer):
1498 Use `erase-buffer`.
1499 (python-shell-font-lock-comint-output-filter-function):
1500 Handle newlines.
1501 (python-shell-font-lock-post-command-hook): Respect markers on
1502 text fontification.
1503
1504 2015-02-07 Fabián Ezequiel Gallina <fgallina@gnu.org>
1505
1506 python.el: Keep eldoc visible while typing args. (Bug#19637)
1507 * progmodes/python.el (python-eldoc--get-symbol-at-point):
1508 New function based on Carlos Pita <carlosjosepita@gmail.com> patch.
1509 (python-eldoc--get-doc-at-point, python-eldoc-at-point): Use it.
1510
1511 2015-02-07 Fabián Ezequiel Gallina <fgallina@gnu.org>
1512
1513 Fix hideshow integration. (Bug#19761)
1514 * progmodes/python.el
1515 (python-hideshow-forward-sexp-function): New function based on
1516 Carlos Pita <carlosjosepita@gmail.com> patch.
1517 (python-mode): Make `hs-special-modes-alist` use it and initialize
1518 the end regexp with the empty string to avoid skipping parens.
1519
1520 2015-02-07 Fabián Ezequiel Gallina <fgallina@gnu.org>
1521
1522 * progmodes/python.el (python-check-custom-command): Do not use
1523 defvar-local for compat with Emacs<24.3.
1524
1525 2015-02-07 Martin Rudalics <rudalics@gmx.at>
1526
1527 * frame.el (frame-notice-user-settings):
1528 Update `frame-size-history'.
1529 (make-frame): Update `frame-size-history'.
1530 Call `frame-after-make-frame'.
1531 * faces.el (face-set-after-frame-default): Remove call to
1532 frame-can-run-window-configuration-change-hook.
1533
1534 2015-02-06 Dmitry Gutov <dgutov@yandex.ru>
1535
1536 * vc/vc-cvs.el (vc-cvs-dir-status-files): Don't pass DIR to
1537 `vc-cvs-command' (bug#19732).
1538
1539 2015-02-06 Nicolas Petton <nicolas@petton.fr>
1540
1541 * emacs-lisp/seq.el (seq-mapcat, seq-partition, seq-group-by):
1542 New functions.
1543 * emacs-lisp/seq.el (seq-drop-while, seq-take-while, seq-count)
1544 (seq--drop-list, seq--take-list, seq--take-while-list):
1545 Better docstring.
1546
1547 2015-02-06 Artur Malabarba <bruce.connor.am@gmail.com>
1548
1549 * doc-view.el (doc-view-kill-proc-and-buffer): Obsolete. Use
1550 `image-kill-buffer' instead.
1551
1552 2015-02-06 Thomas Fitzsimmons <fitzsim@fitzsim.org>
1553
1554 * net/ldap.el (ldap-search-internal): Fix docstring.
1555
1556 2015-02-06 Lars Ingebrigtsen <larsi@gnus.org>
1557
1558 * subr.el (define-error): The error conditions may be constant
1559 lists, so use `append' to concatenate them.
1560
1561 2015-02-06 Wolfgang Jenkner <wjenkner@inode.at>
1562
1563 * net/network-stream.el (network-stream-open-tls): Respect the
1564 :end-of-capability setting.
1565
1566 2015-02-05 Artur Malabarba <bruce.connor.am@gmail.com>
1567
1568 * emacs-lisp/package.el (package--sort-by-dependence):
1569 New function. Return PACKAGE-LIST sorted by dependencies.
1570 (package-menu-execute): Use it to delete packages in order.
1571 (package--sort-deps-in-alist): New function.
1572 (package-menu-mark-install): Can mark dependencies.
1573 (package--newest-p): New function.
1574 (package-delete): Don't deselect when deleting an older version of
1575 an upgraded package.
1576
1577 * emacs-lisp/package.el: Add missing (require 'subr-x)
1578
1579 2015-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1580
1581 * textmodes/css-mode.el (scss-smie--not-interpolation-p): Vars can be
1582 hyphenated (bug#19263).
1583
1584 * textmodes/css-mode.el (css-fill-paragraph): Fix filling in presence
1585 of variable interpolation (bug#19751).
1586
1587 2015-02-05 Era Eriksson <era+emacs@iki.fi>
1588
1589 * json.el (json-end-of-file): New error (bug#19768).
1590 (json-pop, json-read): Use it.
1591
1592 2015-02-05 Kelly Dean <kelly@prtime.org>
1593
1594 * help-mode.el (help-xref-interned): Pass BUFFER and FRAME to
1595 `describe-variable'.
1596
1597 * help-fns.el (describe-function-or-variable): New function.
1598
1599 * help.el (help-map): Bind `describe-function-or-variable' to o.
1600 (help-for-help-internal): Document o key.
1601
1602 2015-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1603
1604 * emacs-lisp/eieio-compat.el (eieio--defmethod): Use new
1605 special (:documentation ...) feature.
1606 * emacs-lisp/eieio-core.el (eieio-make-class-predicate)
1607 (eieio-make-child-predicate): Same.
1608 (eieio-copy-parents-into-subclass): Remove unused arg.
1609 (eieio-defclass-internal): Adjust call accordingly and remove redundant
1610 `pname' var.
1611 (eieio--slot-name-index): Remove unused arg `obj' and adjust all
1612 callers accordingly.
1613
1614 * emacs-lisp/cconv.el (cconv--convert-function):
1615 Add `docstring' argument.
1616 (cconv-convert): Use it to handle the new (:documentation ...) form.
1617 (cconv-analyze-form): Handle the new (:documentation ...) form.
1618
1619 * emacs-lisp/bytecomp.el:
1620 (byte-compile-initial-macro-environment): Use macroexp-progn.
1621 (byte-compile-cl-warn): Don't silence use of cl-macroexpand-all.
1622 (byte-compile-file-form-defvar-function): Rename from
1623 byte-compile-file-form-define-abbrev-table.
1624 (defvaralias, byte-compile-file-form-custom-declare-variable): Use it.
1625 (byte-compile): Use byte-compile-top-level rather than
1626 byte-compile-lambda so we can compile non-values.
1627 (byte-compile-form): Add warnings for failed uses of lexical vars via
1628 quoted symbols.
1629 (byte-compile-unfold-bcf): Improve message for failed inlining.
1630 (byte-compile-make-closure): Handle new format of internal-make-closure
1631 for dynamically-generated docstrings.
1632
1633 * delsel.el: Deprecate the `kill' option. Use lexical-binding.
1634 (open-line): Delete like all other commands, instead of killing.
1635 (delete-active-region): Don't define any return any value.
1636
1637 * progmodes/python.el: Try to preserve compatibility with Emacs-24.
1638 (python-mode): Don't assume eldoc-documentation-function has a non-nil
1639 default.
1640
1641 2015-02-04 Sam Steingold <sds@gnu.org>
1642
1643 * progmodes/python.el (python-indent-calculate-indentation):
1644 Avoid the error when computing top-level indentation.
1645
1646 2015-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
1647
1648 * emacs-lisp/cl-generic.el (cl--generic-member-method): Fix paren typo.
1649
1650 * textmodes/flyspell.el: Use lexical-binding and cl-lib.
1651 (mail-mode-flyspell-verify): Fix last change.
1652 (flyspell-external-point-words, flyspell-large-region):
1653 Avoid add-to-list on local vars.
1654
1655 2015-02-04 Tassilo Horn <tsdh@gnu.org>
1656
1657 * emacs-lisp/package.el (package-installed-p): Fix typo causing
1658 void-variable error.
1659
1660 2015-02-04 Artur Malabarba <bruce.connor.am@gmail.com>
1661
1662 * image-mode.el (image-kill-buffer): New command.
1663 (image-mode-map): Bind it to k.
1664
1665 * emacs-lisp/package.el (package-delete): Remove package from
1666 `package-selected-packages' even if it can't be deleted.
1667 (package-installed-p): Accept package-desc objects.
1668 (package-install): Can be used to mark dependencies as
1669 selected. When given a package-desc object which is already
1670 installed, the package is not downloaded again, but it is marked
1671 as selected (if it wasn't already).
1672 (package-reinstall): Accept package-desc objects.
1673
1674 2015-02-03 Artur Malabarba <bruce.connor.am@gmail.com>
1675
1676 * emacs-lisp/package.el (package-delete): Document NOSAVE.
1677 (package--get-deps): delete-dups when ONLY is nil.
1678 (package-autoremove): Warn the user if `package-selected-packages'
1679 is empty.
1680
1681 (package--user-selected-p): New function.
1682 (package-delete, package-install, package-install-from-buffer):
1683 Use it
1684 (package-selected-packages): Mention it.
1685
1686 (package-initialize): Don't populate `package-selected-packages'.
1687 (package-install-user-selected-packages, package-autoremove):
1688 Special handling for empty `package-selected-packages'.
1689 (package-install): Fix when PKG is a package-desc.
1690
1691 (package-desc-status): Add "dependency" status to the Package
1692 Menu.
1693 (package-menu--status-predicate, package-menu--print-info)
1694 (package-menu-mark-delete, package-menu--find-upgrades)
1695 (package-menu--status-predicate, describe-package-1): Use it
1696
1697 (package--removable-packages): New function.
1698 (package-autoremove): Use it.
1699 (package-menu-execute): Offer to remove unneeded packages.
1700
1701 (package--read-pkg-desc, package-tar-file-info): Fix reference to
1702 tar-desc.
1703
1704 2015-02-03 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1705
1706 * emacs-lisp/package.el (package-reinstall): Don't change package's selected status.
1707 (package-delete): New NOSAVE argument.
1708
1709 2015-02-03 Michael Albinus <michael.albinus@gmx.de>
1710
1711 * net/tramp-sh.el (tramp-histfile-override): Fix docstring.
1712 (tramp-open-shell, tramp-maybe-open-connection): Set also
1713 HISTFILESIZE and HISTSIZE when needed. (Bug#19731)
1714
1715 2015-02-02 Artur Malabarba <bruce.connor.am@gmail.com>
1716
1717 * emacs-lisp/package.el (package--find-non-dependencies):
1718 New function.
1719 (package-initialize): Use it to populate `package-selected-packages'.
1720 (package-menu-execute): Clean unnecessary `and'.
1721 (package--get-deps): Fix returning duplicates.
1722
1723 2015-02-02 Michael Albinus <michael.albinus@gmx.de>
1724
1725 * net/tramp-sh.el (tramp-histfile-override): Add another choice t.
1726 Use it as default.
1727 (tramp-open-shell, tramp-maybe-open-connection): Support it.
1728 (Bug#19731)
1729
1730 2015-02-02 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1731
1732 * emacs-lisp/package.el (package-delete): Remove package from
1733 package-selected-packages.
1734 (package-autoremove): Remove unneeded variable.
1735
1736 2015-02-01 Artur Malabarba <bruce.connor.am@gmail.com>
1737
1738 * emacs-lisp/package.el (package-selected-packages): Fix :type
1739 (package-install): Rename ARG to MARK-SELECTED.
1740 (package--get-deps): Fix for indirect dependencies.
1741 (package-used-elsewhere-p): Rename to
1742 (package--used-elsewhere-p): New function.
1743 (package-reinstall, package-user-selected-packages-install)
1744 (package-autoremove): Use sharp-quote.
1745 (package-user-selected-packages-install): Reindent and rename to
1746 (package-install-user-selected-packages): New function.
1747
1748 2015-02-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1749
1750 * emacs-lisp/package.el: Don't allow deleting dependencies.
1751
1752 (package-used-elsewhere-p): New function.
1753 (package-delete): Use it, return now an error when trying to
1754 delete a package used as dependency by another package.
1755
1756 Add a reinstall package command.
1757 (package-reinstall): New function.
1758
1759 Add a package-autoremove command.
1760 (package-selected-packages): New user var.
1761 (package-install): Add an optional arg to notify interactive use.
1762 Fix docstring. Save installed package to
1763 packages-installed-directly.
1764 (package-install-from-buffer): Same.
1765 (package-user-selected-packages-install): Allow installing all
1766 packages in packages-installed-directly at once.
1767 (package--get-deps): New function.
1768 (package-autoremove): New function.
1769 (package-install-button-action): Call package-install with
1770 interactive arg.
1771 (package-menu-execute): Same but only for only for not installed
1772 packages.
1773
1774 2015-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
1775
1776 * emacs-lisp/eieio.el (defclass): Use new eieio-make-class-predicate
1777 and eieio-make-child-predicate.
1778 (eieio-class-parents): Use eieio--class-object.
1779 (slot-boundp, find-class, eieio-override-prin1): Avoid class-p.
1780 (slot-exists-p): Use find-class.
1781
1782 * emacs-lisp/eieio-opt.el (eieio-help-class, eieio-help-constructor):
1783 Use find-lisp-object-file-name, help-fns-short-filename and new calling
1784 convention for eieio-class-def.
1785 (eieio-build-class-list): Remove function, unused.
1786 (eieio-method-def): Remove button type, unused.
1787 (eieio-class-def): Inherit from help-function-def.
1788 (eieio--defclass-regexp): New constant.
1789 (find-function-regexp-alist): Use it.
1790 (eieio--specializers-apply-to-class-p): Handle eieio--static as well.
1791 (eieio-help-find-method-definition, eieio-help-find-class-definition):
1792 Remove functions.
1793
1794 * emacs-lisp/eieio-core.el (eieio--check-type): Remove.
1795 Use cl-check-type everywhere instead.
1796 (eieio-class-object): Remove, use find-class instead when needed.
1797 (class-p): Don't inline.
1798 (eieio-object-p): Check more thoroughly, so we don't treat cl-structs,
1799 such as eieio classes, as objects. Don't inline.
1800 (object-p): Mark as obsolete.
1801 (eieio-defclass-autoload, eieio-defclass-internal, eieio-oref)
1802 (eieio--generic-tagcode): Avoid `class-p'.
1803 (eieio-make-class-predicate, eieio-make-child-predicate): New functions.
1804 (eieio-defclass-internal): Use current-load-list rather than
1805 `class-location'.
1806
1807 * emacs-lisp/cl-generic.el (cl--generic-search-method): Fix regexp.
1808
1809 2015-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
1810
1811 * emacs-lisp/backquote.el (backquote-delay-process): Don't reuse `s'
1812 since it may be "equivalent" in some sense, yet different (bug#19734).
1813
1814 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com>
1815
1816 * outline.el (outline-font-lock-face): Add docstring.
1817 (outline-invisible-p): Improve docstring.
1818 (outline-invent-heading): Add docstring.
1819 (outline-promote): Improve docstring.
1820 (outline-demote): Improve docstring.
1821 (outline-head-from-level): Improve docstring.
1822 (outline-end-of-heading): Add docstring.
1823 (outline-next-visible-heading): Improve docstring.
1824 (outline-previous-visible-heading): Improve docstring.
1825 (outline-hide-region-body): Improve docstring.
1826 (outline-flag-subtree): Add docstring.
1827 (outline-end-of-subtree): Add docstring.
1828 (outline-headers-as-kill): Improve docstring.
1829
1830 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com>
1831
1832 * outline.el (outline-hide-entry): Rename from `hide-entry'.
1833 (hide-entry): Declare as obsolete.
1834 (outline-show-entry): Rename from `show-entry'.
1835 (show-entry): Declare as obsolete.
1836 (outline-hide-body): Rename from `hide-body'.
1837 (hide-body): Declare as obsolete.
1838 (outline-hide-region-body): Rename from `hide-region-body'.
1839 (hide-region-body): Declare as obsolete.
1840 (outline-show-all): Rename from `show-all'.
1841 (show-all): Declare as obsolete.
1842 (outline-hide-subtree): Rename from `hide-subtree'.
1843 (hide-subtree): Declare as obsolete.
1844 (outline-hide-leaves): Rename from `hide-leaves'.
1845 (hide-leaves): Declare as obsolete.
1846 (outline-show-subtree): Rename from `show-subtree'.
1847 (show-subtree): Declare as obsolete.
1848 (outline-hide-sublevels): Rename from `hide-sublevels'.
1849 (hide-sublevels): Declare as obsolete.
1850 (outline-hide-other): Rename from `hide-other'.
1851 (hide-other): Declare as obsolete.
1852 (outline-show-children): Rename from `show-children'.
1853 (show-children): Declare as obsolete.
1854 (outline-show-branches): Rename from `show-branches'.
1855 (show-branches): Declare as obsolete.
1856
1857 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com>
1858
1859 * outline.el (outline-mode): Clean up docstring.
1860 (font-lock-warning-face): Remove obsolete declaration.
1861 (outline-font-lock-face): Remove obsolete comment.
1862
1863 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com>
1864
1865 * custom.el (defface): Set `indent' to 1.
1866
1867 2015-01-30 Oleh Krehel <ohwoeowho@gmail.com>
1868
1869 * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1.
1870
1871 2015-01-30 Michal Nazarewicz <mina86@mina86.com>
1872
1873 * files.el (save-buffers-kill-emacs): If `confirm-kill-emacs'
1874 is set, but user has just been asked whether they really want to
1875 kill Emacs (for example with a ‘Modified buffers exist; exit
1876 anyway?’ prompt), do not ask them for another confirmation.
1877
1878 2015-01-29 Jay Belanger <jay.p.belanger@gmail.com>
1879
1880 * calc/calc-units.el (calc-convert-exact-units): New function.
1881 (calc-convert-units): Check for missing units.
1882 (math-consistent-units-p): Strengthen the test for consistent units.
1883
1884 * calc/calc-ext.el (calc-init-extensions): Autoload
1885 `calc-convert-exact-units' and assign it a keybinding.
1886
1887 * calc/calc-help (calc-u-prefix-help): Add help for the
1888 "un" keybinding.
1889
1890 2015-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1891
1892 * emacs-lisp/cl.el (cl--function-convert): Simplify.
1893
1894 2015-01-28 Tassilo Horn <tsdh@gnu.org>
1895
1896 * textmodes/reftex.el (reftex-syntax-table-for-bib): Give ( and )
1897 punctuation syntax since to allow bibtex fields with values such
1898 as {Test 1) and 2)} (bug#19205, bug#19707).
1899 (reftex--prepare-syntax-tables): New function.
1900 (reftex-mode): Use it.
1901
1902 2015-01-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
1903
1904 python.el: New non-global state dependent indentation engine.
1905 (Bug#18319, Bug#19595)
1906 * progmodes/python.el (python-syntax-comment-or-string-p):
1907 Accept PPSS as argument.
1908 (python-syntax-closing-paren-p): New function.
1909 (python-indent-current-level)
1910 (python-indent-levels): Mark obsolete.
1911 (python-indent-context): Return more context cases.
1912 (python-indent--calculate-indentation)
1913 (python-indent--calculate-levels): New functions.
1914 (python-indent-calculate-levels): Use them.
1915 (python-indent-calculate-indentation, python-indent-line):
1916 (python-indent-line-function): Rewritten to use new API.
1917 (python-indent-dedent-line): Simplify logic.
1918 (python-indent-dedent-line-backspace): Use `unless`.
1919 (python-indent-toggle-levels): Delete function.
1920
1921 2015-01-28 Daniel Koning <dk@danielkoning.com> (tiny change)
1922
1923 * subr.el (posnp): Correct docstring of `posnp'.
1924 (posn-col-row): Make it work with all mouse position objects.
1925 * textmodes/artist.el (artist-mouse-draw-continously):
1926 Cancel timers if an error occurs during continuous drawing. (Bug#6130)
1927
1928 2015-01-28 Eli Zaretskii <eliz@gnu.org>
1929
1930 * button.el (button-activate, push-button): Doc fix. (Bug#19628)
1931
1932 2015-01-28 Michael Albinus <michael.albinus@gmx.de>
1933
1934 * filenotify.el (file-notify-descriptors, file-notify-handle-event):
1935 Adapt docstring.
1936 (file-notify--descriptor): New defun.
1937 (file-notify-callback, file-notify-add-watch, file-notify-rm-watch):
1938 Adapt docstring. Handle multiple values for
1939 `file-notify-descriptors' entries. (Bug#18880)
1940
1941 * net/tramp.el (tramp-handle-file-notify-rm-watch): Do not check
1942 `file-notify-descriptors', the implementation has been changed.
1943
1944 2015-01-28 Eli Zaretskii <eliz@gnu.org>
1945
1946 * net/net-utils.el (net-utils-run-program, net-utils-run-simple):
1947 On MS-Windows, bind coding-system-for-read to the console output
1948 codepage. (Bug#19458)
1949
1950 2015-01-28 Dmitry Gutov <dgutov@yandex.ru>
1951
1952 Unbreak `mouse-action' property in text buttons.
1953 * button.el (push-button): Fix regression from 2012-12-06.
1954
1955 2015-01-28 Glenn Morris <rgm@gnu.org>
1956
1957 * progmodes/sh-script.el (sh-mode): Doc fix.
1958 (sh-basic-indent-line): Handle electric newline. (Bug#18756)
1959
1960 2015-01-28 Paul Eggert <eggert@cs.ucla.edu>
1961
1962 Fix dired quoting bug with "Hit`N`Hide".
1963 * files.el (shell-quote-wildcard-pattern): Also quote "`". (Bug#19498)
1964
1965 2015-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1966
1967 Tighten up the tagcode used for eieio and cl-struct objects.
1968 * loadup.el: Load cl-preloaded.
1969 * emacs-lisp/eieio-core.el (eieio-defclass-internal): Set the function
1970 slot of the tag symbol to :quick-object-witness-check.
1971 (eieio-object-p): Use :quick-object-witness-check.
1972 (eieio--generic-tagcode): Use cl--generic-struct-tag.
1973 * emacs-lisp/cl-preloaded.el: New file.
1974 * emacs-lisp/cl-macs.el (cl--bind-inits): Remove, unused.
1975 (cl--transform-lambda, cl-destructuring-bind): Remove cl--bind-inits.
1976 (cl--make-usage-args): Strip away &aux args.
1977 (cl-case, cl-typecase, cl--parse-loop-clause): Use macroexp-let2.
1978 (cl-the, cl-check-type): Use macroexp-let2 and cl-typep.
1979 (cl-defstruct): Use `declare' and cl-struct-define.
1980 * emacs-lisp/cl-generic.el (cl--generic-struct-tag): New function.
1981 (cl--generic-struct-tagcode): Use it to tighten the tagcode.
1982
1983 2015-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
1984
1985 * emacs-lisp/cl.el (cl--function-convert):
1986 Merge cache that cl--labels-convert adds (bug#19699).
1987
1988 2015-01-27 Ivan Shmakov <ivan@siamics.net>
1989
1990 * tar-mode.el: Allow for adding new archive members. (Bug#19274)
1991 (tar-new-regular-file-header, tar--pad-to, tar--put-at)
1992 (tar-header-serialize): New functions.
1993 (tar-current-position): Split from tar-current-descriptor.
1994 (tar-current-descriptor): Use it.
1995 (tar-new-entry): New command.
1996 (tar-mode-map): Bind it.
1997
1998 2015-01-27 Sam Steingold <sds@gnu.org>
1999
2000 * progmodes/python.el (python-check-custom-command): Buffer local
2001 because it usually includes the buffer name.
2002 (python-check-command): Set to epylint when pyflakes is not available.
2003
2004 2015-01-27 Artur Malabarba <bruce.connor.am@gmail.com>
2005
2006 * isearch.el (isearch-process-search-char): Add docstring.
2007
2008 2015-01-27 Oleh Krehel <ohwoeowho@gmail.com>
2009
2010 * emacs-lisp/derived.el (define-derived-mode): Declare indent 3.
2011
2012 2015-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
2013
2014 * emacs-lisp/cl.el (cl--function-convert): Run cl--labels-convert
2015 for the case cl-flet or cl-labels form is wrapped with lexical-let
2016 (bug#19613).
2017
2018 2015-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
2019
2020 * emacs-lisp/cl-generic.el (cl--generic-method): New struct.
2021 (cl--generic): The method-table is now a (list-of cl--generic-method).
2022 (cl--generic-member-method): New function.
2023 (cl-generic-define-method): Use it.
2024 (cl--generic-build-combined-method, cl--generic-cache-miss):
2025 Adapt to new method-table.
2026 (cl--generic-no-next-method-function): Add `method' argument.
2027 (cl-generic-call-method): Adapt to new method representation.
2028 (cl--generic-cnm-sample, cl--generic-nnm-sample): Adjust.
2029 (cl-find-method, cl-method-qualifiers): New functions.
2030 (cl--generic-method-info): Adapt to new method representation.
2031 Return a string for the qualifiers.
2032 (cl--generic-describe):
2033 * emacs-lisp/eieio-opt.el (eieio-help-class): Adjust accordingly.
2034 (eieio-all-generic-functions, eieio-method-documentation):
2035 Adjust to new method representation.
2036
2037 * emacs-lisp/eieio-compat.el (eieio--defmethod): Use cl-find-method.
2038
2039 2015-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
2040
2041 * emacs-lisp/cl-generic.el: Add a method-combination hook.
2042 (cl-generic-method-combination-function): New var.
2043 (cl--generic-lambda): Remove `with-cnm' arg.
2044 (cl-defmethod): Change accordingly.
2045 (cl-generic-define-method): Don't check qualifiers validity.
2046 Preserve all qualifiers in `method-table'.
2047 (cl-generic-call-method): New function.
2048 (cl--generic-nest): Remove (morph into cl-generic-call-method).
2049 (cl--generic-build-combined-method): Adjust to new format of method-table
2050 and use cl-generic-method-combination-function.
2051 (cl--generic-standard-method-combination): New function, extracted from
2052 cl--generic-build-combined-method.
2053 (cl--generic-cnm-sample): Adjust to new format of method-table.
2054
2055 * emacs-lisp/eieio-compat.el (eieio--defmethod): Use () qualifiers
2056 instead of :primary.
2057
2058 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
2059 Remove obsolete function.
2060
2061 2015-01-26 Lars Ingebrigtsen <larsi@gnus.org>
2062
2063 * net/shr.el (shr-make-table-1): Fix colspan typo.
2064 (shr-make-table-1): Add comments.
2065 (shr-make-table-1): Make colspan display more sensibly.
2066
2067 * net/eww.el (eww-add-bookmark): Fix prompt and clean up the code
2068 slightly.
2069
2070 2015-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
2071
2072 * emacs-lisp/cl-generic.el (cl--generic-no-next-method-function): New fun.
2073 (cl--generic-build-combined-method, cl--generic-nnm-sample): Use it
2074 (bug#19672).
2075 (cl--generic-typeof-types): Add support for `sequence'.
2076 (cl-defmethod): Add non-keywords in the qualifiers.
2077
2078 2015-01-25 Dmitry Gutov <dgutov@yandex.ru>
2079
2080 * emacs-lisp/find-func.el (find-function-regexp): Don't match
2081 `defgroup' (regression from the previous change here).
2082
2083 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2084
2085 * net/ldap.el (ldap-search-internal): Mention binddn in invalid
2086 credentials error message.
2087
2088 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2089
2090 * net/ldap.el (ldap-password-read): Validate password before
2091 caching it.
2092 (ldap-search-internal): Handle ldapsearch error conditions.
2093
2094 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2095
2096 * net/ldap.el (ldap-password-read): Handle password-cache being nil.
2097
2098 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2099
2100 * net/eudc.el (eudc-expand-inline): Always restore former server
2101 and protocol.
2102
2103 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2104
2105 * net/eudcb-ldap.el: Don't nag the user in case a default base is
2106 provided by the LDAP system configuration file.
2107
2108 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2109
2110 * net/eudc.el (eudc-format-query): Preserve the
2111 eudc-inline-query-format ordering of attributes in the returned list.
2112 * net/eudcb-ldap.el (eudc-ldap-format-query-as-rfc1558):
2113 Append the LDAP wildcard character to the last attribute value.
2114
2115 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2116
2117 * net/eudcb-ldap.el (eudc-ldap-cleanup-record-simple):
2118 Downcase field names of LDAP results.
2119 (eudc-ldap-cleanup-record-filtering-addresses): Likewise.
2120
2121 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2122
2123 * net/ldap.el (ldap-ldapsearch-password-prompt): New defcustom.
2124 (ldap-search-internal): Send password to ldapsearch through a pipe
2125 instead of via the command line.
2126
2127 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2128
2129 * net/ldap.el: Require password-cache.
2130 (ldap-password-read): New function.
2131 (ldap-search-internal): Call ldap-password-read when it is
2132 configured to be called.
2133
2134 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2135
2136 * net/eudc-vars.el (eudc-expansion-overwrites-query):
2137 Change default to nil.
2138
2139 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2140
2141 * net/eudc.el (eudc-expand-inline): Ignore text properties of
2142 string-to-expand.
2143
2144 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2145
2146 * net/eudc-vars.el (eudc-inline-expansion-format): Default to a
2147 format that includes first name and surname.
2148
2149 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2150
2151 * net/eudc-vars.el (eudc-inline-query-format): Change default to
2152 query email and first name instead of surname.
2153
2154 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2155
2156 * net/ldap.el (ldap-search-internal): Support new-style LDAP URIs.
2157
2158 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2159
2160 * net/eudc-vars.el (eudc-server): Adjust docstring to mention
2161 eudc-server-hotlist.
2162 (eudc-server-hotlist): Move from eudc.el and make defcustom.
2163 * net/eudc.el (eudc-server-hotlist): Move to eudc-vars.el.
2164 (eudc-set-server): Allow setting protocol to nil.
2165 (eudc-expand-inline): Support hotlist-only expansions when server
2166 is not set.
2167
2168 2015-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
2169
2170 * emacs-lisp/cl-generic.el (cl-no-primary-method): New fun and error.
2171 (cl--generic-build-combined-method): Use it.
2172
2173 2015-01-22 Paul Eggert <eggert@cs.ucla.edu>
2174
2175 Don't downcase system diagnostics' first letters
2176 * emacs-lisp/bytecomp.el (byte-compile-file):
2177 * ffap.el (find-file-at-point):
2178 * files.el (insert-file-1):
2179 * net/ange-ftp.el (ange-ftp-barf-if-not-directory)
2180 (ange-ftp-copy-file-internal):
2181 * progmodes/etags.el (visit-tags-table):
2182 Keep diagnostics consistent with system's.
2183 * ffap.el (ffap-machine-p):
2184 Ignore case while comparing diagnostics.
2185
2186 2015-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
2187
2188 * help.el (help-make-usage): Don't turn a "_" arg into an empty-string
2189 arg (bug#19645).
2190 * emacs-lisp/cl-generic.el (cl--generic-lambda): Don't confuse a string
2191 body with a docstring.
2192
2193 2015-01-22 Dmitry Gutov <dgutov@yandex.ru>
2194
2195 * progmodes/xref.el (xref-location-marker, xref-location-group):
2196 Use `cl-defgeneric' and `cl-defmethod' instead of the EIEIO
2197 counterparts.
2198
2199 * progmodes/etags.el (xref-location-marker): Same.
2200
2201 * progmodes/xref.el (xref--current): Rename from `xref--selected'.
2202 (xref--inhibit-mark-current): Rename from
2203 `xref--inhibit-mark-selected'. Update the usages.
2204 (xref-quit): Reword the docstring. Kill buffers after quitting
2205 windows instead of before.
2206 (xref--insert-xrefs): Tweak help-echo.
2207 (xref--read-identifier-history, xref--read-pattern-history):
2208 New variables.
2209 (xref--read-identifier, xref-find-apropos): Use them.
2210
2211 2015-01-21 Ulrich Müller <ulm@gentoo.org>
2212
2213 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
2214 Allow the 'update-game-score' helper program to run suid or sgid.
2215
2216 2015-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
2217
2218 * emacs-lisp/eieio.el: Use cl-defmethod.
2219 (defclass): Generate cl-defmethod calls; use setf methods for :accessor.
2220 (eieio-object-name-string): Declare as obsolete.
2221
2222 * emacs-lisp/eieio-opt.el: Adapt to cl-generic.
2223 (eieio--specializers-apply-to-class-p): New function.
2224 (eieio-all-generic-functions): Use it.
2225 (eieio-method-documentation): Use it as well as cl--generic-method-info.
2226 Change format of return value.
2227 (eieio-help-class): Adapt accordingly.
2228
2229 * emacs-lisp/eieio-compat.el (eieio--defmethod): Avoid no-next-method
2230 errors when there's a `before' but no `primary' (bug#19645).
2231 (next-method-p): Return nil rather than signal an error.
2232 (eieio-defgeneric): Remove bogus (fboundp 'method).
2233
2234 * emacs-lisp/eieio-speedbar.el:
2235 * emacs-lisp/eieio-datadebug.el:
2236 * emacs-lisp/eieio-custom.el:
2237 * emacs-lisp/eieio-base.el: Use cl-defmethod.
2238
2239 * emacs-lisp/cl-generic.el (cl-defgeneric): Add support for `declare'.
2240 (cl--generic-setf-rewrite): Setup the setf expander right away.
2241 (cl-defmethod): Make sure the setf expander is setup before we expand
2242 the body.
2243 (cl-defmethod): Silence byte-compiler warnings.
2244 (cl-generic-define-method): Shuffle code to change return value.
2245 (cl--generic-method-info): New function, extracted from
2246 cl--generic-describe.
2247 (cl--generic-describe): Use it.
2248
2249 2015-01-21 Dmitry Gutov <dgutov@yandex.ru>
2250
2251 * progmodes/xref.el (xref--xref-buffer-mode-map): Define before
2252 the major mode. Remap `quit-window' to `xref-quit'.
2253 (xref--xref-buffer-mode): Inherit from special-mode.
2254
2255 xref: Keep track of temporary buffers (bug#19466).
2256 * progmodes/xref.el (xref--temporary-buffers, xref--selected)
2257 (xref--inhibit-mark-selected): New variables.
2258 (xref--mark-selected): New function.
2259 (xref--show-location): Maybe add the buffer to
2260 `xref--temporary-buffers', add `xref--mark-selected' to
2261 `buffer-list-update-hook' there.
2262 (xref--window): Add docstring.
2263 (xref-quit): Rename from `xref--quit'. Update both references.
2264 Add KILL argument. When it's non-nil, kill the temporary buffers
2265 that haven't been selected by the user.
2266 (xref--show-xref-buffer): Change the second argument to alist,
2267 extract the values for `xref--window' and
2268 `xref--temporary-buffers' from it. Add `xref--mark-selected' to
2269 `buffer-list-update-hook' to each buffer in the list.
2270 (xref--show-xrefs): Move the logic of calling `xref-find-function'
2271 here. Save the difference between buffer lists before and after
2272 it's called as "temporary buffers", and `pass it to
2273 `xref-show-xrefs-function'.
2274 (xref--find-definitions, xref-find-references)
2275 (xref-find-apropos): Update accordingly.
2276
2277 2015-01-20 Artur Malabarba <bruce.connor.am@gmail.com>
2278
2279 * emacs-lisp/package.el (package-dir-info): Fix `while' logic.
2280
2281 2015-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2282
2283 * emacs-lisp/eieio-generic.el: Remove.
2284 (defgeneric, defmethod): Move to eieio-compat.el. Mark obsolete.
2285 * emacs-lisp/eieio-compat.el: New file.
2286 * emacs-lisp/eieio.el: Don't require eieio-generic any more.
2287 * emacs-lisp/eieio-core.el (eieio--slot-originating-class-p):
2288 Remove unused function.
2289 (eieio-defclass): Move to eieio-compat.el.
2290 * emacs-lisp/macroexp.el (macroexp-macroexpand): New function.
2291 (macroexp--expand-all): Use it.
2292 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): Here too.
2293
2294 2015-01-20 Michal Nazarewicz <mina86@mina86.com>
2295
2296 * emacs-lisp/eldoc.el (eldoc-documentation-function): Describe how
2297 major modes should use `add-function' to alter value of the variable.
2298 * hexl.el (hexl-mode):
2299 * ielm.el (inferior-emacs-lisp-mode):
2300 * progmodes/cfengine.el (cfengine3-mode):
2301 * progmodes/elisp-mode (emacs-lisp-mode):
2302 * progmodes/octave.el (octave-mode):
2303 * progmodes/python.el (python-mode):
2304 * simple.el (read--expression): Set `eldoc-documentation-function'
2305 using `add-function' so the default value is always used.
2306
2307 * descr-text.el (describe-char-eldoc): New function returning
2308 basic Unicode codepoint information (e.g. name) about character
2309 at point. It is meant to be used as a default value of the
2310 `eldoc-documentation-function' variable.
2311 (describe-char-eldoc--format, describe-char-eldoc--truncate):
2312 New helper functions for `describe-char-eldoc' function.
2313
2314 2015-01-20 Michal Nazarewicz <mina86@mina86.com>
2315
2316 * textmodes/paragraphs.el (sentence-end-base): Include an
2317 ellipsis (…) and interrobang (‽) characters as end of a sentence,
2318 and a closing single quote (’) as an end of a quote.
2319
2320 2015-01-20 Michal Nazarewicz <mina86@mina86.com>
2321
2322 * textmodes/tildify.el (tildify-double-space-undos): A new
2323 variable specifying whether pressing space in `tildify-mode' after
2324 a space has been replaced with hard space undos the substitution.
2325 (tildify-space): Add code branch for handling `tildify-doule-space'.
2326
2327 * textmodes/tildify.el (tildify-space): A new function
2328 which can be used as a `post-self-insert-hook' to automatically
2329 convert spaces into hard spaces.
2330 (tildify-space-pattern): A new variable specifying pattern where
2331 `tildify-space' should take effect.
2332 (tildify-space-predicates): A new variable specifying list of
2333 predicate functions that all must return non-nil for
2334 `tildify-space' to take effect.
2335 (tildify-space-region-predicate): A new functions meant to be
2336 used as a predicate in `tildify-space-predicates' list.
2337 (tildify-mode): A new minor mode enabling `tildify-space' as a
2338 `post-self-insert-hook'
2339
2340 2015-01-20 Daniel Colascione <dancol@dancol.org>
2341
2342 * vc/vc-dir.el (vc-dir): Default to repository root, not
2343 default-directory.
2344
2345 2015-01-20 Dmitry Gutov <dgutov@yandex.ru>
2346
2347 * progmodes/etags.el (xref-etags-location): New class.
2348 (xref-make-etags-location): New function.
2349 (etags--xref-find-definitions): Use it.
2350 (xref-location-marker): New method implementation.
2351
2352 * progmodes/xref.el: Mention that xref-location is an EIEIO class.
2353 (xref--insert-xrefs): Expand help-echo string.
2354
2355 2015-01-19 Dmitry Gutov <dgutov@yandex.ru>
2356
2357 * ido.el: Update Customization instructions.
2358
2359 2015-01-19 Jonas Bernoulli <jonas@bernoul.li>
2360
2361 Define Ido keymaps once (bug#17000).
2362 * ido.el (ido-common-completion-map)
2363 (ido-file-dir-completion-map)
2364 (ido-file-completion-map, ido-buffer-completion-map): Set up key
2365 bindings when each variable is defined.
2366 (ido-completion-map): Move definition.
2367 (ido-init-completion-maps): Noop.
2368 (ido-common-initialization): Don't call it.
2369 (ido-setup-completion-map): Improve doc-string, cleanup.
2370
2371 2015-01-19 Ivan Shmakov <ivan@siamics.net>
2372
2373 * cus-dep.el (custom-make-dependencies): Ensure that
2374 default-directory is interpreted as a directory (see bug#19140.)
2375
2376 2015-01-19 Dmitry Gutov <dgutov@yandex.ru>
2377
2378 * progmodes/xref.el (xref--display-position):
2379 Set `other-window-scroll-buffer'.
2380 (xref-goto-xref): Use `user-error'.
2381
2382 2015-01-19 Dmitry Gutov <dgutov@yandex.ru>
2383
2384 * progmodes/xref.el (xref--display-history): New variable.
2385 (xref--window-configuration): Remove.
2386 (xref--save-to-history): New function.
2387 (xref--display-position): Use it. Add new argument.
2388 (xref--restore-window-configuration): Remove.
2389 (xref--show-location, xref-show-location-at-point):
2390 Update accordingly.
2391 (xref--xref-buffer-mode): Don't use `pre-command-hook'.
2392 (xref--quit): New command.
2393 (xref-goto-xref): Use it.
2394 (xref--xref-buffer-mode-map): Bind `q' to it.
2395
2396 2015-01-18 Dmitry Gutov <dgutov@yandex.ru>
2397
2398 * progmodes/xref.el (xref-goto-xref): Perform the jump even inside
2399 indentation or at eol.
2400
2401 2015-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2402
2403 * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
2404 (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
2405 New functions.
2406 (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
2407
2408 * emacs-lisp/eieio.el (defclass): Add obsolescence warning for the
2409 `newname' argument.
2410
2411 * emacs-lisp/cl-generic.el (cl-generic-define-method): Correctly handle
2412 introduction of a new dispatch argument.
2413 (cl--generic-cache-miss): Handle dispatch on an argument which was not
2414 considered as dispatchable for this method.
2415 (cl-defmethod): Warn when adding a method to an obsolete generic function.
2416 (cl--generic-lambda): Make sure it works if cl-lib is not yet loaded.
2417
2418 * emacs-lisp/eieio-generic.el (eieio--defgeneric-init-form): Use autoloadp.
2419
2420 2015-01-18 Artur Malabarba <bruce.connor.am@gmail.com>
2421
2422 * emacs-lisp/package.el (package--append-to-alist): Rename from
2423 `package--add-to-alist'
2424 Updated docstring due to new name.
2425
2426 2015-01-18 Leo Liu <sdl.web@gmail.com>
2427
2428 * emacs-lisp/cl-extra.el (cl-subseq): Use seq-subseq and fix
2429 multiple evaluation. (Bug#19519)
2430
2431 * emacs-lisp/seq.el (seq-subseq): Throw bad bounding indices
2432 error. (Bug#19434)
2433
2434 2015-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2435
2436 * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
2437 (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
2438 New functions.
2439 (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
2440
2441 * emacs-lisp/cl-macs.el (cl-defstruct): Minor optimization when include
2442 or print is nil.
2443 (cl-struct-type-p): New function.
2444
2445 * emacs-lisp/cl-generic.el: Add support for cl-next-method-p.
2446 (cl-defmethod): Add edebug spec.
2447 (cl--generic-build-combined-method): Fix call to
2448 cl-no-applicable-method.
2449 (cl--generic-nnm-sample, cl--generic-cnm-sample): New constant.
2450 (cl--generic-isnot-nnm-p): New function.
2451 (cl--generic-lambda): Use it to add support for cl-next-method-p.
2452 (cl-no-next-method, cl-no-applicable-method): Simplify arg list.
2453 (cl-next-method-p): New function.
2454
2455 2015-01-17 Ulrich Müller <ulm@gentoo.org>
2456
2457 * version.el (emacs-repository-get-version): Update docstring.
2458
2459 2015-01-17 Ivan Shmakov <ivan@siamics.net>
2460
2461 * files.el (find-file-other-window, find-file-other-frame):
2462 Use mapc instead of mapcar. (Bug#18175)
2463
2464 * files.el (dir-locals-collect-variables): Use default-directory
2465 in place of the file name while working on non-file buffers, just
2466 like hack-dir-local-variables already does. (Bug#19140)
2467
2468 * textmodes/enriched.el (enriched-encode):
2469 Use inhibit-point-motion-hooks in addition to inhibit-read-only.
2470 (Bug#18246)
2471
2472 * desktop.el (desktop-read): Do not call desktop-clear when no
2473 desktop file is found. (Bug#18371)
2474
2475 * misearch.el (multi-isearch-unload-function): New function.
2476 (misearch-unload-function): New alias. (Bug#19566)
2477
2478 2015-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
2479
2480 * emacs-lisp/eieio-core.el (eieio--class-constructor): Rename from
2481 class-constructor, and make it an alias for `identity'.
2482 Update all callers.
2483
2484 * emacs-lisp/eieio.el (eieio-constructor): Handle obsolete object name
2485 argument here (bug#19620)...
2486 (defclass): ...instead of in the constructor here.
2487
2488 2015-01-16 Jorgen Schaefer <contact@jorgenschaefer.de>
2489
2490 * emacs-lisp/package.el (package-archive-priorities):
2491 Specify correct type.
2492
2493 2015-01-17 Ulrich Müller <ulm@gentoo.org>
2494
2495 * version.el (emacs-bzr-version-dirstate, emacs-bzr-version-bzr):
2496 Remove.
2497 (emacs-repository-get-version): Discard the Bazaar case.
2498 * vc/vc-bzr.el (vc-bzr-version-dirstate): Rename from
2499 emacs-bzr-version-dirstate and move from version.el to here.
2500 (vc-bzr-working-revision): Use it.
2501
2502 2015-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
2503
2504 * emacs-lisp/eieio-generic.el (call-next-method): Don't bother checking
2505 eieio--scoped-class any more.
2506
2507 * emacs-lisp/eieio-core.el (eieio--scoped-class-stack): Remove var.
2508 (eieio--scoped-class): Remove function.
2509 (eieio--with-scoped-class): Remove macro. Replace uses with `progn'.
2510 (eieio--slot-name-index): Don't check the :protection anymore.
2511 (eieio-initializing-object): Remove var.
2512 (eieio-set-defaults): Don't let-bind eieio-initializing-object.
2513
2514 2015-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
2515
2516 Improve handling of doc-strings and describe-function for cl-generic.
2517
2518 * help-mode.el (help-function-def): Add optional arg `type'.
2519
2520 * help-fns.el (find-lisp-object-file-name): Accept any `type' as long
2521 as it's a symbol.
2522 (help-fns-short-filename): New function.
2523 (describe-function-1): Use it. Use autoload-do-load.
2524
2525 * emacs-lisp/find-func.el: Use lexical-binding.
2526 (find-function-regexp): Don't rule out `defgeneric'.
2527 (find-function-regexp-alist): Document new possibility of including
2528 a function instead of a regexp.
2529 (find-function-search-for-symbol): Implement that new possibility.
2530 (find-function-library): Don't assume that `function' is a symbol.
2531 (find-function-do-it): Remove unused var `orig-buf'.
2532
2533 * emacs-lisp/eieio-generic.el (eieio--defalias): Move from eieio-core.
2534 (eieio--defgeneric-init-form): Don't throw away a previous docstring.
2535 (eieio--method-optimize-primary): Don't mess with the docstring.
2536 (defgeneric): Keep the `args' in the docstring.
2537 (defmethod): Don't use the method's docstring for the generic
2538 function's docstring.
2539
2540 * emacs-lisp/eieio-core.el (eieio--defalias): Move to eieio-generic.el.
2541 (eieio-defclass-autoload): Don't record the superclasses any more.
2542 (eieio-defclass-internal): Reuse the old class object if it was just an
2543 autoload stub.
2544 (eieio--class-precedence-list): Load the class if it's autoloaded.
2545
2546 * emacs-lisp/cl-generic.el (cl-generic-ensure-function): It's OK to
2547 override an autoload.
2548 (cl-generic-current-method-specializers): Replace dyn-bind variable
2549 with a lexically-scoped macro.
2550 (cl--generic-lambda): Update accordingly.
2551 (cl-generic-define-method): Record manually in the load-history with
2552 type `cl-defmethod'.
2553 (cl--generic-get-dispatcher): Minor optimization.
2554 (cl--generic-search-method): New function.
2555 (find-function-regexp-alist): Add entry for `cl-defmethod' type.
2556 (cl--generic-search-method): Add hyperlinks for methods. Merge the
2557 specializers and the function's arguments.
2558
2559 2015-01-16 Artur Malabarba <bruce.connor.am@gmail.com>
2560
2561 * emacs-lisp/package.el (package--read-pkg-desc):
2562 New function. Read a `define-package' form in current buffer.
2563 Return the pkg-desc, with desc-kind set to KIND.
2564 (package-dir-info): New function. Find package information for a
2565 directory. The return result is a `package-desc'.
2566 (package-install-from-buffer): Install packages from dired buffer.
2567 (package-install-file): Install packages from directory.
2568 (package-desc-suffix)
2569 (package-install-from-archive)
2570 * emacs-lisp/package-x.el (package-upload-buffer-internal):
2571 Ensure all remaining instances of `package-desc-kind' handle the 'dir
2572 value.
2573
2574 2015-01-16 Jorgen Schaefer <contact@jorgenschaefer.de>
2575
2576 * emacs-lisp/package.el: Provide repository priorities.
2577 (package-archive-priorities): New variable.
2578 (package--add-to-alist): New function.
2579 (package--add-to-archive-contents): Use it.
2580 (package-menu--find-upgrades): Use it as well. Small clean up to
2581 make the use of the package name here explicit.
2582 (package-archive-priority): New function.
2583 (package-desc-priority-version): New function.
2584
2585 2015-01-16 Daniel Colascione <dancol@dancol.org>
2586
2587 * cus-start.el (all): Make `ring-bell-function' customizable.
2588
2589 2015-01-16 Dmitry Gutov <dgutov@yandex.ru>
2590
2591 * vc/vc-svn.el (vc-svn-dir-status-files): Pass t as
2592 vc-svn-after-dir-status's second argument. (Bug#19429)
2593
2594 2015-01-16 Samer Masterson <samer@samertm.com>
2595
2596 * pcomplete.el (pcomplete-parse-arguments): Parse arguments
2597 regardless of pcomplete-cycle-completions's value. (Bug#18950)
2598
2599 2015-01-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2600
2601 * dom.el (dom-strings): New function.
2602
2603 * files.el (directory-files-recursively): Don't use the word
2604 "path" for a file name.
2605
2606 2015-01-15 Wolfgang Jenkner <wjenkner@inode.at>
2607
2608 * calc/calc-units.el (math-units-in-expr-p)
2609 (math-single-units-in-expr-p, math-find-compatible-unit-rec)
2610 (math-extract-units): Handle the `neg' operator. (Bug#19582)
2611
2612 2015-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
2613
2614 * emacs-lisp/cl-macs.el (cl--labels-magic): New constant.
2615 (cl--labels-convert): Use it to ask the macro what is its replacement
2616 in the #'f case.
2617
2618 * emacs-lisp/cl-generic.el (cl--generic-build-combined-method):
2619 Return the value of the primary rather than the after method.
2620
2621 * emacs-lisp/eieio-core.el: Provide support for cl-generic.
2622 (eieio--generic-tagcode): New function.
2623 (cl-generic-tagcode-function): Use it.
2624 (eieio--generic-tag-types): New function.
2625 (cl-generic-tag-types-function): Use it.
2626 (eieio-object-p): Tighten up the test.
2627
2628 * emacs-lisp/cl-generic.el (cl-generic-define-method): Fix paren typo.
2629
2630 2015-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2631
2632 * emacs-lisp/cl-generic.el: New file.
2633
2634 * emacs-lisp/cl-macs.el (cl-flet): Allow (FUN EXP) forms.
2635 (cl-load-time-value, cl-labels): Use closures rather than
2636 backquoted lambdas.
2637 (cl-macrolet): Use `eval' to create the function value, and support CL
2638 style arguments in for the defined macros.
2639
2640 2015-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2641
2642 * net/eww.el: Use lexical-binding.
2643 (eww-links-at-point): Remove unused arg.
2644 (eww-mode-map): Inherit from special-mode-map.
2645 (eww-mode): Derive from special-mode. Don't use `setq' on a hook.
2646
2647 2015-01-13 Alan Mackenzie <acm@muc.de>
2648
2649 Allow compilation during loading of CC Mode-derived modes (bug#19206).
2650 * progmodes/cc-bytecomp.el (cc-bytecomp-compiling-or-loading):
2651 New function which walks the stack to discover whether we're compiling
2652 or loading.
2653 (cc-bytecomp-is-compiling): Reformulate, and move towards beginning.
2654 (cc-bytecomp-is-loading): New defsubst.
2655 (cc-bytecomp-setup-environment, cc-bytecomp-restore-environment):
2656 Use the above defsubsts.
2657 (cc-require-when-compile, cc-bytecomp-defvar)
2658 (cc-bytecomp-defun): Simplify conditionals.
2659 * progmodes/cc-defs.el (cc-bytecomp-compiling-or-loading):
2660 "Borrow" this function from cc-bytecomp.el.
2661 (c-get-current-file): Reformulate using the above.
2662 (c-lang-defconst): Prevent duplicate entries of file names in a
2663 symbol's 'source property.
2664 (c-lang-const): Use cc-bytecomp-is-compiling.
2665 * progmodes/cc-langs.el (c-make-init-lang-vars-fun):
2666 Use cc-bytecomp-is-compiling.
2667
2668 2015-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
2669
2670 * emacs-lisp/eieio-core.el (eieio-defclass): Fix call to `defclass'
2671 (bug#19552).
2672
2673 2015-01-13 Dmitry Gutov <dgutov@yandex.ru>
2674
2675 * menu-bar.el (menu-bar-goto-menu): Before calling
2676 `xref-marker-stack-empty-p', first check that `xref' is loaded.
2677 (Bug#19554)
2678
2679 2015-01-12 Martin Rudalics <rudalics@gmx.at>
2680
2681 * progmodes/xref.el (xref-marker-stack-empty-p): Add autoload
2682 cookie (Bug#19554).
2683
2684 * frame.el (frame-notice-user-settings): Remove code dealing with
2685 frame-initial-frame-tool-bar-height. Turn off `tool-bar-mode'
2686 only if `window-system-frame-alist' or `default-frame-alist' ask
2687 for it.
2688 (make-frame): Update frame-adjust-size-history if needed.
2689
2690 2015-01-12 Paul Eggert <eggert@cs.ucla.edu>
2691
2692 Have 'make' output better GEN names
2693 * Makefile.in (PHONY_EXTRAS): New macro.
2694 (.PHONY): Depend on it, and on $(lisp)/loaddefs.el, so that the
2695 relevant files' time stamps are ignored.
2696 (custom-deps, $(lisp)/cus-load.el, finder-data)
2697 ($(lisp)/finder-inf.el): Use PHONY_EXTRAS.
2698 (custom-deps, $(lisp)/cus-load.el, finder-data)
2699 ($(lisp)/finder-inf.el, autoloads, $(lisp)/loaddefs.el)
2700 ($(lisp)/subdirs.el, update-subdirs):
2701 Output more-accurate destination names with GEN.
2702
2703 Say "ELC foo.elc" instead of "GEN foo.elc"
2704 * Makefile.in (AM_V_ELC, am__v_ELC_, am__v_ELC_0, am__v_ELC_1):
2705 New macros.
2706 ($(THEFILE)c, .el.elc): Use them.
2707
2708 2015-01-11 Michael Albinus <michael.albinus@gmx.de>
2709
2710 * files.el (directory-files-recursively): Do not include
2711 superfluous remote file names.
2712
2713 2015-01-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2714
2715 * net/eww.el (eww): Interpret anything that looks like a protocol
2716 designator as a full URL.
2717
2718 2015-01-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2719
2720 * net/shr.el (shr-urlify): Don't bother the user about
2721 invalidly-encoded display strings.
2722
2723 2015-01-10 Ivan Shmakov <ivan@siamics.net>
2724
2725 * net/shr.el (shr-urlify): Decode URLs before using them as titles
2726 (bug#19555).
2727
2728 2015-01-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2729
2730 * net/eww.el (eww): Always interpret URLs that start with https?:
2731 as plain URLs, even if they have spaces in them (bug#19556).
2732 (eww): Also interpret things like "en.wikipedia.org/wiki/Free
2733 software" as an URL.
2734 (eww): Don't interpret "org/foo" as an URL.
2735 (eww): Clear the title when loading so that we don't display
2736 misleading information.
2737
2738 2015-01-10 Daniel Colascione <dancol@dancol.org>
2739
2740 * vc/vc-hooks.el (vc-prefix-map): Bind vc-delete-file to C-x v x,
2741 by analogy with dired.
2742
2743 2015-01-09 Daniel Colascione <dancol@dancol.org>
2744
2745 * progmodes/js.el (js--function-heading-1-re)
2746 (js--function-prologue-beginning): Parse ES6 generator function
2747 declarations. (That is, "function* name()").
2748
2749 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2750
2751 * emacs-lisp/eieio.el (defclass): Move from eieio-defclass all the code
2752 that creates functions, and most of the sanity checks.
2753 Mark as obsolete the <class>-child-p function.
2754 * emacs-lisp/eieio-core.el (eieio--define-field-accessors): Remove.
2755 (eieio--class, eieio--object): Use cl-defstruct.
2756 (eieio--object-num-slots): Define manually.
2757 (eieio-defclass-autoload): Use eieio--class-make.
2758 (eieio-defclass-internal): Rename from eieio-defclass. Move all the
2759 `(lambda...) definitions and most of the sanity checks to `defclass'.
2760 Mark as obsolete the <class>-list-p function, the <class> variable and
2761 the <initarg> variables. Use pcase-dolist.
2762 (eieio-defclass): New compatibility function.
2763 * emacs-lisp/eieio-opt.el (eieio-build-class-alist)
2764 (eieio-class-speedbar): Don't use eieio-default-superclass var.
2765
2766 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2767
2768 * emacs-lisp/eieio-generic.el: New file.
2769 * emacs-lisp/eieio-core.el: Move all generic function code to
2770 eieio-generic.el.
2771 (eieio--defmethod): Declare.
2772
2773 * emacs-lisp/eieio.el: Require eieio-generic. Move all generic
2774 function code to eieio-generic.el.
2775 * emacs-lisp/eieio-opt.el (eieio-help-generic): Move to
2776 eieio-generic.el.
2777 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke): Update call
2778 to eieio--generic-call.
2779 * emacs-lisp/eieio-base.el (eieio-instance-inheritor): Don't use
2780 <class>-child type.
2781
2782 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2783
2784 * emacs-lisp/chart.el (chart-add-sequence, chart-bar-quickie):
2785 Don't use <class> as a variable.
2786
2787 * emacs-lisp/eieio.el (same-class-p): Accept class object as well.
2788 (call-next-method): Simplify.
2789 (clone): Obey eieio-backward-compatibility.
2790
2791 * emacs-lisp/eieio-opt.el (eieio-read-generic-p): Remove.
2792 (eieio-read-generic): Use `generic-p' instead.
2793
2794 * emacs-lisp/eieio-core.el (eieio-backward-compatibility): New var.
2795 (eieio-defclass-autoload): Obey it.
2796 (eieio--class-object): Improve error behavior.
2797 (eieio-class-children-fast, same-class-fast-p): Remove. Inline at
2798 every use site.
2799 (eieio--defgeneric-form-primary-only): Rename from
2800 eieio-defgeneric-form-primary-only; update all callers.
2801 (eieio--defgeneric-form-primary-only-one): Rename from
2802 eieio-defgeneric-form-primary-only-one; update all callers.
2803 (eieio-defgeneric-reset-generic-form)
2804 (eieio-defgeneric-reset-generic-form-primary-only)
2805 (eieio-defgeneric-reset-generic-form-primary-only-one): Remove.
2806 (eieio--method-optimize-primary): New function to replace them.
2807 (eieio--defmethod, eieio-defmethod): Use it.
2808 (eieio--perform-slot-validation): Rename from
2809 eieio-perform-slot-validation; update all callers.
2810 (eieio--validate-slot-value): Rename from eieio-validate-slot-value.
2811 Change `class' to be a class object. Update all callers.
2812 (eieio--validate-class-slot-value): Rename from
2813 eieio-validate-class-slot-value. Change `class' to be a class object.
2814 Update all callers.
2815 (eieio-oset-default): Accept class object as well.
2816 (eieio--generic-call-primary-only): Rename from
2817 eieio-generic-call-primary-only. Update all callers.
2818
2819 * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
2820 Improve error messages.
2821 (eieio-persistent-slot-type-is-class-p): Handle `list-of' types, as
2822 well as user-defined types. Emit errors for legacy types like
2823 <class>-child and <class>-list, if not eieio-backward-compatibility.
2824
2825 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2826
2827 * emacs-lisp/eieio.el (eieio-class-parents): Accept class objects.
2828 (eieio--class-slot-initarg): Rename from class-slot-initarg.
2829 Change `class' arg to be a class object. Update all callers.
2830 (call-next-method): Adjust to new return value of `eieio-generic-form'.
2831 (eieio-default-superclass): Set var to the class object.
2832 (eieio-edebug-prin1-to-string): Fix recursive call for lists.
2833 Change print behavior to affect class objects rather than
2834 class symbols.
2835
2836 * emacs-lisp/eieio-core.el (eieio-class-object): New function.
2837 (eieio-class-parents-fast): Remove macro.
2838 (eieio--class-option-assoc): Rename from class-option-assoc.
2839 Update all callers.
2840 (eieio--class-option): Rename from class-option. Change `class' arg to
2841 be a class object. Update all callers.
2842 (eieio--class-method-invocation-order): Rename from
2843 class-method-invocation-order. Change `class' arg to be a class
2844 object. Update all callers.
2845 (eieio-defclass-autoload, eieio-defclass): Set the `parent' field to
2846 a list of class objects rather than names.
2847 (eieio-defclass): Remove redundant quotes. Use `eieio-oref-default'
2848 for accessors to class allocated slots.
2849 (eieio--perform-slot-validation-for-default): Rename from
2850 eieio-perform-slot-validation-for-default. Update all callers.
2851 (eieio--add-new-slot): Rename from eieio-add-new-slot.
2852 Update all callers. Use push.
2853 (eieio-copy-parents-into-subclass): Adjust to new content of
2854 `parent' field. Use dolist.
2855 (eieio-oref): Remove support for providing a class rather than
2856 an object.
2857 (eieio-oref-default): Prefer class objects over class names.
2858 (eieio--slot-originating-class-p): Rename from
2859 eieio-slot-originating-class-p. Update all callers. Use `or'.
2860 (eieio--slot-name-index): Turn check into assertion.
2861 (eieio--class-slot-name-index): Rename from
2862 eieio-class-slot-name-index. Change `class' arg to be a class object.
2863 Update all callers.
2864 (eieio-attribute-to-initarg): Move to eieio-test-persist.el.
2865 (eieio--c3-candidate): Rename from eieio-c3-candidate.
2866 Update all callers.
2867 (eieio--c3-merge-lists): Rename from eieio-c3-merge-lists.
2868 Update all callers.
2869 (eieio--class-precedence-c3): Rename from eieio-class-precedence-c3.
2870 Update all callers.
2871 (eieio--class-precedence-dfs): Rename from eieio-class-precedence-dfs.
2872 Update all callers.
2873 (eieio--class-precedence-bfs): Rename from eieio-class-precedence-bfs.
2874 Update all callers. Adjust to new `parent' content.
2875 (eieio--class-precedence-list): Rename from -class-precedence-list.
2876 Update all callers.
2877 (eieio-generic-call): Use autoloadp and autoload-do-load.
2878 Slight simplification.
2879 (eieio-generic-call, eieio-generic-call-primary-only): Adjust to new
2880 return value of `eieio-generic-form'.
2881 (eieiomt-add): Index the hashtable with class objects rather than
2882 class names.
2883 (eieio-generic-form): Accept class objects as well.
2884
2885 * emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
2886 Adjust to new convention for eieio-persistent-validate/fix-slot-value.
2887 (eieio-persistent-validate/fix-slot-value):
2888 Change `class' arg to be a class object. Update all callers.
2889
2890 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2891
2892 * emacs-lisp/eieio.el (child-of-class-p): Make it accept class objects
2893 additionally to class names.
2894
2895 * emacs-lisp/eieio-core.el (eieio--with-scoped-class): Use let-binding.
2896 (object): Remove first (constant) slot; rename second to `class-tag'.
2897 (eieio--object-class-object, eieio--object-class-name): New funs
2898 to replace eieio--object-class.
2899 (eieio--class-object, eieio--class-p): New functions.
2900 (same-class-fast-p): Make it a defsubst, change its implementation
2901 to check the class objects rather than their names.
2902 (eieio-object-p): Rewrite.
2903 (eieio-defclass): Adjust the object initialization according to the new
2904 object layout.
2905 (eieio--scoped-class): Declare it returns a class object (not a class
2906 name any more). Adjust calls accordingly (along with calls to
2907 eieio--with-scoped-class).
2908 (eieio--slot-name-index): Rename from eieio-slot-name-index and change
2909 its class arg to be a class object. Adjust callers accordingly.
2910 (eieio-slot-originating-class-p): Make its start-class arg a class
2911 object. Adjust all callers.
2912 (eieio--initarg-to-attribute): Rename from eieio-initarg-to-attribute.
2913 Make its `class' arg a class object. Adjust all callers.
2914
2915 * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
2916 Use eieio--slot-name-index rather than eieio-slot-name-index.
2917
2918 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2919
2920 * emacs-lisp/eieio.el (make-instance): Simplify by not adding an object
2921 name argument.
2922 (eieio-object-name): Use eieio-object-name-string.
2923 (eieio--object-names): New const.
2924 (eieio-object-name-string, eieio-object-set-name-string): Re-implement
2925 using a hashtable rather than a built-in slot.
2926 (eieio-constructor): Rename from `constructor'. Remove `newname' arg.
2927 (clone): Don't mess with the object's "name".
2928
2929 * emacs-lisp/eieio-custom.el (eieio-widget-test): Remove dummy arg.
2930 (eieio-object-value-get): Use eieio-object-set-name-string.
2931
2932 * emacs-lisp/eieio-core.el (eieio--defalias): Follow aliases.
2933 (eieio--object): Remove `name' field.
2934 (eieio-defclass): Adjust to new convention where constructors don't
2935 take an "object name" any more.
2936 (eieio--defgeneric-init-form, eieio--defmethod): Follow aliases.
2937 (eieio-validate-slot-value, eieio-oset-default)
2938 (eieio-slot-name-index): Don't hardcode eieio--object-num-slots.
2939 (eieio-generic-call-primary-only): Simplify.
2940
2941 * emacs-lisp/eieio-base.el (clone) <eieio-instance-inheritor>:
2942 Use call-next-method.
2943 (eieio-constructor): Rename from `constructor'.
2944 (eieio-persistent-convert-list-to-object): Drop objname.
2945 (eieio-persistent-validate/fix-slot-value): Don't hardcode
2946 eieio--object-num-slots.
2947 (eieio-named): Use a normal slot.
2948 (slot-missing) <eieio-named>: Remove.
2949 (eieio-object-name-string, eieio-object-set-name-string, clone)
2950 <eieio-named>: New methods.
2951
2952 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2953
2954 * emacs-lisp/eieio-core.el (eieio--class-v): Rename from class-v.
2955 (method-*): Add a "eieio--" prefix to those constants.
2956
2957 * emacs-lisp/eieio.el: Move edebug specs to the corresponding macro.
2958
2959 * emacs-lisp/eieio-speedbar.el: Use lexical-binding.
2960
2961 2015-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2962
2963 * emacs-lisp/eieio.el (child-of-class-p): Fix case where `class' is
2964 `eieio-default-superclass'.
2965
2966 * emacs-lisp/eieio-datadebug.el: Use lexical-binding.
2967
2968 * emacs-lisp/eieio-custom.el: Use lexical-binding.
2969 (eieio-object-value-to-abstract): Simplify.
2970
2971 * emacs-lisp/eieio-opt.el (eieio-build-class-list): Use cl-mapcan.
2972 (eieio-build-class-alist): Use dolist.
2973 (eieio-all-generic-functions): Adjust to use of hashtables.
2974
2975 * emacs-lisp/eieio-core.el (class): Rename field symbol-obarray to
2976 symbol-hashtable. It contains a hashtable instead of an obarray.
2977 (generic-p): Use symbol property `eieio-method-hashtable' instead of
2978 `eieio-method-obarray'.
2979 (generic-primary-only-p, generic-primary-only-one-p):
2980 Slight optimization.
2981 (eieio-defclass-autoload-map): Use a hashtable instead of an obarray.
2982 (eieio-defclass-autoload, eieio-defclass): Adjust/simplify accordingly.
2983 (eieio-class-un-autoload): Use autoload-do-load.
2984 (eieio-defclass): Use dolist, cl-pushnew, cl-callf.
2985 Use new cl-deftype-satisfies. Adjust to use of hashtables.
2986 Don't hardcode the value of eieio--object-num-slots.
2987 (eieio-defgeneric-form-primary-only-one): Remove `doc-string' arg.
2988 Use a closure rather than a backquoted lambda.
2989 (eieio--defmethod): Adjust call accordingly. Set doc-string via the
2990 function-documentation property.
2991 (eieio-slot-originating-class-p, eieio-slot-name-index)
2992 (eieiomt--optimizing-hashtable, eieiomt-install, eieiomt-add)
2993 (eieio-generic-form): Adjust to use of hashtables.
2994 (eieiomt--sym-optimize): Rename from eieiomt-sym-optimize; take
2995 additional class argument.
2996 (eieio-generic-call-methodname): Remove, unused.
2997
2998 * emacs-lisp/eieio-base.el (eieio-persistent-slot-type-is-class-p):
2999 Prefer \' to $.
3000
3001 2015-01-08 Eli Zaretskii <eliz@gnu.org>
3002
3003 * simple.el (line-move-visual): When converting X pixel coordinate
3004 to temporary-goal-column, adjust the value for right-to-left
3005 screen lines. This fixes vertical-motion, next/prev-line, etc.
3006
3007 2015-01-08 Glenn Morris <rgm@gnu.org>
3008
3009 * files.el (file-tree-walk): Remove; of unknown authorship. (Bug#19325)
3010
3011 2015-01-07 K. Handa <handa@gnu.org>
3012
3013 * international/ccl.el (define-ccl-program): Improve the docstring.
3014
3015 2015-01-06 Sam Steingold <sds@gnu.org>
3016
3017 * shell.el (shell-display-buffer-actions): Remove,
3018 use `display-buffer-alist' instead.
3019
3020 2015-01-05 Dmitry Gutov <dgutov@yandex.ru>
3021
3022 * progmodes/xref.el (xref--insert-xrefs): Add `help-echo' property
3023 to the references.
3024
3025 2015-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
3026
3027 * minibuffer.el (completion-category-defaults): New var.
3028 Set unicode-name to use substring completion.
3029 (completion-category-defaults): Set it to nil.
3030
3031 2015-01-04 Dmitry Gutov <dgutov@yandex.ru>
3032
3033 Add mouse interaction to xref.
3034 * progmodes/xref.el (xref--button-map): New variable.
3035 (xref--mouse-2): New command.
3036 (xref--insert-xrefs): Add `mouse-face' and `keymap' properties to
3037 the inserted references.
3038
3039 2015-01-04 Paul Eggert <eggert@cs.ucla.edu>
3040
3041 Less 'make' chatter for lisp dir
3042 * Makefile.in (THEFILE): Define to be 'no-such-file' by default,
3043 to make it clearer that the caller must specify it.
3044 (compile-onefile): Remove, replacing by ...
3045 ($(THEFILE)c): ... new rule. This lets us use AM_V_GEN here.
3046 ($(THEFILE)c, .el.elc, $(MH_E_DIR)/mh-loaddefs.el)
3047 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
3048 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
3049 Use AM_V_GEN to lessen 'make' chatter.
3050 (.el.elc): Omit duplicate comment.
3051
3052 Less 'make' chatter in batch mode
3053 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3054 * emacs-lisp/bytecomp.el (byte-compile-file):
3055 * files.el (save-buffer, basic-save-buffer):
3056 * international/quail.el (quail-update-leim-list-file):
3057 Don't output messages like "Generating ..." in batch mode.
3058
3059 2015-01-04 Dmitry Gutov <dgutov@yandex.ru>
3060
3061 Unbreak `mouse-action' property in text buttons.
3062 * button.el (push-button): Fix regression from 2012-12-06.
3063
3064 2015-01-03 Dmitry Gutov <dgutov@yandex.ru>
3065
3066 * progmodes/xref.el (xref-marker-stack-empty-p): New function.
3067
3068 * menu-bar.el (menu-bar-goto-menu): Use it.
3069
3070 2015-01-03 Dmitry Gutov <dgutov@yandex.ru>
3071
3072 * progmodes/xref.el (xref--window-configuration): New variable.
3073 (xref-show-location-at-point): New command.
3074 (xref--restore-window-configuration): New function.
3075 (xref-next-line, xref-prev-line): Delegate to
3076 `xref-show-location-at-point'.
3077 (xref--location-at-point): Don't signal the error.
3078 (xref-goto-xref): Do that here instead.
3079 (xref--xref-buffer-mode): Add `xref--restore-window-configuration'
3080 to `pre-command-hook'.
3081 (xref--xref-buffer-mode-map): Don't remap `next-line' and
3082 `previous-line'. Additionally bind `xref-next-line' and
3083 `xref-prev-line' to `n' and `p' respectively.
3084 Bind `xref-show-location-at-point' to `C-o'.
3085
3086 2015-01-01 Eli Zaretskii <eliz@gnu.org>
3087
3088 * tool-bar.el (tool-bar-local-item)
3089 (tool-bar-local-item-from-menu): Call force-mode-line-update to
3090 make sure the tool-bar changes show on display.
3091
3092 2015-01-01 Michael Albinus <michael.albinus@gmx.de>
3093
3094 Sync with Tramp 2.2.11.
3095
3096 * net/tramp-compat.el (top): Require cl-macs for Emacs 22.
3097 Make an alias for `default-toplevel-value' if it doesn't exist.
3098
3099 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
3100 Use `tramp-compat-delete-directory'.
3101
3102 * net/trampver.el: Update release number.
3103
3104 2015-01-01 Filipp Gunbin <fgunbin@fastmail.fm>
3105
3106 * autorevert.el (auto-revert-handler): Fix auto-revert-tail-mode
3107 for remote files. (Bug#19449)
3108
3109 2015-01-01 Simen Heggestøyl <simenheg@gmail.com> (tiny change)
3110
3111 * textmodes/css-mode.el (scss-mode): Fix typo (bug#19446).
3112
3113 2014-12-31 Paul Eggert <eggert@cs.ucla.edu>
3114
3115 Less 'make' chatter in lisp directory
3116 * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_GEN, am__v_GEN_)
3117 (am__v_GEN_0, am__v_GEN_1): New macros, from ../src/Makefile.in.
3118 (custom-deps, finder-data, autoloads, update-subdirs): Use them.
3119
3120 2014-12-31 Filipp Gunbin <fgunbin@fastmail.fm>
3121
3122 * info.el (info-display-manual): Limit the completion alternatives
3123 to currently visited manuals if prefix argument is non-nil.
3124
3125 2014-12-30 Paul Eggert <eggert@cs.ucla.edu>
3126
3127 * Makefile.in (semantic): Simplify.
3128
3129 2014-12-30 Juri Linkov <juri@linkov.net>
3130
3131 * net/eww.el (eww-isearch-next-buffer): New function.
3132 (eww-mode): Set multi-isearch-next-buffer-function to it.
3133
3134 2014-12-30 Dmitry Gutov <dgutov@yandex.ru>
3135
3136 * progmodes/xref.el (xref-find-definitions): Mention "no
3137 identifier at point" case in the docstring.
3138
3139 * menu-bar.el (menu-bar-goto-uses-etags-p): New function.
3140 (menu-bar-goto-menu): Use it to show or hide the `set-tags-name'
3141 and `separator-tag-file' items.
3142
3143 2014-12-29 Paul Eggert <eggert@cs.ucla.edu>
3144
3145 * obsolete/pc-select.el (pc-selection-mode): Use system-type.
3146 This is instead of system-name, which is both wrong here and obsolete.
3147 * desktop.el (desktop-save-frameset):
3148 * dnd.el (dnd-get-local-file-uri):
3149 * nxml/rng-uri.el (rng-uri-file-name-1):
3150 Prefer (system-name) to system-name, and avoid naming
3151 locals 'system-name'.
3152 * startup.el (system-name): Now an obsolete variable. (Bug#19438)
3153
3154 2014-12-29 Dmitry Gutov <dgutov@yandex.ru>
3155
3156 * menu-bar.el (menu-bar-next-tag-other-window)
3157 (menu-bar-next-tag): Remove.
3158
3159 2014-12-29 K. Handa <handa@gnu.org>
3160
3161 * international/mule.el (make-translation-table-from-alist):
3162 Accept nil or zero-length vector for FROM and TO.
3163
3164 2014-12-29 Lars Ingebrigtsen <larsi@gnus.org>
3165
3166 * net/eww.el (eww-mode): Truncate overlong lines for prettier
3167 display when resizing.
3168
3169 * net/shr.el (shr-width): Default to using the window width when
3170 rendering.
3171
3172 2014-12-29 Dmitry Gutov <dgutov@yandex.ru>
3173
3174 Unbreak jumping to an alias's definition.
3175 * emacs-lisp/find-func.el (find-function-library): Return a pair
3176 (ORIG-FUNCTION . LIBRARY) instead of just its second element.
3177 (find-function-noselect): Use it.
3178 * progmodes/elisp-mode.el (elisp--xref-identifier-file): Rename to
3179 `elisp--xref-identifier-location', incorporate logic from
3180 `elisp--xref-find-definitions', use the changed
3181 `find-function-library' return value.
3182
3183 2014-12-29 Juri Linkov <juri@linkov.net>
3184
3185 * comint.el (comint-history-isearch-message): Use field-beginning
3186 instead of comint-line-beginning-position - that's more fixes for
3187 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
3188 (comint-history-isearch-message): Fix args of isearch-message-prefix.
3189
3190 2014-12-29 Juri Linkov <juri@linkov.net>
3191
3192 * vc/vc-dir.el (vc-dir-display-file): New command (bug#19450).
3193 (vc-dir-mode-map): Bind it to "\C-o".
3194 (vc-dir-menu-map): Add it to menu.
3195
3196 2014-12-29 Dmitry Gutov <dgutov@yandex.ru>
3197
3198 * progmodes/etags.el (find-tag-other-window)
3199 (find-tag-other-frame, find-tag-regexp, tags-loop-continue)
3200 (tags-apropos): Declare obsolete.
3201
3202 * menu-bar.el (menu-bar-goto-menu): Replace all but one etags item
3203 with xref ones.
3204
3205 2014-12-28 Eli Zaretskii <eliz@gnu.org>
3206
3207 * international/mule.el (define-coding-system): Fix typos in the
3208 doc string.
3209
3210 2014-12-28 Kenichi Handa <handa@gnu.org>
3211
3212 * international/mule.el (define-coding-system): Improve the doc
3213 string.
3214
3215 2014-12-28 Ivan Shmakov <ivan@siamics.net>
3216
3217 * net/shr.el (shr-tag-table): Fix handling of tbody/header/footer
3218 elements in tables (bug#19444).
3219
3220 * net/eww.el (eww-handle-link): Fix typo in "up" rel handling
3221 (bug#19445).
3222
3223 2014-12-28 Juri Linkov <juri@linkov.net>
3224
3225 * vc/compare-w.el: Require diff-mode for diff faces.
3226 (compare-windows-removed, compare-windows-added): New faces
3227 inheriting from diff faces.
3228 (compare-windows): Define obsolete face alias.
3229 (compare-windows-highlight): Replace face `compare-windows' with
3230 new faces `compare-windows-added' and `compare-windows-removed'
3231 (bug#19451).
3232 (compare-windows-get-recent-window): Signal an error when
3233 no other window is found (bug#19170).
3234
3235 2014-12-27 Dmitry Gutov <dgutov@yandex.ru>
3236
3237 * progmodes/elisp-mode.el (elisp--xref-identifier-file):
3238 Skip features that have no sources.
3239
3240 * simple.el (execute-extended-command):
3241 When `suggest-key-bindings' is nil, don't.
3242
3243 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
3244
3245 python.el: Native readline completion.
3246 * progmodes/python.el (python-shell-completion-native-disabled-interpreters)
3247 (python-shell-completion-native-enable)
3248 (python-shell-completion-native-output-timeout): New defcustoms.
3249 (python-shell-completion-native-interpreter-disabled-p)
3250 (python-shell-completion-native-try)
3251 (python-shell-completion-native-setup)
3252 (python-shell-completion-native-turn-off)
3253 (python-shell-completion-native-turn-on)
3254 (python-shell-completion-native-turn-on-maybe)
3255 (python-shell-completion-native-turn-on-maybe-with-msg)
3256 (python-shell-completion-native-toggle): New functions.
3257 (python-shell-completion-native-get-completions): New function.
3258 (python-shell-completion-at-point): Use it.
3259
3260 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
3261
3262 python.el: Enhance shell user interaction and deprecate
3263 python-shell-get-or-create-process.
3264 * progmodes/python.el (python-shell-get-process-or-error):
3265 New function.
3266 (python-shell-with-shell-buffer): Use it.
3267 (python-shell-send-string, python-shell-send-region)
3268 (python-shell-send-buffer, python-shell-send-defun)
3269 (python-shell-send-file, python-shell-switch-to-shell): Use it.
3270 Add argument MSG to display user-friendly message when no process
3271 is running.
3272 (python-shell-switch-to-shell): Call pop-to-buffer with NORECORD.
3273 (python-shell-make-comint): Rename argument SHOW from POP.
3274 Use display-buffer instead of pop-to-buffer.
3275 (run-python): Doc fix. Return process.
3276 (python-shell-get-or-create-process): Make obsolete.
3277
3278 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
3279
3280 * progmodes/python.el (python-shell-buffer-substring):
3281 Handle cornercase when region sent starts at point-min.
3282
3283 2014-12-27 Eli Zaretskii <eliz@gnu.org>
3284
3285 * language/misc-lang.el (composition-function-table): Add Syriac
3286 characters and also ZWJ/ZWNJ.
3287 See http://lists.gnu.org/archive/html/help-gnu-emacs/2014-12/msg00248.html
3288 for the details.
3289
3290 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
3291
3292 python.el: Fix message when sending region.
3293 * progmodes/python.el (python-shell-send-region): Rename argument
3294 send-main from nomain. Fix message.
3295 (python-shell-send-buffer): Rename argument send-main from arg.
3296
3297 python.el: Cleanup temp files even with eval errors.
3298 * progmodes/python.el (python-shell-send-file): Make file-name
3299 mandatory. Fix temp file removal in the majority of cases.
3300
3301 python.el: Handle file encoding for shell.
3302 * progmodes/python.el (python-rx-constituents): Add coding-cookie.
3303 (python-shell--save-temp-file): Write file with proper encoding.
3304 (python-shell-buffer-substring): Add coding cookie for detected
3305 encoding to generated content. Fix blank lines when removing
3306 if-name-main block.
3307 (python-shell-send-file): Handle file encoding.
3308 (python-info-encoding-from-cookie)
3309 (python-info-encoding): New functions.
3310
3311 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
3312
3313 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3314 Use `tramp-rsh-end-of-line', it ought to be more robust.
3315
3316 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
3317
3318 * progmodes/js.el (js-syntax-propertize): "return" can't be divided
3319 (bug#19397).
3320
3321 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
3322
3323 * net/tramp.el (tramp-read-passwd): Ignore errors from `auth-source-*'.
3324
3325 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): Use "\n"
3326 as end-of-line delimeter for passwords, when running on MS Windows.
3327
3328 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
3329
3330 * progmodes/sh-script.el (sh-set-shell): Don't change the global value
3331 of indent-line-function (bug#19433).
3332
3333 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
3334
3335 Fix line numbers on Python shell.
3336 * progmodes/python.el (python-shell--save-temp-file): Do not
3337 append coding cookie.
3338 (python-shell-send-string): Generalize for
3339 python-shell-send-region.
3340 (python--use-fake-loc): Delete var.
3341 (python-shell-buffer-substring): Cleanup fake-loc logic.
3342 (python-shell-send-region): Remove fake-loc logic, simplify.
3343
3344 2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
3345
3346 * progmodes/python.el (python-indent-post-self-insert-function):
3347 Make colon to re-indent only for dedenters, handling
3348 multiline-statements gracefully.
3349
3350 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
3351
3352 * net/tramp.el (tramp-handle-insert-file-contents):
3353 Set `find-file-not-found-functions' in case of errors. (Bug#18623)
3354
3355 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
3356
3357 * net/tramp-sh.el (tramp-send-command-and-read): New optional
3358 arg MARKER.
3359 (tramp-get-remote-path): Use it.
3360
3361 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
3362
3363 * subr.el (redisplay-dont-pause): Mark as obsolete.
3364
3365 2014-12-27 Michael Albinus <michael.albinus@gmx.de>
3366
3367 * net/tramp.el (tramp-error-with-buffer): Call `message' properly.
3368 (tramp-accept-process-output): Use nil as argument for
3369 `accept-process-output', when there is a gateway prepended.
3370
3371 * net/tramp-gw.el (tramp-gw-open-connection): Suppress traces in
3372 wrong debug buffer.
3373 (tramp-gw-open-connection): Set process coding system 'binary.
3374 (tramp-gw-open-network-stream): Handle HTTP error 403.
3375
3376 * net/tramp-sh.el (tramp-compute-multi-hops): Suppress traces in
3377 wrong debug buffer.
3378 (tramp-maybe-open-connection): Set connection property "gateway".
3379
3380 2014-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
3381
3382 * subr.el (sit-for): Tweak docstring (bug#19381).
3383
3384 2014-12-27 Dmitry Gutov <dgutov@yandex.ru>
3385
3386 * vc/vc-git.el (vc-git-after-dir-status-stage): Move `up-to-date'
3387 stage to after `diff-index' (bug#19386).
3388
3389 2014-12-27 João Távora <joaotavora@gmail.com>
3390
3391 * textmodes/tex-mode.el (tex-insert-quote): Consider and respect
3392 `electric-pair-mode' (bug#19356).
3393
3394 2014-12-27 Dmitry Gutov <dgutov@yandex.ru>
3395
3396 elisp-xref-find: Don't create buffers eagerly.
3397
3398 * progmodes/elisp-mode.el (elisp--identifier-location): Fold back
3399 into `elisp--company-location'.
3400 (elisp--identifier-completion-table): Rename to
3401 `elisp--identifier-completion-table', and do not include just any
3402 symbols with a property list.
3403 (elisp-completion-at-point): Revert the 2014-12-25 change.
3404 (elisp--xref-identifier-file): New function.
3405 (elisp--xref-find-definitions): Use it.
3406
3407 * emacs-lisp/find-func.el (find-function-library): New function,
3408 extracted from `find-function-noselect'.
3409
3410 * progmodes/xref.el (xref-elisp-location): New class.
3411 (xref-make-elisp-location): New function.
3412 (xref-location-marker): New implementation.
3413
3414 2014-12-27 Juri Linkov <juri@linkov.net>
3415
3416 * minibuffer.el (minibuffer-completion-help):
3417 Use shrink-window-if-larger-than-buffer in window-height
3418 when temp-buffer-resize-mode is nil.
3419
3420 * window.el (with-displayed-buffer-window): Remove window-height
3421 from the action alist in the temp-buffer-window-show call
3422 when window-height is handled explicitly afterwards (bug#19355).
3423
3424 2014-12-27 Juri Linkov <juri@linkov.net>
3425
3426 Support subdirectories when saving places in dired.
3427 * saveplace.el (toggle-save-place, save-place-to-alist)
3428 (save-places-to-alist, save-place-dired-hook):
3429 Use dired-current-directory instead of dired-directory (bug#19436).
3430 (save-place-dired-hook): Add check for alist to make the new
3431 format future-proof to allow other possible formats.
3432
3433 2014-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
3434
3435 python.el: Generate clearer shell buffer names.
3436 * progmodes/python.el (python-shell-get-process-name)
3437 (python-shell-internal-get-process-name): Use `buffer-name`.
3438 (python-shell-internal-get-or-create-process): Simplify.
3439
3440 2014-12-26 Dmitry Gutov <dgutov@yandex.ru>
3441
3442 Add basic xref apropos implementation to elisp-mode.
3443
3444 * progmodes/elisp-mode.el (elisp--xref-find-definitions):
3445 Filter out nil results.
3446 (elisp--xref-find-apropos): New function.
3447 (elisp-xref-find): Use it.
3448
3449 * progmodes/xref.el (xref--show-xrefs): Use `user-error'.
3450
3451 2014-12-25 Filipp Gunbin <fgunbin@fastmail.fm>
3452
3453 * dired-aux.el (dired-maybe-insert-subdir):
3454 Make dired-maybe-insert-subdir always skip trivial files.
3455
3456 2014-12-25 Helmut Eller <eller.helmut@gmail.com>
3457 Dmitry Gutov <dgutov@yandex.ru>
3458
3459 Consolidate cross-referencing commands.
3460
3461 Move autoloaded bindings for `M-.', `M-,', `C-x 4 .' and
3462 `C-x 5 .' from etags.el to xref.el.
3463
3464 * progmodes/xref.el: New file.
3465
3466 * progmodes/elisp-mode.el (elisp--identifier-types): New variable.
3467 (elisp--identifier-location): New function, extracted from
3468 `elisp--company-location'.
3469 (elisp--company-location): Use it.
3470 (elisp--identifier-completion-table): New variable.
3471 (elisp-completion-at-point): Use it.
3472 (emacs-lisp-mode): Set the local values of `xref-find-function'
3473 and `xref-identifier-completion-table-function'.
3474 (elisp-xref-find, elisp--xref-find-definitions)
3475 (elisp--xref-identifier-completion-table): New functions.
3476
3477 * progmodes/etags.el (find-tag-marker-ring): Mark obsolete in
3478 favor of `xref--marker-ring'.
3479 (tags-lazy-completion-table): Autoload.
3480 (tags-reset-tags-tables): Use `xref-clear-marker-stack'.
3481 (find-tag-noselect): Use `xref-push-marker-stack'.
3482 (pop-tag-mark): Make an alias for `xref-pop-marker-stack'.
3483 (etags--xref-limit): New constant.
3484 (etags-xref-find, etags--xref-find-definitions): New functions.
3485
3486 2014-12-25 Martin Rudalics <rudalics@gmx.at>
3487
3488 * cus-start.el (resize-mini-windows): Make it customizable.
3489
3490 2014-12-24 Stephen Leake <stephen_leake@stephe-leake.org>
3491
3492 * startup.el (fancy-about-text): Change buttons for etc/CONTRIBUTE
3493 to (info "(emacs)Contributing"). (Bug#19299)
3494
3495 2014-12-24 Martin Rudalics <rudalics@gmx.at>
3496
3497 * window.el (mouse-autoselect-window-position-1): New variable.
3498 (mouse-autoselect-window-cancel)
3499 (mouse-autoselect-window-select, handle-select-window):
3500 With delayed autoselection select window only if mouse moves after
3501 selecting its frame.
3502
3503 2014-12-24 Michael Albinus <michael.albinus@gmx.de>
3504
3505 * eshell/esh-ext.el (eshell-find-interpreter): Expand relative
3506 remote file names. (Bug#18782)
3507
3508 2014-12-23 Sam Steingold <sds@gnu.org>
3509
3510 * shell.el (shell-display-buffer-actions): New user option.
3511 (shell): Pass it to `pop-to-buffer' instead of hard-coding
3512 `pop-to-buffer-same-window'.
3513
3514 2014-12-23 Stefan Monnier <monnier@iro.umontreal.ca>
3515
3516 * progmodes/js.el (js--syntax-propertize-regexp-syntax-table): New var.
3517 (js-syntax-propertize-regexp): Use it to recognize "slash in
3518 a character class" (bug#19397).
3519
3520 2014-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
3521
3522 * completion.el: Use post-self-insert-hook (bug#19400).
3523 (completion-separator-self-insert-command)
3524 (completion-separator-self-insert-autofilling): Remove.
3525 (completion-separator-chars): New var.
3526 (completion-c-mode-hook, completion-setup-fortran-mode): Use it instead
3527 of changing the keymap.
3528 (completion--post-self-insert): New function.
3529 (dynamic-completion-mode): Use it instead of rebinding keys.
3530 (cmpl--completion-string): Rename from completion-string.
3531 (add-completion-to-head, delete-completion): Let-bind it explicitly.
3532
3533 2014-12-22 Bozhidar Batsov <bozhidar@batsov.com>
3534
3535 * progmodes/ruby-mode.el (ruby--string-region): Simplify code
3536 by leveraging `syntax-ppss'.
3537
3538 2014-12-22 Artur Malabarba <bruce.connor.am@gmail.com>
3539
3540 * let-alist.el (let-alist): Use `make-symbol' instead of `gensym'.
3541
3542 2014-12-20 Michael Albinus <michael.albinus@gmx.de>
3543
3544 * net/tramp-sh.el (tramp-histfile-override): Add :version.
3545
3546 2014-12-20 Teodor Zlatanov <tzz@lifelogs.com>
3547
3548 * net/tramp-sh.el (tramp-histfile-override): Clarify docstring.
3549
3550 2014-12-19 Artur Malabarba <bruce.connor.am@gmail.com>
3551
3552 * let-alist.el (let-alist): Enable access to deeper alists by
3553 using dots inside the dotted symbols.
3554
3555 2014-12-19 Alan Mackenzie <acm@muc.de>
3556
3557 Make C++11 uniform init syntax work.
3558 New keywords "final" and "override".
3559 * progmodes/cc-engine.el (c-back-over-member-initializer-braces):
3560 New function.
3561 (c-guess-basic-syntax): Set `containing-sex' and `lim' using the
3562 new function.
3563 * progmodes/cc-fonts.el (c-font-lock-declarations): Check more
3564 carefully for "are we at a declarator?" using
3565 c-back-over-member-initializers.
3566 * progmodes/cc-langs.el (c-type-modifier-kwds): Include "final"
3567 and "override" in the C++ value.
3568
3569 2014-12-19 Martin Rudalics <rudalics@gmx.at>
3570
3571 * textmodes/ispell.el (ispell-command-loop): Don't use `next-window'.
3572
3573 2014-12-21 Lars Ingebrigtsen <larsi@gnus.org>
3574
3575 * net/nsm.el (nsm-save-host): Don't save the host name twice
3576 (bug#19269).
3577
3578 2014-12-18 Sam Steingold <sds@gnu.org>
3579
3580 Keyboard interface (C-f10) to `mouse-buffer-menu' (C-down-mouse-1).
3581 * mouse.el (mouse-buffer-menu-map): Extract from `mouse-buffer-menu'.
3582 (mouse-buffer-menu): Use `mouse-buffer-menu-map'.
3583 * menu-bar.el (menu-bar-buffer-vector): Extract from
3584 `menu-bar-update-buffers'.
3585 (menu-bar-update-buffers): Use `menu-bar-buffer-vector'.
3586 (buffer-menu-open): New user command, bound globally to C-f10,
3587 provides a keyboard interface to `mouse-buffer-menu' (C-down-mouse-1).
3588 (mouse-buffer-menu-keymap): Use `menu-bar-buffer-vector' to
3589 convert the value returned by `mouse-buffer-menu-map' to a list
3590 acceptable to `popup-menu' for `buffer-menu-open'.
3591
3592 2014-12-18 Artur Malabarba <bruce.connor.am@gmail.com>
3593
3594 * let-alist.el (let-alist): Evaluate the `alist' argument only once.
3595
3596 2014-12-18 Sam Steingold <sds@gnu.org>
3597
3598 * emacs-lisp/package.el: Avoid compilation warning by declaring
3599 the `find-library-name' function.
3600 (package-activate-1): Fix the `with-demoted-errors' calls:
3601 the first argument must be a string literal.
3602
3603 2014-12-18 Martin Rudalics <rudalics@gmx.at>
3604
3605 Add code for "preserving" window sizes.
3606 * dired.el (dired-pop-to-buffer): Call fit-window-to-buffer with
3607 `preserve-size' t.
3608 (dired-mark-pop-up): Preserve size of window showing marked files.
3609 * electric.el (Electric-pop-up-window):
3610 * help.el (resize-temp-buffer-window): Call fit-window-to-buffer
3611 with `preserve-size' t.
3612 * minibuffer.el (minibuffer-completion-help):
3613 Use `resize-temp-buffer-window' instead of `fit-window-to-buffer'
3614 (Bug#19355). Preserve size of completions window.
3615 * register.el (register-preview): Preserve size of register
3616 preview window.
3617 * tmm.el (tmm-add-prompt): Call fit-window-to-buffer
3618 with `preserve-size' t (Bug#1291).
3619 * window.el (with-displayed-buffer-window): Add calls to
3620 `window-preserve-size'.
3621 (window-min-pixel-size, window--preservable-size)
3622 (window-preserve-size, window-preserved-size)
3623 (window--preserve-size, window--min-size-ignore-p): New functions.
3624 (window-min-size, window-min-delta, window--resizable)
3625 (window--resize-this-window, split-window-below)
3626 (split-window-right): Amend doc-string.
3627 (window--min-size-1, window-sizable, window--size-fixed-1)
3628 (window-size-fixed-p, window--min-delta-1)
3629 (frame-windows-min-size, window--max-delta-1, window-resize)
3630 (window--resize-child-windows, window--resize-siblings)
3631 (enlarge-window, shrink-window, split-window): Handle preserving
3632 window sizes.
3633 (adjust-window-trailing-edge): Handle preserving window
3634 sizes. Signal user-error instead of an error when there's no
3635 window above or below.
3636 (window--state-put-2): Handle horizontal scroll bars.
3637 (window--display-buffer): Call `preserve-size' if asked for.
3638 (display-buffer): Mention `preserve-size' alist member in doc-string.
3639 (fit-window-to-buffer): New argument PRESERVE-SIZE.
3640 * textmodes/ispell.el (ispell-command-loop): Suppress horizontal
3641 scroll bar on ispell's windows. Don't count window lines and
3642 don't deal with dedicated windows.
3643 (ispell-show-choices, ispell-help): Let `ispell-display-buffer'
3644 do the window handling.
3645 (ispell-adjusted-window-height, ispell-overlay-window): Remove.
3646 (ispell-display-buffer): New function to reuse, create and fit
3647 window to ispell's buffers. (Bug#3413)
3648
3649 2014-12-18 Dmitry Gutov <dgutov@yandex.ru>
3650
3651 * emacs-lisp/package.el (package-activate): Do not re-activate or
3652 reload the dependencies (bug#19390).
3653
3654 2014-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
3655
3656 * progmodes/cc-cmds.el (c-subword-mode): Alias to subword-mode.
3657 (c-update-modeline):
3658 * progmodes/cc-langs.el (c-mode-menu): Use c-subword-mode.
3659 * progmodes/cc-mode.el (subword-mode): Move autoload to cc-cmds.el.
3660 (c-mode-base-map): Use c-subword-mode.
3661
3662 2014-12-18 Eli Zaretskii <eliz@gnu.org>
3663
3664 * international/mule-diag.el (describe-font-internal):
3665 Display additional info returned by font-info.
3666
3667 * linum.el (linum--face-width): Rename from linum--face-height,
3668 and use the new functionality of font-info.
3669 (linum-update-window): Use linum--face-width and frame-char-width,
3670 instead of approximating with height.
3671
3672 2014-12-18 Dmitry Gutov <dgutov@yandex.ru>
3673
3674 * vc/vc-svn.el (vc-svn-dir-status-files): Revert the 2014-12-02
3675 change (bug#19387). Use `apply' on `vc-dir-command' (bug#19405).
3676
3677 * emacs-lisp/package.el (package-activate-1): Add RELOAD argument
3678 and a docstring.
3679 (package-activate): Call itself on dependencies on PACKAGE with
3680 the same FORCE argument. Pass FORCE as RELOAD into
3681 `package-activate-1' (bug#19390).
3682
3683 2014-12-17 Sam Steingold <sds@gnu.org>
3684
3685 * emacs-lisp/package.el (package--list-loaded-files):
3686 Handle `(nil ...)' elements in `load-history'.
3687
3688 2014-12-17 Teodor Zlatanov <tzz@lifelogs.com>
3689
3690 * net/tramp-sh.el (tramp-histfile-override): New variable.
3691 (tramp-open-shell, tramp-maybe-open-connection): Use it.
3692
3693 2014-12-17 Dmitry Gutov <dgutov@yandex.ru>
3694
3695 * vc/vc.el: Improve `dir-status-files' description.
3696
3697 * emacs-lisp/package.el (package--list-loaded-files): Don't call
3698 file-truename on load-history elements (bug#19390).
3699
3700 2014-12-16 Nicolas Petton <petton.nicolas@gmail.com>
3701
3702 * emacs-lisp/seq.el: New file.
3703
3704 2014-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * jit-lock.el (jit-lock-function): Don't defer if jit-lock-defer-time
3707 is 0 and there is no input pending.
3708
3709 2014-12-15 Juri Linkov <juri@linkov.net>
3710
3711 * replace.el (query-replace-read-from): Use query-replace-compile-replacement
3712 only on the return value (bug#19383).
3713
3714 2014-12-15 Juri Linkov <juri@linkov.net>
3715
3716 * isearch.el (isearch-lazy-highlight-search): Extend the bound of
3717 the wrapped search by the length of the search string to be able
3718 to lazy-highlight the whole search string at point (bug#19353).
3719
3720 2014-12-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
3721
3722 * net/shr.el (shr-fold-text): Don't bug out on zero-length text.
3723
3724 2014-12-14 Alan Mackenzie <acm@muc.de>
3725
3726 * cus-start.el (all): Add fast-but-imprecise-scrolling.
3727
3728 2014-12-14 Artur Malabarba <bruce.connor.am@gmail.com>
3729
3730 * let-alist.el: Add lexical binding.
3731
3732 2014-12-14 Steve Purcell <steve@sanityinc.com> (tiny change)
3733
3734 * emacs-lisp/package.el (package-menu-mode): Use an extra column
3735 for the "Version" column, to accomodate date-and-time-based versions.
3736
3737 2014-12-14 Cameron Desautels <camdez@gmail.com>
3738
3739 * cus-edit.el (custom-unsaved-options): New function, extracted
3740 from `customize-unsaved'.
3741 (custom-unsaved): Use it.
3742 (custom-prompt-customize-unsaved-options): New function.
3743 (Bug#19328)
3744
3745 2014-12-14 Dmitry Gutov <dgutov@yandex.ru>
3746
3747 * fringe.el (fringe-bitmap-p): Fix 2014-12-05 breakage.
3748
3749 2014-12-14 Dmitry Gutov <dgutov@yandex.ru>
3750
3751 Move ASYNC argument to the `diff' VC command to the fifth
3752 position, for better compatibility with existing third-party code,
3753 and document it.
3754
3755 * vc/vc.el (vc-diff-internal): Pass `async' argument to the
3756 backend `diff' command in the last position.
3757
3758 * vc/vc-svn.el (vc-svn-diff):
3759 * vc/vc-src.el (vc-src-diff):
3760 * vc/vc-sccs.el (vc-sccs-diff):
3761 * vc/vc-rcs.el (vc-rcs-diff):
3762 * vc/vc-mtn.el (vc-mtn-diff):
3763 * vc/vc-hg.el (vc-hg-diff):
3764 * vc/vc-git.el (vc-git-diff):
3765 * vc/vc-dav.el (vc-dav-diff):
3766 * vc/vc-cvs.el (vc-cvs-diff):
3767 * vc/vc-bzr.el (vc-bzr-diff):
3768 * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end.
3769
3770 2014-12-14 Paul Eggert <eggert@cs.ucla.edu>
3771
3772 * emacs-lisp/cconv.el (cconv--analyze-use):
3773 Rename from cconv--analyse-use.
3774 (cconv--analyze-function): Rename from cconv--analyse-function.
3775 (cconv-analyze-form): Rename from cconv-analyse-form.
3776
3777 2014-12-13 Andreas Schwab <schwab@linux-m68k.org>
3778
3779 * net/shr.el (shr-next-link): Don't error out at eob.
3780
3781 2014-12-05 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3782
3783 * isearch.el (isearch-open-necessary-overlays): Open overlay
3784 ending at point (bug#19333).
3785
3786 2014-12-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3787
3788 * net/shr.el (shr-fold-text): New function.
3789 (shr-show-alt-text, shr-urlify, shr-tag-img): Use it to fold long
3790 alt/title texts.
3791 (shr-fold-text): Inhibit state from being altered.
3792
3793 * files.el (directory-files-recursively): Really check whether
3794 files are symlinks.
3795 (directory-name-p): New function.
3796 (directory-files-recursively): Use it.
3797
3798 2014-12-13 Artur Malabarba <bruce.connor.am@gmail.com>
3799
3800 * emacs-lisp/package.el (package--list-loaded-files): New function
3801 to list files in a given directory which correspond to already
3802 loaded files.
3803 (package-activate-1): Reload files given by `package--list-loaded-files'.
3804 Fix bug#10125, bug#18443, and bug#18448.
3805
3806 2014-12-13 Eric S. Raymond <esr@snark.thyrsus.com>
3807
3808 * vc/vc-svn.el (vc-svn-diff): Fix bug #19312.
3809
3810 2014-12-13 Michael Albinus <michael.albinus@gmx.de>
3811
3812 * simple.el (password-word-equivalents): Add "passcode", used for
3813 numeric secrets like PINs or RSA tokens.
3814
3815 2014-12-13 Michael Albinus <michael.albinus@gmx.de>
3816
3817 * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in
3818 order to determine `tramp-own-remote-path'.
3819
3820 2014-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3821
3822 * progmodes/python.el (python-shell-parse-command):
3823 Quote `python-shell-interpreter`. (Bug#19289)
3824
3825 2014-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
3826
3827 * progmodes/python.el (python-indent-line): Use `noindent' in strings.
3828 (python-indent-levels): Document extra value.
3829 (python-indent-calculate-indentation): Return `noindent' in strings.
3830 (python-indent-post-self-insert-function)
3831 (python-indent-calculate-levels): Handle new value.
3832
3833 2014-12-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3834
3835 * net/network-stream.el (network-stream-open-starttls): No need to
3836 check for the availability of `gnutls-available-p'.
3837
3838 * files.el (directory-files-recursively): Don't follow symlinks to
3839 other directories.
3840
3841 2014-12-12 Eric S. Raymond <esr@snark.thyrsus.com>
3842
3843 * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el:
3844 * vc/vc.el: latest-on-branch-p is no longer a public method.
3845
3846 * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el:
3847 * vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el:
3848 Remove `rollback' method, to be replaced in the future by uncommit.
3849
3850 2014-12-11 Michael Albinus <michael.albinus@gmx.de>
3851
3852 * vc/vc-hg.el (vc-hg-state): Make FILE absolute. Handle the case
3853 that there is empty output.
3854
3855 2014-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
3856
3857 * emacs-lisp/eldoc.el (eldoc-documentation-function): Change default.
3858 (eldoc-mode, eldoc-schedule-timer): Adjust to new default.
3859
3860 2014-12-10 Artur Malabarba <bruce.connor.am@gmail.com>
3861
3862 * let-alist.el: Add new package and macro.
3863
3864 2014-12-10 Eric S. Raymond <esr@snark.thyrsus.com>
3865
3866 * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el:
3867 * vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of vc-keep-workfiles,
3868 it's a shoot-self-in-foot archaism. Workfiles are always kept.
3869
3870 2014-12-10 Rasmus Pank Roulund <emacs@pank.eu>
3871
3872 * net/ange-ftp.el (ange-ftp-switches-ok): Disallow flags causing
3873 trouble with ls over ftp. These flags result in ls returning no
3874 output, causing Tramp-breakage. (bug#19192)
3875
3876 2014-12-10 Andreas Schwab <schwab@suse.de>
3877
3878 * files.el (file-tree-walk): Use file-name-as-directory unconditionally.
3879
3880 2014-12-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3881
3882 * files.el (directory-files-recursively):
3883 Use `file-name-all-completions' instead of `directory-files' for
3884 greater speed.
3885
3886 * net/shr.el (shr-tag-object): Don't bug out on text elements in
3887 <object>.
3888
3889 2014-12-09 Bozhidar Batsov <bozhidar@batsov.com>
3890
3891 * progmodes/ruby-mode.el (auto-mode-alist): Add .rabl, Berksfile
3892 and Puppetfile.
3893 (ruby-toggle-string-quotes): New command that allows you to quickly
3894 toggle between single-quoted and double-quoted string literals.
3895
3896 2014-12-09 Eric S. Raymond <esr@snark.thyrsus.com>
3897
3898 * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument
3899 list, avoids problems witt names containing hyphens.
3900
3901 2014-12-09 Wilson Snyder <wsnyder@wsnyder.org>
3902
3903 Sync with upstream verilog-mode revision aa4b777.
3904 * progmodes/verilog-mode.el (verilog-mode-version): Update.
3905 (verilog-auto-end-comment-lines-re, verilog-end-block-ordered-re)
3906 (verilog-set-auto-endcomments): Automatically comment property/
3907 endproperty blocks to match other similar blocks like sequence/
3908 endsequence, function/endfunction, etc. Reported by Alex Reed.
3909 (verilog-set-auto-endcomments): Fix end comments for functions of
3910 type void, etc. Detect the function- or task-name when
3911 auto-commenting blocks that lack an explicit portlist.
3912 Reported by Alex Reed.
3913 (verilog-nameable-item-re): Fix nameable items that can have an
3914 end-identifier to include endchecker, endgroup, endprogram,
3915 endproperty, and endsequence. Reported by Alex Reed.
3916 (verilog-preprocessor-re, verilog-beg-of-statement):
3917 Fix indentation of property/endproperty around pre-processor
3918 directives. Reported by Alex Reed.
3919 (verilog-label-be): When auto-commenting a buffer, consider
3920 auto-comments on all known keywords (not just a subset thereof).
3921 Reported by Alex Reed.
3922 (verilog-beg-of-statement): Fix labeling do-while blocks, bug842.
3923 Reported by Alex Reed.
3924 (verilog-beg-of-statement-1, verilog-at-constraint-p):
3925 Fix hanging with many curly-bracket pairs, bug663.
3926 (verilog-do-indent): Fix electric tab deleting form-feeds.
3927 Note caused by indent-line-to deleting tabls pre 24.5.
3928 (verilog-auto-output, verilog-auto-input, verilog-auto-inout)
3929 (verilog-auto-inout-module, verilog-auto-inout-in): Doc fixes.
3930 (verilog-read-always-signals, verilog-auto-sense-sigs)
3931 (verilog-auto-reset): Fix AUTORESET with always_comb and always_latch,
3932 bug844. Reported by Greg Hilton.
3933
3934 2014-12-09 Alex Reed <acreed4@gmail.com> (tiny change)
3935
3936 * progmodes/verilog-mode.el (verilog-no-indent-begin-re):
3937 Fix `verilog-indent-begin-after-if' nil not honoring 'forever',
3938 'foreach', and 'do' keywords.
3939 (verilog-endcomment-reason-re, verilog-beg-of-statement):
3940 Fix labeling do-while blocks, bug842.
3941 (verilog-backward-token): Fix indenting sensitivity lists with
3942 named events, bug840.
3943
3944 2014-12-09 Reto Zimmermann <reto@gnu.org>
3945
3946 Sync with upstream vhdl mode v3.36.1.
3947 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
3948 (vhdl-compiler-alist): Anchor all error regexps.
3949 (vhdl-compile-use-local-error-regexp): Change default to nil.
3950 (vhdl-asort, vhdl-anot-head-p): Remove.
3951 (vhdl-aput, vhdl-adelete, vhdl-aget): Simplify.
3952 Remove optional argument of vhdl-aget and update all callers.
3953 (vhdl-import-project): Also set `vhdl-compiler'.
3954
3955 2014-12-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3956
3957 * files.el (find-files): New function.
3958
3959 * net/shr.el (shr-dom-print): Don't print comments.
3960 (shr-tag-svg): Give inline SVG images the right type.
3961
3962 * net/eww.el (eww-update-header-line-format): Mark valid/invalid
3963 certificates in the header line.
3964 (eww-invalid-certificate, eww-valid-certificate): New faces.
3965
3966 2014-12-09 Fabián Ezequiel Gallina <fgallina@gnu.org>
3967
3968 * progmodes/python.el (inferior-python-mode):
3969 Set `comint-prompt-read-only` to `t` only locally.
3970
3971 2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3972
3973 * net/nsm.el (nsm-check-protocol): Test for RC4 on `high'.
3974 (nsm-format-certificate): Include more data about the connection.
3975 (nsm-query): Fill the text to that it looks nicer.
3976 (nsm-check-protocol): Also warn if using SSL3 or older.
3977
3978 2014-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
3979
3980 * progmodes/gud.el (gud-gdb-completions): Remove unused var `start'.
3981
3982 * obsolete/gulp.el (gulp-create-m-p-alist): Remove unused var `mnt-tm'.
3983
3984 * net/tramp.el (tramp-handle-make-symbolic-link): Mark unused arg.
3985
3986 * info.el (Info-mode-map): Remove left-over binding.
3987
3988 * emacs-lisp/avl-tree.el: Use lexical-binding and cl-lib.
3989 (avl-tree--root): Remove redundant defsetf.
3990
3991 2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3992
3993 * net/nsm.el (network-security-level): Remove the detailed
3994 description, which was already outdated, and refer the users to
3995 the manual.
3996 (nsm-check-protocol): Check for weak Diffie-Hellman prime bits
3997 (bug#19153).
3998
3999 2014-12-06 Andrey Kotlarski <m00naticus@gmail.com>
4000
4001 * net/eww.el (eww-buffers-mode): New major mode.
4002 (eww-list-buffers, eww-buffer-select, eww-buffer-show-next)
4003 (eww-buffer-show-previous, eww-buffer-kill, eww-buffer-show):
4004 New commands/functions (bug#19131).
4005
4006 2014-12-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4007
4008 * net/gnutls.el (gnutls-negotiate): Ignore files found via
4009 'file-name-handler-alist' since the gnutls library can't use those
4010 (bug#15866).
4011
4012 2014-12-08 Dmitry Gutov <dgutov@yandex.ru>
4013
4014 * vc/vc-hg.el (vc-hg-dir-status-files): Only include ignores files
4015 when FILES is non-nil (bug#19304).
4016
4017 2014-12-08 Eric S. Raymond <esr@snark.thyrsus.com>
4018
4019 * vc/vc-arch.el: Move to obsolete directory so a test framework
4020 won't trip over bit-rot in it. There has been no Arch snapshot
4021 for nine years.
4022
4023 2014-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4024
4025 * net/eww.el (eww-follow-link): Revert prefix behaviour to
4026 previous behavior.
4027 (eww-copy-page-url): Add doc string.
4028
4029 2014-12-07 Ivan Shmakov <ivan@siamics.net>
4030
4031 * net/eww.el (eww): Move history recording here...
4032 (eww-browse-url): ... from here (bug#19253).
4033
4034 * net/eww.el (eww-browse-url): Use generate-new-buffer (was:
4035 iterating over possible buffer names.)
4036
4037 2014-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4038
4039 * net/eww.el (eww-reload): Take a prefix to work locally (bug#19086).
4040 (eww-current-buffer): Compilation fix for bug#18550 patch.
4041
4042 2014-12-07 Ivan Shmakov <ivan@siamics.net>
4043
4044 * net/eww.el (eww-list-histories): Restore the history in the
4045 correct buffer (bug#18550).
4046
4047 2014-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4048
4049 * net/eww.el (eww-bookmark-prepare): Display URLs in first by
4050 displaying shortened titles first (bug#16398).
4051
4052 2014-12-07 Tom Willemse <tom@ryuslash.org> (tiny change)
4053
4054 * progmodes/python.el: Recognize docstrings.
4055 (python-docstring-at-p, python-font-lock-syntactic-face-function):
4056 New functions.
4057 (python-mode): Use them.
4058
4059 2014-12-06 Ulf Jasper <ulf.jasper@web.de>
4060
4061 * net/newst-treeview.el (newsticker--treeview-list-add-item)
4062 (newsticker--treeview-propertize-tag): Bind tree menu to mouse-3.
4063 (newsticker--treeview-create-groups-menu)
4064 (newsticker--treeview-create-tree-menu): Remove.
4065 (newsticker--treeview-tree-open-menu): New.
4066 (newsticker-treeview-tree-click): Pass event to
4067 `newsticker-treeview-tree-do-click'.
4068 (newsticker-treeview-tree-do-click): Open treemenu on mouse-3.
4069
4070 2014-12-05 Juri Linkov <juri@linkov.net>
4071
4072 * comint.el (comint-history-isearch-search)
4073 (comint-history-isearch-wrap): Use field-beginning instead of
4074 comint-line-beginning-position.
4075 (comint-send-input): Go to the end of the field instead of the end
4076 of the line to accept whole multi-line input.
4077 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
4078
4079 2014-12-05 Juri Linkov <juri@linkov.net>
4080
4081 * minibuffer.el (minibuffer-completion-help):
4082 Compare selected-window with minibuffer-window to check whether
4083 completions should be displayed near the minibuffer. (Bug#17809)
4084 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00311.html
4085
4086 2014-12-05 Michael Albinus <michael.albinus@gmx.de>
4087
4088 * vc/vc-mtn.el (vc-mtn-root):
4089 * vc/vc-svn.el (vc-svn-registered): Make FILE absolute.
4090
4091 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4092
4093 * progmodes/sh-script.el (sh-smie-sh-rules): Go back to the beginning
4094 of the whole pipe when indenting an opening keyword after a |.
4095 Generalize this treatment to opening keywords like "while" (bug#18031).
4096
4097 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4098
4099 * simple.el (newline): Place the hook buffer-locally,
4100 to make sure it's first.
4101
4102 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
4103 Fix handling of symbols with different syntax at beginning/end or with
4104 symbol rather than word syntax.
4105
4106 2014-12-05 Eli Zaretskii <eliz@gnu.org>
4107
4108 * simple.el (line-move): If noninteractive, call line-move-1, not
4109 forward-line, since the former is compatible with line-move-visual
4110 both in terms of the column to which it moves and the return
4111 value. (Bug#19211)
4112
4113 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4114
4115 * vc/ediff-init.el (ediff-odd-p): Remove.
4116 (ediff-background-face): Use cl-oddp instead.
4117 (ediff-buffer-live-p): Make it a defsubst.
4118
4119 * tooltip.el (tooltip-region-active-p): Remove.
4120
4121 * net/shr.el (shr-char-breakable-p, shr-char-kinsoku-bol-p)
4122 (shr-char-kinsoku-eol-p, shr-char-nospace-p): Use define-inline.
4123
4124 * fringe.el (fringe-bitmap-p): Make it a plain function.
4125
4126 * emacs-lisp/eieio-core.el: Prefer inlinable functions over macros.
4127 (class-p, generic-p, eieio-object-p, class-abstract-p):
4128 Make them defsubst, so as to avoid corner case problems where
4129 the arg might be evaluated in the condition-case, or it can't be passed
4130 to higher-order functions like `cl-some'.
4131
4132 2014-12-05 Nicolas Richard <theonewiththeevillook@yahoo.fr>
4133
4134 * wid-edit.el (widget-choose): Let numeric keypad work (bug#19268)
4135 and remove old menu-related code.
4136
4137 2014-12-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4138
4139 * net/eww.el (eww-display-pdf): Let mailcap determine how to
4140 display PDF files (bug#19270).
4141
4142 2014-12-05 Juri Linkov <juri@linkov.net>
4143
4144 Compare with the most recent window by default.
4145 * vc/compare-w.el (compare-windows-get-window-function): New defcustom.
4146 (compare-windows-get-recent-window)
4147 (compare-windows-get-next-window): New functions.
4148 (compare-windows, compare-windows-sync-default-function):
4149 Use `compare-windows-get-window-function' instead of `next-window'.
4150 (compare-windows): Add diff/match messages with region boundaries.
4151 (Bug#19170)
4152
4153 2014-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
4154
4155 * subr.el (filter): Remove. Use `cl-remove-if-not' or `seq-filter'.
4156
4157 2014-12-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4158
4159 * net/shr.el (shr--extract-best-source): Ignore non-text children.
4160
4161 2014-12-04 Eli Zaretskii <eliz@gnu.org>
4162
4163 Implement copying of a buffer portion while preserving visual order.
4164 * simple.el (bidi-directional-controls-chars)
4165 (bidi-directional-non-controls-chars): New variables.
4166 (squeeze-bidi-context-1, squeeze-bidi-context)
4167 (line-substring-with-bidi-context)
4168 (buffer-substring-with-bidi-context): New functions.
4169
4170 * files.el (file-tree-walk): Doc fix.
4171
4172 2014-12-04 Rupert Swarbrick <ruperts@broadcom.com> (tiny change)
4173 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
4174
4175 * autoinsert.el (auto-insert-alist): Update C/C++ header and
4176 program support to match more extensions. Replace non-alnum
4177 characters when generating include guards (headers) and check for
4178 more extensions when generating includes (programs)
4179 (bug#19254).
4180
4181 2014-12-03 Eric S. Raymond <esr@snark.thyrsus.com>
4182
4183 * files.el (file-tree-walk): Fix docstring.
4184
4185 2014-12-03 Karl Fogel <kfogel@red-bean.com>
4186
4187 Fix bug whereby saving files hung in VC hook.
4188
4189 Saving a buffer visiting a file under SVN control would hang if
4190 the remote repository were unreachable, because the VC hooks tried
4191 to run "svn status -u" on the file, where the "-u" tells svn to
4192 get update information from the remote repository.
4193 http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00174.html
4194
4195 * vc/vc-svn.el (vc-svn-state): Remove optional `localp'
4196 argument and always pass "-v" to "svn status", never "-u".
4197
4198 2014-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4199
4200 * emacs-lisp/inline.el: Fix up copyright header.
4201 (inline-quote, inline-const-p, inline-const-val, inline-error):
4202 Silence compiler warnings.
4203 (inline-letevals): Fix edebug spec.
4204 (inline--testconst-p): Consider lambda expressions as const-p.
4205 (inline--getconst-val): Use inline--testconst-p.
4206
4207 * minibuffer.el (completion-table-dynamic): Add arg `switch-buffer'
4208 and change default to stay in the minibuffer when called from
4209 the minibuffer (bug#19250).
4210 (lazy-completion-table): Use this new argument to preserve the
4211 old behavior.
4212
4213 * progmodes/elisp-mode.el (elisp--local-variables): Don't burp on
4214 incorrect lexical elements (bug#19250).
4215
4216 2014-12-03 A. N. Other <none@example.com>
4217
4218 * files.el (file-tree-walk): Lisp translation of ANSI ftw(3).
4219
4220 2014-12-02 Glenn Morris <rgm@gnu.org>
4221
4222 * whitespace.el (whitespace-big-indent-regexp): Add :version.
4223
4224 2014-12-02 Eric S. Raymond <esr@snark.thyrsus.com>
4225
4226 * subr.el (filter): New macro. Because it's just silly for a Lisp
4227 not to have this in 2014. And VC needs it.
4228
4229 * vc.el: All backends: API simplification: Abolish dir-status.
4230 It's replaced by dir-status-files.
4231
4232 * vc.el: All backends: API simplification: Remove 4th
4233 'default-state' argument from vc-dir-status files and its backend
4234 methods - no backend method ever set it. It was used only in the
4235 fallback method to to set a default of 'up-to-date, though a
4236 convoluted call chain obscured this.
4237
4238 * vc-hooks.el: Bind vc-delete-file to Ctrl-x v delete.
4239
4240 * vc.el (vc-expand-dirs): Now takes a second BACKEND argument,
4241 improving behavior on directories using multiple file-oriented VCSes.
4242
4243 * vc/vc.el: All backends: API simplification; clear-headers
4244 is no longer a public method. It is now local to the one place
4245 it's used, in the RCS steal-lock method.
4246
4247 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com>
4248
4249 * vc/vc.el: In all backends: API simplification; could-register
4250 is no longer a public method. (vc-cvs.el still has a private
4251 implementation.)
4252
4253 * vc/vc.el: In all backends: API cleanup; the backend diff method
4254 takes an explicit async flag. This eliminates a particularly ugly
4255 global.
4256
4257 * vc-bzr.el: Restore vc-bzr-state-heuristic as a private method.
4258 VC randomly/unpredictably fails without it; cause not yet established.
4259
4260 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4261
4262 Merge some of the differences from the standalone CC-mode.
4263 The main change is to only use the `category' text-property only when
4264 available. For that many calls are changed to use c-get-char-property,
4265 c-next-single-property-change, c-sc-scan-lists,
4266 c-sc-parse-partial-sexp, c-unmark-<->-as-paren.
4267
4268 * progmodes/cc-mode.el (c-just-done-before-change): New var.
4269 (c-basic-common-init): Initialize it.
4270 (c-common-init): Only use mode-require-final-newline when available.
4271 (c-before-change): Check and set c-just-done-before-change.
4272 (c-after-change): Re-set c-just-done-before-change.
4273 (c-advise-fl-for-region): New macro.
4274 (lazy-lock-defer-rest-after-change, lazy-lock-defer-line-after-change)
4275 (font-lock-after-change-function, jit-lock-after-change):
4276 Advise if needed.
4277
4278 * progmodes/cc-langs.el (c-modified-constant): New lang var.
4279 (c-known-type-key): Don't make a list just to throw it away.
4280
4281 * progmodes/cc-engine.el (c-invalidate-state-cache, c-parse-state):
4282 Handle the case where categories are not available.
4283 (c-record-parse-state-state, c-replay-parse-state-state):
4284 Handle marker values.
4285 (c-before-change-check-<>-operators): Look for the `syntax-table'
4286 property rather than for the corresponding `category'.
4287 (c-looking-at-decl-block): Remove unused var
4288 `c-disallow-comma-in-<>-arglists'.
4289 (c-forward-<>-arglist-recur): Remove unused var
4290 `orig-record-found-types'.
4291
4292 * progmodes/cc-defs.el (c-version): Bump up to 5.33.
4293 (c-use-category): New const.
4294 (c-next-single-property-change): New macro.
4295 (c-region-is-active-p): Prefer region-active-p when available.
4296 (c-search-backward-char-property): Fix old min/max typo; probably
4297 a copy/paste error.
4298 (c-mark-<-as-paren, c-mark->-as-paren, c-unmark-<->-as-paren):
4299 Turn them into macros that obey c-use-category.
4300 (c-sc-scan-lists-no-category+1+1, c-sc-scan-lists-no-category+1-1)
4301 (c-sc-scan-lists-no-category-1+1, c-sc-scan-lists-no-category-1-1)
4302 (c-sc-scan-lists, c-sc-parse-partial-sexp)
4303 (c-looking-at-non-alphnumspace): New macros.
4304 (c-sc-parse-partial-sexp-no-category): New function.
4305 (c-emacs-features): Add `category-properties' element.
4306
4307 * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4308 (c-backward-into-nomenclature): Use cc-subword if subword-mode is
4309 not available.
4310 (c-beginning-of-defun, c-end-of-defun, c-mark-function)
4311 (c-indent-line-or-region): Use c-region-is-active-p.
4312
4313 * progmodes/cc-bytecomp.el (cc-bytecomp-unbound-variables)
4314 (cc-bytecomp-original-functions, cc-bytecomp-original-properties)
4315 (cc-bytecomp-loaded-files): Re-set each time the file is loaded.
4316 (cc-bytecomp-obsolete-var, cc-bytecomp-ignore-obsolete)
4317 (cc-bytecomp-obsolete-fun): Delete unused functions.
4318
4319 * progmodes/cc-align.el (c-lineup-respect-col-0): New function.
4320
4321 2014-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4322
4323 * net/shr.el (shr-dom-print): Fix up `shr-dom-print' after the
4324 dom.el changes.
4325
4326 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4327
4328 * vc/vc.el (vc-find-conflicted-file): Look for conflicted files in the
4329 current "project" rather than just the current directory.
4330 * vc/vc-git.el (vc-git-conflicted-files): Clarify in which directory
4331 the file names make sense.
4332
4333 * vc/smerge-mode.el (smerge-swap): New command.
4334
4335 * vc/diff-mode.el (diff-kill-applied-hunks): New command.
4336
4337 2014-12-01 Ulf Jasper <ulf.jasper@web.de>
4338
4339 * net/newst-treeview.el (newsticker--treeview-item-show):
4340 Check window liveliness before measuring its width.
4341
4342 * net/newst-backend.el (newsticker--get-news-by-url-callback):
4343 Pass correct status to `newsticker--sentinel-work'.
4344 (newsticker--sentinel-work): Use "newsticker--download-error" as
4345 guid in order to prevent multiple "Could not download..."
4346 messages. (Bug#19166)
4347
4348 2014-12-01 Ivan Shmakov <ivan@siamics.net>
4349
4350 * net/eww.el (eww-render): Call `eww-after-render-hook' in the
4351 correct buffer (bug#19225).
4352
4353 2014-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4354
4355 * net/nsm.el (network-security-level): Change the default to `medium'.
4356
4357 * net/eww.el (eww): Leave point in a place that doesn't cause
4358 scrolling when displaying "Loading...".
4359
4360 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com>
4361
4362 * vc/vc.el, vc/vc-cvs.el, vc/vc-rcs.el, vc/vc-svn.el: The 'merge'
4363 backend method of RCS/CVS/SVN is now 'merge-file', to contrast with
4364 'merge-branch'. Prompting for merge revisions is pushed down to
4365 the back ends; this fixes a layering violation that caused bad
4366 behavior with SVN.
4367
4368 * vc/vc.el, vc-hooks.el: All backends: API simplification;
4369 vc-stay-local-p and repository-hostname are no longer public
4370 methods. Only the CVS and SVN backends used these, and the SVN
4371 support was conditioned out because svn status -v is too slow.
4372 The CVS back end retains this machinery and the vc-stay-local
4373 configuration variable now only affects it.
4374
4375 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4376
4377 * emacs-lisp/inline.el: New file.
4378
4379 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com>
4380
4381 * vc/vc.el, vc-hooks.el: All backends: API simplification;
4382 vc-state-heuristic is no longer a public method, having been
4383 removed where it is redundant, unnecessary, or known buggy.
4384 This eliminated all backends except CVS. Eliminates bug#7850.
4385
4386 * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el:
4387 Eliminate vc-mistrust-permissions. It was only relevant to the
4388 RCS and SCCS back ends and defaulted to t. Code now always
4389 mistrusts permissions - by actual measurement the effect on
4390 performance is negligible. As a side effect bug#11490 is now
4391 irrelevant.
4392
4393 * vc/vc.el, vc-hooks.el: All backends: API simplification;
4394 vc-workfile-unchanged-p is no longer a public method (but the RCS
4395 and SCCS back ends retain it as a private method used in state
4396 computation). This method was redundant with vc-state and usually
4397 implemented as a trivial call to same. Fixes the failure mode
4398 described in bug#694.
4399
4400 * vc/vc.el: All backends: API simplification; init-revision is
4401 gone, and vc-registered functions no longer take an
4402 initial-revision argument.
4403
4404 2014-11-29 Glenn Morris <rgm@gnu.org>
4405
4406 * vc/vc-src.el (vc-src, vc-src-diff-switches)
4407 (vc-src-master-templates): Fix :version tags.
4408
4409 2014-11-29 Paul Rankin <paul@tilk.co> (tiny change)
4410
4411 * outline.el (outline-move-subtree-down): Refactor and improve code.
4412
4413 2014-11-29 Stephen Berman <stephen.berman@gmx.net>
4414 Stefan Monnier <monnier@iro.umontreal.ca>
4415
4416 * outline.el (outline-move-subtree-down): Make sure we can move
4417 forward to find the end of the subtree and the insertion point
4418 (bug#19102).
4419
4420 2014-11-29 Fabián Ezequiel Gallina <fgallina@gnu.org>
4421
4422 * progmodes/python.el (python-shell-completion-setup-code):
4423 Use __builtin__ module (or builtins in Python 3) and catch all errors
4424 when importing readline and rlcompleter.
4425
4426 2014-11-29 Stephen Berman <stephen.berman@gmx.net>
4427
4428 * calendar/todo-mode.el: Handle calling revert-buffer (bug#19187).
4429 (todo-revert-buffer): New function.
4430 (todo-modes-set-1): Use it as the buffer-local value of
4431 revert-buffer-function.
4432
4433 2014-11-29 Stephen Berman <stephen.berman@gmx.net>
4434
4435 * calendar/todo-mode.el (todo-mode): If called interactively, just
4436 display a message saying to call todo-show to enter Todo mode
4437 (Bug#19112).
4438
4439 2014-11-29 Dmitry Gutov <dgutov@yandex.ru>
4440
4441 * vc/vc-hg.el (vc-hg-dir-status-files): Include ignored files.
4442 (Bug#18579)
4443
4444 * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
4445 files. (Bug#18579)
4446
4447 2014-11-29 Michael Albinus <michael.albinus@gmx.de>
4448
4449 * textmodes/makeinfo.el (makeinfo-buffer): Make it work also for
4450 remote `buffer-file-name'.
4451
4452 2014-11-29 Leo Liu <sdl.web@gmail.com>
4453
4454 * calendar/diary-lib.el (calendar-mark-1): Fix thinko.
4455
4456 2014-11-29 Fabián Ezequiel Gallina <fgallina@gnu.org>
4457
4458 Set PYTHONUNBUFFERED on shell startup.
4459
4460 * progmodes/python.el (python-shell-unbuffered): New var.
4461 (python-shell-calculate-process-environment): Use it.
4462
4463 2014-11-29 Michael Albinus <michael.albinus@gmx.de>
4464
4465 * net/tramp.el (tramp-action-password): Clean password on subsequent
4466 attempts even if there was no wrong password indication. (Bug#19047)
4467
4468 * net/tramp-sh.el (tramp-get-remote-locale): Return "LC_ALL=C" as
4469 fallback.
4470 (tramp-open-connection-setup-interactive-shell): No need to check
4471 for nil as `tramp-get-remote-locale' return value.
4472
4473 2014-11-29 Eli Zaretskii <eliz@gnu.org>
4474
4475 * vc/vc-git.el (vc-git-command, vc-git--call):
4476 Bind coding-system-for-read and coding-system-for-write to
4477 vc-git-commits-coding-system.
4478 (vc-git-previous-revision): Use "~1" instead of "^", since the
4479 latter is a special character for MS-Windows system shells.
4480
4481 2014-11-29 Michael Albinus <michael.albinus@gmx.de>
4482
4483 Improve XEmacs compatibility.
4484
4485 * net/tramp.el (tramp-autoload-file-name-handler):
4486 Wrap `temporary-file-directory' by `symbol-value', it doesn't
4487 exist in XEmacs.
4488 (tramp-read-passwd): Don't use `with-timeout-suspend' and
4489 `with-timeout-unsuspend' if they don't exist, like in XEmacs.
4490 (tramp-time-less-p, tramp-time-subtract): Remove functions.
4491 (tramp-handle-file-newer-than-file-p, tramp-time-diff):
4492 * net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
4493 * net/tramp-cache.el (tramp-get-file-property):
4494 * net/tramp-smb.el (tramp-smb-handle-insert-directory):
4495 Use `time-less-p' and `time-subtract, respectively.
4496
4497 * net/tramp-adb.el (top): Do not require time-date.el.
4498
4499 * net/tramp-compat.el (top): Require time-date.el for XEmacs.
4500
4501 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4502 Check, whether `utf-8' is a valid coding system.
4503
4504 2014-11-29 Eli Zaretskii <eliz@gnu.org>
4505
4506 * vc/vc.el (vc-retrieve-tag): Doc fix.
4507
4508 2014-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4509
4510 * simple.el (execute-extended-command--shorter): Fix the "M-p" case
4511 (bug#19152).
4512
4513 2014-11-28 Martin Rudalics <rudalics@gmx.at>
4514
4515 Fix two issues around help-window-select. (Bug#11039) (Bug#19012)
4516 * help.el (help-window-old-frame): New variable.
4517 (help-window-select): Default to nil (Bug#11039).
4518 Rewrite doc-string.
4519 (help-window-setup): When the help window appears on another
4520 frame and `help-window-select' is non-nil, give that frame input
4521 focus too (Bug#19012).
4522 (with-help-window): Store selected frame in
4523 help-window-old-frame.
4524
4525 2014-11-28 Ulf Jasper <ulf.jasper@web.de>
4526
4527 * net/newst-treeview.el (newsticker--treeview-load): Take care of
4528 nil value for `newsticker-groups-filename'.
4529
4530 2014-11-28 Daiki Ueno <ueno@gnu.org>
4531
4532 * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
4533 (epa-sign-region, epa-encrypt-region):
4534 Use `epg-context-set-{passphrase,progress}-callback', instead of
4535 `setf'. This partially reverts commit 9e48a95c (bug#19150).
4536 Reported by José A. Romero L.
4537
4538 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4539
4540 * net/eww.el (eww-restore-history):
4541 Bind `inhibit-modification-hooks' instead of `after-change-functions'.
4542
4543 2014-11-27 Ulf Jasper <ulf.jasper@web.de>
4544
4545 * net/newst-backend.el (newsticker--parse-atom-1.0):
4546 Handle embedded (x)html in summary node.
4547
4548 2014-11-27 Sam Steingold <sds@gnu.org>
4549
4550 * menu-bar.el (menu-bar-open): When everything else fails,
4551 use (mouse-menu-bar-map).
4552
4553 2014-11-27 Ulf Jasper <ulf.jasper@web.de>
4554
4555 * net/newst-treeview.el (newsticker-groups-filename):
4556 Change default value to nil. Point out that variable is obsolete in doc
4557 string.
4558 (newsticker--treeview-load): Change wording of the questions the
4559 user is asked when `newsticker-groups-filename' is found to be
4560 used and we offer to read and remove the groups file. (Bug#19165)
4561
4562 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4563
4564 * net/eww.el (eww): Record the new URL immediately, so that if the
4565 HTTP fetch fails, we have the right URL in the buffer.
4566 (eww-process-text-input): Don't shorten the input field if
4567 deleting at the last character (bug#19085).
4568 (eww-restore-history): Inhibit change functions while restoring
4569 the history.
4570 (eww-process-text-input): Fix deletion at the start of the field, too.
4571 (eww-mode): Revert mistanken removal of `buffer-disable-undo'.
4572 (eww-process-text-input): Try to keep track of the size more reliably.
4573
4574 * dom.el (dom-pp): New function.
4575
4576 2014-11-27 Eli Zaretskii <eliz@gnu.org>
4577
4578 * vc/vc-bzr.el (vc-bzr-print-log, vc-bzr-expanded-log-entry):
4579 Don't assume --long is the default for "bzr log", always specify
4580 it explicitly, in case the user defined an alias for 'log' that
4581 uses some other format.
4582
4583 2014-11-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
4584
4585 * progmodes/python.el (python-eldoc--get-doc-at-point):
4586 Strip shell output before returning. (bug#18794)
4587
4588 2014-11-27 Dmitry Gutov <dgutov@yandex.ru>
4589
4590 Fix indentation before `!=' and after `+='. Originally reported
4591 in https://github.com/mooz/js2-mode/issues/174.
4592 * progmodes/js.el (js--indent-operator-re): Make assignments and
4593 (in)equality operator a separate case.
4594 (js--continued-expression-p): Escape the second `+' in the regexp.
4595
4596 2014-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
4597
4598 * window.el (handle-select-window): Deactivate shift-region (bug#19003).
4599
4600 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4601
4602 * net/nsm.el (nsm-new-fingerprint-ok-p): Display the certificate
4603 when querying about new certificates.
4604
4605 * net/shr.el (shr-make-table-1): dom.el changes for table rendering.
4606
4607 * dom.el (dom-by-tag): Use `equal' for comparisons so that tags
4608 can be strings.
4609 (dom-elements): Protect against non-text nodes.
4610 (dom-non-text-children): New function.
4611
4612 * net/eww.el (eww-tag-title): Use `dom-text'.
4613
4614 2014-11-26 Sam Steingold <sds@gnu.org>
4615
4616 * textmodes/sgml-mode.el (sgml-validate-command): Pass -utf8 to tidy.
4617
4618 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4619
4620 * net/eww.el (eww-highest-readability): More dom.el fixes.
4621
4622 2014-11-26 Ulf Jasper <ulf.jasper@web.de>
4623
4624 * net/newst-backend.el (newsticker--parse-generic-items):
4625 Take care of UIDs when adding elements to cache.
4626
4627 2014-11-26 Alan Mackenzie <acm@muc.de>
4628
4629 Remove spurious reference to symbol category_properties.
4630 * progmodes/cc-engine.el (c-state-pp-to-literal): Fix here.
4631
4632 2014-11-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4633
4634 * net/eww.el: Use the new dom.el accessors throughout.
4635
4636 * net/shr.el: Ditto.
4637
4638 * dom.el: New file.
4639
4640 2014-11-26 Glenn Morris <rgm@gnu.org>
4641
4642 * arc-mode.el (archive-visit-single-files): Add :version.
4643
4644 2014-11-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4645
4646 * net/nsm.el (nsm-format-certificate): Don't bug out on missing
4647 elements.
4648 (nsm-warnings-ok-p): The new version of this function always
4649 returned nil when everything was OK.
4650
4651 2014-11-25 Teodor Zlatanov <tzz@lifelogs.com>
4652
4653 * net/gnutls.el (gnutls): Set :group to 'comm so it's near NSM.
4654
4655 * net/nsm.el (nsm-check-tls-connection, nsm-save-host)
4656 (nsm-warnings-ok-p): Use `gnutls-peer-status-warning-describe'.
4657
4658 2014-11-20 Nicolas Richard <theonewiththeevillook@yahoo.fr>
4659
4660 * emacs-lisp/byte-run.el (function-put): Match argument names to
4661 docstring.
4662
4663 2014-11-24 Sam Steingold <sds@gnu.org>
4664
4665 * vc/vc-hooks.el (vc-directory-exclusion-list):
4666 Fix a trivial typo (bug#19171).
4667
4668 2014-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
4669
4670 * vc/vc-hooks.el (vc-state-base-face): Don't override
4671 mode-line-inactive.
4672
4673 2014-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4674
4675 * net/eww.el (eww-set-character-encoding): Use `read-coding-system'.
4676 (eww-process-text-input): Inhibit read only so that input fields
4677 don't get shortened (bug#19085).
4678
4679 2014-11-24 Leo Liu <sdl.web@gmail.com>
4680
4681 * emacs-lisp/macroexp.el (macroexp-let2*): New macro.
4682
4683 * window.el (with-temp-buffer-window)
4684 (with-current-buffer-window, with-displayed-buffer-window):
4685 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin):
4686 * emacs-lisp/cl-lib.el (substring):
4687 * emacs-lisp/cl-extra.el (cl-getf): Use it.
4688
4689 2014-11-24 Eli Zaretskii <eliz@gnu.org>
4690
4691 * isearch.el (isearch-update): Don't assume
4692 pos-visible-in-window-p will return nil when point is hscrolled
4693 out of view. (Bug#19157)
4694
4695 2014-11-20 Andrey Kotlarski <m00naticus@gmail.com>
4696
4697 * net/eww.el (eww-browse-url): Optionally create new eww buffer.
4698 (eww-follow-link): Follow in new buffer in case of prefix
4699 argument, open externally with double prefix (bug#19130).
4700
4701 2014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4702
4703 * net/eww.el (eww-display-html): Decode the document-defined charset.
4704 (eww): Pop to the *eww* buffer immediately after executing the
4705 `M-x eww' command to avoid having buffers pop up later.
4706 (eww-display-html): Don't pop the *eww* buffer.
4707 (eww-display-raw): Ditto.
4708 (eww-display-image): Ditto.
4709 (eww-follow-link): Make going to #targets in the page work again.
4710
4711 2014-11-23 Ivan Shmakov <ivan@siamics.net>
4712
4713 * net/eww.el (eww-suggest-uris): New variable.
4714 (eww-suggested-uris): New function.
4715 (eww): Default to URL under point.
4716 (eww-links-at-point): New function.
4717
4718 2014-11-20 Mark Oteiza <mvoteiza@udel.edu> (tiny change)
4719
4720 * net/eww.el (eww-add-bookmark): Fix bookmark titles.
4721
4722 2014-11-17 Mark Oteiza <mvoteiza@udel.edu> (tiny change)
4723
4724 * net/eww.el (eww-mode-map): Bind backtab to shr-previous-link.
4725
4726 2014-11-23 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
4727
4728 * net/eww.el (eww-set-character-encoding): New command and keystroke.
4729 (eww-display-raw): Use it (bug#16225).
4730
4731 2014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4732
4733 * net/nsm.el (network-security-level): Rename from
4734 `nsm-security-level' and documented.
4735
4736 * mail/smtpmail.el (smtpmail-via-smtp): Warn unless encrypted and
4737 we're sending a password.
4738
4739 * net/nsm.el: New file that implements a Network Security Manager.
4740
4741 * net/network-stream.el (open-network-stream): Add a new
4742 :warn-unless-encrypted parameter.
4743 (network-stream-open-plain): Allow warning unless encrypted.
4744 (network-stream-open-starttls): Call the Network Security Manager.
4745 (network-stream-open-tls): Ditto.
4746
4747 2014-11-23 Leo Liu <sdl.web@gmail.com>
4748
4749 * calendar/cal-china.el (calendar-chinese-from-absolute-for-diary)
4750 (calendar-chinese-to-absolute-for-diary)
4751 (calendar-chinese-mark-date-pattern, diary-chinese-anniversary):
4752 Handle leap months in Chinese calendar. (Bug#18953)
4753
4754 2014-11-22 Alan Mackenzie <acm@muc.de>
4755
4756 Fix error with `mark-defun' and "protected:" in C++ Mode.
4757 * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Handle a
4758 return code of (label) from c-beginning-of-decl-1. (Bug#19134)
4759
4760 2014-11-22 Ulf Jasper <ulf.jasper@web.de>
4761
4762 * net/newst-backend.el (newsticker--sentinel-work):
4763 Tell `libxml-parse-xml-region' to discard comments. (Bug#18787)
4764
4765 2014-11-22 Michael Albinus <michael.albinus@gmx.de>
4766
4767 * net/tramp-sh.el (tramp-sh-handle-start-file-process)
4768 (tramp-sh-handle-process-file): Propagate `process-environment'.
4769
4770 * vc/vc-hg.el (vc-hg-state): No special handling for remote files;
4771 Tramp propagates environment variables now.
4772
4773 2014-11-22 Eric S. Raymond <esr@snark>
4774
4775 * vc/vc-filewise.el: New file to isolate code used only by the
4776 file-oriented back ends (SCCS/RCS/CVS/SRC) which should not
4777 live in vc.el and certainly not in vc-hooks.el.
4778
4779 * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name -> vc-master-name.
4780 This is preparatory to isolating all the 'master' functions
4781 used only by the file-oriented back ends. With this done first,
4782 the substantive diffs will be easier to read.
4783
4784 2014-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
4785
4786 * play/morse.el (nato-alphabet): Mark URL in docstring in a way
4787 that is recognized by `help-mode'.
4788
4789 2014-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4790
4791 * desktop.el (desktop-create-buffer): Use activate-mark to set
4792 `mark-active' (bug#19058).
4793
4794 2014-11-21 Eric S. Raymond <esr@snark>
4795
4796 * vc/vc-src.el (vc-src-state): Fix bug that produced spurious
4797 nil state.
4798
4799 2014-11-21 Eli Zaretskii <eliz@gnu.org>
4800
4801 * vc/vc.el (vc-deduce-fileset): Support invocation from
4802 *vc-change-log* buffer. (Bug#19084)
4803
4804 2014-11-13 Matthew Leach <matthew@mattleach.net>
4805
4806 * arc-mode.el (archive-visit-single-files): New.
4807 (archive-mode): Visit file if archive contains a single file.
4808 (Bug#1702)
4809
4810 2014-11-21 Ulrich Müller <ulm@gentoo.org>
4811
4812 * vc/vc.el: Fix a typo in the commentary.
4813
4814 2014-11-20 Eric S. Raymond <esr@snark.thyrsus.com>
4815
4816 * vc/vc-src.el, vc/vc.el: Added support for SRC. Needs more
4817 testing and a real log-view mode.
4818
4819 * vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el, vc/vc-git.el:
4820 * vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el:
4821 * vc/vc-svn.el, vc/vc.el: Remove editable argument from the backend
4822 checkout methods; where it matters (which is only in SCCS and RCS)
4823 files are always checked out editable. This may actually have
4824 been dynamically true already - it looks like the vc-next-action
4825 code evolved past visiting the other case. Tested with RCS.
4826
4827 * vc/vc-arch.el, vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el:
4828 * vc/vc-git.el, vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el:
4829 * vc/vc-sccs.el, vc/vc-svn.el, vc/vc.el: Remove never-used rev
4830 argument from the backend checkin methods. Only the RCS, SCCS,
4831 and CVS back ends tried to do anything with it, and that code was
4832 never exercised. Chiseling away the cruft of decades...
4833
4834 2014-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4835
4836 * net/eww.el (eww-render): Remove a no-op :title setting.
4837
4838 2014-11-19 Ivan Shmakov <ivan@siamics.net>
4839
4840 * net/eww.el (eww-history-limit): New variable.
4841 (eww-save-history): Use it (bug#19105).
4842 (eww-reload): Reload the page in the right buffer.
4843
4844 2014-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4845
4846 * net/eww.el (eww-desktop-misc-data): Use `cl-remove-duplicates'.
4847
4848 2014-11-19 Ivan Shmakov <ivan@siamics.net>
4849
4850 * net/eww.el (eww-desktop-remove-duplicates)
4851 (eww-restore-desktop, eww-restore-reload-prompt): New variables.
4852 (eww-mode): Set up desktop mode (bug#18010).
4853 (eww-desktop-data-save, eww-desktop-data-1)
4854 (eww-desktop-history-duplicate, eww-desktop-misc-data)
4855 (eww-restore-desktop): New functions.
4856
4857 2014-11-19 Eli Zaretskii <eliz@gnu.org>
4858
4859 * vc/vc.el (vc-log-internal-common): Turn on log-view-mode in the
4860 correct buffer. (Bug#19101)
4861
4862 2014-11-19 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
4863
4864 * vc/vc-git.el (vc-git-diff): Use "difftool -x diff" with
4865 `diff-switches' if `vc-git-diff-switches' is nil. (Bug#19099)
4866
4867 2014-11-19 Artur Malabarba <bruce.connor.am@gmail.com>
4868
4869 * ido.el (ido-bury-buffer-at-head): New command.
4870 (ido-buffer-completion-map): Bind it to C-S-b.
4871
4872 2014-11-18 Juri Linkov <juri@linkov.net>
4873
4874 * simple.el (next-line-or-history-element): Wrap next-line
4875 in with-no-warnings.
4876 (previous-line-or-history-element): Wrap previous-line
4877 in with-no-warnings.
4878
4879 2014-11-18 Juri Linkov <juri@linkov.net>
4880
4881 * progmodes/grep.el (grep-compute-defaults):
4882 Compute grep-highlight-matches before its use.
4883
4884 2014-11-18 Juri Linkov <juri@linkov.net>
4885
4886 * replace.el (query-replace-from-to-separator): Turn defvar into
4887 defcustom. Wrap char-displayable-p in ignore-errors because an
4888 attempt to autoload char-displayable-p fails during pre-loading.
4889 Move (propertize "\0" ... 'separator t) out of customizable part
4890 to query-replace-read-from.
4891 (query-replace-read-from): Call custom-reevaluate-setting on
4892 query-replace-from-to-separator to reevaluate the separator
4893 depending on the return value of char-displayable-p.
4894 http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00466.html
4895
4896 2014-11-18 Juri Linkov <juri@linkov.net>
4897
4898 * bindings.el (minibuffer-local-map): Rebind [down] from
4899 next-history-element to next-line-or-history-element, and [up]
4900 from previous-history-element to previous-line-or-history-element.
4901
4902 * simple.el (next-line-or-history-element)
4903 (previous-line-or-history-element): New commands.
4904 http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00822.html
4905
4906 2014-11-18 Leo Liu <sdl.web@gmail.com>
4907
4908 * emacs-lisp/nadvice.el (define-advice): New macro.
4909 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4910 Add define-advice.
4911 (lisp-font-lock-keywords-1): Add define-advice.
4912
4913 2014-11-18 Daiki Ueno <ueno@gnu.org>
4914
4915 * epg.el (epg-context): New slot EDIT-CALLBACK.
4916 (epg--process-filter): Call EDIT-CALLBACK when editing a key.
4917 (epg-reset): Reset EDIT-CALLBACK of the context.
4918 (epg-start-edit-key): New function.
4919 (epg-edit-key): New function.
4920
4921 2014-11-18 Paul Eggert <eggert@cs.ucla.edu>
4922
4923 Port new time stamp handling to Emacs 23.2.
4924 This fix is for Gnus. Reported by Katsumi Yamaoka.
4925 * calendar/time-date.el (time-add, time-subtract, time-less-p):
4926 Use eval-and-compile, not eval-when-compile.
4927
4928 2014-11-18 Daiki Ueno <ueno@gnu.org>
4929
4930 * epg.el (epg-context-set-passphrase-callback)
4931 (epg-context-set-progress-callback): Check if the CALLBACK
4932 argument is a function, instead of a cons.
4933
4934 2014-11-18 Daiki Ueno <ueno@gnu.org>
4935
4936 * epa-file.el (epa-file-insert-file-contents)
4937 (epa-file-write-region): Remove redundant check of
4938 epa-pinentry-mode.
4939 * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
4940 (epa-sign-region, epa-encrypt-region): Remove redundant check of
4941 epa-pinentry-mode.
4942
4943 2014-11-18 Daiki Ueno <ueno@gnu.org>
4944
4945 * epa-file.el (epa-file-insert-file-contents): Don't show
4946 "*Error*" buffer if input file does not exist.
4947 Reported by Herbert J. Skuhra.
4948
4949 2014-11-18 Paul Pogonyshev <pogonyshev@gmail.com>
4950 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
4951
4952 * progmodes/cc-langs.el: Support some of the new keywords in C++11.
4953 An alternative version of the patch from bug#13871.
4954 (c-operators): Add "alignof".
4955 (c-primitive-type-kwds): Add "char16_t", "char32_t".
4956 (c-type-modifier-kwds): Add "constexpr", "noexcept".
4957 (c-modifier-kwds): Add "thread_local".
4958 (c-constant-kwds): Add "nullptr".
4959
4960 2014-11-17 Michal Nazarewicz <mina86@mina86.com>
4961
4962 * textmodes/tildify.el (tildify-pattern, tildify-space-string):
4963 New variables for specifying tildify pattern and representation of
4964 a hard space -- a no-break space by default -- respectively.
4965 Being buffer-local they are much easier to handle than
4966 `tildify-string-alist' and `tildify-pattern-alist' respectively
4967 that have been used so far. They also works better with derived
4968 modes.
4969 (tildify-foreach-region-function): New variable specifying
4970 a function determining portions of buffer that should be
4971 tildified. It allows major modes to create a filtering function
4972 more elaborate than a set of regular expressions. Initialized to
4973 `tildify--deprecated-ignore-evironments' by default to handle now
4974 deprecated `tildify-ignored-environments-alist' variable.
4975 (tildify--foreach-region): A new function that takes
4976 `tildify-foreach-region-function' into account and calls callback
4977 for regions of the buffer that should be tildified.
4978 (tildify-foreach-ignore-environments): A new function which can be
4979 partially applied and used as `tildify-foreach-region-function'.
4980 (tildify-ignored-environments-alist, tildify-pattern)
4981 (tildify-string-alist, tildify--pick-alist-entry): Mark as obsolete.
4982 (tildify--find-env): Rename from `tildify-find-env' and mark as
4983 obsolete.
4984 (tildify--deprecated-ignore-evironments): New function,
4985 immediately marked as obsolete, used to handle deprecated
4986 `tildify-ignored-environments-alist'.
4987
4988 * textmodes/tex-mode.el (tex-common-initialization):
4989 Set `tildify-space-string' and `tildify-foreach-region-function'
4990 variables in all variants of TeX mode since `tildify-string-alist'
4991 and `tildify-ignored-environments-alist' are now empty by default.
4992
4993 * nxml/nxml-mode.el (nxml-mode): Ditto in `nxml-mode'.
4994 If encoding supports it use no-break space instead of character
4995 entity; this changes previous default which used a numeric
4996 reference.
4997
4998 * textmodes/sgml-mode.el (sgml-mode): ditto in `sgml-mode'.
4999 If encoding does not support no-break space, use numeric reference;
5000 this changes previous default which used named entity (“&nbsp;”)
5001 in HTML mode.
5002
5003 2014-11-17 Ulf Jasper <ulf.jasper@web.de>
5004
5005 * calendar/icalendar.el (icalendar-export-alarms):
5006 New customizable variable. (Bug#5433)
5007 (icalendar-export-region): Export alarms as specified in
5008 `icalendar-export-alarms'.
5009 (icalendar--create-ical-alarm, icalendar--do-create-ical-alarm):
5010 New functions for exporting alarms.
5011
5012 2014-11-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5013
5014 * bindings.el (search-map): Move `eww-search-words' to `M-s M-w'.
5015
5016 2014-11-17 Paul Eggert <eggert@cs.ucla.edu>
5017
5018 Port new time stamp handling to old Emacs and to XEmacs.
5019 This is needed for Gnus, which copies time-date.el and which
5020 runs on older Emacs implementations.
5021 * calendar/time-date.el (with-decoded-time-value):
5022 Handle 'nil' and floating-point arg more compatibly with new Emacs.
5023 (encode-time-value, with-decoded-time-value):
5024 Obsolete only if new Emacs.
5025 (time-add, time-subtract, time-less-p): Define if not new Emacs.
5026
5027 Improve time stamp handling, and be more consistent about it.
5028 This implements a suggestion made in:
5029 http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
5030 Among other things, this means timer.el no longer needs to
5031 autoload the time-date module.
5032 * allout-widgets.el (allout-elapsed-time-seconds): Doc fix.
5033 * arc-mode.el (archive-ar-summarize):
5034 * calendar/time-date.el (seconds-to-time, days-to-time, time-since):
5035 * emacs-lisp/timer.el (timer-relative-time, timer-event-handler)
5036 (run-at-time, with-timeout-suspend, with-timeout-unsuspend):
5037 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
5038 * proced.el (proced-time-lessp):
5039 * timezone.el (timezone-time-from-absolute):
5040 * type-break.el (type-break-schedule, type-break-time-sum):
5041 Simplify by using new functionality.
5042 * calendar/cal-dst.el (calendar-next-time-zone-transition):
5043 Do not return time values in obsolete and undocumented (HI . LO)
5044 format; use (HI LO) instead.
5045 * calendar/time-date.el (with-decoded-time-value):
5046 Treat 'nil' as current time. This is mostly for XEmacs.
5047 (encode-time-value, with-decoded-time-value): Obsolete.
5048 (time-add, time-subtract, time-less-p): Use no-op autoloads, for
5049 XEmacs. Define only if XEmacs, as they're now C builtins in Emacs.
5050 * ldefs-boot.el: Update to match new time-date.el
5051 * proced.el: Do not require time-date.
5052
5053 2014-11-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5054
5055 * net/eww.el (eww-mode): Make the buffer read-only.
5056 (eww-form-text): Inhibit read-only-ness in text input fields
5057 (bug#16476).
5058
5059 2014-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5060
5061 * simple.el (execute-extended-command--shorter): Cut search here.
5062 (execute-extended-command): Instead of here.
5063
5064 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
5065
5066 * progmodes/python.el (python-mode): Avoid use of set-local to
5067 keep Emacs 24.x compatibility.
5068
5069 2014-11-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5070
5071 * net/shr.el (shr): Move to the new defgroup `web'.
5072
5073 * net/eww.el (eww): Ditto.
5074
5075 * simple.el (execute-extended-command): Don't show the help
5076 message if the binding isn't significantly shorter than the
5077 M-x command the user typed (bug#19013).
5078
5079 2014-11-16 Ulf Jasper <ulf.jasper@web.de>
5080
5081 * calendar/icalendar.el (icalendar--convert-tz-offset):
5082 Return complete cons when offsets of standard time and daylight saving
5083 time are equal.
5084 (icalendar-export-region): Fix unbound variable warning.
5085
5086 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
5087
5088 * progmodes/python.el (run-python): Allow CMD to be optional and
5089 default it to a safe command, even for Windows. (bug#18596)
5090
5091 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
5092
5093 * progmodes/python.el (python-shell-calculate-command):
5094 Rename from python-shell-parse-command. Cleanup.
5095 (run-python, run-python-internal): Use it.
5096 (python-shell-calculate-pythonpath): Rename from
5097 python-new-pythonpath.
5098 (python-shell-calculate-process-environment): Use it.
5099 (python-shell-calculate-exec-path): Add comment.
5100
5101 2014-11-16 Thierry Banel <tbanelwebmin@free.fr> (tiny change)
5102
5103 * calc/calc-arith.el (math-max-list, math-min-list): Fix bug
5104 for date handling.
5105
5106 2014-11-16 Andreas Schwab <schwab@linux-m68k.org>
5107
5108 * version.el (emacs-repository-get-version): Use git rev-parse
5109 instead of git log.
5110
5111 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
5112
5113 * progmodes/python.el (python-indent-calculate-levels):
5114 Fix indentation behavior multiline dedenter statement. (Bug#18432)
5115
5116 2014-11-16 Fabián Ezequiel Gallina <fgallina@gnu.org>
5117
5118 * progmodes/python.el (python-indent-region):
5119 Use python-indent-line and skip special cases. (Bug#18843)
5120
5121 2014-11-16 Peder O. Klingenberg <peder@klingenberg.no>
5122
5123 * mail/emacsbug.el (report-emacs-bug): Make a better guess at
5124 envelope-from when reporting through sendmail (bug#19054).
5125
5126 2014-11-16 Oscar Fuentes <ofv@wanadoo.es>
5127
5128 Add faces for the VC modeline state indicator.
5129 * vc/vc-hooks.el:
5130 (vc-state-faces, vc-state-base-face)
5131 (vc-up-to-date-state, vc-needs-update-state)
5132 (vc-locked-state, vc-locally-added-state)
5133 (vc-conflict-state, vc-removed-state)
5134 (vc-missing-state, vc-edited-state):
5135 New faces.
5136 (vc-default-mode-line-string): Use them
5137
5138 2014-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5139
5140 * emacs-lisp/backquote.el (backquote-process): Optimize away ",'".
5141
5142 2014-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
5143
5144 * net/eww.el (eww-search-words): Mention `eww-search-prefix'.
5145
5146 2014-11-15 Fabián Ezequiel Gallina <fgallina@gnu.org>
5147
5148 * progmodes/python.el (python-eldoc-setup-code): Enhance string
5149 type checks, simplify printing. (Bug#18962)
5150
5151 2014-11-14 Ivan Andrus <darthandrus@gmail.com>
5152
5153 * progmodes/python.el (python-shell-font-lock-kill-buffer):
5154 (python-shell-font-lock-with-font-lock-buffer)
5155 (python-shell-get-buffer, python-ffap-module-path):
5156 Use `derived-mode-p' instead of equality test on `major-mode'.
5157
5158 2014-11-14 Fabián Ezequiel Gallina <fgallina@gnu.org>
5159
5160 * progmodes/python.el (python-shell-virtualenv-root): Rename from
5161 python-shell-virtualenv-path.
5162 (python-shell-internal-get-process-name)
5163 (python-shell-calculate-process-environment)
5164 (python-shell-calculate-exec-path): Use it.
5165
5166 2014-11-14 Eli Zaretskii <eliz@gnu.org>
5167
5168 * bindings.el (search-map): Fix last change: don't use 'kbd' in
5169 bindings.el, since it is not yet loaded when bindings.el is
5170 preloaded.
5171
5172 2014-11-14 Fabián Ezequiel Gallina <fgallina@gnu.org>
5173
5174 * progmodes/python.el (python-shell-completion-get-completions):
5175 Fix previous merge.
5176
5177 2014-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
5178
5179 * net/eww.el (eww-render): Don't set the title to the URL.
5180
5181 2014-11-13 Ulrich Müller <ulm@gentoo.org>
5182
5183 * version.el (emacs-repository-get-version): Call `git log'
5184 command with proper format argument (bug#19049).
5185
5186 2014-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
5187
5188 * bindings.el (search-map): Bind M-s M-s to `eww-search-words'.
5189
5190 2014-11-14 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5191
5192 * net/eww.el (eww-search-words): New command (bug#16258).
5193
5194 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
5195
5196 * net/shr.el (shr-inhibit-images): Add a doc string.
5197
5198 * net/eww.el (eww-after-render-hook): New variable.
5199 (eww-render): Use it.
5200
5201 * net/shr.el (shr-descend): Don't descend further than
5202 `max-specpdl-size' allows (bug#16587).
5203 (shr-depth): New variable.
5204 (shr-warning): New variable.
5205
5206 2014-11-13 Ivan Shmakov <ivan@siamics.net>
5207
5208 * net/shr.el (shr-parse-base): Handle <base href=""> correctly.
5209 (shr-expand-url): Expand absolute URLs correctly (bug#17958).
5210
5211 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
5212
5213 * net/eww.el (eww): Add comment to clarify.
5214
5215 * net/shr.el (shr-parse-image-data): Remove blocked bits from
5216 external SVG images.
5217 (shr-tag-object): Display images in <object> forms (bug#16244).
5218 (shr-tag-table): Also insert <objects> after the tables.
5219
5220 2014-11-13 Michael Albinus <michael.albinus@gmx.de>
5221
5222 * vc/vc-hg.el (vc-hg-state): Disable pager. (Bug#18940)
5223
5224 2014-11-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
5225
5226 * net/eww.el (eww-form-file): Fix version number.
5227
5228 2014-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5229
5230 * net/eww.el (eww-form-file): :type isn't a valid `defface' keyword.
5231
5232 2014-11-10 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5233
5234 * net/eww.el(eww-form-file(defface)): New defface of file upload form.
5235 (eww-submit-file): New key map of file upload.
5236 (eww-form-file): New file upload button and file name context.
5237 (eww-select-file): Select file and display selected file name.
5238 (eww-tag-input): Handle input tag of file type.
5239 (eww-update-field): Add point offset.
5240 (eww-submit): Add submit with multipart/form-data.
5241
5242 2014-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5243
5244 * net/eww.el (eww-render, eww-display-html, eww-setup-buffer):
5245 Allow taking a buffer to render data in. This allows using several
5246 eww buffers (bug#16211).
5247
5248 2014-11-10 Charles Rendleman <carendle@gmail.com> (tiny change)
5249
5250 * net/eww.el (eww-download-callback): Save only the file contents,
5251 not the headers.
5252
5253 2014-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5254
5255 * net/eww.el (eww-data): New plist to store all the data relevant
5256 to a single page, used throughout the file instead of the
5257 variables `eww-current-url', `eww-current-dom',
5258 `eww-current-source', and `eww-current-title'.
5259 (eww-readable): Copy over pertinent data from the parent page.
5260 (eww-save-history): Don't let the history grow infinitely.
5261
5262 * net/eww.el: Remove `eww-next-url', `eww-previous-url',
5263 `eww-up-url', `eww-home-url', `eww-start-url' and
5264 `eww-contents-url' and put the data into the `eww-data' plist.
5265 This allow restoring these values after going back in the history.
5266
5267 2014-11-10 Sylvain Chouleur <sylvain.chouleur@gmail.com> (tiny change)
5268
5269 Allow VTIMEZONE where daylight and standard time zones are equal.
5270 See: http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00494.html
5271 * calendar/icalendar.el (icalendar--convert-tz-offset):
5272 Support timezone without daylight saving time.
5273
5274 2014-11-10 Glenn Morris <rgm@gnu.org>
5275
5276 * startup.el (command-line): Handle nil elements in load-path.
5277
5278 2014-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
5279
5280 * help.el (view-lossage): Include the actual commands run.
5281
5282 2014-11-10 Dmitry Gutov <dgutov@yandex.ru>
5283
5284 * vc/vc-dir.el (vc-dir-hide-state): Also hide `ignored' items when
5285 no state is specified. (Bug#18964)
5286
5287 2014-11-09 Eric Ludlam <zappo@gnu.org>
5288
5289 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5290 Set eieio-cog (current group) to g, which is an improved form of input
5291 group.
5292
5293 2014-11-09 Juri Linkov <juri@jurta.org>
5294
5295 * isearch.el (isearch-message-prefix): Show "Multi-file" and
5296 "Multi-buffer" instead of "Multi". (Bug#13592)
5297
5298 * misearch.el (multi-isearch-file-list):
5299 Autoload multi-isearch-buffer-list and multi-isearch-file-list.
5300 (multi-isearch-end): Reset multi-isearch-buffer-list and
5301 multi-isearch-file-list to nil.
5302
5303 2014-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5304
5305 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
5306 Don't call byte-compile-preprocess since the result will go through
5307 cconv.
5308 (byte-compile-output-docform): Handle uninterned `name' correctly.
5309 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Use interned name
5310 to circumvent byte-compiler bug.
5311
5312 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix typo.
5313 (macroexp--compiler-macro): Remove left-over debug code.
5314
5315 * emacs-lisp/cl-extra.el (cl-get): Silence compiler warning.
5316
5317 2014-11-08 Juri Linkov <juri@jurta.org>
5318
5319 * simple.el (shell-command): Use buffer-name when output-buffer is
5320 a buffer. (Bug#18096)
5321
5322 2014-11-08 Juri Linkov <juri@jurta.org>
5323
5324 * minibuffer.el (minibuffer-completion-help): Compare this-command
5325 with completion-at-point. (Bug#17809)
5326
5327 2014-11-08 Glenn Morris <rgm@gnu.org>
5328
5329 * emacs-lisp/bytecomp.el (byte-compile-report-error):
5330 Allow the argument to be a string. Due to the vague doc,
5331 it was already being used this way.
5332
5333 2014-11-08 Michael Albinus <michael.albinus@gmx.de>
5334
5335 * net/tramp.el (tramp-check-cached-permissions): Include hop in
5336 the constructed Tramp file name. (Bug#18943)
5337
5338 2014-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5339
5340 * emulation/cua-base.el (cua--select-keymaps): Use region-active-p
5341 (bug#18952).
5342 (cua-set-mark, cua--post-command-handler-1):
5343 * emulation/cua-gmrk.el (cua-cancel-global-mark): Same.
5344
5345 2014-11-08 Michael Albinus <michael.albinus@gmx.de>
5346
5347 * files.el (file-name-non-special): Wrap the call of
5348 `insert-file-contents' by `unwind-protect', in order to set the
5349 buffer's file name anyway. (Bug#18891)
5350
5351 2014-11-08 Alan Mackenzie <acm@muc.de>
5352
5353 Fix wrong bound to c-font-lock-declarators.
5354 * progmodes/cc-fonts.el (c-font-lock-declarations):
5355 Pass "(point-max)" as bound to c-font-lock-declarators, not "limit", as
5356 the buffer is sometimes narrowed to less than "limit" (e.g., in
5357 the presence of macros). (Bug#18948)
5358
5359 2014-11-08 Michael Albinus <michael.albinus@gmx.de>
5360
5361 * net/tramp.el (tramp-error-with-buffer): Show connection buffer
5362 only when message appeared in minibuffer. (Bug#18891)
5363
5364 * net/tramp-adb.el (tramp-adb-handle-file-attributes):
5365 * net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes):
5366 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Return nil in
5367 case of errors.
5368
5369 2014-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5370
5371 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
5372 Don't compile before eval in `eval-and-compile'.
5373 (byte-compile-arglist-warn): Add check for defining macros after their
5374 first use. Check call use even if the function is fboundp.
5375
5376 2014-11-08 Richard Stallman <rms@gnu.org>
5377
5378 * mail/rmail.el (rmail-epa-decrypt): Detect armor with line prefixes.
5379 Check more carefully for mime-part specified character set.
5380 Check for mime-part Content Transfer Encoding.
5381 Notify if no armor found.
5382
5383 2014-11-08 Martin Rudalics <rudalics@gmx.at>
5384
5385 * faces.el (face-set-after-frame-default): Enable running
5386 `window-configuration-change-hook'.
5387
5388 2014-11-07 Juri Linkov <juri@jurta.org>
5389
5390 * replace.el: History for query replace pairs.
5391 (query-replace-defaults): Promote to a list of cons cell. Doc fix.
5392 (query-replace-from-to-separator): New variable.
5393 (query-replace-read-from): Let-bind query-replace-from-to-history
5394 to a list of FROM-TO strings created from query-replace-defaults
5395 and separated by query-replace-from-to-separator. Use it as
5396 the history while reading from the minibuffer. Split the returned
5397 string by the separator to get FROM and TO parts, and add them
5398 to the history variables.
5399 (query-replace-read-to): Add FROM-TO pairs to query-replace-defaults.
5400 (query-replace-regexp-eval): Let-bind query-replace-defaults to nil.
5401 http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00253.html
5402
5403 * isearch.el (isearch-text-char-description): Keep characters
5404 intact and put formatted strings with the `display' property.
5405
5406 2014-11-07 Martin Rudalics <rudalics@gmx.at>
5407
5408 * cus-start.el (frame-resize-pixelwise): Fix group.
5409 (frame-inhibit-implied-resize): Add entry.
5410
5411 2014-11-07 Daiki Ueno <ueno@gnu.org>
5412
5413 * epa.el (epa-pinentry-mode): New user option.
5414 (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
5415 (epa-sign-region, epa-encrypt-region): Respect epa-pinentry-mode.
5416 * epa-file.el (epa-file-insert-file-contents)
5417 (epa-file-write-region): Respect epa-pinentry-mode.
5418
5419 2014-11-07 Daiki Ueno <ueno@gnu.org>
5420
5421 * epg.el (epg--list-keys-1): Ignore fields after the 15th field
5422 (bug#18979). Reported by Hideki Saito.
5423
5424 2014-11-06 Daiki Ueno <ueno@gnu.org>
5425
5426 * emacs-lisp/package.el (package--display-verify-error): New function.
5427 (package--check-signature): Use it to display output sent to stderr.
5428
5429 2014-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
5430
5431 * subr.el (pop): Don't call the getter twice (bug#18968).
5432
5433 * emacs-lisp/macroexp.el (macroexp--expand-all): Optimize away trivial
5434 uses of `funcall'.
5435
5436 2014-11-06 Daiki Ueno <ueno@gnu.org>
5437
5438 * epa.el (epa-error-buffer): New variable.
5439 (epa-display-error): New function.
5440 (epa-decrypt-file, epa-verify-file, epa-verify-region)
5441 (epa-delete-keys, epa-import-keys): Display output sent to stderr.
5442 (epa-sign-file, epa-sign-region, epa-encrypt-region)
5443 (epa-export-keys, epa-insert-keys): Display output sent to stderr.
5444 Use setf instead of epg-context-set-*.
5445 * epa-file.el (epa-file-insert-file-contents):
5446 Use epa-display-error instead of epa-display-info. Mimic the behavior
5447 of jka-compr when decryption program is not found.
5448 (epa-file-write-region): Use epa-display-error instead of
5449 epa-display-info.
5450
5451 2014-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
5452
5453 * vc/vc.el (vc-region-history): New command.
5454 (vc-print-log-internal): Use cl-some.
5455
5456 * vc/vc-git.el (vc-git-region-history): New function.
5457 (vc-git-region-history-mode-map)
5458 (vc-git--log-view-long-font-lock-keywords)
5459 (vc-git-region-history-font-lock-keywords): New vars.
5460 (vc-git-region-history-font-lock): New function.
5461 (vc-git-region-history-mode): New major mode.
5462
5463 2014-11-05 Tassilo Horn <tsdh@gnu.org>
5464
5465 * net/eww.el (subr-x): Require subr-x at compile-time because eww
5466 uses string-trim.
5467
5468 2014-11-05 Daiki Ueno <ueno@gnu.org>
5469
5470 * epg.el (epg-context): Add new slot ERROR-OUTPUT.
5471 (epg-error-output): New buffer-local variable.
5472 (epg--start): Initialize epg-error-output.
5473 (epg--process-filter): Record output lines sent to stderr, in
5474 epg-error-output.
5475 (epg-wait-for-completion): Copy epg-error-output to ERROR-OUTPUT
5476 slot of context.
5477 * epa-file.el (epa-file-insert-file-contents): On error, display
5478 output sent to stderr.
5479 (epa-file-write-region): Likewise.
5480
5481 2014-11-05 Eli Zaretskii <eliz@gnu.org>
5482
5483 * jit-lock.el (jit-lock-stealth-fontify): Be tolerant to nil being
5484 returned by load-average.
5485
5486 2014-11-05 Michael Albinus <michael.albinus@gmx.de>
5487
5488 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Don't use
5489 a local copy; setting `inhibit-file-name-handlers' proper might be
5490 more performant. (Bug#18751)
5491
5492 2014-11-05 Glenn Morris <rgm@gnu.org>
5493
5494 * mail/emacsbug.el (report-emacs-bug): No longer include
5495 recent-keys in the report. (Bug#18900)
5496
5497 2014-11-04 Paul Eggert <eggert@cs.ucla.edu>
5498
5499 * mouse.el (mouse-drag-line): Fix misspelling of "right-fringe".
5500
5501 2014-11-04 Teodor Zlatanov <tzz@lifelogs.com>
5502
5503 * net/eww.el (eww): Trim URL with `string-trim'.
5504 Suggested by Vibhav Pant <vibhavp@gmail.com>.
5505
5506 2014-11-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5507
5508 * net/eww.el (eww-score-readability): Don't count comments positively.
5509
5510 * net/shr.el (shr-retransform-dom): Typo fix.
5511
5512 * net/eww.el (eww-score-readability): Parse SVC images correctly.
5513 (eww-display-html): Don't leave point inside forms.
5514
5515 * net/shr.el: Ditto.
5516
5517 2014-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
5518
5519 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Assume that
5520 edebug-prin1-to-string already handles circularity.
5521
5522 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix compiler-macro
5523 autoloading when specified as a lambda.
5524
5525 * simple.el (execute-extended-command--last-typed): New var.
5526 (read-extended-command): Set it.
5527 Don't complete obsolete commands.
5528 (execute-extended-command--shorter-1)
5529 (execute-extended-command--shorter): New functions.
5530 (execute-extended-command): Use them to suggest shorter names.
5531 (indicate-copied-region, deactivate-mark): Use region-active-p.
5532
5533 2014-11-03 Michael Albinus <michael.albinus@gmx.de>
5534
5535 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Use a
5536 local copy of FILENAME, when it is remote. (Bug#18751)
5537
5538 * net/tramp-adb.el (tramp-adb-handle-process-file): Do not raise
5539 an error when the command fails; the return code must indicate.
5540 (tramp-adb-send-command-and-check): Fix docstring.
5541
5542 2014-11-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5543
5544 * net/shr.el (shr-retransform-dom): Don't ignore elements that
5545 have no children like <br />.
5546
5547 * net/eww.el (eww-display-html): Clear `url-queue'.
5548 (eww-display-pdf): New function.
5549 (eww-render): Display PDFs with `doc-view'.
5550 (url-queue): Require `url-queue' to avoid compilation warning.
5551 (eww-colorize-region): Remove duplicate function.
5552 (eww-tag-body): Use `shr-colorize-region'.
5553
5554 2014-11-03 Yoni Rabkin <yrk@gnu.org>
5555
5556 * net/eww.el (eww-list-bookmarks): Autoload.
5557
5558 2014-11-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5559
5560 * net/shr.el (shr-retransform-dom): Allow several text sub-nodes.
5561
5562 * net/eww.el (eww-display-html): The charset is called `utf-8',
5563 not `utf8'.
5564 (eww-readable): Decode the saved text correctly.
5565 (eww-readable): Save the history before displaying so that we can
5566 go back to the non-readable version.
5567 (eww-display-html): Don't try to decode the text if we've been
5568 passed in a pre-parsed DOM.
5569 (eww-tag-title): Remove newlines and extra whitespace from the
5570 displayed title.
5571
5572 2014-11-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
5573
5574 * net/eww.el (eww-readable): New command and keystroke.
5575
5576 * net/shr.el (shr-retransform-dom): New function.
5577
5578 * net/eww.el (eww-display-html): Set `eww-current-source' in the
5579 correct buffer.
5580 (eww-view-source): Use it.
5581
5582 2014-11-02 Ivan Shmakov <ivan@siamics.net>
5583
5584 * net/eww.el (eww): Recognize colon-delimited IPv6 addresses.
5585 (Bug#18603).
5586
5587 2014-11-02 Brian McKenna <brian@brianmckenna.org> (tiny change)
5588
5589 * net/eww.el (eww-submit): Encode empty form values as "". (Bug#17785).
5590
5591 2014-11-02 Ivan Shmakov <ivan@siamics.net>
5592
5593 * net/eww.el (eww): Allow "file:/file/name" URLs. (Bug#18825).
5594
5595 2014-11-02 Ivan Shmakov <ivan@siamics.net>
5596
5597 * net/eww.el (eww-mode-map): Remove mentions of `eww-quit'.
5598 (Bug#18834).
5599
5600 2014-11-02 Eric Abrahamsen <eric@ericabrahamsen.net>
5601
5602 * emacs-lisp/eieio.el (eieio-edebug-prin1-to-string): Adjust for
5603 use as advice.
5604 (edebug-setup-hook): Advise `edebug-prin1-to-string'. (Bug#18897)
5605
5606 2014-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
5607
5608 * emacs-lisp/pp.el (pp-macroexpand-expression): Use macroexpand-1
5609 (bug#18821).
5610 * progmodes/elisp-mode.el (emacs-lisp-macroexpand): Idem.
5611
5612 2014-11-01 Michael R. Mauger <michael@mauger.com>
5613
5614 * sql.el (sql-mode-oracle-font-lock-keywords): Correct regexp
5615 syntax, add new keywords, and parse longer keywords first.
5616 (sql-redirect-one): Protect against empty command.
5617 (sql-mode, sql-interactive-mode): Set `custom-mode-group' property
5618 to SQL. (Bug#14759)
5619
5620 2014-11-01 Michael R. Mauger <michael@mauger.com>
5621
5622 * sql.el (sql-interactive-mode, sql-stop): Correct fix for
5623 Bug#16814 with let-bind of comint-input-ring variables around read
5624 and save functions.
5625
5626 2014-11-01 Michael Albinus <michael.albinus@gmx.de>
5627
5628 * net/tramp-cache.el (tramp-get-file-property)
5629 (tramp-set-file-property): Check that `tramp-cache-get-count-*'
5630 and `tramp-cache-set-count-*' are bound. Otherwise, there might
5631 be compiler warnings.
5632
5633 * net/tramp-sh.el (tramp-get-remote-uid, tramp-get-remote-gid):
5634 Return -1 respective "UNKNOWN", if uid or gid cannot be determined.
5635
5636 2014-11-01 Eli Zaretskii <eliz@gnu.org>
5637
5638 * progmodes/compile.el (compilation-mode): Turn off deferred
5639 fontifications locally. (Bug#18856)
5640
5641 2014-11-01 Wolfgang Jenkner <wjenkner@inode.at>
5642
5643 * net/tramp-sh.el (tramp-send-command): Fix the case where the
5644 remote-echo connection property is non-nil (bug#18858).
5645
5646 2014-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
5647
5648 * simple.el (newline): Add assertions to try and help catch bug#18913.
5649
5650 * emulation/cua-base.el (cua-delete-region): Use delete-active-region
5651 (bug#18886).
5652 (cua--last-deleted-region-pos, cua--last-deleted-region-text): Remove.
5653
5654 2014-11-01 Kim F. Storm <storm@cua.dk>
5655
5656 Restore cua-delete-copy-to-register-0 and M-v command (bug#18886).
5657 * delsel.el (delete-selection-save-to-register)
5658 (delsel--replace-text-or-position): New vars.
5659 (delete-active-region): Use them.
5660 (delete-selection-repeat-replace-region): New command, moved from
5661 cua-base.el.
5662 * emulation/cua-base.el (cua--repeat-replace-text): Remove var.
5663 (cua-repeat-replace-region): Move command to delsel.el.
5664 (cua--init-keymaps): Update binding accordingly.
5665 (cua-mode): Set delete-selection-save-to-register.
5666
5667 2014-11-01 Alan Mackenzie <acm@muc.de>
5668
5669 Make blink-parens work with a closing template delimiter.
5670 * progmodes/cc-cmds.el (c-electric-lt-gt): Cause a redisplay
5671 before calling blink-paren-function, so as to apply syntax-table
5672 properties to the ">".
5673
5674 2014-11-01 Jan Djärv <jan.h.d@swipnet.se>
5675
5676 * select.el (gui-get-selection): Comment: data-type ignored on NS.
5677
5678 2014-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
5679
5680 * emacs-lisp/macroexp.el (macroexpand-1): New function (bug#18821).
5681 (macroexp--expand-all): Unrelated tweaks.
5682
5683 * emacs-lisp/gv.el (gv-get): Use macroexpand-1.
5684
5685 2014-10-30 Glenn Morris <rgm@gnu.org>
5686
5687 * startup.el (command-line): Remove pointless attempt to avoid
5688 statting the file-system (which expand-file-name doesn't do).
5689
5690 2014-10-30 Daniel Colascione <dancol@dancol.org>
5691
5692 Add "enum class" support to C++ mode.
5693 * progmodes/cc-langs.el (c-after-brace-list-decl-kwds)
5694 (c-after-brace-list-key): New language consts/variables.
5695 * progmodes/cc-engine.el (c-looking-at-decl-block):
5696 Exclude spurious match of "enum struct" from decl-block recognition.
5697 (c-backward-colon-prefixed-type): New function.
5698 (c-backward-over-enum-header): Call above function to extend
5699 recognition of enum structure.
5700
5701 2014-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
5702
5703 * progmodes/cc-defs.el (c--macroexpand-all): New function (bug#18845).
5704 (c-lang-defconst):
5705 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Use it.
5706
5707 2014-10-30 Eli Zaretskii <eliz@gnu.org>
5708
5709 * progmodes/compile.el (compilation-start):
5710 If compilation-scroll-output is non-nil, don't force window-start of
5711 the compilation buffer to be at beginning of buffer. (Bug#18874)
5712
5713 * startup.el (fancy-about-text): Read the entire tutorial, not
5714 just its first 256 bytes. (Bug#18760)
5715
5716 2014-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
5717
5718 * emacs-lisp/bytecomp.el: Require cl-extra (bug#18804).
5719 * emacs-lisp/cl-extra.el: Add missing provide.
5720
5721 * emacs-lisp/bytecomp.el (byte-compile-and-folded): Optimize case where
5722 all args are copyable (bug#18767).
5723 (=, <, >, <=, >=): Re-enable the optimization.
5724
5725 2014-10-29 Glenn Morris <rgm@gnu.org>
5726
5727 * net/rcirc.el (rcirc-fill-column): Unbump :version. Mark :risky.
5728
5729 * version.el (emacs-bzr-version, emacs-bzr-get-version):
5730 Revert 2014-10-26 change.
5731
5732 2014-10-29 Paul Eggert <eggert@cs.ucla.edu>
5733
5734 Simplify use of current-time and friends.
5735 * allout-widgets.el (allout-widgets-hook-error-handler):
5736 * calendar/appt.el (appt-display-message):
5737 * calendar/icalendar.el (icalendar--convert-float-to-ical):
5738 * calendar/timeclock.el (timeclock-in, timeclock-when-to-leave)
5739 (timeclock-last-period, timeclock-day-base):
5740 * eshell/em-ls.el (eshell-ls-file):
5741 * eshell/esh-util.el (eshell-parse-ange-ls):
5742 * generic-x.el (named-database-print-serial):
5743 * net/newst-backend.el (newsticker--get-news-by-url-callback)
5744 (newsticker-get-news, newsticker--sentinel-work)
5745 (newsticker--image-get, newsticker--image-sentinel):
5746 * net/tramp-sh.el (tramp-get-remote-touch):
5747 * progmodes/opascal.el (opascal-debug-log):
5748 * textmodes/remember.el (remember-mail-date)
5749 (remember-store-in-files):
5750 * vc/vc-annotate.el (vc-annotate-display-autoscale)
5751 (vc-default-annotate-current-time):
5752 * vc/vc-bzr.el (vc-bzr-shelve-snapshot):
5753 * vc/vc-cvs.el (vc-cvs-annotate-current-time):
5754 * vc/vc-rcs.el (vc-rcs-annotate-current-time):
5755 Omit unnecessary call to current-time.
5756 * calendar/time-date.el (time-to-seconds) [!float-time]:
5757 * vc/vc-annotate.el (vc-annotate-convert-time):
5758 Use current time if arg is nil, to be compatible with float-time.
5759 (time-date--day-in-year): New function, with most of the guts of
5760 the old time-to-day-in-year.
5761 (time-to-day-in-year): Use it.
5762 (time-to-days): Use it, to avoid decoding the same time stamp twice.
5763 * calendar/timeclock.el (timeclock-time-to-date):
5764 Arg is now optional, like current-time-string.
5765 (timeclock-update-mode-line):
5766 Don't call current-time twice to get the current time stamp,
5767 as this can lead to inconsistent results.
5768 * completion.el (cmpl-hours-since-origin):
5769 * ido.el (ido-time-stamp):
5770 * vc/vc-annotate.el (vc-annotate-convert-time):
5771 Simplify by using float-time.
5772 * completion.el (save-completions-to-file):
5773 Rename local var to avoid confusion.
5774 * net/rcirc.el (rcirc-float-time): Simplify to an alias because
5775 time-to-seconds now behaves like float-time with respect to nil arg.
5776 * subr.el (progress-reporter-do-update):
5777 Don't call float-time unless needed.
5778
5779 2014-10-29 Leo Liu <sdl.web@gmail.com>
5780
5781 * net/rcirc.el (rcirc-fill-column): Use function.
5782 (rcirc-markup-fill): Remove adjustment.
5783
5784 2014-10-28 Christopher Schmidt <ch@ristopher.com>
5785
5786 * calc/calc.el (quick-calc):
5787 * calc/calc-aent.el (calc-do-quick-calc): New argument INSERT.
5788
5789 2014-10-28 Sam Steingold <sds@gnu.org>
5790
5791 * net/rcirc.el (rcirc-fill-column): Allow any symbolic value for
5792 the sake of `window-body-width' (in addition to `frame-width').
5793
5794 2014-10-26 Eric S. Raymond <esr@thyrsus.com>
5795
5796 * version.el: Fix some fallback values to conform to the actual
5797 release number.
5798
5799 2014-10-25 Eric S. Raymond <esr@thyrsus.com>
5800
5801 * Makefile.in: Change some production names so they're neutral
5802 about the repository type.
5803
5804 2014-10-25 Michael Albinus <michael.albinus@gmx.de>
5805
5806 * net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
5807 (tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
5808 during initialization. (Bug#18774)
5809
5810 2014-10-25 Vincent Belaïche <vincentb1@users.sourceforge.net>
5811
5812 * ses.el (macroexp): Add require for this package, so that
5813 function `ses--cell' gets macroexp-quote --- this change was
5814 supposed to be in my previous commit, but left out by mistake.
5815 (ses--cell): Do not make formula a macroexp-quote of value when
5816 value, not formula, is *skip*.
5817
5818 2014-10-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
5819
5820 * ses.el (macroexp): Add require for this package, so that function
5821 `ses--cell gets macroexp-quote.
5822 (ses--cell): Makes formula a macroexp-quote of value when formula
5823 is nil. The rationale of this changr is to allow in the future
5824 shorter SES files, e.g. we could have only `(ses-cell A1 1.0)'
5825 instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case
5826 reference list REFLIST would be re-computed after load --- thus
5827 trading off load time against file size.
5828
5829 * emacs-lisp/package.el (package--alist-to-plist-args):
5830 Use macroexp-quote instead of a lambda expression which has the same
5831 content as macroexp-quote.
5832 (macroexp): Add require for this package, so that function
5833 `package--alist-to-plist-args' gets macroexp-quote.
5834
5835 * emacs-lisp/macroexp.el (macroexp-quote): New defun.
5836
5837 2014-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5838
5839 * term/ns-win.el (ns-store-cut-buffer-internal)
5840 (ns-copy-including-secondary): Use gui-set-selection (bug#18816).
5841
5842 2014-10-24 Martin Rudalics <rudalics@gmx.at>
5843
5844 * mouse.el (mouse-drag-line): Don't use mouse-pixel-position.
5845 Calculate increment from last position instead of window edge.
5846 Add right- and bottom-divider bindings to transient map.
5847
5848 2014-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5849
5850 * emacs-lisp/cl-macs.el (cl-defstruct): Define an internal predicate
5851 even if :predicate was nil, for the benefit of typep.
5852 Record the name of the predicate for typep's use.
5853 (cl--make-type-test): Use pcase. Obey new
5854 cl-deftype-satisfies property.
5855
5856 * epg.el: Use cl-defstruct.
5857 (epg-make-data-from-file, epg-make-data-from-string, epg-data-file)
5858 (epg-data-string): Define via cl-defstruct.
5859 (epg--gv-nreverse): New macro.
5860 (epg-context--make): New constructor (provided vi cl-defstruct).
5861 (epg-make-context): Rewrite using it.
5862 (epg-context-protocol, epg-context-program)
5863 (epg-context-home-directory, epg-context-armor, epg-context-textmode)
5864 (epg-context-include-certs, epg-context-cipher-algorithm)
5865 (epg-context-digest-algorithm, epg-context-compress-algorithm)
5866 (epg-context-passphrase-callback, epg-context-progress-callback)
5867 (epg-context-signers, epg-context-sig-notations, epg-context-process)
5868 (epg-context-output-file, epg-context-result, epg-context-operation)
5869 (epg-context-pinentry-mode): Define using cl-defstruct.
5870 (epg-context-set-protocol, epg-context-set-program)
5871 (epg-context-set-include-certs, epg-context-set-cipher-algorithm)
5872 (epg-context-set-digest-algorithm)
5873 (epg-context-set-sig-notations, epg-context-set-process)
5874 (epg-context-set-output-file, epg-context-set-result)
5875 (epg-context-set-operation, epg-context-set-pinentry-mode)
5876 (epg-context-set-compress-algorithm): Remove. Use setf instead.
5877 (epg-context-set-armor, epg-context-set-textmode)
5878 (epg-context-set-signers): Redefine using setf
5879 and declare as obsolete.
5880 (epg-context-set-passphrase-callback)
5881 (epg-context-set-progress-callback): Use setf.
5882 (epg-signature-notations): Rename from epg-sig-notations.
5883 (epg-make-signature, epg-signature-status, epg-signature-key-id)
5884 (epg-signature-validity, epg-signature-fingerprint)
5885 (epg-signature-creation-time, epg-signature-expiration-time)
5886 (epg-signature-pubkey-algorithm, epg-signature-digest-algorithm)
5887 (epg-signature-class, epg-signature-version): Define vi cl-defstruct.
5888 (epg-signature-set-status, epg-signature-set-key-id)
5889 (epg-signature-set-validity, epg-signature-set-fingerprint)
5890 (epg-signature-set-creation-time, epg-signature-set-expiration-time)
5891 (epg-signature-set-pubkey-algorithm)
5892 (epg-signature-set-digest-algorithm, epg-signature-set-class)
5893 (epg-signature-set-version, epg-signature-set-notations): Remove.
5894 Use setf instead.
5895 (epg-make-new-signature, epg-new-signature-type)
5896 (epg-new-signature-pubkey-algorithm)
5897 (epg-new-signature-digest-algorithm, epg-new-signature-class)
5898 (epg-new-signature-creation-time, epg-new-signature-fingerprint):
5899 Define using cl-defstruct.
5900 (epg-make-key, epg-key-owner-trust, epg-key-sub-key-list)
5901 (epg-key-user-id-list): Define using cl-defstruct.
5902 (epg-key-set-sub-key-list, epg-key-set-user-id-list): Remove.
5903 Use setf instead.
5904 (epg-make-sub-key, epg-sub-key-validity, epg-sub-key-capability)
5905 (epg-sub-key-secret-p, epg-sub-key-algorithm, epg-sub-key-length)
5906 (epg-sub-key-id, epg-sub-key-creation-time)
5907 (epg-sub-key-expiration-time, epg-sub-key-fingerprint): Define using
5908 cl-defstruct.
5909 (epg-sub-key-set-fingerprint): Remove. Use setf instead.
5910 (epg-make-user-id, epg-user-id-validity, epg-user-id-string)
5911 (epg-user-id-signature-list): Define using cl-defstruct.
5912 (epg-user-id-set-signature-list): Remove. Use setf instead.
5913 (epg-make-key-signature, epg-key-signature-validity)
5914 (epg-key-signature-pubkey-algorithm, epg-key-signature-key-id)
5915 (epg-key-signature-creation-time, epg-key-signature-expiration-time)
5916 (epg-key-signature-user-id, epg-key-signature-class)
5917 (epg-key-signature-exportable-p): Define using cl-defstruct.
5918 (epg-make-sig-notation, epg-sig-notation-name)
5919 (epg-sig-notation-value, epg-sig-notation-human-readable)
5920 (epg-sig-notation-critical): Define using cl-defstruct.
5921 (epg-sig-notation-set-value): Remove. Use setf instead.
5922 (epg-make-import-status, epg-import-status-fingerprint)
5923 (epg-import-status-reason, epg-import-status-new)
5924 (epg-import-status-user-id, epg-import-status-signature)
5925 (epg-import-status-sub-key, epg-import-status-secret): Define using
5926 cl-defstruct.
5927 (epg-make-import-result, epg-import-result-considered)
5928 (epg-import-result-no-user-id, epg-import-result-imported)
5929 (epg-import-result-imported-rsa, epg-import-result-unchanged)
5930 (epg-import-result-new-user-ids, epg-import-result-new-sub-keys)
5931 (epg-import-result-new-signatures, epg-import-result-new-revocations)
5932 (epg-import-result-secret-read, epg-import-result-secret-imported)
5933 (epg-import-result-secret-unchanged, epg-import-result-not-imported)
5934 (epg-import-result-imports): Define using cl-defstruct.
5935
5936 * emacs-lisp/package.el: Require EPG during macroexpansion.
5937 (package--check-signature, package-import-keyring): Use setf instead of
5938 epg-context-set-home-directory.
5939
5940 2014-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5941
5942 * emacs-lisp/bytecomp.el (byte-compile--use-old-handlers): Change default.
5943
5944 2014-10-23 Leo Liu <sdl.web@gmail.com>
5945
5946 * progmodes/cfengine.el (cfengine3-defun-full-re): New var.
5947 (cfengine3-create-imenu-index): Use it and use ` ' for separation.
5948 (cfengine3-current-defun): New function.
5949 (cfengine3-mode): Set add-log-current-defun-function.
5950
5951 2014-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5952
5953 * select.el: Use lexical-binding.
5954 (gui-set-selection): Provide an implementation for non-GUI frames
5955 (bug#18791).
5956 * term/x-win.el: Use lexical-binding.
5957 (x-clipboard-yank): Fix up missed renamings.
5958 * term/w32-win.el (libgif-version, libjpeg-version): Silence compiler.
5959 (w32--set-selection): Fix up var names.
5960 * term/pc-win.el: Use lexical-binding.
5961 (w16-selection-exists-p): Silence compiler warning.
5962 (w16-selection-owner-p): Fix up missed renamings.
5963
5964 * emacs-lisp/bytecomp.el (byte-compile-form): Remove left-over debug.
5965
5966 * frame.el (frame-notice-user-settings): Fix excessive quoting.
5967
5968 2014-10-22 Tassilo Horn <tsdh@gnu.org>
5969
5970 * doc-view.el (doc-view-open-text): View the document's plain text
5971 in the current buffer instead of a new one.
5972 (doc-view-toggle-display): Handle the case where the current
5973 buffer contains the plain text contents of the document.
5974 (doc-view-initiate-display): Don't switch to fallback mode if the
5975 user wants to view the doc's plain text.
5976 (doc-view-set-doc-type): Use assoc-string instead of
5977 assoc-ignore-case.
5978
5979 2014-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5980
5981 * subr.el (read-key): Fix clicks on the mode-line.
5982 (set-transient-map): Return exit function.
5983
5984 * mouse.el (mouse-drag-line): Use set-transient-map (bug#18015).
5985 (mouse--down-1-maybe-follows-link): Remove unused var `this-event'.
5986 (mouse-yank-secondary): Use gui-get-selection.
5987 (mouse--down-1-maybe-follows-link): Use read-key.
5988
5989 * xt-mouse.el: Add `event-kind' property on the fly from
5990 xterm-mouse-translate-1 rather than statically at the outset.
5991
5992 2014-10-21 Daniel Colascione <dancol@dancol.org>
5993
5994 * vc/vc-dispatcher.el (vc-resynch-window): Tell view-mode not to
5995 change window configuration when we turn it off.
5996
5997 2014-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5998
5999 Get rid of backend-dependent selection-handling functions for kill/yank
6000 and make it generic instead by relying on the lower-level selection
6001 management functions.
6002
6003 * select.el (select-enable-clipboard): Rename from
6004 gui-select-enable-clipboard.
6005 (select-enable-primary): Move from x-win.el and rename from
6006 x-select-enable-primary.
6007 (gui-last-selected-text): Remove.
6008 (gui--last-selected-text-clipboard, gui--last-selected-text-primary):
6009 New vars.
6010 (gui-select-text): Rewrite, based on x-win.el's old x-select-text.
6011 (gui-select-text-alist, gui-selection-value-alist): Remove.
6012 (x-select-request-type): Move from x-win.el.
6013 (gui--selection-value-internal): New function, taken from x-win's
6014 x-selection-value-internal.
6015 (gui-selection-value): Rewrite, based on x-win.el's old x-selection-value.
6016 (gui-set-selection-alist): Rename from gui-own-selection-alist and
6017 extend it to handle a nil value as a "disown" request.
6018 (gui-disown-selection-alist): Remove.
6019 (xselect-convert-to-delete): Adjust accordingly.
6020 (gui-set-selection): Simplify accordingly as well. Use dotimes.
6021
6022 * term/x-win.el (x-last-selected-text-primary)
6023 (x-select-enable-primary): Remove (moved to select.el).
6024 (x-select-request-type): Move to select.el.
6025 (x-selection-value-internal, x--selection-value): Remove functions.
6026 (gui-selection-value, gui-select-text): Remove moethods.
6027 (gui-set-selection): Merge own and disown methods.
6028
6029 * term/w32-win.el (w32--select-text, w32--get-selection-value):
6030 Delete function (move functionality into w32--set-selection and
6031 w32--get-selection).
6032 (gui-select-text, gui-selection-value): Don't define methods.
6033 (w32--set-selection, w32--get-selection, w32--selection-owner-p):
6034 New functions.
6035 (gui-get-selection, gui-selection-owner-p, gui-selection-exists-p):
6036 Use them.
6037 (gui-selection-exists-p): Adjust to new name of C primitive.
6038
6039 * term/pc-win.el (w16-get-selection-value): Add dummy argument and drop
6040 test of gui-select-enable-clipboard, to make it usable as
6041 a gui-get-selection method.
6042 (gui-selection-exists-p): Adjust to new name of C primitive.
6043 (gui-set-selection): Merge own and disown methods.
6044 (gui-select-text, gui-selection-value): Delete methods.
6045 (w16--select-text): Delete function.
6046
6047 * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard)
6048 (ns-selection-value): Remove functions.
6049 (gui-select-text, gui-selection-value): Don't define method any more.
6050 (gui-set-selection): Merge the old own and disown methods.
6051 (gui-selection-exists-p, gui-get-selection): Adjust to new name of
6052 underlying C primitive.
6053
6054 * startup.el (command-line): Adjust now that `gui-method' expects nil
6055 for ttys.
6056
6057 * frame.el (gui-method): Use window-system rather than framep.
6058 (gui-method-declare): The tty case is now nil rather than t.
6059 (make-frame): Adjust accordingly.
6060
6061 2014-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
6062
6063 * net/newst-reader.el (newsticker--image-read): Simplify.
6064 (newsticker--icon-read): Use dolist and fix free var error.
6065
6066 * imenu.el (imenu--menubar-keymap): New var.
6067 (imenu-add-to-menubar): Set it to remember the keymap we used.
6068 (imenu-update-menubar): Use it instead of asking lookup-key.
6069
6070 * obsolete/cc-compat.el: Make obsolete (bug#18561).
6071
6072 * epg-config.el (epg-gpg-program): Don't use absolute names by default.
6073
6074 * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
6075 case (bug#18767).
6076
6077 2014-10-21 Glenn Morris <rgm@gnu.org>
6078
6079 * Merge in all changes up to version 24.4 release.
6080
6081 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6082
6083 * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
6084 case (bug#18767).
6085
6086 2014-10-20 Glenn Morris <rgm@gnu.org>
6087
6088 * Merge in all changes up to 24.4 release.
6089
6090 2014-10-20 Ulf Jasper <ulf.jasper@web.de>
6091
6092 * net/newst-backend.el
6093 (newsticker--image-download-by-url-callback): Make this function
6094 actually work: Check status properly, then save image.
6095
6096 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6097
6098 * mouse.el (mouse--down-1-maybe-follows-link): Remove unused var
6099 `this-event'.
6100 (mouse-drag-line): Unless there's no actual mouse, use the event's
6101 position info.
6102
6103 2014-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
6104
6105 * textmodes/css-mode.el (scss-mode): New major-mode.
6106 (css-mode-syntax-table): Use d style comment, to ease the scss case.
6107 (css-ident-re): Allow things like @-moz-keyframes.
6108 (scss--hash-re): New const.
6109 (css--font-lock-keywords): New function, extracted from
6110 css-font-lock-keywords.
6111
6112 2014-10-19 Ulf Jasper <ulf.jasper@web.de>
6113
6114 * net/newst-backend.el: Require url-parse.
6115 (newsticker--get-news-by-wget): Store feed name as process property.
6116 (newsticker--sentinel): Read feed name from process property.
6117 (newsticker--sentinel-work): Rename argument name to feed-name.
6118 Rename variable imageurl to image-url. Pick icon url from Atom
6119 1.0 data. Launch download of feed icon.
6120 (newsticker--get-icon-url-atom-1.0): New.
6121 (newsticker--unxml)
6122 (newsticker--unxml-node)
6123 (newsticker--unxml-attribute): Documentation.
6124 (newsticker--icons-dir): New.
6125 (newsticker--image-get): New arguments FILENAME and DIRECTORY.
6126 Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
6127 (newsticker--image-download-by-wget): New. Use process properties
6128 for storing informations.
6129 (newsticker--image-sentinel): Read informations from process properties.
6130 (newsticker--image-save)
6131 (newsticker--image-remove)
6132 (newsticker--image-download-by-url)
6133 (newsticker--image-download-by-url-callback): New.
6134 (newsticker-opml-export): Handle url list entries containing a
6135 function instead of an url string.
6136
6137 * net/newst-reader.el (newsticker-html-renderer): Whitespace.
6138 (newsticker--print-extra-elements)
6139 (newsticker--do-print-extra-element):
6140 Documentation (newsticker--image-read): Optionally limit image height.
6141 Use imagemagick if possible.
6142 (newsticker--icon-read): New.
6143
6144 * net/newst-treeview.el (newsticker--treeview-item-show): Limit height of feed logo.
6145 (newsticker--treeview-tree-expand): Use feed icons in treeview.
6146 (newsticker--tree-widget-icon-create): New. Set the tree widget icon.
6147 (newsticker--tree-widget-leaf-icon): Use feed icon.
6148
6149 2014-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6150
6151 * emacs-lisp/eieio-opt.el (eieio-lambda-arglist): Remove.
6152 Use help-function-arglist instead.
6153
6154 * emacs-lisp/eieio-core.el (eieio-compiled-function-arglist): Remove.
6155 (eieio--with-scoped-class): Use `declare'.
6156 (eieio-defclass): Remove compatibility code.
6157 (no-method-definition, no-next-method, inconsistent-class-hierarchy)
6158 (invalid-slot-type, unbound-slot, invalid-slot-name): Use define-error.
6159
6160 2014-10-18 Jan Djärv <jan.h.d@swipnet.se>
6161
6162 * cus-start.el (x-gtk-whole-detached-tool-bar): Remove.
6163
6164 * term/x-win.el (x-gtk-stock-map): Add icon names suggested as
6165 replacements to stock names before stock names in a list.
6166 Cdr may be a list, each name is tried in turn until one is found.
6167
6168 2014-10-18 Alan Mackenzie <acm@muc.de>
6169
6170 Check that a "macro" found near point-min isn't a ## operator.
6171 * progmodes/cc-engine.el (c-macro-is-genuine-p): New function.
6172 (c-beginning-of-macro): Use the above new function. (Bug#18749)
6173
6174 2014-10-18 Teodor Zlatanov <tzz@lifelogs.com>
6175
6176 * net/gnutls.el (gnutls-negotiate): Don't use cl-mapcan; pass
6177 correct data to `gnutls-boot' (Bug#18664).
6178 Reported by Toke Høiland-Jørgensen <toke@toke.dk>.
6179
6180 2014-10-18 Michal Nazarewicz <mina86@mina86.com>
6181
6182 * whitespace.el (whitespace-style, whitespace-big-indent)
6183 (whitespace-big-indent-regexp, whitespace-style-value-list)
6184 (whitespace-toggle-option-alist, whitespace-interactive-char)
6185 (whitespace-toggle-options)
6186 (global-whitespace-toggle-options, whitespace-help-text)
6187 (whitespace-style-face-p, whitespace-color-on): Add a 'big-indent
6188 style to `whitespace-mode' to indicate that the line indentation
6189 is too deep. By default, 32 SPACEs or four TABs are considered
6190 too many but `whitespace-big-indent-regexp' can be configured.
6191
6192 2014-10-17 Michal Nazarewicz <mina86@mina86.com>
6193
6194 * textmodes/tildify.el (tildify--pick-alist-entry): Rename from
6195 tildify-mode-alist.
6196
6197 2014-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6198
6199 * emacs-lisp/eieio.el: Use lexical-binding drop non-GV fallback.
6200 (defclass, defgeneric, defmethod): Add doc-string position.
6201 (with-slots): Require cl-lib.
6202
6203 * emacs-lisp/eieio-core.el: Use lexical-binding and cl-lib.
6204 (list-of): New type.
6205 (eieio--typep): Remove.
6206 (eieio-perform-slot-validation): Use cl-typep instead.
6207
6208 * emacs-lisp/eieio-base.el: Use lexical-binding and cl-lib.
6209
6210 * emacs-lisp/cl-macs.el (cl--make-type-test): Avoid ((lambda ..) ..).
6211
6212 2014-10-16 Alan Mackenzie <acm@muc.de>
6213
6214 Trigger showing when point is in the "periphery" of a line or just
6215 inside a paren.
6216 * paren.el (show-paren-style, show-paren-delay)
6217 (show-paren-priority, show-paren-ring-bell-on-mismatch):
6218 Remove superfluous :group specifications.
6219 (show-paren-when-point-inside-paren)
6220 (show-paren-when-point-in-periphery): New customizable variables.
6221 (show-paren-highlight-openparen): Make into a defcustom.
6222 (show-paren--unescaped-p, show-paren--categorize-paren)
6223 (show-paren--locate-near-paren): New defuns.
6224 (show-paren--default): Refaactor and trigger on more paren
6225 positions.
6226 (show-paren-function): Small consequential changes.
6227
6228 2014-10-16 Tom Tromey <tom@tromey.com>
6229
6230 * files.el (auto-mode-alist): Use javascript-mode for .jsm
6231 (bug #18719).
6232
6233 2014-10-16 Eli Zaretskii <eliz@gnu.org>
6234
6235 * international/characters.el (bracket-type): Force pre-loading of
6236 uni-brackets.el.
6237
6238 2014-10-16 Alan Mackenzie <acm@muc.de>
6239
6240 * cus-edit.el (custom-command-apply): Specify the return value in
6241 the doc string.
6242 (Custom-reset-standard): Save custom-file (e.g. .emacs) only when
6243 custom-command-apply has returned non-nil.
6244
6245 2014-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
6246
6247 * emacs-lisp/eldoc.el (global-eldoc-mode): Enable by default.
6248 Remove incorrect handling of eldoc-print-after-edit.
6249 (eldoc-message-commands, eldoc-last-data): Use defvar.
6250 * loadup.el (emacs-lisp/eldoc): Load it.
6251
6252 * progmodes/m4-mode.el (m4-syntax-propertize): New var.
6253 (m4-mode): Use it.
6254 (m4--quoted-p): New function.
6255 (m4-font-lock-keywords): Don't handle #..\n comments any more.
6256 (m4-mode-syntax-table): Use punctuation syntax (according to m4 manual)
6257 for most special characters.
6258
6259 * progmodes/compile.el (compilation--previous-directory): Simplify.
6260 (compilation-next-error): Ensure the parse before we look at
6261 compilation-message property.
6262
6263 2014-10-15 Eli Zaretskii <eliz@gnu.org>
6264
6265 * simple.el (what-cursor-position):
6266 * descr-text.el (describe-char): Update to support the new bidi
6267 characters.
6268
6269 * emacs-lisp/tabulated-list.el (tabulated-list-mode):
6270 Force bidi-paragraph-direction to 'left-to-right'. This fixes
6271 buffer-menu display when the first buffer happens to start with
6272 R2L letter.
6273
6274 2014-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
6275
6276 * progmodes/elisp-mode.el (elisp--local-variables-1):
6277 Handle quoted expressions (bug#18688).
6278
6279 2014-10-14 Jérémy Compostella <jeremy.compostella@intel.com>
6280 Michael Albinus <michael.albinus@gmx.de>
6281
6282 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
6283 Reduce the amount of set environment variable commands.
6284
6285 2014-10-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
6286
6287 Fix import completion. (Bug#18582)
6288 * progmodes/python.el (python-shell-completion-get-completions):
6289 Fix import case regexp.
6290
6291 2014-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6292
6293 * progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo
6294 (bug#18622). Reported by Arni Magnusson <arnima@hafro.is>.
6295 * progmodes/prolog.el (prolog-electric--underscore): Same.
6296
6297 2014-10-12 Michael Albinus <michael.albinus@gmx.de>
6298
6299 * net/tramp-sh.el (tramp-get-remote-id): Check also for "gid".
6300
6301 2014-10-11 Jan Djärv <jan.h.d@swipnet.se>
6302
6303 * cus-start.el (all): Add missing ns and boolean to
6304 ns-use-fullscreen-animation.
6305
6306 2014-10-11 Leo Liu <sdl.web@gmail.com>
6307
6308 * progmodes/cfengine.el (cfengine3-defuns, cfengine3-vartypes):
6309 Use strings.
6310 (cfengine3-create-imenu-index): New function.
6311 (cfengine3-mode): Use it for `imenu-create-index-function'.
6312 (cfengine-auto-mode): Improve and prefer cfengine3-mode when
6313 buffer is empty.
6314
6315 2014-10-11 Jan Djärv <jan.h.d@swipnet.se>
6316
6317 * cus-start.el (all): Add ns-use-fullscreen-animation.
6318
6319 2014-10-11 Glenn Morris <rgm@gnu.org>
6320
6321 * calendar/diary-lib.el (diary-display-function):
6322 Drop support for deprecated nil and list forms.
6323 (diary-list-entries): Update for the above.
6324 * calendar/cal-x.el (calendar-dedicate-diary): Simplify accordingly.
6325
6326 2014-10-10 Leo Liu <sdl.web@gmail.com>
6327
6328 * window.el (temp-buffer-window-show): Make BUFFER a required arg.
6329 (Bug#18656)
6330
6331 2014-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
6332
6333 * select.el (gui-selection-exists-p-alist): New method.
6334 * menu-bar.el (menu-bar-edit-menu, clipboard-yank):
6335 * simple.el (deactivate-mark): Use it.
6336 * term/x-win.el (gui-selection-exists-p):
6337 * term/w32-win.el (gui-selection-exists-p):
6338 * term/pc-win.el (gui-selection-exists-p):
6339 * term/ns-win.el (gui-selection-exists-p): Provide a backend instance.
6340
6341 2014-10-10 Glenn Morris <rgm@gnu.org>
6342
6343 * info.el (Info-fontify-maximum-menu-size): Bump to 400k. (Bug#16227)
6344 Fix :type. Allow t to mean no limit.
6345 (Info-fontify-node): Handle Info-fontify-maximum-menu-size = t.
6346
6347 2014-10-09 Glenn Morris <rgm@gnu.org>
6348
6349 * frame.el (display-monitor-attributes-list): Doc tweaks.
6350
6351 2014-10-09 Eli Zaretskii <eliz@gnu.org>
6352
6353 * faces.el (display-grayscale-p): Mention in the doc string that
6354 the argument can be either a display name or a frame.
6355
6356 * frame.el (display-pixel-height, display-pixel-width)
6357 (display-mm-height, display-mm-width, display-backing-store)
6358 (display-save-under, display-planes, display-color-cells)
6359 (display-visual-class, display-monitor-attributes-list)
6360 (display-screens): Mention in the doc string that the argument can
6361 be either a display name or a frame. Improve the docs of the
6362 monitor attributes. (Bug#18636)
6363
6364 2014-10-09 Martin Rudalics <rudalics@gmx.at>
6365
6366 * term.el (term-window-width): Subtract 1 from the width when
6367 any fringe has zero width, not just the right fringe. (Bug#18601)
6368
6369 2014-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
6370
6371 * frame.el (make-frame): Use t rather than nil for `w' (bug#18653).
6372
6373 2014-10-08 Leo Liu <sdl.web@gmail.com>
6374
6375 * emacs-lisp/cl-extra.el (cl-fresh-line): New function.
6376
6377 2014-10-08 Glenn Morris <rgm@gnu.org>
6378
6379 * calendar/cal-x.el (calendar-dedicate-diary):
6380 Drop support for recently deleted aliases.
6381
6382 2014-10-08 Leo Liu <sdl.web@gmail.com>
6383
6384 * progmodes/cfengine.el (cfengine3-make-syntax-cache):
6385 Always return a syntax. Replace call-process-shell-command with
6386 process-file. Ensure cfengine-mode-syntax-functions-regex is
6387 always set. Ensure cache when cfengine-cf-promises fails.
6388 (Bug#18620)
6389
6390 2014-10-07 Glenn Morris <rgm@gnu.org>
6391
6392 * font-lock.el (font-lock-fontify-buffer): Fix interactive-only markup.
6393
6394 2014-10-07 Wilson Snyder <wsnyder@wsnyder.org>
6395
6396 Sync with upstream verilog-mode revision c075a492.
6397 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
6398 (verilog-menu): Add AUTOINSERTLAST.
6399 (verilog-no-indent-begin-re): When `verilog-indent-begin-after-if'
6400 is nil, fix indenting initial/final to match always statements, bug825.
6401 Reported by Tim Clapp.
6402 (verilog-extended-complete-re): Fix indentation of DPI-C imports,
6403 bug557. Reported by ZeDong Mao and Jason Forkey.
6404 (verilog-read-decls): Fix parsing typed interfaces.
6405 Fix AUTOINOUTMODPORT missing types. Reported by Stephan Bourduas.
6406 (verilog-auto-arg-ports): Fix verilog-auto-arg-format single.
6407 (verilog-auto-output-every): Add regexp to AUTOOUTPUTEVERY, bug793.
6408 Reported by Pierre-David Pfister.
6409 (verilog-auto-insert-lisp): Doc fix.
6410 (verilog-auto-insert-last, verilog-auto): Add AUTOINSERTLAST to
6411 allow post-AUTO user fixups, bug826. Reported by Dennis Muhlestein.
6412 (verilog-sk-ovm-class, verilog-sk-uvm-object)
6413 (verilog-sk-uvm-component): Fix missing string keyword in class
6414 skeletons, bug824. Reported by eldad faruhi.
6415
6416 2014-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
6417
6418 * term/w32-win.el: Move all code from 32-common-fns.el here.
6419 (gui-select-text, gui-selection-value): Use w32 handlers in the w32
6420 console as well (bug#18629).
6421 * w32-common-fns.el: Remove.
6422 * loadup.el: Don't load w32-common-fns.el.
6423 * w32-fns.elc: Don't require w32-common-fns.
6424
6425 * icomplete.el: Move Iswitchb autoload here. Much simpler.
6426 * obsolete/iswitchb.el (iswitchb-mode): Use normal autoload cookie.
6427 Remove redundant obsolescence thingy.
6428 * loadup.el: Don't load obsolete/loaddefs.el.
6429 * Makefile.in (obsolete-autoloads): Remove.
6430 (AUTOGENEL): Remove obsolete/loaddefs.el.
6431
6432 2014-10-06 Glenn Morris <rgm@gnu.org>
6433
6434 * Makefile.in (obsolete-autoloads): Write to a separate file,
6435 to workaround autoloads bug. (Bug#17407)
6436 (AUTOGENEL): Add obsolete/loaddefs.el.
6437 * loadup.el: Load obsolete/loaddefs.el if present.
6438 * subr.el (do-after-load-evaluation):
6439 Don't warn about obsolete/loaddefs.el.
6440
6441 * menu-bar.el (menu-bar-games-menu): Remove landmark.
6442 It has zero relationship to a game.
6443
6444 2014-10-06 Leo Liu <sdl.web@gmail.com>
6445
6446 * imenu.el (imenu): Re-write for clarity.
6447
6448 2014-10-06 Glenn Morris <rgm@gnu.org>
6449
6450 Remove calendar code obsolete since at least version 23.1.
6451 * calendar/cal-bahai.el (calendar-absolute-from-bahai)
6452 (calendar-print-bahai-date, calendar-bahai-prompt-for-date)
6453 (calendar-goto-bahai-date, list-bahai-diary-entries)
6454 (mark-bahai-calendar-date-pattern, mark-bahai-diary-entries)
6455 (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
6456 (insert-yearly-bahai-diary-entry):
6457 * calendar/cal-china.el (chinese-calendar-time-zone)
6458 (chinese-calendar-location-name)
6459 (chinese-calendar-daylight-time-offset)
6460 (chinese-calendar-standard-time-zone-name)
6461 (chinese-calendar-daylight-time-zone-name)
6462 (chinese-calendar-daylight-savings-starts)
6463 (chinese-calendar-daylight-savings-ends)
6464 (chinese-calendar-daylight-savings-starts-time)
6465 (chinese-calendar-daylight-savings-ends-time)
6466 (chinese-calendar-celestial-stem)
6467 (chinese-calendar-terrestrial-branch)
6468 (calendar-absolute-from-chinese, calendar-print-chinese-date)
6469 (calendar-goto-chinese-date):
6470 * calendar/cal-coptic.el (calendar-absolute-from-coptic)
6471 (calendar-print-coptic-date, coptic-prompt-for-date)
6472 (calendar-goto-coptic-date, calendar-absolute-from-ethiopic)
6473 (calendar-print-ethiopic-date, calendar-goto-ethiopic-date):
6474 * calendar/cal-french.el (calendar-absolute-from-french)
6475 (calendar-print-french-date, calendar-goto-french-date):
6476 * calendar/cal-hebrew.el (diary-sabbath-candles-minutes)
6477 (calendar-absolute-from-hebrew, calendar-print-hebrew-date)
6478 (hebrew-calendar-yahrzeit, calendar-goto-hebrew-date)
6479 (holiday-rosh-hashanah-etc, holiday-hanukkah)
6480 (holiday-passover-etc, holiday-tisha-b-av-etc)
6481 (list-hebrew-diary-entries, mark-hebrew-calendar-date-pattern)
6482 (mark-hebrew-diary-entries, insert-hebrew-diary-entry)
6483 (insert-monthly-hebrew-diary-entry)
6484 (insert-yearly-hebrew-diary-entry, list-yahrzeit-dates)
6485 (diary-omer, diary-yahrzeit, diary-rosh-hodesh, diary-parasha)
6486 (diary-sabbath-candles):
6487 * calendar/cal-islam.el (calendar-absolute-from-islamic)
6488 (calendar-print-islamic-date, calendar-goto-islamic-date)
6489 (list-islamic-diary-entries, mark-islamic-calendar-date-pattern)
6490 (mark-islamic-diary-entries, insert-islamic-diary-entry)
6491 (insert-monthly-islamic-diary-entry)
6492 (insert-yearly-islamic-diary-entry):
6493 * calendar/cal-iso.el (calendar-absolute-from-iso)
6494 (calendar-print-iso-date, calendar-iso-read-args)
6495 (calendar-goto-iso-date, calendar-goto-iso-week):
6496 * calendar/cal-julian.el (calendar-absolute-from-julian)
6497 (calendar-print-julian-date, calendar-goto-julian-date)
6498 (calendar-absolute-from-astro, calendar-print-astro-day-number)
6499 (calendar-goto-astro-day-number):
6500 * calendar/cal-mayan.el (calendar-print-mayan-date)
6501 (calendar-next-haab-date, calendar-previous-haab-date)
6502 (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
6503 (calendar-next-calendar-round-date)
6504 (calendar-previous-calendar-round-date)
6505 (calendar-absolute-from-mayan-long-count)
6506 (calendar-goto-mayan-long-count-date):
6507 * calendar/cal-move.el (scroll-calendar-left)
6508 (scroll-calendar-right, scroll-calendar-left-three-months)
6509 (scroll-calendar-right-three-months):
6510 * calendar/cal-persia.el (calendar-absolute-from-persian)
6511 (calendar-print-persian-date, persian-prompt-for-date)
6512 (calendar-goto-persian-date):
6513 * calendar/cal-x.el (calendar-after-frame-setup-hooks):
6514 * calendar/calendar.el (view-diary-entries-initially)
6515 (mark-diary-entries-in-calendar, calendar-today-face)
6516 (diary-face, holiday-face, view-calendar-holidays-initially)
6517 (mark-holidays-in-calendar, initial-calendar-window-hook)
6518 (today-visible-calendar-hook, today-invisible-calendar-hook)
6519 (hebrew-diary-entry-symbol, islamic-diary-entry-symbol)
6520 (bahai-diary-entry-symbol, american-date-diary-pattern)
6521 (european-date-diary-pattern, european-calendar-display-form)
6522 (american-calendar-display-form, holidays-in-diary-buffer)
6523 (all-hebrew-calendar-holidays, all-christian-calendar-holidays)
6524 (all-islamic-calendar-holidays, all-bahai-calendar-holidays)
6525 (fancy-diary-buffer, increment-calendar-month)
6526 (extract-calendar-month, extract-calendar-day)
6527 (extract-calendar-year, exit-calendar, calendar-date-is-legal-p)
6528 (mark-visible-calendar-date, calendar-version):
6529 * calendar/diary-lib.el (diary-button-face, sexp-diary-entry-symbol)
6530 (diary-display-hook, list-diary-entries-hook)
6531 (mark-diary-entries-hook, nongregorian-diary-listing-hook)
6532 (nongregorian-diary-marking-hook, print-diary-entries-hook)
6533 (abbreviated-calendar-year, number-of-diary-entries)
6534 (view-other-diary-entries, add-to-diary-list)
6535 (include-other-diary-files, simple-diary-display)
6536 (fancy-diary-display, print-diary-entries, mark-diary-entries)
6537 (mark-sexp-diary-entries, mark-included-diary-files)
6538 (mark-calendar-days-named, mark-calendar-month)
6539 (mark-calendar-date-pattern, sort-diary-entries)
6540 (list-sexp-diary-entries, make-diary-entry, insert-diary-entry)
6541 (insert-weekly-diary-entry, insert-monthly-diary-entry)
6542 (insert-yearly-diary-entry, insert-anniversary-diary-entry)
6543 (insert-block-diary-entry, insert-cyclic-diary-entry)
6544 (fancy-diary-font-lock-keywords, fancy-diary-display-mode):
6545 * calendar/holidays.el (general-holidays, oriental-holidays)
6546 (local-holidays, other-holidays, hebrew-holidays)
6547 (christian-holidays, islamic-holidays, bahai-holidays)
6548 (solar-holidays, list-calendar-holidays)
6549 (check-calendar-holidays, mark-calendar-holidays)
6550 (filter-visible-calendar-holidays):
6551 * calendar/lunar.el (calendar-phases-of-moon, phases-of-moon)
6552 (diary-phases-of-moon): Remove obsolete aliases.
6553 * calendar/cal-menu.el (cal-menu-load-hook): Remove obsolete hook.
6554 * calendar/cal-x.el (calendar-one-frame-setup)
6555 (calendar-only-one-frame-setup, calendar-two-frame-setup):
6556 Remove obsolete functions.
6557 (cal-x-load-hook): Remove obsolete hook.
6558 * calendar/calendar.el (european-calendar-style):
6559 Remove obsolete variable.
6560 (calendar-date-style): No longer consult european-calendar-style.
6561 * calendar/calendar.el (european-calendar, american-calendar):
6562 Remove obsolete commands.
6563 * calendar/calendar.el (calendar-for-loop): Remove obsolete macro.
6564 * calendar/diary-lib.el (diary-face): Remove obsolete variable.
6565 (diary-font-lock-date-forms, diary-fancy-font-lock-keywords):
6566 Use the face `diary' instead of the variable `diary-face'.
6567 * calendar/holidays.el (hebrew-holidays-1, hebrew-holidays-2)
6568 (hebrew-holidays-3, hebrew-holidays-4): Remove obsolete variables.
6569 * calendar/icalendar.el (icalendar--date-style): Remove function.
6570 Replace all uses with calendar-date-style.
6571 * textmodes/remember.el (calendar-date-style): Declare.
6572 (remember-diary-convert-entry):
6573 No longer consult european-calendar-style.
6574
6575 2014-10-05 Leo Liu <sdl.web@gmail.com>
6576
6577 * imenu.el (imenu-default-goto-function): Fix typo.
6578
6579 2014-10-04 Thomas Fitzsimmons <fitzsim@fitzsim.org>
6580
6581 * net/ntlm.el (ntlm-build-auth-request):
6582 Add NTLM2 Session support. (Bug#15603)
6583
6584 2014-10-04 Glenn Morris <rgm@gnu.org>
6585
6586 * apropos.el (apropos-symbols-internal):
6587 Avoid error with non-symbol properties. (Bug#18337#16)
6588
6589 * startup.el (command-line):
6590 Handle altered user-emacs-directory in load-path warning. (Bug#18512)
6591
6592 2014-10-04 Martin Rudalics <rudalics@gmx.at>
6593
6594 * window.el (window-full-height-p): Make it behave correctly for
6595 minibuffer window.
6596 (window-current-scroll-bars): Fix code.
6597 (fit-frame-to-buffer): Use window-scroll-bar-height instead of
6598 window-scroll-bars.
6599 * frame.el (frame-current-scroll-bars): Fix doc-string.
6600 * scroll-bar.el (toggle-horizontal-scroll-bar): New command.
6601
6602 2014-10-04 Mark Oteiza <mvoteiza@udel.edu> (tiny change)
6603
6604 * files.el (auto-mode-alist): Use sh-mode for .zsh files. (Bug#18488)
6605
6606 2014-10-04 Glenn Morris <rgm@gnu.org>
6607
6608 * frame.el (frame-monitor-attributes)
6609 (display-monitor-attributes-list): Doc fixes.
6610
6611 2014-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
6612
6613 Merge trivially safe differences from standalone CC-mode.
6614 * progmodes/cc-mode.el (c-initialize-cc-mode): Don't quote a symbol
6615 just to then pass it to `symbol-value'.
6616 (prog-mode): Provide fallback definition, if needed.
6617 * progmodes/cc-langs.el: Always load `cl'. Don't load `cl-lib'.
6618 Remove "cl-" prefix accordingly.
6619 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Use integerp or
6620 characterp depending on the type of characters.
6621 (c-font-lock-enum-tail): Remove unused var `start'.
6622 * progmodes/cc-engine.el: Load CL at compile-time.
6623 (c-declare-lang-variables): Use mapcan.
6624 (c-append-to-state-cache): Remove unused var `ce+1'.
6625 (c-parse-state-state): Make buffer-local.
6626 (c-ssb-lit-begin): Remove unused var `pps-end-pos'.
6627 (c-just-after-func-arglist-p): Remove unused var `end'.
6628 * progmodes/cc-defs.el: Load cc-fix if delete-dups is undefined.
6629 (c-<-as-paren-syntax, c->-as-paren-syntax): Move definition earlier.
6630 (c-make-keywords-re): Use delete-dups.
6631 (c-get-current-file): Avoid file-name-base.
6632 * progmodes/cc-cmds.el (c-electric-lt-gt): Remove unused var
6633 `close-paren-inserted'.
6634 * progmodes/cc-awk.el (c-forward-sws): Remove unused declaration.
6635
6636 * progmodes/python.el: Avoid building unneeded markers.
6637 (python-font-lock-keywords, python-indent-dedent-line)
6638 (python-fill-paren, python-shell-completion-complete-or-indent):
6639 Prefer point over point-marker.
6640 (inferior-python-mode): Remove redundant completion settings.
6641
6642 2014-10-03 Dmitry Gutov <dgutov@yandex.ru>
6643
6644 * vc/vc-svn.el (vc-svn-ignore-completion-table): Implement.
6645 (vc-svn-ignore): Use it. (Bug#18619)
6646
6647 2014-10-03 Martin Rudalics <rudalics@gmx.at>
6648
6649 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
6650 In doc-string mention need to set `frame-resize-pixelwise'.
6651
6652 2014-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6653
6654 * vc/vc-svn.el (vc-svn-after-dir-status): Fix the non-remote regexp,
6655 similarly to Rogers's 2010-06-16 change for the remote case
6656 (bug#18605).
6657
6658 2014-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6659
6660 New gui-selection-value consolidating x-selection-value.
6661 * select.el (gui-selection-value-alist): New method.
6662 (gui-selection-value): New function.
6663 (x-selection-value): Make it an obsolete alias.
6664 * simple.el (interprogram-paste-function): Default to
6665 gui-selection-value.
6666 * w32-common-fns.el (w32-get-selection-value): Simplify.
6667 (x-selection-value): Remove alias.
6668 (interprogram-paste-function): Don't set.
6669 (gui-selection-value): Define for w32.
6670 * term/x-win.el (gui-selection-value): Define for x.
6671 (x--selection-value): Rename from x--selection-value.
6672 (interprogram-paste-function): Don't set.
6673 * term/pc-win.el (w16-get-selection-value): Simplify.
6674 (msdos-initialize-window-system): Don't set
6675 interprogram-paste-function.
6676 (gui-selection-value): Define for pc.
6677 * term/ns-win.el (x-selection-value): Remove.
6678 (gui-selection-value): Define for ns, instead.
6679 * term/common-win.el (x-setup-function-keys): Don't set
6680 interprogram-paste-function.
6681 * obsolete/mouse-sel.el (mouse-sel-get-selection-function):
6682 Use gui-selection-value.
6683
6684 2014-10-02 David Raynes <rayners@gmail.com> (tiny change)
6685
6686 * term/ns-win.el: Add functions to ns frame, not x frame (bug#18614).
6687
6688 2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6689
6690 * obsolete/lucid.el (read-number): Remove, redundant.
6691 * obsolete/cl-compat.el (cl-floor, cl-ceiling, cl-round, cl-truncate):
6692 Remove, broken.
6693
6694 2014-10-02 Glenn Morris <rgm@gnu.org>
6695
6696 * emacs-lisp/package.el (package-import-keyring):
6697 Create gnupg directory private. (Bug#17625#155)
6698
6699 2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6700
6701 * progmodes/python.el (python-shell-completion-get-completions):
6702 Use python-shell--prompt-calculated-input-regexp from the
6703 process buffer (bug#18582).
6704 Don't assume that `line' comes from the process buffer.
6705
6706 2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6707
6708 * frame.el: Use lexical-binding (bug#18598).
6709 (make-frame): Use t rather than nil for tty's window-system.
6710 * startup.el (command-line): Use gui-method.
6711
6712 Consolidate management/ownership of selections.
6713 * select.el (gui-get-selection-alist): New method.
6714 (gui-get-selection): Use it. Rename from x-get-selection.
6715 (x-get-selection): Define as obsolete alias.
6716 (x-get-clipboard): Mark obsolete.
6717 (gui-get-primary-selection): New function.
6718 (x-get-selection-value): Mark obsolete.
6719 (gui-own-selection-alist, gui-disown-selection-alist)
6720 (gui-selection-owner-p-alist): New methods.
6721 (gui-set-selection): Use them. Rename from x-set-selection.
6722 (x-set-selection): Define as obsolete alias.
6723 (gui--valid-simple-selection-p): Rename from
6724 x-valid-simple-selection-p.
6725 * w32-common-fns.el (gui-own-selection, gui-disown-selection)
6726 (gui-selection-owner-p, gui-get-selection): Define for w32.
6727 (w32-get-selection-value): Rename from x-get-selection-value.
6728 Use the new gui-last-selected-text.
6729 * term/x-win.el (x-get-selection-value): Remove.
6730 (x-clipboard-yank): Declare obsolete.
6731 (gui-own-selection, gui-disown-selection, gui-get-selection)
6732 (gui-selection-owner-p): Define for x.
6733 * term/w32-win.el (w32-win-suspend-error): Rename from
6734 x-win-suspend-error.
6735 * term/pc-win.el (w16-get-selection-value): Rename from
6736 x-get-selection-value.
6737 (w16-selection-owner-p): Rename from x-selection-owner-p.
6738 (gui-own-selection, gui-disown-selection, gui-get-selection)
6739 (gui-selection-owner-p): Define for pc.
6740 (w16--select-text): New function.
6741 * term/ns-win.el (gui-own-selection, gui-disown-selection)
6742 (gui-get-selection, gui-selection-owner-p): Define for ns.
6743 * term.el (term-mouse-paste):
6744 * mouse.el (mouse-yank-primary): Use gui-get-primary-selection.
6745
6746 2014-10-02 H. Dieter Wilhelm <dieter@duenenhof-wilhelm.de>
6747
6748 * calc/calc-help.el (calc-describe-thing): Quote strings
6749 which could look like regexps.
6750
6751 2014-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6752
6753 Consolidate x-select-text.
6754 * frame.el (gui-method, gui-method-define, gui-method-declare)
6755 (gui-call): New macros.
6756 (gui-method--name): New function.
6757 (frame-creation-function-alist): Use gui-method-declare.
6758 (make-frame): Use gui-method.
6759 * select.el (gui-select-enable-clipboard): Rename from
6760 x-select-enable-clipboard and move here.
6761 (x-select-enable-clipboard): Define as obsolete alias.
6762 (gui-last-selected-text): New var, to replace x-last-selected-text.
6763 (gui-select-text): New GUI method.
6764 (gui-select-text): New function.
6765 (x-select-text): Define as obsolete alias.
6766 * term/common-win.el (x-select-enable-clipboard, x-select-text):
6767 Move to select.el.
6768 * simple.el (interprogram-cut-function): Change default to
6769 x-select-text.
6770 (interprogram-paste-function): Change default to `ignore'.
6771 * w32-common-fns.el (interprogram-cut-function): Don't modify.
6772 * term/x-win.el (interprogram-cut-function): Don't modify.
6773 (gui-select-text): Add method for x.
6774 * term/w32-win.el (gui-select-text): Add method for w32.
6775 * term/pc-win.el (x-last-selected-text): Remove, use
6776 gui-last-selected-text instead.
6777 (msdos-initialize-window-system): Don't set interprogram-cut-function.
6778 (gui-select-text): Add method for pc.
6779 * term/ns-win.el (ns-last-selected-text): Remove, use
6780 gui-last-selected-text instead.
6781 (gui-select-text): Add method for ns.
6782 (x-setup-function-keys): Don't change interprogram-cut-function.
6783 * loadup.el ("startup"): Load after "frame".
6784 * subr.el (package--builtin-versions, package--description-file):
6785 Move from startup.el.
6786 * startup.el (package--builtin-versions, package--description-file):
6787 Move to subr.el.
6788 (handle-args-function-alist, window-system-initialization-alist):
6789 Use gui-method-declare.
6790 (command-line): Use gui-method.
6791
6792 2014-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6793
6794 * subr.el (alist-get): New accessor.
6795 * emacs-lisp/gv.el (alist-get): Provide expander.
6796 * winner.el (winner-remember):
6797 * tempo.el (tempo-use-tag-list):
6798 * progmodes/gud.el (minor-mode-map-alist):
6799 * international/mule-cmds.el (define-char-code-property):
6800 * frameset.el (frameset-filter-params):
6801 * files.el (dir-locals-set-class-variables):
6802 * register.el (get-register, set-register):
6803 * calc/calc-yank.el (calc-set-register): Use it.
6804 * ps-print.el (ps-get, ps-put, ps-del): Mark as obsolete.
6805 * tooltip.el (tooltip-set-param): Mark as obsolete.
6806 (tooltip-show): Use alist-get instead.
6807 * ses.el (ses--alist-get): Remove. Use alist-get instead.
6808
6809 2014-10-01 Ulf Jasper <ulf.jasper@web.de>
6810
6811 * net/newst-backend.el: Remove Time-stamp. Rename variable
6812 `newsticker--download-logos' to `newsticker-download-logos' and
6813 make it customizable.
6814 (newsticker--sentinel-work): Move xml-workarounds to function
6815 `newsticker--do-xml-workarounds', call unless libxml-parser is
6816 used. Allow single quote in regexp for encoding.
6817 Use libxml-parser if available, else fall back to `xml-parse-region'.
6818 Take care of possibly missing namespace prefixes (like "RDF"
6819 instead of "rdf:RDF") when checking xml nodes and attributes (as
6820 libxml correctly removes the prefixes). Always use Atom 1.0 as
6821 fallback feed type. Rename `newsticker--download-logos' to
6822 `newsticker-download-logos'
6823 (newsticker--unxml, newsticker--unxml-node)
6824 (newsticker--unxml-attribute): New.
6825 (newsticker--parse-atom-1.0): Call `unxml' in case that embedded
6826 HTML code has become part of the xml parse tree.
6827 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care
6828 of possibly missing namespace prefixes.
6829 (newsticker--parse-generic-items): Code formatting. Typo.
6830 (newsticker--images-dir): Add trailing slash.
6831 (newsticker--image-get): Fix error message.
6832
6833 * net/newst-plainview.el: Remove Time-stamp.
6834
6835 * net/newst-reader.el: Remove Time-stamp.
6836 (newsticker-download-logos): Rename variable
6837 `newsticker--download-logos' to `newsticker-download-logos' and
6838 make it customizable.
6839 (newsticker--print-extra-elements): Add optional parameter
6840 'htmlish for using html markup. Amend list of ignored elements.
6841 (newsticker--do-print-extra-element): Add parameter 'htmlish for
6842 using html markup.
6843
6844 * net/newst-ticker.el: Remove Time-stamp.
6845
6846 * net/newst-treeview.el (newsticker--treeview-item-show): Use html
6847 for formatting extra elements.
6848
6849 * net/newsticker.el: Remove Time-stamp, Version.
6850 (newsticker-version): Make obsolete.
6851
6852 2014-09-30 Leonardo Nobrega <leonobr@gmail.com> (tiny change)
6853
6854 * progmodes/python.el (python-fill-paren): Don't inf-loop at EOB
6855 (bug#18462).
6856
6857 2014-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6858
6859 * emacs-lisp/package.el (package-check-signature): Default to nil if
6860 GPG is not available.
6861 (package-refresh-contents): Don't mess with the keyring if we won't
6862 check the signatures anyway.
6863
6864 2014-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6865
6866 * ses.el (ses--row, ses--col): New dyn-scoped vars, to replace row&col.
6867 (ses-center, ses-center-span): Use them.
6868 (ses-print-cell): Bind them while calling the printer.
6869 (row, col, maxrow, maxcol): Don't declare as dynamically scoped.
6870 (ses-dorange): Revert last change.
6871 (ses-calculate-cell): Don't bind row&col dynamically while evaluating
6872 the formula.
6873 (ses-set-cell): Avoid `eval'.
6874 (ses--time-check): Rename it from ses-time-check and turn it into
6875 a macro.
6876
6877 * ses.el (ses-setup): Don't assume modifying the iteration var of
6878 dotimes affects the iteration (bug#18191).
6879
6880 2014-09-30 Vincent Belaïche <vincentb1@users.sourceforge.net>
6881
6882 * ses.el (ses-calculate-cell): Bind row and col dynamically to
6883 their values with 'cl-progv'.
6884 (ses-dorange): Bind row, col, maxrow and maxcol dynamically to
6885 their values with 'cl-progv', also use non-interned symbols for
6886 row, minrow, maxrow, mincol and maxcol.
6887 (maxrow maxcol): New defvar, to make the compiler happy.
6888
6889 2014-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6890
6891 * minibuffer.el (completion-at-point): Emit warning for ill-behaved
6892 completion functions.
6893
6894 2014-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
6895
6896 * ses.el (ses--letref): Quote value before it gets re-evaluated.
6897
6898 2014-09-28 Thien-Thi Nguyen <ttn@gnu.org>
6899
6900 Font-lock `cl-flet*', too.
6901 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2):
6902 Add "flet*" to intermediate var `cl-lib-kw'.
6903
6904 2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6905
6906 * epg-config.el (epg-gpg-program): Use the plain program names rather
6907 than their absolute file name.
6908
6909 * subr.el (track-mouse): New macro.
6910 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
6911 Remove track-mouse case.
6912 * emacs-lisp/bytecomp.el (byte-compile-track-mouse): Remove.
6913
6914 2014-09-27 Leo Liu <sdl.web@gmail.com>
6915
6916 * progmodes/elisp-mode.el (elisp--eldoc-last-data): Use defvar.
6917
6918 * emacs-lisp/eldoc.el (eldoc-mode): Fix thinko.
6919
6920 2014-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
6921
6922 * emacs-lisp/pcase.el (pcase--split-match, pcase--app-subst-match):
6923 Handle the case where `match' is :pcase--succeed or :pcase--fail
6924 (bug#18554).
6925
6926 Introduce global-eldoc-mode. Move Elisp-specific code to elisp-mode.el.
6927 * emacs-lisp/eldoc.el (global-eldoc-mode): New minor mode.
6928 (eldoc-schedule-timer): Obey it.
6929 (eldoc-documentation-function): Default to nil.
6930 (eldoc-mode): Don't enable if eldoc-documentation-function is not set.
6931 (eldoc-documentation-function-default, eldoc-get-fnsym-args-string)
6932 (eldoc-highlight-function-argument, eldoc-get-var-docstring)
6933 (eldoc-last-data-store, eldoc-docstring-first-line)
6934 (eldoc-docstring-format-sym-doc, eldoc-fnsym-in-current-sexp)
6935 (eldoc-beginning-of-sexp, eldoc-current-symbol)
6936 (eldoc-function-argstring): Move to elisp-mode.el.
6937 (eldoc-symbol-function): Remove, unused.
6938 * progmodes/elisp-mode.el: New file. Rename all "eldoc-*" to "elisp--*".
6939 (elisp-completion-at-point): Rename from lisp-completion-at-point.
6940 (elisp--preceding-sexp): Rename from preceding-sexp.
6941 * loadup.el: Load new file progmodes/elisp-mode.
6942 * ielm.el (inferior-emacs-lisp-mode): Set eldoc-documentation-function.
6943 * emacs-lisp/lisp.el (lisp--local-variables-1, lisp--local-variables)
6944 (lisp--local-variables-completion-table, lisp--expect-function-p)
6945 (lisp--form-quoted-p, lisp--company-doc-buffer)
6946 (lisp--company-doc-string, lisp--company-location)
6947 (lisp-completion-at-point): Move to elisp-mode.el.
6948 * emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): New syntax-table,
6949 extracted from emacs-lisp-mode-syntax-table.
6950 (emacs-lisp-mode-abbrev-table, emacs-lisp-mode-syntax-table): Move to
6951 elisp-mode.el.
6952 (lisp-imenu-generic-expression): Add comments to document what comes
6953 from which Lisp dialect.
6954 (emacs-lisp-mode-map, emacs-lisp-byte-compile)
6955 (emacs-lisp-byte-compile-and-load, emacs-lisp-mode-hook)
6956 (emacs-lisp-mode, emacs-list-byte-code-comment-re)
6957 (emacs-lisp-byte-code-comment)
6958 (emacs-lisp-byte-code-syntax-propertize, emacs-lisp-byte-code-mode)
6959 (lisp-interaction-mode-map, lisp-interaction-mode)
6960 (eval-print-last-sexp, last-sexp-setup-props)
6961 (last-sexp-toggle-display, prin1-char, preceding-sexp)
6962 (eval-last-sexp-1, eval-last-sexp-print-value)
6963 (eval-last-sexp-fake-value, eval-sexp-add-defvars, eval-last-sexp)
6964 (eval-defun-1, eval-defun-2, eval-defun): Move to elisp-mode.el.
6965
6966 2014-09-26 Paul Eggert <eggert@cs.ucla.edu>
6967
6968 * progmodes/grep.el (grep-regexp-alist): Use more-accurate regexp.
6969 Do not match file names that end in '/', as they cannot be 'grep'
6970 hits nowadays. This prevents confusion when 'grep -r' reports a
6971 match in a file whose basename is ':12345:'. Conversely, do not
6972 require exactly the same sequence of spaces and tabs after both
6973 colons, and allow spaces or tabs before the second colon, as per
6974 the POSIX spec for 'grep' output.
6975
6976 2014-09-26 Leo Liu <sdl.web@gmail.com>
6977
6978 Add cl-parse-integer based on parse-integer (Bug#18557)
6979 * calendar/parse-time.el (parse-time-digits): Remove.
6980 (digit-char-p, parse-integer) Moved to cl-lib.el.
6981 (parse-time-tokenize, parse-time-rules, parse-time-string):
6982 Use cl-parse-integer.
6983
6984 * emacs-lisp/cl-extra.el (cl-parse-integer): New function.
6985
6986 * emacs-lisp/cl-lib.el (cl-digit-char-table): New var.
6987 (cl-digit-char-p): New function.
6988
6989 2014-09-25 Juri Linkov <juri@jurta.org>
6990
6991 * vc/add-log.el (change-log-next-buffer): Don't create an empty
6992 buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9].
6993 Return the current buffer if no files match the default pattern
6994 ChangeLog.[0-9]. Signal "end of multi" when file is nil. (Bug#18547)
6995
6996 2014-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
6997
6998 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Don't modify
6999 the global vc-handled-backends (bug#18535).
7000
7001 2014-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
7002
7003 * find-cmd.el (find-cmd): Use grep's `find-program' (bug#18518).
7004 Suggested by <lompik@voila.fr>.
7005
7006 2014-09-24 Ulf Jasper <ulf.jasper@web.de>
7007
7008 * net/newst-treeview.el (newsticker--treeview-do-get-node-by-id):
7009 Rename from `newsticker--treeview-do-get-node'.
7010 (newsticker--treeview-get-node-by-id):
7011 Rename from `newsticker--treeview-get-node'.
7012 (newsticker--treeview-buffer-init)
7013 (newsticker--treeview-buffer-init): Disable buffer undo.
7014 (newsticker--treeview-unfold-node): Adapt to modified
7015 `newsticker--group-find-parent-group'.
7016 (newsticker--group-do-find-group):
7017 Rename from `newsticker--group-do-find-group-for-feed'.
7018 Now works for both, groups and feeds.
7019 (newsticker--group-find-parent-group):
7020 Rename from `newsticker--group-find-group-for-feed'.
7021 Now works for both, groups and feeds.
7022 (newsticker--group-do-get-parent-group)
7023 (newsticker--group-get-parent-group): Remove.
7024 (newsticker-group-add-group): Change interactive prompts.
7025 (newsticker-group-add-group): Finally jump to added group.
7026 (newsticker-group-delete-group): Finally jump to current feed.
7027 (newsticker--group-do-rename-group, newsticker-group-rename-group)
7028 (newsticker--get-group-names, newsticker--group-names): New.
7029 (newsticker-group-move-feed): Finally jump to moved feed.
7030 (newsticker-group-shift-feed-down, newsticker-group-shift-feed-up)
7031 (newsticker-group-shift-group-down)
7032 (newsticker-group-shift-group-up, newsticker--group-shift): New.
7033 (newsticker-treeview-mode-map): New keybindings for new shift commands.
7034
7035 * net/newst-backend.el (newsticker--item-list)
7036 (newsticker--item-position, newsticker--prev-message)
7037 (newsticker--scrollable-text): Move to newst-ticker.el.
7038
7039 * net/newst-ticker.el (newsticker--item-list)
7040 (newsticker--item-position, newsticker--prev-message)
7041 (newsticker--scrollable-text): Move from newst-backend.el.
7042
7043 2014-09-22 Kan-Ru Chen <kanru@kanru.info>
7044
7045 * window.el (fit-window-to-buffer): When counting buffer width,
7046 count the whole visible buffer. Correctly convert the body-height
7047 to pixel size for window-text-pixel-size (Bug#18498).
7048
7049 2014-09-22 Sam Steingold <sds@gnu.org>
7050
7051 * progmodes/sql.el (sql-product-alist): Improve the Vertica entry.
7052 (sql-execute): Use `special-mode'.
7053
7054 2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
7055
7056 Add pcase-defmacro, as well as `quote' and `app' patterns.
7057 * loadup.el: Increase max-lisp-eval-depth when macroexpanding macroexp.
7058 * emacs-lisp/pcase.el: Allow (F . ARGS) in `app' patterns.
7059 (pcase--funcall, pcase--eval): New functions.
7060 (pcase--u1): Use them for guard, pred, let, and app.
7061 (\`): Use the new feature to generate better code for vector patterns.
7062 * emacs-lisp/pcase.el: Use pcase-defmacro to handle backquote.
7063 (pcase--upat): Remove.
7064 (pcase--macroexpand): Don't hardcode handling of `.
7065 (pcase--split-consp, pcase--split-vector): Remove.
7066 (pcase--split-equal): Disregard ` since it's expanded away.
7067 (pcase--split-member): Optimize for quote rather than for `.
7068 (pcase--split-pred): Optimize for quote rather than for `.
7069 (pcase--u1): Remove handling of ` (and of `or' and `and').
7070 Quote non-selfquoting values when passing them to `eq'.
7071 Drop `app's let-binding if the variable is not used.
7072 (pcase--q1): Remove.
7073 (`): Define as a pattern macro.
7074 * emacs-lisp/pcase.el (pcase--match): New smart-constructor function.
7075 (pcase--expand pcase--q1, pcase--app-subst-match): Use it.
7076 (pcase--macroexpand): Handle self-quoting patterns here, expand them to
7077 quote patterns.
7078 (pcase--split-match): Don't hoist or/and here any more.
7079 (pcase--split-equal): Optimize quote patterns as well as ` patterns.
7080 (pcase--flip): New helper macro.
7081 (pcase--u1): Optimize the memq case directly.
7082 Don't handle neither self-quoting nor and/or patterns any more.
7083 * emacs-lisp/pcase.el (pcase-defmacro): New macro.
7084 (pcase--macroexpand): New function.
7085 (pcase--expand): Use it.
7086 * emacs-lisp/pcase.el (pcase--app-subst-match, pcase--app-subst-rest):
7087 New optimization functions.
7088 (pcase--u1): Add support for `quote' and `app'.
7089 (pcase): Document them in the docstring.
7090
7091 2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
7092
7093 Use lexical-bindin in Ibuffer.
7094 * ibuffer.el (ibuffer-do-toggle-read-only): `arg' is unused.
7095 (ibuffer-compile-format): Simplify.
7096 (ibuffer-clear-summary-columns): Simplify.
7097 * ibuf-ext.el (ibuffer-generate-filter-groups): Don't use the third
7098 elem of dotimes when we don't refer to the iteration var from it.
7099 (ibuffer-toggle-sorting-mode): Avoid add-to-list.
7100 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-op):
7101 Silence byte-compiler.
7102
7103 2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
7104
7105 * font-lock.el (font-lock-compile-keyword): Don't confuse a lambda
7106 expression for a list.
7107
7108 * emacs-lisp/bytecomp.el (byte-compile-lambda): Don't add fundoc usage
7109 for functions with no arguments.
7110
7111 * mpc.el (mpc-data-directory): Use locate-user-emacs-file.
7112 (mpc-volume-refresh): Make sure the corresponding header-line is updated.
7113
7114 2014-09-17 Tom Willemse <tom@ryuslash.org> (tiny change)
7115
7116 * simple.el (clone-indirect-buffer): Mention the return value
7117 (bug#18478).
7118
7119 * progmodes/prog-mode.el (prog-mode-hook): Replace reference to
7120 Text mode in docstring (bug#18464).
7121
7122 2014-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7123
7124 * progmodes/perl-mode.el (perl-syntax-propertize-function):
7125 Accept underscores in identifiers after "sub" (bug#18502).
7126
7127 2014-09-21 Tassilo Horn <tsdh@gnu.org>
7128
7129 * textmodes/reftex-sel.el (reftex-select-label-mode)
7130 (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes
7131 from special-mode (instead of fundamental-mode) and propertize
7132 with font-lock-face instead of just face. (Bug#18496)
7133
7134 * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto.
7135
7136 2014-09-19 Dmitry Gutov <dgutov@yandex.ru>
7137
7138 * emacs-lisp/lisp.el (lisp-completion-at-point): Only calculate
7139 `table-etc' when `end' is non-nil.
7140 (lisp-completion-at-point): Move `end' back if it's after quote.
7141 If in comment or string, only complete when after backquote.
7142 (Bug#18265)
7143 (lisp-completion-at-point): Don't use
7144 `lisp--local-variables-completion-table' in the
7145 `lisp--form-quoted-p' case.
7146
7147 2014-09-19 Dmitry Gutov <dgutov@yandex.ru>
7148
7149 * emacs-lisp/lisp.el (lisp--expect-function-p)
7150 (lisp--form-quoted-p): New functions.
7151 (lisp-completion-at-point): Use them to see if we're completing a
7152 variable reference, a function name, or just any symbol.
7153 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00229.html
7154
7155 2014-09-18 Ivan Kanis <ivan@kanis.fr>
7156
7157 * net/shr.el, net/eww.el: Don't override `shr-width', but
7158 introduce a new variable `shr-internal-width'. This allows users
7159 to specify a width themselves.
7160
7161 2014-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
7162
7163 * image-mode.el (image-toggle-display-image): If we have a
7164 `fit-width' or a `fit-height', don't limit the size of the image
7165 to the window size, because that doesn't preserve the aspect ratio.
7166 * image-mode.el: Move defvars earlier to avoid a byte-compilation
7167 warning.
7168
7169 2014-09-17 Reuben Thomas <rrt@sc3d.org>
7170
7171 * progmodes/js.el: Add interpreter-mode-alist support for various
7172 JavaScript interpreters.
7173
7174 2014-09-17 Paul Eggert <eggert@cs.ucla.edu>
7175
7176 Don't assume 'grep' supports GREP_OPTIONS.
7177 The GREP_OPTIONS environment variable is planned to be marked
7178 obsolescent in GNU grep, due to problems in its use, so stop
7179 relying on it.
7180 * progmodes/grep.el (grep-highlight-matches): Document this.
7181 (grep-process-setup): Do not set GREP_OPTIONS.
7182 (grep-compute-defaults): Use an explicit --color option if supported.
7183
7184 2014-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
7185
7186 * msb.el (msb--make-keymap-menu, msb-menu-bar-update-buffers):
7187 Don't add outdated key-shortcut cache (bug#18482).
7188
7189 2014-09-15 Glenn Morris <rgm@gnu.org>
7190
7191 * image.el (image-multi-frame-p): Fix thinko - do not force
7192 a delay if none was specified. (Bug#18334)
7193
7194 2014-09-15 Kan-Ru Chen <kanru@kanru.info>
7195
7196 * window.el (fit-window-to-buffer): Doc fix.
7197
7198 2014-09-15 Ivan Shmakov <ivan@siamics.net>
7199
7200 * desktop.el (desktop-create-buffer): Check that buffers are still live
7201 before burying them (bug#18373).
7202
7203 2014-09-15 Glenn Morris <rgm@gnu.org>
7204
7205 * calendar/diary-lib.el (diary-list-entries):
7206 Restore 24.3 display behavior. (Bug#18381)
7207
7208 2014-09-15 Eli Zaretskii <eliz@gnu.org>
7209
7210 * mouse.el (mouse-drag-line): On text-mode frames, count the mode
7211 line and header line as 1 pixel. This fixes the 1-"pixel" (row)
7212 discrepancy between window-pixel-edges and mouse events, and
7213 avoids moving mode line up when the mouse click is on the modeline
7214 and no drag is attempted.
7215
7216 2014-09-14 Daniel Colascione <dancol@dancol.org>
7217
7218 * register.el (insert-register): Change default interactive
7219 insertion mode.
7220
7221 2014-09-14 Michael Albinus <michael.albinus@gmx.de>
7222
7223 * net/tramp-cache.el (tramp-flush-file-function): Simplify check.
7224 Suppress debug messages.
7225
7226 * net/tramp.el (tramp-file-name-handler):
7227 * net/tramp-gvfs.el (tramp-gvfs-url-file-name): Apply `cons' where
7228 appropriate.
7229
7230 2014-09-13 Christopher Schmidt <ch@ristopher.com>
7231
7232 * calendar/calendar.el (calendar-update-mode-line):
7233 Do not overwrite mode-line-format if calendar-mode-line-format is
7234 nil. (Bug#18467)
7235
7236 2014-09-13 Leo Liu <sdl.web@gmail.com>
7237
7238 * emacs-lisp/pcase.el (pcase--dontwarn-upats): New var.
7239 (pcase--expand): Use it.
7240 (pcase-exhaustive): New macro. (Bug#16567)
7241
7242 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
7243 Add pcase-exhaustive.
7244
7245 2014-09-13 Eli Zaretskii <eliz@gnu.org>
7246
7247 * mail/rmailmm.el (rmail-mime-insert-html): Decode the HTML part
7248 using the specified transfer-encoding, if any, or 'undecided'.
7249 (rmail-mime-render-html-shr): Bind shr-width to nil, so lines are
7250 broken at the window margin.
7251
7252 2013-12-27 Ken Olum <kdo@cosmos.phy.tufts.edu>
7253
7254 Support rendering of HTML parts in Rmail (bug#4258).
7255 * mail/rmailmm.el (rmail-mime-process): Handle text/html
7256 separately from other text/ types. Suppress tagline for
7257 multipart body.
7258 (rmail-mime-parse): Don't change visibility of tagline here.
7259 (rmail-mime-set-bulk-data, rmail-mime-insert-bulk):
7260 Handle text/html specially.
7261 (rmail-mime-render-html-function,rmail-mime-prefer-html): New variables.
7262 (rmail-mime-insert-html, rmail-mime-render-html-shr)
7263 (rmail-mime-render-html-lynx): New functions.
7264 (rmail-mime-fix-inserted-faces): New function.
7265 (rmail-mime-process-multipart): Find the best part to show
7266 following rmail-mime-prefer-html if set.
7267 (rmail-mime-searching): New variable.
7268 (rmail-search-mime-message): Bind rmail-mime-searching to
7269 suppress rendering while searching.
7270
7271 2014-09-12 Sam Steingold <sds@gnu.org>
7272
7273 * progmodes/sql.el (sql-product-alist): Add vertica.
7274 (sql-vertica-program, sql-vertica-options)
7275 (sql-vertica-login-params, sql-comint-vertica, sql-vertica):
7276 New functions and variables to support Vertica.
7277 Inspired by code by Roman Scherer <roman@burningswell.com>.
7278
7279 2014-09-11 Paul Eggert <eggert@cs.ucla.edu>
7280
7281 * ses.el (ses-file-format-extend-parameter-list): Rename from
7282 ses-file-format-extend-paramter-list, to correct a misspelling.
7283 All uses changed.
7284
7285 2014-09-10 Alan Mackenzie <acm@muc.de>
7286
7287 CC Mode: revert recent changes and fix bug 17463 (cc-langs.elc
7288 gets loaded at run-time).
7289 * progmodes/cc-langs.el (c-no-parens-syntax-table): Rename the
7290 c-lang-const to c-make-no-parens-syntax-table and correct the
7291 logic.
7292 (c-no-parens-syntax-table): Correct the logic of the
7293 c-lang-defvar.
7294
7295 2014-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
7296
7297 CC-mode: Set open-paren-in-column-0-is-defun-start to nil;
7298 plus misc cleanup.
7299 * progmodes/cc-mode.el (c-basic-common-init):
7300 Set open-paren-in-column-0-is-defun-start.
7301 (adaptive-fill-first-line-regexp, font-lock-syntactic-keywords):
7302 Remove declarations, unused.
7303 (run-mode-hooks): Remove declaration.
7304 (font-lock-defaults): Use plain `defvar' to declare.
7305 (c-run-mode-hooks): Test existence of run-mode-hooks with fboundp.
7306 * progmodes/cc-langs.el (c-filter-ops): Avoid `setq'.
7307 (c-make-mode-syntax-table): Don't micro-optimize.
7308 (c-keywords, c-keyword-member-alist): Simplify.
7309 (c-kwds-lang-consts): Don't eval at compile-time.
7310 (c-primary-expr-regexp): Comment out unused vars.
7311 * progmodes/cc-fonts.el (c-font-lock-context): Declare at top-level.
7312 (c-font-byte-compile): New var.
7313 (c--compile): New function. Use it instead of `byte-compile'.
7314 (c-cpp-matchers): Quote the value returned by
7315 `c-make-syntactic-matcher' in case it's not self-evaluating.
7316 (c-basic-matchers-before): Avoid a plain MATCHER as keyword, wrap it in
7317 parentheses instead (in case MATCHER happens to be a list).
7318 (c-font-lock-enum-tail): Remove unused var `start'.
7319 (c-font-lock-objc-methods): Silence byte-compiler warnings.
7320 * progmodes/cc-engine.el (c-syntactic-re-search-forward): Sink an `if'
7321 test into an argument.
7322 * progmodes/cc-defs.el (c-point, c-major-mode-is, c-put-char-property)
7323 (c-get-char-property): Don't use `eval' just to unquote a constant.
7324 (c-use-extents): Remove. Use (featurep 'xemacs), compiled
7325 more efficiently.
7326 (c-put-char-property-fun): Don't call `byte-compile' by hand.
7327 (c-clear-char-property, c-clear-char-properties): Check that `property'
7328 is a quoted constant.
7329 (c-emacs-features): Remove `infodock', `syntax-properties', and
7330 `pps-extended-state' (never used), `8-bit' and `1-bit' (use (featurep
7331 'xemacs) instead). Use `with-temp-buffer' and let-bind vars after
7332 changing buffer, so we don't have to setq them again afterwards.
7333 (c-lang-const): Remove redundant symbolp assertions.
7334 (c-find-assignment-for-mode): Use `or'.
7335 * Makefile.in (compile-one-process): Remove cc-mode dependency.
7336
7337 2014-09-09 Sam Steingold <sds@gnu.org>
7338
7339 * progmodes/sql.el (sql-default-directory): Fix type annotation.
7340
7341 2014-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
7342
7343 * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
7344 Change doc comments into docstrings.
7345 * Makefile.in: Remove cc-awk dependency.
7346
7347 2014-09-08 Sam Steingold <sds@gnu.org>
7348
7349 * progmodes/sql.el (sql-send-line-and-next): New command,
7350 bound to C-c C-n.
7351 (sql-show-sqli-buffer): Display the buffer instead of its name and
7352 bind the command to C-c C-z.
7353 (sql-default-directory): New user option.
7354 (sql-product-interactive): Bind `default-directory' to it to
7355 enable remote connections using Tramp.
7356 (sql-set-sqli-buffer): Call `sql-product-interactive' when no
7357 suitable buffer is available.
7358
7359 2014-09-08 Glenn Morris <rgm@gnu.org>
7360
7361 * calendar/calendar.el (calendar-basic-setup):
7362 Fix calendar-view-holidays-initially-flag and fancy display.
7363 * calendar/diary-lib.el (diary-live-p): Doc fix.
7364
7365 * calendar/calendar.el (calendar-basic-setup):
7366 Avoid clobbering calendar with diary. (Bug#18381)
7367
7368 2014-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
7369
7370 * vc/vc-dir.el (vc-dir-update): Don't burp in corner case.
7371
7372 2014-09-08 Lars Ljung <lars@matholka.se> (tiny change)
7373
7374 * isearch.el (isearch-yank-word-or-char): Obey superword-mode
7375 as well (bug#18400).
7376
7377 2014-09-08 Eli Zaretskii <eliz@gnu.org>
7378
7379 * subr.el (posn-actual-col-row): Doc fix. (Bug#18385)
7380
7381 2014-09-06 Leo Liu <sdl.web@gmail.com>
7382
7383 * emacs-lisp/pcase.el (pcase): Doc fix.
7384 (pcase--split-vector): New function.
7385 (pcase--q1): Support vector qpattern. (Bug#18327)
7386
7387 2014-09-05 Sam Steingold <sds@gnu.org>
7388
7389 * textmodes/tex-mode.el (tex-print-file-extension): New user
7390 option.
7391 (tex-print): Use it instead of the hard-coded string.
7392
7393 2014-09-05 Michael Albinus <michael.albinus@gmx.de>
7394
7395 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
7396 Expand `default-directory'.
7397
7398 2014-09-05 Martin Rudalics <rudalics@gmx.at>
7399
7400 * scroll-bar.el (horizontal-scroll-bars-available-p):
7401 New function.
7402 (horizontal-scroll-bar-mode): Rewrite using
7403 horizontal-scroll-bars-available-p.
7404 * menu-bar.el (menu-bar-showhide-scroll-bar-menu): Rewrite using
7405 horizontal-scroll-bars-available-p.
7406
7407 2014-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7408
7409 * subr.el (call-process-shell-command, process-file-shell-command):
7410 Make the `args' obsolete (bug#18409).
7411 (start-process-shell-command, start-file-process-shell-command):
7412 Use `declare'.
7413
7414 2014-09-05 Jay Belanger <jay.p.belanger@gmail.com>
7415
7416 * calc/calc-forms.el (math-normalize-hms): Do a better check for
7417 "negative" hms forms.
7418
7419 2014-09-04 Rasmus Pank Roulund <emacs@pank.eu>
7420
7421 * vc/vc-git.el (vc-git-conflicted-files): Fix bug when git status
7422 returns nil (bug#18391).
7423
7424 2014-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7425
7426 * emacs-lisp/eldoc.el (eldoc-function-argstring): Don't strip
7427 terminating paren (bug#18352).
7428 (eldoc-last-data-store): Return cached data.
7429 (eldoc-get-var-docstring): Avoid setq.
7430 (eldoc-get-fnsym-args-string): Clarify data flow.
7431
7432 2014-09-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7433
7434 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Handle the
7435 case where we're currently providing part of the &rest arg after some
7436 &key args, as in define-ibuffer-op (bug#18048).
7437
7438 2014-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
7439
7440 * progmodes/which-func.el (which-func-ff-hook): Obey pre-existing
7441 buffer-local setting of which-func-mode.
7442 (which-func-mode): Use defvar-local.
7443 (which-function-mode): Don't reset which-func-mode in each buffer since
7444 it might have been set by someone else.
7445 (which-func-update-ediff-windows): Check which-function-mode.
7446
7447 2014-09-03 Martin Rudalics <rudalics@gmx.at>
7448
7449 * frame.el (frame-initialize): Remove horizontal-scroll-bars
7450 from frame-initial-frame-alist.
7451 * scroll-bar.el (previous-horizontal-scroll-bar-mode)
7452 (horizontal-scroll-bar-mode-explicit)
7453 (set-horizontal-scroll-bar-mode, get-horizontal-scroll-bar-mode)
7454 (toggle-horizontal-scroll-bar): Remove.
7455 (horizontal-scroll-bar-mode): Remove defcustom.
7456 (horizontal-scroll-bar-mode): Fix doc-string.
7457 (scroll-bar-toolkit-scroll)
7458 (scroll-bar-toolkit-horizontal-scroll): Add doc-strings stubs.
7459
7460 2014-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
7461
7462 * emacs-lisp/package.el (package-generate-description-file):
7463 Properly quote the arguments (bug#18332). Change second arg.
7464 (package--alist-to-plist-args): Rename from package--alist-to-plist and
7465 quote the elements.
7466 (package--make-autoloads-and-stuff): Fix the test for pre-existence of
7467 the *-pkg.el file. Adjust to new calling convention of
7468 package-generate-description-file.
7469
7470 * progmodes/gud.el (gud-gdb-completion-at-point): Add hack (bug#18282).
7471 (gud-gdb-completions): Remove obsolete workaround.
7472
7473 2014-09-03 Eli Zaretskii <eliz@gnu.org>
7474
7475 * subr.el (posn-col-row): Revert the change from commit
7476 2010-11-13T21:07:58Z!eliz@gnu.org, which
7477 was inadvertently merged from emacs-23 release branch in 2010-11-18T03:54:14Z!monnier@iro.umontreal.ca
7478 monnier@iro.umontreal.ca-20101118035414-yvlg7k7dk4k4l3q, and
7479 introduced an off-by-one error in the reported row when there is a
7480 header line. (Bug#18384)
7481
7482 2014-09-03 Fabián Ezequiel Gallina <fgallina@gnu.org>
7483
7484 * progmodes/python.el (python-indent-post-self-insert-function):
7485 Avoid electric colon at beginning-of-defun. (Bug#18228)
7486
7487 2014-09-03 Glenn Morris <rgm@gnu.org>
7488
7489 * tutorial.el (tutorial--display-changes):
7490 Fix 2014-08-01 change. (Bug#18382)
7491
7492 2014-09-03 Ken Brown <kbrown@cornell.edu>
7493
7494 * startup.el (fancy-splash-frame): Extend the fix for Bug#16014 to
7495 the Cygwin-w32 build. (Bug#18347)
7496
7497 2014-09-03 Glenn Morris <rgm@gnu.org>
7498
7499 * tar-mode.el (tar--extract, tar-extract):
7500 Avoid permanently disabling undo in extracted buffers. (Bug#18344)
7501
7502 2014-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
7503
7504 * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Try to better
7505 handle multiline elements (bug#18380).
7506
7507 2014-09-01 Eli Zaretskii <eliz@gnu.org>
7508
7509 * ls-lisp.el (ls-lisp-use-string-collate)
7510 (ls-lisp-UCA-like-collation): New defcustoms.
7511 (ls-lisp-string-lessp): Use them to control sorting by file
7512 names. (Bug#18051)
7513 (ls-lisp-version-lessp): New function.
7514 (ls-lisp-handle-switches): Use it to implement the -v switch of
7515 GNU ls.
7516 (ls-lisp--insert-directory): Mention the -v switch in the doc string.
7517
7518 2014-08-31 Christoph Scholtes <cschol2112@gmail.com>
7519
7520 * ibuffer.el: Replace mode-specific quit function with
7521 `quit-window' via `special-mode'.
7522 (ibuffer-mode-map): Use keybindings from special-mode-map instead
7523 of local overrides.
7524 (ibuffer): Don't store previous windows configuration.
7525 Let `quit-window' handle restoring.
7526 (ibuffer-quit): Remove function. Use `quit-window' instead.
7527 (ibuffer-restore-window-config-on-quit): Remove variable.
7528 (ibuffer-prev-window-config): Remove variable.
7529
7530 2014-08-29 Michael Heerdegen <michael_heerdegen@web.de>
7531
7532 * emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
7533 name instead of variable name in hook docstring. (Bug#18349)
7534
7535 2014-08-29 Martin Rudalics <rudalics@gmx.at>
7536
7537 * window.el (display-buffer-at-bottom): Prefer bottom-left
7538 window to other bottom windows. Reuse a bottom window if it
7539 shows the buffer already. Suggested by Juri Linkov
7540 <juri@jurta.org> in discussion of (Bug#18181).
7541
7542 2014-08-29 Leo Liu <sdl.web@gmail.com>
7543
7544 * files.el (minibuffer-with-setup-hook): Allow (:append FUN) to
7545 append to minibuffer-setup-hook. (Bug#18341)
7546
7547 2014-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7548
7549 * progmodes/cc-defs.el: Expose c-lanf-defconst's expressions to the
7550 byte-compiler.
7551 (lookup-syntax-properties): Silence byte-compiler.
7552 (c-lang-defconst): Quote the code with `lambda' rather than with
7553 `quote'.
7554 (c-lang-const): Avoid unneeded setq.
7555 (c-lang-constants-under-evaluation): Add docstring.
7556 (c-lang--novalue): New constant.
7557 (c-find-assignment-for-mode): Use it instead of c-lang-constants.
7558 (c-get-lang-constant): Same here.
7559 Get the mode's value using `funcall' now that the code is quoted
7560 with `lambda'.
7561
7562 2014-08-28 Michael Albinus <michael.albinus@gmx.de>
7563
7564 * net/tramp.el (tramp-handle-shell-command): Use `display-buffer'.
7565 (Bug#18326)
7566
7567 2014-08-28 Martin Rudalics <rudalics@gmx.at>
7568
7569 * scroll-bar.el (scroll-bar-horizontal-drag-1): Handle new
7570 interpretation of `portion-whole'.
7571
7572 2014-08-28 Michael Albinus <michael.albinus@gmx.de>
7573
7574 * net/tramp-adb.el: Spell author name correctly.
7575
7576 2014-08-28 João Távora <joaotavora@gmail.com>
7577
7578 * net/shr.el (shr-expand-url): Plain expand-file-name is not enough;
7579 use url-expand-file-name. (Bug#18310)
7580
7581 2014-08-28 Glenn Morris <rgm@gnu.org>
7582
7583 * emulation/cua-rect.el (cua--highlight-rectangle):
7584 Avoid error at point-min. (Bug#18309)
7585
7586 2014-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7587
7588 * progmodes/python.el (python-shell-prompt-detect): Remove redundant
7589 executable-find (bug#18244).
7590
7591 * simple.el (self-insert-uses-region-functions): Defvar.
7592
7593 2014-08-28 Glenn Morris <rgm@gnu.org>
7594
7595 * subr.el (remq): Revert 2014-08-25 doc change (not always true).
7596
7597 2014-08-27 Dmitry Antipov <dmantipov@yandex.ru>
7598
7599 * startup.el (normal-top-level): Now use internal--top-level-message.
7600
7601 2014-08-26 Dmitry Antipov <dmantipov@yandex.ru>
7602
7603 * startup.el (normal-top-level): Use top-level-message.
7604
7605 2014-08-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
7606
7607 * net/shr.el (shr-copy-url): Encode copied URL to avoid getting
7608 URLs containing spaces and the like.
7609
7610 2014-08-25 Christoph Scholtes <cschol2112@gmail.com>
7611
7612 * subr.el (remq): Fix docstring (Bug#18253).
7613
7614 2014-08-25 Christoph Scholtes <cschol2112@gmail.com>
7615
7616 * replace.el (query-replace): Fix typo in docstring (Bug#18320).
7617
7618 2014-08-24 Alan Mackenzie <acm@muc.de>
7619
7620 Handle C++11's "auto" and "decltype" constructions.
7621 * progmodes/cc-engine.el (c-forward-type): Enhance to recognise
7622 and return 'decltype.
7623 (c-forward-decl-or-cast-1): New let variables backup-kwd-sym,
7624 prev-kwd-sym, new-style-auto. Enhance to handle the new "auto"
7625 keyword.
7626 * progmodes/cc-fonts.el (c-font-lock-declarations): Handle the
7627 "decltype" keyword.
7628 (c-font-lock-c++-new): Handle "decltype" constructions.
7629 * progmodes/cc-langs.el (c-auto-ops, c-auto-ops-re):
7630 New c-lang-defconsts/defvars.
7631 (c-haskell-op, c-haskell-op-re): New c-lang-defconsts/defvars.
7632 (c-typeof-kwds, c-typeof-key): New c-lang-defconsts/defvars.
7633 (c-typeless-decl-kwds): Append "auto" onto the C++ value.
7634 (c-not-decl-init-keywords): Also exclude c-typeof-kwds from value.
7635
7636 Make ">>" act as double template ender in C++ Mode. (Bug#11386)
7637 * progmodes/cc-langs.el (c->-op-cont-tokens): New lang-const split
7638 off from c->-op-cont-re.
7639 (c->-op-cont-tokens): Change to use the above.
7640 (c->-op-without->-cont-regexp): New lang-const.
7641 * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
7642 Use c->-op-without->-cont-regexp in place of c->-op-cont-tokens.
7643
7644
7645 2014-08-23 Alan Mackenzie <acm@muc.de>
7646
7647 * progmodes/cc-fonts.el (c-font-lock-declarators): Fix infinite
7648 loop, bug #18306. The bug was introduced on 2014-08-02.
7649
7650 2014-08-21 Eli Zaretskii <eliz@gnu.org>
7651
7652 * textmodes/texnfo-upd.el (texinfo-specific-section-type):
7653 Don't recognize a Top node if there are other sectioning commands
7654 earlier in the Texinfo file. This fixes a bug in
7655 texinfo-make-menu and avoids inflooping in
7656 texinfo-all-menus-update when they are invoked on texinfo.texi.
7657
7658 2014-08-21 Martin Rudalics <rudalics@gmx.at>
7659
7660 * window.el (window--side-window-p): New function.
7661 (split-window, window-splittable-p): Use window--side-window-p to
7662 determine whether WINDOW can be split (Bug#18304).
7663 * calendar/calendar.el (calendar-basic-setup): Fix one call of
7664 `window-splittable-p' and add another (Bug#18304).
7665
7666 2014-08-20 Sam Steingold <sds@gnu.org>
7667
7668 * progmodes/python.el (python-new-pythonpath): Extract from
7669 `python-shell-calculate-process-environment'.
7670
7671 2014-08-18 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7672
7673 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Add support
7674 for &key args (bug#18048).
7675
7676 2014-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
7677
7678 * emacs-lisp/eldoc.el (eldoc-argument-case): Obsolete and change default.
7679 (eldoc-function-argstring-format): Remove.
7680 (eldoc-function-argstring): Always return upcase args.
7681 Use help-make-usage. Don't add parens.
7682 (eldoc-get-fnsym-args-string): Don't obey eldoc-argument-case since
7683 it's too late to do it right (bug#18048).
7684
7685 2014-08-18 Eli Zaretskii <eliz@gnu.org>
7686
7687 * scroll-bar.el (scroll-bar-horizontal-drag-1)
7688 (scroll-bar-toolkit-horizontal-scroll): When determining the
7689 paragraph direction, use the buffer of the window designated in
7690 the event.
7691
7692 2014-08-16 Andreas Schwab <schwab@linux-m68k.org>
7693
7694 * vc/diff-mode.el (diff-fixup-modifs): Handle empty line in
7695 context of unified diff.
7696
7697 2014-08-16 Paul Eggert <eggert@cs.ucla.edu>
7698
7699 Add dependencies to fix loaddefs race during parallel builds.
7700 Without this, for example, 'make -j bootstrap' can fail and report
7701 "Opening input file: no such file or directory,
7702 .../lisp/calendar/diary-loaddefs.el ... recipe for target
7703 'calendar/hol-loaddefs.el' failed", where the hol-loaddefs.el rule
7704 got confused because diary-loaddefs.el was being built in parallel.
7705 * Makefile.in ($(CAL_DIR)/diary-loaddefs.el):
7706 Depend on $(CAL_DIR)/cal-loaddefs.el.
7707 ($(CAL_DIR)/hol-loaddefs.el): Depend on $(CAL_DIR)/diary-loaddefs.el.
7708
7709 2014-08-16 Martin Rudalics <rudalics@gmx.at>
7710
7711 * scroll-bar.el (scroll-bar-horizontal-drag-1): Use cdr of
7712 portion-whole for scrolling right-to-left text.
7713
7714 2014-08-15 Leo Liu <sdl.web@gmail.com>
7715
7716 * speedbar.el (speedbar-generic-list-tag-p): Allow special
7717 elements from imenu.
7718
7719 2014-08-15 Glenn Morris <rgm@gnu.org>
7720
7721 * subr.el (with-output-to-temp-buffer): Doc fix; from elisp manual.
7722
7723 2014-08-13 Jan Nieuwenhuizen <janneke@gnu.org>
7724
7725 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7726 Add Guile regexpses.
7727
7728 2014-08-13 Jan Nieuwenhuizen <janneke@gnu.org>
7729
7730 * progmodes/gud.el (guiler): New function. Starts the Guile REPL;
7731 add Guile debugger support for GUD.
7732
7733 2014-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
7734
7735 * obsolete/mouse-sel.el (mouse-sel-mode): Use add/remove-function.
7736 (mouse-sel--ignore): New function.
7737 (mouse-sel-has-been-enabled, mouse-sel-original-bindings)
7738 (mouse-sel-original-interprogram-cut-function)
7739 (mouse-sel-original-interprogram-paste-function): Remove.
7740
7741 2014-08-13 Eric S. Raymond <esr@thyrsus.com>
7742
7743 * vc/vc-git.el (vc-git-resolve-when-done): New function.
7744 Call "git add" when there are no longer conflict markers.
7745
7746 2014-08-13 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7747
7748 * vc/vc-git.el (vc-git-find-file-hook): New function.
7749 Adds support for calling smerge (and resolve) on a conflicted file.
7750 (vc-git-conflicted-files): New function.
7751 Useful in itself and a step towards better smerge support.
7752
7753 2014-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7754
7755 * mpc.el (mpc-reorder): Don't bother splitting the "active" elements
7756 to the first part if they're the same as the selection.
7757
7758 2014-08-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
7759
7760 * image-mode.el (image-transform-reset): New command and menu item.
7761 (image-mode-map): Rearrange the menu items to put presumably more
7762 obscure items at the end.
7763
7764 2014-08-12 Juri Linkov <juri@jurta.org>
7765
7766 * vc/vc-annotate.el (vc-annotate-background-mode):
7767 Use `with-demoted-errors' instead of `ignore-errors'. (Bug#18189)
7768
7769 2014-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7770
7771 * files.el (out-of-memory-warning-percentage): Turn it off by default.
7772
7773 2014-08-11 Sam Steingold <sds@gnu.org>
7774
7775 * textmodes/sgml-mode.el (sgml-validate-command): Set depending on
7776 the presence of known validators (tidy, (o)nsgmls).
7777
7778 2014-08-11 Ulf Jasper <ulf.jasper@web.de>
7779
7780 Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227)
7781 * net/newst-treeview.el (newsticker-treeview-date-format): New.
7782 (newsticker--treeview-list-add-item):
7783 Use `newsticker-treeview-date-format'.
7784
7785 2014-08-11 Glenn Morris <rgm@gnu.org>
7786
7787 * files.el (basic-save-buffer-2): Revert 2013-01-31 change, which
7788 chose coding system for writing before backing up, since it causes
7789 a more serious problem than the one it solves. (Closes Bug#18141,
7790 reopens Bug#13522.)
7791
7792 2014-08-11 Martin Rudalics <rudalics@gmx.at>
7793
7794 * window.el (window-total-size): Make doc-string more self-contained.
7795
7796 * window.el (display-buffer-below-selected): Restore original
7797 behavior if buffer is already displayed in the window below the
7798 selected one (Bug#18181).
7799
7800 2014-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
7801
7802 * mouse.el (mouse--down-1-maybe-follows-link): Don't convert the down
7803 event (bug#18212).
7804
7805 2014-08-11 Eli Zaretskii <eliz@gnu.org>
7806
7807 * info.el (info): Doc fix.
7808
7809 2014-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
7810
7811 * info.el (Info-mode-map): Override a global down-mouse-2 binding
7812 (bug#18212).
7813
7814 2014-08-11 Eli Zaretskii <eliz@gnu.org>
7815
7816 * simple.el (default-line-height): A floating-point value of
7817 line-spacing means a fraction of the default frame font's height,
7818 not of the font currently used by the 'default' face.
7819 Truncate the pixel value, like the display engine does.
7820 (window-screen-lines): Use window-inside-pixel-edges for
7821 determining the window height in pixels. (Bug#18195)
7822
7823 2014-08-11 Grégoire Jadi <daimrod@gmail.com>
7824
7825 * leim/quail/latin-post.el: Transform " __" into " _". (Bug#18023)
7826
7827 2014-08-10 Ulf Jasper <ulf.jasper@web.de>
7828
7829 Enumerate evaluated sexp diary entries (Bug#7911).
7830 * calendar/icalendar.el (icalendar-export-sexp-enumerate-all)
7831 (icalendar-export-sexp-enumeration-days): New.
7832 (icalendar-export-region): Now `icalendar--convert-to-ical'
7833 returns a cons cell or a list of cons cells.
7834 (icalendar--convert-to-ical): Take care of
7835 `icalendar-export-sexp-enumerate-all'. Return (a list of) cons cells.
7836 (icalendar--convert-ordinary-to-ical)
7837 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7838 (icalendar--convert-block-to-ical, icalendar--convert-block-to-ical)
7839 (icalendar--convert-float-to-ical, icalendar--convert-cyclic-to-ical)
7840 (icalendar--convert-anniversary-to-ical): Return cons cell.
7841 (icalendar--convert-sexp-to-ical): Enumerate evaluated sexp
7842 entries. Return (list of) cons cells.
7843
7844 2014-08-09 Juri Linkov <juri@jurta.org>
7845
7846 * vc/vc-annotate.el (vc-annotate-background-mode): Add :set
7847 to reevaluate `vc-annotate-color-map'. (Bug#18189)
7848
7849 2014-08-09 Alan Mackenzie <acm@muc.de>
7850
7851 * progmodes/cc-fonts.el (c-font-lock-declarators): Remove check
7852 for top-level that can cause unacceptable slow-down in scrolling.
7853 See email Subject: Huge {...} blocks in C/C++ again, from Dmitry
7854 Antipov from 2013-10-14 in emacs-devel.
7855
7856 2014-08-08 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7857
7858 * ibuffer.el (ibuffer-mode-map): Use toggle button for
7859 `ibuffer-auto-mode' menu entry.
7860 (ibuffer-mode-hook): Add `ibuffer-auto-mode' customization option.
7861
7862 2014-08-08 Matthias Meulien <orontee@gmail.com>
7863
7864 * progmodes/prog-mode.el (prog-mode-hook): Make customizable.
7865 (Bug#16394)
7866
7867 2014-08-07 Martin Rudalics <rudalics@gmx.at>
7868
7869 * window.el (window--min-size-1): Explicitly set WINDOW arg in
7870 calls of window-min-pixel-height and window-min-pixel-width.
7871
7872 2014-08-07 Reuben Thomas <rrt@sc3d.org>
7873
7874 * progmodes/ada-mode.el:
7875 * net/tramp.el (tramp-handle-file-symlink-p):
7876 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
7877 about VMS, which we no longer support.
7878 * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
7879 and fix a FIXME, using convert-standard-filename in place of
7880 removed ada-convert-file-name.
7881
7882 2014-08-07 Eli Zaretskii <eliz@gnu.org>
7883
7884 * files.el (auto-mode-alist): Remove support for VMS from a pattern.
7885
7886 2014-08-07 Reuben Thomas <rrt@sc3d.org>
7887
7888 Refer to MS-DOS using the same name everywhere.
7889 * arc-mode.el, files.el, frame.el: ``MS-DOG'', ``MSDOG'' and
7890 ``msdog'' become ``MS-DOS''.
7891
7892 2014-08-07 Michael Albinus <michael.albinus@gmx.de>
7893
7894 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7895 Use cached "remote-copy-args" value, if available. (Bug#18199)
7896
7897 2014-08-07 Leo Liu <sdl.web@gmail.com>
7898
7899 * help.el (temp-buffer-setup-hook,temp-buffer-show-hook):
7900 Revert change on 2014-03-22.
7901
7902 2014-08-06 Ulf Jasper <ulf.jasper@web.de>
7903
7904 * calendar/icalendar.el (icalendar--diarytime-to-isotime)
7905 (icalendar--convert-ordinary-to-ical): Allow for missing minutes
7906 (Bug#13750).
7907
7908
7909 2014-08-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7910
7911 * image-mode.el (image-toggle-display-image): Always rescale images
7912 to not be bigger than the current window.
7913
7914 2014-08-05 Eric Brown <brown@fastmail.fm> (tiny change)
7915
7916 * net/eww.el (eww-bookmarks-directory): New variable.
7917 (eww-write-bookmarks): Use it.
7918 (eww-read-bookmarks): Ditto.
7919
7920 2014-08-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
7921
7922 * net/shr.el (shr-copy-url): Also copy the image URL.
7923
7924 2014-08-05 Michael Albinus <michael.albinus@gmx.de>
7925
7926 * net/tramp-cache.el (tramp-flush-file-function): Suppress function
7927 also for Tramp working buffers.
7928
7929 2014-08-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
7930
7931 * progmodes/python.el: Fix completions inside (i)pdb.
7932 (python-shell-completion-pdb-string-code): Make obsolete.
7933 (python-shell-completion-get-completions):
7934 Use python-shell-completion-string-code resending setup code
7935 continuously for (i)pdb.
7936
7937 2014-08-04 Paul Eggert <eggert@cs.ucla.edu>
7938
7939 * rect.el (rectangle--default-line-number-format): Rename
7940 from misspelled rectange--default-line-number-format (Bug#18045).
7941 All uses changed.
7942
7943 2014-08-03 Paul Eggert <eggert@cs.ucla.edu>
7944
7945 Don't mishandle year-9999 dates (Bug#18176).
7946 * calendar/parse-time.el (parse-time-rules):
7947 Allow years up to most-positive-fixnum.
7948 * calendar/time-date.el (date-to-time):
7949 Pass "Specified time is not representable" errors through.
7950
7951 2014-08-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
7952
7953 * progmodes/python.el: Completion code cleanups.
7954 (python-shell-completion-get-completions): Detect and send import
7955 statements directly to completion function.
7956 (python-shell-completion-at-point): Simplify prompt calculation
7957 and import vs input completion logic.
7958
7959 2014-08-02 Alan Mackenzie <acm@muc.de>
7960
7961 Fix confusion in C++ file caused by comma in "= {1,2},".
7962 Bug #17756.
7963 * progmodes/cc-engine.el (c-beginning-of-statement-1): In checking
7964 for a statement boundary marked by "}", check there's no "="
7965 before the "{".
7966 (c-guess-basic-syntax CASE 9B): Call c-beginning-of-statement with
7967 non-nil `comma-delim' argument.
7968 * progmodes/cc-fonts.el (c-font-lock-declarators): Parse an
7969 initializer expression more accurately.
7970
7971 Correct loop termination condition in c-syntactic-skip-backward.
7972 * progmodes/cc-engine.el (c-syntactic-skip-backward): Correct for
7973 the situation where, after moving back out of a literal,
7974 skip-chars-backward doesn't move further, yet checks have still to
7975 be done.
7976
7977 2014-08-01 Eli Zaretskii <eliz@gnu.org>
7978
7979 * tutorial.el (tutorial--display-changes): Accept punctuation
7980 characters before the key binding. (Bug#18146)
7981
7982 2014-07-31 Fabián Ezequiel Gallina <fgallina@gnu.org>
7983
7984 * progmodes/python.el: Shell output capture enhancements.
7985 (python-shell-accept-process-output): New function.
7986 (inferior-python-mode)
7987 (python-shell-send-setup-code): Use it.
7988
7989 2014-07-30 Christophe Deleuze <christophe.deleuze@free.fr> (tiny change)
7990
7991 * calendar/icalendar.el (icalendar--decode-isodatetime):
7992 Use actual current-time-zone when converting to local time. (Bug#15408)
7993
7994 2014-07-29 Martin Rudalics <rudalics@gmx.at>
7995
7996 * window.el (window--state-put-2): Handle horizontal scroll
7997 bars, if present.
7998
7999 2014-07-29 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8000
8001 * menu-bar.el (menu-bar-update-buffers): Update item list format
8002 in `buffers-menu' to confirm with changes to `get_keyelt'
8003 (r117463). (Bug#18016)
8004
8005 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
8006
8007 * progmodes/python.el (inferior-python-mode): Make input prompts
8008 read-only.
8009
8010 2014-07-28 Emilio C. Lopes <eclig@gmx.net>
8011
8012 * net/tramp-sh.el (tramp-get-remote-python): Also search for
8013 executables named "python2" or "python3".
8014 (tramp-get-remote-uid-with-python): Use parentheses around
8015 arguments to `print' to make it compatible with Python 3.
8016 (tramp-get-remote-gid-with-python): Ditto. (Bug#18118)
8017
8018 2014-07-28 Eli Zaretskii <eliz@gnu.org>
8019
8020 * window.el (window--pixel-to-total): Use FRAME's root window, not
8021 that of the selected frame. (Bug#18112, Bug#16674)
8022
8023 2014-07-28 Andreas Schwab <schwab@linux-m68k.org>
8024
8025 * textmodes/tex-mode.el (tex-font-lock-verb): Doc fix.
8026 (Bug#18117)
8027
8028 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
8029
8030 * progmodes/python.el (inferior-python-mode): Doc fix.
8031
8032 2014-07-28 Stephen Berman <stephen.berman@gmx.net>
8033
8034 * calendar/todo-mode.el (todo-edit-item--next-key): If next key is
8035 not a character, ignore it instead of raising an error.
8036
8037 * calendar/todo-mode.el: Fix handling of marked items and make
8038 minor code improvements.
8039 (todo-edit-item): If there are marked items, ensure user can only
8040 invoke editing commands that work with marked items.
8041 (todo-edit-item--text): When there are marked items, make it a
8042 noop if invoked with point not on an item; otherwise, ensure it
8043 applies only to item at point.
8044 (todo-item-undone): If there are marked not-done items, return
8045 point to its original position before signaling user error.
8046 (todo--user-error-if-marked-done-item): New function.
8047 (todo-edit-item--header, todo-edit-item--diary-inclusion)
8048 (todo-item-done): Use it.
8049
8050 2014-07-28 Glenn Morris <rgm@gnu.org>
8051
8052 * files.el (toggle-read-only): Re-add basic doc-string.
8053 * vc/vc-hooks.el (vc-toggle-read-only): Tweak obsolescence mesage.
8054
8055 * progmodes/prolog.el (prolog-mode-keybindings-edit):
8056 Replace missing `switch-to-prolog' with `run-prolog'.
8057 (switch-to-prolog): Define as (obsolete) alias, as in 23.4.
8058
8059 2014-07-28 Stephen Berman <stephen.berman@gmx.net>
8060
8061 * calendar/todo-mode.el (todo-set-top-priorities): Fix overwriting
8062 of file-wide setting when changing category-wide setting.
8063
8064 2014-07-28 Stephen Berman <stephen.berman@gmx.net>
8065
8066 * doc-view.el (doc-view-open-text): Don't require that the
8067 document is saved in a file (e.g., email attachment).
8068
8069 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
8070
8071 Parse completion input in a iPython friendly way. (Bug#18084)
8072 * progmodes/python.el
8073 (python-shell-completion-at-point): Rename from
8074 python-shell-completion-complete-at-point.
8075 (inferior-python-mode): Use it.
8076 (python-completion-at-point): Rename from
8077 python-completion-complete-at-point. Parse input up to first
8078 backward occurrence of whitespace, open-paren, close-paren or
8079 string delimiter.
8080 (python-mode): Use it.
8081
8082 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
8083
8084 * progmodes/python.el
8085 (python-shell-with-shell-buffer): New macro.
8086 (python-shell-font-lock-get-or-create-buffer)
8087 (python-shell-font-lock-kill-buffer)
8088 (python-shell-font-lock-with-font-lock-buffer)
8089 (python-shell-font-lock-cleanup-buffer)
8090 (python-shell-font-lock-toggle): Use it.
8091 (python-shell-font-lock-turn-on)
8092 (python-shell-font-lock-turn-off): Use it. Make command.
8093
8094 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
8095
8096 Grab all Python process output before inferior-python-mode hooks.
8097 * progmodes/python.el (inferior-python-mode):
8098 Call accept-process-output and sit-for to ensure all output for process
8099 has been received before running hooks.
8100 (python-shell-internal-get-or-create-process):
8101 Cleanup accept-process-output and sit-for calls.
8102
8103 2014-07-28 Fabián Ezequiel Gallina <fgallina@gnu.org>
8104
8105 More robust shell startup and code setup.
8106 * progmodes/python.el (python-shell-make-comint):
8107 Remove accept-process-output call.
8108 (python-shell-get-buffer): Return current buffer if major-mode is
8109 inferior-python-mode.
8110 (python-shell-get-or-create-process): Use it.
8111 (python-shell-send-setup-code): Send all setup code in one string,
8112 output success message and accept-process-output.
8113
8114 2014-07-27 Eli Zaretskii <eliz@gnu.org>
8115
8116 * scroll-bar.el (scroll-bar-toolkit-horizontal-scroll):
8117 Add rudimentary support for bidirectional text.
8118
8119 2014-07-27 Martin Rudalics <rudalics@gmx.at>
8120
8121 * frame.el (frame-notice-user-settings): Rewrite using
8122 frame-initial-frame-tool-bar-height.
8123 * menu-bar.el (menu-bar-horizontal-scroll-bar)
8124 (menu-bar-no-horizontal-scroll-bar): New functions.
8125 (menu-bar-showhide-scroll-bar-menu): Add bindings for horizontal
8126 scroll bars.
8127 * scroll-bar.el (scroll-bar-lines)
8128 (set-horizontal-scroll-bar-mode)
8129 (get-horizontal-scroll-bar-mode, horizontal-scroll-bar-mode)
8130 (scroll-bar-horizontal-drag-1, scroll-bar-horizontal-drag)
8131 (scroll-bar-toolkit-horizontal-scroll): New functions.
8132 (horizontal-scroll-bar-mode)
8133 (previous-horizontal-scroll-bar-mode)
8134 (horizontal-scroll-bar-mode-explicit): New variables.
8135 (horizontal-scroll-bar-mode): New option.
8136 (toggle-horizontal-scroll-bar): Do something.
8137 (top-level): Bind horizontal-scroll-bar mouse-1.
8138 * startup.el (tool-bar-originally-present): Remove variable.
8139 (command-line): Don't set tool-bar-originally-present.
8140 * window.el (window-min-height): Update doc-string.
8141 (window--dump-frame): Dump horizontal scroll bar values.
8142 (window--min-size-1): Handle minibuffer window separately.
8143 Count in margins and horizontal scroll bar. Return safe value
8144 iff IGNORE equals 'safe.
8145 (frame-windows-min-size): New function (used by frame resizing
8146 routines).
8147 (fit-frame-to-buffer, fit-window-to-buffer): Count in horizontal
8148 scroll bars.
8149 (window--sanitize-window-sizes): New function.
8150 (window-split-min-size): Remove.
8151 (split-window): Count divider-width. Don't use
8152 `window-split-min-size' any more. Reword error messages.
8153 Sanitize windows sizes after splitting.
8154
8155 2014-07-27 Thien-Thi Nguyen <ttn@gnu.org>
8156
8157 Use `defvar-local' more.
8158 * progmodes/hideshow.el
8159 (hs-c-start-regexp, hs-block-start-regexp)
8160 (hs-block-start-mdata-select, hs-block-end-regexp)
8161 (hs-forward-sexp-func, hs-adjust-block-beginning): ...here;
8162 remove corresponding `make-variable-buffer-local' top-level calls.
8163
8164 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
8165
8166 Cleanup error signals. (Bug#18067)
8167 * progmodes/python.el
8168 (python-indent-shift-left): Use user-error instead.
8169 (python-shell-prompt-detect): Use lwarn with python group.
8170 (python-completion-complete-at-point)
8171 (python-eldoc--get-doc-at-point): Don't signal error.
8172
8173 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
8174
8175 Support for packages in Python shell. (Bug#13570)
8176 * progmodes/python.el (python-shell--package-depth): New var.
8177 (python-shell-package-enable): New command.
8178 (python-util-list-directories, python-util-list-files)
8179 (python-util-list-packages): New functions.
8180
8181 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
8182
8183 Faster comint output. (Bug#16875)
8184 * progmodes/python.el:
8185 (python-comint-output-filter-function): Make obsolete.
8186 (python-comint-postoutput-scroll-to-bottom): New function.
8187 (inferior-python-mode): Set comint-output-filter-functions to a
8188 minimum.
8189
8190 2014-07-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
8191
8192 * progmodes/python.el (python-shell-font-lock-post-command-hook):
8193 Safeguard current point and undo history.
8194
8195 2014-07-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
8196
8197 Robust shell syntax highlighting. (Bug#18084, Bug#16875)
8198 * progmodes/python.el:
8199 (python-shell-prompt-input-regexps): Add iPython block prompt.
8200 (python-shell-output-syntax-table): Delete var.
8201 (python-shell-font-lock-with-font-lock-buffer): New macro.
8202 (python-shell-font-lock-get-or-create-buffer)
8203 (python-shell-font-lock-kill-buffer)
8204 (python-shell-font-lock-cleanup-buffer)
8205 (python-shell-font-lock-post-command-hook)
8206 (python-shell-font-lock-turn-off): New functions.
8207 (python-shell-font-lock-turn-on): New function.
8208 (inferior-python-mode): Use it.
8209 (python-shell-font-lock-toggle): New command.
8210 (python-shell-font-lock-enable): Rename from
8211 python-shell-enable-font-lock.
8212 (run-python-internal): Use it.
8213 (python-shell-font-lock-comint-output-filter-function): New function.
8214 (python-shell-comint-end-of-output-p): New function.
8215 (python-shell-output-filter): Use it.
8216 (python-util-comint-last-prompt): New function.
8217 (python-util-text-properties-replace-name): New function.
8218
8219 2014-07-25 Glenn Morris <rgm@gnu.org>
8220
8221 * vc/ediff-init.el (ediff-toggle-read-only-function):
8222 * vc/ediff-util.el (ediff-toggle-read-only):
8223 Replace obsolete toggle-read-only with read-only-mode.
8224
8225 2014-07-24 Michael Albinus <michael.albinus@gmx.de>
8226
8227 * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
8228 with `save-match-data'. (Bug#18095)
8229
8230 2014-07-21 Vincent Belaïche <vincentb1@users.sourceforge.net>
8231
8232 * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
8233 order to ensure that row and col are lexically bound inside the
8234 evaluated sexp.
8235
8236 2014-07-21 Glenn Morris <rgm@gnu.org>
8237
8238 * progmodes/hideif.el (hide-ifdef-mode-submap):
8239 Also substitute read-only-mode.
8240 * bindings.el (mode-line-toggle-read-only):
8241 * bs.el (bs-toggle-readonly):
8242 * buff-menu.el (Buffer-menu-toggle-read-only):
8243 * dired.el (dired-toggle-read-only):
8244 * files.el (view-read-only, find-file-read-only)
8245 (find-file-read-only-other-window)
8246 (find-file-read-only-other-frame):
8247 * progmodes/hideif.el (hide-ifdef-toggle-outside-read-only):
8248 Doc fixes re toggle-read-only.
8249
8250 2014-07-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
8251
8252 * progmodes/python.el: Add comment about pipe buffering and
8253 solutions for missing/delayed output in inferior Python shells.
8254 (Bug#17304)
8255
8256 * progmodes/python.el (python-mode): Don't set
8257 mode-require-final-newline. (Bug#17990)
8258
8259 Make python.el work with IPython automatically. (Bug#15510)
8260 * progmodes/python.el:
8261 (python-shell-completion-setup-code): New value supporting iPython.
8262 (python-shell-completion-string-code): New value supporting iPython.
8263 (python-shell-completion-get-completions): Use them.
8264 (python-shell-completion-module-string-code): Make obsolete.
8265 (python-shell-prompt-input-regexps)
8266 (python-shell-prompt-output-regexps): Add safeguard for ipdb.
8267 (python-shell-output-filter): Fix comment typo.
8268
8269 Fix Python shell prompts detection for remote hosts.
8270 * progmodes/python.el (python-shell-prompt-detect):
8271 Replace call-process with process-file and make it more robust.
8272
8273 Autodetect Python shell prompts. (Bug#17370)
8274 * progmodes/python.el:
8275 (python-shell-interpreter-interactive-arg)
8276 (python-shell-prompt-detect-enabled)
8277 (python-shell-prompt-detect-failure-warning)
8278 (python-shell-prompt-input-regexps)
8279 (python-shell-prompt-output-regexps): New vars.
8280 (python-shell-prompt-calculated-input-regexp)
8281 (python-shell-prompt-calculated-output-regexp): New vars.
8282 (python-shell-get-process-name)
8283 (python-shell-internal-get-process-name)
8284 (python-shell-output-filter)
8285 (python-shell-completion-get-completions): Use them.
8286 (python-shell-prompt-detect)
8287 (python-shell-prompt-validate-regexps): New functions.
8288 (python-shell-prompt-set-calculated-regexps): New function.
8289 (inferior-python-mode): Use it. Also honor overriden
8290 python-shell-interpreter and python-shell-interpreter-args.
8291 (python-shell-make-comint): Honor overriden
8292 python-shell-interpreter and python-shell-interpreter-args.
8293 (python-shell-get-or-create-process): Make it testable by allowing
8294 to call run-python non-interactively.
8295 (python-util-valid-regexp-p): New function.
8296 (python-shell-prompt-regexp, python-shell-prompt-block-regexp)
8297 (python-shell-prompt-output-regexp)
8298 (python-shell-prompt-pdb-regexp): Use it as defcustom :safe.
8299
8300 2014-07-21 Stefan Monnier <monnier@iro.umontreal.ca>
8301
8302 * emacs-lisp/smie.el (smie-config--guess-1): Split from
8303 smie-config--guess.
8304 (smie-config--guess): Use it.
8305
8306 * emacs-lisp/edebug.el: Use nadvice.
8307 (edebug-original-read): Remove.
8308 (edebug--read): Rename from edebug-read and add `orig' arg.
8309 (edebug-uninstall-read-eval-functions)
8310 (edebug-install-read-eval-functions): Use nadvice.
8311 (edebug-read-sexp, edebug-read-storing-offsets, edebug-read-symbol)
8312 (edebug-read-and-maybe-wrap-form1, edebug-instrument-callee)
8313 (edebug-read-string, edebug-read-function): Use just `read'.
8314 (edebug-original-debug-on-entry): Remove.
8315 (edebug--debug-on-entry): Rename from edebug-debug-on-entry and add
8316 `orig' arg.
8317 (debug-on-entry): Override with nadvice.
8318
8319 * mouse.el (tear-off-window): Rename from mouse-tear-off-window since
8320 it also makes sense to bind it to a non-mouse event.
8321
8322 * vc/vc-bzr.el (vc-bzr-shelve): Make it operate on fileset.
8323
8324 2014-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8325
8326 * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
8327 (bug#18015).
8328
8329 * rect.el (rectangle--string-preview): Don't assume there
8330 a non-nil default (bug#17984).
8331
8332 2014-07-16 Glenn Morris <rgm@gnu.org>
8333
8334 * desktop.el (after-init-hook): Disable startup frame restoration
8335 in non-graphical situations. (Bug#17693)
8336
8337 * vc/vc-dispatcher.el (vc-log-edit): Do set up the log buffer
8338 if it was "empty", or used for a different set of files. (Bug#17884)
8339
8340 2014-07-16 Eli Zaretskii <eliz@gnu.org>
8341
8342 * bindings.el (mode-line-remote): If default-directory is not a
8343 string, don't call file-remote-p on it; instead state in the
8344 help-echo that it is nil. (Bug#17986)
8345
8346 2014-07-14 Daniel Colascione <dancol@dancol.org>
8347
8348 * progmodes/cc-langs.el: Change comments from `cl-macroexpand-all'
8349 to `macroexpand-all'
8350
8351 * progmodes/cc-defs.el (c-lang-defconst-eval-immediately):
8352 Use `macroexpand-all' instead of `cl-macroexpand-all'.
8353
8354 2014-07-12 Paul Eggert <eggert@cs.ucla.edu>
8355
8356 Fix bug: C-x v v discarded existing log message (Bug#17884).
8357 * vc/vc-dispatcher.el (vc-log-edit):
8358 Don't clobber an already-existing log message.
8359
8360 2014-07-12 Glenn Morris <rgm@gnu.org>
8361
8362 * vc/log-edit.el (log-edit-changelog-entries):
8363 Check for a visited-but-never-saved ChangeLog.
8364
8365 2014-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
8366
8367 * vc/log-edit.el (log-edit-changelog-entries): Don't both visiting
8368 a non-existing file (bug#17970).
8369
8370 * faces.el (face-name): Undo last change.
8371 (x-resolve-font-name): Don't call face-name (bug#17956).
8372
8373 2014-07-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
8374
8375 Fix dedenters and electric colon handling. (Bug#15163)
8376 * progmodes/python.el
8377 (python-rx-constituents): Add dedenter and block-ender.
8378 (python-indent-dedenters, python-indent-block-enders): Delete.
8379 (python-indent-context): Return new case for dedenter-statement.
8380 (python-indent-calculate-indentation): Handle new case.
8381 (python-indent-calculate-levels): Fix levels calculation for
8382 dedenter statements.
8383 (python-indent-post-self-insert-function): Fix colon handling.
8384 (python-info-dedenter-opening-block-message): New function.
8385 (python-indent-line): Use it.
8386 (python-info-closing-block)
8387 (python-info-closing-block-message): Remove.
8388 (python-info-dedenter-opening-block-position)
8389 (python-info-dedenter-opening-block-positions)
8390 (python-info-dedenter-statement-p): New functions.
8391
8392 2014-07-11 Dmitry Antipov <dmantipov@yandex.ru>
8393
8394 * files.el (out-of-memory-warning-percentage): New defcustom.
8395 (warn-maybe-out-of-memory): Use it.
8396
8397 2014-07-11 Michael Albinus <michael.albinus@gmx.de>
8398
8399 * subr.el (read-passwd): Use `read-hide-char' if non-nil. Bind it
8400 when calling `read-string'. (Bug#17839)
8401
8402 2014-07-10 Eli Zaretskii <eliz@gnu.org>
8403
8404 * files.el (warn-maybe-out-of-memory): Fix the wording of the
8405 warning.
8406
8407 2014-07-10 Dmitry Antipov <dmantipov@yandex.ru>
8408
8409 * files.el (warn-maybe-out-of-memory): New function.
8410 (find-file-noselect): Use it.
8411
8412 2014-07-09 Sam Steingold <sds@gnu.org>
8413
8414 * progmodes/cperl-mode.el (cperl-block-p): Treat the perl keyword
8415 `constant' like `bless', `return' &c
8416
8417 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
8418
8419 * rect.el (apply-on-rectangle): Check forward-line really moved to the
8420 next line.
8421
8422 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
8423
8424 * progmodes/sh-script.el (sh-smie-sh-rules): Don't align with a && in
8425 the middle of a line (bug#17896).
8426
8427 2014-07-09 Juri Linkov <juri@jurta.org>
8428
8429 * startup.el (command-line): Append displaying the warning about
8430 the errors in the init file to the end of `after-init-hook'.
8431 (Bug#17927)
8432
8433 * faces.el (face-name): Return input arg `face' as-is
8434 when it's not a symbol.
8435 (x-resolve-font-name): Don't check if the face is a symbol.
8436 (Bug#17956)
8437
8438 * facemenu.el (list-colors-print): In help-echo format use %.2f
8439 instead of %d because now HSV values are floating-point components
8440 between 0.0 and 1.0.
8441
8442 2014-07-09 Glenn Morris <rgm@gnu.org>
8443
8444 * emulation/cua-rect.el (cua--activate-rectangle):
8445 Avoid setting cua--rectangle to nil. (Bug#17877)
8446
8447 2014-07-09 Stephen Berman <stephen.berman@gmx.net>
8448
8449 * calendar/todo-mode.el: Fix wrong-type-argument error when
8450 marking multiple consecutive items.
8451 (todo-toggle-mark-item): Don't try to mark the empty lines at the
8452 end of the todo and done items sections. Note in doc string that
8453 items marked by passing a numeric prefix argument can include the
8454 last todo and first done items.
8455 (todo-mark-category): Don't try to mark the empty line between the
8456 todo and done items sections.
8457
8458 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
8459
8460 * emacs-lisp/edebug.el (edebug-eval-defun): Print result using
8461 proper Lisp quoting (bug#17934).
8462
8463 * progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
8464 require-final-newline since prog-mode already took care of it (bug#17947).
8465
8466 2014-07-09 Stephen Berman <stephen.berman@gmx.net>
8467
8468 * calendar/todo-mode.el: Fix two bugs. Shorten Commentary and
8469 refer to the Todo mode Info manual. Update the comment on
8470 requiring cl-lib.
8471 (todo-find-filtered-items-file): Add todo-prefix overlays.
8472 (todo-filter-items): Reorder a let-bound variable to avoid a
8473 wrong-type-argument error on canceling the file choice dialog.
8474
8475 2014-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
8476
8477 * progmodes/octave.el (inferior-octave-mode):
8478 Set comint-input-ring-size to a number (bug#17912).
8479
8480 2014-07-09 Juri Linkov <juri@jurta.org>
8481
8482 * desktop.el (desktop-minor-mode-table): Add `defining-kbd-macro'
8483 and `isearch-mode' associated with nil. (Bug#17849)
8484
8485 2014-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
8486
8487 * linum.el (linum--face-height): New function (bug#17813).
8488 (linum-update-window): Use it to adjust margin to linum's width.
8489
8490 * leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
8491 * eshell/em-smart.el (eshell-smart-scroll-window):
8492 Use with-selected-window.
8493
8494 * xt-mouse.el (xterm-mouse-translate-1): Intern drag event (bug#17894).
8495 Remove also pointless window&mark manipulation.
8496
8497 * progmodes/perl-mode.el: Use syntax-ppss; fix one indentation case.
8498 (perl-indent-line): Use syntax-ppss to detect we're in a doc-section.
8499 (perl-continuation-line-p): Don't skip over anything else than labels.
8500 Return the previous char.
8501 (perl-calculate-indent): Use syntax-ppss instead of parse-start
8502 and update callers accordingly. For continuation lines, check the
8503 the case of array hashes.
8504 (perl-backward-to-noncomment): Make it non-interactive.
8505 (perl-backward-to-start-of-continued-exp): Rewrite.
8506
8507 2014-07-08 Sam Steingold <sds@gnu.org>
8508
8509 * progmodes/inf-lisp.el (lisp-eval-paragraph, lisp-eval-form-and-next):
8510 New user commands.
8511
8512 2014-07-08 Juri Linkov <juri@jurta.org>
8513
8514 * vc/vc-annotate.el (vc-annotate-background-mode): New defcustom.
8515 (vc-annotate-color-map): Use less saturated colors (20%) for
8516 background-mode.
8517 (vc-annotate-very-old-color): Add default value for background-mode.
8518 (vc-annotate-background): Set default value to nil since now text on
8519 the default backgrounds should be legible in light and dark modes.
8520 (vc-annotate-lines): Use `vc-annotate-background-mode'. Doc fix.
8521 (Bug#17808)
8522
8523 2014-07-08 Juri Linkov <juri@jurta.org>
8524
8525 * simple.el (transpose-chars): Don't move point into read-only area.
8526 (Bug#17829)
8527
8528 2014-07-08 Juri Linkov <juri@jurta.org>
8529
8530 * window.el (with-displayed-buffer-window): New macro.
8531 (with-temp-buffer-window, with-current-buffer-window):
8532 Use `macroexp-let2' to evaluate and bind variables
8533 in the same order as macro arguments.
8534 (display-buffer--action-function-custom-type):
8535 Add `display-buffer-below-selected' and `display-buffer-at-bottom'.
8536
8537 * minibuffer.el (minibuffer-completion-help): Replace
8538 `with-output-to-temp-buffer' with `with-displayed-buffer-window'
8539 with actions that display *Completions* at-bottom when called
8540 from the minibuffer, or below-selected in a normal buffer.
8541 Associate `window-height' with `fit-window-to-buffer'.
8542 Let-bind `pop-up-windows' to nil.
8543
8544 * dired.el (dired-mark-pop-up): Use `with-displayed-buffer-window'
8545 instead of `with-current-buffer-window'. (Bug#17809)
8546
8547 2014-07-07 Luke Lee <luke.yx.lee@gmail.com>
8548
8549 * progmodes/hideif.el (hide-ifdef-env): Change to global.
8550 (hide-ifdef-env-backup): New variable.
8551 (hide-ifdef-expand-reinclusion-protection, hide-ifdef-header-regexp):
8552 New customizable variables.
8553 (hif-clear-all-ifdef-defined): New defun.
8554 (hif-merge-ifdef-region, hide-ifdef-region-internal, hide-ifdef-region)
8555 (hif-show-ifdef-region): Merge hidden regions to prevent continuous "...".
8556 (hif-tokenize): Fix for MS-DOS/Win EOL style.
8557 (hif-endif-to-ifdef, hif-make-range, hif-find-range, hif-possibly-hide):
8558 Fix bug to hide the correct #elif region(s).
8559 (hif-range-elif): New defun.
8560 (hif-recurse-level): New var.
8561 (hif-evaluate-region, hif-evaluate-macro): New defun.
8562 (hide-ifdef-guts): Prevent reinclusion protected C/C++ headers from
8563 fully hidden.
8564 (hide-ifdef-define, hide-ifdefs, hide-ifdef-block, show-ifdef-block):
8565 Better interaction.
8566
8567 2014-07-04 Michael Albinus <michael.albinus@gmx.de>
8568
8569 * net/dbus.el (dbus-peer-handler): New defun.
8570 (dbus-register-service): Register it. (Bug#17858)
8571 (dbus-managed-objects-handler): Fix docstring.
8572
8573 2014-07-04 Phil Sainty <psainty@orcon.net.nz>
8574
8575 * emacs-lisp/lisp.el (narrow-to-defun-include-comments): New var.
8576 (narrow-to-defun): New arg include-comments, defaulting to it
8577 (bug#16328).
8578
8579 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8580
8581 * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with
8582 different calling convention to rectangle--unhighlight-for-redisplay.
8583
8584 2014-07-03 Michael Albinus <michael.albinus@gmx.de>
8585
8586 * net/tramp.el (tramp-call-process): Handle error strings.
8587
8588 * net/tramp-adb.el (tramp-adb-sh-fix-ls-output): Use `bolp'.
8589
8590 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime)
8591 (tramp-sh-handle-verify-visited-file-modtime): Use `point-at-eol'.
8592
8593 * net/trampver.el: Update release number.
8594
8595 2014-07-03 Juri Linkov <juri@jurta.org>
8596
8597 * desktop.el (desktop-save): Rename arg `auto-save' to
8598 `only-if-changed'. Doc fix. (Bug#17873)
8599
8600 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8601
8602 * mouse.el (mouse-yank-primary, mouse-yank-secondary):
8603 Use insert-for-yank (bug#17271).
8604
8605 2014-07-03 Leo Liu <sdl.web@gmail.com>
8606
8607 * emacs-lisp/pp.el (pp-eval-expression, pp-eval-last-sexp):
8608 Support lexical-binding.
8609
8610 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8611
8612 * vc/log-edit.el (log-edit-goto-eoh): New function.
8613 (log-edit--match-first-line): Use it (bug#17861).
8614
8615 2014-07-03 Glenn Morris <rgm@gnu.org>
8616
8617 * vc/log-edit.el (log-edit-hook): Add missing :version.
8618
8619 2014-07-03 Fabián Ezequiel Gallina <fgallina@gnu.org>
8620
8621 * progmodes/python.el (python-indent-post-self-insert-function):
8622 Enhancements to electric indentation behavior inside
8623 parens. (Bug#17658)
8624
8625 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
8626
8627 * ps-def.el (ps-generate-postscript-with-faces1): Don't mess with
8628 buffer-invisibility-spec (bug#17867).
8629
8630 2014-07-03 Andreas Schwab <schwab@linux-m68k.org>
8631
8632 * vc/vc-git.el (vc-git-checkin): When operating on the whole tree
8633 pass "-a".
8634
8635 2014-07-03 Glenn Morris <rgm@gnu.org>
8636
8637 * cus-edit.el (help):
8638 * finder.el (finder-known-keywords):
8639 * help.el (help-for-help-internal):
8640 * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
8641 (ediff-redraw-registry-buffer):
8642 * vc/ediff-ptch.el (ediff-patch-file-internal):
8643 Doc fixes re "online" help. (Bug#17803)
8644
8645 * progmodes/idlwave.el (idlwave): Update url-link for custom group.
8646 (idlwave-mode): Doc URL update.
8647
8648 2014-07-01 Juri Linkov <juri@jurta.org>
8649
8650 * man.el: Display man pages immediately and use process-filter
8651 to format them asynchronously.
8652 (Man-width): Doc fix.
8653 (man): Doc fix.
8654 (Man-start-calling): Use `with-selected-window' to get
8655 `frame-width' and `window-width'.
8656 (Man-getpage-in-background): Call `Man-notify-when-ready'
8657 immediately after creating a new buffer. Call `Man-mode' and set
8658 `mode-line-process' in the created buffer. Set process-filter to
8659 `Man-bgproc-filter' in start-process branch. In call-process branch
8660 call either `Man-fontify-manpage' or `Man-cleanup-manpage'.
8661 Use `Man-start-calling' inside `with-current-buffer'.
8662 (Man-fontify-manpage): Don't print messages. Fix boundary condition.
8663 (Man-cleanup-manpage): Don't print messages.
8664 (Man-bgproc-filter): New function.
8665 (Man-bgproc-sentinel): Add `save-excursion' to keep point when
8666 user moved it during asynchronous formatting. Move calls of
8667 `Man-fontify-manpage' and `Man-cleanup-manpage' to
8668 `Man-bgproc-filter'. Move the call of `Man-mode' to
8669 `Man-getpage-in-background'. Use `quit-restore-window'
8670 instead of `kill-buffer'. Use `message' instead of `error'
8671 because errors are caught by process sentinel.
8672 (Man-mode): Move calls of `Man-build-page-list',
8673 `Man-strip-page-headers', `Man-unindent', `Man-goto-page' to
8674 `Man-bgproc-sentinel'. Doc fix. (Bug#2588, bug#5054, bug#9084, bug#17831)
8675
8676 * man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
8677 for the message about the man page cleaned up.
8678
8679 2014-07-01 Mario Lang <mlang@delysid.org>
8680
8681 * net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
8682 cosutomization option `gnutls-verify-error'.
8683
8684 2014-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8685
8686 * simple.el (deactivate-mark, set-mark-command, handle-shift-selection):
8687 Don't keep transient-mark-mode buffer-local when not needed (bug#6316).
8688
8689 * xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
8690 (turn-off-xterm-mouse-tracking-on-terminal): Don't burp if the terminal
8691 is suspended (bug#17857).
8692
8693 2014-07-01 Michael Albinus <michael.albinus@gmx.de>
8694
8695 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
8696 Prefer utf-8 coding. (Bug#17859)
8697
8698 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org>
8699
8700 * emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
8701 for `reverse'.
8702
8703 2014-06-30 Glenn Morris <rgm@gnu.org>
8704
8705 * emacs-lisp/autoload.el (autoload-ensure-writable): New variable.
8706 (autoload-ensure-default-file): Maybe make existing output writable.
8707 * Makefile.in (AUTOGEN_VCS): Remove.
8708 (autoloads): Use autoload-ensure-writable rather than AUTOGEN_VCS.
8709
8710 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org>
8711
8712 * emacs-lisp/subr-x.el (string-reverse): Use `reverse'.
8713
8714 2014-06-30 Fabián Ezequiel Gallina <fgallina@gnu.org>
8715
8716 New if-let, when-let, thread-first and thread-last macros.
8717
8718 * emacs-lisp/subr-x.el
8719 (internal--listify, internal--check-binding)
8720 (internal--build-binding-value-form, internal--build-binding)
8721 (internal--build-bindings): New functions.
8722 (internal--thread-argument, thread-first, thread-last)
8723 (if-let, when-let): New macros.
8724
8725 2014-06-30 Grégoire Jadi <daimrod@gmail.com>
8726
8727 * net/rcirc.el (rcirc-buffer-process): Restore previous
8728 behaviour. (Bug#17772)
8729
8730 2014-06-29 Alan Mackenzie <acm@muc.de>
8731
8732 Don't call c-parse-state when c++-template-syntax-table is active.
8733 * progmodes/cc-engine.el (c-guess-continued-construct CASE G)
8734 (c-guess-basic-syntax CASE 5D.3): Rearrange so that
8735 c-syntactic-skip-backwards isn't called with the pertinent syntax table.
8736
8737 2014-06-28 Stephen Berman <stephen.berman@gmx.net>
8738
8739 * calendar/todo-mode.el (todo-set-top-priorities): Fix logic to
8740 account for file-wide setting of todo-top-priorities-overrides.
8741 Make code a bit cleaner.
8742
8743 2014-06-28 Glenn Morris <rgm@gnu.org>
8744
8745 * net/eww.el (eww-mode) <eww-current-title>: Make local. (Bug#17860)
8746
8747 2014-06-28 Stephen Berman <stephen.berman@gmx.net>
8748
8749 * calendar/todo-mode.el (todo-prefix-overlays): If there is no
8750 category-wide setting of todo-top-priorities-overrides, check for
8751 a file-wide setting and fontify accordingly.
8752
8753 2014-06-28 Glenn Morris <rgm@gnu.org>
8754
8755 * subr.el (read-passwd): Warn about batch mode. (Bug#17839)
8756
8757 2014-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8758
8759 * progmodes/hideif.el: Use lexical-binding. Fix up cl-lib usage.
8760
8761 2014-06-28 K. Handa <handa@gnu.org>
8762
8763 Fix Bug#17739.
8764
8765 * composite.el: Setup composition-function-table for dotted circle.
8766 (compose-gstring-for-dotted-circle): New function.
8767
8768 * international/characters.el: Add category "^" to all
8769 non-spacing characters.
8770
8771 2014-06-28 Glenn Morris <rgm@gnu.org>
8772
8773 * Makefile.in (doit): Remove force rule.
8774 (custom-deps, finder-data, autoloads, update-subdirs)
8775 (compile-one-process): PHONY targets do not need force rules.
8776
8777 * Makefile.in (compile-main, compile, compile-always):
8778 No need to explicitly pass variables to ourself in recursive calls.
8779
8780 2014-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
8781
8782 * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
8783
8784 2014-06-26 Glenn Morris <rgm@gnu.org>
8785
8786 * Makefile.in (update-authors): Update for moved authors.el.
8787
8788 2014-06-26 Leo Liu <sdl.web@gmail.com>
8789
8790 * skeleton.el (skeleton-end-hook): Default to nil and move the
8791 work to skeleton-insert. (Bug#17850)
8792
8793 2014-06-26 Dmitry Antipov <dmantipov@yandex.ru>
8794
8795 * calc/calc-alg.el (math-beforep):
8796 * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
8797 Simplify because string-lessp can accept symbols as args.
8798
8799 2014-06-26 Daiki Ueno <ueno@gnu.org>
8800
8801 * emacs-lisp/package.el (package--check-signature):
8802 If package-check-signature is allow-unsigned, don't signal error when
8803 we can't verify signature because of missing public key
8804 (bug#17625).
8805
8806 2014-06-26 Glenn Morris <rgm@gnu.org>
8807
8808 * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
8809 Remove outdated declaration.
8810
8811 * emacs-lisp/authors.el (authors-valid-file-names)
8812 (authors-renamed-files-alist): Additions.
8813
8814 2014-06-26 Leo Liu <sdl.web@gmail.com>
8815
8816 * textmodes/picture.el (picture-set-tab-stops):
8817 * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
8818 (ruler-mode-ruler): Fix to work with nil tab-stop-list.
8819
8820 * progmodes/asm-mode.el (asm-calculate-indentation):
8821 Use indent-next-tab-stop.
8822
8823 * indent.el (indent-accumulate-tab-stops): New function.
8824
8825 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8826
8827 * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
8828 (package-desc-status): Obey it.
8829
8830 2014-06-26 Stephen Berman <stephen.berman@gmx.net>
8831
8832 * calendar/todo-mode.el: Fix two bugs.
8833 (todo-insert-item--basic): If user cancels item insertion to
8834 another category before setting priority, show original category
8835 whether it is in the same or a different file.
8836 (todo-set-item-priority): After selecting category, instead of
8837 moving point to top, which extends an active region, restore it.
8838
8839 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8840
8841 * help-fns.el (describe-function-1): Check file-name is a string before
8842 calling help-fns--autoloaded-p (bug#17564).
8843
8844 2014-06-26 Juri Linkov <juri@jurta.org>
8845
8846 * desktop.el (desktop-auto-save-enable)
8847 (desktop-auto-save-disable): New functions.
8848 (desktop-save-mode, desktop-auto-save-timeout): Use them.
8849 (desktop-read): Disable the autosave before loading the desktop,
8850 and enable afterwards. (Bug#17351)
8851
8852 2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
8853
8854 Fix some indentation problem with \; and pipes (bug#17842).
8855 * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
8856 (sh-smie--default-forward-token, sh-smie--default-backward-token):
8857 New functions.
8858 (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
8859 (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
8860 (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
8861
8862 2014-06-26 Glenn Morris <rgm@gnu.org>
8863
8864 * emacs-lisp/find-func.el (find-function-C-source-directory):
8865 Use file-accessible-directory-p.
8866
8867 * ps-samp.el: Make it slightly less awful.
8868 (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
8869 (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
8870 Only set local values.
8871 (ps-article-subject, ps-article-author): Use standard functions
8872 like mail-fetch-field.
8873 (ps-info-file, ps-info-node): Use match-string.
8874 (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
8875 (ps-samp-ps-setup): ... new function.
8876
8877 * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
8878 Optimize away code unneeded on any modern Emacs.
8879
8880 * emacs-lisp/authors.el: Move to ../admin.
8881
8882 * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
8883
8884 2014-06-26 Luke Lee <luke.yx.lee@gmail.com>
8885
8886 * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
8887 (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
8888 performance enhancements.
8889 (hif-parse-if-exp): Rename to `hif-parse-exp'. Enhance for macro
8890 expansion.
8891 (hif-factor, hif-string-concatenation, intern-safe): Support string
8892 concatenation and argumented macro expansion.
8893 (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
8894 (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
8895 (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
8896 (hif-canonicalize-tokens, hif-place-macro-invocation)
8897 (hif-parse-macro-arglist): Mostly new functions for supporting
8898 argumented macro expansion.
8899 (hif-string-concatenation, hif-stringify, hif-token-concat)
8900 (hif-token-stringification, hif-token-concatenation):
8901 Stringification and concatenation.
8902 (hif-find-next-relevant): Fix comments.
8903 (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
8904 some cases involving #elif.
8905 (hif-find-define, hif-add-new-defines): New functions for automatically
8906 scanning of defined symbols.
8907 (hide-ifdef-guts): Fix for defined symbol auto scanning.
8908 (hide-ifdef-undef): Fix behavior to match CPP.
8909
8910 2014-06-25 Glenn Morris <rgm@gnu.org>
8911
8912 * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
8913 ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
8914 ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
8915 files. They are not relevant to the original issue (bug#1004),
8916 and cause unnecessary recompilation (bug#2151).
8917
8918 2014-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
8919
8920 * play/landmark.el: Use lexical-binding and avoid `intangible'.
8921 (landmark--last-pos): New var.
8922 (landmark--intangible-chars): New const.
8923 (landmark--intangible): New function.
8924 (landmark-mode, landmark-move): Use it.
8925 (landmark-mode): Remove properties.
8926 (landmark-plot-square, landmark-point-square, landmark-goto-xy)
8927 (landmark-cross-qtuple):
8928 Don't worry about `intangible' any more.
8929 (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
8930 (landmark-init-display): Don't set `intangible' and `point-entered'.
8931 (square): Remove. Inline it instead.
8932 (landmark--distance): Rename from `distance'.
8933 (landmark-calc-distance-of-robot-from): Rename from
8934 calc-distance-of-robot-from.
8935 (landmark-calc-smell-internal): Rename from calc-smell-internal.
8936
8937 2014-06-25 Dmitry Antipov <dmantipov@yandex.ru>
8938
8939 * files.el (dir-locals-find-file, file-relative-name):
8940 * info.el (Info-complete-menu-item):
8941 * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
8942 to compare-strings to avoid out-of-range errors.
8943 * subr.el (string-prefix-p): Adjust to match strict range
8944 checking in compare-strings.
8945
8946 2014-06-24 Leonard Randall <leonard.a.randall@gmail.com> (tiny change)
8947
8948 * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
8949 for comment lines non-greedy and stopping at newlines to fix stack
8950 overflows with large files.
8951
8952 2014-06-24 Eli Barzilay <eli@barzilay.org>
8953
8954 * calculator.el (calculator-last-input): Drop 'ascii-character property
8955 lookup.
8956
8957 2014-06-24 Leo Liu <sdl.web@gmail.com>
8958
8959 * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
8960 tab-stop-list to nil. (Bug#16381)
8961
8962 * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
8963 (indent-rigidly-left-to-tab-stop)
8964 (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
8965 (move-to-tab-stop): Change callers.
8966
8967 2014-06-24 Eli Zaretskii <eliz@gnu.org>
8968
8969 * skeleton.el (skeleton-insert): Yet another fix of the doc string
8970 wrt behavior of \n as the first/last element of a skeleton.
8971
8972 2014-06-24 Michael Albinus <michael.albinus@gmx.de>
8973
8974 * net/tramp-adb.el (tramp-adb-handle-process-file):
8975 * net/tramp-sh.el (tramp-sh-handle-process-file):
8976 * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
8977 the output buffer when DISPLAY is non-nil. (Bug#17815)
8978
8979 2014-06-24 Glenn Morris <rgm@gnu.org>
8980
8981 * play/landmark.el (landmark-move-down, landmark-move-up):
8982 Fix 2007-10-20 change - preserve horizontal position.
8983
8984 2014-06-23 Sam Steingold <sds@gnu.org>
8985
8986 * simple.el (kill-append): Remove undo boundary depending on ...
8987 (kill-append-merge-undo): New user option.
8988
8989 2014-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
8990
8991 * simple.el (handle-shift-selection, exchange-point-and-mark)
8992 (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
8993 (transient-mark-mode): Use&set the global value.
8994 * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
8995 * emulation/edt.el (edt-emulation-off): Save&restore the global
8996 transient-mark-mode setting.
8997 * obsolete/pc-select.el (pc-selection-mode): Use the
8998 transient-mark-mode function.
8999
9000 2014-06-23 Eli Zaretskii <eliz@gnu.org>
9001
9002 * international/fontset.el (script-representative-chars):
9003 Add representative characters for scripts added in Unicode 7.0.
9004 (otf-script-alist): Synchronize with the latest registry of OTF
9005 script tags.
9006
9007 * international/characters.el (char-script-table): Update for
9008 scripts added and codepoint ranges changed in Unicode 7.0.
9009
9010 2014-06-23 Eli Barzilay <eli@barzilay.org>
9011
9012 * calculator.el (calculator-standard-displayer): Fix bug in use of
9013 `calculator-groupize-number'.
9014 (calculator-funcall): Fix broken `cl-flet' use by moving it into the
9015 `eval' code, so it works in v24.3.1 too.
9016 (calculator-last-input): Comment to clarify purpose.
9017
9018 2014-06-22 Mario Lang <mlang@delysid.org>
9019
9020 * textmodes/rst.el (rst-comment-region): From from -> from.
9021
9022 * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
9023
9024 2013-06-22 Dmitry Antipov <dmantipov@yandex.ru>
9025
9026 * electric.el (electric-layout-post-self-insert-function):
9027 * emacs-lisp/ert.el (ert--insert-infos):
9028 * obsolete/vi.el (vi-set-mark):
9029 * term.el (term-handle-scroll):
9030 * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
9031 * wid-edit.el (widget-editable-list-value-create):
9032 Prefer point-marker to copy-marker of point.
9033
9034 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
9035
9036 Fix completion retrieval parsing (bug#17209).
9037 * progmodes/python.el (python-mode):
9038 (python-util-strip-string): New function.
9039 (python-shell-completion-get-completions): Use it.
9040
9041 2014-06-21 Eli Zaretskii <eliz@gnu.org>
9042
9043 * skeleton.el (skeleton-insert): Fix last change.
9044
9045 2014-06-21 Fabián Ezequiel Gallina <fgallina@gnu.org>
9046
9047 Enhancements for outline integration (bug#17796).
9048 * progmodes/python.el (python-mode): Properly set
9049 outline-heading-end-regexp so that comments after colons for
9050 defuns are supported.
9051
9052 2014-06-21 Eli Zaretskii <eliz@gnu.org>
9053
9054 * skeleton.el (skeleton-insert): Doc fix.
9055
9056 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9057
9058 * emacs-lisp/smie.el (smie-config--guess): Fix typo.
9059 (smie-config-guess): Use smie-config-local so the rules are obeyed
9060 (bug#17818).
9061
9062 * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
9063 since it's already done inside the loop (bug#17819).
9064
9065 2014-06-21 Martin Rudalics <rudalics@gmx.at>
9066
9067 * mouse.el (mouse-drag-line): Re-remove code initially removed
9068 on 2013-03-09 and inadvertently reintroduced on 2013-11-30
9069 (Bug#17819).
9070
9071 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9072
9073 * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
9074 align with the surrounding parent (bug#17721).
9075
9076 2014-06-21 Eli Zaretskii <eliz@gnu.org>
9077
9078 * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
9079 locally to nil.
9080 (texinfo-insert-block, texinfo-insert-@end)
9081 (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
9082 local setting of skeleton-end-newline by adding an explicit \n to
9083 the skeletons where appropriate. (Bug#17801)
9084
9085 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9086
9087 * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
9088 (smie-indent--hanging-p): Use it.
9089 * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
9090
9091 2014-06-21 Leo Liu <sdl.web@gmail.com>
9092
9093 * simple.el (read-quoted-char): Don't let help chars pop up help
9094 buffer. (Bug#16617)
9095
9096 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9097
9098 * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
9099 for | (bug#17621).
9100
9101 * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
9102 Drop unknown events instead of burping.
9103
9104 2014-06-21 Eli Zaretskii <eliz@gnu.org>
9105
9106 * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
9107 and later. (Bug#17790)
9108
9109 2014-06-21 Juri Linkov <juri@jurta.org>
9110
9111 * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
9112 to `soft'. (Bug#17554)
9113
9114 2014-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9115
9116 * delsel.el (electric-newline-and-maybe-indent): Mark it as well
9117 (bug#17737).
9118
9119 2014-06-21 Dmitry Gutov <dgutov@yandex.ru>
9120
9121 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
9122 `!' in `!~' with `font-lock-negation-char-face'. (Bug#17732)
9123
9124 2014-06-21 Michael Albinus <michael.albinus@gmx.de>
9125
9126 * net/dbus.el (dbus-call-method): Push only non D-Bus events into
9127 `unread-command-events'.
9128
9129 2014-06-19 William Xu <william.xwl@gmail.com>
9130
9131 * progmodes/hideif.el (hif-string-to-number): Don't return float for
9132 hex integer constants (bug#17807).
9133
9134 2014-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
9135
9136 * international/mule-util.el (truncate-string-ellipsis): New var.
9137 (truncate-string-to-width): Use it.
9138
9139 2014-06-19 Robert Brown <robert.brown@gmail.com> (tiny change)
9140
9141 * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
9142 (lisp-string-in-doc-position-p): New function, extracted from
9143 lisp-font-lock-syntactic-face-function.
9144 (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
9145
9146 2014-06-19 Grégoire Jadi <daimrod@gmail.com>
9147
9148 * net/rcirc.el (rcirc-omit-mode): Fix recenter error. (Bug#17769)
9149
9150 2014-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
9151
9152 * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
9153 (bubbles--game-over): Don't add `intangible' properties since they
9154 didn't work anyway.
9155
9156 2014-06-18 Juri Linkov <juri@jurta.org>
9157
9158 * vc/ediff-init.el (ediff-current-diff-Ancestor)
9159 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
9160 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
9161 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
9162 Add `min-colors 88' version with removed black/white foregrounds.
9163 (Bug#10181)
9164
9165 2014-06-18 Juri Linkov <juri@jurta.org>
9166
9167 * vc/diff-mode.el (diff-changed): Empty face definition to use
9168 `diff-removed' and `diff-added' on tty as well. (Bug#10181)
9169 (diff-context): Use darker color on light background and
9170 lighter color on dark background.
9171
9172 2014-06-18 Juri Linkov <juri@jurta.org>
9173
9174 * vc/diff-mode.el (diff-refine-changed): Rename from
9175 `diff-refine-change' for consistency with `diff-changed'.
9176 (diff-refine-change): Add obsolete face alias. (Bug#10181)
9177
9178 * vc/smerge-mode.el (smerge-refined-changed): Rename from
9179 `smerge-refined-change'.
9180 (smerge-refined-change): Add obsolete face alias.
9181
9182 2014-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
9183
9184 * rect.el (rectangle-preview): New custom.
9185 (rectangle): New group.
9186 (rectangle--pos-cols): Add `window' argument.
9187 (rectangle--string-preview-state, rectangle--string-preview-window):
9188 New vars.
9189 (rectangle--string-flush-preview, rectangle--string-erase-preview)
9190 (rectangle--space-to, rectangle--string-preview): New functions.
9191 (string-rectangle): Use them.
9192 (rectangle--inhibit-region-highlight): New var.
9193 (rectangle--highlight-for-redisplay): Obey it. Make sure
9194 `apply-on-region' uses the point-crutches of the right window.
9195 Use :align-to rather than multiple spaces.
9196
9197 2014-06-16 Andrea Rossetti <andrea.rossetti@gmail.com> (tiny change)
9198
9199 * ruler-mode.el (ruler-mode-window-col)
9200 (ruler-mode-mouse-set-left-margin)
9201 (ruler-mode-mouse-set-right-margin): Fix calculation of column
9202 from mouse position (Bug#17768).
9203
9204 2014-06-16 Ron Schnell <ronnie@driver-aces.com>
9205
9206 * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
9207 without varname or rhs causes crash.
9208 (dun-ftp): Fix bug where blank ftp password is allowed, making it
9209 impossible to win endgame.
9210 (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
9211 rlogin is anymore.
9212 (dun-help): Bump version number; update contact info.
9213
9214 2014-06-15 Eli Barzilay <eli@barzilay.org>
9215
9216 * calculator.el (calculator-prompt, calculator-remove-zeros)
9217 (calculator-mode-hook, calculator-operators, calculator-stack)
9218 (calculator-mode): Tweak docstring.
9219 (calculator-user-operators): Tweak docstring, fix a bug in the last
9220 example.
9221 (calculator-displayer): `std' case has an optional boolean.
9222 (calculator-displayers): Use the new boolean to group in decimal mode.
9223 (calculator-mode-map, calculator, calculator-message)
9224 (calculator-op-arity, calculator-add-operators)
9225 (calculator-string-to-number, calculator-displayer-prev)
9226 (calculator-displayer-next, calculator-remove-zeros)
9227 (calculator-eng-display, calculator-number-to-string)
9228 (calculator-update-display, calculator-last-input)
9229 (calculator-clear-fragile, calculator-digit, calculator-decimal)
9230 (calculator-exp, calculator-saved-move, calculator-clear)
9231 (calculator-copy, calculator-put-value, calculator-help)
9232 (calculator-expt, calculator-truncate): Minor code improvements.
9233 (calculator-need-3-lines): New function pulling out code from
9234 `calculator'.
9235 (calculator-get-display): Rename from `calculator-get-prompt', and
9236 improved.
9237 (calculator-push-curnum): Rename from `calculator-curnum-value', and
9238 extended for all uses of it. All callers changed.
9239 (calculator-groupize-number): New utility for splitting a number into
9240 groups.
9241 (calculator-standard-displayer): Improve code, new optional argument to
9242 use comma-split groups, make second argument optional too to use with
9243 'left/'right inputs. All callers changed.
9244 (calculator-reduce-stack-once): New utility, doing the meat of what
9245 `calculator-reduce-stack' used to do, much improved (mostly using
9246 `pcase' for conciseness and clarity).
9247 (calculator-reduce-stack): Now doing just the reduction loop using
9248 `calculator-reduce-stack-once'.
9249 (calculator-funcall): Improve code, make it work in v24.3.1 too.
9250 (calculator-last-input): Improve code, remove some old cruft.
9251 (calculator-quit): Kill `calculator-buffer' in electric mode too.
9252 (calculator-integer-p): Remove.
9253 (calculator-fact): Improve code, make it work on non-integer values
9254 too (using truncated numbers).
9255
9256 2014-06-15 Michael Albinus <michael.albinus@gmx.de>
9257
9258 Sync with Tramp 2.2.10.
9259
9260 * net/tramp.el (tramp-methods): Tweak docstring.
9261 (tramp-handle-file-accessible-directory-p): Check for
9262 `file-readable-p' instead of `file-executable-p'.
9263 (tramp-check-cached-permissions):
9264 Use `tramp-compat-file-attributes'.
9265 (tramp-call-process): Add new argument VEC. Adapt callees in all
9266 tramp*.el files.
9267
9268 * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
9269 (tramp-adb-maybe-open-connection): Don't set
9270 `tramp-current-*' variables.
9271
9272 * net/tramp-cache.el (tramp-flush-file-function): Do not flush
9273 file properties of temporary buffers.
9274
9275 * net/tramp-ftp.el (top): Remove special handling for URL syntax.
9276
9277 * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
9278 (tramp-gvfs-handle-delete-file): Flush file
9279 properties, not directory properties.
9280 (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
9281 reading "unix::mode".
9282 (tramp-gvfs-handle-file-name-all-completions):
9283 Use "-h" option for "gvfs-ls".
9284 (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
9285 (tramp-gvfs-send-command): Simplify traces.
9286
9287 * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
9288 (vc-git-program, vc-hg-program): Declare.
9289 (tramp-methods) <sftp>: Remove. It has never worked satisfactorily.
9290 (tramp-methods) <nc>: Add new method.
9291 (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
9292 (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
9293 `tramp-login-args'.
9294 (tramp-default-user-alist): Add "nc".
9295 (top): Remove completion function for "sftp". Add completion
9296 functions for "nc" and "psftp".
9297 (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
9298 Implement support for "nc" method.
9299 (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
9300 (tramp-remote-coding-commands, tramp-call-local-coding-command):
9301 Tweak docstring.
9302 (tramp-sh-handle-write-region): Tweak error message.
9303 (tramp-sh-handle-vc-registered): Remove backends when the remote
9304 binary does not exist.
9305 (tramp-find-inline-encoding): Do not raise an error.
9306 (tramp-make-copy-program-file-name): Tweak docstring. Handle also
9307 the "nc" case. Quote result also locally.
9308
9309 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
9310 (tramp-smb-handle-set-file-acl): Use `start-process'.
9311 (tramp-smb-handle-insert-directory): Use progress reporter.
9312 (tramp-smb-handle-rename-file): Flush also file properties of
9313 FILENAME.
9314
9315 * net/trampver.el: Update release number.
9316
9317 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9318
9319 * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
9320 add-to-list.
9321 (ses-localvars): Remove ses--local-printer-list, unused.
9322 (ses--metaprogramming): New macro. Use it to defvar variables.
9323 (ses-set-localvars): Simplify.
9324 (ses--locprn, ses-cell): Use defstruct. Change ses-cell's
9325 property-list into an alist.
9326 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
9327 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
9328 Remove; use defstruct accessors/setters instead.
9329 (ses-cell-formula-aset, ses-cell-printer-aset)
9330 (ses-cell-references-aset): Remove, use setf instead.
9331 (ses--alist-get): New function.
9332 (ses-cell-property): Rename from ses-cell-property-get and rewrite.
9333 Use an alist instead of a plist and don't do move-to-front since the
9334 list is always short.
9335 (ses-cell-property-get-fun, ses-cell-property-delq-fun)
9336 (ses-cell-property-set-fun, ses-cell-property-set)
9337 (ses-cell-property-pop-fun, ses-cell-property-get-handle)
9338 (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
9339 (ses--letref): New macro.
9340 (ses-cell-property-pop): Rewrite.
9341 (ses--cell): Rename from ses-cell and make it into a function.
9342 Make `formula' fallback on `value' if nil.
9343 (ses--local-printer): Rename from ses-local-printer and make it into
9344 a function.
9345 (ses-set-cell): Turn it into a macro so finding the accessor from the
9346 field name is done at compile time.
9347 (ses-repair-cell-reference-all): Test presence of `sym' rather than
9348 `ref' before adding `sym' to :ses-repair-reference.
9349 (ses-calculate-cell): Use ses--letref rather than
9350 ses-cell-property-get-handle.
9351 (ses-write-cells): Use a single prin1-to-string.
9352 (ses-setter-with-undo): New function.
9353 (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
9354 (ses-unset-with-undo): Remove.
9355 (ses-load): Prefer apply' over `eval'.
9356 (ses-read-printer, ses-set-column-width): Use standard "(default
9357 foo)" format.
9358
9359 2014-06-15 Glenn Morris <rgm@gnu.org>
9360
9361 * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
9362
9363 * progmodes/cc-langs.el: Require cl-lib. (Bug#17463)
9364 Replace delete-duplicates and mapcan by cl- versions throughout.
9365 And cl-macroexpand-all by macroexpand-all.
9366 (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
9367
9368 2014-06-15 Eli Zaretskii <eliz@gnu.org>
9369
9370 * subr.el (posn-col-row): Doc fix. (Bug#17768)
9371
9372 2014-06-15 Juri Linkov <juri@jurta.org>
9373
9374 * bindings.el: Put `ascii-character' property on keypad keys
9375 mapped to characters. (Bug#17759)
9376
9377 2014-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9378
9379 * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
9380 bumping forward into a closing paren (bug#17761).
9381
9382 * term/xterm.el (xterm--version-handler): Work around for OSX
9383 Terminal.app (bug#17607).
9384
9385 2014-06-14 Ron Schnell <ronnie@driver-aces.com>
9386
9387 * play/dunnet.el (dun-describe-room, dun-mode):
9388 If a lamp is in the room, you won't be eaten by a grue.
9389
9390 2014-06-13 Glenn Morris <rgm@gnu.org>
9391
9392 * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
9393 (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
9394 (compile-always): GNU make automatically passes
9395 command-line arguments to sub-makes.
9396
9397 * calendar/calendar.el (calendar-generate-window):
9398 Remove pointless call to font-lock-fontify-buffer.
9399
9400 2014-06-13 Matthias Meulien <orontee@gmail.com>
9401
9402 * simple.el (completion-list-mode-map): Navigate with tab and backtab
9403 (bug#17767).
9404
9405 2014-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9406
9407 * simple.el (set-mark-command): Simplify a bit.
9408
9409 2014-06-12 Nicolas Richard <theonewiththeevillook@yahoo.fr>
9410
9411 * help.el (help--key-binding-keymap): New function.
9412 (help--binding-locus): New function.
9413 (describe-key): Mention the keymap in which the binding was
9414 found. (bug#13948)
9415
9416 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9417
9418 * hippie-exp.el (he--all-buffers): New function.
9419 (try-expand-line-all-buffers, try-expand-list-all-buffers)
9420 (try-expand-dabbrev-all-buffers): Use it.
9421
9422 2014-06-12 Emilio C. Lopes <eclig@gmx.net>
9423
9424 * hippie-exp.el (try-expand-line-all-buffers)
9425 (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
9426 Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
9427 original buffer, in case they're buffer-local.
9428
9429 2014-06-12 Vincent Belaïche <vincentb1@users.sourceforge.net>
9430
9431 * ses.el (ses-initial-global-parameters-re): New defconst, a
9432 specific regexp is needed now that ses.el can handle both
9433 file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
9434 local printers.
9435 (ses-localvars): Add local variables needed for local printer handling.
9436 (ses-set-localvars): Handle hashmap initialization.
9437 (ses-paramlines-plist): Add param-line for number of local printers.
9438 (ses-paramfmt-plist): New defconst, needed for code factorization
9439 between functions `ses-set-parameter' and
9440 `ses-file-format-extend-paramter-list'
9441 (ses-make-local-printer-info): New defsubst.
9442 (ses-locprn-get-compiled, ses-locprn-compiled-aset)
9443 (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
9444 (ses-cell-printer-aset): New defmacro.
9445 (ses-local-printer-compile): New defun.
9446 (ses-local-printer): New defmacro.
9447 (ses-printer-validate, ses-call-printer): Add support for local
9448 printer functions.
9449 (ses-file-format-extend-paramter-list): New defun.
9450 (ses-set-parameter): Use const `ses-paramfmt-plist' for code
9451 factorization.
9452 (ses-load): Add support for local printer functions.
9453 (ses-read-printer): Update docstring and add support for local printer
9454 functions.
9455 (ses-refresh-local-printer, ses-define-local-printer): New defun.
9456 (ses-safe-printer): Add support for local printer functions.
9457
9458 2014-06-12 Ivan Andrus <darthandrus@gmail.com>
9459
9460 * ffap.el (ffap-lax-url): New var (bug#17723).
9461 (ffap-url-at-point): Use it.
9462 (ffap-file-at-point): Avoid returning just "/".
9463
9464 2014-06-12 Matthias Meulien <orontee@gmail.com>
9465
9466 * progmodes/python.el (import skeleton): New skeleton (bug#17672).
9467 (python-mode-map): Bind it.
9468
9469 * progmodes/python.el (class skeleton): Don't erase last char of class
9470 name (bug#17683).
9471
9472 2014-06-12 Cameron Desautels <camdez@gmail.com> (tiny change)
9473
9474 * help.el (where-is): Use `default' arg of completing-read (bug#17705).
9475
9476 2014-06-12 Kevin Ryde <user42_kevin@yahoo.com.au>
9477
9478 * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
9479 (bug#17745).
9480
9481 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9482
9483 * international/mule-cmds.el: Use lexical-binding.
9484 (ucs-names): Simplify.
9485
9486 2014-05-18 Eric Hanchrow <eric.hanchrow@gmail.com>
9487
9488 * progmodes/python.el (run-python): Use read-shell-command.
9489
9490 2014-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9491
9492 * rect.el: Make it possible to move bounds past EOL or into TABs.
9493 (operate-on-rectangle): Use apply-on-rectangle.
9494 (rectangle--mark-crutches): New var.
9495 (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
9496 (rectangle--crutches, rectangle--reset-crutches): New functions.
9497 (apply-on-rectangle): Obey crutches. Avoid setq.
9498 Fix missing final iteration if end is at EOB&BOL.
9499 (rectangle-mark-mode-map): Add remap bindings for
9500 exchange-point-and-mark and char/line movements.
9501 (rectangle--*-char): New function.
9502 (rectangle-exchange-point-and-mark, rectangle-right-char)
9503 (rectangle-left-char, rectangle-forward-char)
9504 (rectangle-backward-char, rectangle-next-line)
9505 (rectangle-previous-line): New commands.
9506 (rectangle--place-cursor): New function.
9507 (rectangle--highlight-for-redisplay): Use it. Use apply-on-rectangle.
9508
9509 2014-06-08 Glenn Morris <rgm@gnu.org>
9510
9511 * startup.el (initial-buffer-choice): Doc fix.
9512 Reset :version (adding an option does not merit a :version bump).
9513
9514 * bookmark.el (bookmark-load):
9515 * uniquify.el (uniquify-buffer-name-style): Doc fixes.
9516
9517 2014-06-08 Juri Linkov <juri@jurta.org>
9518
9519 * desktop.el: Activate auto-saving on window configuration changes.
9520 (desktop-save-mode, desktop-auto-save-timeout): Add/remove
9521 `desktop-auto-save-set-timer' to/from
9522 `window-configuration-change-hook'.
9523 (desktop-auto-save-set-timer): Change REPEAT arg of
9524 `run-with-idle-timer' from t to nil.
9525 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
9526
9527 2014-06-08 Santiago Payà i Miralta <santiagopim@gmail.com>
9528
9529 * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
9530 vc-hg-command (bug#17570).
9531
9532 2014-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9533
9534 * international/mule-cmds.el (ucs-names): Add special entry for BEL
9535 (bug#17702).
9536
9537 2014-06-08 Glenn Morris <rgm@gnu.org>
9538
9539 * startup.el (window-setup-hook): Doc fix.
9540
9541 * emacs-lisp/package.el (package-check-signature)
9542 (package-unsigned-archives): Doc fixes.
9543
9544 2014-06-08 Martin Rudalics <rudalics@gmx.at>
9545
9546 * window.el (display-buffer-use-some-window): Don't make window
9547 used smaller than it was before (Bug#17671).
9548
9549 2014-06-08 Eli Zaretskii <eliz@gnu.org>
9550
9551 * menu-bar.el (menu-bar-open): Fix last change: use the PC
9552 'redisplay' instead of '(sit-for 0)'.
9553
9554 2014-06-08 Michael Albinus <michael.albinus@gmx.de>
9555
9556 * net/tramp.el (tramp-ssh-controlmaster-options):
9557 Improve search regexp. (Bug#17653)
9558
9559 2014-06-08 Glenn Morris <rgm@gnu.org>
9560
9561 * emacs-lisp/package.el (package-pinned-packages): Doc fix.
9562
9563 2014-06-08 Eli Zaretskii <eliz@gnu.org>
9564
9565 * menu-bar.el (menu-bar-open): Fix invocation via M-x.
9566
9567 2014-06-06 Santiago Payà i Miralta <santiagopim@gmail.com>
9568
9569 * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
9570 (bug#17586).
9571
9572 * vc/vc-hg.el (vc-hg-log-graph): New var.
9573 (vc-hg-print-log): Use it.
9574 (vc-hg-root-log-format): Include branch name and bookmarks; ignore
9575 graph output (bug#17515).
9576
9577 2014-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9578
9579 * mouse.el (mouse-posn-property): Ignore buffer position info when the
9580 even happened elsewhere.
9581
9582 2014-06-06 Mario Lang <mlang@delysid.org>
9583
9584 * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
9585 `recenter' if `current-buffer' is equal to `window-buffer'.
9586
9587 2014-06-05 Leo Liu <sdl.web@gmail.com>
9588
9589 * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
9590
9591 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
9592
9593 * textmodes/tildify.el (tildify-foreach-region-outside-env):
9594 New function which calls a callback on portions of the buffer that are
9595 outside of ignored environments.
9596 (tildify-build-regexp): Remove function since it is now
9597 incorporated in `tildify-foreach-region-outside-env' where it is
9598 optimized and simplified by the use of `mapconcat'.
9599 (tildify-tildify): Return number of substitutions made so that…
9600 (tildify-count): …can be removed.
9601 (tildify-find-env): Accept a new PAIRS argument which was
9602 previously looked up in `tildify-ignored-environments-alist' each
9603 time the function was called. With this change, the lookup is
9604 performed only once in `tildify-foreach-region-outside-env'.
9605 (tildify-region): Greatly simplify the function since now most of
9606 the work is done by `tildify-foreach-region-outside-env'.
9607 (tildify-mode-alist): Simplify slightly by avoiding if and setq
9608 and instead using or.
9609
9610 * textmodes/tildify.el (tildify-ignored-environments-alist):
9611 Optimize environments regexes
9612
9613 Each time beginning of an environment to ignore is found,
9614 `tildify-find-env' needs to identify regexp for the ending
9615 of the environment. This is done by trying all the opening
9616 regexes on matched text in a loop, so to speed that up, this
9617 loop should have fewer things to match, which can be done by
9618 using alternatives in the opening regexes.
9619
9620 Coincidentally, this should make matching of the opening
9621 regexp faster as well thanks to the use of `regexp-opt' and
9622 having common prefix pulled from many regexes.
9623
9624 * textmodes/tildify.el (tildify-string-alist)
9625 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
9626 of supported modes since `xml-mode' is no longer a thing but just
9627 an alias to the former. Also include comments and insides of tags
9628 in `tildify-ignored-environments-alist' for XML modes. Finally,
9629 since XML does not define “&nbsp;”[1], use a numeric reference for
9630 a no-break space (namely “&#160;”)
9631
9632 [1] XML specification defines only a handful of predefined entities.
9633 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
9634 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
9635 >, &, ' and " respectively). This is in contrast to HTML and even
9636 XHTML which defined a whole bunch of entities including “&nbsp;”.
9637
9638 * textmodes/tildify.el (tildify-pattern-alist)
9639 (tildify-string-alist, tildify-ignored-environments-alist):
9640 Improve defcustom's types by adding more tags explaining what each
9641 value means and replace “sexp” used in
9642 `tildify-ignored-environments-alist' with a full type declaration.
9643
9644 * textmodes/tildify.el (tildify-find-env): Fix matched group
9645 indexes in end-regex building
9646
9647 When looking for a start of an ignore-environment, the regex is built
9648 by concatenating regexes of all the environments configured in
9649 `tildify-ignored-environments-alist'. So for example, the following
9650 list could be used to match TeX's \verb and \verb* commands:
9651
9652 (("\\\\verb\\(.\\)" . (1))
9653 ("\\\\verb\\*\\(.\\)" . (1)))
9654
9655 This would result in the following regex being used to find the start
9656 of any of the variants of the \verb command:
9657
9658 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
9659
9660 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
9661 won't match anything, and thus (match-string 1) will be nil, which
9662 will cause building of the end-matching regex to fail.
9663
9664 Fix this by using capture groups from the time when the opening
9665 regexes are matched individually.
9666
9667 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
9668 in `tildify-find-env'
9669
9670 The `tildify-ignored-environments-alist' allows the end-regex to
9671 be provided not as a static string but mix of strings and indexes
9672 of groups matched the begin-regex. For example, the “\verb!…!”
9673 TeX-command (where “!” is an arbitrary character) is handled
9674 using:
9675
9676 ("\\\\verb\\*?\\(.\\)" . (1))
9677
9678 In the same way, the following should be supported as well:
9679
9680 ("open-\\(.\\)" . ("end-" 1))
9681
9682 However the tildify-find-env function fails at
9683
9684 (concat result
9685 (if (stringp (setq aux (car expression)))
9686 expression ; BUG: expression is a list
9687 (regexp-quote (match-string aux))))
9688
9689 where the string part is handled incorrectly.
9690
9691 The most trivial fix would be to replace `expression' in the
9692 true-part of the if-statement with `aux', but instead, this commit
9693 optimizes `tildify-find-env' by changing it to use `mapconcat'
9694 rather than open-coded while-loop.
9695
9696 2014-06-05 Mario Lang <mlang@delysid.org>
9697
9698 * woman.el (woman-mapcan): Remove.
9699 (woman-parse-colon-path): Use cl-mapcan instead.
9700
9701 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
9702
9703 * register.el: Add link to Emacs manual in Commentary.
9704
9705 2014-06-02 Sam Steingold <sds@gnu.org>
9706
9707 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
9708 (popup-menu): ...here.
9709 (menu-bar-open): Use it to avoid an error when `lookup-key'
9710 returns a number.
9711
9712 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
9713
9714 * net/tramp.el (tramp-call-process): Add traces.
9715 (tramp-handle-unhandled-file-name-directory): Return "/".
9716
9717 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
9718
9719 Sync with upstream verilog-mode revision 3cd8144.
9720 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
9721 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
9722 (verilog-type-font-keywords): Add nor.
9723 (verilog-batch-execute-func): Force reading of Local Variables.
9724 Fix printing "no changes to be saved" with verilog-batch.
9725 (verilog-auto-arg-ports): Doc fix.
9726 Add verilog-auto-arg-format to support newlines in AUTOARG.
9727 (verilog-auto-arg): Doc fix.
9728
9729 2014-06-02 Glenn Morris <rgm@gnu.org>
9730
9731 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
9732 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
9733 * emulation/ws-mode.el: Move to obsolete/.
9734 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
9735
9736 2014-06-02 Eli Zaretskii <eliz@gnu.org>
9737
9738 * simple.el (keyboard-quit): Force update of mode lines, to remove
9739 the "Def" indicator, if we were defining a macro. (Bug#17615)
9740
9741 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9742
9743 * minibuffer.el (minibuffer-force-complete-and-exit):
9744 Obey minibuffer-default (bug#17545).
9745
9746 * progmodes/js.el (js-indent-line): Don't mix columns and chars
9747 (bug#17619).
9748
9749 * subr.el (set-transient-map): Don't wait for some "nested"
9750 transient-map to finish if we're only supposed to be active for
9751 the next command (bug#17642).
9752
9753 2014-06-02 Leo Liu <sdl.web@gmail.com>
9754
9755 * emacs-lisp/gv.el (window-buffer, window-display-table)
9756 (window-dedicated-p, window-hscroll, window-point, window-start):
9757 Fix gv-expander. (Bug#17630)
9758
9759 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9760
9761 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
9762 clicks (bug#17633).
9763
9764 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
9765 for the single comma, since ", " is *very* common in normal French text
9766 (bug#17643).
9767
9768 2014-06-02 Glenn Morris <rgm@gnu.org>
9769
9770 * emacs-lisp/package.el (package-check-signature)
9771 (package-unsigned-archives): Fix :version.
9772
9773 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9774
9775 * subr.el (sit-for): Don't run input-methods (bug#15614).
9776
9777 2014-06-02 Glenn Morris <rgm@gnu.org>
9778
9779 * cus-start.el: Fix some :version numbers.
9780
9781 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
9782
9783 * simple.el (deactivate-mark): Set mark-active to nil even if
9784 deactivation is done via setting transient-mark-mode to nil,
9785 since one is buffer-local and the other is global.
9786
9787 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
9788 there can't be more than 2 arguments (bug#17584).
9789
9790 2014-06-02 Glenn Morris <rgm@gnu.org>
9791
9792 * simple.el (filter-buffer-substring-functions)
9793 (filter-buffer-substring-function, buffer-substring-filters)
9794 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
9795
9796 * minibuffer.el (completion-in-region-functions, completion-in-region)
9797 (completion--in-region): Doc fixes.
9798
9799 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
9800 (expand-abbrev, abbrev--default-expand): Doc fixes.
9801
9802 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
9803
9804 Include sources used to create macuvs.h.
9805 * international/README: Refer to the Unicode Terms of Use rather
9806 than copying it bodily here, as that simplifies maintenance.
9807
9808 2014-06-01 Glenn Morris <rgm@gnu.org>
9809
9810 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
9811
9812 2014-05-31 Glenn Morris <rgm@gnu.org>
9813
9814 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
9815
9816 2014-05-30 Glenn Morris <rgm@gnu.org>
9817
9818 * loadup.el: Treat `command-line-args' more flexibly.
9819
9820 2014-05-30 Alan Mackenzie <acm@muc.de>
9821
9822 Guard (looking-at "\\s!") from XEmacs.
9823 * progmodes/cc-engine.el (c-state-pp-to-literal): Add guard form.
9824
9825 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu>
9826
9827 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
9828 The argument COUNT is now optional, to be more backward-compatible.
9829 Doc fix. (Bug#17560)
9830
9831 2014-05-29 Reuben Thomas <rrt@sc3d.org>
9832
9833 * whitespace.el (whitespace-report-region):
9834 Simplify documentation.
9835 (whitespace-report-region): Allow report-if-bogus to take the
9836 value `never', for non-interactive use.
9837 (whitespace-report): Refer to whitespace-report-region's
9838 documentation.
9839
9840 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
9841
9842 * whitespace.el: Use font-lock-flush. Minimize refontifications.
9843 Side benefit: it works without jit-lock.
9844 (whitespace-point--used): New buffer-local var.
9845 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
9846 (whitespace-color-off): Use font-lock-flush.
9847 (whitespace-point--used, whitespace-point--flush-used): New functions.
9848 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
9849 (whitespace-empty-at-eob-regexp): Use them.
9850 (whitespace-post-command-hook): Rewrite.
9851
9852 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
9853 (font-lock-fontify-buffer): Mark interactive-only.
9854 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
9855 Make buffer-local.
9856 (font-lock-specified-p): Remove redundant boundp check.
9857 (font-lock-flush-function, font-lock-ensure-function): New vars.
9858 (font-lock-turn-on-thing-lock): Set them.
9859 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
9860 (font-lock-after-change-function): Make `old-len' optional.
9861 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
9862 Call font-lock-flush, just in case.
9863 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
9864 recent Emacsen.
9865 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
9866 (vera-mode-map, vera-mode-menu): Remove bindings to it.
9867 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
9868 and with-syntax-table.
9869 * textmodes/conf-mode.el (conf-quote-normal):
9870 * progmodes/sh-script.el (sh-set-shell):
9871 * progmodes/prog-mode.el (prettify-symbols-mode):
9872 * progmodes/f90.el (f90-font-lock-n):
9873 * progmodes/cwarn.el (cwarn-mode):
9874 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
9875 * progmodes/compile.el (compilation-setup, compilation--unsetup):
9876 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
9877 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
9878 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
9879 font-lock-fontify-buffer-function and
9880 font-lock-unfontify-buffer-function.
9881 (rmail-unfontify-buffer-function, rmail-fontify-message):
9882 Use with-silent-modifications.
9883 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
9884 and font-lock-ensure.
9885 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
9886
9887 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
9888
9889 * emacs-lisp/package.el (package-generate-autoloads):
9890 Inhibit backup files.
9891
9892 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
9893
9894 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
9895 (bug#17608).
9896
9897 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
9898
9899 * textmodes/tildify.el (tildify-buffer, tildify-region):
9900 Add dont-ask option.
9901
9902 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
9903
9904 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
9905 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
9906
9907 * subr.el (internal--funcall-interactively): New.
9908 (internal--call-interactively): Remove.
9909 (called-interactively-p): Detect funcall-interactively instead of
9910 call-interactively.
9911 * simple.el (repeat-complex-command): Use funcall-interactively.
9912 (repeat-complex-command--called-interactively-skip): Remove.
9913
9914 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
9915
9916 * register.el (register-read-with-preview): Don't burp on
9917 frame switches (e.g. due to the frame we just popped).
9918
9919 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
9920 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
9921
9922 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
9923
9924 * cus-face.el (custom-face-attributes): Add :distant-foreground.
9925
9926 2014-05-26 Martin Rudalics <rudalics@gmx.at>
9927
9928 * window.el (window--dump-frame): Remove interactive specification.
9929
9930 2014-05-26 Glenn Morris <rgm@gnu.org>
9931
9932 * hippie-exp.el (he-line-search-regexp):
9933 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
9934
9935 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
9936
9937 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
9938 to avoid errors when trying to create or visit a file foo.todo
9939 located outside to todo-directory, and to allow having such files
9940 without them being tied to Todo mode (bug#17482).
9941 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
9942 (todo-archive-done-item, todo-find-filtered-items-file)
9943 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
9944 (todo-category-completions, todo-read-category): When visiting a
9945 Todo file, make sure we're in the right mode and the buffer local
9946 variables are set.
9947 (todo-make-categories-list, todo-reset-nondiary-marker)
9948 (todo-reset-done-string, todo-reset-comment-string):
9949 After processing all Todo files, kill the buffers of those files that
9950 weren't being visited before the processing.
9951 (todo-display-as-todo-file, todo-add-to-buffer-list)
9952 (todo-visit-files-commands): Comment out.
9953 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
9954 (auto-mode-alist): Remove add-to-list calls making Todo file
9955 extensions unrestrictedly tied to Todo modes.
9956
9957 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
9958
9959 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
9960 (advice-function-member-p): Tell it to check both names and functions
9961 (bug#17531).
9962 (advice--add-function): Adjust call accordingly.
9963
9964 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
9965
9966 * calendar/todo-mode.el: Miscellaneous bug fixes.
9967 (todo-delete-file): When deleting an archive but not its todo
9968 file, make sure to update the todo file's category sexp.
9969 (todo-move-category): Keep the moved category's name unless the
9970 file moved to already has a category with that name. If the
9971 numerically last category of the source file was moved, make the
9972 first category current to avoid selecting a nonexisting category.
9973 (todo-merge-category): Fix implementation to make merging to a
9974 category in another file work as documented. Eliminate now
9975 insufficient and unnecessary renaming of archive category, correct
9976 document string accordingly, and clarify it. If the numerically
9977 last category of the source file was merged, make the first
9978 category current to avoid selecting a nonexisting category.
9979 (todo-archive-done-item): When there are marked items and point
9980 happens to be on an unmarked item, ignore the latter. Don't leave
9981 point below last item after archiving marked items.
9982 (todo-unarchive-items): Fix logic to ensure unarchiving an item
9983 from an archive with only one category deletes the archive only
9984 when the category is empty after unarchiving. Make sure the todo
9985 file's category sexp is updated.
9986 (todo-read-file-name): Allow an existing file name even when it is
9987 not required (todo-move-category needs this to work as documented).
9988 (todo-add-file): Call todo-validate-name to reject the name of an
9989 existing todo file (needed due to fix in todo-read-file-name).
9990 (todo-reset-nondiary-marker): Also reset in filtered items files.
9991 (todo-reset-done-string, todo-reset-comment-string): Also reset in
9992 regexp filtered items files.
9993 (todo-reset-highlight-item): Also reset in filtered items files.
9994 Fix incorrect variable reference in document string.
9995
9996 2014-05-26 Glenn Morris <rgm@gnu.org>
9997
9998 * window.el (window--dump-frame): Avoid error in --without-x builds.
9999
10000 2014-05-26 Glenn Morris <rgm@gnu.org>
10001
10002 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
10003
10004 2014-05-26 Eli Zaretskii <eliz@gnu.org>
10005
10006 * frame.el (set-frame-font): Doc fix.
10007
10008 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
10009
10010 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
10011
10012 * emacs-lisp/package.el (package--download-one-archive):
10013 Use `write-region' instead of `save-buffer' to avoid running various
10014 hooks. (Bug#17155)
10015 (describe-package-1): Same. Insert newline at the end of the
10016 buffer if appropriate.
10017
10018 2014-05-26 Juri Linkov <juri@jurta.org>
10019
10020 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
10021 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
10022 Add more modifiers: meta, control, shift, hyper, super, alt.
10023 (Bug#17439)
10024
10025 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
10026 to allow changing its value with `set-variable'.
10027
10028 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
10029
10030 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
10031 #; comments.
10032 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
10033 New functions.
10034 (scheme-mode-variables): Set syntax-propertize-function instead of
10035 font-lock-syntactic-face-function.
10036 (scheme-font-lock-syntactic-face-function): Delete.
10037
10038 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
10039
10040 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
10041 (bug#17392).
10042
10043 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
10044
10045 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
10046 for a temporary file name.
10047
10048 2014-05-26 Eli Zaretskii <eliz@gnu.org>
10049
10050 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
10051
10052 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
10053
10054 * net/dbus.el (dbus-init-bus, dbus-call-method)
10055 (dbus-call-method-asynchronously, dbus-send-signal)
10056 (dbus-method-return-internal, dbus-method-error-internal):
10057 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
10058
10059 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
10060
10061 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
10062 methods which do not have a doc string. (Bug#17490)
10063
10064 2014-05-25 Tassilo Horn <tsdh@gnu.org>
10065
10066 * textmodes/reftex-ref.el (reftex-format-special): Make it work
10067 also for AMS Math's \eqref macro.
10068
10069 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
10070
10071 Arrange to never byte-compile the generated -pkg.el file.
10072
10073 * emacs-lisp/package.el (package-generate-description-file):
10074 Output first-line comment to set buffer-local var `no-byte-compile'.
10075 Suggested by Dmitry Gutov:
10076 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
10077
10078 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
10079
10080 Fix bug: Properly quote args to generated -pkg.el `define-package'.
10081
10082 * emacs-lisp/package.el (package-generate-description-file):
10083 Inline `package--alist-to-plist'; rewrite to selectively
10084 quote alist values that are not self-quoting.
10085 (package--alist-to-plist): Delete func.
10086
10087 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
10088
10089 * term/xterm.el (xterm-function-map): Add mapping for shifted
10090 keypad keys.
10091
10092 2014-05-24 Daniel Colascione <dancol@dancol.org>
10093
10094 * progmodes/subword.el (subword-find-word-boundary): Move point to
10095 correct spot before search. (Bug#17580)
10096
10097 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
10098 breaking the build.
10099
10100 2014-05-24 Leo Liu <sdl.web@gmail.com>
10101
10102 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
10103
10104 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
10105
10106 * minibuffer.el (completion--sreverse): Remove.
10107 (completion--common-suffix): Use `reverse' instead.
10108 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
10109
10110 2014-05-22 Glenn Morris <rgm@gnu.org>
10111
10112 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
10113
10114 2014-05-21 Daniel Colascione <dancol@dancol.org>
10115
10116 * files.el (interpreter-mode-alist): Add mksh.
10117
10118 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
10119 derivative.
10120 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
10121 mksh. Improve custom spec; allow regular expressions.
10122 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
10123 (sh-after-hack-local-variables): New function.
10124 (sh-mode): Use it; respect file-local `sh-shell' variable. (Bug#17333)
10125 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
10126 the normalization.
10127 (sh-canonicalize-shell): Rewrite to support regexes.
10128
10129 2014-05-21 Leo Liu <sdl.web@gmail.com>
10130
10131 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
10132
10133 2014-05-19 Leo Liu <sdl.web@gmail.com>
10134
10135 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
10136
10137 2014-05-18 Glenn Morris <rgm@gnu.org>
10138
10139 * loadup.el:
10140 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
10141
10142 2014-05-14 Sam Steingold <sds@gnu.org>
10143
10144 * progmodes/python.el (python-shell-get-or-create-process):
10145 Do not bind `current-prefix-arg' so that C-c C-z does not talk
10146 back unless requested.
10147
10148 2014-05-14 Glenn Morris <rgm@gnu.org>
10149
10150 * subr.el (with-file-modes): New macro.
10151 * printing.el (pr-save-file-modes): Make obsolete.
10152 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
10153 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
10154 Add with-file-modes.
10155 * doc-view.el (doc-view-make-safe-dir):
10156 * epg.el (epg--start):
10157 * files.el (locate-user-emacs-file, make-temp-file)
10158 (backup-buffer-copy, move-file-to-trash):
10159 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
10160 * eshell/esh-util.el (eshell-with-private-file-modes)
10161 (eshell-make-private-directory):
10162 * net/browse-url.el (browse-url-mosaic):
10163 * obsolete/mailpost.el (post-mail-send-it):
10164 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
10165 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
10166 Use with-file-modes.
10167
10168 * vc/emerge.el (emerge-make-temp-file): Simplify.
10169
10170 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
10171 Stefan Monnier <monnier@iro.umontreal.ca>
10172
10173 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
10174 suffix (bug#15419).
10175
10176 2014-05-14 Glenn Morris <rgm@gnu.org>
10177
10178 * vc/emerge.el (emerge-temp-file-prefix):
10179 Make pointless option obsolete.
10180 (emerge-temp-file-mode): Make non-functional option obsolete.
10181
10182 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
10183
10184 * net/browse-url.el (browse-url):
10185 Use `unhandled-file-name-directory' when setting `default-directory',
10186 in order to circumvent stalled remote connections. (Bug#17425)
10187
10188 2014-05-14 Glenn Morris <rgm@gnu.org>
10189
10190 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
10191 Optimize on Emacs, which has the relevant functions for ages.
10192
10193 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10194
10195 * simple.el (undo-make-selective-list): Obey undo-no-redo.
10196
10197 2014-05-12 Sam Steingold <sds@gnu.org>
10198
10199 * calendar/time-date.el (seconds-to-string): New function to
10200 pretty print time delay in seconds.
10201
10202 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10203
10204 * mpc.el (mpc-format): Trim Date to the year.
10205 (mpc-songs-hashcons): Shorten the Date field.
10206
10207 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
10208 into autoloading just because of a silly indirection.
10209
10210 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com>
10211
10212 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
10213
10214 2014-05-12 Glenn Morris <rgm@gnu.org>
10215
10216 * emacs-lisp/find-gc.el: Move to ../admin.
10217
10218 * printing.el (pr-version):
10219 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
10220
10221 * net/browse-url.el (browse-url-mosaic):
10222 Create /tmp/Mosaic.PID as a private file.
10223
10224 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10225
10226 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
10227 (advice--member-p): If name is given, only compare the name.
10228 (advice--remove-function): Don't stop at the first match.
10229 (advice--normalize-place): New function.
10230 (add-function, remove-function): Use it.
10231 (advice--add-function): Pass the name, if any, to
10232 advice--remove-function.
10233
10234 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
10235
10236 * electric.el (electric-indent-post-self-insert-function): Don't use
10237 `pos' after modifying the buffer (bug#17449).
10238
10239 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
10240
10241 * calendar/todo-mode.el (todo-insert-item-from-calendar):
10242 Correct argument list to conform to todo-insert-item--basic.
10243
10244 2014-05-12 Glenn Morris <rgm@gnu.org>
10245
10246 * files.el (cd-absolute): Test if directory is accessible
10247 rather than executable. (Bug#17330)
10248
10249 * progmodes/compile.el (recompile):
10250 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
10251
10252 * net/browse-url.el (browse-url-mosaic):
10253 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
10254 This is CVE-2014-3423.
10255
10256 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10257
10258 * mouse.el: Use the normal toplevel loop while dragging.
10259 (mouse-set-point): Handle multi-clicks.
10260 (mouse-set-region): Handle multi-clicks for drags.
10261 (mouse-drag-region): Update call accordingly.
10262 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
10263 Use the normal event loop instead of a local while/read-event loop.
10264 (global-map): Remove redundant bindings for double/triple-mouse-1.
10265 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
10266 Generate synthetic down events when the protocol only sends up events.
10267 (xterm-mouse-last): Remove.
10268 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
10269 terminal parameter instead.
10270 (xterm-mouse--set-click-count): New function.
10271 (xterm-mouse-event): Detect/generate double/triple clicks.
10272 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
10273
10274 * info.el (Info-quoted): New face.
10275 (Info-mode-font-lock-keywords): New var.
10276 (Info-mode): Use it.
10277
10278 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
10279 are a hindrance for C-x C-e.
10280
10281 2014-05-11 Leo Liu <sdl.web@gmail.com>
10282
10283 * net/rcirc.el (rcirc-sentinel): Fix last change.
10284
10285 2014-05-08 Sam Steingold <sds@gnu.org>
10286
10287 * net/rcirc.el (rcirc-reconnect-delay): New user option.
10288 (rcirc-sentinel): Auto-reconnect to the server if
10289 `rcirc-reconnect-delay' is non-0 (but not more often than its
10290 value in case the host is off-line).
10291
10292 2014-05-09 Eli Zaretskii <eliz@gnu.org>
10293
10294 * progmodes/grep.el (lgrep): Fix a typo in last commit.
10295
10296 2014-05-09 Glenn Morris <rgm@gnu.org>
10297
10298 * files.el (file-expand-wildcards):
10299 * man.el (Man-support-local-filenames):
10300 * printing.el (pr-i-directory, pr-interface-directory):
10301 * progmodes/grep.el (lgrep, rgrep):
10302 * textmodes/ispell.el (ispell-call-process)
10303 (ispell-call-process-region, ispell-start-process)
10304 (ispell-init-process): Use file-accessible-directory-p.
10305
10306 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10307
10308 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
10309 (xterm-mouse--read-event-sequence-1000): Return nil if something
10310 looks fishy.
10311 (xterm-mouse-event): Propagate it.
10312 (xterm-mouse-translate-1): Handle it.
10313
10314 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
10315
10316 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
10317 four slots of the parameter list are filled, make sure to pass it
10318 to the argument list of todo-insert-item--basic.
10319
10320 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10321
10322 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
10323 Add optional `seen' argument to detect and break infinite loops.
10324
10325 2014-05-08 Eli Zaretskii <eliz@gnu.org>
10326
10327 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
10328 (trace-unsafe, trace-use-tree): Make parentheses style be
10329 according to Emacs style.
10330
10331 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
10332
10333 * net/tramp-sh.el (tramp-remote-process-environment):
10334 Remove HISTFILE and HISTSIZE; it's too late to set them here.
10335 Add :version entry.
10336 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
10337 Add "HISTFILE=/dev/null" to the shell's env arguments. Do not send
10338 extra "PSx=..." commands.
10339 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
10340 (Bug#17295)
10341
10342 (tramp-uudecode): Replace the hard-coded temporary file name by a
10343 format specifier.
10344 (tramp-remote-coding-commands): Enhance docstring.
10345 (tramp-find-inline-encoding): Replace "%t" by a temporary file
10346 name. (Bug#17415)
10347 This is CVE-2014-3424.
10348
10349 2014-05-08 Glenn Morris <rgm@gnu.org>
10350
10351 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
10352 (find-gc-source-files): Update some names.
10353 (trace-call-tree): Simplify and update.
10354 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
10355 This is CVE-2014-3422.
10356
10357 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10358
10359 * minibuffer.el (completion--try-word-completion): Revert fix for
10360 Bug#15980 (bug#17375).
10361
10362 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
10363 Always store button numbers in the same way in xterm-mouse-last;
10364 Don't burp is xterm-mouse-last is not set as expected.
10365 Never return negative indices.
10366
10367 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
10368
10369 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
10370 Backtrack one char if the global/char-literal var matcher hits
10371 inside a string. The next char could be the beginning of an
10372 expression expansion.
10373
10374 2014-05-08 Glenn Morris <rgm@gnu.org>
10375
10376 * help-fns.el (describe-function-1): Test for an autoload before a
10377 macro, since `macrop' works on autoloads. (Bug#17410)
10378
10379 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
10380
10381 * electric.el (electric-indent-functions-without-reindent): Add yaml.
10382
10383 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
10384 Make sure the new point we return is within the new string (bug#17239).
10385
10386 2014-05-05 Daniel Colascione <dancol@dancol.org>
10387
10388 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10389 Port `gnu' pattern to rx.
10390
10391 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
10392
10393 Remove unneeded prompt when closing a buffer with active
10394 emacsclient ("Buffer ... still has clients"), #16548.
10395 * server.el (server-start): Remove the only call to:
10396 (server-kill-buffer-query-function): Remove.
10397
10398 2014-05-04 Leo Liu <sdl.web@gmail.com>
10399
10400 * calendar/diary-lib.el (calendar-chinese-month-name-array):
10401 Defvar to pacify compiler.
10402
10403 2014-05-04 Eli Zaretskii <eliz@gnu.org>
10404
10405 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
10406
10407 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10408
10409 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
10410 Use nil rather than `default' for the "default" appearance (bug#17388).
10411 * vc/ediff-util.el (ediff-inferior-compare-regions)
10412 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
10413 a misleading `default' value when it's really a boolean.
10414 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
10415 overlay is not visible.
10416
10417 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
10418
10419 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
10420 (todo-menu): Uncomment and update.
10421
10422 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
10423
10424 * calendar/todo-mode.el: Reimplement item editing to have the same
10425 basic user interface as item insertion, and make small UI and
10426 larger internal improvements to the latter.
10427 (todo-insert-item): Add reference to the Todo mode user manual to
10428 the documentation string.
10429 (todo-insert-item--basic): Rename from todo-basic-insert-item and
10430 adjust all callers. Change signature to combine diary and
10431 nonmarking arguments. Incorporate functionality of deleted item
10432 copying command and add error checking. Remove detailed
10433 descriptions of the arguments from the documentation string, since
10434 this is treated in the Todo mode user manual.
10435 (todo-copy-item, todo-edit-multiline-item)
10436 (todo-edit-done-item-comment, todo-edit-item-header)
10437 (todo-edit-item-time, todo-edit-item-date-from-calendar)
10438 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
10439 (todo-edit-item-date-year, todo-edit-item-date-month)
10440 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
10441 Remove.
10442 (todo-edit-item): Reimplement as wrapper command for
10443 todo-edit-item--next-key and make it distinguish done and not done
10444 todo items.
10445 (todo-edit-item--text): New function, replacing old command
10446 todo-edit-item and incorporating deleted commands
10447 todo-edit-multiline-item and todo-edit-done-item-comment.
10448 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
10449 Use only numeric value of prefix argument. Remove detailed
10450 descriptions of the arguments from the documentation string, since
10451 this is treated in the Todo mode user manual.
10452 (todo-edit-item--diary-inclusion): New function, replacing old
10453 command todo-edit-item-diary-inclusion and incorporating and fixing
10454 functionality of deleted command todo-edit-item-diary-nonmarking,
10455 making sure to remove todo-nondiary-marker when adding
10456 diary-nonmarking-symbol.
10457 (todo-edit-category-diary-inclusion): Make sure to delete
10458 diary-nonmarking-symbol when adding todo-nondiary-marker.
10459 (todo-edit-category-diary-nonmarking): Fix indentation.
10460 (todo-insert-item--parameters): Group diary and nonmarking
10461 parameters together.
10462 (todo-insert-item--apply-args): Adjust to signature of
10463 todo-insert-item--basic and incorporate copy parameter.
10464 Make small code improvements.
10465 (todo-insert-item--next-param): Improve prompt and adjust it to
10466 new parameter grouping. Remove obsolete code.
10467 (todo-edit-item--param-key-alist)
10468 (todo-edit-item--date-param-key-alist)
10469 (todo-edit-done-item--param-key-alist): New defconsts.
10470 (todo-edit-item--prompt): New variable.
10471 (todo-edit-item--next-key): New function.
10472 (todo-key-bindings-t): Bind "e" to todo-edit-item.
10473 Remove bindings of deleted commands.
10474
10475 2014-05-04 Leo Liu <sdl.web@gmail.com>
10476
10477 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
10478
10479 2014-05-04 Glenn Morris <rgm@gnu.org>
10480
10481 * allout-widgets.el (allout-widgets-tally)
10482 (allout-decorate-item-guides):
10483 * menu-bar.el (menu-bar-positive-p):
10484 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
10485 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
10486 * progmodes/js.el (js--inside-param-list-p)
10487 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
10488 * progmodes/prolog.el (region-exists-p):
10489 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
10490 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
10491 Doc fixes (replace `iff').
10492
10493 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
10494
10495 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
10496
10497 2014-05-04 Leo Liu <sdl.web@gmail.com>
10498
10499 Support Chinese diary entries in calendar and diary. (Bug#17393)
10500 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
10501 (calendar-chinese-from-absolute-for-diary)
10502 (calendar-chinese-to-absolute-for-diary)
10503 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
10504 (diary-chinese-list-entries): New functions to list and mark
10505 Chinese diary entries in the calendar window.
10506 (diary-chinese-anniversary)
10507 (diary-chinese-insert-anniversary-entry)
10508 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
10509 (diary-chinese-insert-yearly-entry): New commands to insert
10510 Chinese diary entries.
10511
10512 * calendar/diary-lib.el (diary-font-lock-keywords):
10513 Support font-locking Chinese dates.
10514
10515 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
10516 inserting Chinese diary entries.
10517
10518 * calendar/calendar.el (diary-chinese-entry-symbol):
10519 New customizable variable.
10520 (calendar-mode-map): Add bindings for inserting Chinese diary
10521 entries.
10522
10523 2014-05-03 Juri Linkov <juri@jurta.org>
10524
10525 * dired.el (dired-check-switches, dired-switches-recursive-p):
10526 New functions. (Bug#17218)
10527 (dired-switches-escape-p, dired-move-to-end-of-filename):
10528 Use `dired-check-switches'.
10529 (dired-insert-old-subdirs, dired-build-subdir-alist)
10530 (dired-sort-R-check): Use `dired-switches-recursive-p'.
10531
10532 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
10533
10534 * simple.el (undo-make-selective-list): New algorithm fixes
10535 incorrectness of position adjustments when undoing in region.
10536 (Bug#17235)
10537 (undo-elt-crosses-region): Make obsolete.
10538 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
10539 New functions to adjust positions using undo-deltas.
10540
10541 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
10542
10543 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
10544 the last consecutive closing paren (bug#17345).
10545
10546 2014-04-30 Reuben Thomas <rrt@sc3d.org>
10547
10548 * dired.el (dired-mode): make terminology for eXpunge command
10549 consistent. (Bug#17276)
10550
10551 2014-04-30 Eli Zaretskii <eliz@gnu.org>
10552
10553 * dired.el (dired-initial-position-hook, dired-initial-position):
10554 Doc string fixes.
10555
10556 2014-04-30 Glenn Morris <rgm@gnu.org>
10557
10558 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
10559
10560 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
10561
10562 * faces.el (face-spec-recalc): Apply X resources only after the
10563 defface spec has been applied. Thus, X resources are no longer
10564 overriden by the defface spec which also fixes issues on win32 where
10565 the toolbar coloring was wrong because it is set through X resources
10566 and was (wrongfully) overriden. (Bug#16694)
10567
10568 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
10569
10570 * textmodes/rst.el (electric-pair-pairs): Declare.
10571 (rst-mode): Set it (bug#17131).
10572
10573 2014-04-30 Juri Linkov <juri@jurta.org>
10574
10575 * desktop.el (desktop-value-to-string): Let-bind `print-length'
10576 and `print-level' to nil. (Bug#17351)
10577
10578 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
10579
10580 * battery.el (battery-update): Handle the case where battery
10581 status is "N/A" (bug#17319).
10582
10583 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
10584
10585 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
10586 to syntax-propertize.
10587 (ps-mode-auto-indent): Mark as obsolete.
10588 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
10589 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
10590 word regexp operators.
10591 (ps-mode-map): Move initialization into declaration. Remove binding
10592 for TAB, RET, >, ], and }.
10593 (ps-mode-syntax-table): Move initialization into declaration.
10594 Don't give word syntax to non-word chars.
10595 (ps-run-mode-map): Move initialization into declaration.
10596 (ps-mode-menu-main): Remove auto-indent entry.
10597 (ps-mode-smie-rules): New function.
10598 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
10599 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
10600 (ps-mode--string-syntax-table): New const.
10601 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
10602 New functions.
10603 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
10604 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
10605
10606 2014-04-27 Daniel Colascione <dancol@dancol.org>
10607
10608 * term/xterm.el (xterm-paste): Use large finite timeout when
10609 reading event to avoid putting keys in this-command-keys.
10610
10611 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
10612
10613 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
10614 (perl-syntax-propertize-function): Use it. Extend handling of
10615 here-docs to the unquoted case.
10616
10617 2014-04-25 Eli Zaretskii <eliz@gnu.org>
10618
10619 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
10620 Use equal-including-properties to compare help-echo strings (bug#17331).
10621
10622 2014-04-25 Leo Liu <sdl.web@gmail.com>
10623
10624 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10625 Fix syntax for @. (Bug#17325)
10626
10627 2014-04-25 Daniel Colascione <dancol@dancol.org>
10628
10629 * emacs-lisp/cl.el (gv): Require gv early to break eager
10630 macro-expansion cycles.
10631
10632 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
10633
10634 * simple.el (region-active-p): Check there's a mark (bug#17324).
10635
10636 * simple.el (completion-list-mode-map): Use choose-completion for the
10637 mouse binding as well (bug#17302).
10638 (completion-list-mode, completion-setup-function): Adjust docstring and
10639 echo area message accordingly.
10640 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
10641 calling convention of choose-completion.
10642 * comint.el (comint-dynamic-list-completions):
10643 * term.el (term-dynamic-list-completions): Accept choose-completion.
10644
10645 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
10646 &, |, +, - and * can't be a division (bug#17317).
10647
10648 * term/xterm.el (xterm--version-handler): Don't use modern xterm
10649 features on gnome-terminal (bug#16988).
10650
10651 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
10652
10653 Improve Scheme font-locking for (define ((foo ...) ...) ...).
10654
10655 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
10656 the declared object, ignore zero or more parens, not zero or one.
10657
10658 2014-04-24 Leo Liu <sdl.web@gmail.com>
10659
10660 * progmodes/xscheme.el (xscheme-expressions-ring)
10661 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
10662 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
10663 (xscheme-allow-output-p, xscheme-prompt)
10664 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
10665
10666 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
10667 Comment out unused functions.
10668
10669 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
10670
10671 * info.el: Use lexical-binding and cl-lib.
10672 Use defvar-local and setq-local instead of make-local-variable.
10673 (Info-apropos-matches): Avoid add-to-list.
10674 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
10675
10676 2014-04-24 Daniel Colascione <dancol@dancol.org>
10677
10678 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
10679
10680 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
10681
10682 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
10683
10684 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
10685
10686 * dired.el (dired-insert-set-properties): Do not consider
10687 subdirectory headings and empty lines to be information that
10688 `dired-hide-details-mode' should hide. (Bug#17228)
10689
10690 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
10691
10692 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10693 Remove test messages.
10694 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
10695 and `target' twice.
10696
10697 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
10698
10699 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
10700 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
10701
10702 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
10703
10704 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
10705
10706 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10707 Set "IFS=" when using read builtin, in order to preserve spaces in
10708 the file name. Add test messages for hunting a bug on hydra.
10709 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
10710
10711 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
10712
10713 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
10714 Don't prettify a word within a symbol.
10715
10716 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
10717
10718 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
10719 possible.
10720
10721 2014-04-22 Daniel Colascione <dancol@dancol.org>
10722
10723 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
10724 use defun to define `function-put'.
10725
10726 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
10727
10728 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
10729 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
10730 (lisp-mode-variables): Set font-lock-extra-managed-props.
10731
10732 * emacs-lisp/byte-run.el (function-put): New function.
10733 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
10734 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
10735 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
10736 Use them.
10737
10738 2014-04-22 Daniel Colascione <dancol@dancol.org>
10739
10740 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
10741 Add `full-p' parameter; when nil, call `macroexpand' instead of
10742 `macroexpand-all'.
10743
10744 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
10745 Improve docstrings.
10746
10747 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
10748 Use lambda function values, not quoted lambdas.
10749 (byte-compile-recurse-toplevel): Remove extraneous &optional.
10750
10751 * emacs-lisp/cl-macs.el
10752 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
10753 (cl-struct-slot-value): Conditionally use aref or nth so that the
10754 compiler produces optimal code.
10755
10756 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
10757
10758 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
10759 (inline): Don't inline cl--set-elt.
10760 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
10761 Define as inlinable instead.
10762 (cl-struct-set-slot-value): Remove.
10763
10764 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
10765 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
10766 Use setf instead.
10767
10768 2014-04-21 Daniel Colascione <dancol@dancol.org>
10769
10770 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
10771 last two parameters after all.
10772 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
10773 (cl--compiler-macro-assoc,cl-struct-slot-value)
10774 (cl-struct-set-slot-value): Stop using them.
10775
10776 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
10777
10778 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
10779 entry in image-mode-winprops-alist.
10780
10781 2014-04-21 Daniel Colascione <dancol@dancol.org>
10782
10783 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
10784 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
10785 (byte-compile-toplevel-file-form): Use it.
10786
10787 * emacs-lisp/cl-macs.el:
10788 (cl--loop-let): Properly destructure `while' clauses.
10789
10790 2014-04-20 Daniel Colascione <dancol@dancol.org>
10791
10792 * vc/vc.el (vc-root-dir): New public autoloaded function for
10793 generically finding the current VC root.
10794 * vc/vc-hooks.el (vc-not-supported): New error.
10795 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
10796
10797 2014-04-20 Daniel Colascione <dancol@dancol.org>
10798
10799 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
10800 argument.
10801 (cl--const-expr-val): cl--const-expr-val should macroexpand its
10802 argument in case we're inside a symbol-macrolet.
10803 (cl--do-arglist, cl--compiler-macro-typep)
10804 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
10805 environment to `cl--const-expr-val'.
10806 (cl-struct-sequence-type,cl-struct-slot-info)
10807 (cl-struct-slot-offset, cl-struct-slot-value)
10808 (cl-struct-set-slot-value): New functions.
10809
10810 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
10811
10812 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
10813 assignments such as "case=hello" (bug#17297).
10814
10815 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
10816
10817 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
10818 Do not autoload.
10819 (tramp-file-name-handler, tramp-completion-file-name-handler):
10820 Revert patch from 2014-04-10, it isn't necessary anymore.
10821 (tramp-autoload-file-name-handler)
10822 (tramp-register-autoload-file-name-handlers): New defuns.
10823 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
10824 (tramp-register-file-name-handlers): Remove also
10825 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
10826 Do not autoload its invocation, but eval it after loading of 'tramp.
10827
10828 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
10829
10830 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
10831
10832 2014-04-17 Daniel Colascione <dancol@dancol.org>
10833
10834 Add support for bracketed paste mode; add infrastructure for
10835 managing terminal mode enabling and disabling automatically.
10836
10837 * xt-mouse.el:
10838 (xterm-mouse-mode): Simplify.
10839 (xterm-mouse-tracking-enable-sequence)
10840 (xterm-mouse-tracking-disable-sequence): New constants.
10841 (turn-on-xterm-mouse-tracking-on-terminal)
10842 (turn-off-xterm-mouse-tracking-on-terminal):
10843 Use tty-mode-set-strings and tty-mode-reset-strings terminal
10844 parameters instead of random hooks.
10845 (turn-on-xterm-mouse-tracking)
10846 (turn-off-xterm-mouse-tracking): Delete.
10847
10848 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
10849 (xterm-paste-ending-sequence): New constant.
10850 (xterm-paste): New command used for bracketed paste support.
10851
10852 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
10853 (terminal-init-xterm-bracketed-paste-mode): New function.
10854 (terminal-init-xterm): Call it.
10855 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
10856 and tty-mode-reset-strings instead of random hooks.
10857 (xterm-turn-on-modify-other-keys)
10858 (xterm-turn-off-modify-other-keys)
10859 (xterm-remove-modify-other-keys): Delete obsolete functions.
10860
10861 * term/screen.el: Rewrite to just use the xterm code.
10862 Add copyright notice. Mention tmux.
10863
10864 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
10865
10866 * image-mode.el (image-mode-window-put): Also update the property of
10867 the "default window".
10868 * doc-view.el (doc-view-new-window-function): If no window
10869 exists, move to the last known page.
10870
10871 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
10872
10873 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
10874 here-documents (bug#17262).
10875
10876 2014-04-16 Eli Zaretskii <eliz@gnu.org>
10877
10878 * term/pc-win.el (x-list-fonts, x-get-selection-value):
10879 Provide doc strings, as required by snarf-documentation.
10880
10881 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
10882
10883 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
10884 arg of overlays-at. Use `invisible-p'.
10885
10886 * obsolete/lucid.el (extent-at):
10887 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
10888 overlays-at.
10889 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
10890
10891 2014-04-16 João Távora <joaotavora@gmail.com>
10892
10893 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
10894 links. (Bug#17217).
10895
10896 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10897
10898 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
10899 Use mapc to loop over a vector. (Bug#17257).
10900
10901 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
10902
10903 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
10904 patch, there are new problems with file names containing spaces.
10905 Get rid of backticks. (Bug#17238)
10906
10907 2014-04-16 João Távora <joaotavora@gmail.com>
10908
10909 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
10910 possible bug.
10911
10912 2014-04-16 Eli Zaretskii <eliz@gnu.org>
10913
10914 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
10915 (blink-cursor-mode): Mention customization variables and the
10916 effect of 'blink-cursor-blinks'.
10917
10918 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
10919
10920 * simple.el (undo): Prevent insertion of identity mapping into
10921 undo-equiv-table so as undo-only does not inf loop in the presence
10922 of consecutive nils in undo list.
10923
10924 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
10925
10926 * faces.el (make-face): Deprecate optional argument as it is no
10927 longer needed/used since the conditional X resources handling
10928 has been pushed down to make-face-x-resource-internal itself.
10929 (make-empty-face): Don't pass optional argument to make-face.
10930
10931 2014-04-16 Karl Fogel <kfogel@red-bean.com>
10932
10933 * savehist.el (savehist-save): Remove workaround for a read-passwd
10934 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
10935 noticing that the shim was still present.
10936
10937 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
10938
10939 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
10940
10941 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
10942
10943 * faces.el (face-set-after-frame-default): Remove unused local variable.
10944
10945 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
10946
10947 * progmodes/grep.el: Use lexical-binding.
10948 (grep-expand-template): Pass explicit lexical env to `eval'.
10949 (zrgrep): Let-bind grep-find-template explicitly.
10950
10951 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
10952 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
10953
10954 2014-04-12 Eli Zaretskii <eliz@gnu.org>
10955
10956 * international/characters.el <standard-case-table>: Add entries
10957 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
10958 Set category of Coptic characters be 'g' (Greek).
10959
10960 2014-04-12 Leo Liu <sdl.web@gmail.com>
10961
10962 * progmodes/octave.el (completion-table-with-cache):
10963 Define if not available.
10964 (octave-goto-function-definition, octave-sync-function-file-names)
10965 (octave-find-definition-default-filename):
10966 Backquote upattern for compatibility.
10967
10968 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
10969
10970 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
10971 name twice due to backticks. (Bug#17238)
10972
10973 2014-04-12 Glenn Morris <rgm@gnu.org>
10974
10975 * term/w32-win.el (x-win-suspend-error):
10976 * term/x-win.el (x-win-suspend-error): Sync docs.
10977
10978 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
10979
10980 * faces.el (make-face): Remove deprecated optional argument.
10981 The conditional application of X resources is handled directly by
10982 make-face-x-resource-internal since Emacs 24.4.
10983 (make-empty-face): Don't pass optional argument to make-face.
10984
10985 2014-04-11 Glenn Morris <rgm@gnu.org>
10986
10987 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
10988
10989 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
10990
10991 Ediff's overlay priorities cause more trouble than they solve.
10992 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
10993 (ediff-highest-priority): Remove function (bug#17234).
10994 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
10995 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
10996 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
10997 overlay priorities.
10998
10999 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
11000
11001 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
11002 entry; use symbol boundaries to avoid mis-matches.
11003
11004 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
11005
11006 * net/tramp.el (tramp-file-name-handler)
11007 (tramp-completion-file-name-handler): Avoid recursive loading.
11008
11009 * net/tramp-sh.el (tramp-make-copy-program-file-name):
11010 Quote result also locally.
11011
11012 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11013
11014 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
11015 Remove left-over code.
11016
11017 * newcomment.el (comment-indent-new-line): Sink code where it's used.
11018 Reuse the previous comment's indentation unconditionally if it's on its
11019 own line.
11020
11021 2014-04-09 Daniel Colascione <dancol@dancol.org>
11022
11023 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
11024 `no-syntax-crossing' arguments. Forward to `up-list'.
11025 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
11026 Implement logic for escaping from strings. Use narrowing to deal
11027 with corner cases.
11028
11029 2014-04-09 Leo Liu <sdl.web@gmail.com>
11030
11031 * net/rcirc.el (rcirc-connection-info): New variable.
11032 (rcirc-connect): Use it to store connection info.
11033 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
11034 for killed process.
11035 (rcirc-cmd-reconnect): New command. (Bug#17045)
11036 (rcirc-mode, set-rcirc-encode-coding-system)
11037 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
11038
11039 2014-04-09 Daniel Colascione <dancol@dancol.org>
11040
11041 * emacs-lisp/cl-indent.el: Add comment claiming
11042 facility is also good for elisp.
11043 (lisp-indent-find-method): New function.
11044 (common-lisp-indent-function): Recognize cl-loop.
11045 (common-lisp-indent-function-1): Recognize cl constructs; use
11046 `lisp-indent-find-method' instead of `get' directly.
11047 (if): Use else-body style for elisp.
11048
11049 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
11050
11051 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
11052 Module methods. (Bug#17216)
11053
11054 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
11055
11056 * help.el (describe-bindings): Fix buffer handling (bug#17210).
11057 (describe-bindings-internal): Mark obsolete.
11058
11059 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
11060
11061 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
11062 buffer-file-name, and buffer-file-truename any more.
11063
11064 2014-04-08 Leo Liu <sdl.web@gmail.com>
11065
11066 Use lexical-binding and require cl-lib.
11067 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
11068 (rcirc-handler-generic, rcirc-fill-paragraph)
11069 (rcirc-format-response-string, rcirc-target-buffer)
11070 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
11071 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
11072 (rcirc-ctcp-sender-PING, rcirc-browse-url)
11073 (rcirc-markup-timestamp, rcirc-markup-attributes)
11074 (rcirc-markup-my-nick, rcirc-markup-urls)
11075 (rcirc-markup-bright-nicks, rcirc-markup-fill)
11076 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
11077 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
11078 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
11079 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
11080 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
11081 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
11082 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
11083 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
11084 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
11085 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
11086 use cl-lib.
11087
11088 2014-04-07 João Távora <joaotavora@gmail.com>
11089
11090 * elec-pair.el (electric-pair--syntax-ppss):
11091 When inside comments parse from comment beginning.
11092 (electric-pair--balance-info): Fix typo in comment.
11093 (electric-pair--in-unterminated-string-p): Delete.
11094 (electric-pair--unbalanced-strings-p): New function.
11095 (electric-pair-string-bound-function): New var.
11096 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
11097 according to `electric-pair--in-unterminated-string-p'
11098
11099 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
11100 Inhibit quote pairing if point-max is inside an unterminated string.
11101 (electric-pair--looking-at-unterminated-string-p): Delete.
11102 (electric-pair--in-unterminated-string-p): New function.
11103
11104 2014-04-07 Glenn Morris <rgm@gnu.org>
11105
11106 * shell.el (shell-directory-tracker):
11107 Go back to just ignoring failures. (Bug#17159)
11108
11109 2014-04-07 João Távora <joaotavora@gmail.com>
11110
11111 Fix `electric-pair-delete-adjacent-pairs' in modes binding
11112 backspace. (Bug#16981)
11113 * elec-pair.el (electric-pair-backward-delete-char): Delete.
11114 (electric-pair-backward-delete-char-untabify): Delete.
11115 (electric-pair-mode-map): Bind backspace to a menu item filtering
11116 a new `electric-pair-delete-pair' command.
11117 (electric-pair-delete-pair): New command.
11118
11119 * progmodes/python.el (python-electric-pair-string-delimiter):
11120 Fix triple-quoting electricity. (Bug#17192)
11121
11122 * elec-pair.el (electric-pair-post-self-insert-function):
11123 Don't skip whitespace when `electric-pair-text-pairs' and
11124 `electric-pair-pairs' were used. syntax to
11125 electric-pair--skip-whitespace. (Bug#17183)
11126
11127 2014-04-07 Eli Zaretskii <eliz@gnu.org>
11128
11129 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
11130 "<F>". (Bug#17199)
11131
11132 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
11133
11134 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
11135 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
11136
11137 2014-04-07 Glenn Morris <rgm@gnu.org>
11138
11139 * help.el (view-lossage): Doc tweak.
11140
11141 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
11142
11143 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
11144 only when inhibit-x-resources is nil, and do that earlier in the
11145 function. Doc fix. (Bug#16694)
11146 (face-spec-choose): Accept additional optional argument, whose
11147 value is returned if no matching attributes are found.
11148 (face-spec-recalc): Use the new optional argument when calling
11149 face-spec-choose. (Bug#16378)
11150 (make-face-x-resource-internal): Do nothing when
11151 inhibit-x-resources is non-nil. Don't touch the default face if
11152 reversed video is given--as was done in previous versions of Emacs.
11153 (face-set-after-frame-default): Don't call
11154 make-face-x-resource-internal here. (Bug#16434)
11155
11156 2014-04-07 Tassilo Horn <tsdh@gnu.org>
11157
11158 * doc-view.el (doc-view-bookmark-jump):
11159 Use `bookmark-after-jump-hook' to jump to the right page after the
11160 buffer is shown in a window. (bug#16090)
11161
11162 2014-04-07 Eli Zaretskii <eliz@gnu.org>
11163
11164 * international/characters.el (mirroring): Fix last change:
11165 instead of loading uni-mirrored.el explicitly, do that implicitly
11166 by creating the 'mirroring' uniprop table. This avoids announcing
11167 the loading of uni-mirrored.el.
11168
11169 2014-04-07 Glenn Morris <rgm@gnu.org>
11170
11171 * files.el (buffer-stale--default-function)
11172 (buffer-stale-function, revert-buffer--default):
11173 * autorevert.el (auto-revert-buffers): Doc tweaks.
11174
11175 2014-04-07 Eli Zaretskii <eliz@gnu.org>
11176
11177 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
11178
11179 2014-04-07 Glenn Morris <rgm@gnu.org>
11180
11181 * files.el (make-backup-file-name-function)
11182 (make-backup-file-name, make-backup-file-name--default-function)
11183 (make-backup-file-name-1, find-backup-file-name)
11184 (revert-buffer-function, revert-buffer-insert-file-contents-function)
11185 (buffer-stale--default-function, buffer-stale-function)
11186 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
11187 (revert-buffer, revert-buffer--default)
11188 (revert-buffer-insert-file-contents--default-function):
11189 Doc fixes related to defaults no longer being nil.
11190 (make-backup-file-name-function): Bump :version.
11191 Restore nil as a valid but deprecated custom type.
11192
11193 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
11194
11195 * progmodes/perl-mode.el (perl-syntax-propertize-function):
11196 Handle $' used as a variable (bug#17174).
11197
11198 * progmodes/perl-mode.el (perl-indent-new-calculate):
11199 Handle forward-sexp failure (bug#16985).
11200 (perl-syntax-propertize-function): Add "foreach" and "for" statement
11201 modifiers introducing expressions (bug#17116).
11202
11203 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
11204
11205 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
11206
11207 2014-04-05 Leo Liu <sdl.web@gmail.com>
11208
11209 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11210 Add define-compilation-mode.
11211
11212 2014-04-04 João Távora <joaotavora@gmail.com>
11213
11214 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
11215 parse from comment beginning.
11216 (electric-pair--balance-info): Fix typo in comment.
11217 (electric-pair--in-unterminated-string-p): Delete.
11218 (electric-pair--unbalanced-strings-p): New function.
11219 (electric-pair-string-bound-function): New var.
11220 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
11221 according to `electric-pair--in-unterminated-string-p'.
11222
11223 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
11224
11225 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
11226 Move declaration before first use.
11227 (reftex-move-to-next-arg): Silence compiler warning.
11228
11229 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
11230
11231 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
11232 Use `window-total-width' instead of `window-width'.
11233
11234 2014-04-03 Daniel Colascione <dancol@dancol.org>
11235
11236 * subr.el (set-transient-map): Remove rms's workaround entirely;
11237 use new `suspicious-object' subr to mark our lambda for closer
11238 scrutiny during gc.
11239
11240 2014-04-02 Richard Stallman <rms@gnu.org>
11241
11242 * subr.el (set-transient-map): Comment out previous change.
11243
11244 2014-04-02 Glenn Morris <rgm@gnu.org>
11245
11246 * menu-bar.el (menu-bar-file-menu):
11247 * vc/ediff.el (ediff-current-file):
11248 Update for revert-buffer-function no longer being nil by default.
11249
11250 * simple.el (command-execute): Respect nil disabled-command-function.
11251
11252 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
11253
11254 * simple.el (command-execute): Do not execute the command when it
11255 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
11256
11257 2014-04-02 Juri Linkov <juri@jurta.org>
11258
11259 * dired-aux.el (dired-compress-file): Don't use string-match-p
11260 because its match data is used afterwards.
11261
11262 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
11263
11264 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
11265 0 like nil.
11266
11267 2014-04-02 João Távora <joaotavora@gmail.com>
11268
11269 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
11270 Inhibit quote pairing if point-max is inside an unterminated string.
11271 (electric-pair--looking-at-unterminated-string-p):
11272 Delete.
11273 (electric-pair--in-unterminated-string-p): New function.
11274
11275 2014-04-01 Daniel Colascione <dancol@dancol.org>
11276
11277 * minibuffer.el (minibuffer-complete): Prevent assertion failure
11278 when trying to complete the prompt.
11279
11280 2014-03-31 Leo Liu <sdl.web@gmail.com>
11281
11282 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
11283 Refactor out eldoc-documentation-function-default.
11284 (eldoc-documentation-function-default): New function.
11285 (eldoc-documentation-function): Change value.
11286
11287 2014-03-31 Glenn Morris <rgm@gnu.org>
11288
11289 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
11290
11291 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
11292 (vhdl-compose-components-package, vhdl-compose-configuration):
11293 Abbreviate default-directory (missing from some previous upstream sync).
11294
11295 2014-03-31 Reto Zimmermann <reto@gnu.org>
11296
11297 Sync with upstream vhdl mode v3.35.2.
11298 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
11299 (top-level): No longer require assoc.
11300 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
11301 New functions. Use throughout to replace aget etc.
11302 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
11303 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
11304 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
11305 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
11306 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
11307 except `vhdl-compiler'.
11308 (vhdl-error-regexp-add-emacs): Remove all other compilers,
11309 when appropriate.
11310
11311 2014-03-31 Glenn Morris <rgm@gnu.org>
11312
11313 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
11314 Revert 2014-03-26 merge goof; go back to using defalias.
11315
11316 2014-03-30 Daniel Colascione <dancol@dancol.org>
11317
11318 * comint.el (comint-send-input):
11319 Deactivate completion-in-region-mode before we send comint input.
11320 (Bug#17139).
11321
11322 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
11323 on keyboard-quit.
11324
11325 2014-03-29 Glenn Morris <rgm@gnu.org>
11326
11327 * textmodes/reftex.el: Manage most autoloads automatically.
11328 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
11329 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
11330 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
11331 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
11332 * textmodes/reftex-toc.el: Set generated-autoload-file,
11333 and add autoload cookies for reftex.el.
11334 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
11335
11336 2014-03-28 Glenn Morris <rgm@gnu.org>
11337
11338 * cus-start.el (report-emacs-bug-address): Set custom properties.
11339 * mail/emacsbug.el (report-emacs-bug-address):
11340 Variable is now defined in emacs.c.
11341
11342 * mail/emacsbug.el (report-emacs-bug):
11343 Include system-configuration-features.
11344
11345 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
11346
11347 * simple.el (cycle-spacing): Never delete spaces on first run by
11348 default, but do so in a new 'fast mode and if there are already
11349 N spaces (the previous behavior).
11350 Compare N with its value in previous invocation so that changing
11351 prefix argument restarts `cycle-spacing' sequence.
11352 The idea is that with this change, binding M-SPC to
11353 `cycle-spacing' should not introduce any changes in behavior of
11354 the binding so long as users do not type M-SPC twice in a raw with
11355 the same prefix argument or lack thereof.
11356
11357 2014-03-28 Glenn Morris <rgm@gnu.org>
11358
11359 * faces.el (term-file-aliases): New variable.
11360 (tty-run-terminal-initialization): Respect term-file-aliases.
11361 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
11362 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
11363 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
11364
11365 2014-03-27 Glenn Morris <rgm@gnu.org>
11366
11367 * startup.el (inhibit-startup-hooks): Doc tweak.
11368 (normal-top-level): Simplify running of hooks.
11369 For window-setup-hook, respect inhibit-startup-hooks.
11370 (command-line-1): Don't set window-setup-hook to nil.
11371
11372 Allow selective autoloading from obsolete/ directory.
11373 * Makefile.in (obsolete-autoloads): New rule.
11374 (autoloads): Run obsolete-autoloads.
11375 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
11376 * simple.el (iswitchb-mode): Remove hand-written autoloads.
11377
11378 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
11379
11380 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11381 Highlight special globals with font-lock-builtin-face. (Bug#17057)
11382
11383 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
11384 Don't propertize `?' or `!' as symbol constituent when after
11385 colon. (Bug#17097)
11386
11387 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
11388
11389 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
11390 which is no longer needed and causes trouble in GTK builds (bug#17046).
11391
11392 * emacs-lisp/package-x.el (package--archive-contents-from-url):
11393 Use url-insert-file-contents; package-handle-response no longer exists.
11394
11395 2014-03-26 Daniel Colascione <dancol@dancol.org>
11396
11397 * simple.el (process-menu-mode-map): New variable.
11398 (process-menu-delete-process): New command.
11399
11400 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
11401
11402 * emacs-lisp/package.el: Fix bug#16733 (again).
11403 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
11404 (url-http-target-url): Remove unused declarations.
11405 (package-handle-response): Remove.
11406 (package--with-work-buffer): Use url-insert-file-contents and simplify.
11407 (package--download-one-archive): Use current-buffer instead of
11408 dynamic binding of `buffer'.
11409 (describe-package-1): Do not decode readme-string.
11410
11411 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
11412
11413 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
11414
11415 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
11416 from 2014-03-07, it decreases performance unnecessarily. Let-bind
11417 `remote-file-name-inhibit-cache' to nil in the second pass.
11418 (tramp-find-executable): Do not call "which" on SunOS.
11419 (tramp-send-command-and-check): Fix docstring.
11420 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
11421 check whether source directory has set the sticky bit.
11422
11423 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
11424
11425 * simple.el (primitive-undo): Only process marker adjustments
11426 validated against their corresponding (TEXT . POS). Issue warning
11427 for lone marker adjustments in undo history. (Bug#16818)
11428 (undo-make-selective-list): Add marker adjustments to selective
11429 undo list based on whether their corresponding (TEXT . POS) is in
11430 the region. Remove variable adjusted-markers, which was unused
11431 and only non nil during undo-make-selective-list.
11432 (undo-elt-in-region): Return nil when passed a marker adjustment
11433 and explain in function doc.
11434
11435 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
11436
11437 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
11438
11439 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
11440
11441 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
11442 Match special global variables without curlies, too.
11443 (ruby-font-lock-keywords): Simplify the matcher for special global
11444 variables. Don't require a non-word character after the variable.
11445 (Bug#17057)
11446
11447 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11448
11449 * simple.el (redisplay-highlight-region-function): Increase priority of
11450 overlay to make sure boundaries are visible (bug#15899).
11451
11452 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
11453
11454 * frameset.el (frameset--initial-params): Fix typo in parameter name.
11455 (frameset-restore): Compare display strings with equal.
11456
11457 * frame.el (make-frame): Don't quote display name in error message,
11458 it is already a string.
11459
11460 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
11461
11462 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
11463 the password.
11464
11465 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
11466
11467 * emacs-lisp/package.el (package--add-to-archive-contents):
11468 Include already installed and built-in packages in
11469 `package-archive-contents'.
11470 (package-install): Don't include already installed packages in the
11471 options during interactive invocation. (Bug#16762)
11472 (package-show-package-list): If the buffer is already displayed in
11473 another window, switch to that window.
11474
11475 2014-03-26 Reto Zimmermann <reto@gnu.org>
11476
11477 Sync with upstream vhdl mode v3.35.1.
11478 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
11479 (vhdl-compiler-alist): Doc fix.
11480 (vhdl-goto-line): Remove.
11481 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
11482 (vhdl-mode) <paragraph-start>: Fix value.
11483 (vhdl-fix-statement-region): Not `for' in wait-statement.
11484 (vhdl-beautify-region): Also (un)tabify.
11485 (vhdl-get-visible-signals):
11486 Scan declarative part of generate statements.
11487 (vhdl-template-record): Fix indentation for record type declaration.
11488 (vhdl-expand-abbrev, vhdl-expand-paren):
11489 Revert to using fset again rather than defalias.
11490 (vhdl-scan-directory-contents): Tweak.
11491 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
11492 (vhdl-compose-components-package):
11493 Replace vhdl-goto-line with forward-line.
11494 (top-level): Tweak speedbar frame selection.
11495 (vhdl-generate-makefile-1): Support for compilers with no
11496 unit-to-file name mapping (create directory with dummy files).
11497
11498 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
11499
11500 Sync with upstream verilog-mode revision 702457d.
11501 * progmodes/verilog-mode.el (verilog-mode-version): Update.
11502 (create-lockfiles): Declare.
11503 (verilog-read-decls): Fix module header imports, bug709.
11504 Reported by Victor Lau.
11505 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
11506 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
11507 interface-only modules, bug721. Reported by Dean Hoyt.
11508
11509 2014-03-26 Glenn Morris <rgm@gnu.org>
11510
11511 * obsolete/gulp.el: Move here from emacs-lisp/.
11512
11513 * files.el (lock-buffer, unlock-buffer, file-locked-p):
11514 Remove fallback aliases, since they are always defined now.
11515
11516 2014-03-24 Daniel Colascione <dancol@dancol.org>
11517
11518 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
11519 instead of cl-loop search function.
11520
11521 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
11522
11523 * calendar/parse-time.el (parse-time-iso8601-regexp)
11524 (parse-iso8601-time-string): Copy from `url-dav' so that we can use
11525 it more generally.
11526
11527 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
11528
11529 * net/dns.el (network-interface-list): Define for XEmacs.
11530
11531 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
11532
11533 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
11534 the network interfaces changed.
11535 (dns-query): Use it to flush the data.
11536
11537 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
11538
11539 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
11540
11541 2014-03-23 Daniel Colascione <dancol@dancol.org>
11542
11543 Change subword-mode to use `find-word-boundary-function-table' and
11544 replace `capitalized-words-mode'. Also, convert to lexical binding.
11545 * progmodes/cap-words.el: Delete now-obsolete file.
11546 * progmodes/subword.el: Reimplement using
11547 `find-word-boundary-function-table'.
11548 (subword-mode-map): Hollow out.
11549 (capitalized-words-mode): Define as obsolete alias for
11550 `subword-mode'.
11551 (subword-mode, superword-mode): Tweak documentation to reflect new
11552 implementation; call `subword-setup-buffer'.
11553 (subword-forward, subword-capitalize): Add underscore to indicate
11554 unused variable.
11555 (subword-find-word-boundary-function-table): New constant.
11556 (subword-empty-char-table): New constant.
11557 (subword-setup-buffer): New function.
11558 (subword-find-word-boundary): New function.
11559
11560 2014-03-23 Daniel Colascione <dancol@dancol.org>
11561
11562 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
11563 list to look for keyword arguments instead of `memq', fixing
11564 (Bug#3647) --- unfortunately, only for freshly-compiled code.
11565 Please make bootstrap.
11566
11567 2014-03-22 Glenn Morris <rgm@gnu.org>
11568
11569 * dired.el (dired-read-regexp): Make obsolete.
11570 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
11571 (dired-flag-files-regexp):
11572 * dired-aux.el (dired-mark-read-regexp):
11573 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
11574
11575 * startup.el (fancy-startup-text):
11576 * help.el (describe-gnu-project): Visit online info about GNU project.
11577
11578 * help-fns.el (help-fns--interactive-only): New function.
11579 (help-fns-describe-function-functions): Add the above function.
11580 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
11581 (next-line, previous-line): Remove hand-written interactive-only
11582 information from doc strings, it is auto-generated now.
11583 * bookmark.el (bookmark-write):
11584 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
11585 (epa-mail-import-keys): Mark interactive-only,
11586 and remove hand-written interactive-only information from doc strings.
11587 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
11588 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
11589 * files.el (not-modified):
11590 * simple.el (mark-whole-buffer): Mark interactive-only.
11591
11592 * emacs-lisp/byte-run.el (defun-declarations-alist):
11593 Add interactive-only. Doc tweak.
11594 (macro-declarations-alist): Doc tweak.
11595 * subr.el (declare): Doc tweak (add xref to manual).
11596 * comint.el (comint-run):
11597 * files.el (insert-file-literally, insert-file):
11598 * replace.el (replace-string, replace-regexp):
11599 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
11600 (delete-forward-char, goto-line, insert-buffer, next-line)
11601 (previous-line): Set interactive-only via declare.
11602
11603 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
11604
11605 * emacs-lisp/package.el (package-desc): Use the contents of the
11606 quoted form, not its cdr. (Bug#16873)
11607
11608 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
11609
11610 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
11611 benefit of doc.c; change parameter profile to match the X function.
11612
11613 2014-03-22 Leo Liu <sdl.web@gmail.com>
11614
11615 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
11616 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
11617
11618 2014-03-21 Richard Stallman <rms@gnu.org>
11619
11620 * battery.el (battery-linux-sysfs): Search for each field
11621 from the beginning of the buffer.
11622
11623 * subr.el (set-transient-map): Clear out function and value
11624 of the temporary symbol when we're done with it.
11625
11626 * mail/rmailsum.el (rmail-summary-delete-forward):
11627 Optimize case of reaching end and handling count.
11628 (rmail-summary-mark-deleted): Optimize when N is current msg.
11629 Don't create new summary line.
11630 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
11631 (rmail-summary-undelete-many): Rewrite for speed.
11632 (rmail-summary-msg-number): New function.
11633
11634 * mail/rmail.el (rmail-delete-message): Update summary.
11635 (rmail-undelete-previous-message): Handle repeat count arg.
11636 (rmail-delete-backward, rmail-delete-forward): Likewise.
11637
11638 2014-03-21 Daniel Colascione <dancol@dancol.org>
11639
11640 * mail/emacsbug.el (report-emacs-bug): Include memory usage
11641 information in bug reports.
11642
11643 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
11644
11645 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
11646 and `tramp-copy-env'.
11647
11648 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
11649 (tramp-maybe-open-connection): Handle `tramp-login-env'.
11650
11651 2014-03-21 Glenn Morris <rgm@gnu.org>
11652
11653 * electric.el (electric-indent-post-self-insert-function): Add doc.
11654
11655 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
11656
11657 * emacs-lisp/package.el (package-compute-transaction):
11658 Use `version-list-<=' to compare the requirement version against
11659 the version of package already to be installed. Update the error
11660 message. (Bug#16826)
11661
11662 * progmodes/ruby-mode.el (ruby-smie-rules):
11663 Add indentation rule for ` @ '. (Bug#17050)
11664
11665 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
11666
11667 * align.el (align-regexp): Remove superfluous backslash.
11668
11669 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
11670 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
11671 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
11672 Fix docstring typos.
11673 (ffap-next): Use C-u in docstring.
11674 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
11675 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
11676 Remove superfluous backslashes.
11677 (ffap-string-at-point): Reflow docstring.
11678
11679 * server.el (server-host): Reflow docstring.
11680 (server-unload-function): Fix docstring typo.
11681 (server-eval-at): Remove superfluous backslash.
11682
11683 * skeleton.el (skeleton-insert): Remove superfluous backslash.
11684 (skeleton-insert): Doc fix.
11685 (skeleton-insert): Reflow docstring.
11686
11687 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
11688 (tty-color-approximate, tty-color-by-index, tty-color-values)
11689 (tty-color-desc): Remove superfluous backslashes.
11690
11691 2014-03-21 Glenn Morris <rgm@gnu.org>
11692
11693 * cus-start.el (history-length): Bump :version.
11694
11695 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
11696 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
11697 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
11698 Don't set `make-backup-files'.
11699
11700 * info.el (info--prettify-description): New function,
11701 to give info-finder descriptions consistent case, punctuation.
11702 (Info-finder-find-node): Use it. Sort packages.
11703 Refer to "description" rather than "commentary".
11704
11705 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
11706
11707 * frameset.el (frameset--print-register): New function.
11708 (frameset-to-register): Use it.
11709
11710 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
11711
11712 * progmodes/hideif.el (hif-string-to-number): New function.
11713 (hif-tokenize): Use it to understand non-decimal floats.
11714
11715 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
11716
11717 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
11718
11719 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
11720
11721 * electric.el (electric-newline-and-maybe-indent): New command.
11722 Bind it globally to C-j.
11723 (electric-indent-mode): Don't mess with the global map any more.
11724 Don't drop the post-self-insert-hook is some buffer is still using it
11725 (bug#16770).
11726
11727 * bindings.el (global-map): Remove C-j binding.
11728
11729 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
11730 the docstring of functions advised before dumping (bug#16993).
11731
11732 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
11733
11734 * ps-print.el (ps-generate-postscript-with-faces):
11735 Explicitly deactivate the mark (bug#16866).
11736 * simple.el (deactivate-mark): Update region highlight.
11737
11738 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
11739
11740 * emacs-lisp/package.el (describe-package-1):
11741 Decode commentary (bug#16733).
11742
11743 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
11744
11745 * custom.el (defcustom): Doc fix: recommend avoiding destructive
11746 modification of the value argument of :set (bug#16755).
11747
11748 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
11749
11750 * simple.el (newline-and-indent): Do autofill (bug#17031).
11751
11752 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
11753
11754 * newcomment.el (comment-normalize-vars): Only add escaping check
11755 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
11756 (comment-beginning): Use `narrow-to-region' instead of moving back
11757 one character.
11758 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
11759 (comment-start-skip): Update the docstring.
11760
11761 2014-03-18 Richard Stallman <rms@gnu.org>
11762
11763 * dired.el (dired-display-file): Force use of other window.
11764
11765 2014-03-18 Daniel Colascione <dancol@dancol.org>
11766
11767 * startup.el (tty-handle-args): Remove debug message from 2007.
11768
11769 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
11770
11771 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
11772 (advice--make-interactive-form): Use it to avoid (auto)loading function.
11773 (advice--make-1, advice-add, advice-remove):
11774 Remove braindead :advice-pending hack.
11775
11776 2014-03-17 Glenn Morris <rgm@gnu.org>
11777
11778 * calendar/calendar.el (calendar-generate-month): Apply weekend
11779 face to the right days; fixes 2013-08-06 change. (Bug#17028)
11780
11781 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
11782
11783 * net/tramp.el (tramp-action-out-of-band): Read pending output.
11784 (tramp-call-process): Trace also DESTINATION.
11785
11786 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
11787 Quote file names when they are local. Remove superfluous trace.
11788
11789 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
11790
11791 * newcomment.el (comment-beginning): If `comment-start-skip'
11792 doesn't match, move back one char and try again. (Bug#16971)
11793
11794 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
11795 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
11796 Set `comment-start-skip' to a simpler value that doesn't try to
11797 check if the semicolon is escaped (this is handled by
11798 `syntax-ppss' now). (Bug#16971)
11799
11800 * progmodes/scheme.el (scheme-mode-variables): Same.
11801
11802 2014-03-16 Martin Rudalics <rudalics@gmx.at>
11803
11804 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
11805 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
11806 current (Bug#16816, Bug#17007).
11807 (with-current-buffer-window): New macro doing the same as
11808 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
11809 * help.el (help-print-return-message): Warn in doc-string to not
11810 use this in `with-help-window'.
11811 (describe-bindings-internal): Call `describe-buffer-bindings'
11812 from within help buffer. See Juanma's scenario in (Bug#16816).
11813 (with-help-window): Update doc-string.
11814 * dired.el (dired-mark-pop-up):
11815 * files.el (save-buffers-kill-emacs):
11816 * register.el (register-preview): Use `with-current-buffer-window'
11817 instead of `with-temp-buffer-window'.
11818
11819 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
11820
11821 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
11822 Implement inserting into current buffer, documented in their docstrings.
11823 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
11824 (rst-section-tree-point, rst-forward-section, rst-indent)
11825 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
11826 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
11827 (rst-font-lock-handle-adornment-pre-match-form)
11828 (rst-repeat-last-character): Reflow docstrings.
11829 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
11830 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
11831 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
11832 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
11833 Fix docstring typos.
11834 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
11835 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
11836 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
11837
11838 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
11839
11840 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
11841 for compatibility with other ports.
11842 (ns-initialize-window-system): Use it. It is set in term/common-win.el
11843 from the -xrm command line argument, but in the Nextstep port its value
11844 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
11845
11846 * progmodes/python.el (defconst, python-syntax-count-quotes)
11847 (python-indent-region, python-indent-shift-right)
11848 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
11849 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
11850 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
11851 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
11852 (inferior-python-mode, python-shell-make-comint, run-python-internal)
11853 (python-shell-buffer-substring, python-shell-send-buffer)
11854 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
11855 (python-completion-complete-at-point, python-fill-docstring-style)
11856 (python-eldoc-function, python-imenu-format-item-label)
11857 (python-imenu-format-parent-item-label)
11858 (python-imenu-format-parent-item-jump-label)
11859 (python-imenu--build-tree, python-imenu-create-index)
11860 (python-imenu-create-flat-index): Fix docstring typos.
11861 (python-indent-context, python-shell-prompt-regexp, run-python):
11862 Remove superfluous backslashes.
11863 (python-indent-line, python-nav-beginning-of-defun)
11864 (python-shell-get-buffer, python-shell-get-process)
11865 (python-info-current-defun, python-info-current-line-comment-p)
11866 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
11867 (python-indent-post-self-insert-function, python-shell-send-file)
11868 (python-shell-completion-get-completions)
11869 (python-shell-completion-complete-or-indent)
11870 (python-eldoc--get-doc-at-point): Reflow docstrings.
11871
11872 2014-03-14 Glenn Morris <rgm@gnu.org>
11873
11874 * emacs-lisp/package.el (package-menu-mode-map):
11875 Replace use of obsolete function alias. Tweak menu item text.
11876
11877 * info.el (Info-finder-find-node):
11878 Ignore the `emacs' metapackage. (Bug#10813)
11879
11880 * finder.el (finder-list-matches): Include unversioned packages
11881 in the result of a keyword search.
11882
11883 * finder.el (finder--builtins-descriptions): New constant.
11884 (finder-compile-keywords): Use finder--builtins-descriptions.
11885
11886 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
11887
11888 * simple.el (blink-matching-paren): Describe the new value,
11889 `jump', enabling the old behavior.
11890 (blink-matching-open): Use that value. (Bug#17008)
11891
11892 2014-03-14 Glenn Morris <rgm@gnu.org>
11893
11894 * finder.el (finder-no-scan-regexp): Add leim-list.
11895 (finder-compile-keywords):
11896 Don't skip files with same basename. (Bug#14010)
11897 * Makefile.in (setwins_finder): New, excluding leim.
11898 (finder-data): Use setwins_finder.
11899
11900 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
11901 (help-function-arglist, help-make-usage): Move from here...
11902 * help.el (help-split-fundoc, help-add-fundoc-usage)
11903 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
11904 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
11905
11906 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
11907
11908 * net/socks.el (socks, socks-override-functions)
11909 (socks-find-services-entry):
11910 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
11911 (hif-find-ifdef-block):
11912 * progmodes/modula2.el (m2-indent): Fix docstring typos.
11913
11914 * net/tls.el (tls-program): Reflow docstring.
11915
11916 * progmodes/pascal.el (pascal-mode-abbrev-table)
11917 (pascal-imenu-generic-expression, pascal-auto-endcomments)
11918 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
11919 (pascal-outline-mode): Fix docstring typos.
11920 (pascal-mode): Let define-derived-mode document mode hook.
11921 (pascal-uncomment-area): Reflow.
11922 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
11923
11924 * progmodes/opascal.el (opascal-compound-block-indent)
11925 (opascal-case-label-indent): Fix docstring typos.
11926 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
11927
11928 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
11929
11930 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11931 Fontify multiple adjacent negation chars. (Bug#17004)
11932
11933 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
11934
11935 * emacs-lisp/package.el (package--prepare-dependencies):
11936 Accept requirements without explicit version (bug#14941).
11937
11938 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
11939
11940 * register.el (register-separator, copy-to-register): Doc fixes.
11941 (register-preview-default): Remove unnecessary call to concat.
11942
11943 * frameset.el (frameset-restore): When checking for a visible frame,
11944 use the action map instead of calling visible-frame-list.
11945
11946 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
11947
11948 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
11949
11950 2014-03-12 Martin Rudalics <rudalics@gmx.at>
11951
11952 * window.el (fit-frame-to-buffer): Get maximum width from
11953 display's width instead of height.
11954
11955 2014-03-12 Glenn Morris <rgm@gnu.org>
11956
11957 * desktop.el (desktop-restore-frames)
11958 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
11959 (desktop-restore-reuses-frames): Doc tweaks.
11960
11961 * electric.el (electric-indent-mode): Doc fix.
11962
11963 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
11964
11965 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
11966 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
11967 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
11968 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
11969 (cvs-dired-use-hook): Fix docstring typos.
11970 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
11971 Doc fixes.
11972
11973 * vc/pcvs-defs.el (cvs-auto-remove-handled)
11974 (cvs-auto-remove-directories, cvs-default-ignore-marks)
11975 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
11976 (cvs-execute-single-dir): Fix docstring typos.
11977
11978 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
11979 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
11980
11981 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
11982
11983 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
11984 Fix docstring typos.
11985
11986 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
11987
11988 * frameset.el (frameset--jump-to-register): Add autoload; it could be
11989 called from jump-to-register after unloading the frameset package.
11990
11991 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
11992
11993 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
11994 (bug#16975). Deactivate the mark before setting it to nil.
11995 (activate-mark): Do nothing if region is already active.
11996
11997 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
11998
11999 * frameset.el (frameset--target-display): Remove definition; declare.
12000 (frameset-save, frameset-restore): Let-bind frameset--target-display.
12001
12002 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
12003
12004 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
12005 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
12006 when the advice is pending.
12007 (advice-remove): Remove this marker when not needed any more.
12008
12009 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
12010
12011 * frameset.el: Separate options for reusing frames and cleaning up.
12012 (frameset--reuse-list): Remove definition; declare.
12013 (frameset--action-map): Declare.
12014 (frameset--find-frame-if): Doc fix.
12015 (frameset--restore-frame): Cache frame action.
12016 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
12017 how to clean up the frame list after restoring. Remove cleaning
12018 options from REUSE-FRAMES. Change all keyword values to symbols.
12019 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
12020
12021 * desktop.el (desktop-restore-forces-onscreen)
12022 (desktop-restore-reuses-frames): Use non-keyword values.
12023 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
12024
12025 2014-03-10 Glenn Morris <rgm@gnu.org>
12026
12027 * files.el (find-file): Doc fix: update info node name.
12028
12029 * emacs-lisp/advice.el (ad-add-advice, defadvice):
12030 Doc fix: remove references to deleted info nodes.
12031
12032 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
12033
12034 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
12035 Do not add nil to the environment, when there's no remote `locale'.
12036 (tramp-find-inline-encoding): Check, that the remote host has
12037 installed perl, before sending scripts.
12038
12039 2014-03-10 Leo Liu <sdl.web@gmail.com>
12040
12041 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
12042 Clear eldoc-last-message. (Bug#16920)
12043
12044 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
12045
12046 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
12047 (bug#14430).
12048
12049 2014-03-09 Juri Linkov <juri@jurta.org>
12050
12051 * ansi-color.el (ansi-color-names-vector): Copy default colors
12052 from `xterm-standard-colors' that look well on the default white
12053 background (and also on the black background) to avoid illegible
12054 color combinations like yellow-on-white and white-on-white.
12055 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
12056
12057 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
12058
12059 * frameset.el (frameset-restore): When no frame is visible, do not
12060 generate a list of frames, just make visible the selected one.
12061
12062 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
12063
12064 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
12065 it only contains the repository root. (Bug#16897)
12066
12067 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
12068
12069 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
12070 only when `remote-file-name-inhibit-cache' is nil.
12071 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
12072
12073 2014-03-06 Martin Rudalics <rudalics@gmx.at>
12074
12075 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
12076 Fix doc-strings.
12077 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
12078 fit-frame-to-buffer variable. Fix doc-string.
12079 (fit-window-to-buffer): Set ONLY argument in call of
12080 fit-frame-to-buffer. Fix doc-string.
12081
12082 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
12083
12084 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
12085 (tramp-action-password): Clear password cache if needed.
12086 (tramp-read-passwd): Do not clear password cache.
12087
12088 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
12089 cache unless it is the first password request.
12090
12091 2014-03-06 Glenn Morris <rgm@gnu.org>
12092
12093 * simple.el (newline): Doc tweak.
12094
12095 * emacs-lisp/shadow.el (load-path-shadows-find):
12096 Ignore dir-locals. (Bug#12357)
12097
12098 2014-03-05 Glenn Morris <rgm@gnu.org>
12099
12100 * files.el (interpreter-mode-alist):
12101 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
12102
12103 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
12104
12105 * frameset.el (frameset--initial-params): Filter out null entries.
12106
12107 2014-03-05 Martin Rudalics <rudalics@gmx.at>
12108
12109 * window.el (window-min-height, window-min-width):
12110 Rewrite doc-strings.
12111 (window-body-size): Add PIXELWISE argument to make it consistent
12112 with its callees.
12113
12114 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
12115
12116 * finder.el (finder-mode-map, finder-mode-syntax-table):
12117 Revert part of 2014-02-28 change.
12118
12119 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
12120
12121 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
12122 (eww-setup-buffer): Clear next/prev/etc more reliably.
12123 (eww-textarea-map): [tab] doesn't work on tty.
12124 Reported by Mario Lang.
12125
12126 * net/shr.el (shr-map): Ditto.
12127
12128 2014-03-04 Glenn Morris <rgm@gnu.org>
12129
12130 * minibuffer.el (completion-hilit-commonality):
12131 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
12132
12133 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
12134
12135 * hilit-chg.el (hilit-chg-unload-function): New function.
12136 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
12137 (hilit-chg-map-changes): Prefer cardinal number to digit.
12138 (hilit-chg-display-changes): Reflow docstring.
12139 (highlight-changes-rotate-faces): Remove superfluous backslash.
12140
12141 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
12142
12143 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
12144 `tramp-send-command-and-check'.
12145
12146 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
12147
12148 * hexl.el (hexl-address-region, hexl-ascii-region)
12149 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
12150 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
12151 (hexl-forward-word, hexl-previous-line, hexl-next-line):
12152 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
12153 (hexl-mode): Doc fix.
12154 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
12155 (hexl-mode-ruler): Fix typos in docstrings.
12156
12157 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
12158 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
12159 Remove superfluous backslashes.
12160 (strokes-last-stroke, strokes-global-map, strokes-mode):
12161 Reflow docstrings.
12162 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
12163 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
12164 (strokes-distance-squared, strokes-global-set-stroke)
12165 (strokes-global-set-stroke-string): Doc fixes.
12166 (strokes-help): Fix typos; reflow docstring.
12167
12168 2014-03-04 Martin Rudalics <rudalics@gmx.at>
12169
12170 * window.el (window-in-direction): Fix doc-string.
12171
12172 2014-03-04 Glenn Morris <rgm@gnu.org>
12173
12174 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
12175 Explicit error if no grammar.
12176 (smie-config-save): Doc fix. Fix quote typo.
12177
12178 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
12179
12180 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
12181 electric-indent-mode-hook if we obey electric-indent-mode.
12182 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
12183 decide whether we obey electric-indent-mode.
12184 (c-change-set-fl-decl-start, c-extend-after-change-region):
12185 Silence warnings.
12186 (c-electric-indent-mode-hook): Assume we do want to obey
12187 electric-indent-mode.
12188
12189 * electric.el (electric-indent-mode-has-been-called): Remove.
12190 (electric-indent-mode): Fix accordingly.
12191
12192 * files.el (hack-local-variables): Mention file name in warning.
12193
12194 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
12195
12196 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
12197
12198 * bindings.el: Add comment describing why C-d binds to `delete-char'.
12199 * simple.el (delete-forward-char): Mark as interactive-only.
12200
12201 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
12202
12203 * icomplete.el (icomplete-completions):
12204 Follow-up to 2014-03-01 change.
12205
12206 * icomplete.el: Miscellaneous doc fixes.
12207 Use Icomplete everywhere instead of icomplete for consistency.
12208 (icomplete-max-delay-chars): Fix typo.
12209 (icomplete-mode): Use \[].
12210 (icomplete-tidy, icomplete-exhibit): Reflow.
12211 (icomplete-minibuffer-setup-hook, icomplete-completions):
12212 Remove superfluous backlashes.
12213
12214 * ido.el: Miscellaneous doc fixes.
12215 Use Ido everywhere instead of ido or `ido' for consistency.
12216 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
12217 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
12218 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
12219 (ido-separator): Extract obsolescence info from docstring and declare
12220 with make-obsolete-variable.
12221 (ido-minibuffer-setup-hook): Simplify example.
12222 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
12223 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
12224 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
12225 (ido-everywhere): Reflow docstring.
12226 (ido-toggle-vc): Doc fix.
12227 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
12228 of long list of keybindings.
12229
12230 2014-03-03 Glenn Morris <rgm@gnu.org>
12231
12232 * frame.el (display-pixel-height, display-pixel-width)
12233 (display-mm-dimensions-alist, display-mm-height)
12234 (display-mm-width): Doc tweaks.
12235
12236 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
12237
12238 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
12239 case of undo in region.
12240
12241 2014-03-02 Martin Rudalics <rudalics@gmx.at>
12242
12243 * window.el (fit-window-to-buffer): Fix argument in window-size
12244 call when window is horizontally combined.
12245
12246 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
12247
12248 * icomplete.el (icomplete-completions): Use string-width.
12249 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
12250
12251 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
12252
12253 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12254 Highlight regexp options. (Bug#16914)
12255
12256 2014-03-01 Martin Rudalics <rudalics@gmx.at>
12257
12258 * window.el (window--max-delta-1): Round down when calculating
12259 how many lines/columns we can get from a window.
12260
12261 2014-03-01 Glenn Morris <rgm@gnu.org>
12262
12263 * isearch.el (search-invisible): Doc fix.
12264
12265 * minibuffer.el (completion-hilit-commonality):
12266 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
12267 * comint.el (comint-dynamic-list-completions): Doc fix.
12268 * comint.el (comint-dynamic-list-completions):
12269 * filecache.el (file-cache-minibuffer-complete):
12270 * tempo.el (tempo-display-completions):
12271 * eshell/em-hist.el (eshell-list-history):
12272 Replace use of obsolete argument of display-completion-list.
12273
12274 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
12275
12276 * icomplete.el (icomplete-completions):
12277 Revert back to using "..." when ?… cannot be displayed.
12278
12279 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
12280
12281 * finder.el (finder-unload-function): New function.
12282
12283 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
12284
12285 * dframe.el (dframe-detach):
12286 * find-dired.el (find-dired, find-name-dired):
12287 * finder.el (finder-mode-map, finder-mode-syntax-table)
12288 (finder-headmark, finder-select, finder-mouse-select):
12289 Fix docstring typos.
12290
12291 2014-02-28 Martin Rudalics <rudalics@gmx.at>
12292
12293 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
12294 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
12295 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
12296 Fix doc-string based on a suggestion by Nicolas Richard
12297 <theonewiththeevillook@yahoo.fr>.
12298 * help.el (with-help-window): Fix doc-string.
12299
12300 2014-02-28 Ivan Kanis <ivan@kanis.fr>
12301
12302 * net/shr.el (shr-image-animate): New option.
12303 (shr-put-image): Respect shr-image-animate.
12304
12305 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
12306
12307 * net/tramp-adb.el (tramp-adb-parse-device-names):
12308 Use `accept-process-output'.
12309 (tramp-adb-handle-file-truename): Cache the localname only.
12310 (tramp-adb-handle-make-directory)
12311 (tramp-adb-handle-delete-directory): Flush file properties correctly.
12312 (tramp-adb-handle-set-file-modes): Do not raise an error when file
12313 modes cannot be changed.
12314
12315 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
12316 file properties of symlinks.
12317
12318 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
12319
12320 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
12321 required/optional fields to match development biblatex. (Bug#16781)
12322
12323 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
12324
12325 * saveplace.el (toggle-save-place):
12326 Fix argument handling. (Bug#16673)
12327
12328 2014-02-28 Glenn Morris <rgm@gnu.org>
12329
12330 * minibuffer.el (completions-first-difference)
12331 (completions-common-part, completion-hilit-commonality): Doc fixes.
12332
12333 2014-02-28 Karl Berry <karl@gnu.org>
12334
12335 * info.el (Info-mode-map): Add H for describe-mode,
12336 to synchronize with standalone Info.
12337
12338 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
12339
12340 * progmodes/sql.el (sql-interactive-mode):
12341 Avoid setting global comint-input-ring-separator. (Bug#16814)
12342
12343 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
12344
12345 * net/dbus.el (dbus--init-bus): Declare function.
12346 (dbus-path-local, dbus-interface-local): New defconst.
12347 (dbus-init-bus): Use them.
12348 (dbus-return-values-table): Extend doc.
12349 (dbus-handle-bus-disconnect): Extend error message.
12350
12351 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
12352
12353 * subr.el (y-or-n-p): Fix double space issue in message.
12354
12355 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
12356
12357 * net/tramp.el (tramp-call-process): Improve trace message.
12358 (tramp-handle-insert-file-contents): Trace error case.
12359
12360 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
12361 <insert-directory>: Use `tramp-handle-insert-directory'.
12362 (tramp-adb-handle-insert-directory): Remove function.
12363 (tramp-adb-send-command-and-check): New defun, replacing
12364 `tramp-adb-command-exit-status'. Change all callees.
12365 (tramp-adb-handle-file-attributes)
12366 (tramp-adb-handle-directory-files-and-attributes): Use it.
12367 (tramp-adb-ls-output-name-less-p):
12368 Use `directory-listing-before-filename-regexp'.
12369 (tramp-adb-handle-delete-directory): Flush also file properties of
12370 the truename of directory.
12371 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
12372 (tramp-adb-handle-file-local-copy): Make the local copy readable.
12373 (tramp-adb-handle-write-region): Implement APPEND.
12374 (tramp-adb-handle-rename-file): Make it more robust. Flush file
12375 properties correctly.
12376 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
12377 variables. Check for connected devices only when needed.
12378
12379 2014-02-27 Glenn Morris <rgm@gnu.org>
12380
12381 * minibuffer.el (completion-table-dynamic)
12382 (completion-table-with-cache): Doc fixes.
12383
12384 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
12385 (completing-read-multiple): Doc fixes.
12386
12387 2014-02-27 Daniel Colascione <dancol@dancol.org>
12388
12389 * minibuffer.el (completion--nth-completion): Fix indentation.
12390
12391 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
12392 explicit tramp path is empty.
12393
12394 2014-02-27 Glenn Morris <rgm@gnu.org>
12395
12396 * emacs-lisp/crm.el (completing-read-multiple):
12397 Empower help-enable-auto-load.
12398
12399 2014-02-26 Glenn Morris <rgm@gnu.org>
12400
12401 * startup.el (command-line): Don't init the tty in daemon mode.
12402
12403 Avoid calling tty-setup-hook twice, eg if a term file
12404 explicitly calls tty-run-terminal-initialization. (Bug#16859)
12405 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
12406 (tty-create-frame-with-faces): Use it.
12407 * startup.el (command-line): Pass run-hook argument
12408 to tty-run-terminal-initialization.
12409
12410 * dired.el (dired-restore-desktop-buffer): Demote errors;
12411 eg in case a glob match fails. (Bug#16884)
12412
12413 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
12414
12415 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
12416 error from `read-from-string'. (Bug#16850)
12417
12418 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
12419 result of `completing-read' in the interactive form. (Bug#16854)
12420
12421 2014-02-25 Glenn Morris <rgm@gnu.org>
12422
12423 * image.el (image-animate, image-animate-timeout):
12424 Stop animating images in dead buffers. (Bug#16878)
12425
12426 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
12427
12428 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
12429 Doc fixes.
12430 * startup.el (term-setup-hook): Doc fix. Make obsolete.
12431 * term/sun.el (sun-raw-prefix-hooks):
12432 Use tty-setup-hook instead of term-setup-hook.
12433 (terminal-init-sun): Construct message from bytecomp plist.
12434 * term/wyse50.el (enable-arrow-keys): Doc fix.
12435
12436 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
12437
12438 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
12439 Fix docstring typos.
12440
12441 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
12442
12443 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
12444
12445 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
12446
12447 * minibuffer.el (completion--try-word-completion):
12448 Fix error when completing M-x commands (bug#16808).
12449
12450 2014-02-24 Leo Liu <sdl.web@gmail.com>
12451
12452 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
12453
12454 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
12455
12456 * apropos.el (apropos-print): Avoid formatting error when
12457 apropos-do-all and apropos-compact-layout are both t.
12458
12459 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
12460
12461 * apropos.el (apropos-property, apropos-all-words-regexp)
12462 (apropos-true-hit, apropos-variable, apropos-print):
12463 Fix docstring typos, and remove obsolete comment.
12464
12465 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
12466
12467 * net/tramp-sh.el (tramp-sh-handle-file-truename):
12468 Preserve trailing "/". (Bug#16851)
12469
12470 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
12471
12472 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
12473 after `=>' (bug#16811).
12474 (ruby-smie-rules): Handle the inconsistent second element of the
12475 list returned by `smie-indent--parent'.
12476 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
12477 method call.
12478
12479 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
12480
12481 * elec-pair.el (electric-pair-text-syntax-table)
12482 (electric-pair-syntax-info, electric-pair--syntax-ppss)
12483 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
12484 (electric-pair--looking-at-unterminated-string-p): Doc fix.
12485 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
12486
12487 2014-02-22 Glenn Morris <rgm@gnu.org>
12488
12489 * imenu.el (imenu--generic-function): Doc fix.
12490
12491 * register.el (frame-configuration-to-register): Make obsolete.
12492
12493 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
12494
12495 * desktop.el (desktop-save-buffer-p): Do not fail when
12496 desktop-files-not-to-save is nil. Return t for true result
12497 as the doc says.
12498
12499 2014-02-22 Daniel Colascione <dancol@dancol.org>
12500
12501 * net/secrets.el (secrets-create-item, secrets-search-items):
12502 Check that attribute values are strings, avoiding the construction
12503 of invalid dbus messages.
12504
12505 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
12506
12507 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
12508 defun-declarations-alist.
12509
12510 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
12511
12512 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
12513 (bug#16829).
12514
12515 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
12516
12517 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
12518 (whitespace-newline, whitespace-trailing, whitespace-line)
12519 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
12520 (whitespace-space-after-tab): Fix typo in docstrings.
12521
12522 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
12523
12524 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
12525
12526 * electric.el (electric-indent-functions-without-reindent):
12527 Add `yaml-indent-line'.
12528
12529 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
12530
12531 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
12532 It has done nothing for years; should be removed after the release.
12533
12534 * simple.el (choose-completion): Fix docstring typo.
12535 (read-quoted-char-radix): Remove unneeded * in docstring.
12536 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
12537 Don't escape parentheses unnecessarily in docstrings.
12538
12539 2014-02-21 Martin Rudalics <rudalics@gmx.at>
12540
12541 Fix handling of window-min-height/-width (Bug#16738).
12542 * window.el (window--dump-window, window--dump-frame):
12543 New functions.
12544 (window--min-size-1): Account for window dividers.
12545 When window-resize-pixelwise is nil, delay rounding till after the
12546 sum of the window components has been calculated.
12547 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
12548 nil make sure at least one text line and two text columns remain
12549 fully visible.
12550 (window-resize): Signal an error when window-resize-apply fails.
12551 (window--resize-child-windows): Fix calculation of by how many
12552 pixels a window can still be shrunk via window-new-normal.
12553 (adjust-window-trailing-edge): Call window--resizable with
12554 correct TRAIL argument.
12555
12556 (with-temp-buffer-window): Don't evaluate BODY within
12557 with-current-buffer (Bug#16816).
12558
12559 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
12560
12561 * net/tramp.el (tramp-check-cached-permissions):
12562 Call `file-attributes' with `suffix' being a symbol but a string.
12563
12564 2014-02-21 Daniel Colascione <dancol@dancol.org>
12565
12566 * net/dbus.el (dbus-init-bus-1): Declare new subr.
12567 (dbus-init-bus): New function: call into dbus-init-bus-1
12568 and installs a handler for the disconnect signal.
12569 (dbus-call-method): Rewrite to look for result in cons.
12570 (dbus-call-method-handler): Store result in cons.
12571 (dbus-check-event): Recognize events with nil sender as valid.
12572 (dbus-handle-bus-disconnect): New function. React to bus
12573 disconnection signal by synthesizing dbus error for each
12574 pending synchronous or asynchronous call.
12575 (dbus-notice-synchronous-call-errors): New function.
12576 (dbus-handle-event): Raise errors directly only when `dbus-debug'
12577 is true, not all the time.
12578
12579 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
12580
12581 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
12582 Remove obsolescence declarations, these variables do not exist anymore.
12583
12584 * savehist.el (savehist-save-minibuffer-history)
12585 (savehist-additional-variables, savehist-file, savehist-mode-hook)
12586 (savehist-save-hook, savehist-coding-system, savehist-loaded)
12587 (savehist-load, savehist-install, savehist-autosave): Fix typos;
12588 mostly, refer to "Savehist mode" when talking about the mode,
12589 and not the function.
12590
12591 * saveplace.el (save-place): Remove redundant info in docstring.
12592 (save-place-forget-unreadable-files, toggle-save-place)
12593 (save-place-forget-unreadable-files, save-place-dired-hook):
12594 Fix typos and remove unneeded backslashes.
12595
12596 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
12597
12598 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
12599 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
12600
12601 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
12602 <insert-directory>: Use `tramp-handle-insert-directory'.
12603 (tramp-gvfs-handle-insert-directory): Remove function.
12604
12605 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
12606 Call `tramp-handle-insert-directory'.
12607
12608 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
12609
12610 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
12611 before the start of buffer/region (bug#16799).
12612
12613 2014-02-20 Glenn Morris <rgm@gnu.org>
12614
12615 * isearch.el (search-invisible): Doc fix.
12616
12617 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
12618
12619 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
12620 (bug#16657).
12621
12622 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
12623
12624 * frameset.el (frameset-restore): Delay removing an old frame's
12625 duplicate id until the new frame has been correctly created.
12626
12627 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
12628
12629 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
12630 (tramp-check-cached-permissions): Call `file-attributes' if the
12631 cache is empty.
12632
12633 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
12634 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
12635
12636 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
12637 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
12638 (tramp-gvfs-maybe-open-connection): Set always connection
12639 properties, even if target is mounted already.
12640
12641 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
12642 Set tramp-autoload cookie.
12643 (tramp-get-remote-touch): New defun.
12644 (tramp-sh-handle-set-file-times): Use it.
12645 (tramp-sh-handle-directory-files-and-attributes):
12646 Use `tramp-handle-directory-files-and-attributes' if neither stat
12647 nor perl are available on the remote host.
12648
12649 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
12650 "/". Write long listing only when "l" belongs to the switches.
12651
12652 * net/trampver.el: Update release number.
12653
12654 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
12655
12656 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
12657
12658 2014-02-19 Martin Rudalics <rudalics@gmx.at>
12659
12660 * window.el (window-state-put): Allow WINDOW to refer to an
12661 internal window (Bug#16793).
12662
12663 2014-02-19 Glenn Morris <rgm@gnu.org>
12664
12665 * textmodes/remember.el: Move provide statement to end.
12666 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
12667 (remember-notes): Doc fixes.
12668
12669 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
12670
12671 * delsel.el (delete-char): Restore incorrectly erased property
12672 (bug#16795).
12673
12674 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
12675
12676 * frameset.el (frameset--restore-frame): When a frame is being reused
12677 and its root window is not alive, delete all the frame's windows before
12678 restoring the window state. This works around the issue in bug#16793.
12679
12680 2014-02-18 Glenn Morris <rgm@gnu.org>
12681
12682 * textmodes/remember.el (remember-data-directory)
12683 (remember-directory-file-name-format, remember-store-in-files)
12684 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
12685 (remember-notes-save-and-bury-buffer)
12686 (remember-notes--kill-buffer-query): Doc fixes.
12687
12688 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
12689
12690 2014-02-17 Alan Mackenzie <acm@muc.de>
12691
12692 Connect electric-indent-mode up with CC Mode. Bug #15478.
12693 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
12694 to electric-indent-{,local-}-mode.
12695 (c-basic-common-init): Set electric-indent-inhibit.
12696 Initialize c-electric-flag from electric-indent-mode.
12697 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
12698 New hook functions which propagate electric-indent-mode to CC mode.
12699
12700 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
12701 hit, toggle electric-indent-local-mode.
12702
12703 * electric.el (electric-indent-mode-has-been-called):
12704 New variable.
12705
12706 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
12707
12708 * frameset.el (frameset-cfg-id): New function.
12709 (frameset--reuse-frame, frameset-restore): Use it.
12710 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
12711
12712 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
12713
12714 * ido.el (ido-file-internal): Remove unused var `d'.
12715 Use \` for to match BoS. Fit within 80n columns.
12716
12717 2014-02-17 Daniel Colascione <dancol@dancol.org>
12718
12719 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
12720 dbus-call-method check for completion using a busy-wait loop with
12721 gradual backoff.
12722
12723 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
12724
12725 Sync with Tramp 2.2.9.
12726
12727 * net/trampver.el: Update release number.
12728
12729 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
12730
12731 * ido.el (ido-file-internal): Don't add the name of an existing
12732 directory twice. (Bug#16747)
12733
12734 2014-02-16 Glenn Morris <rgm@gnu.org>
12735
12736 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
12737 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
12738
12739 2014-02-15 Michael R. Mauger <michael@mauger.com>
12740
12741 * progmodes/sql.el: Version 3.4
12742 (sql-oracle-options): New default value ("-L").
12743 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
12744 (sql-placeholders-filter): Correct placeholder pattern.
12745 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
12746 (sql-login-delay): New variable.
12747 (sql-product-interactive): Use it.
12748
12749 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
12750
12751 * frameset.el (frameset--jump-to-register): Check that buffer is live
12752 (bug#16749).
12753
12754 2014-02-15 Glenn Morris <rgm@gnu.org>
12755
12756 * info.el (info-initialize): Revert 2014-01-10 change.
12757
12758 2014-02-14 Glenn Morris <rgm@gnu.org>
12759
12760 * replace.el (map-query-replace-regexp)
12761 (read-regexp-defaults-function, read-regexp): Doc fixes.
12762
12763 * dired.el (dired-read-regexp):
12764 * faces.el (list-faces-display):
12765 * misearch.el (multi-isearch-read-matching-buffers)
12766 (multi-isearch-read-matching-files):
12767 * play/cookie1.el (cookie-apropos):
12768 * progmodes/grep.el (grep-read-regexp): Doc fixes.
12769
12770 * textmodes/remember.el (remember): Use frameset-to-register
12771 rather than frame-configuration-to-register.
12772
12773 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
12774
12775 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
12776 incorrect keybinding.
12777
12778 2014-02-13 Daniel Colascione <dancol@dancol.org>
12779
12780 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
12781 when adding overlays so that line numbers from compiler match line
12782 numbers we use.
12783
12784 2014-02-13 Glenn Morris <rgm@gnu.org>
12785
12786 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
12787
12788 * jit-lock.el (jit-lock-mode): Doc fix.
12789
12790 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
12791
12792 * apropos.el (apropos-read-pattern): When the user passes an empty
12793 string, give a more helpful error message than "Wrong type
12794 argument: stringp, nil".
12795
12796 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
12797
12798 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
12799
12800 2014-02-13 Glenn Morris <rgm@gnu.org>
12801
12802 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
12803
12804 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
12805
12806 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
12807 shift-select commands.
12808
12809 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
12810
12811 * progmodes/js.el (js-indent-line): Don't widen.
12812 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
12813
12814 2014-02-12 Glenn Morris <rgm@gnu.org>
12815
12816 * icomplete.el (icomplete): Add info-link to defgroup.
12817 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
12818 (icomplete-minibuffer-map, icomplete-mode)
12819 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
12820
12821 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
12822 (package-menu-filter): Rename from package-menu-filter-interactive.
12823 Doc fix.
12824
12825 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
12826
12827 * frameset.el (frameset--jump-to-register): Select the required
12828 window and buffer before restoring position (bug#16696).
12829
12830 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
12831
12832 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
12833
12834 2014-02-10 Glenn Morris <rgm@gnu.org>
12835
12836 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
12837
12838 2014-02-10 Eli Zaretskii <eliz@gnu.org>
12839
12840 * w32-common-fns.el (x-get-selection): Doc fix.
12841 * select.el (x-get-selection): Doc fix. (Bug#15109)
12842
12843 * face-remap.el (face-remap-add-relative)
12844 (face-remap-remove-relative, face-remap-reset-base)
12845 (face-remap-set-base): Call force-mode-line-update to redisplay
12846 the current buffer due to potential change in faces. (Bug#16709)
12847
12848 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
12849
12850 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
12851 script more robustly.
12852
12853 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
12854
12855 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
12856
12857 * simple.el (choose-completion): Doc fix (bug#14160).
12858
12859 * subr.el (event-start): Say what a nil EVENT value means.
12860
12861 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
12862 (bug#14197).
12863
12864 * progmodes/grep.el (find-program): Doc fix (bug#14289).
12865
12866 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
12867
12868 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
12869
12870 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
12871 predicate function (bug#15455).
12872
12873 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
12874
12875 * ielm.el (inferior-emacs-lisp-mode): Instead of
12876 `comment-use-global-state', set `comment-use-syntax'.
12877
12878 2014-02-10 Glenn Morris <rgm@gnu.org>
12879
12880 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
12881
12882 2014-02-09 Alan Mackenzie <acm@muc.de>
12883
12884 Fix c-invalidate-state-cache on narrowed buffers.
12885 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
12886 Widen when setting and clearing the CPP delimiter properties.
12887
12888 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
12889
12890 * help.el (describe-bindings): Doc fix (bug#9888).
12891
12892 * files.el (save-buffer): Use ARG as the parameter name for
12893 consistency (bug#10346).
12894 (save-buffer): Clarify the 0 argument (bug#10346).
12895
12896 * cus-edit.el (customize-apropos): Fix error string.
12897 (custom-buffer-create): Doc fix (bug#11122).
12898 (custom-sort-items): Doc fix (bug#11121).
12899
12900 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
12901
12902 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
12903 (icomplete-simple-completing-p): Mention the previous variable.
12904
12905 * font-lock.el (font-lock-value-in-major-mode): Clarify the
12906 meaning of the parameter (bug#12282).
12907
12908 * files.el (find-file-noselect): Clarify prompt when changing
12909 readedness (bug#13261).
12910 (locate-file): Suffixes aren't returned, so don't say that they
12911 are (bug#12674).
12912 (backup-inhibited): Doc clarification (bug#12525).
12913
12914 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
12915 before we actually start to delete things (bug#16331).
12916
12917 * subr.el (event-start): Doc fix (bug#14228).
12918 (event-end): Ditto.
12919
12920 2014-02-09 Glenn Morris <rgm@gnu.org>
12921
12922 * emacs-lisp/warnings.el (lwarn):
12923 Empower help-enable-auto-load. (Bug#15940)
12924
12925 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
12926
12927 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
12928 (Bug#16690)
12929
12930 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
12931
12932 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
12933 Insert output at end of buffer. (Bug#16120)
12934
12935 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
12936
12937 * simple.el (choose-completion-string-functions): Document new
12938 calling convention (bug#14153).
12939 (execute-extended-command): Clarify doc string (bug#13373).
12940
12941 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
12942
12943 * find-dired.el (find-name-dired): Doc fix (bug#14290).
12944 (find-grep-dired): Doc fix (bug#14288).
12945
12946 2014-02-08 Juri Linkov <juri@jurta.org>
12947
12948 * isearch.el (isearch-quote-char): Check character validity
12949 like in `quoted-insert' (bug#16677).
12950
12951 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
12952
12953 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
12954
12955 * isearch.el (isearch-hide-immediately): Doc clarification
12956 (bug#14723).
12957
12958 * simple.el (line-move): Document utility function used many
12959 places in the Emacs sources (bug#14843).
12960
12961 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
12962 (dired-prev-marked-file): Doc fix (bug#14855).
12963 (dired-up-directory): Doc fix (bug#14848).
12964
12965 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
12966
12967 * files.el (file-relative-name): Doc fix (bug#15159).
12968
12969 * fringe.el (fringe-styles): Doc fix (bug#15239).
12970
12971 * isearch.el (isearch-filter-predicate): Documentation typo fix
12972 (bug#15474).
12973
12974 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
12975
12976 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
12977
12978 * replace.el (replace-match-maybe-edit): Doc clarification
12979 (bug#15632).
12980
12981 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
12982
12983 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
12984
12985 2014-02-08 Glenn Morris <rgm@gnu.org>
12986
12987 * help-fns.el (describe-variable):
12988 Check {file,dir}-local-variables-alist, and buffer-file-name,
12989 in the correct buffer.
12990
12991 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
12992
12993 * help-fns.el (describe-variable): Fix the case where
12994 a value is directory-local with no dir-locals file. (Bug#16635)
12995
12996 2014-02-08 Glenn Morris <rgm@gnu.org>
12997
12998 * abbrev.el (edit-abbrevs-mode):
12999 Derive from fundamental-mode. (Bug#16682)
13000
13001 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
13002
13003 * simple.el (quoted-insert): Check character validity (bug#16677).
13004
13005 2014-02-07 Juri Linkov <juri@jurta.org>
13006
13007 * desktop.el (desktop-read): Claim the lock when the owner is not
13008 the current process. (Bug#16157)
13009
13010 2014-02-07 Juri Linkov <juri@jurta.org>
13011
13012 * desktop.el (desktop-buffers-not-to-save): Change default from nil
13013 to "\\` ". (Bug#16651)
13014
13015 2014-02-07 Juri Linkov <juri@jurta.org>
13016
13017 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
13018 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
13019 (desktop-auto-save-cancel-timer): New function with some code from
13020 `desktop-auto-save-set-timer'.
13021 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
13022 Instead of setting `desktop-save-mode' to nil, call
13023 `desktop-save-mode' with arg 0. (Bug#16630)
13024
13025 2014-02-07 Glenn Morris <rgm@gnu.org>
13026
13027 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
13028 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
13029 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
13030
13031 * obsolete/iswitchb.el: Move to obsolete/.
13032 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
13033 since obsolete/ is not scanned for autoloads.
13034 * emacs-lisp/authors.el (authors-valid-file-names):
13035 Add iswitchb.el.
13036
13037 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
13038 Disable now non-functional find-file-hook.
13039
13040 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
13041
13042 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
13043 instead of ";" in order to avoid additional prompts. Let heredoc
13044 scripts read from tty. (Bug#16582)
13045 (tramp-send-command): No special handling of heredocs, it isn't
13046 necessary anymore.
13047
13048 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
13049
13050 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
13051 with a space (bug#16664). Limit the symbols considered to the ones
13052 that are bound or fbound (bug#16646).
13053
13054 2014-02-06 Glenn Morris <rgm@gnu.org>
13055
13056 * epa.el (epa-mail-aliases): Doc fix.
13057
13058 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
13059
13060 * emacs-lisp/lisp.el (lisp-completion-at-point):
13061 Use `completion-table-merge' instead of `completion-table-in-turn'
13062 (bug#16604).
13063
13064 * minibuffer.el (completion-table-merge): New function.
13065
13066 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
13067
13068 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
13069 (tramp-sh-handle-set-file-acl)
13070 (tramp-sh-handle-start-file-process)
13071 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
13072 (tramp-find-executable, tramp-send-command): Use it.
13073
13074 2014-02-05 Glenn Morris <rgm@gnu.org>
13075
13076 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
13077
13078 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
13079
13080 * progmodes/python.el (python-shell-send-string)
13081 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
13082
13083 2014-02-04 Anders Lindgren <andlind@gmail.com>
13084
13085 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
13086 the names (bug#16620).
13087
13088 2014-02-03 Martin Rudalics <rudalics@gmx.at>
13089
13090 * faces.el (window-divider): New default value. Rewrite doc-string.
13091 (window-divider-first-pixel, window-divider-last-pixel): New faces.
13092
13093 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
13094
13095 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
13096 `protected' and `public' can also be called without arguments.
13097
13098 2014-02-03 Glenn Morris <rgm@gnu.org>
13099
13100 * register.el (window-configuration-to-register)
13101 (frame-configuration-to-register): Unadvertise unused argument.
13102 * frameset.el (frameset-to-register): Remove unused argument.
13103
13104 * frameset.el (frameset-to-register):
13105 * kmacro.el (kmacro-to-register):
13106 * register.el (increment-register):
13107 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
13108 (calc-append-to-register, calc-prepend-to-register):
13109 * play/gametree.el (gametree-layout-to-register)
13110 (gametree-apply-register-layout):
13111 * textmodes/picture.el (picture-clear-rectangle-to-register)
13112 (picture-yank-rectangle-from-register):
13113 * vc/emerge.el (emerge-combine-versions-register):
13114 Use register-read-with-preview to read registers.
13115
13116 2014-02-03 João Távora <joaotavora@gmail.com>
13117
13118 * elec-pair.el (electric-pair-backward-delete-char): Don't error
13119 when at beginning of (possibly narrowed) buffer.
13120
13121 2014-02-02 Daniel Colascione <dancol@dancol.org>
13122
13123 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
13124 Also try to display local help from just before point.
13125
13126 2014-02-02 Alan Mackenzie <acm@muc.de>
13127
13128 c-parse-state. Don't "append-lower-brace-pair" in certain
13129 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
13130 recognised as a comment.
13131
13132 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
13133 as well as normal comment starter.
13134 (c-parse-state-get-strategy): Extra return possibility
13135 'back-and-forward.
13136 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
13137 return value list to indicate replacement of a brace-pair cons
13138 with its car.
13139 (c-parse-state-1): With 'back-and-forward, only call
13140 c-append-lower-brace-pair-to state-cache when cons-separated.
13141
13142 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
13143
13144 * term/ns-win.el (ns-suspend-error): New function.
13145 (ns-initialize-window-system): Add ns-suspend-error to
13146 suspend-hook (Bug#16612).
13147
13148 2014-02-02 Daniel Colascione <dancol@dancol.org>
13149
13150 * progmodes/cc-defs.el (c-find-assignment-for-mode):
13151 Make loading cc-mode silent.
13152
13153 2014-02-02 Daniel Colascione <dancol@dancol.org>
13154
13155 * comint.el (comint-prompt-read-only): Change doc to suggest
13156 remap keybinding.
13157
13158 2014-02-02 Glenn Morris <rgm@gnu.org>
13159
13160 * register.el (register-read-with-preview, point-to-register)
13161 (window-configuration-to-register, frame-configuration-to-register)
13162 (jump-to-register, number-to-register, view-register, insert-register)
13163 (copy-to-register, append-to-register, prepend-to-register)
13164 (copy-rectangle-to-register): Doc fixes.
13165
13166 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
13167
13168 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
13169 * emacs-lisp/find-func.el (find-function-C-source): Idem.
13170 * emacs-lisp/nadvice.el (advice--cd*r): New function.
13171 * help-fns.el (describe-function-1): Use it.
13172
13173 2014-02-02 Glenn Morris <rgm@gnu.org>
13174
13175 * register.el (register-preview-default): New function,
13176 split from register-preview.
13177 (register-preview-function): Rename from register-preview-functions,
13178 make it not a hook.
13179 (register-preview): Use register-preview-function.
13180 (register-read-with-preview): Error on non-character event. (Bug#16595)
13181
13182 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
13183
13184 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
13185 `:' before binary operators (bug#16609). Don't check for `:'
13186 before `[' and `(', or their syntax status. A percent literal
13187 can't end with either.
13188 (ruby-font-lock-keywords): For built-ins that require arguments,
13189 check that they're followed by something that looks like argument
13190 (bug#16610).
13191
13192 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
13193
13194 * subr.el (butlast): Document what an omitted N means (bug#13437).
13195 (nbutlast): Ditto.
13196
13197 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
13198
13199 * net/shr.el (shr-generic): Make into a defsubst to make the stack
13200 depth shallower (bug#16587).
13201 (shr-tag-svg): Respect `shr-inhibit-images'.
13202 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
13203
13204 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
13205
13206 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
13207 (ruby-smie-grammar): Make "." right-associative. Make its priority
13208 lower than the ternary and all binary operators.
13209 (ruby-smie-rules): Indent "(" relative to the first non-"."
13210 parent, or the first "." parent at indentation.
13211 Use `ruby-align-chained-calls' for indentation of "." tokens.
13212 (Bug#16593)
13213
13214 2014-01-31 Juri Linkov <juri@jurta.org>
13215
13216 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
13217 from `make-hash-table'.
13218
13219 * textmodes/ispell.el (ispell-init-process): Change message format
13220 to be consistent with other messages.
13221
13222 2014-01-31 Glenn Morris <rgm@gnu.org>
13223
13224 * delsel.el (delete-selection-mode): Doc fix.
13225
13226 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
13227 (trace-function-background): Doc fixes.
13228
13229 * ido.el (ido-use-virtual-buffers): Doc fix.
13230 Reset :version, since the default value has not changed.
13231
13232 * register.el (register-preview-delay, register-read-with-preview):
13233 Doc fixes.
13234
13235 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
13236 do not mess with mail-buffer position (fixes 2009-11-03 change).
13237 * progmodes/cc-mode.el (c-submit-bug-report):
13238 Check auto-fill-mode is bound. (Bug#16592)
13239
13240 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
13241
13242 * startup.el (fancy-splash-image-file): New function,
13243 split from fancy-splash-head.
13244 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
13245 so that we are both using the same image. (Bug#16574)
13246
13247 2014-01-30 Glenn Morris <rgm@gnu.org>
13248
13249 * simple.el (eval-expression): Doc fix.
13250
13251 * hexl.el (hexl-mode-hook):
13252 * ielm.el (ielm-mode-hook):
13253 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
13254 (lisp-interaction-mode-hook):
13255 * progmodes/cfengine.el (cfengine3-documentation-function):
13256 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
13257
13258 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
13259
13260 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
13261 is a symbol (bug#16584).
13262
13263 2014-01-30 Glenn Morris <rgm@gnu.org>
13264
13265 * help.el (help-for-help-internal): Add "P" to text.
13266
13267 2014-01-29 Glenn Morris <rgm@gnu.org>
13268
13269 * simple.el (just-one-space, cycle-spacing): Doc fixes.
13270
13271 2014-01-28 Martin Rudalics <rudalics@gmx.at>
13272
13273 * window.el (fit-frame-to-buffer): Fix calculations for margins and
13274 height constraints.
13275
13276 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
13277
13278 * progmodes/hideif.el: Extend to full CPP expression syntax.
13279 (hif-token-alist): Add missing tokens.
13280 (hif-token-regexp): Add support for float/octal/hex immediates.
13281 (hif-string-literal-regexp): New const.
13282 (hif-tokenize): Recognize strings and float/octal/hex immediates.
13283 (hif-exprlist): New function.
13284 (hif-parse-if-exp): Use it.
13285 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
13286 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
13287 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
13288 (hif-logxor, hif-comma): New functions.
13289
13290 2014-01-28 Glenn Morris <rgm@gnu.org>
13291
13292 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
13293
13294 * indent.el (tab-stop-list): Doc fix. Add :version.
13295
13296 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
13297 (cvs-append-to-ignore): Add compatibility alias.
13298
13299 2014-01-27 Glenn Morris <rgm@gnu.org>
13300
13301 * dired.el (dired-hide-details-mode): Don't autoload it,
13302 since it cannot be used outside Dired buffers anyway.
13303
13304 * emulation/cua-base.el (cua-mode): Doc fix.
13305
13306 * dired.el (dired-hide-details-hide-symlink-targets)
13307 (dired-hide-details-hide-information-lines)
13308 (dired-hide-details-mode): Doc fixes.
13309
13310 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
13311 * strokes.el (strokes-file): Doc fix. Bump :version.
13312 (strokes-help): Doc fix.
13313 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
13314 * emulation/viper.el (viper): Doc fix for custom group.
13315 (top-level): Remove oh-so-no-longer-relevant text about vip.
13316 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
13317
13318 * ido.el (ido-save-directory-list-file):
13319 * saveplace.el (save-place-file):
13320 * calendar/timeclock.el (timeclock-file):
13321 * net/quickurl.el (quickurl-url-file):
13322 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
13323 * progmodes/idlwave.el (idlwave-config-directory):
13324 * textmodes/remember.el (remember-data-file):
13325 Bump :version.
13326
13327 2014-01-26 Glenn Morris <rgm@gnu.org>
13328
13329 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
13330 Doc fix. Make obsolete.
13331 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
13332
13333 * sort.el (delete-duplicate-lines): Doc fix.
13334
13335 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13336
13337 * progmodes/ada-mode.el (ada):
13338 * woman.el (woman): Link to info manual and Commentary section.
13339
13340 * progmodes/flymake.el (flymake):
13341 * nxml/nxml-mode.el (nxml):
13342 * net/eww.el (eww):
13343 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
13344 * htmlfontify.el (htmlfontify):
13345 * ses.el (ses):
13346 * epa.el (epa):
13347 * ido.el (ido): Link to info manual.
13348
13349 2014-01-25 Leo Liu <sdl.web@gmail.com>
13350
13351 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
13352
13353 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
13354
13355 * net/shr.el (shr-tag-img): Prefer the title over the alt text
13356 (bug#16537).
13357
13358 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
13359
13360 * net/eww.el (eww-download-callback):
13361 Fix reference to eww-download-directory.
13362
13363 * emacs-lisp/bytecomp.el (byte-compile-file):
13364 Remove unused local variable `file-name'.
13365
13366 2014-01-24 Glenn Morris <rgm@gnu.org>
13367
13368 * woman.el (woman-default-faces, woman-monochrome-faces):
13369 Fix obsolescence specification.
13370
13371 * subr.el (with-demoted-errors): Doc fix.
13372
13373 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
13374
13375 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
13376 (cl--macroexp-fboundp): New function.
13377 (cl--make-type-test): Use it.
13378
13379 2014-01-23 Glenn Morris <rgm@gnu.org>
13380
13381 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
13382 * simple.el (eval-expression): Doc fixes.
13383
13384 2014-01-22 Glenn Morris <rgm@gnu.org>
13385
13386 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
13387
13388 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
13389
13390 * emacs-lisp/package.el: Write files silently.
13391 (package-autoload-ensure-default-file, package--write-file-no-coding)
13392 (package-generate-description-file, package--download-one-archive)
13393 (package-install-from-archive): Tell `write-region' to stay quiet.
13394 (package-menu-mode, package-menu--print-info): Omit the Archive column
13395 if there's only one archive.
13396 (package-all-keywords, package--has-keyword-p): Remove dead code.
13397
13398 2014-01-22 Glenn Morris <rgm@gnu.org>
13399
13400 * version.el (emacs-bzr-version-bzr): Fix typo.
13401
13402 * version.el (emacs-repository-get-version):
13403 Check either .bzr or .git, but not both.
13404 Make the git case actually use the DIR argument, and return nil
13405 rather than the empty string.
13406 Avoid error if .git exists but the git executable is not found.
13407
13408 2014-01-22 Martin Rudalics <rudalics@gmx.at>
13409
13410 Fixes in window size functions around Bug#16430 and Bug#16470.
13411 * window.el (window-total-size, window-size): New argument ROUND.
13412 (window--min-delta-1, window-min-delta, window--max-delta-1):
13413 Be more conservative when calculating the numbers of lines or
13414 columns a window can shrink (Bug#16430).
13415 (fit-window-to-buffer): Simplify code.
13416 * term.el (term-window-width): Call window-body-width again.
13417
13418 2014-01-22 Glenn Morris <rgm@gnu.org>
13419
13420 * image.el (image-format-suffixes): Doc fix.
13421
13422 * international/quail.el (quail-define-package): Doc fix.
13423
13424 * emacs-lisp/authors.el (authors-valid-file-names)
13425 (authors-renamed-files-alist): Additions.
13426
13427 * vc/vc-git.el (vc-git-print-log): Remove --follow;
13428 reverts 2014-01-09 change. (Bug#16422)
13429
13430 * calc/calc-embed.el (thing-at-point-looking-at):
13431 * emacs-lisp/map-ynp.el (x-popup-dialog):
13432 * obsolete/lmenu.el (x-popup-dialog):
13433 * emacs-lisp/package.el (url-recreate-url):
13434 * mail/mailclient.el (clipboard-kill-ring-save):
13435 * subr.el (x-popup-dialog): Update declaration.
13436 * mail/rmail.el (rmail-mime-message-p):
13437 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
13438
13439 2014-01-21 Daniel Colascione <dancol@dancol.org>
13440
13441 * progmodes/sh-script.el (sh--inside-noncommand-expression):
13442 Correctly detect when we're inside an arithmetic expansion form
13443 containing nested parenthesis.
13444 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
13445 to detect cases where we shouldn't expand "<<" to a heredoc
13446 skeleton.
13447
13448 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
13449
13450 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
13451 (eldoc--message-command-p): New function.
13452 (eldoc-display-message-p): Use it.
13453 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
13454 message is not automatically erased for us.
13455 (eldoc-print-current-symbol-info): Erase previous message, if any.
13456
13457 2014-01-21 Tassilo Horn <tsdh@gnu.org>
13458
13459 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
13460 specify it's an interactive function.
13461
13462 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
13463 Fix regex used for scanning for citation keys which failed for
13464 citations with optional arguments.
13465
13466 2014-01-21 Leo Liu <sdl.web@gmail.com>
13467
13468 * simple.el (read--expression): Don't enable eldoc-mode.
13469
13470 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
13471
13472 * simple.el (move-beginning-of-line): Make sure we don't move forward
13473 (bug#16497).
13474
13475 2014-01-20 Juri Linkov <juri@jurta.org>
13476
13477 * saveplace.el (toggle-save-place, save-place-to-alist)
13478 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
13479 'dired-mode) before checking for dired-directory. (Bug#16477)
13480
13481 2014-01-20 Juri Linkov <juri@jurta.org>
13482
13483 * indent.el (indent-line-to): Use backward-to-indentation
13484 instead of back-to-indentation. (Bug#16461)
13485
13486 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
13487
13488 Revert some of the CANNOT_DUMP fix (Bug#16494).
13489 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
13490 but fixing this can wait until after the next release.
13491 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
13492
13493 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
13494
13495 * eshell/esh-mode.el (eshell-password-prompt-regexp):
13496 Use `password-word-equivalents'.
13497 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
13498 to t. (Bug#5664, Bug#13124)
13499
13500 2014-01-19 Alan Mackenzie <acm@muc.de>
13501
13502 Bind open-paren-in-column-0-is-defun-start to nil at some entry
13503 points.
13504 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
13505 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
13506 * progmodes/cc-mode.el (c-before-change, c-after-change)
13507 (c-font-lock-fontify-region): Bind it here.
13508
13509 2014-01-19 Martin Rudalics <rudalics@gmx.at>
13510
13511 * term.el (term-window-width): Call window-text-width instead of
13512 window-width (Bug#16470).
13513
13514 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
13515
13516 * simple.el (password-word-equivalents): Remove duplicates.
13517 Sort, to make this easier next time.
13518 Downcase. Omit ": " after "jelszó".
13519
13520 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
13521
13522 * term/common-win.el (saved-region-selection): Defvar it.
13523 (x-select-text): Set saved-region-selection (Bug#16382).
13524
13525 2014-01-18 Glenn Morris <rgm@gnu.org>
13526
13527 * emacs-lisp/authors.el (authors-aliases)
13528 (authors-renamed-files-alist): Add some entries.
13529
13530 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
13531
13532 * net/tramp.el (tramp-password-prompt-regexp):
13533 Use `password-word-equivalents' if available.
13534 (tramp-action-password, tramp-process-one-action)
13535 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
13536
13537 2014-01-17 Chong Yidong <cyd@gnu.org>
13538
13539 * simple.el (password-word-equivalents): New defcustom.
13540 * comint.el (comint-password-prompt-regexp): Use it. Bump version
13541 to 24.4.
13542 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
13543 to t. (Bug#13124)
13544
13545 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
13546
13547 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
13548 (ruby-align-to-stmt-keywords): Change the default value.
13549 Use `ruby-alignable-keywords' to generate the possible customization
13550 choices.
13551 (ruby-smie-rules): Instead of using a hardcoded list of alignable
13552 keywords, check against the value of `ruby-alignable-keywords'
13553 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
13554
13555 2014-01-17 Glenn Morris <rgm@gnu.org>
13556
13557 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
13558
13559 Make M-x authors return zero *Authors Errors* from current logs.
13560 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
13561 (authors-ignored-files): Add some entries, remove others.
13562 (authors-ambiguous-files, authors-valid-file-names):
13563 Add some entries.
13564 (authors-renamed-files-alist): Add, remove, and adjust entries.
13565 (authors-renamed-files-regexps): Add some entries.
13566 Remove some very broad ones. Make some entries `lax'.
13567 (authors-lax-changelogs): New constant.
13568 (authors-disambiguate-file-name): Treat top-level specially.
13569 (authors-lax-changelog-p): New function.
13570 (authors-canonical-file-name): Check file as written against
13571 authors-valid-file-names. Do not special-case etc/.
13572 Handle `lax' logs and authors-renamed-files-regexps elements.
13573
13574 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
13575
13576 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
13577 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
13578 callers.
13579
13580 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
13581
13582 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
13583 Assume we're already in the proper buffer.
13584 Inspired by Anders Lindgren <andlind@gmail.com>.
13585 (follow-post-command-hook): Call it from the right buffer.
13586 (follow-comint-scroll-to-bottom): Adjust call.
13587 (follow-all-followers): Use get-buffer-window-list.
13588
13589 2014-01-15 Daniel Colascione <dancol@dancol.org>
13590
13591 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
13592 `buffer-file-name' in interactive-form so that we don't leave
13593 pathless file names in `file-name-history'.
13594
13595 2014-01-15 Juri Linkov <juri@jurta.org>
13596
13597 * indent.el (indent-rigidly): Set deactivate-mark to nil
13598 in transient indentation mode. (Bug#16438)
13599
13600 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
13601
13602 * emacs-lisp/package.el (package-desc-keywords): New function
13603 (Bug#16222).
13604 (describe-package-1, package-all-keywords)
13605 (package--has-keyword-p): Use it.
13606
13607 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
13608
13609 * simple.el (define-alternatives): When creating the
13610 COMMAND-alternatives variable, assign COMMAND as its definition
13611 name so that `describe-variable' can relocate it.
13612
13613 2014-01-14 Matthew Leach <matthew@mattleach.net>
13614
13615 * font-lock.el (font-lock-keywords): Fix typo in docstring
13616 (bug#16307).
13617
13618 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13619
13620 * textmodes/ispell.el (ispell-region): Reset `in-comment' for new
13621 line instead of wrongly reset `add-coment' (bug#13577).
13622
13623 2014-01-14 Daiki Ueno <ueno@gnu.org>
13624
13625 * epa-file.el (epa-file-write-region): Encode the region according
13626 to `buffer-file-format'. Problem reported at:
13627 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
13628
13629 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
13630
13631 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
13632 so it applies in the right buffer (bug#16410).
13633
13634 2014-01-13 Daniel Colascione <dancol@dancol.org>
13635
13636 * textmodes/rst.el (rst-define-key): Provide deprecated
13637 keybindings through named functions instead of anonymous ones so
13638 that "??" doesn't appear in describe-mode output.
13639
13640 2014-01-13 Bastien Guerry <bzg@gnu.org>
13641
13642 * simple.el (define-alternatives): Call the selected command
13643 interactively. When setting `COMMAND--implementation' for the
13644 first time, tell the user how to chose another implementation.
13645 Enhance the docstring.
13646
13647 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
13648
13649 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
13650 (log-edit--match-first-line): New function.
13651 (log-edit-font-lock-keywords): Use it.
13652 (log-edit-mode): Make jit-lock-defer-multiline work.
13653
13654 2014-01-13 Bastien Guerry <bzg@gnu.org>
13655
13656 * rect.el (rectangle-mark-mode): When the region is not active,
13657 display a message saying that the mark as been set and that
13658 rectangle mode is in use.
13659 (rectangle--highlight-for-redisplay): Only put an overlay with a
13660 visible vertical bar when (display-graphic-p) is non-nil.
13661 This partially fixes Bug#16403.
13662
13663 2014-01-13 Juri Linkov <juri@jurta.org>
13664
13665 * info.el (Info-find-file): Go to DIR before displaying the error
13666 about a nonexistent file if no previous Info file is visited.
13667 Use `user-error' instead of `error' for "Info file %s does not exist".
13668 (Info-find-node-2): In case of a nonexistent node in unwind forms
13669 go to the Top node if there is no previous node to revert to.
13670 (Bug#16405)
13671
13672 2014-01-13 Martin Rudalics <rudalics@gmx.at>
13673
13674 fit-frame/window-to-buffer code fixes including one for Bug#14096.
13675 * window.el (fit-frame-to-buffer): Fix doc-string.
13676 Respect window-min-height/-width. Fit pixelwise when
13677 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
13678 when avoiding that frame goes partially off-screen.
13679 (fit-window-to-buffer): Respect window-min-height/-width
13680 (Bug#14096).
13681
13682 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
13683
13684 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
13685 after an empty line.
13686
13687 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
13688
13689 * net/shr.el (shr-render-region): Autoload.
13690
13691 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
13692
13693 * net/eww.el (eww-download-directory): Rename from
13694 `eww-download-path' (Bug#16419).
13695
13696 2014-01-12 Leo Liu <sdl.web@gmail.com>
13697
13698 * dired-x.el (dired-mode-map): Fix last change.
13699
13700 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
13701
13702 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
13703
13704 Spelling fixes.
13705 * emacs-lisp/generic.el (generic--normalize-comments):
13706 Rename from generic--normalise-comments. All uses changed.
13707 * play/bubbles.el (bubbles--neighborhood-score)
13708 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
13709 (bubbles--neighborhood-available)
13710 (bubbles--update-neighborhood-score):
13711 Rename from names with 'neighbourhood'. All uses changed.
13712
13713 2014-01-12 Leo Liu <sdl.web@gmail.com>
13714
13715 Re-implement the feature of showing eldoc info after editing.
13716 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
13717 (eldoc-edit-message-commands): New function.
13718 (eldoc-print-after-edit): New variable.
13719 (eldoc-pre-command-refresh-echo-area): Emit message only by
13720 eldoc-message-commands.
13721 (eldoc-mode): Restrict eldoc-message-commands to editing commands
13722 if eldoc-print-after-edit is set. (Bug#16346)
13723 * simple.el (read--expression): Enable eldoc-mode.
13724 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
13725
13726 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
13727 Eric S. Raymond <esr@thyrsus.com>
13728
13729 * version.el (emacs-repository-get-version): Enhance so the
13730 function works correctly in either a Bazaar or Git repo.
13731
13732 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
13733
13734 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
13735 Goes with removal of the joke manpages from /etc.
13736
13737 2014-01-10 Kenichi Handa <handa@gnu.org>
13738
13739 * mail/rmail.el (rmail-get-coding-system):
13740 Check rmail-get-coding-function before "funcall"ing it.
13741
13742 2014-01-10 Glenn Morris <rgm@gnu.org>
13743
13744 * emacs-lisp/authors.el (authors-fixed-entries):
13745 Update for files that no longer exist.
13746
13747 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
13748
13749 * version.el (emacs-bzr-get-version): Restore compatibilty with
13750 24.3 (Tested).
13751
13752 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
13753
13754 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
13755 and Podfile.
13756
13757 2014-01-10 Eli Zaretskii <eliz@gnu.org>
13758
13759 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
13760
13761 2014-01-10 Chong Yidong <cyd@gnu.org>
13762
13763 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
13764
13765 2014-01-10 Anders Lindgren <andlind@gmail.com>
13766
13767 * follow.el (follow-cache-command-list): Include right-char and
13768 left-char.
13769
13770 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
13771
13772 Spelling fixes.
13773 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
13774 * woman.el (woman-mark-horizontal-position):
13775 Rename from woman-mark-horizonal-position. Use changed.
13776
13777 2014-01-10 Glenn Morris <rgm@gnu.org>
13778
13779 * info.el (info-initialize): If running uninstalled, ensure our
13780 own info files are always found first, even if INFOPATH is set.
13781
13782 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
13783
13784 2014-01-09 David Engster <deng@randomsample.de>
13785
13786 * emacs-lisp/eieio-custom.el:
13787 * emacs-lisp/eieio-opt.el: Set generated autoload file to
13788 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
13789 * emacs-lisp/eieio.el: Regenerate autoloads.
13790
13791 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
13792
13793 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
13794 following renames. (Bug#8756)
13795
13796 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
13797
13798 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
13799 (bug#16382).
13800 (activate-mark): Add `no-tmm' argument.
13801 (set-mark, push-mark-command): Use it instead of running
13802 activate-mark-hook by hand.
13803
13804 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
13805
13806 In preparation for the move to git, sanitize out some
13807 Bazaar-specific names.
13808
13809 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
13810
13811 * version.el (emacs-bzr-version): Name changed to
13812 emacs-repository-version. Obsolete-variable alias made.
13813 * loadup.el: Follow through on this name change.
13814 * mail/emacsbug.el (report-emacs-bug): Factor out any
13815 assumption about the version control system in use.
13816
13817 2014-01-08 David Engster <deng@randomsample.de>
13818
13819 * help-fns.el (help-fns-describe-function-functions):
13820 New variable to call functions for augmenting help buffers.
13821 (describe-function-1): Remove explicit calls to
13822 `help-fns--compiler-macro', `help-fns--parent-mode' and
13823 `help-fns--obsolete'. Put them in above new variable instead, and
13824 call them through `run-hook-with-args'.
13825 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
13826 `eieio-describe-class'. Not meant for interactive use anymore,
13827 but to augment existing help buffers. Remove optional second
13828 argument. Create proper button for file location.
13829 Rewrite function to use `insert' instead of `princ' and `prin1' where
13830 possible.
13831 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
13832 (eieio-method-def, eieio-class-def): Move further up.
13833 (describe-method, describe-generic, eieio-describe-method):
13834 Remove aliases.
13835 (eieio-help-constructor, eieio-help-generic): Rename from
13836 `eieio-describe-constructor' and `eieio-describe-generic', resp.
13837 Rewrite to use `insert' in the current buffer and use proper help
13838 buttons.
13839 (eieio-help-find-method-definition)
13840 (eieio-help-find-class-definition): Also accept symbols as
13841 arguments.
13842 (eieio-help-mode-augmentation-maybee): Remove.
13843 (eieio-describe-class-sb): Use `describe-function'.
13844 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
13845 Add `eieio-help-generic' and `eieio-help-constructor'.
13846
13847 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
13848
13849 Spelling fixes.
13850 * language/china-util.el (hz-ascii-designation):
13851 Rename from hz-ascii-designnation.
13852 (hz-ascii-designation): Rename from hz-ascii-designnation.
13853 All uses changed.
13854
13855 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
13856
13857 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
13858 package-alist.
13859
13860 2014-01-08 Bastien Guerry <bzg@gnu.org>
13861
13862 * emacs-lisp/package.el (package-delete):
13863 Correctly delete the package from package-alist.
13864
13865 2014-01-08 Daiki Ueno <ueno@gnu.org>
13866
13867 * emacs-lisp/package.el (url-recreate-url): Declare.
13868 (url-http-target-url): Declare.
13869 (package-handle-response): Include requested URL in the error message.
13870 (package--check-signature): Don't re-signal errors from
13871 package--with-work-buffer. Suggested by Stefan Monnier.
13872
13873 2014-01-07 Bastien Guerry <bzg@gnu.org>
13874
13875 * minibuffer.el (completion--try-word-completion): When both a
13876 hyphen and a space are possible candidates for the character
13877 following a word, display both candidates. (Bug#15980)
13878
13879 2014-01-07 Martin Rudalics <rudalics@gmx.at>
13880
13881 * window.el (balance-windows-2): While rounding don't give a
13882 window more than the remainder. Bug#16351, bug#16383.
13883
13884 2014-01-07 Glenn Morris <rgm@gnu.org>
13885
13886 * menu-bar.el (menu-bar-help-extra-packages): Remove.
13887 (menu-bar-help-menu): Use view-external-packages instead.
13888
13889 2014-01-07 Bastien Guerry <bzg@gnu.org>
13890
13891 * emacs-lisp/package.el (package-delete): Also delete the package
13892 name from `package-alist', not its description only.
13893
13894 2014-01-07 Glenn Morris <rgm@gnu.org>
13895
13896 * help.el (view-external-packages):
13897 * menu-bar.el (menu-bar-help-extra-packages):
13898 Visit efaq.info rather than etc/MORE.STUFF.
13899
13900 2014-01-07 Juri Linkov <juri@jurta.org>
13901
13902 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
13903 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
13904
13905 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
13906 that shadows RET. (Bug#16342)
13907
13908 2014-01-07 Chong Yidong <cyd@gnu.org>
13909
13910 * isearch.el (isearch-yank-char, isearch-yank-word)
13911 (isearch-yank-line): Doc fix.
13912
13913 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
13914
13915 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
13916 * emacs-lisp/elint.el (elint-find-builtins):
13917 * emacs-lisp/eldoc.el (eldoc-symbol-function):
13918 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
13919 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
13920 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
13921 * apropos.el (apropos-safe-documentation):
13922 * subr.el (symbol-file): Remove redundant fboundp.
13923 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
13924
13925 2014-01-06 Bastien Guerry <bzg@gnu.org>
13926
13927 * hl-line.el (global-hl-line-overlay): Make a local variable.
13928 (global-hl-line-overlays): New variable to store all overlays.
13929 (global-hl-line-mode): Don't delete overlays from the current
13930 buffer when `global-hl-line-sticky-flag' is non-nil.
13931 (global-hl-line-highlight): Add new overlays to
13932 `global-hl-line-overlays'.
13933 (global-hl-line-unhighlight-all): New function to delete all
13934 overlays when turning off `global-hl-line-mode'.
13935 This fixes Bug#16183.
13936
13937 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
13938
13939 * subr.el (set-transient-map): Fix nested case and docstring.
13940
13941 2014-01-06 Tassilo Horn <tsdh@gnu.org>
13942
13943 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
13944 `Texinfo' entry.
13945
13946 2014-01-06 Daniel Colascione <dancol@dancol.org>
13947
13948 Fix defun navigation in vc log view.
13949
13950 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
13951 like `beginning-of-defun'.
13952 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
13953 log-view-end-of-defun to log-view-end-of-defun-1. Replace
13954 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
13955 (log-view-extract-comment): Call `log-view-current-entry' directly
13956 instead of relying on broken `log-view-beginning-of-defun' behavior.
13957
13958 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
13959
13960 Spelling fixes.
13961 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
13962 * emacs-lisp/debug.el (cancel-debug-on-entry):
13963 * epg.el (epg-error-to-string):
13964 * files.el (recover-file):
13965 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
13966 * mail/emacsbug.el (report-emacs-bug-hook):
13967 * mail/sendmail.el (mail-recover):
13968 * ses.el (ses-yank-resize):
13969 * term/ns-win.el (ns-print-buffer):
13970 Spelling fixes in diagnostics, mostly for "canceled" with one L.
13971 * epg.el (epg-key-capability-alist): Rename from misspelled version.
13972 All uses changed.
13973 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
13974
13975 2014-01-06 Leo Liu <sdl.web@gmail.com>
13976
13977 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
13978 to avoid shadowing global key. (Bug#16354)
13979
13980 2014-01-06 Daniel Colascione <dancol@dancol.org>
13981
13982 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
13983 rst-mode.
13984
13985 2014-01-05 Martin Rudalics <rudalics@gmx.at>
13986
13987 * window.el (balance-windows): Add mising t to fix Bug#16351.
13988
13989 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
13990
13991 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
13992 (bug#16285).
13993 (shr-insert): If we have a word that's longer than `shr-width',
13994 break after it anyway. Otherwise we'll do no breaking once we get
13995 such a long word.
13996
13997 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
13998
13999 * net/eww.el (eww): Support single/double quote for search.
14000 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
14001 (eww-history-quit): Delete and use quit-window.
14002 (eww-history-kill): Delete, because it doesn't work well and
14003 not necessary.
14004 (eww-history-mode-map): Delete some keys and add easy-menu.
14005
14006 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
14007
14008 Fix misspelling of 'chinese' in rx (Bug#16237).
14009 * emacs-lisp/rx.el (rx-categories): Correct spelling of
14010 chinese-two-byte.
14011
14012 Change subword regexps back to vars (Bug#16296).
14013 * progmodes/subword.el (subword-forward-regexp)
14014 (subword-backward-regexp): Change these back to variables.
14015
14016 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
14017
14018 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
14019 syntax-begin-function (bug#16247).
14020
14021 2014-01-03 Chong Yidong <cyd@gnu.org>
14022
14023 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
14024 (advice--docstring): Delete variable.
14025 (advice--make-1): Leave the docstring empty.
14026 (advice-add): Use function-documentation for advised docstring.
14027
14028 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
14029 Ignore function-documentation property when getting documentation.
14030 (ad-activate-advised-definition): Use function-documentation
14031 generate the docstring.
14032 (ad-make-advised-definition): Don't call
14033 ad-make-advised-definition-docstring.
14034 (ad-make-advised-definition-docstring, ad-advised-definition-p):
14035 Delete functions.
14036
14037 * progmodes/sql.el (sql-help): Use function-documentation instead
14038 of dynamic-docstring-function property. No need to autoload now.
14039 (sql--help-docstring): New variable.
14040 (sql--make-help-docstring): Use it.
14041
14042 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
14043
14044 * ielm.el (ielm-tab): Retarget.
14045 (ielm-map): Use ielm-tab for tab.
14046 (ielm-complete-filename): Use comint-filename-completion.
14047 (ielm-complete-symbol): Remove.
14048 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
14049 remove ielm-tab from completion-at-point-functions (bug#16224).
14050
14051 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
14052 Beware signals raised by predicates (bug#16201).
14053
14054 2014-01-02 Richard Stallman <rms@gnu.org>
14055
14056 * dired-aux.el (dired-do-print): Handle printer-name.
14057
14058 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
14059 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
14060 (rmail-epa-decrypt): Turn off mime processing.
14061
14062 * mail/rmail.el (rmail-make-in-reply-to-field):
14063 Add parens in message-id.
14064
14065 * mail/rmail.el (rmail-get-coding-function): Variable.
14066 (rmail-get-coding-system): Use it.
14067
14068 2013-12-31 Eli Zaretskii <eliz@gnu.org>
14069
14070 * international/mule-conf.el: Unify the charset indian-is13194.
14071 (indian-is13194): Specify unify-map.
14072
14073 2013-12-31 Leo Liu <sdl.web@gmail.com>
14074
14075 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
14076
14077 2013-12-30 Daniel Colascione <dancol@dancol.org>
14078
14079 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
14080 of printing a useless when we resume from sleep.
14081
14082 * progmodes/sh-script.el
14083 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
14084 in indentation code. (Bug#16233)
14085
14086 2013-12-28 João Távora <joaotavora@gmail.com>
14087
14088 * elec-pair.el (electric-pair-post-self-insert-function):
14089 Don't open extra newlines at beginning of buffer. (Bug#16272)
14090
14091 2013-12-28 Eli Zaretskii <eliz@gnu.org>
14092
14093 * frame.el (window-system-for-display): Don't allow to create a
14094 GUI frame from a -nw session on MS-Windows. (Bug#14739)
14095
14096 2013-12-28 Glenn Morris <rgm@gnu.org>
14097
14098 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
14099 Update callers.
14100
14101 * apropos.el (apropos-match-face):
14102 * calculator.el (calculator-displayer):
14103 * dabbrev.el (dabbrev-search-these-buffers-only):
14104 * face-remap.el (buffer-face-mode-face):
14105 * simple.el (yank-handled-properties):
14106 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
14107 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
14108 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
14109 (hashcash-double-spend-database):
14110 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
14111 (ruby-deep-indent-paren-style):
14112 * textmodes/flyspell.el (flyspell-auto-correct-binding):
14113 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
14114 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
14115 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
14116 Specify custom types.
14117
14118 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
14119 * bookmark.el (bookmark-bmenu-use-header-line):
14120 * doc-view.el (doc-view-scale-internally):
14121 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
14122 * register.el (register-preview-delay):
14123 * net/shr.el (shr-bullet):
14124 * progmodes/cfengine.el (cfengine-cf-promises)
14125 (cfengine-parameters-indent):
14126 * progmodes/octave.el (inferior-octave-error-regexp-alist):
14127 * textmodes/reftex-vars.el (reftex-label-regexps):
14128 * vc/log-edit.el (log-edit-setup-add-author): Add version.
14129
14130 * net/tls.el (tls-certtool-program): Fix default value.
14131
14132 * desktop.el (desktop-restore-in-current-display):
14133 * newcomment.el (comment-empty-lines):
14134 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
14135 (idlwave-pad-keyword):
14136 * progmodes/tcl.el (tcl-tab-always-indent):
14137 * textmodes/reftex-vars.el (reftex-index-default-tag):
14138 * elec-pair.el (electric-pair-skip-whitespace):
14139 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
14140
14141 * emacs-lisp/authors.el (authors-ignored-files)
14142 (authors-valid-file-names, authors-renamed-files-alist): Additions.
14143
14144 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
14145
14146 * shell.el (shell-dynamic-complete-command): Doc fix.
14147 (shell--command-completion-data): Shell completion now matches
14148 executable filenames from the current buffer's directory, on
14149 systems in which this behavior is the default (windows-nt, ms-dos).
14150
14151 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
14152
14153 * net/shr.el (shr-insert): Don't infloop if the width is zero.
14154
14155 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
14156
14157 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
14158 (bug#16251).
14159
14160 * electric.el: Move all electric-pair-* to elec-pair.el.
14161 * elec-pair.el: New file, split from electric.el.
14162
14163 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
14164
14165 * net/shr.el (shr-find-fill-point): Don't try to fill if the
14166 indentation level is larger than the width, because that will
14167 infloop.
14168 (shr-insert): Fill repeatedly long texts, so that Japanese is
14169 formatted correctly (bug#16263).
14170 (shr-find-fill-point): Off by one error in comparison with the
14171 indentation.
14172
14173 2013-12-26 João Távora <joaotavora@gmail.com>
14174
14175 * electric.el (electric-pair-mode): More flexible engine for skip-
14176 and inhibit predicates, new options for pairing-related functionality.
14177 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
14178 if that keeps or improves their balance in buffers.
14179 (electric-pair-delete-adjacent-pairs): Delete the pair when
14180 backspacing over adjacent matched delimiters.
14181 (electric-pair-open-extra-newline): Open extra newline when
14182 inserting newlines between adjacent matched delimiters.
14183 (electric--sort-post-self-insertion-hook):
14184 Sort post-self-insert-hook according to priority values when
14185 minor-modes are activated.
14186 * simple.el (newline-and-indent): Call newline with interactive
14187 set to t.
14188 (blink-paren-post-self-insert-function): Set priority to 100.
14189 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
14190 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
14191 comments. Locally set electric-pair-skip-whitespace to 'chomp and
14192 electric-pair-open-newline-between-pairs to nil.
14193
14194 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
14195
14196 * progmodes/python.el: Use lexical-binding.
14197 (python-nav-beginning-of-defun): Stop searching ASAP.
14198
14199 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
14200
14201 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
14202 Fix interactive spec. Doc fix. (Bug#15754)
14203
14204 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
14205
14206 * emacs-lisp/byte-run.el (eval-when-compile):
14207 * progmodes/cc-defs.el (cc-eval-when-compile):
14208 Fix edebug spec (bug#16184).
14209
14210 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
14211
14212 * net/shr.el (shr-visit-file): Remove debugging function.
14213 (shr-insert): Don't infloop if we can't find a good place to break
14214 the line (bug#16256).
14215
14216 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
14217
14218 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
14219 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
14220 python-nav-lisp-forward-sexp-safe.
14221 (python-nav--forward-sexp): New argument SAFE allows switching
14222 forward sexp movement behavior for parens.
14223 (python-nav-forward-sexp): Throw errors on unterminated parens
14224 (Bug#16191).
14225 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
14226 (python-nav-backward-sexp-safe): New functions.
14227 (python-shell-buffer-substring):
14228 Use `python-nav-forward-sexp-safe'.
14229
14230 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
14231
14232 * net/shr.el (shr-find-fill-point): Don't break lines before a
14233 quotation mark.
14234 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
14235 (shr-find-fill-point): Remove the special checks for the quotation
14236 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
14237
14238 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
14239
14240 * net/eww.el (eww-form-textarea): Use a different face for
14241 textareas than text input since they have different keymaps
14242 (bug#16142).
14243
14244 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
14245
14246 * progmodes/python.el (python-nav-beginning-of-statement):
14247 Speed up (Bug#15295).
14248
14249 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
14250
14251 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
14252 the window configuration.
14253
14254 2013-12-24 Eli Zaretskii <eliz@gnu.org>
14255
14256 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
14257 we run on MS-Windows or MS-DOS.
14258
14259 2013-12-24 Martin Rudalics <rudalics@gmx.at>
14260
14261 * window.el (balance-windows-area): Call window-size instead of
14262 window-height and window-width. Bug#16241.
14263
14264 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
14265
14266 * net/eww.el (eww-bookmark-quit): Remove.
14267 (eww-bookmark-browse): Restore the window configuration when you
14268 choose a bookmark (bug#16144).
14269
14270 2013-12-24 Daniel Colascione <dancol@dancol.org>
14271
14272 * icomplete.el: Remove redundant :group arguments to `defcustom'
14273 throughout.
14274 (icomplete-show-matches-on-no-input): New customizable variable.
14275 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
14276 we have something to show.
14277 (icomplete-exhibit): Compute completions even if we have no user input.
14278
14279 2013-12-23 Daniel Colascione <dancol@dancol.org>
14280
14281 * icomplete.el: Move `provide' to end of file.
14282
14283 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
14284
14285 * net/gnutls.el (gnutls-verify-error): Add version tag.
14286
14287 2013-12-23 Chong Yidong <cyd@gnu.org>
14288
14289 * subr.el (set-transient-map): Rename from
14290 set-temporary-overlay-map. Doc fix.
14291
14292 * face-remap.el (text-scale-adjust):
14293 * indent.el (indent-rigidly):
14294 * kmacro.el (kmacro-call-macro):
14295 * minibuffer.el (minibuffer-force-complete):
14296 * repeat.el (repeat):
14297 * simple.el (universal-argument--mode):
14298 * calendar/todo-mode.el (todo-insert-item--next-param):
14299 * progmodes/f90.el (f90-abbrev-start): Callers changed.
14300
14301 * indent.el (indent-rigidly): Use substitute-command-keys.
14302
14303 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
14304
14305 * net/eww.el (eww-tag-select): Add text-property to jump to next
14306 select field.
14307 (eww): Add non-supported ftp error.
14308
14309 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
14310
14311 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
14312 comments. Handle electric indent after typing `?' and `!'.
14313
14314 2013-12-22 Chong Yidong <cyd@gnu.org>
14315
14316 * faces.el (face-spec-recalc): If the theme specs are not
14317 applicable to a frame, fall back on the defface spec.
14318 This prevents themes from obliterating faces on low-color terminals.
14319
14320 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
14321
14322 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
14323 after `{'. We need it after block openers, and it doesn't seem
14324 to hurt after hash openers.
14325
14326 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
14327
14328 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
14329 extracted from `ruby-smie-rules'.
14330 (ruby--electric-indent-chars): New variable.
14331 (ruby--electric-indent-p): New function.
14332 (ruby-mode): Use `electric-indent-functions' instead of
14333 `electric-indent-chars'.
14334
14335 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
14336
14337 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
14338 docstring.
14339 (ruby-smie-rules): Indent plus one level after `=>'.
14340
14341 2013-12-21 Richard Stallman <rms@gnu.org>
14342
14343 * simple.el (newline): Doc fix.
14344
14345 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
14346
14347 * net/eww.el (eww-list-histories, eww-list-histories)
14348 (eww-history-browse, eww-history-quit, eww-history-kill)
14349 (eww-history-mode-map, eww-history-mode): New command and
14350 functions to list browser histories.
14351 (eww-form-text): Support text form with disabled
14352 and readonly attributes.
14353 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
14354
14355 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14356
14357 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
14358 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
14359 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
14360 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
14361 Use `user-error'.
14362 (eww-bookmark-mode-map): Add menu.
14363 (eww-render, eww-mode): Use `setq-local'.
14364 (eww-tool-bar-map): New variable.
14365 (eww-mode): Set `tool-bar-map'.
14366 (eww-view-source): Check for `html-mode' with `fboundp'.
14367
14368 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14369
14370 * net/shr.el (shr--extract-best-source): Don't bug out on audio
14371 elements with text inside. Also remove debugging.
14372
14373 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
14374
14375 * cus-start.el (all): Add ns-use-srgb-colorspace.
14376
14377 2013-12-21 Chong Yidong <cyd@gnu.org>
14378
14379 * custom.el (custom-theme-recalc-face): Do nothing if the face is
14380 undefined. Thus, theme settings for undefined faces do not take
14381 effect until the faces are defined with defface, the same as with
14382 theme variables.
14383
14384 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
14385 (face-spec-reset-face): Don't assign extra properties in temacs.
14386 (face-spec-recalc): Apply X resources too.
14387
14388 2013-12-21 Chong Yidong <cyd@gnu.org>
14389
14390 * faces.el (face-spec-set):
14391 * cus-face.el (custom-theme-set-faces, custom-set-faces):
14392 * custom.el (defface): Doc fixes (Bug#16203).
14393
14394 * indent.el (indent-rigidly-map): Add docstring, and move commands
14395 into named functions.
14396 (indent-rigidly-left, indent-rigidly-right)
14397 (indent-rigidly-left-to-tab-stop)
14398 (indent-rigidly-right-to-tab-stop): New functions. Decide on
14399 indentation direction based on bidi direction, and accumulate
14400 sequential commands in a single undo boundary.
14401 (indent-rigidly--pop-undo): New utility function.
14402
14403 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
14404
14405 * faces.el (read-face-name): Require crm.el when using crm-separator.
14406
14407 2013-12-20 Daniel Colascione <dancol@dancol.org>
14408
14409 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
14410 so that we don't reflow comments into the shebang line.
14411
14412 2013-12-20 Juri Linkov <juri@jurta.org>
14413
14414 * saveplace.el (save-place-to-alist): Add `dired-filename' as
14415 a position when `dired-directory' is non-nil. Check integer
14416 positions with `integerp'.
14417 (toggle-save-place, save-places-to-alist): Add check for
14418 `dired-directory'.
14419 (save-place-find-file-hook): Check integer positions with
14420 `integerp'.
14421 (save-place-dired-hook): Use `dired-goto-file' when
14422 `dired-filename' is found in the assoc list. Check integer
14423 positions with `integerp'.
14424 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
14425
14426 * dired.el (dired-initial-position-hook): Rename back from
14427 `dired-initial-point-hook'.
14428 (dired-initial-position): Rename `dired-initial-point-hook' to
14429 `dired-initial-position-hook'.
14430 (dired-file-name-at-point): Doc fix. (Bug#15329)
14431
14432 2013-12-20 Juri Linkov <juri@jurta.org>
14433
14434 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
14435 (read-regexp-suggestions): New function.
14436 (read-regexp): Use `read-regexp-defaults-function' to get default values.
14437 Use `read-regexp-suggestions'. Add non-empty default to history
14438 for empty input.
14439 (occur-read-regexp-defaults-function): Remove function.
14440 (occur-read-primary-args): Use `regexp-history-last' instead of
14441 `occur-read-regexp-defaults-function'.
14442
14443 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
14444 (hi-lock-line-face-buffer, hi-lock-face-buffer)
14445 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
14446 `hi-lock-read-regexp-defaults-function'. Doc fix.
14447 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
14448 with `find-tag-default-as-symbol-regexp'. Doc fix.
14449 (hi-lock-read-regexp-defaults): Remove function.
14450 (hi-lock-regexp-okay): Add check for null.
14451
14452 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
14453 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
14454
14455 * subr.el (find-tag-default-as-symbol-regexp): New function.
14456 (find-tag-default-as-regexp): Move symbol regexp formatting to
14457 `find-tag-default-as-symbol-regexp'.
14458
14459 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
14460
14461 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
14462 (Bug#14179)
14463
14464 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
14465
14466 * calendar/todo-mode.el: New implementation of item insertion
14467 commands and key bindings.
14468 (todo-key-prompt): New face.
14469 (todo-insert-item): New command.
14470 (todo-insert-item--parameters): New defconst, replacing defvar
14471 todo-insertion-commands-args-genlist.
14472 (todo-insert-item--param-key-alist): New defconst, replacing
14473 defvar todo-insertion-commands-arg-key-list.
14474 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
14475 (todo-insert-item--argsleft, todo-insert-item--apply-args)
14476 (todo-insert-item--next-param): New functions.
14477 (todo-insert-item--args, todo-insert-item--argleft)
14478 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
14479 New variables.
14480 (todo-key-bindings-t): Change binding of "i" from
14481 todo-insertion-map to todo-insert-item.
14482 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
14483 (todo-insertion-command-name, todo-insertion-commands-names)
14484 (todo-define-insertion-command, todo-insertion-commands)
14485 (todo-insertion-key-bindings, todo-insertion-map): Remove.
14486
14487 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
14488
14489 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
14490 (todo-toggle-item-highlighting): Use eval-and-compile instead of
14491 eval-when-compile.
14492 (todo-move-category): Allow choosing a non-existing todo file to
14493 move the category to, and create that file.
14494 (todo-default-priority): New user option.
14495 (todo-set-item-priority): Use it.
14496 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
14497 (desktop-restore-file-buffer): Declare.
14498 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
14499 (todo-modes-set-2): Locally set desktop-save-buffer to
14500 todo-desktop-save-buffer.
14501 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
14502 (auto-mode-alist): Add autoload cookie.
14503
14504 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
14505
14506 * emacs-lisp/subr-x.el: Renamed from helpers.el.
14507 helpers.el was a poor choice of name.
14508 (string-remove-prefix): New function.
14509 (string-remove-suffix): New function.
14510
14511 2013-12-20 Martin Rudalics <rudalics@gmx.at>
14512
14513 Fix assignment for new window total sizes.
14514 * window.el (window--pixel-to-size): Remove function.
14515 (window--pixel-to-total-1, window--pixel-to-total):
14516 Fix calculation of new total sizes.
14517
14518 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
14519
14520 * comint.el (comint-output-filter): Fix rear-nonsticky property
14521 placement (Bug#16010).
14522
14523 2013-12-20 Chong Yidong <cyd@gnu.org>
14524
14525 * faces.el (read-color): Minor fix for completion function.
14526
14527 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
14528
14529 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
14530 New option. (Bug#16182)
14531 (ruby-smie--indent-to-stmt-p): Use it.
14532 (ruby-smie-rules): Revert the logic in the handling of `when'.
14533 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
14534 (ruby-deep-arglist, ruby-deep-indent-paren)
14535 (ruby-deep-indent-paren-style): Update docstrings to note that the
14536 vars don't have any effect with SMIE.
14537
14538 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
14539
14540 * calc/calc.el (calc-enter, calc-pop): Use the variable
14541 `calc-context-sensitive-enter'.
14542
14543 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
14544
14545 * net/shr.el (shr-insert): Protect against infloops in degenerate
14546 tables.
14547
14548 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14549
14550 * progmodes/octave.el (octave): Add link to manual and octave
14551 homepage.
14552 (octave-mode-menu): Link to octave-mode manual.
14553
14554 2013-12-20 Leo Liu <sdl.web@gmail.com>
14555
14556 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
14557 insertion using skeleton-end-newline. (Bug#16138)
14558
14559 2013-12-20 Juri Linkov <juri@jurta.org>
14560
14561 * replace.el (occur-engine): Use `add-face-text-property'
14562 to add the face property to matches and titles. (Bug#14645)
14563
14564 * hi-lock.el (hi-green): Use lighter color "light green" closer to
14565 the palette of other hi-lock colors.
14566 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
14567
14568 2013-12-19 Juri Linkov <juri@jurta.org>
14569
14570 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
14571 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
14572 (minibuffer-history-symbol): Move variable declaration closer to
14573 its usage.
14574
14575 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
14576 (Bug#14785)
14577
14578 2013-12-19 Juri Linkov <juri@jurta.org>
14579
14580 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
14581 New function.
14582 (log-edit-hook): Add it to :options. (Bug#16170)
14583
14584 2013-12-19 Juri Linkov <juri@jurta.org>
14585
14586 * simple.el (eval-expression-print-format): Don't check for
14587 command names and the last command. Always display additional
14588 formats of the integer result in the echo area, and insert them
14589 to the current buffer only with a zero prefix arg.
14590 Display character when char-displayable-p is non-nil.
14591 (eval-expression): With a zero prefix arg, set `print-length' and
14592 `print-level' to nil, and insert the integer values from
14593 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
14594
14595 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
14596 `eval-last-sexp-arg-internal'. Doc fix.
14597 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
14598 `eval-last-sexp-print-value'. Doc fix.
14599 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
14600 Set `print-length' and `print-level' to nil when arg is zero.
14601 (eval-last-sexp): Doc fix.
14602 (eval-defun-2): Print the integer values from
14603 `eval-expression-print-format' at the end.
14604
14605 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
14606 values from `eval-expression-print-format' at the end.
14607
14608 * ielm.el (ielm-eval-input): Print the integer
14609 values from `eval-expression-print-format' at the end.
14610
14611 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
14612
14613 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
14614 2013-12-11T19:01:44Z!tzz@lifelogs.com.
14615
14616 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
14617
14618 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
14619 (hl-line-highlight, global-hl-line-highlight): Use it.
14620 (hl-line-overlay): Use defvar-local.
14621
14622 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
14623
14624 * term/ns-win.el: Require dnd.
14625 (global-map): Remove drag items.
14626 (ns-insert-text, ns-set-foreground-at-mouse)
14627 (ns-set-background-at-mouse):
14628 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
14629 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
14630 New functions.
14631
14632 2013-12-19 Glenn Morris <rgm@gnu.org>
14633
14634 * emacs-lisp/ert.el (ert-select-tests):
14635 Fix string/symbol mixup. (Bug#16121)
14636
14637 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
14638
14639 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
14640 keywords to their parent.
14641
14642 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
14643
14644 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
14645 first arg to be a string (fixed dead code), or an operator symbol.
14646 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
14647 operator symbols.
14648 (ruby-smie-rules): Remove parent token check in the `.' clause, it
14649 did nothing. Don't respond to `(:after ".")', it will be called
14650 with :before anyway. Remove the ` @ ' rule, it didn't seem to
14651 change anything. Only return indentation for binary operators
14652 when they are hanging. De-dent opening paren when its parent is
14653 `.', otherwise it looks bad when the dot is not at bol or eol
14654 (bug#16182).
14655
14656 2013-12-19 Juri Linkov <juri@jurta.org>
14657
14658 * replace.el (query-replace-read-args): Split a non-negative arg
14659 and a negative arg into separate elements.
14660 (query-replace, query-replace-regexp, replace-string)
14661 (replace-regexp): Add arg `backward'. Doc fix.
14662 (replace-match-maybe-edit): When new arg `backward' is non-nil,
14663 move point to the beginning of the match.
14664 (replace-search, replace-highlight): Use new arg `backward'
14665 to set the value of `isearch-forward'.
14666 (perform-replace): Add arg `backward' and use it to perform
14667 replacement backward. (Bug#14979)
14668
14669 * isearch.el (isearch-query-replace): Use a negative prefix arg
14670 to call `perform-replace' with a non-nil arg `backward'.
14671
14672 2013-12-18 Juri Linkov <juri@jurta.org>
14673
14674 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
14675 to the default list. Move `log-edit-show-files' to the end.
14676 Add more available functions to options.
14677 (log-edit): Move default specific settings to
14678 `log-edit-insert-message-template'. Don't move point.
14679 (log-edit-insert-message-template): New function.
14680 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
14681 (Bug#16170)
14682
14683 2013-12-18 Juri Linkov <juri@jurta.org>
14684
14685 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
14686 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
14687
14688 2013-12-18 Leo Liu <sdl.web@gmail.com>
14689
14690 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
14691 (Bug#16186)
14692
14693 2013-12-18 Eli Zaretskii <eliz@gnu.org>
14694
14695 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
14696 formats for displaying file sizes when the -s switch is given.
14697 Instead, compute a separate format for displaying the size in
14698 blocks, which is displayed in addition to the "regular" size.
14699 When -h is given in addition to -s, produce size in blocks in
14700 human-readable form as well. (Bug#16179)
14701
14702 2013-12-18 Tassilo Horn <tsdh@gnu.org>
14703
14704 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
14705 Reference tables with ~\ref{...} instead of only \ref{...}.
14706
14707 2013-12-18 Chong Yidong <cyd@gnu.org>
14708
14709 * cus-edit.el (custom-magic-alist): Fix "themed" description
14710 (Bug#14348).
14711
14712 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
14713 is non-nil, do not create a new entry in the symbol's theme-value
14714 or theme-face property; update theme-settings only (Bug#14664).
14715 (custom-available-themes): Doc fix.
14716
14717 * cus-theme.el (custom-new-theme-mode-map): Add bindings
14718 (Bug#15674).
14719
14720 * replace.el (occur-engine): Avoid infloop (Bug#7593).
14721
14722 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14723
14724 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
14725 (Bug#13914).
14726
14727 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
14728
14729 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
14730
14731 2013-12-18 Glenn Morris <rgm@gnu.org>
14732
14733 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
14734 * cus-start.el (load-prefer-newer): New option.
14735
14736 2013-12-18 Le Wang <l26wang@gmail.com>
14737
14738 * comint.el (comint-previous-matching-input-from-input):
14739 Retain point (Bug#13404).
14740
14741 2013-12-18 Chong Yidong <cyd@gnu.org>
14742
14743 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
14744
14745 2013-12-18 Glenn Morris <rgm@gnu.org>
14746
14747 * mail/emacsbug.el (report-emacs-bug):
14748 Only mention enable-multibyte-characters if non-standard.
14749
14750 2013-12-17 Juri Linkov <juri@jurta.org>
14751
14752 * arc-mode.el (archive-extract-by-file): Check if directory exists
14753 before deletion to not show irrelevant errors if it doesn't exist.
14754
14755 2013-12-17 Juri Linkov <juri@jurta.org>
14756
14757 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
14758 (Bug#14751)
14759
14760 * net/eww.el (browse-web): Add alias to `eww'.
14761 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
14762 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
14763
14764 * net/browse-url.el (browse-url-browser-function): Move `eww'
14765 closer to similar functions.
14766
14767 * startup.el (fancy-startup-screen, fancy-about-screen):
14768 Set browse-url-browser-function to eww-browse-url locally.
14769 (Bug#14751)
14770
14771 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
14772
14773 * window.el (window--pixel-to-total): Remove unused `mini' var.
14774 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
14775 (split-window): Remove unused `new' var.
14776 (window--display-buffer): Remove unused `frame' and `delta' vars.
14777 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
14778 and display-width'.
14779
14780 2013-12-17 Martin Rudalics <rudalics@gmx.at>
14781
14782 * dired.el (dired-mark-pop-up):
14783 * register.el (register-preview): Don't bind
14784 split-height-threshold here since it's now done in
14785 display-buffer-below-selected.
14786
14787 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
14788
14789 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
14790 xterm-rgb-convert-to-16bit.
14791 (rxvt-register-default-colors): Standardize with
14792 xterm-register-default-colors (Bug#14078).
14793
14794 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
14795
14796 * simple.el (kill-region): Pass mark first, then point, so that
14797 kill-append works right (Bug#12819).
14798 (copy-region-as-kill, kill-ring-save): Likewise.
14799
14800 2013-12-17 Leo Liu <sdl.web@gmail.com>
14801
14802 * net/rcirc.el (rcirc-add-face):
14803 * eshell/em-prompt.el (eshell-emit-prompt):
14804 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
14805 (Bug#16167)
14806
14807 2013-12-17 Chong Yidong <cyd@gnu.org>
14808
14809 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
14810 Suggested by Xue Fuqiao.
14811
14812 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
14813
14814 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
14815
14816 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
14817
14818 * net/shr.el (shr-insert-document): Remove unused var
14819 `shr-preliminary-table-render'.
14820 (shr-rescale-image): Remove unused arg `force'.
14821 (shr-put-image): Update calls accordingly.
14822 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
14823
14824 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
14825
14826 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
14827 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
14828 :close-all, to see which indentation method to use (Bug#16116).
14829 (smie-rules-function): Document the method :close-all.
14830
14831 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
14832
14833 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
14834
14835 * net/eww.el (eww-display-html): If we can't find the anchor we're
14836 looking for, then go to point-min.
14837
14838 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
14839
14840 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
14841 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
14842 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
14843 Expand dir too, in case it's relative.
14844
14845 2013-12-16 Juri Linkov <juri@jurta.org>
14846
14847 * desktop.el (desktop-auto-save-timeout): Change default to
14848 `auto-save-timeout'. Doc fix.
14849 (desktop-save): Skip the timestamp in desktop-saved-frameset
14850 when checking for auto-save changes.
14851 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
14852 `desktop-auto-save' is called repeatedly by the idle timer.
14853 (desktop-auto-save-set-timer): Replace `run-with-timer' with
14854 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
14855 (Bug#15331)
14856
14857 2013-12-16 Juri Linkov <juri@jurta.org>
14858
14859 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
14860 (Bug#16035)
14861 (isearch-pre-command-hook): Check `this-command' for symbolp.
14862
14863 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
14864
14865 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
14866
14867 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
14868
14869 * progmodes/cfengine.el (cfengine3--current-word): Remove.
14870 (cfengine3--current-function): Bring in the current-function
14871 functionality from `cfengine3--current-word'.
14872 (cfengine3-completion-function): Bring in the
14873 bounds-of-current-word functionality from
14874 `cfengine3--current-word'.
14875
14876 2013-12-16 Martin Rudalics <rudalics@gmx.at>
14877
14878 * window.el (display-buffer-below-selected):
14879 Bind split-height-threshold to 0 as suggested by Juri Linkov.
14880
14881 2013-12-16 Leo Liu <sdl.web@gmail.com>
14882
14883 * progmodes/compile.el (compile-goto-error): Do not push-mark.
14884 Remove NOMSG arg and all uses changed.
14885
14886 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
14887
14888 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
14889 (cua--deactivate-rectangle): Don't deactivate the mark.
14890 (cua-set-rectangle-mark): Don't set mark-active since
14891 cua--activate-rectangle already does it for us.
14892 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
14893 non-rectangular region.
14894
14895 * emulation/cua-base.el (cua-repeat-replace-region):
14896 Use with-current-buffer.
14897
14898 * net/gnutls.el: Use cl-lib.
14899 (gnutls-negotiate): `mapcan' -> cl-mapcan.
14900
14901 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
14902
14903 * emacs-lisp/package.el (package-built-in-p): Support both
14904 built-in and the package.el converted package descriptions.
14905 (package-show-package-list): Allow keywords.
14906 (package-keyword-button-action): Use it instead of
14907 `finder-list-matches'.
14908 (package-menu-filter-interactive): Interactive filtering (by
14909 keyword) function.
14910 (package-menu--generate): Support keywords and change keymappings
14911 and headers when they are given.
14912 (package--has-keyword-p): Helper function.
14913 (package-menu--refresh): Use it.
14914 (package--mapc): Helper function.
14915 (package-all-keywords): Use it.
14916 (package-menu-mode-map): Set up menu items and keybindings to
14917 provide a filtering UI.
14918
14919 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
14920
14921 * net/gnutls.el (gnutls-verify-error): New defcustom to control
14922 the behavior when a certificate fails validation. Defaults to
14923 old behavior: never abort, just warn.
14924 (gnutls-negotiate): Use it.
14925
14926 2013-12-14 Martin Rudalics <rudalics@gmx.at>
14927
14928 * window.el (display-buffer-below-selected): Never split window
14929 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
14930
14931 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
14932
14933 * emacs-lisp/package.el (package--prepare-dependencies): New function.
14934 (package-buffer-info): Use it (bug#15108).
14935
14936 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
14937
14938 * icomplete.el (icomplete-completions): Make sure the prefix is already
14939 displayed elsewhere before hiding it (bug#16219).
14940
14941 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
14942
14943 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
14944 open-paren tokens when preceded by a open-paren, too.
14945 (ruby-smie-rules): Handle virtual indentation after open-paren
14946 tokens specially. If there is code between it and eol, return the
14947 column where is starts (Bug#16118).
14948
14949 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
14950
14951 * progmodes/cfengine.el: Fix `add-hook' doc.
14952 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
14953 (cfengine3--current-word): Fix parameters.
14954 (cfengine3-make-syntax-cache): Simplify further.
14955 (cfengine3-completion-function, cfengine3--current-function):
14956 Use `assq' for symbols.
14957 (cfengine3--current-function): Fix `cfengine3--current-word' call.
14958
14959 2013-12-13 Glenn Morris <rgm@gnu.org>
14960
14961 * loadup.el (load-path): Warn if site-load or site-init changes it.
14962 No more need to reset it when bootstrapping.
14963
14964 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
14965
14966 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
14967 locations for cf-promises.
14968 (cfengine-mode-syntax-functions-regex): New caching variable.
14969 (cfengine3-fallback-syntax): Fallback syntax for cases where
14970 cf-promises doesn't run.
14971 (cfengine3--current-word): Reimplement using
14972 `cfengine-mode-syntax-functions-regex'.
14973 (cfengine3-completion-function, cfengine3--current-function):
14974 Use `cfengine3-make-syntax-cache' directly.
14975 (cfengine3-clear-syntax-cache): New function.
14976 (cfengine3-make-syntax-cache): Simplify and create
14977 `cfengine-mode-syntax-functions-regex' on demand.
14978 (cfengine3-format-function-docstring): Don't call
14979 `cfengine3-make-syntax-cache' explicitly.
14980
14981 2013-12-13 Martin Rudalics <rudalics@gmx.at>
14982
14983 Fix windmove-find-other-window broken after pixelwise resizing
14984 (Bug#16017).
14985 * windmove.el (windmove-other-window-loc): Revert change from
14986 2013-12-04.
14987 (windmove-find-other-window): Call window-in-direction.
14988 * window.el (window-in-direction): New arguments SIGN, WRAP and
14989 MINI to emulate original windmove-find-other-window behavior.
14990
14991 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
14992
14993 * simple.el (blink-matching--overlay): New variable.
14994 (blink-matching-open): Instead of moving point, highlight the
14995 matching paren with an overlay
14996 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
14997
14998 * faces.el (paren-showing-faces, show-paren-match)
14999 (show-paren-mismatch): Move from paren.el.
15000
15001 2013-12-13 Leo Liu <sdl.web@gmail.com>
15002
15003 * indent.el (indent-region): Disable progress reporter in
15004 minibuffer. (Bug#16108)
15005
15006 * bindings.el (visual-order-cursor-movement): Fix version.
15007
15008 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
15009
15010 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
15011 Also match after beginning of line.
15012 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
15013 files. Thanks to Russell Sim. (Bug#15378)
15014
15015 2013-12-13 Juri Linkov <juri@jurta.org>
15016
15017 * simple.el <Keypad support>: Remove key bindings duplicated
15018 with bindings.el. (Bug#14397)
15019
15020 2013-12-13 Juri Linkov <juri@jurta.org>
15021
15022 * comint.el (comint-mode-map): Replace `delete-char' with
15023 `delete-forward-char'. (Bug#16109)
15024
15025 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
15026
15027 * progmodes/python.el (python-indent-calculate-indentation):
15028 Fix de-denters cornercase. (Bug#15731)
15029
15030 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
15031
15032 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
15033 (advice--make): Pay attention to `depth'.
15034 (advice--make-1): Don't autoload commands eagerly.
15035 * emacs-lisp/elp.el (elp-instrument-function):
15036 * emacs-lisp/trace.el (trace-function-internal):
15037 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
15038
15039 * iswitchb.el (iswitchb-mode): Don't belittle ido.
15040
15041 2013-12-12 Eli Zaretskii <eliz@gnu.org>
15042
15043 * term/w32-win.el (w32-handle-dropped-file):
15044 * startup.el (normal-top-level):
15045 * net/browse-url.el (browse-url-file-url):
15046 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
15047 decode file names using 'utf-8' rather than
15048 file-name-coding-system.
15049
15050 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
15051
15052 * progmodes/python.el (python-indent-context)
15053 (python-indent-calculate-indentation): Fix auto-identation
15054 behavior for comment blocks. (Bug#15916)
15055
15056 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
15057
15058 * progmodes/python.el (python-indent-calculate-indentation):
15059 When determining indentation, don't treat "return", "pass", etc., as
15060 operators when they are just string constituents. (Bug#15812)
15061
15062 2013-12-12 Juri Linkov <juri@jurta.org>
15063
15064 * uniquify.el (uniquify-buffer-name-style): Change default to
15065 `post-forward-angle-brackets'.
15066
15067 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
15068 `uniquify'. Change default to `post-forward-angle-brackets'.
15069
15070 2013-12-11 Glenn Morris <rgm@gnu.org>
15071
15072 * emacs-lisp/package.el (finder-list-matches):
15073 Autoload rather than falsely declaring.
15074
15075 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
15076
15077 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
15078 (eww-mode-map): Use them.
15079
15080 2013-12-11 Martin Rudalics <rudalics@gmx.at>
15081
15082 * window.el (display-buffer-in-side-window): Fix doc-string
15083 (Bug#16115).
15084
15085 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
15086
15087 * vc/vc-git.el: Silence byte-compiler warnings.
15088 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
15089 (log-edit-set-header): Declare.
15090
15091 2013-12-11 Eli Zaretskii <eliz@gnu.org>
15092
15093 * Makefile.in (custom-deps, finder-data): Run output file names
15094 through unmsys--file-name. (Bug#16099)
15095
15096 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
15097
15098 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
15099 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
15100
15101 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
15102 instead of deleting the selection "by hand" (bug#16098).
15103 Rely on insert-for-yank to yank rectangles.
15104 (cua-highlight-region-shift-only): Mark obsolete.
15105 (cua-mode): Don't enable/disable transient-mark-mode,
15106 shift-select-mode (cua-mode works both with and without them), and
15107 pc-selection-mode (obsolete).
15108 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
15109 (cua--deactivate-rectangle): Deactivate it.
15110
15111 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
15112 (delete-selection-helper): Make sure yank starts at the top of the
15113 deleted region.
15114 (minibuffer-keyboard-quit): Use region-active-p.
15115
15116 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
15117
15118 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
15119 to `delete' (bug#16109).
15120
15121 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15122
15123 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
15124 info manual and show keybindings and set `:group' keyword.
15125
15126 2013-12-11 Juri Linkov <juri@jurta.org>
15127
15128 * delsel.el (delete-active-region): Let-bind `this-command'
15129 to prevent `kill-region' from changing its original value.
15130 (delete-selection-helper): Handle `overwrite-mode' for the type
15131 `kill' exactly the same way as for the type `t'.
15132 (insert-char, quoted-insert, reindent-then-newline-and-indent):
15133 Support more commands. (Bug#13312)
15134
15135 2013-12-11 Juri Linkov <juri@jurta.org>
15136
15137 * bindings.el: Map kp keys to non-kp keys systematically
15138 with basic modifiers control, meta and shift. (Bug#14397)
15139
15140 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
15141
15142 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
15143 "Close browser" menu items. Fix wrong function of "List
15144 bookmarks".
15145
15146 2013-12-11 Juri Linkov <juri@jurta.org>
15147
15148 * misearch.el (multi-isearch-buffers): Set the value of
15149 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
15150 arg of isearch-forward to t.
15151 (multi-isearch-buffers-regexp): Set the value of
15152 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
15153 arg of isearch-forward-regexp to t.
15154 (multi-isearch-files): Set the value of
15155 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
15156 arg of isearch-forward to t.
15157 (multi-isearch-files-regexp): Set the value of
15158 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
15159 arg of isearch-forward-regexp to t. (Bug#16035)
15160
15161 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
15162 arg of isearch-forward to t.
15163 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
15164 arg of isearch-forward-regexp to t.
15165 (dired-isearch-filter-filenames): Remove unnecessary check for
15166 `dired-isearch-filenames'.
15167
15168 * comint.el (comint-history-isearch-backward):
15169 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
15170 (comint-history-isearch-backward-regexp):
15171 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
15172
15173 2013-12-10 Eli Zaretskii <eliz@gnu.org>
15174
15175 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
15176 unmsys--file-name. (Bug#16099)
15177
15178 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
15179
15180 * emacs-lisp/package.el (package-keyword-button-action):
15181 Remove finder.el require dependency.
15182
15183 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
15184
15185 * emacs-lisp/package.el: Require finder.el.
15186 (describe-package-1): Add keyword buttons.
15187 (package-make-button): New convenience function.
15188 (package-keyword-button-action): Keyword button action using
15189 `finder-list-matches'.
15190
15191 2013-12-09 Eli Zaretskii <eliz@gnu.org>
15192
15193 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
15194 last commit.
15195
15196 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
15197
15198 * autorevert.el (auto-revert-notify-add-watch): Do not handle
15199 symlinked files.
15200
15201 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
15202
15203 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
15204 after the end of a percent literal.
15205
15206 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
15207
15208 * progmodes/ruby-mode.el (ruby-forward-string): Document.
15209 Handle caret-delimited strings (Bug#16079).
15210
15211 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
15212
15213 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
15214 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
15215 `ruby-parse-partial' (Bug#16078).
15216
15217 2013-12-09 Leo Liu <sdl.web@gmail.com>
15218
15219 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
15220
15221 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
15222
15223 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
15224 (js-switch-indent-offset): New option.
15225 (js--proper-indentation): Use it. And handle the case when
15226 "default" is actually a key in an object literal.
15227 (js--same-line): New function.
15228 (js--multi-line-declaration-indentation): Use it.
15229 (js--indent-in-array-comp, js--array-comp-indentation):
15230 New functions.
15231 (js--proper-indentation): Use them, to handle array comprehension
15232 continuations.
15233
15234 2013-12-08 Leo Liu <sdl.web@gmail.com>
15235
15236 * progmodes/flymake.el (flymake-highlight-line): Re-write.
15237 (flymake-make-overlay): Remove arg MOUSE-FACE.
15238 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
15239
15240 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
15241
15242 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
15243 New function.
15244 (redisplay-highlight-region-function): Use it.
15245
15246 * emulation/cua-base.el (cua--explicit-region-start)
15247 (cua--last-region-shifted): Remove.
15248 (cua--deactivate): Use deactivate-mark.
15249 (cua--pre-command-handler-1): Don't handle shift-selection.
15250 (cua--post-command-handler-1): Don't change transient-mark-mode.
15251 (cua--select-keymaps): Use region-active-p rather than
15252 cua--explicit-region-start or cua--last-region-shifted.
15253 (cua-mode): Enable shift-select-mode.
15254
15255 2013-12-08 Leo Liu <sdl.web@gmail.com>
15256
15257 * progmodes/flymake.el (flymake-popup-current-error-menu):
15258 Rename from flymake-display-err-menu-for-current-line. Reimplement.
15259 (flymake-posn-at-point-as-event, flymake-popup-menu)
15260 (flymake-make-emacs-menu): Remove. (Bug#16077)
15261
15262 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
15263
15264 * rect.el (rectangle-mark-mode): Activate mark even if
15265 transient-mark-mode is off (bug#16066).
15266 (rectangle--highlight-for-redisplay): Fix boundary condition when point
15267 is > mark and at bolp.
15268
15269 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
15270 (region-extract-function): Use it.
15271 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
15272 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
15273 Delete functions.
15274 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
15275 kill-ring-save, kill-region, delete-char, delete-forward-char.
15276 Ignore self-insert-iso.
15277
15278 * emulation/cua-gmrk.el (cua--init-global-mark):
15279 Ignore `self-insert-iso'.
15280
15281 * emulation/cua-base.el (cua--prefix-copy-handler)
15282 (cua--prefix-cut-handler): Rely on region-extract-function rather than
15283 checking cua--rectangle.
15284 (cua-delete-region): Use region-extract-function.
15285 (cua-replace-region): Delete function.
15286 (cua-copy-region, cua-cut-region): Obey region-extract-function.
15287 (cua--pre-command-handler-1): Don't do the delete-selection thing.
15288 (cua--self-insert-char-p): Ignore `self-insert-iso'.
15289 (cua--init-keymaps): Don't remap delete-selection commands.
15290 (cua-mode): Use delete-selection-mode instead of rolling our own
15291 (bug#16085).
15292
15293 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
15294 Obey region-extract-function.
15295
15296 Make registers and delete-selection-mode work on rectangles.
15297 * register.el (describe-register-1): Don't modify the register's value.
15298 (copy-to-register): Obey region-extract-function.
15299 * delsel.el (delete-active-region): Obey region-extract-function.
15300
15301 2013-12-08 Leo Liu <sdl.web@gmail.com>
15302
15303 * progmodes/flymake.el (flymake, flymake-error-bitmap)
15304 (flymake-warning-bitmap, flymake-fringe-indicator-position)
15305 (flymake-compilation-prevents-syntax-check)
15306 (flymake-start-syntax-check-on-newline)
15307 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
15308 (flymake-start-syntax-check-on-find-file, flymake-log-level)
15309 (flymake-xml-program, flymake-master-file-dirs)
15310 (flymake-master-file-count-limit)
15311 (flymake-allowed-file-name-masks): Relocate.
15312 (flymake-makehash, flymake-float-time)
15313 (flymake-replace-regexp-in-string, flymake-split-string)
15314 (flymake-get-temp-dir): Remove.
15315 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
15316 (flymake-current-row, flymake-selected-frame)
15317 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
15318 related functions. (Bug#16077)
15319
15320 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
15321
15322 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
15323
15324 2013-12-07 Tassilo Horn <tsdh@gnu.org>
15325
15326 * help-fns.el (describe-function-1): Use new advice-* functions
15327 rather than old ad-* functions. Fix function type description and
15328 source links for advised functions and subrs.
15329
15330 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
15331
15332 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
15333
15334 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
15335
15336 * progmodes/compile.el (compilation-start):
15337 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
15338
15339 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
15340 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
15341
15342 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
15343
15344 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
15345 Touch up the last change.
15346
15347 2013-12-06 Leo Liu <sdl.web@gmail.com>
15348
15349 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
15350 (inferior-octave-startup): Always use "octave> " for prompt.
15351 (octave-goto-function-definition)
15352 (octave-sync-function-file-names)
15353 (octave-find-definition-default-filename): Remove redundant backquotes.
15354
15355 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
15356
15357 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
15358 syntax for `?'.
15359 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
15360 where appropriate already.
15361 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
15362 end of method names (Bug#15874).
15363
15364 2013-12-06 Juri Linkov <juri@jurta.org>
15365
15366 * isearch.el (isearch--saved-overriding-local-map):
15367 New internal variable.
15368 (isearch-mode): Set it to the initial value of
15369 `overriding-terminal-local-map'.
15370 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
15371 with `isearch--saved-overriding-local-map'. (Bug#16035)
15372
15373 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
15374
15375 * progmodes/octave.el (inferior-octave-completion-table):
15376 Turn back into function, use `completion-table-with-cache'
15377 (Bug#11906). Update all references.
15378
15379 * minibuffer.el (completion-table-with-cache): New function.
15380
15381 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
15382
15383 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
15384
15385 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
15386
15387 * net/eww.el (eww-current-source): New variable to store page
15388 source.
15389 (eww-display-html, eww-mode, eww-save-history)
15390 (eww-restore-history): Use it.
15391 (eww-view-source): New command to view page source.
15392 Opportunistically uses `html-mode' to highlight the buffer.
15393 (eww-mode-map): Install it.
15394
15395 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
15396
15397 * net/dbus.el (dbus-unregister-service)
15398 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
15399 Fix docstring.
15400 (dbus-unregister-service): Skip :serial entries in
15401 `dbus-registered-objects-table'.
15402 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
15403
15404 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
15405
15406 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
15407 around keywords with extra `split-string' argument.
15408
15409 2013-12-04 Martin Rudalics <rudalics@gmx.at>
15410
15411 * windmove.el (windmove-other-window-loc): Handle navigation
15412 between windows (excluding the minibuffer window - Bug#16017).
15413
15414 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
15415
15416 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
15417 in D-Bus type syntax.
15418 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
15419 preserve unibyte strings. (Bug#16048)
15420
15421 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15422
15423 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
15424 Call force-mode-line-update is the proper buffer (bug#16042).
15425
15426 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
15427
15428 * vc/log-edit.el (log-edit-add-new-comment): Rename to
15429 `log-edit-remember-comment', make argument optional. Adjust all
15430 callers.
15431 (log-edit-mode): Add `log-edit-remember-comment' to
15432 `kill-buffer-hook' locally.
15433 (log-edit-kill-buffer): Don't remember comment explicitly since
15434 the buffer is killed anyway.
15435
15436 2013-12-04 Juri Linkov <juri@jurta.org>
15437
15438 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
15439 add-hook and remove-hook for multi-buffer search. (Bug#16035)
15440
15441 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
15442
15443 * notifications.el (notifications-close-notification): Call the
15444 D-Bus method with ID being a `:uint32'. (Bug#16030)
15445
15446 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
15447
15448 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
15449
15450 2013-12-03 Juri Linkov <juri@jurta.org>
15451
15452 * progmodes/compile.el (compilation-start): Rename window alist
15453 entry `no-display-ok' to `allow-no-window'.
15454
15455 * simple.el (shell-command): Add window alist entry
15456 `allow-no-window' to `display-buffer'.
15457 (async-shell-command): Doc fix.
15458
15459 * window.el (display-buffer-no-window): New action function.
15460 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
15461
15462 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
15463
15464 * vc/log-edit.el (log-edit-set-header): Extract from
15465 `log-edit-toggle-header'.
15466 (log-edit-extract-headers): Separate the summary, when extracted
15467 from header, from the rest of the message with an empty line.
15468
15469 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
15470 line, if present, to the Summary header.
15471
15472 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
15473
15474 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
15475 in current-buffer (bug#16029).
15476
15477 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
15478
15479 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
15480 (debugger-mode-map): Bind it.
15481 (debugger--backtrace-base): New function.
15482 (debugger-eval-expression): Use it.
15483 (debugger-frame-number): Skip local vars when present.
15484 (debugger--locals-visible-p, debugger--insert-locals)
15485 (debugger--show-locals, debugger--hide-locals): New functions.
15486
15487 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
15488
15489 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
15490 "LC_ALL".
15491 (tramp-get-remote-locale): New defun.
15492 (tramp-open-connection-setup-interactive-shell): Use it.
15493
15494 2013-12-02 Leo Liu <sdl.web@gmail.com>
15495
15496 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
15497
15498 * progmodes/sh-script.el (sh-shell-process):
15499 * progmodes/octave.el (inferior-octave-process-live-p):
15500 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
15501 (gdb-inferior-io-sentinel):
15502 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
15503
15504 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
15505
15506 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
15507 `save-selected-window' to `log-edit-hide-buf'. This makes
15508 `log-edit-show-files' idempotent.
15509 (log-edit-show-files): Mark the new window as dedicated.
15510
15511 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
15512
15513 * vc/log-edit.el (log-edit-mode-map): Add binding for
15514 `log-edit-kill-biffer'.
15515 (log-edit-hide-buf): Add a FIXME comment.
15516 (log-edit-add-new-comment): New function, extracted from
15517 `log-edit-done'.
15518 (log-edit-done, log-edit-add-to-changelog): Use it.
15519 (log-edit-kill-buffer): New command.
15520
15521 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15522
15523 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
15524 instead of killing the buffer.
15525
15526 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15527
15528 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
15529
15530 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15531
15532 * net/eww.el (eww-form-checkbox-selected-symbol)
15533 (eww-form-checkbox-symbol): New customizable variable.
15534 (eww-form-checkbox, eww-toggle-checkbox):
15535 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
15536
15537 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
15538 (shr--get-media-pref, shr--extract-best-source): New function.
15539 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
15540 no :src tag was specified.
15541
15542 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
15543 (eww-render): Handle `eww-use-external-browser-for-content-type'.
15544 Use \\` to match beginning of string instead of ^.
15545 (eww-browse-with-external-browser): Provide optional URL parameter.
15546 (eww-render): Set `eww-current-title' back to "".
15547
15548 * net/shr.el (shr-tag-video): Display content for video if no
15549 poster is available.
15550 (shr-tag-audio): Add support for <audio> tag.
15551
15552 * net/eww.el (eww-text-input-types): New const.
15553 (eww-process-text-input): Treat input types in
15554 `eww-text-input-types' as text.
15555
15556 * net/shr.el (shr-tag-table): Fix comment typo.
15557
15558 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15559
15560 * net/eww.el (eww-follow-link): New command to avoid reloading
15561 pages when we follow #target links (bug#15243).
15562 (eww-quit): Special mode buffers shouldn't query before exiting.
15563
15564 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
15565
15566 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
15567 forms.
15568
15569 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15570
15571 * net/eww.el (eww-restore-history): Update the window title after
15572 moving in the history.
15573 (eww-current-dom): New variable used to save the current DOM.
15574
15575 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
15576
15577 * vc/log-edit.el (log-edit-mode-map): Add binding for
15578 `log-edit-beginning-of-line'.
15579 (log-edit-setup-add-author): New user option.
15580 (log-edit-beginning-of-line): New command.
15581 (log-edit): Move major mode call above the contents setup so that
15582 the local variable values are already applied.
15583 (log-edit): Only insert "Author: " when
15584 `log-edit-setup-add-author' is non-nil.
15585 (log-edit): When SETUP is non-nil, position point after ": "
15586 instead of point-min.
15587
15588 2013-12-01 Glenn Morris <rgm@gnu.org>
15589
15590 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
15591
15592 2013-11-30 Eli Zaretskii <eliz@gnu.org>
15593
15594 * startup.el (fancy-splash-frame): On MS-Windows, trigger
15595 redisplay to make sure the initial frame gets a chance to become
15596 visible. (Bug#16014)
15597
15598 2013-11-30 Martin Rudalics <rudalics@gmx.at>
15599
15600 Support resizing frames and windows pixelwise.
15601 * cus-start.el (frame-resize-pixelwise)
15602 (window-resize-pixelwise): New entries.
15603 * emacs-lisp/debug.el (debug): Use window-total-height instead
15604 of window-total-size.
15605 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
15606 * help.el (describe-bindings-internal): Use help-buffer as
15607 argument for with-help-window.
15608 (temp-buffer-max-width): New option.
15609 (resize-temp-buffer-window, help-window-setup)
15610 (with-help-window): Rewrite.
15611 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
15612 dragging dividers.
15613 * window.el (frame-char-size, window-min-pixel-height)
15614 (window-safe-min-pixel-height, window-safe-min-pixel-width)
15615 (window-min-pixel-width, window-safe-min-pixel-size)
15616 (window-combination-p, window-safe-min-size)
15617 (window-resizable-p, window--size-to-pixel)
15618 (window--pixel-to-size, window--resize-apply-p): New functions.
15619 (window-safe-min-height): Fix doc-string.
15620 (window-size, window-min-size, window--min-size-1)
15621 (window-sizable, window-sizable-p, window--min-delta-1)
15622 (window-min-delta, window--max-delta-1, window-max-delta)
15623 (window--resizable, window--resizable-p, window-resizable)
15624 (window-full-height-p, window-full-width-p, window-at-side-p)
15625 (window--in-direction-2, window-in-direction)
15626 (window--resize-reset-1, window--resize-mini-window)
15627 (window-resize, window-resize-no-error)
15628 (window--resize-child-windows-normal)
15629 (window--resize-child-windows, window--resize-siblings)
15630 (window--resize-this-window, window--resize-root-window)
15631 (window--resize-root-window-vertically)
15632 (adjust-window-trailing-edge, enlarge-window, shrink-window)
15633 (maximize-window, minimize-window, delete-window)
15634 (quit-restore-window, window-split-min-size, split-window)
15635 (balance-windows-2, balance-windows)
15636 (balance-windows-area-adjust, balance-windows-area)
15637 (window--state-get-1, window-state-get, window--state-put-1)
15638 (window--state-put-2, window-state-put)
15639 (display-buffer-record-window, window--display-buffer):
15640 Make functions handle pixelwise sizing of windows.
15641 (display-buffer--action-function-custom-type)
15642 (display-buffer-fallback-action):
15643 Add display-buffer-in-previous-window.
15644 (display-buffer-use-some-window): Resize window to height it had
15645 before.
15646 (fit-window-to-buffer-horizontally): New option.
15647 (fit-frame-to-buffer): Describe new values.
15648 (fit-frame-to-buffer-bottom-margin): Replace with
15649 fit-frame-to-buffer-margins.
15650 (window--sanitize-margin): New function.
15651 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
15652 using window-text-pixel-size.
15653
15654 2013-11-30 Glenn Morris <rgm@gnu.org>
15655
15656 * emacs-lisp/bytecomp.el (byte-compile-form):
15657 Make the `interactive-only' warning like the `obsolete' one.
15658 * comint.el (comint-run):
15659 * files.el (insert-file-literally, insert-file):
15660 * replace.el (replace-string, replace-regexp):
15661 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
15662 (goto-line, insert-buffer, next-line, previous-line):
15663 Tweak `interactive-only' spec.
15664
15665 Stop keeping (most) generated cedet grammar files in the repository.
15666 * Makefile.in (semantic): New.
15667 (compile-main): Depend on semantic.
15668
15669 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15670
15671 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
15672 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
15673
15674 * uniquify.el (uniquify-buffer-name-style): Change default.
15675
15676 * loadup.el: Preload "uniquify".
15677
15678 * time.el (display-time-update): Update all mode lines (bug#15999).
15679
15680 * electric.el (electric-indent-mode): Enable by default.
15681 * loadup.el: Preload "electric".
15682
15683 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
15684
15685 * emacs-lisp/helpers.el (string-empty-p): New function.
15686 (string-blank-p): New function.
15687
15688 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
15689
15690 * imenu.el (imenu--index-alist): Add missing dot to the docstring
15691 (Bug#14029).
15692
15693 2013-11-29 Andreas Politz <politza@fh-trier.de>
15694 * imenu.el (imenu--subalist-p): Don't error on non-conses and
15695 allow non-lambda lists as functions.
15696 (imenu--in-alist): Don't recurse into non-subalists.
15697 (imenu): Don't pass function itself as an argument (Bug#14029).
15698
15699 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
15700
15701 * progmodes/python.el (python-mode-map): Remove binding for ":".
15702 (python-indent-electric-colon): Remove command.
15703 (python-indent-post-self-insert-function): Integrate the previous code
15704 of python-indent-electric-colon. Make it conditional on
15705 electric-indent-mode.
15706 (python-mode): Add ?: to electric-indent-chars.
15707 Move python-indent-post-self-insert-function to the end of
15708 post-self-insert-hook.
15709
15710 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15711
15712 * doc-view.el (doc-view-goto-page): Update mode-line.
15713
15714 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
15715
15716 2013-11-27 Glenn Morris <rgm@gnu.org>
15717
15718 * international/charprop.el, international/uni-bidi.el:
15719 * international/uni-category.el, international/uni-combining.el:
15720 * international/uni-comment.el, international/uni-decimal.el:
15721 * international/uni-decomposition.el, international/uni-digit.el:
15722 * international/uni-lowercase.el, international/uni-mirrored.el:
15723 * international/uni-name.el, international/uni-numeric.el:
15724 * international/uni-old-name.el, international/uni-titlecase.el:
15725 * international/uni-uppercase.el:
15726 Remove generated files from VCS repository.
15727
15728 2013-11-27 Eli Zaretskii <eliz@gnu.org>
15729
15730 * filenotify.el (file-notify-add-watch): Don't special-case
15731 w32notify when computing the directory to watch.
15732
15733 2013-11-27 Glenn Morris <rgm@gnu.org>
15734
15735 Make bootstrap without generated uni-*.el files possible again.
15736 * loadup.el: Update command-line-args checking for unidata-gen.
15737 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
15738 * composite.el, international/characters.el:
15739 Handle unicode tables being undefined.
15740
15741 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
15742 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
15743 (compile-main): Depend on leim rule.
15744 (leim): New rule.
15745 * loadup.el: Move leim-list.el to leim/ subdirectory.
15746 * startup.el (normal-top-level): No more leim directory.
15747 * international/ja-dic-cnv.el (skkdic-convert):
15748 Disable version-control and autoloads in output files.
15749 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
15750 Disable version-control and autoloads in output files.
15751 * leim/quail: Move here from ../leim.
15752 * leim/quail/hangul.el (hangul-input-method-activate):
15753 Add autoload cookie.
15754 (generated-autoload-load-name): Set file-local value.
15755 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
15756 (generated-autoload-load-name): Set file-local value.
15757
15758 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
15759
15760 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
15761 (eww-add-bookmark): Ask confirmation when add to bookmarks.
15762 (eww-quit): Ask confirmation before quitting eww.
15763
15764 2013-11-26 Eli Zaretskii <eliz@gnu.org>
15765
15766 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
15767 reading output from Diff on MS-Windows and MS-DOS.
15768
15769 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
15770
15771 * emacs-lisp/helpers.el (string-reverse): New function.
15772
15773 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
15774
15775 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
15776 names on MS Windows, like "/[::1]:".
15777
15778 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
15779 SWITCHES.
15780
15781 2013-11-26 Glenn Morris <rgm@gnu.org>
15782
15783 * progmodes/python.el (python-indent-guess-indent-offset):
15784 Avoid corner-case error. (Bug#15975)
15785
15786 Preload leim-list.el. (Bug#4789)
15787 * loadup.el: Load leim-list.el when found.
15788 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
15789
15790 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
15791
15792 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
15793
15794 * emacs-lisp/helpers.el (string-join): New function.
15795
15796 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
15797
15798 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15799 Mark as obsolete and replace it with a symbol property.
15800 (byte-compile-form): Use new 'interactive-only property.
15801 * comint.el, files.el, replace.el, simple.el:
15802 Apply new 'interactive-only properly.
15803
15804 2013-11-25 Martin Rudalics <rudalics@gmx.at>
15805
15806 * window.el (display-buffer-at-bottom): Make sure that
15807 split-window-sensibly creates the new window on bottom
15808 (Bug#15961).
15809
15810 2013-11-23 David Kastrup <dak@gnu.org>
15811
15812 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
15813 on the conflict markers when available.
15814 (smerge--get-marker): New function.
15815 (smerge-end-re, smerge-base-re): Add subgroup.
15816
15817 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
15818
15819 * frame.el (handle-focus-in, handle-focus-out): Add missing
15820 interactive spec.
15821
15822 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
15823
15824 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
15825 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
15826
15827 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
15828
15829 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
15830 (gomoku--last-pos): New var.
15831 (gomoku--intangible-chars): New const.
15832 (gomoku--intangible): New function.
15833 (gomoku-mode): Use it. Derive from special-mode.
15834 (gomoku-move-up): Adjust line count.
15835 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
15836 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
15837 Simplify accordingly.
15838
15839 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
15840 Remove blink-cursor code.
15841 (blink-cursor-timer-function, blink-cursor-suspend):
15842 Don't special-case GUIs.
15843 (blink-cursor-mode): Use focus-in/out-hook.
15844
15845 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
15846
15847 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
15848 work when annotation is invisible (Bug#13886).
15849
15850 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
15851
15852 * json.el (json-alist-p): Only return non-nil if the alist has
15853 simple keys (Bug#13518).
15854
15855 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
15856
15857 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
15858 when control-statement is the first statement in a buffer (Bug#15956).
15859
15860 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
15861
15862 * imenu.el (imenu-generic-skip-comments-and-strings):
15863 New option (Bug#15560).
15864 (imenu--generic-function): Use it.
15865
15866 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
15867
15868 * minibuffer.el (completion--in-region-1): Scroll the correct window.
15869 (Bug#13898)
15870
15871 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
15872
15873 * emacs-lisp/helpers.el: Add some string helpers.
15874 (string-trim-left): Removes leading whitespace.
15875 (string-trim-right): Removes trailing whitespace.
15876 (string-trim): Removes leading and trailing whitespace.
15877
15878 * subr.el (string-suffix-p): New function.
15879
15880 2013-11-23 Glenn Morris <rgm@gnu.org>
15881
15882 * progmodes/python.el (python-shell-send-file):
15883 Add option to delete file when done. (Bug#15647)
15884 (python-shell-send-string, python-shell-send-region): Use it.
15885
15886 2013-11-23 Ivan Shmakov <ivan@siamics.net>
15887
15888 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
15889 to set buffer-read-only to t, never to nil. (Bug#15938)
15890
15891 * textmodes/tex-mode.el (latex-noindent-environments):
15892 Add safe-local-variable property. (Bug#15936)
15893
15894 2013-11-23 Glenn Morris <rgm@gnu.org>
15895
15896 * textmodes/enriched.el (enriched-mode): Doc fix.
15897 * emacs-lisp/authors.el (authors-renamed-files-alist):
15898 Add enriched.doc -> enriched.txt.
15899
15900 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
15901
15902 2013-11-22 Leo Liu <sdl.web@gmail.com>
15903
15904 * progmodes/octave.el (inferior-octave-startup): Spit out error
15905 message.
15906
15907 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
15908
15909 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
15910 Improve docstring.
15911 Add :version.
15912 (ruby-encoding-magic-comment-style): Add :version.
15913
15914 2013-11-22 Leo Liu <sdl.web@gmail.com>
15915
15916 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
15917 (Bug#15076)
15918 (octave-help-mode): Adapt to change to help-mode-finish to use
15919 derived-mode-p on 2013-09-17.
15920 (inferior-octave-prompt): Also match octave-gui.
15921 (octave-kill-process): Don't ask twice. (Bug#10564)
15922
15923 2013-11-22 Leo Liu <sdl.web@gmail.com>
15924
15925 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
15926 (inferior-octave-startup, inferior-octave-check-process)
15927 (inferior-octave-track-window-width-change)
15928 (octave-completion-at-point, octave-eldoc-function): Use it.
15929 (octave-kill-process): Provide confirmation. (Bug#10564)
15930
15931 2013-11-21 Leo Liu <sdl.web@gmail.com>
15932
15933 * progmodes/octave.el (octave-mode, inferior-octave-mode):
15934 Fix obsolete variable comment-use-global-state.
15935
15936 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15937
15938 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
15939 Add `octave-source-file'.
15940 (octave-source-file): New function. (Bug#15935)
15941
15942 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
15943
15944 * net/eww.el (eww-local-regex): New variable.
15945 (eww): Use it to detect localhost and similar.
15946
15947 2013-11-21 Leo Liu <sdl.web@gmail.com>
15948
15949 Add completion for command `ag'.
15950 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
15951 (pcomplete/ag): New function.
15952 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
15953
15954 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15955
15956 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
15957 (bug#14646).
15958 (make-obsolete): Remove interactive spec.
15959
15960 2013-11-21 Glenn Morris <rgm@gnu.org>
15961
15962 * startup.el (command-line-1): Use path-separator with -L.
15963
15964 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
15965
15966 * emacs-lisp/package.el (describe-package-1): Add package archive
15967 to shown fields.
15968
15969 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
15970
15971 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
15972 Change default to "# encoding: %s" to differentiate it from the
15973 default Ruby encoding comment template.
15974
15975 2013-11-20 Era Eriksson <era+emacsbugs@iki.fi>
15976
15977 * ses.el (ses-mode): Doc fix. (Bug#14748)
15978
15979 2013-11-20 Leo Liu <sdl.web@gmail.com>
15980
15981 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
15982
15983 2013-11-19 Dan Nicolaescu <dann@gnu.org>
15984
15985 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
15986 when rebase or bisect are in progress.
15987
15988 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
15989
15990 * filenotify.el (file-notify-add-watch): Doc fix.
15991
15992 2013-11-19 Leo Liu <sdl.web@gmail.com>
15993
15994 * obsolete/rcompile.el: Mark obsolete.
15995
15996 * progmodes/compile.el (compilation-start)
15997 (compilation-goto-locus, compilation-find-file):
15998 Pass no-display-ok and handle nil value from display-buffer.
15999 (Bug#13594)
16000
16001 * window.el (display-buffer-alist, display-buffer): Document the
16002 new parameter no-display-ok. Return either a window or nil
16003 but never a non-window value.
16004
16005 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
16006
16007 * electric.el (electric-indent-mode-map): Remove.
16008 (electric-indent-mode): Change the global-map instead (bug#15915).
16009
16010 * textmodes/text-mode.el (paragraph-indent-minor-mode):
16011 Use add-function.
16012
16013 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
16014
16015 * emacs-lisp/nadvice.el (remove-function): Align with
16016 add-function's behavior.
16017
16018 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
16019 (gdb--string-regexp): New constant.
16020 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
16021 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
16022 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
16023 submatch 1.
16024 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
16025 Adjust use accordingly.
16026 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
16027
16028 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
16029
16030 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
16031 interpolation curlies (Bug#15914).
16032
16033 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
16034
16035 * calc/calc.el (calc-context-sensitive-enter): New variable.
16036 (calc-enter): Use `calc-context-sensitive-enter'.
16037
16038 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
16039
16040 * progmodes/cfengine.el: Version bump.
16041 (cfengine-cf-promises): New defcustom to locate cf-promises.
16042 (cfengine3-vartypes): Add new "data" type.
16043 (cfengine3--current-word): New function to get current name-like
16044 word or its bounds.
16045 (cfengine3--current-function): New function to look up a CFEngine
16046 function's definition.
16047 (cfengine3-format-function-docstring): New function.
16048 (cfengine3-make-syntax-cache): New function.
16049 (cfengine3-documentation-function): New function: ElDoc glue.
16050 (cfengine3-completion-function): New function: completion glue.
16051 (cfengine3-mode): Set `compile-command',
16052 `eldoc-documentation-function', and add to
16053 `completion-at-point-functions'.
16054
16055 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
16056
16057 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
16058 `tramp-current-connection'.
16059
16060 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
16061
16062 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
16063 nil/self/true/false with "end of symbol".
16064
16065 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
16066
16067 * subr.el (version-regexp-alist): Fix a typo.
16068
16069 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
16070
16071 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
16072 "en_US.utf8" and "LC_CTYPE" to "".
16073 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
16074 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
16075
16076 2013-11-15 Leo Liu <sdl.web@gmail.com>
16077
16078 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
16079
16080 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
16081
16082 * progmodes/gud.el (ctl-x-map):
16083 Remove C-x SPC binding. (Bug#12342)
16084 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
16085
16086 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
16087
16088 * subr.el (version-regexp-alist):
16089 Recognize hg, svn and darcs versions as snapshot versions.
16090
16091 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
16092 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
16093 (ruby--encoding-comment-required-p): Extract from
16094 `ruby-mode-set-encoding'.
16095 (ruby-mode-set-encoding): Add the ability to always insert an
16096 utf-8 encoding comment. Fix and simplify coding comment update
16097 logic.
16098
16099 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
16100
16101 * net/tramp-gvfs.el (top): Run init code only when
16102 `tramp-gvfs-enabled' is not nil.
16103 (tramp-gvfs-enabled): Check also :system bus.
16104
16105 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
16106
16107 Sync with upstream verilog-mode revision 78e66ba.
16108 * progmodes/verilog-mode.el (verilog-end-of-defun)
16109 (verilog-type-completion, verilog-get-list): Remove unused funcs.
16110 (verilog-get-end-of-defun): Remove unused argument.
16111 (verilog-comment-depth): Remove unused local `e'.
16112 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
16113 Don't pass arg to verilog-get-end-of-defun.
16114
16115 2013-11-14 Glenn Morris <rgm@gnu.org>
16116
16117 * obsolete/assoc.el (aget): Prefix dynamic variable.
16118
16119 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
16120
16121 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
16122
16123 * widget.el, hfy-cmap.el: Remove bogus package version number.
16124
16125 2013-11-13 Glenn Morris <rgm@gnu.org>
16126
16127 * replace.el (replace-eval-replacement):
16128 Try to give more helpful error message. (Bug#15836)
16129
16130 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
16131 (archive-7z-update): Avoid custom type mismatches.
16132
16133 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
16134
16135 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
16136
16137 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
16138 address can be empty.
16139
16140 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
16141 Accept nil SWITCHES.
16142 (tramp-gvfs-handle-write-region): Implement APPEND.
16143
16144 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
16145
16146 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
16147 binary "|" operator and closing block args delimiter.
16148 Remove FIXME comment referring to Ruby 1.8-only syntax.
16149 (ruby-smie--implicit-semi-p): Not after "|" operator.
16150 (ruby-smie--closing-pipe-p): New function.
16151 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
16152 (ruby-smie-rules): Indent after "|".
16153
16154 2013-11-12 Glenn Morris <rgm@gnu.org>
16155
16156 * ps-print.el (ps-face-attribute-list):
16157 Handle anonymous faces. (Bug#15827)
16158
16159 2013-11-12 Martin Rudalics <rudalics@gmx.at>
16160
16161 * window.el (display-buffer-other-frame): Fix doc-string.
16162 (Bug#15868)
16163
16164 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16165
16166 * subr.el (force-mode-line-update): Delete, move to buffer.c.
16167
16168 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
16169
16170 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
16171 (tramp-sh-handle-file-local-copy): Don't write a message when
16172 saving temporary files.
16173
16174 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
16175 both directories are remote.
16176 (tramp-smb-handle-directory-files): Do not return double entries.
16177 Do not expand full file names.
16178 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
16179 (tramp-smb-handle-write-region): Implement APPEND.
16180 (tramp-smb-get-stat-capability): Fix a stupid bug.
16181
16182 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16183
16184 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
16185
16186 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
16187
16188 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
16189 throwing error over malformed let/let* (bug#15814).
16190
16191 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
16192
16193 * iswitchb.el (iswitchb-mode): Mark obsolete.
16194
16195 2013-11-11 Glenn Morris <rgm@gnu.org>
16196
16197 * international/uni-bidi.el, international/uni-category.el:
16198 * international/uni-name.el, international/uni-numeric.el:
16199 Regenerate for Unicode 6.3.0.
16200
16201 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
16202
16203 * net/tramp.el (tramp-methods):
16204 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
16205 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
16206
16207 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
16208
16209 * progmodes/sh-script.el (sh-font-lock-keywords-var):
16210 Force highlighting text after Summary keyword in doc face for rpm.
16211
16212 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
16213
16214 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
16215 available and the word has no wildcards, append one to the grep pattern.
16216 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
16217 (ispell-complete-word): Call `ispell-lookup-words' with the value
16218 independent of `ispell-look-p'.
16219
16220 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
16221
16222 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
16223 Not after "||".
16224 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
16225 their parent.
16226
16227 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16228
16229 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
16230 (ruby-font-lock-keywords): Use backquote.
16231
16232 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
16233
16234 * progmodes/ruby-mode.el (ruby-smie--forward-token)
16235 (ruby-smie--backward-token): Only consider full-string matches.
16236
16237 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
16238
16239 * faces.el (describe-face): Add distant-foreground.
16240
16241 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
16242
16243 * progmodes/ruby-mode.el: Improve encoding comment handling.
16244 (ruby-encoding-magic-comment-style): New option.
16245 (ruby-custom-encoding-magic-comment-template): New option.
16246 (ruby--insert-coding-comment, ruby--detect-encoding):
16247 New functions extracted from `ruby-mode-set-encoding'.
16248 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
16249 to control the style of the auto-inserted encoding comment.
16250
16251 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
16252
16253 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
16254 Use `smie-backward-sexp' with token argument.
16255
16256 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
16257
16258 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
16259 Remove instrumentation code.
16260
16261 2013-11-08 Glenn Morris <rgm@gnu.org>
16262
16263 * progmodes/autoconf.el (autoconf-mode):
16264 Tweak comment-start-skip. (Bug#15822)
16265
16266 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
16267
16268 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
16269 at bobp (bug#15826).
16270 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
16271
16272 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
16273
16274 * man.el (Man-start-calling): New macro, extracted from
16275 Man-getpage-in-background.
16276 (Man-getpage-in-background): Use it.
16277 (Man-update-manpage): New command.
16278 (Man-mode-map): Bind it.
16279
16280 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
16281
16282 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
16283 of "and", "or", "&&" and "||".
16284 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
16285 argument. Prohibit opening curly brace because it could only be a
16286 block opener in that position.
16287 (ruby-smie--forward-token, ruby-smie--backward-token):
16288 Separate "|" from "&" or "*" going after it. That can happen in block
16289 arguments.
16290 (ruby-smie--indent-to-stmt): New function, seeks the end of
16291 previous statement or beginning of buffer.
16292 (ruby-smie-rules): Use it.
16293 (ruby-smie-rules): Check if there's a ":" before a curly block
16294 opener candidate; if there is, it's a hash.
16295
16296 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
16297
16298 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
16299 (cl--block-wrapper): Fix last accidental change.
16300
16301 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
16302
16303 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
16304 Instrument, in order to hunt failure on hydra.
16305
16306 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
16307
16308 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
16309 malformed bindings form (bug#15814).
16310
16311 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
16312
16313 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
16314 "." compared to " @ ". This incidentally fixes some indentation
16315 examples with "do".
16316 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
16317 (ruby-smie-grammar): New tokens: "and" and "or".
16318 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
16319 Exclude "and" and "or". Remove "do" in order to work around token
16320 priorities.
16321 (ruby-smie-rules): Add all infix tokens. Handle the case of
16322 beginning-of-buffer.
16323
16324 2013-11-06 Glenn Morris <rgm@gnu.org>
16325
16326 * Makefile.in (setwins_almost, setwins_for_subdirs):
16327 Avoid accidental matches.
16328
16329 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
16330
16331 * menu-bar.el (popup-menu): Use key-binding.
16332
16333 2013-11-06 Eli Zaretskii <eliz@gnu.org>
16334
16335 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
16336 menus, support also the menus produced by minor modes.
16337 (Bug#15817)
16338
16339 2013-11-06 Leo Liu <sdl.web@gmail.com>
16340
16341 * thingatpt.el (thing-at-point-looking-at): Add optional arg
16342 DISTANCE to bound the search. All uses changed. (Bug#15808)
16343
16344 2013-11-06 Glenn Morris <rgm@gnu.org>
16345
16346 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
16347 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
16348 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
16349
16350 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
16351
16352 * electric.el (electric-indent-just-newline): New command.
16353 (electric-indent-mode-map): New keymap.
16354 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
16355 Re-add :group which weren't redundant.
16356
16357 * electric.el (electric-indent-local-mode): New minor mode.
16358 (electric-indent-functions-without-reindent): New var.
16359 (electric-indent-post-self-insert-function): Use it.
16360 * emacs-lisp/gv.el (buffer-local-value): Add setter.
16361
16362 2013-11-05 Eli Zaretskii <eliz@gnu.org>
16363
16364 * international/quail.el (quail-help): Be more explicit about the
16365 meaning of the labels shown on the keys. (Bug#15800)
16366
16367 * startup.el (normal-top-level): Load the subdirs.el files before
16368 setting the locale environment. (Bug#15805)
16369
16370 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
16371
16372 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
16373 via arguments so as to get the right ones (bug#15418).
16374
16375 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
16376
16377 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
16378
16379 Fix problems found while writing a test suite.
16380
16381 * net/tramp-compat.el (tramp-compat-load): New defun.
16382 * net/tramp.el (tramp-handle-load): Use it.
16383
16384 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
16385 "(numberp ok-if-already-exists)" correctly.
16386
16387 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
16388
16389 * international/characters.el (glyphless-char-display-control):
16390 Add usage note.
16391
16392 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
16393
16394 * progmodes/python.el (python-mode):
16395 * progmodes/scheme.el (scheme-mode):
16396 * progmodes/prolog.el (prolog-mode):
16397 * progmodes/ruby-mode.el (ruby-mode):
16398 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
16399 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
16400
16401 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
16402
16403 * rect.el (rectangle--highlight-for-redisplay):
16404 * emacs-lisp/smie.el (smie--next-indent-change):
16405 Use buffer-chars-modified-tick.
16406
16407 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
16408
16409 * electric.el (electric-indent-post-self-insert-function):
16410 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
16411
16412 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
16413
16414 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
16415
16416 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
16417
16418 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
16419 (bug#15786).
16420
16421 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
16422
16423 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
16424
16425 * progmodes/python.el: Fix up last change.
16426 (python-shell--save-temp-file): New function.
16427 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
16428 `string' comes from the current buffer.
16429 (python-shell-send-string-no-output): Remove `msg' arg.
16430 (python--use-fake-loc): New var.
16431 (python-shell-buffer-substring): Obey it. Try to compensate for the
16432 extra coding line added by python-shell--save-temp-file.
16433 (python-shell-send-region): Use python-shell--save-temp-file and
16434 python-shell-send-file directly. Add `nomain' argument.
16435 (python-shell-send-buffer): Use python-shell-send-region.
16436 (python-electric-pair-string-delimiter): New function.
16437 (python-mode): Use it.
16438
16439 2013-11-04 Eli Zaretskii <eliz@gnu.org>
16440
16441 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
16442 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
16443 environment and decoding all of the default-directory's to here
16444 from command-line.
16445 (command-line): Decode also argv[0].
16446
16447 * loadup.el: Error out if default-directory is a multibyte string
16448 when we are dumping.
16449
16450 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
16451
16452 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
16453
16454 * emacs-lisp/package.el (package-menu-mode)
16455 (package-menu--print-info, package-menu--archive-predicate):
16456 Add Archive column to package list.
16457
16458 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
16459
16460 Fix problems found while writing a test suite.
16461
16462 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
16463 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
16464 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
16465 to nil when running original file name handler. Otherwise,
16466 there are problems with constructs like "$$FOO".
16467
16468 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
16469 for `localname'.
16470
16471 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
16472
16473 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
16474
16475 * subr.el (version<, version<=, version=):
16476 Update docstrings with information for snapshot versions.
16477
16478 * helpers.el: New library for misc helper functions.
16479 (hash-table-keys): New function returning a list of hash keys.
16480 (hash-table-values): New function returning a list of hash values.
16481
16482 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
16483
16484 * progmodes/ruby-mode.el (ruby-smie--forward-token)
16485 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
16486
16487 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
16488
16489 * textmodes/fill.el (fill-single-char-nobreak-p): New function
16490 checking whether point is after a 1-letter word.
16491
16492 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
16493
16494 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
16495 Don't infloop when expanding region over `multiline' syntax-type that
16496 begins a line (bug#15778).
16497
16498 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
16499
16500 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
16501 Make it into a proper minor mode.
16502 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
16503 (rectangle-mark-mode-map): New keymap.
16504 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
16505
16506 2013-11-04 Glenn Morris <rgm@gnu.org>
16507
16508 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
16509
16510 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
16511
16512 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
16513 (ruby-smie-rules): Use smie-rule-parent instead.
16514
16515 * emacs-lisp/smie.el (smie-rule-parent): Always call
16516 smie-indent-virtual rather than only for hanging tokens.
16517 (smie--next-indent-change): New helper command.
16518
16519 2013-11-03 Glenn Morris <rgm@gnu.org>
16520
16521 * Makefile.in (abs_srcdir): Remove.
16522 (emacs): Unset EMACSLOADPATH.
16523
16524 2013-11-02 Glenn Morris <rgm@gnu.org>
16525
16526 * Makefile.in (EMACS): Use a relative filename.
16527 (abs_top_builddir): Remove.
16528 (custom-deps, finder-data, autoloads): Use --chdir.
16529
16530 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
16531
16532 Use relative filenames in TAGS files.
16533 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
16534 (lisptagsfiles4, TAGS): Use relative file names.
16535 (TAGS-LISP): Remove.
16536 (maintainer-clean): No more TAGS-LISP file.
16537
16538 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
16539 (lisptagsfiles4): Use absolute filenames again.
16540 (TAGS, TAGS-LISP): Not everything needs to run in one line.
16541 Remove all *loaddefs files, not just the first. Remove esh-groups.
16542 (maintainer-clean): Delete TAGS, TAGS-LISP.
16543
16544 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
16545
16546 * emacs-lisp/package.el (package-version-join):
16547 Recognize snapshot versions.
16548
16549 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
16550
16551 * subr.el (version-regexp-alist): Add support for snapshot versions.
16552
16553 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
16554
16555 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
16556 New function, replacement for `smie-rule-parent' for when we want to
16557 skip over our direct parent if it's an assignment token..
16558 (ruby-smie-rules): Use it.
16559
16560 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
16561
16562 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
16563 unconditionally. Remove now unnecessary forward declarations.
16564 Remove XEmacs-specific setup.
16565 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
16566 (ruby-font-lock-syntactic-keywords)
16567 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
16568 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
16569 (ruby-here-doc-end-syntax): Remove.
16570 (ruby-mode): Don't check whether `syntax-propertize-rules' is
16571 defined as function.
16572
16573 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
16574
16575 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
16576
16577 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
16578
16579 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
16580 table and abbrev table, `define-derived-mode' does that for us
16581 anyway.
16582
16583 2013-11-01 Glenn Morris <rgm@gnu.org>
16584
16585 * Makefile.in: Remove manual mh-e dependencies (writing .elc
16586 files is atomic for some time, so no parallel compilation issues).
16587
16588 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
16589
16590 * faces.el (face-x-resources): Add :distant-foreground.
16591 (region): Use :distant-foreground for gtk and ns.
16592
16593 2013-11-01 Tassilo Horn <tsdh@gnu.org>
16594
16595 Allow multiple bibliographies when BibLaTeX is used rather than
16596 BibTeX.
16597 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
16598 (reftex-locate-bibliography-files): Us it.
16599
16600 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
16601
16602 * image.el (image-type-header-regexps): Fix the 'pbm' part to
16603 allow comments in pbm files.
16604
16605 * term/w32-win.el (dynamic-library-alist): Support newer versions
16606 of libjpeg starting with v7: look only for the DLL from the
16607 version against which Emacs was built.
16608 Support versions of libpng beyond 1.4.x.
16609 Support libtiff v4.x.
16610
16611 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
16612
16613 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
16614 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
16615 Add property :safe.
16616 (ruby-deep-arglist): Add property :type.
16617
16618 2013-10-31 Glenn Morris <rgm@gnu.org>
16619
16620 * Makefile.in (custom-deps, finder-data): No need to setq the target
16621 variables, we are in the right directory and the defaults work fine.
16622
16623 2013-10-30 Glenn Morris <rgm@gnu.org>
16624
16625 * Makefile.in (autoloads): Do not use abs_lisp.
16626
16627 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16628 `newline' does not respect `standard-output', so use `princ'.
16629
16630 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
16631
16632 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
16633 * buff-menu.el (Buffer-menu--unmark): New function.
16634 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
16635
16636 2013-10-30 Glenn Morris <rgm@gnu.org>
16637
16638 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
16639
16640 * emacs-lisp/package.el (lm-homepage): Declare.
16641
16642 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
16643 Fix doc typos.
16644
16645 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
16646
16647 * Makefile.in (finder-data, autoloads, update-subdirs)
16648 (compile-main, compile-clean, compile-always, bootstrap-clean):
16649 Check return value of cd.
16650 (compile-calc): Remove.
16651
16652 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
16653
16654 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
16655
16656 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
16657 (byte-compile-and-folded): New function.
16658 (=, <, >, <=, >=): Use it.
16659
16660 * dos-w32.el (minibuffer-history-case-insensitive-variables)
16661 (path-separator, null-device, buffer-file-coding-system)
16662 (lpr-headers-switches): Check system-type before modifying them.
16663 (find-buffer-file-type-coding-system): Mark obsolete.
16664 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
16665 find-file-not-found-set-buffer-file-coding-system.
16666 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
16667 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
16668 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
16669 (w32-direct-print-region-helper, w32-direct-print-region-function)
16670 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
16671 * startup.el (normal-top-level-add-subdirs-to-load-path):
16672 * ps-print.el (ps-print-region-function):
16673 * lpr.el (print-region-function): Use new name.
16674
16675 * subr.el (custom-declare-variable-early): Remove function.
16676 (custom-declare-variable-list): Remove var.
16677 (error, user-error): Remove `while' loop.
16678 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
16679 (user-emacs-directory-warning, locate-user-emacs-file):
16680 Move to files.el.
16681 * simple.el (read-quoted-char-radix, read-quoted-char):
16682 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
16683 Move from subr.el.
16684 * custom.el (custom-declare-variable-list): Don't process
16685 custom-declare-variable-list.
16686
16687 * progmodes/python.el (python-shell-get-buffer): New function.
16688 (python-shell-get-process): Use it.
16689 (python-shell-send-string): Always use utf-8 and add a cookie to tell
16690 Python which encoding was used. Don't split-string since we only care
16691 about the first line. Return the temp-file, if applicable.
16692 (python-shell-send-region): Tell compile.el how to turn locations in
16693 the temp-file into locations in the source buffer.
16694
16695 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
16696
16697 * subr.el (undefined): Add missing behavior from the C code for
16698 unbound keys.
16699
16700 * rect.el: Use lexical-binding. Add new rectangular region support.
16701 (rectangle-mark): New command.
16702 (rectangle--region): New var.
16703 (deactivate-mark-hook): Reset rectangle--region.
16704 (rectangle--extract-region, rectangle--insert-for-yank)
16705 (rectangle--highlight-for-redisplay)
16706 (rectangle--unhighlight-for-redisplay): New functions.
16707 (region-extract-function, redisplay-unhighlight-region-function)
16708 (redisplay-highlight-region-function): Use them to handle
16709 rectangular region.
16710 * simple.el (region-extract-function): New var.
16711 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
16712 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
16713 (kill-region): Replace obsolete `yank-handler' arg with `region'.
16714 (copy-region-as-kill, kill-ring-save): Add `region' argument.
16715 (redisplay-unhighlight-region-function)
16716 (redisplay-highlight-region-function): New vars.
16717 (redisplay--update-region-highlight): New function.
16718 (pre-redisplay-function): Use it.
16719 (exchange-point-and-mark): Don't deactivate the mark before
16720 reactivate-it anyway.
16721 * comint.el (comint-kill-region): Remove yank-handler argument.
16722 * delsel.el (delete-backward-char, backward-delete-char-untabify)
16723 (delete-char): Remove property, since it's now part of their
16724 default behavior.
16725 (self-insert-iso): Remove property since this command doesn't exist.
16726
16727 * emacs-lisp/package.el (package--download-one-archive)
16728 (describe-package-1): Don't query the user about final newline.
16729
16730 2013-10-29 Daniel Colascione <dancol@dancol.org>
16731
16732 * net/tramp.el (tramp-methods): Document new functionality.
16733 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
16734 tramp-hostname-checker if method provides one instead of scanning
16735 argument list for "%h" to decide hostname acceptability.
16736
16737 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
16738
16739 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
16740 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
16741 Handle COPY-CONTENTS. (Bug#15737)
16742
16743 2013-10-28 Daiki Ueno <ueno@gnu.org>
16744
16745 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
16746 Document that this option has no effect with GnuPG 2.0 (bug#15552).
16747
16748 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
16749
16750 * image.el (defimage, image-load-path): Doc fixes.
16751
16752 2013-10-27 Alan Mackenzie <acm@muc.de>
16753
16754 Indent statements in macros following "##" correctly.
16755 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
16756 Modify the "#" arm of a cond form to handle "#" and "##" operators.
16757
16758 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
16759
16760 * linum.el (linum-update-window): Fix boundary test (bug#13446).
16761
16762 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
16763
16764 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
16765 after `=' is probably a new expression.
16766
16767 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
16768
16769 * man.el (man-imenu-title): New option.
16770 (Man-mode-map): Add menu. (Bug#15722)
16771 (Man-mode): Add imenu to menu.
16772
16773 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
16774
16775 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
16776 specific in what the first arg can be: a non-keyword word,
16777 string/regexp/percent literal opener, opening paren, or unary
16778 operator followed directly by word.
16779
16780 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16781
16782 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
16783 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
16784 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
16785 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
16786 Remove vars, they do not apply any more.
16787 (prolog-mode-abbrev-table): Remove redundant declaration.
16788 (prolog-upper-case-string, prolog-lower-case-string): Remove.
16789 (prolog-use-smie): Remove.
16790 (prolog-smie-rules): Add indentation rule for the if-then-else layout
16791 supported by prolog-electric-if-then-else-flag.
16792 (prolog-mode-variables, prolog-menu): Use setq-local.
16793 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
16794 Remove binding to `Backspace' since this key doesn't exist anyway.
16795 Remove bindings for electric self-inserting keys.
16796 (prog-mode): Assume it's defined.
16797 (prolog-post-self-insert): New function.
16798 (prolog-mode): Use it.
16799 (prolog-indent-line, prolog-indent-level)
16800 (prolog-find-indent-of-matching-paren)
16801 (prolog-indentation-level-of-line, prolog-goto-comment-column)
16802 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
16803 (prolog-goto-next-paren, prolog-in-string-or-comment)
16804 (prolog-tokenize, prolog-inside-mline-comment)
16805 (prolog-find-start-of-mline-comment): Remove functions.
16806 (prolog-find-unmatched-paren, prolog-clause-end)
16807 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
16808 (prolog-electric--if-then-else): Rename from
16809 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
16810 (prolog-tokenize-searchkey): Remove const.
16811 (prolog-clause-info): Use forward-sexp.
16812 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
16813 (prolog-electric-if-then-else): Remove commands.
16814 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
16815 for use in post-self-insert-hook.
16816 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
16817 for use in post-self-insert-hook.
16818 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
16819 for use in post-self-insert-hook.
16820 (prolog-electric--underscore): Rename from prolog-electric--underscore;
16821 adapt it for use in post-self-insert-hook.
16822
16823 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
16824
16825 * emacs-lisp/ert.el (ert-run-tests-interactively):
16826 Use `completing-read'. (Bug#9756)
16827
16828 2013-10-25 Eli Zaretskii <eliz@gnu.org>
16829
16830 * simple.el (line-move): Call line-move-1 instead of
16831 line-move-visual when the current window hscroll is zero, but
16832 temporary-goal-column indicates we will need to hscroll as result
16833 of the movement. (Bug#15712)
16834
16835 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
16836
16837 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
16838 capitalization. Use :visible instead of :active.
16839 Fix `ruby-indent-exp' reference. Add menu items for the generic
16840 commands that are used with SMIE.
16841 (ruby-do-end-to-brace): Insert space after `{'.
16842
16843 2013-10-25 John Anthony <john@jo.hnanthony.com>
16844
16845 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
16846
16847 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
16848
16849 2013-10-25 Glenn Morris <rgm@gnu.org>
16850
16851 * vc/vc.el (vc-print-log): Don't use a working revision unless
16852 one was explicitly specified. (Bug#15322)
16853
16854 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16855
16856 * subr.el (add-to-list): Preserve return value in compiler-macro
16857 (bug#15692).
16858
16859 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
16860
16861 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
16862 result. Ask user to retry using '-all' flag. (Bug#15701)
16863
16864 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
16865
16866 * emacs-lisp/smie.el: New smie-config system.
16867 (smie-config): New defcustom.
16868 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
16869 (smie-config-guess, smie-config-save): New commands.
16870 (smie-config--mode-local, smie-config--buffer-local)
16871 (smie-config--trace, smie-config--modefuns): New vars.
16872 (smie-config--advice, smie-config--mode-hook)
16873 (smie-config--setter, smie-config-local, smie-config--get-trace)
16874 (smie-config--guess-value, smie-config--guess): New functions.
16875 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
16876 text properties. Treat "string fence" syntax like string syntax.
16877
16878 * progmodes/sh-script.el (sh-use-smie): Change default.
16879 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
16880 (sh-var-value): Simplify by CSE.
16881 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
16882 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
16883 is used.
16884 (sh-guess-basic-offset): Use cl-incf.
16885 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
16886
16887 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
16888
16889 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
16890 (bug#15699).
16891
16892 2013-10-24 Glenn Morris <rgm@gnu.org>
16893
16894 * Makefile.in (abs_top_srcdir): Remove.
16895 (update-subdirs): Use relative path to update-subdirs.
16896
16897 2013-10-24 Eli Zaretskii <eliz@gnu.org>
16898
16899 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
16900 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
16901 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
16902 Call unmsys--file-name before expand-file-name, not after it.
16903
16904 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
16905
16906 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
16907 (ert-test-skipped): New error.
16908 (ert-skip, ert-stats-skipped): New defuns.
16909 (ert--skip-unless): New macro.
16910 (ert-test-skipped): New struct.
16911 (ert--run-test-debugger, ert-test-result-type-p)
16912 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
16913 (ert--stats-set-test-and-result, ert-char-for-test-result)
16914 (ert-string-for-test-result, ert-run-tests-batch)
16915 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
16916 Handle skipped tests. (Bug#9803)
16917
16918 2013-10-24 Glenn Morris <rgm@gnu.org>
16919
16920 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
16921
16922 * Makefile.in (abs_top_srcdir): New, set by configure.
16923 (update-subdirs): Correct build-aux location.
16924
16925 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
16926
16927 * vc/vc.el (vc-print-root-log): Always set `default-directory'
16928 value, whether we could auto-deduce `backend', or not.
16929
16930 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
16931 with parameters" example. Simplify the "is it block or is it
16932 hash" check, but also make it more thorough.
16933
16934 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
16935
16936 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
16937
16938 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
16939
16940 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
16941 { if it is hanging.
16942
16943 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
16944 :before ";".
16945
16946 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
16947
16948 * progmodes/compile.el (compilation-directory-matcher)
16949 (compilation-page-delimiter):
16950 Support GNU Make-4.0 directory quoting. (Bug#15678)
16951
16952 2013-10-23 Leo Liu <sdl.web@gmail.com>
16953
16954 * ido.el (ido-tidy): Handle read-only text.
16955
16956 2013-10-23 Glenn Morris <rgm@gnu.org>
16957
16958 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
16959 (emacs, compile, compile-always):
16960 Quote entities that might contain whitespace.
16961 (custom-deps, finder-data, autoloads): Use abs_lisp.
16962 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
16963 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
16964 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
16965
16966 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
16967
16968 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
16969 Use `following-char'.
16970
16971 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
16972
16973 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
16974 * progmodes/ruby-mode.el (ruby-smie-rules):
16975 Remove corresponding workaround. Fix indentation rule of ";" so it
16976 also applies when ";" is the parent.
16977
16978 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
16979
16980 * frame.el (display-screens, display-pixel-height)
16981 (display-pixel-width, display-mm-width, display-backing-store)
16982 (display-save-under, display-planes, display-color-cells)
16983 (display-visual-class, display-monitor-attributes-list):
16984 Mention the optional ‘display’ argument in doc strings.
16985
16986 2013-10-22 Michael Gauland <mikelygee@amuri.net>
16987
16988 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
16989 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
16990
16991 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
16992
16993 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
16994 TODO. Add "." after " @ ".
16995 (ruby-smie--at-dot-call): New function. Checks if point at method
16996 call with explicit target.
16997 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
16998 to the method name tokens when it precedes them.
16999 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
17000 (ruby-smie-rules): Add rule for indentation before and after "."
17001 token.
17002
17003 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
17004
17005 * textmodes/remember.el (remember-diary-extract-entries):
17006 Avoid add-to-list.
17007
17008 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
17009 an instruction.
17010
17011 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
17012
17013 * progmodes/ruby-mode.el (ruby-smie-grammar):
17014 Add (almost) all infix operators.
17015 (ruby-smie--implicit-semi-p): Add new operator chars.
17016
17017 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
17018 `smie-down-list'.
17019 (ruby-smie--args-separator-p): Check that there's no newline
17020 between method call and its arguments.
17021
17022 2013-10-20 Alan Mackenzie <acm@muc.de>
17023
17024 Allow comma separated lists after Java "implements".
17025
17026 * progmodes/cc-engine.el (c-backward-over-enum-header):
17027 Parse commas.
17028 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
17029 from a "disallowed" list in enum fontification.
17030
17031 2013-10-20 Johan Bockgård <bojohan@gnu.org>
17032
17033 * startup.el (default-frame-background-mode): Remove unused defvar.
17034
17035 * progmodes/verilog-mode.el (verilog-mode): Don't set
17036 comment-indent-function globally.
17037
17038 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
17039
17040 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
17041 Move Info menu item creation to ns-win.el.
17042
17043 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
17044 in menu bar.
17045
17046 * menu-bar.el: Move GNUstep specific menus...
17047
17048 * term/ns-win.el (ns-initialize-window-system): ... to here.
17049
17050 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
17051
17052 * simple.el (newline): Only run post-self-insert-hook when
17053 called interactively.
17054
17055 2013-10-19 Johan Bockgård <bojohan@gnu.org>
17056
17057 * icomplete.el (icomplete-with-completion-tables): Add :version.
17058
17059 2013-10-19 Alan Mackenzie <acm@muc.de>
17060
17061 Fix fontification bugs with constructors and const.
17062
17063 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
17064 CASE 2) Remove the check for the absence of a suffix construct
17065 after a function declaration with only types (no identifiers) in
17066 the parentheses. Also, accept a function declaration with just a
17067 type inside the parentheses, if this type can be positively
17068 recognised as such, or if a prefix keyword like "explicit" nails
17069 down the construct as a declaration.
17070
17071 2013-10-19 Eli Zaretskii <eliz@gnu.org>
17072
17073 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
17074 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
17075 the problem whereby selecting a menu item that leads to a
17076 minibuffer prompt moves the cursor out of the minibuffer window,
17077 making it hard to type at the prompt. Suggested by Stefan Monnier
17078 <monnier@iro.umontreal.ca>.
17079
17080 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
17081
17082 * menu-bar.el: Don't make Services menu.
17083
17084 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
17085
17086 * ffap.el: Handle "/usr/include/c++/<version>" directories.
17087 (ffap-alist): Use ffap-c++-mode for c++-mode.
17088 (ffap-c++-path): New variable.
17089 (ffap-c++-mode): New function.
17090
17091 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
17092
17093 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
17094
17095 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
17096
17097 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
17098 introduced on 2013-09-08, which results in an infinite loop
17099 requesting a password.
17100
17101 2013-10-18 Glenn Morris <rgm@gnu.org>
17102
17103 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
17104
17105 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
17106
17107 Sync with upstream verilog-mode revision 1a6ecec7.
17108 * progmodes/verilog-mode.el (verilog-mode-version): Update.
17109 (verilog-mode-release-date): Remove.
17110 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
17111 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
17112 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
17113 (verilog-auto-tieoff-ignore-regexp)
17114 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
17115 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
17116 (verilog-signals-with, verilog-dir-cache-preserving)
17117 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
17118 Doc fixes.
17119 (verilog-case-fold): New option, to control case folding in
17120 regexp searches, bug597.
17121 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
17122 (verilog-string-match-fold, verilog-in-paren-count)
17123 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
17124 (verilog-at-close-struct-p): New functions.
17125 (verilog-beg-block-re-ordered, verilog-extended-case-re)
17126 (verilog-forward-sexp, verilog-set-auto-endcomments)
17127 (verilog-leap-to-case-head): Handle "unique0" case.
17128 (verilog-in-constraint-re): New constant.
17129 (verilog-keywords, verilog-type-font-keywords):
17130 Add some SystemVerilog 1800-2012 keywords.
17131 (verilog-label-be): Remove unimplemented argument, bug669.
17132 (verilog-batch-execute-func): When batch expanding clear
17133 create-lockfiles to prevent spurious user locks when a file ends
17134 up not changing.
17135 (verilog-calculate-indent, verilog-calc-1)
17136 (verilog-at-close-constraint-p, verilog-at-constraint-p)
17137 (verilog-do-indent): Fix indentation of nested constraints
17138 and structures.
17139 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
17140 (verilog-auto-inst-param): Use verilog-string-match-fold.
17141 (verilog-read-inst-module-matcher):
17142 Fix AUTOINST on gate primitives with #1.
17143 (verilog-read-decls): Fix double-declaring user-defined typed signals.
17144 Reads all user-defined typed variables.
17145 (verilog-read-defines): Fix reading definitions inside comments, bug647.
17146 (verilog-signals-matching-regexp)
17147 (verilog-signals-not-matching-regexp, verilog-auto):
17148 Respect verilog-case-fold.
17149 (verilog-diff-report): Fix line count.
17150 (verilog-auto-assign-modport): Remove unused local `modi'.
17151 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
17152 better handle multidimensional arrays.
17153 Fix packed array ports misadding bit index in AUTOINST, bug637.
17154 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
17155 to not double-declare existing outputs and inputs, respectively.
17156 (verilog-template-map): Bind U to verilog-sk-uvm-component.
17157 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
17158 (verilog-sk-uvm-component): New skeleton.
17159 (verilog-submit-bug-report): Add verilog-case-fold,
17160 remove verilog-mode-release-date.
17161
17162 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
17163
17164 * subr.el (sit-for): Call (input-pending-p t) so as to behave
17165 as before.
17166
17167 2013-10-18 Reuben Thomas <rrt@sc3d.org>
17168
17169 * textmodes/remember.el (remember): Set buffer-offer-save in
17170 remember buffers (bug#13566).
17171
17172 2013-10-18 Daniel Colascione <dancol@dancol.org>
17173
17174 When evaluating forms in ielm, direct standard output to ielm
17175 buffer. Add new ielm-return-for-effect command. Remove trailing
17176 whitespace throughout.
17177
17178 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
17179 (ielm-return-for-effect): New command.
17180 (ielm-send-input): Accept optional `for-effect' parameter.
17181 (ielm-eval-input): Accept optional `for-effect' parameter.
17182 Bind `standard-output' to stream we create using
17183 `ielm-standard-output-impl'. Suppress printing result when
17184 `for-effect'.
17185 (ielm-standard-output-impl): New function.
17186 (inferior-emacs-lisp-mode): Explain new features in documentation.
17187
17188 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
17189
17190 Code cleanup.
17191
17192 * net/tramp.el (tramp-debug-message): Do not check for connection
17193 buffer.
17194 (tramp-message): Use "vector" connection property.
17195
17196 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
17197 (tramp-equal-remote, tramp-eshell-directory-change)
17198 * net/tramp-adb.el (tramp-adb-handle-copy-file)
17199 (tramp-adb-handle-rename-file)
17200 * net/tramp-cmds.el (tramp-list-remote-buffers)
17201 (tramp-cleanup-connection, tramp-cleanup-this-connection)
17202 * net/tramp-compat.el (tramp-compat-process-running-p)
17203 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
17204 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
17205 (tramp-gvfs-handle-rename-file)
17206 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
17207 (tramp-set-file-uid-gid)
17208 * net/tramp-smb.el (tramp-smb-handle-copy-file)
17209 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
17210 of `file-remote-p'.
17211
17212 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
17213 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
17214 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
17215 (tramp-gw-open-network-stream): Suppress unrelated traces.
17216
17217 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
17218 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
17219 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
17220 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
17221 connection property.
17222
17223 * net/tramp-cache.el (top): Suppress traces when reading
17224 persistency file.
17225
17226 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
17227 Refactor common code. Improve debug message.
17228 (tramp-maybe-open-connection)
17229 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
17230 connection buffer too early.
17231
17232 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
17233 from `tramp-smb-actions-with-acl'.
17234 (tramp-smb-actions-set-acl): New defconst.
17235 (tramp-smb-handle-copy-directory)
17236 (tramp-smb-action-get-acl): New defun, renamed from
17237 `tramp-smb-action-with-acl'.
17238 (tramp-smb-action-set-acl): New defun.
17239 (tramp-smb-handle-set-file-acl): Rewrite.
17240
17241 2013-10-17 Glenn Morris <rgm@gnu.org>
17242
17243 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
17244
17245 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
17246
17247 * skeleton.el (skeleton-newline): Remove.
17248 (skeleton-internal-1): Use (insert "\n") instead.
17249
17250 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
17251 let-bindings.
17252
17253 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
17254 forward-sexp-function while we redo its job (bug#15613).
17255
17256 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
17257
17258 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
17259 represented by lists.
17260
17261 2013-10-16 Glenn Morris <rgm@gnu.org>
17262
17263 * tmm.el (tmm--history): New dynamic variable.
17264 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
17265
17266 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
17267
17268 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
17269 (tramp-smb-errors): Add error messages.
17270 (tramp-smb-actions-with-acl): New defconst.
17271 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
17272 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
17273 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
17274 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
17275 (tramp-smb-get-stat-capability): Fix tests.
17276
17277 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
17278
17279 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
17280 (bug#15580).
17281
17282 2013-10-16 Glenn Morris <rgm@gnu.org>
17283
17284 * ansi-color.el (ansi-color-drop-regexp):
17285 Add 1J, 1K, 2K. (Bug#15617)
17286
17287 * files.el (hack-local-variables--warned-lexical): New.
17288 (hack-local-variables):
17289 Warn about misplaced lexical-binding. (Bug#15616)
17290
17291 * net/eww.el (eww-render): Always set eww-current-url,
17292 and update header line. (Bug#15622)
17293 (eww-display-html): ... Rather than just doing it here.
17294
17295 2013-10-15 Eli Zaretskii <eliz@gnu.org>
17296
17297 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
17298 menu navigations commands.
17299
17300 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
17301
17302 * progmodes/subword.el (subword-capitalize): Be careful when
17303 the search for [[:alpha:]] fails (bug#15580).
17304
17305 2013-10-14 Eli Zaretskii <eliz@gnu.org>
17306
17307 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
17308 to commands that scroll the menu.
17309
17310 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
17311
17312 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
17313 Handle methods ending with `?' and `!'.
17314
17315 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
17316
17317 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
17318 `japanese-cp932' to `cp932' to fix the problem where saving a
17319 source file written in Shift_JIS twice would end up having
17320 `coding: japanese-cp932' which Ruby could not recognize.
17321 (ruby-mode-set-encoding): Add support for encodings mapped to nil
17322 in `ruby-encoding-map'.
17323 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
17324 doesn't need to be explicitly declared in magic comment.
17325 (ruby-encoding-map): Add type declaration for better customize UI.
17326
17327 2013-10-13 Glenn Morris <rgm@gnu.org>
17328
17329 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
17330 Occur buffers are read-only. http://bugs.debian.org/720775
17331
17332 * emacs-lisp/authors.el (authors-fixed-entries):
17333 Comment out old alpha stuff.
17334
17335 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
17336
17337 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
17338 to `after-save-hook' instead of `before-save-hook'.
17339 (ruby-mode-set-encoding): Use the value of coding system used to
17340 write the file. Call `basic-save-buffer-1' after modifying the
17341 buffer.
17342
17343 2013-10-13 Alan Mackenzie <acm@muc.de>
17344
17345 Fix indentation/fontification of Java enum with
17346 "implements"/generic.
17347
17348 * progmodes/cc-engine.el (c-backward-over-enum-header):
17349 Extracted from the three other places and enhanced to handle generics.
17350 (c-inside-bracelist-p): Uses new function above.
17351 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
17352 function above.
17353 (c-font-lock-enum-tail): Uses new function above.
17354
17355 2013-10-13 Kenichi Handa <handa@gnu.org>
17356
17357 * international/mule-cmds.el (select-safe-coding-system): Remove a
17358 superfluous condition in chekcing whether a coding system is safe
17359 or not.
17360
17361 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
17362
17363 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
17364
17365 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
17366
17367 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
17368
17369 2013-10-13 Glenn Morris <rgm@gnu.org>
17370
17371 * menu-bar.el (menu-bar-update-buffers):
17372 Unify Buffers menu prompt string. (Bug#15576)
17373
17374 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
17375
17376 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
17377 Add some entries.
17378 (authors-fixed-entries): Use accented form of name.
17379
17380 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
17381
17382 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
17383 method calls (bug#15594).
17384 (ruby-smie--args-separator-p): New function.
17385 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
17386 recognize paren-free method calls.
17387
17388 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
17389 internals of universal-argument.
17390
17391 2013-10-11 Eli Zaretskii <eliz@gnu.org>
17392
17393 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
17394 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
17395 dropped menu on second mouse click on the menu bar.
17396
17397 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
17398
17399 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
17400 (explicit-shell-file-name): Declare.
17401 (sh--vars-before-point, sh--cmd-completion-table): New functions.
17402 (sh-completion-at-point-function): New function.
17403 (sh-mode): Use it.
17404 (sh-smie--keyword-p): Remove unused argument.
17405 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
17406 vars.
17407 (sh-set-shell): Always setup SMIE, even if we use the
17408 old indentation code.
17409
17410 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
17411
17412 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
17413 cases of ? and =.
17414 (ruby-smie-rules): Simplify the "do" rule. The cases when the
17415 predicate would return nil are almost non-existent.
17416 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
17417
17418 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
17419 cache also after commands that modify the buffer but don't move
17420 point.
17421
17422 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
17423
17424 * env.el (substitute-env-in-file-name): New function.
17425 (substitute-env-vars): Extend the meaning of the optional arg.
17426
17427 2013-10-10 Eli Zaretskii <eliz@gnu.org>
17428
17429 * term/w32-win.el (dynamic-library-alist): Define separate lists
17430 of GIF DLLs for versions before and after 5.0.0 of giflib.
17431 (Bug#15531)
17432
17433 2013-10-10 João Távora <joaotavora@gmail.com>
17434
17435 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
17436 not locked, use last revision and current source as
17437 defaults. (Bug#15569)
17438
17439 2013-10-10 Masatake YAMATO <yamato@redhat.com>
17440
17441 * menu-bar.el (menu-bar-open): Don't use popup-menu if
17442 menu-bar is hidden.
17443
17444 2013-10-10 Martin Rudalics <rudalics@gmx.at>
17445
17446 * window.el (pop-to-buffer-same-window): Fix doc-string.
17447 (Bug#15492)
17448
17449 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
17450
17451 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
17452
17453 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
17454
17455 * calendar/icalendar.el (icalendar-import-file):
17456 Fix interactive spec. (Bug#15482)
17457
17458 2013-10-10 Glenn Morris <rgm@gnu.org>
17459
17460 * desktop.el (desktop-save): Default to saving in .emacs.d,
17461 since PWD is no longer in desktop-path by default. (Bug#15319)
17462
17463 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
17464 now that text mode has a menu with the same entry.
17465 (menu-bar-text-mode-auto-fill): Remove now unused func.
17466 * textmodes/text-mode.el (text-mode-map):
17467 Use auto-fill help text from menu-bar.el.
17468
17469 2013-10-10 John Anthony <john@jo.hnanthony.com>
17470
17471 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
17472
17473 2013-10-09 Juri Linkov <juri@jurta.org>
17474
17475 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
17476 instead of this-command-keys. Add universal-argument-more and
17477 universal-argument-minus to the list of prefix commands. (Bug#15568)
17478
17479 2013-10-09 Glenn Morris <rgm@gnu.org>
17480
17481 * vc/vc-svn.el (vc-svn-create-repo):
17482 Expand paths in file://... url. (Bug#15446)
17483
17484 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
17485 Add some entries.
17486 (authors): Remove unused local variables.
17487
17488 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
17489
17490 * profiler.el: Create a more coherent calltree from partial backtraces.
17491 (profiler-format): Hide the tail with `invisible' so that C-s can still
17492 find the hidden elements.
17493 (profiler-calltree-depth): Don't recurse so enthusiastically.
17494 (profiler-function-equal): New hash-table-test.
17495 (profiler-calltree-build-unified): New function.
17496 (profiler-calltree-build): Use it.
17497 (profiler-report-make-name-part): Indent the calltree less.
17498 (profiler-report-mode): Add visibility specs for profiler-format.
17499 (profiler-report-expand-entry, profiler-report-toggle-entry):
17500 Expand the whole subtree when provided with a prefix arg.
17501
17502 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
17503
17504 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
17505 iuwu-mod token.
17506 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
17507 hanging iuwu-mod token.
17508 (ruby-smie--forward-token): Do not include a dot after a token in
17509 that token.
17510 (ruby-smie--backward-token): Likewise.
17511
17512 2013-10-08 Juri Linkov <juri@jurta.org>
17513
17514 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
17515 to isearch-other-control-char.
17516 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
17517 and isearch-post-command-hook to post-command-hook.
17518 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
17519 and isearch-post-command-hook from post-command-hook.
17520 (isearch-unread-key-sequence)
17521 (isearch-reread-key-sequence-naturally)
17522 (isearch-lookup-scroll-key, isearch-other-control-char)
17523 (isearch-other-meta-char): Remove functions.
17524 (isearch-pre-command-hook, isearch-post-command-hook):
17525 New functions based on isearch-other-meta-char rewritten
17526 relying on the new behavior of overriding-terminal-local-map
17527 that does not replace the local keymaps any more. (Bug#15200)
17528
17529 2013-10-08 Eli Zaretskii <eliz@gnu.org>
17530
17531 Support menus on text-mode terminals.
17532 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
17533 functionality.
17534
17535 * tooltip.el (tooltip-mode): Don't error out on TTYs.
17536
17537 * menu-bar.el (popup-menu, popup-menu-normalize-position):
17538 Move here from mouse.el.
17539 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
17540 and arrow keys.
17541 (tty-menu-navigation-map): New map for TTY menu navigation.
17542
17543 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
17544
17545 * frame.el (display-mouse-p): Report text-mode mouse as available
17546 on w32.
17547 (display-popup-menus-p): Report availability if mouse is
17548 available; don't condition on window-system.
17549
17550 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
17551 (tty-menu-selected-face): New faces.
17552
17553 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17554
17555 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
17556 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
17557 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
17558 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
17559 New constants.
17560 (lisp-mode-variables): New `elisp' argument.
17561 (emacs-lisp-mode): Use it.
17562 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
17563 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
17564
17565 * indent.el: Use lexical-binding.
17566 (indent-region): Add progress reporter.
17567 (tab-stop-list): Make it implicitly extend to infinity by repeating the
17568 last step.
17569 (indent--next-tab-stop): New function to implement this behavior.
17570 (tab-to-tab-stop, move-to-tab-stop): Use it.
17571
17572 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
17573
17574 * indent.el (indent-rigidly--current-indentation): New function.
17575 (indent-rigidly-map): New var.
17576 (indent-rigidly): Use it to provide interactive mode (bug#8196).
17577
17578 2013-10-08 Bastien Guerry <bzg@gnu.org>
17579
17580 * register.el (insert-register): Fix 2013-10-07 change.
17581
17582 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
17583
17584 * progmodes/perl-mode.el: Use lexical-binding.
17585 Remove redundant :group args.
17586 (perl-nochange): Change default to be closer to other major modes's
17587 standard behavior.
17588 (perl-indent-line): Don't consider text on current line as a
17589 valid beginning of function from which to indent.
17590
17591 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
17592 with more than one argument (bug#15538).
17593
17594 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
17595
17596 * vc/pcvs.el: Use lexical-binding.
17597 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
17598 environment of `eval'.
17599 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
17600 than a list of expressions. Adjust callers.
17601 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
17602
17603 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
17604
17605 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
17606 case of the dot in a chained method call being on the following line.
17607
17608 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
17609
17610 * electric.el (electric-indent-inhibit): New var.
17611 (electric-indent-post-self-insert-function): Use it.
17612 * progmodes/python.el (python-mode): Set it.
17613
17614 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
17615 open braces.
17616
17617 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
17618
17619 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
17620 (css-mode): Use electric-indent-chars.
17621
17622 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
17623 (font-lock-beg, font-lock-end): Move before first use.
17624 (nxml-mode): Use syntax-propertize-function.
17625 (nxml-after-change, nxml-after-change1): Adjust accordingly.
17626 (nxml-extend-after-change-region): Remove.
17627 * nxml/xmltok.el: Use lexical-binding.
17628 (xmltok-save): Use `declare'.
17629 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
17630 * nxml/nxml-util.el: Use lexical-binding.
17631 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
17632 Use `declare'.
17633 * nxml/nxml-ns.el: Use lexical-binding.
17634 (nxml-ns-save): Use `declare'.
17635 (nxml-ns-prefixes-for): Avoid add-to-list.
17636 * nxml/rng-match.el: Use lexical-binding.
17637 (rng--ipattern): Use cl-defstruct.
17638 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
17639 (rng-cons-group-after, rng-subst-group-after)
17640 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
17641 Use closures instead of `(lambda...).
17642
17643 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
17644
17645 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
17646 of BEG and END.
17647
17648 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17649 Use `tramp-handle-insert-file-contents'.
17650 (tramp-gvfs-handle-insert-file-contents): Remove function.
17651
17652 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
17653 Use `save-restriction' in order to keep markers.
17654
17655 * net/trampver.el: Update release number.
17656
17657 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
17658
17659 * progmodes/compile.el (compilation-parse-errors):
17660 Use compilation--put-prop.
17661 (compilation--ensure-parse): Check compilation-multiline.
17662
17663 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
17664
17665 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
17666 lexical-binding.
17667
17668 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
17669
17670 * progmodes/ruby-mode.el: Fix recently added tests.
17671 (ruby-smie-grammar): Add - and +.
17672 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
17673 (ruby-smie--backward-id): New functions.
17674 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
17675 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
17676 any more.
17677
17678 2013-10-07 Leo Liu <sdl.web@gmail.com>
17679
17680 * register.el (register-preview-delay)
17681 (register-preview-functions): New variables.
17682 (register-read-with-preview, register-preview)
17683 (register-describe-oneline): New functions.
17684 (point-to-register, window-configuration-to-register)
17685 (frame-configuration-to-register, jump-to-register)
17686 (number-to-register, view-register, insert-register)
17687 (copy-to-register, append-to-register, prepend-to-register)
17688 (copy-rectangle-to-register): Use register-read-with-preview to
17689 read register. (Bug#15525)
17690
17691 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
17692
17693 * net/network-stream.el (network-stream-open-starttls): Don't add
17694 --insecure if it's already present, because that gnutls-cli
17695 rejects getting that parameter twice.
17696
17697 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
17698
17699 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
17700 keyword, too.
17701
17702 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
17703
17704 * newcomment.el (comment-use-global-state): Change default value
17705 to t, mark obsolete (Bug#15251).
17706 (comment-beginning): In addition to `comment-to-syntax', check the
17707 value of `comment-use-global-state'.
17708
17709 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
17710
17711 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
17712 (ruby-comment-column): Follow the global default, by default.
17713 (ruby-smie-grammar): Add assignment syntax.
17714 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
17715 open-paren, a comma, or a \.
17716 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
17717 and line continuations.
17718 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
17719 followed by implicit semi-colons. Add rule for string concatenation
17720 and for indentation at BOB.
17721 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
17722
17723 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
17724 calling next-sexp, since next-token may have skipped chars which
17725 next-sexp doesn't know should be skipped!
17726
17727 2013-10-05 Leo Liu <sdl.web@gmail.com>
17728
17729 * progmodes/octave.el (octave-send-region):
17730 Call compilation-forget-errors.
17731
17732 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
17733
17734 * vc/vc-svn.el (vc-svn-find-admin-dir):
17735 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
17736 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
17737 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
17738 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
17739
17740 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
17741
17742 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
17743
17744 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
17745
17746 * subr.el (read-passwd): Hide chars even when called within a context
17747 where after-change-functions is disabled (bug#15501).
17748 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
17749 until we removed ourself from overriding-terminal-local-map.
17750
17751 2013-10-04 Leo Liu <sdl.web@gmail.com>
17752
17753 * progmodes/octave.el (inferior-octave-mode):
17754 Call compilation-forget-errors.
17755
17756 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
17757
17758 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
17759
17760 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
17761
17762 * net/secrets.el (secrets-create-collection): Add optional
17763 argument ALIAS. Use proper Label keyword. Append ALIAS as
17764 dbus-call-method argument. (Bug#15516)
17765
17766 2013-10-04 Leo Liu <sdl.web@gmail.com>
17767
17768 * progmodes/octave.el (inferior-octave-error-regexp-alist)
17769 (inferior-octave-compilation-font-lock-keywords): New variables.
17770 (compilation-error-regexp-alist)
17771 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
17772 (inferior-octave-mode): Use compilation-shell-minor-mode.
17773
17774 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
17775
17776 * minibuffer.el (completion--replace): Be careful that `end' might be
17777 a marker.
17778
17779 2013-10-03 Daiki Ueno <ueno@gnu.org>
17780
17781 Add support for package signature checking.
17782 * emacs-lisp/package.el (url-http-file-exists-p)
17783 (epg-make-context, epg-context-set-home-directory)
17784 (epg-verify-string, epg-context-result-for)
17785 (epg-signature-status, epg-signature-to-string)
17786 (epg-check-configuration, epg-configuration)
17787 (epg-import-keys-from-file): Declare.
17788 (package-check-signature): New user option.
17789 (package-unsigned-archives): New user option.
17790 (package-desc): Add `signed' field.
17791 (package-load-descriptor): Set `signed' field if .signed file exists.
17792 (package--archive-file-exists-p): New function.
17793 (package--check-signature): New function.
17794 (package-install-from-archive): Check package signature.
17795 (package--download-one-archive): Check archive signature.
17796 (package-delete): Remove .signed file.
17797 (package-import-keyring): New command.
17798 (package-refresh-contents): Import default keyring.
17799 (package-desc-status): Add "unsigned" status.
17800 (describe-package-1, package-menu--print-info)
17801 (package-menu-mark-delete, package-menu--find-upgrades)
17802 (package-menu--status-predicate): Support "unsigned" status.
17803
17804 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17805
17806 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
17807 the new compilation scheme using the new byte-codes.
17808
17809 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
17810 (byte-pophandler): New byte codes.
17811 (byte-goto-ops): Adjust accordingly.
17812 (byte-compile--use-old-handlers): New var.
17813 (byte-compile-catch): Use new byte codes depending on
17814 byte-compile--use-old-handlers.
17815 (byte-compile-condition-case--old): Rename from
17816 byte-compile-condition-case.
17817 (byte-compile-condition-case--new): New function.
17818 (byte-compile-condition-case): New function that dispatches depending
17819 on byte-compile--use-old-handlers.
17820 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
17821 when we can.
17822
17823 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
17824 Optimize under `condition-case' and `catch' if
17825 byte-compile--use-old-handlers is nil.
17826 (disassemble-offset): Handle new bytecodes.
17827
17828 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
17829
17830 * subr.el (error): Use `declare'.
17831 (decode-char, encode-char): Use advertised-calling-convention instead
17832 of the docstring to discourage use of the `restriction' arg.
17833
17834 2013-10-03 Daiki Ueno <ueno@gnu.org>
17835
17836 * epg.el (epg-verify-file): Add a comment saying that it does not
17837 notify verification error as a return value nor a signal.
17838 (epg-verify-string): Ditto.
17839
17840 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
17841
17842 * progmodes/compile.el (compilation-start): Try globbing the arg to
17843 `cd' (bug#15417).
17844
17845 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
17846
17847 Sync with Tramp 2.2.8.
17848
17849 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
17850 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
17851 * net/trampver.el: Update release number.
17852
17853 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
17854
17855 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
17856 and default-process-coding-system for darwin only.
17857
17858 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
17859
17860 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
17861
17862 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
17863
17864 * vc/vc-git.el (vc-git-grep): Disable pager.
17865
17866 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
17867
17868 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
17869 Use :url instead of :homepage, as per
17870 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
17871
17872 * newcomment.el (comment-beginning): When `comment-use-syntax' is
17873 non-nil, use `syntax-ppss' (Bug#15251).
17874
17875 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
17876
17877 * progmodes/octave.el (inferior-octave-startup-file):
17878 Prefer ~/.emacs.d/init_octave.m.
17879
17880 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
17881
17882 * emacs-lisp/package.el (package-desc-from-define):
17883 Accept additional arguments as plist, convert them to an alist and store
17884 them in the `extras' slot.
17885 (package-generate-description-file): Convert extras alist back to
17886 plist and append to the `define-package' form arguments.
17887 (package--alist-to-plist): New function.
17888 (package--ac-desc): Add `extras' slot.
17889 (package--add-to-archive-contents): Check if the archive-contents
17890 vector is long enough, and if it is, pass its `extras' slot value
17891 to `package-desc-create'.
17892 (package-buffer-info): Call `lm-homepage', pass the returned value
17893 to `package-desc-from-define'.
17894 (describe-package-1): Render the homepage button (Bug#13291).
17895
17896 * emacs-lisp/package-x.el (package-upload-buffer-internal):
17897 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
17898
17899 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
17900
17901 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
17902 and default-process-coding-system to utf-8-unix (Bug#15402).
17903
17904 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
17905
17906 * subr.el (looking-back): Do not recommend using looking-back.
17907
17908 2013-09-28 Alan Mackenzie <acm@muc.de>
17909
17910 Fix indentation/fontification of Java enum with "implements".
17911
17912 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
17913 regexp which matches "implements", etc., in Java.
17914 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
17915 specifier clauses coming after "enum".
17916 * progmodes/cc-fonts.el (c-font-lock-declarations)
17917 (c-font-lock-enum-tail): Check for extra specifier clauses coming
17918 after "enum".
17919
17920 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
17921
17922 * faces.el (region): Change ns_selection_color to
17923 ns_selection_fg_color, add ns_selection_bg_color.
17924
17925 2013-09-28 Leo Liu <sdl.web@gmail.com>
17926
17927 * progmodes/octave.el (inferior-octave-completion-table)
17928 (inferior-octave-completion-at-point): Minor tweaks.
17929
17930 * textmodes/ispell.el (ispell-lookup-words): Rename from
17931 lookup-words. (Bug#15460)
17932 (lookup-words): Obsolete.
17933 (ispell-complete-word, ispell-command-loop): All uses changed.
17934
17935 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
17936
17937 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
17938 (octave-mode-menu): Add octave-send-buffer.
17939 (octave-send-buffer): New function.
17940
17941 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
17942
17943 * progmodes/octave.el (octave-mode-map): Add key binding for
17944 octave-lookfor.
17945 (octave-mode-menu): Add octave-lookfor.
17946 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
17947 octave-lookfor.
17948 (octave-lookfor): New function.
17949
17950 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
17951
17952 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
17953 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
17954 its convention.
17955 (cl--loop-set-iterator-function): New function.
17956 (cl-loop): Adjust accordingly, so as not to use cl-subst.
17957 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
17958 Bind `it' with `let' instead of substituting it with `cl-subst'.
17959 (cl--unused-var-p): New function.
17960 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
17961 Eliminate some unused variable warnings (bug#15326).
17962
17963 2013-09-27 Tassilo Horn <tsdh@gnu.org>
17964
17965 * doc-view.el (doc-view-scale-reset): Rename from
17966 `doc-view-reset-zoom-level'.
17967 (doc-view-scale-adjust): New command.
17968 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
17969 `doc-view-scale-adjust'.
17970
17971 2013-09-26 Tassilo Horn <tsdh@gnu.org>
17972
17973 * doc-view.el (doc-view-reset-zoom-level): New command.
17974 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
17975 zoom commands (bug#15466).
17976
17977 2013-09-26 Kenichi Handa <handa@gnu.org>
17978
17979 * international/quail.el (quail-help): Make it not a command.
17980
17981 2013-09-26 Leo Liu <sdl.web@gmail.com>
17982
17983 * minibuffer.el (completion-all-sorted-completions): Make args
17984 optional as they are.
17985
17986 2013-09-25 Daniel Colascione <dancol@dancol.org>
17987
17988 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
17989 specs are and that they're not evaluated.
17990
17991 2013-09-24 Sam Steingold <sds@gnu.org>
17992
17993 * midnight.el (clean-buffer-list-kill-regexps)
17994 (clean-buffer-list-kill-buffer-names): Update for the new Man
17995 buffer naming which includes the object name.
17996
17997 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
17998
17999 * eshell/esh-cmd.el (eshell--sep-terms): New var.
18000 (eshell-parse-command, eshell-parse-pipeline): Use it since
18001 eshell-separate-commands requires a dynamic scoped var.
18002 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
18003
18004 2013-09-23 Leo Liu <sdl.web@gmail.com>
18005
18006 * autoinsert.el (auto-insert-alist): Make the value of
18007 lexical-binding match its file setting.
18008
18009 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
18010
18011 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
18012
18013 * autoarg.el (autoarg-kp-digit-argument):
18014 * electric.el (Electric-command-loop):
18015 * kmacro.el (kmacro-step-edit-insert):
18016 Do not set universal-argument-num-events.
18017
18018 2013-09-22 Leo Liu <sdl.web@gmail.com>
18019
18020 * files.el (interpreter-mode-alist): Add octave.
18021
18022 2013-09-21 Alan Mackenzie <acm@muc.de>
18023
18024 C++: fontify identifier in declaration following "public:" correctly.
18025 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
18026 to match "public", etc.
18027 (c-decl-prefix-re): Add ":" into the C++ value.
18028 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
18029 bit. Add a check for a ":" preceded by "public", etc.
18030
18031 2013-09-21 Eli Zaretskii <eliz@gnu.org>
18032
18033 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
18034 recognized by GDB 7.5 and later.
18035
18036 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
18037
18038 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
18039
18040 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
18041
18042 * subr.el (internal--call-interactively): New const.
18043 (called-interactively-p): Use it (bug#3984).
18044
18045 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
18046
18047 * vc/pcvs.el (cvs-mode-ignore):
18048 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
18049 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
18050
18051 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
18052
18053 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
18054 (eshell-ls-orig-insert-directory): Remove.
18055 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
18056 (eshell-ls-use-in-dired): Use advice-add/remove.
18057 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
18058 Add `orig-fun' arg for use in :around advice.
18059 Make it check (redundantly) eshell-ls-use-in-dired.
18060
18061 2013-09-19 Glenn Morris <rgm@gnu.org>
18062
18063 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
18064
18065 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
18066
18067 * emacs-lisp/eieio.el (class-parent): Undo previous change.
18068
18069 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
18070
18071 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
18072 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
18073 (tramp-get-remote-python): New defuns.
18074 (tramp-get-remote-uid-with-perl)
18075 (tramp-get-remote-gid-with-perl): New defuns. Perl code
18076 contributed by yary <not.com@gmail.com> (tiny change).
18077 (tramp-get-remote-uid-with-python)
18078 (tramp-get-remote-gid-with-python): New defuns. Python code
18079 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
18080 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
18081
18082 2013-09-19 Glenn Morris <rgm@gnu.org>
18083
18084 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
18085
18086 * eshell/em-unix.el (eshell-remove-entries):
18087 Rename argument to avoid name-clash with global `top-level'.
18088
18089 * eshell/esh-proc.el (eshell-kill-process-function):
18090 Remove eshell-reset-after-proc from eshell-kill-hook if present.
18091 (eshell-reset-after-proc): Remove unused arg `proc'.
18092
18093 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
18094 (directory-files-and-attributes): Mark unused arg.
18095
18096 * eshell/em-unix.el (eshell-remove-entries):
18097 Remove unused arg `path'. Update callers.
18098
18099 * eshell/em-hist.el (eshell-hist-parse-arguments):
18100 Remove unused arg `silent'. Update callers.
18101
18102 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
18103 Fix (f)boundp mix-up.
18104
18105 * eshell/em-smart.el (eshell-smart-scroll-window)
18106 (eshell-disable-after-change):
18107 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
18108
18109 2013-09-18 Alan Mackenzie <acm@muc.de>
18110
18111 Fix fontification of type when followed by "const".
18112 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
18113 "known" types from fontification.
18114
18115 2013-09-18 Glenn Morris <rgm@gnu.org>
18116
18117 * emacs-lisp/chart.el (x-display-color-cells): Declare.
18118 (chart-face-list): Drop Emacsen without display-color-p.
18119
18120 * net/eww.el (libxml-parse-html-region): Declare.
18121 (eww-display-html): Explicit error if no libxml2 support.
18122
18123 * doc-view.el (doc-view-mode): Silence --without-x compilation.
18124
18125 * image.el (image-type-from-buffer, image-multi-frame-p):
18126 Remove --without-x warning/error.
18127
18128 * mouse.el (mouse-yank-primary):
18129 * term.el (term-mouse-paste):
18130 Reorder to silence --without-x compilation.
18131
18132 * mpc.el (doc-view-mode): Silence --without-x compilation.
18133
18134 * mail/rmailmm.el (rmail-mime-set-bulk-data):
18135 Silence --without-x compilation.
18136
18137 * progmodes/gud.el (gud-find-file, gud-mode):
18138 Silence --without-x compilation.
18139 (tooltip-mode): Declare.
18140
18141 * wdired.el (dired-backup-overwrite): Remove declaration.
18142 (wdired-mode-map): Add doc string.
18143
18144 * custom.el (x-get-resource): Declare.
18145
18146 * eshell/em-glob.el (ange-cache):
18147 * eshell/em-unix.el (ange-cache): Declare.
18148
18149 * faces.el (x-display-list, x-open-connection, x-get-resource):
18150 Declare.
18151
18152 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
18153 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
18154 Declare.
18155
18156 * frame.el (x-display-grayscale-p, x-display-name): Declare.
18157
18158 * net/gnutls.el (gnutls-log-level): Declare.
18159
18160 * net/shr.el (image-size, image-animate): Declare.
18161
18162 * simple.el (font-info): Declare.
18163
18164 * subr.el (x-popup-dialog): Declare.
18165
18166 * term/common-win.el (x-select-enable-primary)
18167 (x-last-selected-text-primary, x-last-selected-text-clipboard):
18168 Declare.
18169
18170 * term/ns-win.el (x-handle-args): Declare.
18171
18172 * term/x-win.el (x-select-enable-clipboard): Declare.
18173
18174 * term/w32-win.el (create-default-fontset): Declare.
18175
18176 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
18177 Declare.
18178
18179 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
18180 (fit-frame-to-buffer): Explicit error if --without-x.
18181 (mouse-autoselect-window-select): Silence compiler.
18182
18183 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
18184
18185 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
18186 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
18187 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
18188 * eshell/esh-util.el (eshell-sublist):
18189 Remove unused local variables.
18190
18191 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
18192
18193 * textmodes/two-column.el: Make 2C-split work for --without-x.
18194 (scroll-bar-columns): Autoload.
18195 (top-level): Require fringe when compiling.
18196
18197 2013-09-18 Leo Liu <sdl.web@gmail.com>
18198
18199 * subr.el (add-hook): Robustify to handle closure as well.
18200
18201 2013-09-17 Glenn Morris <rgm@gnu.org>
18202
18203 * simple.el (messages-buffer-mode-map): Unbind "g".
18204
18205 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
18206
18207 * help-mode.el (help-mode-finish): Use derived-mode-p.
18208 Remove obsolete highlighting.
18209
18210 * play/life.el (life-mode): Use define-derived-mode. Derive from
18211 special-mode.
18212 (life): Let-bind inhibit-read-only.
18213 (life-setup): Avoid `setq'. Use `life-mode'.
18214
18215 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
18216 which should not be needed any more.
18217 (package-menu-refresh, package-menu-describe-package): Use user-error.
18218
18219 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
18220 (eshell-post-rewrite-command-hook): Make obsolete.
18221 (eshell-parse-command): Simplify.
18222 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
18223 (eshell--cmd): Declare.
18224 (eshell-parse-pipeline): Remove unused var `final-p'.
18225 Pass a dynvar to eshell-post-rewrite-command-hook.
18226 Implement the new eshell-post-rewrite-command-function.
18227 (eshell-invoke-directly): Remove unused arg `input'.
18228 * eshell/esh-io.el (eshell-io-initialize):
18229 Use eshell-post-rewrite-command-function (bug#15399).
18230 (eshell--apply-redirections): Rename from eshell-apply-redirections;
18231 adjust to new calling convention.
18232 (eshell-create-handles): Rename args to avoid clashing with dynvar
18233 `standard-output'.
18234
18235 2013-09-17 Glenn Morris <rgm@gnu.org>
18236
18237 * simple.el (messages-buffer-mode): New major mode.
18238 (messages-buffer): New function.
18239 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
18240 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
18241 (ert-run-test): Use `messages-buffer' function.
18242 (ert--force-message-log-buffer-truncation): Ignore read-only.
18243 * help.el (view-echo-area-messages): Use `messages-buffer' function.
18244 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
18245
18246 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
18247
18248 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
18249
18250 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
18251
18252 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
18253
18254 * icomplete.el (icomplete-in-buffer): New var.
18255 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
18256 vars and replace them with functions.
18257 (icomplete-minibuffer-setup): Adjust accordingly.
18258 (icomplete--completion-table, icomplete--completion-predicate)
18259 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
18260 New functions.
18261 (icomplete-forward-completions, icomplete-backward-completions)
18262 (icomplete-simple-completing-p, icomplete-exhibit)
18263 (icomplete-completions): Use them.
18264 (icomplete--in-region-buffer): New var.
18265 (icomplete--in-region-setup): New function.
18266 (icomplete-mode): Use it.
18267
18268 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
18269 (bug#15379).
18270 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
18271 return args and options.
18272 (eshell-eval-using-options): Use the new return value of
18273 eshell--do-opts to set the options's vars in their scope.
18274 (eshell--set-option): Rename from eshell-set-option.
18275 Add arg `opt-vals'.
18276 (eshell--process-option): Rename from eshell-process-option.
18277 Add arg `opt-vals'.
18278 (eshell--process-args): Use an `opt-vals' alist to store the options's
18279 values during their processing and return them additionally to the
18280 remaining args.
18281
18282 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
18283
18284 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
18285 continuation character an operator, as far as indentation is
18286 concerned (Bug#15369).
18287
18288 2013-09-15 Martin Rudalics <rudalics@gmx.at>
18289
18290 * window.el (window--state-put-2): Don't process buffer state
18291 when buffer doesn't exist any more (Bug#15382).
18292
18293 2013-09-15 Glenn Morris <rgm@gnu.org>
18294
18295 * eshell/em-unix.el (eshell/rm):
18296 Make -f ignore missing files. (Bug#15373)
18297
18298 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
18299 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
18300 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
18301
18302 2013-09-14 Glenn Morris <rgm@gnu.org>
18303
18304 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
18305
18306 2013-09-13 Glenn Morris <rgm@gnu.org>
18307
18308 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
18309 (dired-guess-default): Make `file' available in the env. (Bug#15363)
18310
18311 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
18312
18313 * frame.el (x-focus-frame): Mark as declared in frame.c.
18314
18315 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
18316
18317 * ls-lisp.el: Use advice-add.
18318 (original-insert-directory): Remove.
18319 (ls-lisp--insert-directory): Rename from insert-directory; add
18320 `orig-fun' argument.
18321 (insert-directory): Advise.
18322
18323 2013-09-13 Eli Zaretskii <eliz@gnu.org>
18324
18325 * term.el (term-emulate-terminal): Decode the command string
18326 before passing it to term-command-hook. (Bug#15337)
18327
18328 2013-09-13 Glenn Morris <rgm@gnu.org>
18329
18330 * eshell/esh-util.el (ange-cache): Move declaration earlier.
18331
18332 * eshell/esh-ext.el (eshell-search-path): Declare.
18333
18334 * eshell/em-prompt.el (eshell/pwd): Autoload it.
18335 Otherwise an error occurs if eshell-dirs module not loaded.
18336
18337 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
18338
18339 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
18340
18341 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
18342 `tramp-check-proper-host'. Check for a valid method name.
18343
18344 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
18345 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
18346 * net/tramp-sh.el (tramp-maybe-open-connection):
18347 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
18348
18349 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
18350 also for hash values.
18351
18352 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18353
18354 * term/ns-win.el (parameters): Don't declare as dynamic.
18355 (before-make-frame-hook): Don't add ineffective function.
18356
18357 * eshell/*.el: Use lexical-binding (bug#15231).
18358
18359 2013-09-12 Kenichi Handa <handa@gnu.org>
18360
18361 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
18362
18363 2013-09-12 Glenn Morris <rgm@gnu.org>
18364
18365 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
18366 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
18367
18368 * subr.el (do-after-load-evaluation): Also give compiler warnings
18369 when obsolete files are used (except by obsolete files).
18370
18371 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
18372 in the status output, assume `filename' is the first. (Bug#15322)
18373
18374 * vc/vc.el (vc-deduce-fileset): Doc fix.
18375
18376 * calc/calc-help.el (Info-goto-node):
18377 * progmodes/cperl-mode.el (Info-find-node):
18378 * vc/ediff.el (Info-goto-node): Update declarations.
18379
18380 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
18381
18382 * vc/vc-bzr.el (vc-compilation-mode): Declare.
18383 (vc-bzr-pull): Require vc-dispatcher.
18384 * vc/vc-git.el (vc-compilation-mode): Declare.
18385 (vc-git-pull): Require vc-dispatcher.
18386
18387 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
18388
18389 * progmodes/octave.el (help-button-action): Declare.
18390
18391 * shell.el (shell-directory-tracker): Output error as a message
18392 rather than just returning it as a string.
18393 (shell-process-pushd): Remove useless use of message.
18394
18395 * dframe.el (dframe-timer-fn):
18396 * files.el (dir-locals-read-from-file):
18397 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
18398 (mpc-format):
18399 * reveal.el (reveal-post-command):
18400 * saveplace.el (load-save-place-alist-from-file):
18401 * shell.el (shell-resync-dirs):
18402 * w32-common-fns.el (x-get-selection-value):
18403 * emacs-lisp/copyright.el (copyright-find-copyright):
18404 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
18405 * emulation/tpu-edt.el (tpu-copy-keyfile):
18406 * play/bubbles.el (bubbles--mark-neighbourhood):
18407 * progmodes/executable.el
18408 (executable-make-buffer-file-executable-if-script-p):
18409 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
18410
18411 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18412
18413 Cleanup Eshell to rely less on dynamic scoping.
18414 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
18415 last-value, and ext-command here. Bind `args' closer to `body'.
18416 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
18417 (eshell--args): Declare new dynamic var.
18418 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
18419 last-value, and ext-command. Pass `args' to `body'.
18420 (eshell-process-args): Bind eshell--args.
18421 (eshell-set-option): Use eshell--args.
18422 * eshell/eshell.el (eshell): Use derived-mode-p.
18423 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
18424 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
18425 (eshell-glob-function): Declare.
18426 * eshell/esh-util.el: Require cl-lib.
18427 (eshell-read-hosts-file): Avoid add-to-list.
18428 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
18429 `err'.
18430 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
18431 Declare.
18432 (eshell/diff): Remove unused var `err'.
18433 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
18434 `killflag'.
18435 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
18436 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
18437 first use.
18438 * eshell/em-glob.el (eshell-glob-matches, message-shown):
18439 Move declaration before first use.
18440 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
18441 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
18442 rely on cl-return.
18443
18444 2013-09-12 Glenn Morris <rgm@gnu.org>
18445
18446 * term/ns-win.el (global-map): Remove binding for ispell-next,
18447 deleted 1999-05-29. (Bug#15357)
18448
18449 2013-09-11 Glenn Morris <rgm@gnu.org>
18450
18451 * echistory.el (electric-command-history): Remove call to deleted func.
18452
18453 * play/landmark.el (landmark-mode): Fix typos.
18454
18455 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
18456 Check cvs-sort-ignore-file is bound.
18457
18458 * savehist.el: No need for cl when compiling on Emacs.
18459
18460 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
18461
18462 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
18463 (bug#15338).
18464 (eshell-self-insert-command, eshell-send-invisible):
18465 Remove unused argument.
18466 (eshell-handle-control-codes): Remove unused var `orig'.
18467 Avoid delete-backward-char.
18468
18469 * files.el (set-auto-mode): Simplify a bit further.
18470
18471 2013-09-11 Glenn Morris <rgm@gnu.org>
18472
18473 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
18474 (set-auto-mode): Don't regexp-quote elements.
18475 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
18476 * progmodes/cc-mode.el (interpreter-mode-alist):
18477 * progmodes/ruby-mode.el (interpreter-mode-alist):
18478 Revert previous change.
18479
18480 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
18481
18482 * play/snake.el (snake-mode):
18483 * play/mpuz.el (mpuz-mode):
18484 * play/landmark.el (lm-mode):
18485 * play/blackbox.el (blackbox-mode):
18486 * play/5x5.el (5x5-mode):
18487 * obsolete/options.el (Edit-options-mode):
18488 * net/quickurl.el (quickurl-list-mode):
18489 * net/newst-treeview.el (newsticker-treeview-mode):
18490 * mail/rmailsum.el (rmail-summary-mode):
18491 * mail/mspools.el (mspools-mode):
18492 * locate.el (locate-mode):
18493 * ibuffer.el (ibuffer-mode):
18494 * emulation/ws-mode.el (wordstar-mode):
18495 * emacs-lisp/debug.el (debugger-mode):
18496 * array.el (array-mode):
18497 * net/eudc.el (eudc-mode): Use define-derived-mode.
18498 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
18499 Move initialization into declaration.
18500 (mairix-searches-mode): Use define-derived-mode.
18501 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
18502 (eudc-edit-hotlist): Use dolist.
18503 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
18504 (Man-mode): Use define-derived-mode.
18505 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
18506 (Info-edit-mode): Use define-derived-mode.
18507 (Info-cease-edit): Use Info-mode.
18508 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
18509 into declaration.
18510 (eshell-mode): Use define-derived-mode.
18511 * chistory.el (command-history-mode-map): Rename from
18512 command-history-map.
18513 (command-history-mode): Use define-derived-mode.
18514 (Command-history-setup): Remove function.
18515 * calc/calc.el (calc-trail-mode-map): New var.
18516 (calc-trail-mode): Use define-derived-mode.
18517 (calc-trail-buffer): Set calc-main-buffer manually.
18518 * bookmark.el (bookmark-insert-annotation): New function.
18519 (bookmark-edit-annotation): Use it.
18520 (bookmark-edit-annotation-mode): Make it a proper major mode.
18521 (bookmark-send-edited-annotation): Use derived-mode-p.
18522 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
18523 closer to its ideal place. Use \' to match EOS.
18524
18525 * profiler.el (profiler-calltree-find): Use function-equal.
18526
18527 2013-09-10 Glenn Morris <rgm@gnu.org>
18528
18529 * files.el (interpreter-mode-alist): Convert to regexps.
18530 (set-auto-mode): Adapt for this. (Bug#15306)
18531 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
18532 Comment out unused variable.
18533 * progmodes/cc-mode.el (interpreter-mode-alist):
18534 * progmodes/python.el (interpreter-mode-alist):
18535 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
18536 * progmodes/sh-script.el (sh-set-shell):
18537 No longer use interpreter-mode-alist to get list of shells.
18538
18539 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
18540
18541 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
18542
18543 * simple.el: Use set-temporary-overlay-map for universal-argument.
18544 (universal-argument-map): Don't use default-bindings (bug#15317).
18545 Bind switch-frame explicitly. Replace universal-argument-minus with
18546 a conditional binding.
18547 (universal-argument-num-events, saved-overriding-map): Remove.
18548 (restore-overriding-map): Remove.
18549 (universal-argument--mode): Rename from save&set-overriding-map,
18550 and rewrite.
18551 (universal-argument, universal-argument-more, negative-argument)
18552 (digit-argument): Adjust accordingly.
18553 (universal-argument-minus): Remove.
18554 (universal-argument-other-key): Remove.
18555
18556 * subr.el (with-demoted-errors): Add `format' argument.
18557
18558 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
18559
18560 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
18561 `tramp-cleanup-connection'.
18562
18563 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
18564 parameters KEEP-DEBUG and KEEP-PASSWORD.
18565
18566 * net/tramp.el (tramp-file-name-handler):
18567 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
18568 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18569 (tramp-maybe-open-connection):
18570 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
18571 Use `tramp-cleanup-connection'.
18572
18573 * net/tramp-sh.el (tramp-maybe-open-connection):
18574 Catch 'uname-changed inside the progress reporter.
18575
18576 2013-09-10 Glenn Morris <rgm@gnu.org>
18577
18578 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
18579
18580 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
18581 returns "alternate access method" in mode (eg "-rw-r--r--.").
18582
18583 2013-09-08 Glenn Morris <rgm@gnu.org>
18584
18585 * saveplace.el (load-save-place-alist-from-file):
18586 Demote errors. (Bug#15305)
18587
18588 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
18589
18590 Improve compatibility with older Emacsen, and XEmacs.
18591
18592 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
18593 only if it is bound. It isn't for XEmacs.
18594 (with-tramp-progress-reporter): Do not let-bind `result'.
18595 This yields to scoping errors in XEmacs.
18596 (tramp-handle-make-auto-save-file-name): New function, moved from
18597 tramp-sh.el.
18598
18599 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
18600 for `make-auto-save-file-name'.
18601 (tramp-adb--gnu-switches-to-ash):
18602 Use `tramp-compat-replace-regexp-in-string'.
18603
18604 * net/tramp-cache.el (tramp-cache-print): Call
18605 `substring-no-properties' only if it is bound. It isn't for XEmacs.
18606
18607 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
18608 bound. It isn't for XEmacs.
18609
18610 * net/tramp-compat.el (tramp-compat-copy-file):
18611 Catch `wrong-number-of-arguments' error.
18612 (tramp-compat-replace-regexp-in-string): New defun.
18613
18614 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
18615 for `make-auto-save-file-name'.
18616 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
18617 `copy-file'.
18618 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
18619 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
18620 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
18621
18622 * net/tramp-gw.el (tramp-gw-open-network-stream):
18623 Use `tramp-compat-replace-regexp-in-string'.
18624
18625 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
18626 Call `tramp-handle-make-auto-save-file-name'.
18627 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
18628 (tramp-sh-file-gvfs-monitor-dir-process-filter)
18629 (tramp-sh-file-inotifywait-process-filter):
18630 Use `tramp-compat-replace-regexp-in-string'.
18631 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
18632
18633 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
18634 for `make-auto-save-file-name'.
18635 (tramp-smb-handle-copy-directory):
18636 Call `tramp-compat-replace-regexp-in-string'.
18637 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
18638 (tramp-smb-handle-copy-file): Improve error message.
18639 (tramp-smb-handle-rename-file): Rename directly only in case
18640 `newname' does not exist yet. This is a restriction of smbclient.
18641 (tramp-smb-maybe-open-connection): Rerun the function only when
18642 `auth-sources' is non-nil.
18643
18644 2013-09-08 Kenichi Handa <handa@gnu.org>
18645
18646 * international/characters.el: Set category "^" (Combining) for
18647 more characters.
18648
18649 2013-09-07 Alan Mackenzie <acm@muc.de>
18650
18651 Correctly fontify Java class constructors.
18652 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
18653 in Java Mode.
18654 (c-recognize-typeless-decls): Set the Java value to t.
18655 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
18656 While handling a "(", add a check for, effectively, Java, and handle a
18657 "typeless" declaration there.
18658
18659 2013-09-07 Roland Winkler <winkler@gnu.org>
18660
18661 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
18662 field subtitle for entry type book.
18663
18664 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
18665
18666 * minibuffer.el: Make minibuffer-complete call completion-in-region
18667 rather than other way around.
18668 (completion--some, completion-pcm--find-all-completions):
18669 Don't delay signals when debugging.
18670 (minibuffer-completion-contents): Beware fields within the
18671 minibuffer contents.
18672 (completion-all-sorted-completions): Use defvar-local.
18673 (completion--do-completion, completion--cache-all-sorted-completions)
18674 (completion-all-sorted-completions, minibuffer-force-complete):
18675 Add args `beg' and `end'.
18676 (completion--in-region-1): New fun, extracted from minibuffer-complete.
18677 (minibuffer-complete): Use completion-in-region.
18678 (completion-complete-and-exit): New fun, extracted from
18679 minibuffer-complete-and-exit.
18680 (minibuffer-complete-and-exit): Use it.
18681 (completion--complete-and-exit): Rename from
18682 minibuffer--complete-and-exit.
18683 (completion-in-region--single-word): New function, extracted from
18684 minibuffer-complete-word.
18685 (minibuffer-complete-word): Use it.
18686 (display-completion-list): Make `common-substring' argument obsolete.
18687 (completion--in-region): Call completion--in-region-1 instead of
18688 minibuffer-complete.
18689 (completion-help-at-point): Pass boundaries to
18690 minibuffer-completion-help as args rather than via an overlay.
18691 (completion-pcm--string->pattern): Use `any-delim'.
18692 (completion-pcm--optimize-pattern): New function.
18693 (completion-pcm--pattern->regex): Handle `any-delim'.
18694 * icomplete.el (icomplete-forward-completions)
18695 (icomplete-backward-completions, icomplete-completions):
18696 Adjust calls to completion-all-sorted-completions and
18697 completion--cache-all-sorted-completions.
18698 (icomplete-with-completion-tables): Default to t.
18699 * emacs-lisp/crm.el (crm--current-element): Rename from
18700 crm--select-current-element. Don't put an overlay but return the
18701 boundaries instead.
18702 (crm--completion-command): Take two new args to bind to the boundaries.
18703 (crm-completion-help): Adjust accordingly.
18704 (crm-complete): Use completion-in-region.
18705 (crm-complete-word): Use completion-in-region--single-word.
18706 (crm-complete-and-exit): Use completion-complete-and-exit.
18707
18708 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
18709
18710 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
18711 than dynamically.
18712
18713 2013-09-06 Juri Linkov <juri@jurta.org>
18714
18715 * info.el (Info-display-images-node): When image file doesn't exist
18716 display text version of the image if it's provided in the Info file.
18717 Otherwise, display the location of missing image from SRC attribute.
18718 Add help-echo text property from ALT attribute. (Bug#15279)
18719
18720 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
18721
18722 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
18723 (edit-abbrevs-mode): Use define-derived-mode.
18724
18725 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
18726 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
18727 that it's defined.
18728 (epa-key-list-mode, epa-key-mode, epa-info-mode):
18729 Use define-derived-mode.
18730
18731 * epg.el (epg-start-encrypt): Minor CSE simplification.
18732
18733 2013-09-06 William Xu <william.xwl@gmail.com>
18734
18735 * arc-mode.el: Add support for 7za (bug#15264).
18736 (archive-7z-program): New var.
18737 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
18738 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
18739 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
18740
18741 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
18742
18743 Remove URL syntax.
18744
18745 * net/tramp.el (tramp-syntax, tramp-prefix-format)
18746 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
18747 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
18748 (tramp-postfix-host-format, tramp-file-name-regexp)
18749 (tramp-completion-file-name-regexp)
18750 (tramp-completion-dissect-file-name)
18751 (tramp-handle-substitute-in-file-name): Remove 'url case.
18752 (tramp-file-name-regexp-url)
18753 (tramp-completion-file-name-regexp-url): Remove constants.
18754
18755 2013-09-06 Glenn Morris <rgm@gnu.org>
18756
18757 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
18758
18759 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
18760
18761 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
18762 keywords" below "here-doc beginnings" (Bug#15270).
18763
18764 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
18765
18766 * subr.el (pop): Use `car-safe'.
18767 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
18768 to detect unused `pop' return value.
18769
18770 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
18771 var `block-regexp'.
18772 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
18773 (python-fill-string): Remove unused var `marker'.
18774 (python-skeleton-add-menu-items): Remove unused var `items'.
18775
18776 * international/mule-cmds.el: Require CL.
18777 (find-coding-systems-for-charsets): Avoid add-to-list.
18778 (sanitize-coding-system-list): New function, extracted from
18779 select-safe-coding-system-interactively.
18780 (select-safe-coding-system-interactively): Use it.
18781 (read-input-method-name): Accept symbols for `default'.
18782
18783 * emacs-lisp/advice.el (defadvice): Add indent rule.
18784
18785 2013-09-05 Daniel Hackney <dan@haxney.org>
18786
18787 * dired-x.el:
18788 * net/ange-ftp.el:
18789 * net/browse-url.el:
18790 * net/dbus.el:
18791 * net/eudc.el:
18792 * net/eudcb-ldap.el:
18793 * net/eww.el:
18794 * net/imap.el:
18795 * printing.el:
18796 * vc/ediff-diff.el:
18797 * vc/ediff-init.el:
18798 * vc/ediff-merg.el:
18799 * vc/ediff-mult.el:
18800 * vc/ediff-util.el:
18801 * vc/ediff-wind.el:
18802 * vc/ediff.el:
18803 * vc/emerge.el:
18804 * vc/pcvs.el:
18805 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
18806 byte compiler. Remove some unused let-bound variables.
18807
18808 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
18809
18810 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
18811 a "ref-cell", since it gets better optimized (bug#14883).
18812
18813 2013-09-05 Glenn Morris <rgm@gnu.org>
18814
18815 * progmodes/cc-awk.el (c-forward-sws): Declare.
18816
18817 2013-09-04 Glenn Morris <rgm@gnu.org>
18818
18819 * generic-x.el [rul-generic-mode]: Require cc-mode.
18820 (c++-mode-syntax-table): Declare.
18821 (rul-generic-mode-syntax-table): Init in the defvar.
18822
18823 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
18824
18825 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
18826 (vc-do-command, vc-set-async-update):
18827 * vc/vc-mtn.el (vc-mtn-dir-status):
18828 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
18829 (vc-hg-pull, vc-hg-merge-branch):
18830 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
18831 (vc-git-merge-branch):
18832 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
18833 (vc-cvs-dir-status-files):
18834 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
18835 (vc-bzr-dir-status-files):
18836 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
18837 * vc/vc-annotate.el: Use lexical-binding.
18838 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
18839 (vc-sentinel-movepoint): Declare.
18840 (vc-annotate): Don't use `goto-line'.
18841 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
18842 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
18843 (vc-sentinel-movepoint): Declare.
18844 * vc/vc-svn.el: Use lexical-binding.
18845 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
18846 * vc/vc-sccs.el:
18847 * vc/vc-rcs.el: Use lexical-binding.
18848
18849 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
18850 `deleted'. Don't drop errors silently.
18851
18852 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
18853
18854 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
18855
18856 * vc/vc.el (vc-ignore): Rewrite.
18857 (vc-default-ignore): New function.
18858 (vc-default-ignore-completion-table): Use find-ignore-file.
18859
18860 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
18861 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
18862 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
18863 Remove. Most code moved to vc.el.
18864
18865 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
18866
18867 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
18868 * net/tramp-smb.el (tramp-smb-get-file-entries):
18869 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
18870 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
18871
18872 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
18873 Update call to it.
18874 (eww-change-select): Remove unused var `properties'.
18875 (eww-make-unique-file-name): Remove unused var `base'.
18876
18877 * finder.el (finder-compile-keywords): Don't mess with windows.
18878
18879 * calculator.el (calculator-funcall): Fix typo in last change.
18880
18881 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
18882
18883 * emacs-lisp/package.el (package-activate-1): Don't let a missing
18884 <pkg>-autoloads.el file stop us.
18885
18886 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
18887 warnings, and factor out common code.
18888
18889 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
18890
18891 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
18892 two-character operators and whether the character preceding them
18893 changes their meaning (Bug#15208).
18894
18895 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
18896
18897 Format code sent to Python shell for robustness.
18898 * progmodes/python.el (python-shell-buffer-substring):
18899 New function.
18900 (python-shell-send-region, python-shell-send-buffer): Use it.
18901
18902 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
18903
18904 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
18905 * net/tramp.el (tramp-user-error): ... here.
18906 (tramp-find-method, tramp-check-proper-host)
18907 (tramp-dissect-file-name, tramp-debug-message)
18908 (tramp-handle-shell-command):
18909 * net/tramp-adb.el (tramp-adb-handle-shell-command):
18910 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
18911
18912 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
18913
18914 2013-09-02 Martin Rudalics <rudalics@gmx.at>
18915
18916 * avoid.el (mouse-avoidance-point-position)
18917 (mouse-avoidance-too-close-p): Handle case where posn-at-point
18918 returns nil.
18919
18920 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
18921
18922 * progmodes/python.el (python-shell-completion-get-completions):
18923 Drop use of deleted `comint-last-prompt-overlay'.
18924 (python-nav-if-name-main): New command.
18925
18926 2013-09-01 Glenn Morris <rgm@gnu.org>
18927
18928 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
18929 Avoid leading space in $wins. Otherwise the sed command used by
18930 eg compile-main ends up containing "/*.el". (Bug#15170)
18931
18932 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
18933
18934 2013-08-30 Glenn Morris <rgm@gnu.org>
18935
18936 * emacs-lisp/bytecomp.el (byte-recompile-directory):
18937 Fix is-this-a-directory logic. (Bug#15220)
18938
18939 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
18940
18941 * textmodes/css-mode.el: Use SMIE.
18942 (css-smie-grammar): New var.
18943 (css-smie--forward-token, css-smie--backward-token)
18944 (css-smie-rules): New functions.
18945 (css-mode): Use them.
18946 (css-navigation-syntax-table): Remove var.
18947 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
18948 (css-indent-calculate, css-indent-line): Remove functions.
18949
18950 Misc changes to reduce use of `(lambda...); and other cleanups.
18951 * cus-edit.el: Use lexical-binding.
18952 (customize-push-and-save, customize-apropos)
18953 (custom-buffer-create-internal): Use closures.
18954 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
18955 * progmodes/ada-xref.el: Use setq.
18956 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
18957 * dframe.el: Use lexical-binding.
18958 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
18959 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
18960 * descr-text.el: Use lexical-binding.
18961 (describe-text-widget, describe-text-sexp, describe-property-list):
18962 Use closures.
18963 * comint.el (comint-history-isearch-push-state): Use a closure.
18964 * calculator.el: Use lexical-binding.
18965 (calculator-number-to-string): Make it work with lexical-binding.
18966 (calculator-funcall): Same and use cl-letf.
18967
18968 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
18969 (lisp--company-doc-string, lisp--company-location): New functions.
18970 (lisp-completion-at-point): Use them to improve Company support.
18971
18972 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
18973 params of lambda expressions.
18974 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
18975 (ruby-smie--opening-pipe-p): New function.
18976 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
18977 symbols and matched |...| for formal params.
18978 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
18979 from being treated as hanging. Handle "rescue".
18980
18981 2013-08-29 Glenn Morris <rgm@gnu.org>
18982
18983 * progmodes/cc-engine.el (c-pull-open-brace):
18984 Move definition before use.
18985
18986 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
18987
18988 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
18989 are immutable. Don't use `unsafe' any more.
18990 (cl--defsubst-expand): Don't substitute at the same time as keeping
18991 a residual unused let-binding. Don't use `unsafe' any more.
18992
18993 2013-08-29 Glenn Morris <rgm@gnu.org>
18994
18995 * calendar/cal-china.el (calendar-chinese-year-cache):
18996 Recenter on 2015.
18997
18998 * nxml/nxml-util.el (nxml-debug-clear-inside):
18999 Use cl-loop rather than loop.
19000
19001 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
19002
19003 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
19004
19005 2013-08-28 Glenn Morris <rgm@gnu.org>
19006
19007 * progmodes/antlr-mode.el: No need to require cc-mode twice.
19008
19009 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
19010
19011 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
19012
19013 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19014
19015 * simple.el (repeat-complex-command--called-interactively-skip):
19016 New function.
19017 (repeat-complex-command): Use it (bug#14136).
19018
19019 * progmodes/cc-mode.el: Minor cleanup of var declarations.
19020 (c-define-abbrev-table): Add `doc' argument.
19021 (c-mode-abbrev-table, c++-mode-abbrev-table)
19022 (objc-mode-abbrev-table, java-mode-abbrev-table)
19023 (idl-mode-abbrev-table, pike-mode-abbrev-table)
19024 (awk-mode-abbrev-table): Use it.
19025 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
19026 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
19027 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
19028 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
19029 Move initialization into the declaration; and remove any
19030 autoload cookie.
19031
19032 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
19033 and dynamic let binding.
19034
19035 * vc/smerge-mode.el: Remove redundant :group args.
19036
19037 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
19038 to load-path.
19039
19040 2013-08-28 Juri Linkov <juri@jurta.org>
19041
19042 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
19043 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
19044 (isearch-other-meta-char): Handle an undefined shifted printing
19045 character by downshifting it. (Bug#15200)
19046
19047 2013-08-28 Juri Linkov <juri@jurta.org>
19048
19049 * isearch.el (isearch-search): Change regexp error message for
19050 non-regexp searches. (Bug#15166)
19051
19052 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
19053
19054 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
19055 for portability to hosts where /bin/sh has problems.
19056
19057 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
19058
19059 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
19060
19061 2013-08-27 Juri Linkov <juri@jurta.org>
19062
19063 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
19064 in the keyboard macro. (Bug#15126)
19065
19066 2013-08-27 Juri Linkov <juri@jurta.org>
19067
19068 * isearch.el (isearch-quote-char): Comment out converting unibyte
19069 to multibyte, thus syncing with its `quoted-insert' counterpart.
19070 (Bug#15166)
19071
19072 2013-08-27 Martin Rudalics <rudalics@gmx.at>
19073
19074 * window.el (display-buffer-use-some-window): Add missing
19075 argument in call of get-largest-window (Bug#15185).
19076 Reported by Stephen Leake.
19077
19078 2013-08-27 Glenn Morris <rgm@gnu.org>
19079
19080 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
19081
19082 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
19083
19084 * progmodes/python.el (python-font-lock-keywords): Don't return nil
19085 from a matcher-function unless there's no more matches (bug#15161).
19086
19087 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
19088
19089 * minibuffer.el: Revert change from 2013-08-20.
19090
19091 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
19092 with text property `tramp-default', if appropriate.
19093 (tramp-check-proper-host): New defun.
19094 (tramp-dissect-file-name): Do not check hostname. Revert change
19095 of 2013-03-18.
19096 (tramp-backtrace): Make VEC-OR-PROC optional.
19097
19098 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
19099 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
19100 * net/tramp-sh.el (tramp-maybe-open-connection):
19101 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
19102 Apply `tramp-check-proper-host'.
19103
19104 2013-08-26 Tassilo Horn <tsdh@gnu.org>
19105
19106 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
19107 lambda expression in order to have `describe-variable' display it.
19108
19109 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
19110
19111 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
19112 BUF can be optional. (Bug#15186)
19113
19114 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
19115
19116 * progmodes/flymake.el (flymake-get-real-file-name-function):
19117 Fix broken customization. (Bug#15184)
19118
19119 2013-08-25 Alan Mackenzie <acm@muc.de>
19120
19121 Improve indentation of bracelists defined by macros (without "=").
19122
19123 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
19124 expansion begins with "{", regard it as bracelist when it doesn't
19125 contain a ";".
19126
19127 Parse C++ inher-intro when there's a template split over 2 lines.
19128
19129 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
19130 rigorously the search for "class" etc. followed by ":".
19131
19132 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
19133 random languages a regexp which never matches rather than nil.
19134
19135 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
19136
19137 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
19138 (c-awk-regexp-one-line-possibly-open-char-list-re)
19139 (c-awk-one-line-possibly-open-regexp-re)
19140 (c-awk-one-line-non-syn-ws*-re): Remove.
19141 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
19142 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
19143 (c-awk-space*-unclosed-regexp-/-re): New constants.
19144 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
19145 aren't regexp delimiters.
19146
19147 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
19148 handling for a rare situation in AWK Mode involving unterminated
19149 strings/regexps.
19150
19151 2013-08-23 Glenn Morris <rgm@gnu.org>
19152
19153 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
19154
19155 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
19156
19157 * files.el (create-file-buffer): If the result would begin with
19158 spaces, prepend a "|" instead of removing them. (Bug#15162)
19159
19160 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
19161
19162 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
19163 text-properties (bug#15155).
19164
19165 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
19166 exist any more.
19167 (calc-keypad-redraw): Remove unused var `pad'.
19168 (calc-keypad-press): Remove unused var `menu'.
19169
19170 2013-08-23 Martin Rudalics <rudalics@gmx.at>
19171
19172 * window.el (display-buffer-pop-up-frame):
19173 Call pop-up-frame-function with BUFFER current so `make-frame' will
19174 use it as the new frame's buffer (Bug#15133).
19175
19176 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
19177
19178 * calendar/timeclock.el: Minor cleanups.
19179 (timeclock-ask-before-exiting, timeclock-use-display-time):
19180 Use `symbol'.
19181 (timeclock-modeline-display): Define as alias before the
19182 actual definition.
19183 (timeclock-mode-line-display): Use define-minor-mode.
19184 (timeclock-day-list-template): Make it a function, add an argument.
19185 (timeclock-day-list-required, timeclock-day-list-length)
19186 (timeclock-day-list-debt, timeclock-day-list-span)
19187 (timeclock-day-list-break): Adjust calls accordingly.
19188
19189 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
19190
19191 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
19192 Use read--expression so that completion works again.
19193
19194 2013-08-21 Sam Steingold <sds@gnu.org>
19195
19196 Add rudimentary inferior shell interaction
19197 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
19198 (sh-set-shell): Reset it.
19199 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
19200 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
19201
19202 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
19203
19204 * align.el: Use lexical-binding.
19205 (align-region): Simplify accordingly.
19206
19207 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
19208
19209 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
19210
19211 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
19212 `non-essential' up.
19213
19214 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
19215
19216 * net/tramp.el:
19217 * net/tramp-adb.el:
19218 * net/tramp-cmds.el:
19219 * net/tramp-ftp.el:
19220 * net/tramp-gvfs.el:
19221 * net/tramp-gw.el:
19222 * net/tramp-sh.el: Don't wrap external variable declarations by
19223 `eval-when-compile'.
19224
19225 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
19226
19227 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
19228 now that Emacs supports ImageMagick animations.
19229
19230 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
19231
19232 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
19233 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
19234
19235 2013-08-16 Martin Rudalics <rudalics@gmx.at>
19236
19237 * window.el (mouse-autoselect-window-select): Do autoselect when
19238 mouse pointer is on margin.
19239
19240 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
19241
19242 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
19243
19244 2013-08-16 Glenn Morris <rgm@gnu.org>
19245
19246 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
19247 Handle "Remote Directory" response of some clients. (Bug#15058)
19248
19249 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
19250 Tweak warning. (Bug#14926)
19251
19252 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
19253 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
19254
19255 * image-mode.el (image-mode-map): Add menu items to reverse,
19256 increase, decrease, reset animation speed.
19257 (image--set-speed, image-increase-speed, image-decrease-speed)
19258 (image-reverse-speed, image-reset-speed): New functions.
19259 (image-mode-map): Add bindings for speed commands.
19260
19261 * image.el (image-animate-get-speed, image-animate-set-speed):
19262 New functions.
19263 (image-animate-timeout): Respect image :speed property.
19264
19265 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
19266
19267 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
19268 previous line (bug#15101).
19269 (debugger-eval-expression, debugger-record-expression):
19270 Use read--expression (bug#15102).
19271
19272 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
19273
19274 Remove byte compiler warnings, visible when compiling with
19275 `byte-compile-force-lexical-warnings' set to t.
19276
19277 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
19278 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
19279 (tramp-handle-unhandled-file-name-directory)
19280 (tramp-handle-file-notify-add-watch, tramp-action-login)
19281 (tramp-action-succeed, tramp-action-permission-denied)
19282 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
19283 arguments with "_".
19284
19285 * net/tramp-adb.el (tramp-adb-parse-device-names)
19286 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
19287 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
19288 (tramp-adb-handle-file-truename): Remove unused arguments.
19289
19290 * net/tramp-cache.el (tramp-flush-directory-property)
19291 (tramp-flush-connection-property, tramp-list-connections)
19292 (tramp-parse-connection-properties): Prefix unused arguments with "_".
19293
19294 * net/tramp-compat.el (tramp-compat-make-temp-file):
19295 Rename FILENAME to F.
19296
19297 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
19298 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
19299 (tramp-zeroconf-parse-workstation-device-names)
19300 (tramp-zeroconf-parse-webdav-device-names)
19301 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
19302
19303 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
19304 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
19305
19306 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
19307 arguments.
19308 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
19309 (tramp-sh-handle-insert-file-contents-literally)
19310 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
19311 with "_".
19312 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
19313 Remove unused variables.
19314
19315 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
19316 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
19317 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
19318
19319 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
19320 Make them a defconst.
19321 (tramp-uuencode-region): Remove unused variable.
19322
19323 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
19324
19325 * frameset.el (frameset--prop-setter): New function.
19326 (frameset-prop): Add gv-setter declaration.
19327 (frameset-filter-minibuffer): Deal with the case that the minibuffer
19328 parameter was already set in FILTERED. Doc fix.
19329 (frameset--record-minibuffer-relationships): Allow saving a
19330 minibufferless frame without its corresponding minibuffer frame.
19331 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
19332 frame, if the frame id matches.
19333 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
19334 frames before orphaned ones.
19335 (frameset-restore): Warn about orphaned windows, instead of error out.
19336
19337 2013-08-14 Martin Rudalics <rudalics@gmx.at>
19338
19339 * window.el (window-make-atom): Don't overwrite parameter
19340 already present.
19341 (display-buffer-in-atom-window): Handle special case where we
19342 split an already atomic window.
19343 (window--major-non-side-window, display-buffer-in-side-window)
19344 (window--side-check): Ignore minibuffer window when walking
19345 window tree.
19346 (window-deletable-p): Return 'frame only if no other frame uses
19347 our minibuffer window.
19348 (record-window-buffer): Run buffer-list-update-hook.
19349 (split-window): Make sure window--check-frame won't destroy an
19350 existing atomic window in case the new window gets nested
19351 inside.
19352 (display-buffer-at-bottom): Ignore minibuffer window when
19353 walking window tree. Don't split a side window.
19354 (pop-to-buffer): Don't set-buffer here, the select-window call
19355 should do that.
19356 (mouse-autoselect-window-select): Autoselect only if we are in the
19357 text portion of the window.
19358
19359 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
19360
19361 * net/shr.el (shr-parse-image-data): New function to grab both the
19362 data itself and the Content-Type.
19363 (shr-put-image): Use it.
19364
19365 * net/eww.el (eww-display-image): Ditto.
19366
19367 * image.el (image-content-type-suffixes): New variable.
19368
19369 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
19370
19371 * progmodes/python.el (python-imenu--build-tree)
19372 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
19373
19374 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
19375
19376 * simple.el (backward-word): Mention the optional argument.
19377
19378 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
19379
19380 * frameset.el (frameset--make): Rename constructor from make-frameset.
19381 (frameset-p, frameset-valid-p): Don't autoload.
19382 (frameset-valid-p): Use normal accessors.
19383
19384 2013-08-13 Glenn Morris <rgm@gnu.org>
19385
19386 * progmodes/compile.el (compile-command): Tweak example in doc.
19387 * obsolete/scribe.el (scribe-mode):
19388 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
19389
19390 * mail/feedmail.el (feedmail-confirm-outgoing)
19391 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
19392
19393 * cus-start.el (truncate-partial-width-windows): Fix type.
19394
19395 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
19396
19397 * net/shr.el (shr-table-horizontal-line): Fix custom type.
19398
19399 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
19400
19401 * emacs-lisp/timer.el (timer--time-setter): New function.
19402 (timer--time): Use it as gv-setter.
19403
19404 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
19405 setter is not a symbol.
19406
19407 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
19408
19409 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
19410 if sending fails. This makes debugging easier.
19411
19412 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
19413
19414 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
19415 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
19416 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
19417
19418 2013-08-12 Eli Zaretskii <eliz@gnu.org>
19419
19420 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
19421
19422 2013-08-12 Glenn Morris <rgm@gnu.org>
19423
19424 * format.el (format-annotate-function):
19425 Handle read-only text properties in the source. (Bug#14887)
19426
19427 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19428
19429 * net/eww.el (eww-display-html): Ignore coding system errors.
19430 One web site uses "utf-8lias" as the coding system.
19431
19432 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
19433
19434 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
19435
19436 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
19437
19438 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
19439 (tutorial--detailed-help): Remove unused local variables.
19440 (tutorial--save-tutorial-to): Use ignore-errors.
19441 (help-with-tutorial): Use looking-at-p.
19442
19443 * view.el (view-buffer-other-window, view-buffer-other-frame):
19444 Mark unused arguments.
19445
19446 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
19447 (woman-select-symbol-fonts, woman, woman-find-file)
19448 (woman-insert-file-contents, woman-non-underline-faces):
19449 Use string-match-p.
19450 (woman1-unquote): Move declaration.
19451
19452 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
19453 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
19454 argument. Remove unused local variable.
19455 (xml-parse-elem-type): Use string-match-p.
19456 (xml-substitute-numeric-entities): Use ignore-errors.
19457
19458 * calculator.el (calculator): Mark unused argument.
19459 (calculator-paste, calculator-quit, calculator-integer-p):
19460 Use ignore-errors.
19461 (calculator-string-to-number, calculator-decimal, calculator-exp)
19462 (calculator-op-or-exp): Use string-match-p.
19463
19464 * dired.el (dired-buffer-more-recently-used-p): Declare.
19465 (dired-insert-set-properties, dired-insert-old-subdirs):
19466 Use ignore-errors.
19467
19468 * dired-aux.el (dired-compress): Use ignore-errors.
19469 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
19470 (dired-do-async-shell-command, dired-do-shell-command)
19471 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
19472 (dired-insert-subdir-validate): Use string-match-p.
19473 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
19474 (dired-add-entry): Use string-match-p, looking-at-p.
19475 (dired-insert-subdir-newpos): Remove unused local variable.
19476
19477 * filenotify.el (file-notify-callback): Remove unused local variable.
19478
19479 * filesets.el (filesets-error): Mark unused argument.
19480 (filesets-which-command-p, filesets-filter-dir-names)
19481 (filesets-directory-files, filesets-get-external-viewer)
19482 (filesets-ingroup-get-data): Use string-match-p.
19483
19484 * find-file.el (ff-other-file-name, ff-other-file-name)
19485 (ff-find-the-other-file, ff-cc-hh-converter):
19486 Remove unused local variables.
19487 (ff-get-file-name): Use string-match-p.
19488 (ff-all-dirs-under): Use ignore-errors.
19489
19490 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
19491 (follow-select-if-visible): Remove unused local variable.
19492
19493 * forms.el (read-file-filter): Move declaration.
19494 (forms--make-format, forms--make-parser, forms-insert-record):
19495 Quote function with #'.
19496 (forms--update): Use string-match-p. Quote function with #'.
19497
19498 * help-mode.el (help-dir-local-var-def): Mark unused argument.
19499 (help-make-xrefs): Use looking-at-p.
19500 (help-xref-on-pp): Use looking-at-p, ignore-errors.
19501
19502 * ibuffer.el (ibuffer-ext-visible-p): Declare.
19503 (ibuffer-confirm-operation-on): Use string-match-p.
19504
19505 * msb.el (msb-item-handler, msb-dired-item-handler):
19506 Mark unused arguments.
19507
19508 * ses.el (ses-decode-cell-symbol)
19509 (ses-kill-override): Remove unused local variable.
19510 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
19511 (ses-load): Use ignore-errors, looking-at-p.
19512 (ses-jump-safe): Use ignore-errors.
19513 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
19514
19515 * tabify.el (untabify, tabify): Mark unused arguments.
19516
19517 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
19518 Mark unused argument.
19519 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
19520 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
19521
19522 * emacs-lisp/timer.el (timer--time): Define setter with
19523 gv-define-setter to avoid deprecation warning.
19524
19525 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
19526 (*record-cmpl-statistics-p*): Remove (was commented out).
19527 (cmpl-statistics-block): Remove (body was commented out).
19528 All callers changed.
19529 (add-completions-from-buffer, load-completions-from-file):
19530 Remove unused variables.
19531
19532 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
19533
19534 * filecache.el (file-cache-delete-file-list):
19535 Print message only when told so.
19536 (file-cache-files-matching): Use #' in mapconcat argument.
19537
19538 * ffap.el (ffap-url-at-point): Fix reference to variable
19539 thing-at-point-default-mail-uri-scheme.
19540
19541 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
19542
19543 * subr.el (define-error): New function.
19544 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
19545 error-file-not-found and define with define-error.
19546 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
19547 and define with define-error.
19548 * userlock.el (file-locked, file-supersession):
19549 * simple.el (mark-inactive):
19550 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
19551 * progmodes/ada-mode.el (ada-mode-errors):
19552 * play/life.el (life-extinct):
19553 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
19554 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
19555 * nxml/rng-util.el (rng-error):
19556 * nxml/rng-uri.el (rng-uri-error):
19557 * nxml/rng-match.el (rng-compile-error):
19558 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
19559 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
19560 * nxml/nxml-rap.el (nxml-scan-error):
19561 * nxml/nxml-outln.el (nxml-outline-error):
19562 * net/soap-client.el (soap-error):
19563 * net/gnutls.el (gnutls-error):
19564 * net/ange-ftp.el (ftp-error):
19565 * mpc.el (mpc-proc-error):
19566 * json.el (json-error, json-readtable-error, json-unknown-keyword)
19567 (json-number-format, json-string-escape, json-string-format)
19568 (json-key-format, json-object-format):
19569 * jka-compr.el (compression-error):
19570 * international/quail.el (quail-error):
19571 * international/kkc.el (kkc-error):
19572 * emacs-lisp/ert.el (ert-test-failed):
19573 * calc/calc.el (calc-error, inexact-result, math-overflow)
19574 (math-underflow):
19575 * bookmark.el (bookmark-error-no-filename):
19576 * epg.el (epg-error): Define with define-error.
19577
19578 * time.el (display-time-event-handler)
19579 (display-time-next-load-average): Don't call sit-for since it seems
19580 unnecessary (bug#15045).
19581
19582 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
19583 Use #' instead of ' to quote functions.
19584 (checkdoc-output-mode): Use setq-local.
19585 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
19586 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
19587 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
19588 (checkdoc-ispell, checkdoc-ispell-current-buffer)
19589 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
19590 (checkdoc-ispell-message-text, checkdoc-ispell-start)
19591 (checkdoc-ispell-continue, checkdoc-ispell-comments)
19592 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
19593
19594 * ido.el (ido-completion-help): Fix up compiler warning.
19595
19596 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
19597
19598 * frameset.el (frameset-p): Add autoload cookie.
19599 (frameset--jump-to-register): New function, based on code moved from
19600 register.el.
19601 (frameset-to-register): Move from register.el. Adapt to `registerv'.
19602
19603 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
19604 (frameset-restore, frameset-save, frameset-session-filter-alist):
19605 Remove declarations.
19606 (register-alist): Doc fix.
19607 (frameset-to-register): Move to frameset.el.
19608 (jump-to-register, describe-register-1): Remove frameset-specific code.
19609
19610 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
19611
19612 * allout-widgets.el (allout-widgets-pre-command-business)
19613 (allout-widgets-post-command-business)
19614 (allout-widgets-after-change-handler)
19615 (allout-decorate-item-and-context, allout-set-boundary-marker)
19616 (allout-body-modification-handler)
19617 (allout-graphics-modification-handler): Mark ignored arguments.
19618 (allout-widgets-post-command-business)
19619 (allout-widgets-exposure-change-processor)
19620 (allout-widgets-exposure-undo-processor)
19621 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
19622 (allout-parse-item-at-point, allout-decorate-item-guides)
19623 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
19624 * allout.el (epa-passphrase-callback-function): Declare.
19625 (allout-overlay-insert-in-front-handler)
19626 (allout-overlay-interior-modification-handler)
19627 (allout-isearch-end-handler, allout-chart-siblings)
19628 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
19629 (allout-yank-processing, allout-process-exposed)
19630 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
19631 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
19632 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
19633 (lisp-indent-defform): Mark ignored arguments.
19634 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
19635 (calculate-lisp-indent): Remove unused variables.
19636 * international/characters.el (indian-2-column, arabic-2-column)
19637 (tibetan): Mark ignored arguments.
19638 (use-cjk-char-width-table): Mark ignored arguments.
19639 Remove unused variables.
19640 * international/fontset.el (build-default-fontset-data)
19641 (x-compose-font-name, create-fontset-from-fontset-spec):
19642 Mark ignored arguments.
19643 (fontset-plain-name): Remove unused variables.
19644 * international/mule.el (charset-id, charset-bytes, generic-char-p)
19645 (keyboard-coding-system): Mark ignored arguments.
19646 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
19647 * help.el (resize-temp-buffer-window):
19648 * window.el (display-buffer-in-major-side-window)
19649 (display-buffer-in-side-window, display-buffer-in-previous-window):
19650 Remove unused variables.
19651 * isearch.el (isearch-forward-symbol):
19652 * version.el (emacs-bzr-version-bzr):
19653 * international/mule-cmds.el (current-language-environment):
19654 * term/common-win.el (x-handle-iconic, x-handle-geometry)
19655 (x-handle-display):
19656 * term/pc-win.el (x-list-fonts, x-display-planes)
19657 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
19658 (x-server-version, x-display-screens, x-display-mm-height)
19659 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
19660 (x-selection-owner-p, x-own-selection-internal)
19661 (x-disown-selection-internal, x-get-selection-internal)
19662 (msdos-initialize-window-system):
19663 * term/tty-colors.el (tty-color-alist, tty-color-clear):
19664 * term/x-win.el (x-handle-no-bitmap-icon):
19665 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
19666 (vc-default-find-file-hook, vc-default-extra-menu):
19667 Mark ignored arguments.
19668
19669 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
19670
19671 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
19672 break-condition in the context of the debugged code (bug#12685).
19673
19674 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
19675
19676 * comint.el:
19677 Do not use an overlay to highlight the last prompt. (Bug#14744)
19678 (comint-mode): Make comint-last-prompt buffer local.
19679 (comint-last-prompt): New variable.
19680 (comint-last-prompt-overlay): Remove. Superseded by
19681 comint-last-prompt.
19682 (comint-snapshot-last-prompt, comint-output-filter):
19683 Use comint-last-prompt.
19684
19685 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
19686
19687 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
19688 (frameset-save): Check validity of the resulting frameset.
19689
19690 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
19691
19692 * ido.el (ido-record-command): Add doc string.
19693
19694 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
19695
19696 * frameset.el (frameset): Do not disable creation of the default
19697 frameset-p predicate. Doc fix.
19698 (frameset-valid-p): New function, copied from the old predicate-p.
19699 Add additional checks.
19700 (frameset-restore): Check with frameset-valid-p.
19701 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
19702 (frameset-name, frameset-description, frameset-properties)
19703 (frameset-states): Add docstring.
19704 (frameset-session-filter-alist, frameset-persistent-filter-alist)
19705 (frameset-filter-alist): Doc fixes.
19706
19707 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
19708
19709 * frameset.el (frameset-p, frameset-prop): Doc fixes.
19710
19711 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
19712
19713 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
19714 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
19715 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
19716 (byte-compile-normal-call): Remove obsolescence check.
19717
19718 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
19719
19720 * frameset.el (frameset-restore): Doc fix.
19721
19722 * register.el (frameset-frame-id, frameset-frame-with-id)
19723 (frameset-p, frameset-restore, frameset-save): Declare.
19724 (register-alist): Document framesets.
19725 (frameset-session-filter-alist): Declare.
19726 (frameset-to-register): New function.
19727 (jump-to-register): Implement jumping to framesets. Doc fix.
19728 (describe-register-1): Describe framesets.
19729
19730 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
19731
19732 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
19733
19734 * desktop.el (desktop-save-frameset): Use new frameset-save args.
19735 Use lexical-binding.
19736
19737 * frameset.el (frameset): Use type vector, not list (incompatible
19738 change). Do not declare a new constructor, use the default one.
19739 Upgrade suggested properties `app', `name' and `desc' to slots `app',
19740 `name' and `description', respectively, and add read-only slot
19741 `timestamp'. Doc fixes.
19742 (frameset-copy, frameset-persistent-filter-alist)
19743 (frameset-filter-alist, frameset-switch-to-gui-p)
19744 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
19745 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
19746 (frameset-filter-iconified, frameset-keep-original-display-p):
19747 Doc fixes.
19748 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
19749 Rename from frameset-filter-(save|restore)-param. All callers changed.
19750 Doc fix.
19751 (frameset-p): Adapt to change to vector and be more thorough.
19752 Change arg name to OBJECT. Doc fix.
19753 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
19754 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
19755 All callers changed.
19756 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
19757 All callers changed.
19758 (frameset--record-minibuffer-relationships): Rename from
19759 frameset--process-minibuffer-frames. All callers changed.
19760 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
19761 Use new default constructor (again). Doc fix.
19762 (frameset--find-frame-if): Rename from `frameset--find-frame'.
19763 All callers changed.
19764 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
19765 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
19766 Doc fix.
19767 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
19768 PARAMETERS and WINDOW-STATE, respectively.
19769 (frameset-restore): Add new keyword argument PREDICATE.
19770 Reset frameset--target-display to nil. Doc fix.
19771
19772 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
19773
19774 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
19775 (bat-mode): Use it.
19776 (bat-mode-syntax-table): Mark \n as end-of-comment.
19777 (bat-font-lock-keywords): Remove comment rule.
19778
19779 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
19780 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
19781
19782 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
19783 (byte-compile-callargs-warn): Use `push'.
19784 (byte-compile-arglist-warn): Ignore higher-order "calls".
19785 (byte-compile-file-form-autoload): Use `pcase'.
19786 (byte-compile-function-form): If quoting a symbol, check that it exists.
19787
19788 2013-08-07 Eli Zaretskii <eliz@gnu.org>
19789
19790 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
19791 and add a few popular commands found in batch files.
19792 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
19793 (dos-mode): Doc fixes.
19794
19795 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
19796
19797 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
19798 (dos-mode): Use setq-local. Add space after "rem".
19799 (dos-mode-syntax-table): Don't use "w" for symbol chars.
19800 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
19801
19802 2013-08-07 Arni Magnusson <arnima@hafro.is>
19803
19804 * progmodes/dos.el: New file.
19805 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
19806 dos-mode.
19807
19808 2013-08-06 Glenn Morris <rgm@gnu.org>
19809
19810 * calendar/calendar.el: Add new faces, and day-header-array.
19811 (calendar-weekday-header, calendar-weekend-header)
19812 (calendar-month-header): New faces.
19813 (calendar-day-header-construct): New function.
19814 (calendar-day-header-width): Also :set calendar-day-header-array.
19815 (calendar-american-month-header, calendar-european-month-header)
19816 (calendar-iso-month-header): Use calendar- faces.
19817 (calendar-generate-month):
19818 Use calendar-day-header-array for day headers; apply faces to them.
19819 (calendar-mode): Check calendar-font-lock-keywords non-nil.
19820 (calendar-abbrev-construct): Add optional maxlen argument.
19821 (calendar-day-name-array): Doc fix.
19822 (calendar-day-name-array, calendar-abbrev-length)
19823 (calendar-day-abbrev-array):
19824 Also :set calendar-day-header-array, and maybe redraw.
19825 (calendar-day-header-array): New option. (Bug#15007)
19826 (calendar-font-lock-keywords): Set to nil and make obsolete.
19827 (calendar-day-name): Add option to use header array.
19828
19829 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
19830
19831 * net/shr.el (shr-render-td): Remove debugging.
19832 (shr-render-td): Make width computation consistent by defaulting
19833 all zero-width columns to 10 characters. This may not be optimal,
19834 but it's at least consistent.
19835 (shr-make-table-1): Redo last change to fix the real problem in
19836 colspan handling.
19837
19838 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
19839
19840 * files.el (cache-long-line-scans):
19841 Make obsolete alias to `cache-long-scans'.
19842
19843 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
19844
19845 * frameset.el (frameset, frameset-filter-alist)
19846 (frameset-filter-params, frameset-save, frameset--reuse-frame)
19847 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
19848 (frameset-compute-pos): Rename from frameset--compute-pos,
19849 and add docstring.
19850 (frameset-move-onscreen): Use frameset-compute-pos.
19851 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
19852
19853 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
19854 Fix typos in docstrings.
19855
19856 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
19857
19858 * frame.el (get-other-frame): Tiny cleanup.
19859
19860 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
19861
19862 * vc/vc.el (vc-default-ignore-completion-table):
19863 Silence byte-compiler warning.
19864
19865 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
19866 slot, which can indeed be nil.
19867 (frameset-live-filter-alist, frameset-persistent-filter-alist):
19868 Move entry for `left' from persistent to live filter alist.
19869 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
19870 Doc fixes.
19871 (frameset-filter-params): When restoring a frame, copy items added to
19872 `filtered', to avoid unwittingly modifying the original parameters.
19873 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
19874 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
19875
19876 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
19877 to use looking-at-p instead of looking-at. (Bug#15028)
19878
19879 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
19880
19881 Revert introduction of isearch-filter-predicates (bug#14714).
19882 Rely on add-function instead.
19883 * isearch.el (isearch-filter-predicates): Rename it back to
19884 isearch-filter-predicate.
19885 (isearch-message-prefix): Use advice-function-mapc and advice
19886 properties to get the isearch-message-prefix.
19887 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
19888 instead of run-hook-with-args-until-failure.
19889 (isearch-filter-visible): Not obsolete any more.
19890 * loadup.el: Preload nadvice.
19891 * replace.el (perform-replace): Revert to funcall
19892 instead of run-hook-with-args-until-failure.
19893 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
19894 * dired-aux.el (dired-isearch-filenames-mode): Rename from
19895 dired-isearch-filenames-toggle; make it into a proper minor mode.
19896 Use add/remove-function.
19897 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
19898 Call the minor-mode rather than add/remove-hook.
19899 (dired-isearch-filter-filenames):
19900 Remove isearch-message-prefix property.
19901 * info.el (Info--search-loop): New function, extracted from Info-search.
19902 Funcall isearch-filter-predicate instead of
19903 run-hook-with-args-until-failure isearch-filter-predicates.
19904 (Info-search): Use it.
19905 (Info-mode): Use isearch-filter-predicate instead of
19906 isearch-filter-predicates.
19907
19908 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
19909
19910 Do not call to `selected-window' where it is assumed by default.
19911 Affected functions are `window-minibuffer-p', `window-dedicated-p',
19912 `window-hscroll', `window-width', `window-height', `window-buffer',
19913 `window-frame', `window-start', `window-point', `next-window'
19914 and `window-display-table'.
19915 * abbrev.el (abbrev--default-expand):
19916 * bs.el (bs--show-with-configuration):
19917 * buff-menu.el (Buffer-menu-mouse-select):
19918 * calc/calc.el (calc):
19919 * calendar/calendar.el (calendar-generate-window):
19920 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
19921 (diary-make-entry):
19922 * comint.el (send-invisible, comint-dynamic-complete-filename)
19923 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
19924 * completion.el (complete):
19925 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
19926 * disp-table.el (describe-current-display-table):
19927 * doc-view.el (doc-view-insert-image):
19928 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
19929 * ehelp.el (with-electric-help):
19930 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
19931 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
19932 * emacs-lisp/helper.el (Helper-help-scroller):
19933 * emulation/cua-base.el (cua--post-command-handler-1):
19934 * eshell/esh-mode.el (eshell-output-filter):
19935 * ffap.el (ffap-gnus-wrapper):
19936 * help-macro.el (make-help-screen):
19937 * hilit-chg.el (highlight-compare-buffers):
19938 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
19939 * hl-line.el (global-hl-line-highlight):
19940 * icomplete.el (icomplete-simple-completing-p):
19941 * isearch.el (isearch-done):
19942 * jit-lock.el (jit-lock-stealth-fontify):
19943 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
19944 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
19945 * mpc.el (mpc-tagbrowser, mpc):
19946 * net/rcirc.el (rcirc-any-buffer):
19947 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
19948 * play/landmark.el (landmark-max-width, landmark-max-height):
19949 * play/zone.el (zone):
19950 * progmodes/compile.el (compilation-goto-locus):
19951 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
19952 * progmodes/etags.el (find-tag-other-window):
19953 * progmodes/fortran.el (fortran-column-ruler):
19954 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
19955 * progmodes/verilog-mode.el (verilog-point-text):
19956 * reposition.el (reposition-window):
19957 * rot13.el (toggle-rot13-mode):
19958 * server.el (server-switch-buffer):
19959 * shell.el (shell-dynamic-complete-command)
19960 (shell-dynamic-complete-environment-variable):
19961 * simple.el (insert-buffer, set-selective-display)
19962 (delete-completion-window):
19963 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
19964 (speedbar-recenter):
19965 * startup.el (fancy-splash-head):
19966 * textmodes/ispell.el (ispell-command-loop):
19967 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
19968 * tutorial.el (help-with-tutorial):
19969 * vc/add-log.el (add-change-log-entry):
19970 * vc/compare-w.el (compare-windows):
19971 * vc/ediff-help.el (ediff-indent-help-message):
19972 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
19973 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
19974 (ediff-setup-control-frame):
19975 * vc/emerge.el (emerge-position-region):
19976 * vc/pcvs-util.el (cvs-bury-buffer):
19977 * window.el (walk-windows, mouse-autoselect-window-select):
19978 * winner.el (winner-set-conf, winner-undo): Related users changed.
19979
19980 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
19981
19982 * frameset.el (frameset--set-id): Doc fix.
19983 (frameset-frame-id, frameset-frame-id-equal-p)
19984 (frameset-locate-frame-id): New functions.
19985 (frameset--process-minibuffer-frames, frameset--reuse-frame)
19986 (frameset-restore): Use them.
19987
19988 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
19989
19990 Do not call to `selected-frame' where it is assumed by default.
19991 Affected functions are `raise-frame', `redraw-frame',
19992 `frame-first-window', `frame-terminal' and `delete-frame'.
19993 * calendar/appt.el (appt-disp-window):
19994 * epg.el (epg-wait-for-completion):
19995 * follow.el (follow-delete-other-windows-and-split)
19996 (follow-avoid-tail-recenter):
19997 * international/mule.el (set-terminal-coding-system):
19998 * mail/rmail.el (rmail-mail-return):
19999 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
20000 * progmodes/f90.el (f90-add-imenu-menu):
20001 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
20002 * server.el (server-switch-buffer):
20003 * simple.el (delete-completion-window):
20004 * talk.el (talk):
20005 * term/xterm.el (terminal-init-xterm-modify-other-keys)
20006 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
20007 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
20008 * vc/ediff.el (ediff-documentation): Related users changed.
20009 * frame.el (selected-terminal): Remove the leftover.
20010
20011 2013-08-05 Glenn Morris <rgm@gnu.org>
20012
20013 * calendar/calendar.el (calendar-generate-month):
20014 Fix for calendar-column-width != 1 + calendar-day-digit-width.
20015 (calendar-generate-month, calendar-font-lock-keywords):
20016 Fix for calendar-day-header-width > length of any day name.
20017
20018 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
20019
20020 * desktop.el (desktop-clear): Use new name of sort predicate.
20021
20022 * frameset.el (frameset): Add docstring. Move :version property to its
20023 own `version' slot.
20024 (frameset-copy): Rename from copy-frameset.
20025 (frameset-p): Check more thoroughly.
20026 (frameset-prop): Do not check for :version, which is no longer a prop.
20027 (frameset-live-filter-alist, frameset-persistent-filter-alist):
20028 Use new :never value instead of t.
20029 (frameset-filter-alist): Expand and clarify docstring.
20030 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
20031 (frameset-filter-minibuffer, frameset-filter-save-param)
20032 (frameset-filter-restore-param, frameset-filter-iconified):
20033 Add pointer to docstring of frameset-filter-alist.
20034 (frameset-filter-params): Rename filter values to be more meaningful:
20035 :never instead of t, and reverse the meanings of :save and :restore.
20036 (frameset--process-minibuffer-frames): Clarify error message.
20037 (frameset-save): Avoid unnecessary and confusing call to framep.
20038 Use new BOA constructor for framesets.
20039 (frameset--reuse-list): Doc fix.
20040 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
20041 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
20042 (frameset-minibufferless-first-p): Doc fix.
20043 Rename from frameset-sort-frames-for-deletion.
20044 (frameset-restore): Doc fixes. Use new function names.
20045 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
20046
20047 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
20048
20049 * desktop.el (desktop-restore-forces-onscreen)
20050 (desktop-restore-reuses-frames): Document :keyword constant values.
20051 (desktop-filter-parameters-alist): Remove, now identical to
20052 frameset-filter-alist.
20053 (desktop--filter-tty*): Remove, moved to frameset.el.
20054 (desktop-save-frameset, desktop-restore-frameset):
20055 Do not pass :filters argument.
20056
20057 * frameset.el (frameset-live-filter-alist)
20058 (frameset-persistent-filter-alist): New variables.
20059 (frameset-filter-alist): Use them. Add autoload cookie.
20060 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
20061 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
20062 `frameset--id' (it's supposed to be internal to frameset.el).
20063 (frameset--process-minibuffer-frames): Ditto. Doc fix.
20064 (frameset--initial-params): New function.
20065 (frameset--get-frame): Use it. Doc fix.
20066 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
20067 Accept :all, not 'all.
20068 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
20069 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
20070 with fbound symbols. Fix frame id matching, and remove matching ids if
20071 the frame being restored is deleted. Obey :delete.
20072
20073 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
20074
20075 * subr.el (macrop): New function.
20076 (text-clone--maintaining): New var.
20077 (text-clone--maintain): Rename from text-clone-maintain. Use it
20078 instead of inhibit-modification-hooks.
20079
20080 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
20081 a proxy, so as handle autoloads and redefinitions of the target.
20082 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
20083
20084 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
20085 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
20086 (pcase--mutually-exclusive-p): New function.
20087 (pcase--split-consp): Use it.
20088 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
20089 mutually exclusive with the current predicate.
20090
20091 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
20092 (edebug-macrop): Remove. Use `macrop' instead.
20093 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
20094 (ad-macro-p):
20095 * eshell/esh-cmd.el (eshell-macrop):
20096 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
20097
20098 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
20099
20100 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
20101 (advice-mapc): New function, using it.
20102 (advice-function-member-p): New function.
20103 (advice--normalize): Store the cdr in advice--saved-rewrite since
20104 that's the part that will be changed.
20105 (advice--symbol-function): New function.
20106 (advice-remove): Handle removal before the function is defined.
20107 Adjust to new advice--saved-rewrite.
20108 (advice-member-p): Use advice-function-member-p and
20109 advice--symbol-function.
20110
20111 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
20112
20113 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
20114 (frameset-filter-minibuffer): Doc fix.
20115 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
20116 (frameset--set-id, frameset--process-minibuffer-frames)
20117 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
20118 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
20119
20120 * desktop.el (desktop-clear): Only delete frames when called
20121 interactively and desktop-restore-frames is non-nil. Doc fix.
20122 (desktop-read): Set desktop-saved-frameset to nil.
20123
20124 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
20125
20126 * vc/vc.el (vc-ignore): Rewrite.
20127 (vc-default-ignore-completion-table, vc--read-lines)
20128 (vc--add-line, vc--remove-regexp): New functions.
20129
20130 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
20131 (vc-svn-ignore-completion-table): New function.
20132
20133 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
20134 (vc-hg-ignore-completion-table)
20135 (vc-hg-find-ignore-file): New functions.
20136
20137 * vc/vc-git.el (vc-git-ignore): Rewrite.
20138 (vc-git-ignore-completion-table)
20139 (vc-git-find-ignore-file): New functions.
20140
20141 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
20142
20143 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
20144 (vc-bzr-ignore-completion-table)
20145 (vc-bzr-find-ignore-file): New functions.
20146
20147 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
20148
20149 * frameset.el (frameset-prop): New function and setter.
20150 (frameset-save): Do not modify frame list passed by the caller.
20151
20152 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
20153
20154 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
20155
20156 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
20157
20158 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
20159 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
20160
20161 * custom.el (custom-initialize-default, custom-initialize-set)
20162 (custom-initialize-reset, custom-initialize-changed): Affect the
20163 toplevel-default-value (bug#6275, bug#14586).
20164 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
20165 for bug#6275.
20166
20167 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
20168
20169 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
20170 Add cl-def* expressions.
20171
20172 * frameset.el (frameset-filter-params): Fix order of arguments.
20173
20174 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
20175
20176 Move code related to saving frames to frameset.el.
20177 * desktop.el: Require frameset.
20178 (desktop-restore-frames): Doc fix.
20179 (desktop-restore-reuses-frames): Rename from
20180 desktop-restoring-reuses-frames.
20181 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
20182 (desktop-clear): Clear frames too.
20183 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
20184 (desktop--filter-tty*, desktop-save, desktop-read):
20185 Use frameset functions.
20186 (desktop-before-saving-frames-functions, desktop--filter-*-color)
20187 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
20188 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
20189 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
20190 (desktop--process-minibuffer-frames, desktop-save-frames)
20191 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
20192 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
20193 (desktop--sort-states, desktop-restoring-frames-p)
20194 (desktop-restore-frames): Remove. Most code moved to frameset.el.
20195 (desktop-restoring-frameset-p, desktop-restore-frameset)
20196 (desktop--check-dont-save, desktop-save-frameset): New functions.
20197 (desktop--app-id): New constant.
20198 (desktop-first-buffer, desktop-buffer-ok-count)
20199 (desktop-buffer-fail-count): Move before first use.
20200 * frameset.el: New file.
20201
20202 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
20203
20204 * files.el: Use lexical-binding.
20205 (dir-locals-read-from-file): Remove unused `err' variable.
20206 (hack-dir-local-variables--warned-coding): New var.
20207 (hack-dir-local-variables): Use it to avoid repeated warnings.
20208 (make-backup-file-name--default-function): New function.
20209 (make-backup-file-name-function): Use it as default.
20210 (buffer-stale--default-function): New function.
20211 (buffer-stale-function): Use it as default.
20212 (revert-buffer-insert-file-contents--default-function): New function.
20213 (revert-buffer-insert-file-contents-function): Use it as default.
20214 (insert-directory): Avoid add-to-list.
20215
20216 * autorevert.el (auto-revert-handler): Simplify.
20217 Use buffer-stale--default-function.
20218
20219 2013-08-01 Tassilo Horn <tsdh@gnu.org>
20220
20221 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
20222
20223 * whitespace.el (whitespace-ensure-local-variables): New function.
20224 (whitespace-cleanup-region): Call it.
20225 (whitespace-turn-on): Call it.
20226
20227 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
20228
20229 Complete file name handlers.
20230
20231 * net/tramp.el (tramp-handle-set-visited-file-modtime)
20232 (tramp-handle-verify-visited-file-modtime)
20233 (tramp-handle-file-notify-rm-watch): New functions.
20234 (tramp-call-process): Do not bind `default-directory'.
20235
20236 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20237 Order alphabetically.
20238 <access-file, add-name-to-file, dired-call-process>:
20239 <dired-compress-file, file-acl, file-notify-rm-watch>:
20240 <file-ownership-preserved-p, file-selinux-context>:
20241 <make-directory-internal, make-symbolic-link, set-file-acl>:
20242 <set-file-selinux-context, set-visited-file-modtime>:
20243 <verify-visited-file-modtime>: Add handler.
20244 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
20245
20246 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
20247 <file-notify-add-watch, file-notify-rm-watch>:
20248 <set-file-times, set-visited-file-modtime>:
20249 <verify-visited-file-modtime>: Add handler.
20250 (with-tramp-gvfs-error-message)
20251 (tramp-gvfs-handle-set-visited-file-modtime)
20252 (tramp-gvfs-fuse-file-name): Remove.
20253 (tramp-gvfs-handle-file-notify-add-watch)
20254 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
20255 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
20256
20257 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
20258 Order alphabetically.
20259 <file-notify-rm-watch>: Use default Tramp handler.
20260 <executable-find>: Remove private handler.
20261 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
20262 `default-directory'.
20263 (tramp-sh-handle-executable-find)
20264 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
20265 (tramp-sh-file-gvfs-monitor-dir-process-filter)
20266 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
20267 Do not use `format' in `tramp-message'.
20268
20269 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
20270 <file-notify-rm-watch, set-visited-file-modtime>:
20271 <verify-visited-file-modtime>: Add handler.
20272 (tramp-smb-call-winexe): Do not bind `default-directory'.
20273
20274 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
20275
20276 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
20277
20278 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
20279
20280 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
20281 use it.
20282 (log-view-diff-changeset): Same.
20283 (log-view-diff-common): Call backend command `previous-revision'
20284 to find out the previous revision, in both cases. Swap the
20285 variables `to' and `fr', so that `fr' usually refers to the
20286 earlier revision (Bug#14989).
20287
20288 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
20289
20290 * ibuf-ext.el (ibuffer-filter-by-filename):
20291 Make it work with dired buffers too.
20292
20293 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
20294
20295 * emacs-lisp/re-builder.el (reb-color-display-p):
20296 * files.el (save-buffers-kill-terminal):
20297 * net/browse-url.el (browse-url):
20298 * server.el (server-save-buffers-kill-terminal):
20299 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
20300 Prefer nil to selected-frame for the first arg of frame-parameter.
20301
20302 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
20303
20304 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
20305
20306 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
20307
20308 * minibuffer.el (completion--twq-all): Try and preserve each
20309 completion's case choice (bug#14907).
20310
20311 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
20312
20313 * net/network-stream.el (open-network-stream): Mention the new
20314 :nogreeting parameter.
20315 (network-stream-open-starttls): Use the :nogreeting parameter
20316 (bug#14938).
20317
20318 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
20319
20320 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
20321 more natural than popping.
20322
20323 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
20324 (shr-urlify): Highlight under mouse.
20325
20326 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
20327
20328 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
20329
20330 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
20331
20332 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
20333 buffer for output.
20334
20335 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
20336 point-min==1. Fix search string. Fix parentheses missing.
20337
20338 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
20339 assume point-min==1. Fix search string. Fix parentheses missing.
20340
20341 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
20342
20343 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
20344 buffer for output.
20345
20346 2013-07-29 Eli Zaretskii <eliz@gnu.org>
20347
20348 * frame.el (frame-notice-user-settings): Avoid inflooping when the
20349 initial frame is minibuffer-less. (Bug#14841)
20350
20351 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
20352
20353 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
20354 option.
20355
20356 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
20357 (tramp-maybe-open-connection): Use it.
20358
20359 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
20360
20361 * desktop.el (desktop--make-frame): Include `minibuffer' in the
20362 minimal set of parameters passed when creating a frame, because
20363 the minibuffer status of a frame cannot be changed later.
20364
20365 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
20366
20367 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
20368 replace-regexp-in-string and inadvertent omissions in previous change.
20369 (todo-filter-items): Ensure only file names are comma-separated in
20370 name of filtered items buffer.
20371
20372 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
20373
20374 * desktop.el: Optionally force offscreen frames back onscreen.
20375 (desktop-restoring-reuses-frames): New option.
20376 (desktop--compute-pos, desktop--move-onscreen): New functions.
20377 (desktop--make-frame): Use desktop--move-onscreen.
20378
20379 2013-07-27 Alan Mackenzie <acm@muc.de>
20380
20381 Fontify a Java generic method as a function.
20382 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
20383 value to t.
20384
20385 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
20386
20387 * calendar/todo-mode.el: Add command to rename todo files.
20388 (todo-rename-file): New command.
20389 (todo-key-bindings-t): Add key binding for it. Change the
20390 bindings of todo-filter-regexp-items(-multifile) to use `x'
20391 instead of `r', since the latter is better suited to the new
20392 renaming command.
20393
20394 2013-07-27 Alan Mackenzie <acm@muc.de>
20395
20396 Make Java try-with-resources statement parse properly.
20397 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
20398 (c-block-stmt-1-2-key): New language constants/variables.
20399 * progmodes/cc-engine.el (c-beginning-of-statement-1)
20400 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
20401 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
20402 with c-block-stmt-1-2-key.
20403
20404 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
20405
20406 * desktop.el (desktop--make-frame): Apply most frame parameters after
20407 creating the frame to force (partially or totally) offscreen frames to
20408 be restored as such.
20409
20410 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
20411
20412 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
20413 (Bug#14948)
20414
20415 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
20416
20417 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
20418 `base' arg of backtrace-frame.
20419
20420 2013-07-26 Eli Zaretskii <eliz@gnu.org>
20421
20422 * simple.el (list-processes): Doc fix.
20423
20424 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
20425
20426 * desktop.el (desktop--select-frame):
20427 Try harder to reuse existing frames.
20428
20429 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
20430
20431 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
20432 (edebug-eval): Use backtrace-eval.
20433 (edebug--display, edebug--recursive-edit): Don't let-bind the
20434 edebug-outer-* vars that keep track of variables we locally let-bind.
20435 (edebug-outside-excursion): Don't restore outside values of locally
20436 let-bound vars.
20437 (edebug--display): Use user-error.
20438 (cl-lexical-debug, cl-debug-env): Remove.
20439
20440 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
20441
20442 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
20443 are restored to be sure that they are visible before deleting any
20444 remaining ones.
20445
20446 2013-07-26 Matthias Meulien <orontee@gmail.com>
20447
20448 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
20449 vc-print-root-log. (Bug#14948)
20450
20451 2013-07-26 Richard Stallman <rms@gnu.org>
20452
20453 Add aliases for encrypting mail.
20454 * epa.el (epa-mail-aliases): New option.
20455 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
20456 Bind inhibit-read-only so read-only text doesn't ruin everything.
20457 (epa-mail-default-recipients): New subroutine broken out.
20458 Handle epa-mail-aliases.
20459
20460 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
20461
20462 Add support for lexical variables to the debugger's `e' command.
20463 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
20464 vars, except for debugger-outer-match-data.
20465 (debugger-frame-number): Move check for "on a function call" from
20466 callers into it. Add `skip-base' argument.
20467 (debugger-frame, debugger-frame-clear): Simplify accordingly.
20468 (debugger-env-macro): Only reset the state stored in non-variables,
20469 i.e. current-buffer and match-data.
20470 (debugger-eval-expression): Rewrite using backtrace-eval.
20471 * subr.el (internal--called-interactively-p--get-frame): Remove.
20472 (called-interactively-p):
20473 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
20474 `base' arg of backtrace-frame instead.
20475
20476 2013-07-26 Glenn Morris <rgm@gnu.org>
20477
20478 * align.el (align-regexp): Doc fix. (Bug#14857)
20479 (align-region): Explicit error if subexpression missing/does not match.
20480
20481 * simple.el (global-visual-line-mode):
20482 Do not duplicate the mode lighter. (Bug#14858)
20483
20484 2013-07-25 Martin Rudalics <rudalics@gmx.at>
20485
20486 * window.el (display-buffer): In display-buffer bind
20487 split-window-keep-point to t, bug#14829.
20488
20489 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
20490
20491 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
20492 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
20493 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
20494 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
20495 Change accordingly.
20496 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
20497 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
20498
20499 2013-07-25 Glenn Morris <rgm@gnu.org>
20500
20501 * dired-x.el (dired-mark-extension): Convert comment to doc string.
20502
20503 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
20504
20505 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
20506 parameter to modify-frame-parameters if the value has not changed;
20507 this is a workaround for bug#14949.
20508 (desktop--make-frame): On cl-delete-if call, check parameter name,
20509 not full parameter.
20510
20511 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
20512
20513 * vc/vc.el (vc-ignore): New function.
20514
20515 * vc/vc-svn.el (vc-svn-ignore): New function.
20516
20517 * vc/vc-hg.el (vc-hg-ignore): New function.
20518
20519 * vc/vc-git.el (vc-git-ignore): New function.
20520
20521 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
20522 (vc-dir-ignore): New function.
20523
20524 * vc/vc-cvs.el (vc-cvs-ignore): New function.
20525 (cvs-append-to-ignore): Move here from pcvs.el.
20526
20527 * vc/vc-bzr.el (vc-bzr-ignore): New function.
20528
20529 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
20530
20531 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
20532
20533 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
20534 (desktop-restore-frames): Warn when deleting an existing frame failed.
20535
20536 2013-07-24 Glenn Morris <rgm@gnu.org>
20537
20538 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
20539
20540 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
20541
20542 * filenotify.el (file-notify-supported-p):
20543 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
20544 Remove functions.
20545
20546 * autorevert.el (auto-revert-use-notify)
20547 (auto-revert-notify-add-watch):
20548 * net/tramp.el (tramp-file-name-for-operation):
20549 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20550 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20551 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
20552 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
20553 Remove `file-notify-supported-p' entry.
20554
20555 2013-07-24 Glenn Morris <rgm@gnu.org>
20556
20557 * printing.el: Replace all uses of deleted ps-windows-system,
20558 ps-lp-system, ps-flatten-list with lpr- versions.
20559
20560 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
20561
20562 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
20563 checked with memq (bug#14935).
20564
20565 * files.el (revert-buffer-function): Use a non-nil default.
20566 (revert-buffer-preserve-modes): Declare var to
20567 provide access to the `preserve-modes' argument.
20568 (revert-buffer): Let-bind it.
20569 (revert-buffer--default): New function, extracted from revert-buffer.
20570
20571 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
20572
20573 * lpr.el: Signal print errors more prominently.
20574 (print-region-function): Don't default to nil.
20575 (lpr-print-region): New function, extracted from print-region-1.
20576 Check lpr's return value and signal an error in case of problem.
20577 (print-region-1): Use it.
20578 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
20579 versions instead.
20580 (ps-printer-name): Default to nil.
20581 (ps-printer-name-option): Default to lpr-printer-switch.
20582 (ps-print-region-function): Don't default to nil.
20583 (ps-postscript-code-directory): Simplify default.
20584 (ps-do-despool): Use lpr-print-region to properly check the outcome.
20585 (ps-string-list, ps-eval-switch, ps-flatten-list)
20586 (ps-flatten-list-1): Remove.
20587 (ps-multibyte-buffer): Avoid setq.
20588 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
20589 (print-region-function, ps-print-region-function): Don't set them here.
20590
20591 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
20592
20593 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
20594 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
20595 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
20596 (ido-decorations): Doc fix.
20597
20598 * ansi-color.el: Fix old URL.
20599
20600 2013-07-23 Michael R. Mauger <michael@mauger.com>
20601
20602 * progmodes/sql.el: Version 3.3
20603 (sql-product-alist): Improve oracle :prompt-cont-regexp.
20604 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
20605 (sql-interactive-remove-continuation-prompt): Rewrite, use
20606 functions above. Fix continuation prompt and complete output line
20607 handling.
20608 (sql-redirect-one, sql-execute): Use `read-only-mode' on
20609 redirected output buffer.
20610 (sql-mode): Restore deleted code (Bug#13591).
20611
20612 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
20613
20614 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
20615
20616 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
20617
20618 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
20619
20620 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20621 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20622 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
20623
20624 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
20625
20626 * desktop.el (desktop-clear): Simplify; remove useless checks
20627 against invalid buffer names.
20628 (desktop-list*): Use cl-list*.
20629 (desktop-buffer-info, desktop-create-buffer): Simplify.
20630
20631 2013-07-23 Leo Liu <sdl.web@gmail.com>
20632
20633 * bookmark.el (bookmark-make-record): Restore NAME as a default
20634 value. (Bug#14933)
20635
20636 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
20637
20638 * emacs-lisp/autoload.el (autoload--setup-output): New function,
20639 extracted from autoload--insert-text.
20640 (autoload--insert-text): Remove.
20641 (autoload--print-cookie-text): New function, extracted from
20642 autoload--insert-cookie-text.
20643 (autoload--insert-cookie-text): Remove.
20644 (autoload-generate-file-autoloads): Adjust calls accordingly.
20645
20646 * winner.el (winner-hook-installed-p): Remove.
20647 (winner-mode): Simplify accordingly.
20648
20649 * subr.el (add-to-list): Fix compiler-macro when `append' is
20650 not constant. Don't use `cl-member' for the base case.
20651
20652 * progmodes/subword.el: Fix boundary case (bug#13758).
20653 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
20654 own group.
20655 (subword-backward-regexp): Make it a constant.
20656 (subword-forward-internal): Don't treat a trailing capital as the
20657 beginning of a word.
20658
20659 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
20660
20661 * emacs-lisp/package.el (package-menu-mode): Don't modify the
20662 global value of tabulated-list-revert-hook (bug#14930).
20663
20664 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
20665
20666 * desktop.el: Require 'cl-lib.
20667 (desktop-before-saving-frames-functions): New hook.
20668 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
20669 for frames being saved. Rename from desktop--save-minibuffer-frames.
20670 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
20671 Do not save frames with non-nil `desktop-dont-save' parameter.
20672 Filter out deleted frames.
20673 (desktop--find-frame): Use cl-find-if.
20674 (desktop--select-frame): Use cl-(first|second|third) to access values
20675 of desktop-mini.
20676 (desktop--make-frame): Use cl-delete-if.
20677 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
20678 (desktop-restore-frames): Use cl-(first|second|third) to access values
20679 of desktop-mini. Look for visible frame at the end, not while
20680 restoring frames.
20681
20682 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
20683 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
20684 Use string-match-p, looking-at-p (bug#14927).
20685
20686 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
20687
20688 * desktop.el (desktop-saved-frame-states):
20689 Rename from desktop--saved-states; all users changed.
20690 (desktop-save-frames): Rename from desktop--save-frames.
20691 Do not save state to desktop file.
20692 (desktop-save): Save desktop-saved-frame-states to desktop file
20693 and reset to nil.
20694 (desktop-restoring-frames-p): New function.
20695 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
20696 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
20697 buffer-lists when restoring frames. Suggested by Martin Rudalics.
20698
20699 * desktop.el: Correctly restore iconified frames.
20700 (desktop--filter-iconified-position): New function.
20701 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
20702
20703 2013-07-20 Glenn Morris <rgm@gnu.org>
20704
20705 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
20706 Let `message' do the formatting.
20707 (def-gdb-preempt-display-buffer): Add explicit format.
20708
20709 * image-dired.el (image-dired-track-original-file):
20710 Use with-current-buffer.
20711 (image-dired-track-thumbnail): Use with-current-buffer.
20712 Avoid changing point of wrong window.
20713
20714 * image-dired.el (image-dired-track-original-file):
20715 Avoid changing point of wrong window. (Bug#14909)
20716
20717 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
20718
20719 * progmodes/gdb-mi.el (gdb-done-or-error):
20720 Guard against "%" in gdb output. (Bug#14127)
20721
20722 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
20723
20724 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
20725 (Bug#14826)
20726
20727 * international/mule.el (coding-system-iso-2022-flags): Fix last
20728 change.
20729
20730 2013-07-20 Kenichi Handa <handa@gnu.org>
20731
20732 * international/mule.el (coding-system-iso-2022-flags):
20733 Add `8-bit-level-4'. (Bug#8522)
20734
20735 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
20736
20737 * net/shr.el (shr-mouse-browse-url): New command and keystroke
20738 (bug#14815).
20739
20740 * net/eww.el (eww-process-text-input): Allow inputting when the
20741 point is at the start of the line, as the properties aren't
20742 front-sticky.
20743
20744 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
20745 degenerate widths.
20746
20747 2013-07-19 Richard Stallman <rms@gnu.org>
20748
20749 * epa.el (epa-popup-info-window): Doc fix.
20750
20751 * subr.el (split-string): New arg TRIM.
20752
20753 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
20754
20755 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
20756 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
20757
20758 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
20759
20760 * filenotify.el (file-notify--library): Rename from
20761 `file-notify-support'. Do not autoload. Adapt all uses.
20762 (file-notify-supported-p): New defun.
20763
20764 * autorevert.el (auto-revert-use-notify):
20765 Use `file-notify-supported-p' instead of `file-notify-support'.
20766 Adapt docstring.
20767 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
20768
20769 * net/tramp.el (tramp-file-name-for-operation):
20770 Add `file-notify-supported-p'.
20771
20772 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
20773 New defun.
20774 (tramp-sh-file-name-handler-alist): Add it as handler for
20775 `file-notify-supported-p '.
20776
20777 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20778 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20779 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
20780 Add `ignore' as handler for `file-notify-*' functions.
20781
20782 2013-07-17 Eli Zaretskii <eliz@gnu.org>
20783
20784 * simple.el (line-move-partial, line-move): Don't start vscroll or
20785 scroll-up if the current line is not taller than the window.
20786 (Bug#14881)
20787
20788 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
20789
20790 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
20791 highlight question marks in the method names as strings.
20792 (ruby-block-beg-keywords): Inline.
20793 (ruby-font-lock-keyword-beg-re): Extract from
20794 `ruby-font-lock-keywords'.
20795
20796 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
20797
20798 * frame.el (blink-cursor-blinks): New defcustom.
20799 (blink-cursor-blinks-done): New defvar.
20800 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
20801 (blink-cursor-timer-function): Check if number of blinks has been
20802 done on X and NS.
20803 (blink-cursor-suspend, blink-cursor-check): New defuns.
20804
20805 2013-07-15 Glenn Morris <rgm@gnu.org>
20806
20807 * edmacro.el (edmacro-format-keys): Fix previous change.
20808
20809 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
20810
20811 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
20812 The hack didn't work outside English locales anyway.
20813
20814 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
20815
20816 * simple.el (define-alternatives): Rename from alternatives-define,
20817 per RMS' suggestion.
20818
20819 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
20820
20821 * desktop.el (desktop-restore-frames): Change default to t.
20822 (desktop-restore-in-current-display): Now offer more options.
20823 (desktop-restoring-reuses-frames): New customization option.
20824 (desktop--saved-states): Doc fix.
20825 (desktop-filter-parameters-alist): New variable, renamed and expanded
20826 from desktop--excluded-frame-parameters.
20827 (desktop--target-display): New variable.
20828 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
20829 (desktop--filter-tty*, desktop--filter-*-color)
20830 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
20831 (desktop--filter-save-desktop-parm)
20832 (desktop-restore-in-original-display-p): New functions.
20833 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
20834 (desktop--save-minibuffer-frames): New function, inspired by a similar
20835 function from Martin Rudalics.
20836 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
20837 (desktop--restore-in-this-display-p): Remove.
20838 (desktop--find-frame): Rename from desktop--find-frame-in-display
20839 and add predicate argument.
20840 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
20841 (desktop--reuse-list): New variable.
20842 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
20843 New functions.
20844 (desktop--restore-frames): Add support for "minibuffer-special" frames.
20845
20846 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
20847
20848 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
20849
20850 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
20851
20852 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
20853 Highlight conversion methods on Kernel.
20854
20855 2013-07-13 Alan Mackenzie <acm@muc.de>
20856
20857 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
20858 and comment it out. This out-commenting enables certain C++
20859 declarations to be parsed correctly.
20860
20861 2013-07-13 Eli Zaretskii <eliz@gnu.org>
20862
20863 * international/mule.el (define-coding-system): Doc fix.
20864
20865 * simple.el (default-font-height): Don't call font-info if the
20866 frame's default font didn't change since the frame was created.
20867 (Bug#14838)
20868
20869 2013-07-13 Leo Liu <sdl.web@gmail.com>
20870
20871 * ido.el (ido-read-file-name): Guard against non-symbol value.
20872
20873 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
20874
20875 * progmodes/python.el (python-imenu--build-tree): Fix corner case
20876 in nested defuns.
20877
20878 2013-07-13 Leo Liu <sdl.web@gmail.com>
20879
20880 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
20881 ido-set-matches call. (Bug#6852)
20882
20883 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
20884
20885 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
20886 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
20887 Ruby 2.0.
20888 (ruby-font-lock-keywords): Distinguish calls to functions with
20889 module-like names from module references. Highlight character
20890 literals.
20891
20892 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
20893
20894 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
20895 (gdb-send): Handle continued commands. (Bug#14847)
20896
20897 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
20898
20899 * desktop.el (desktop--v2s): Remove unused local variable.
20900 (desktop-save-buffer): Make defvar-local; adjust docstring.
20901 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
20902 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
20903
20904 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
20905
20906 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
20907
20908 2013-07-12 Eli Zaretskii <eliz@gnu.org>
20909
20910 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
20911 (Bug#14842)
20912
20913 2013-07-12 Glenn Morris <rgm@gnu.org>
20914
20915 * doc-view.el: Require cl-lib at runtime too.
20916 (doc-view-remove-if): Remove.
20917 (doc-view-search-next-match, doc-view-search-previous-match):
20918 Use cl-remove-if.
20919
20920 * edmacro.el: Require cl-lib at runtime too.
20921 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
20922 (edmacro-mismatch, edmacro-subseq): Remove.
20923
20924 * shadowfile.el: Require cl-lib.
20925 (shadow-remove-if): Remove.
20926 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
20927 Use cl-remove-if.
20928
20929 * wid-edit.el: Require cl-lib.
20930 (widget-choose): Use cl-remove-if.
20931 (widget-remove-if): Remove.
20932
20933 * progmodes/ebrowse.el: Require cl-lib at runtime too.
20934 (ebrowse-delete-if-not): Remove.
20935 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
20936 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
20937 Use cl-delete-if-not.
20938
20939 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
20940
20941 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
20942 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
20943
20944 2013-07-12 Leo Liu <sdl.web@gmail.com>
20945
20946 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
20947
20948 2013-07-11 Glenn Morris <rgm@gnu.org>
20949
20950 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
20951 (edebug-gensym-index, edebug-gensym):
20952 Remove reimplementation of cl-gensym.
20953 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
20954
20955 * thumbs.el: Require cl-lib at run-time too.
20956 (thumbs-gensym-counter, thumbs-gensym):
20957 Remove reimplementation of cl-gensym.
20958 (thumbs-temp-file): Use cl-gensym.
20959
20960 * emacs-lisp/ert.el: Require cl-lib at runtime too.
20961 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
20962 (ert--intersection, ert--set-difference, ert--set-difference-eq)
20963 (ert--union, ert--gensym-counter, ert--gensym-counter)
20964 (ert--coerce-to-vector, ert--remove*, ert--string-position)
20965 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
20966 (ert-make-test-unbound, ert--expand-should-1)
20967 (ert--expand-should, ert--should-error-handle-error)
20968 (should-error, ert--explain-equal-rec)
20969 (ert--plist-difference-explanation, ert-select-tests)
20970 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
20971 Use cl-lib functions rather than reimplementations.
20972
20973 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
20974
20975 * net/tramp.el (tramp-methods): Extend docstring.
20976 (tramp-connection-timeout): New defcustom.
20977 (tramp-error-with-buffer): Reset timestamp only when appropriate.
20978 (with-tramp-progress-reporter): Simplify.
20979 (tramp-process-actions): Improve messages.
20980
20981 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
20982 * net/tramp-sh.el (tramp-maybe-open-connection):
20983 Use `tramp-connection-timeout'.
20984 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
20985 (Bug#14808)
20986
20987 2013-07-11 Leo Liu <sdl.web@gmail.com>
20988
20989 * ido.el (ido-read-file-name): Conform to the requirements of
20990 read-file-name. (Bug#11861)
20991 (ido-read-directory-name): Conform to the requirements of
20992 read-directory-name.
20993
20994 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
20995
20996 * subr.el (delay-warning): New function.
20997
20998 2013-07-10 Eli Zaretskii <eliz@gnu.org>
20999
21000 * simple.el (default-line-height): New function.
21001 (line-move-partial, line-move): Use it instead of computing the
21002 line height inline.
21003 (line-move-partial): Always compute ROWH. If the last line is
21004 partially-visible, but its text is completely visible, allow
21005 cursor to enter such a partially-visible line.
21006
21007 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
21008
21009 Improve error messages. (Bug#14808)
21010
21011 * net/tramp.el (tramp-current-connection): New defvar, moved from
21012 tramp-sh.el.
21013 (tramp-message-show-progress-reporter-message): Remove, not
21014 needed anymore.
21015 (tramp-error-with-buffer): Show message in minibuffer.
21016 Discard input before waiting. Reset connection timestamp.
21017 (with-tramp-progress-reporter): Improve messages.
21018 (tramp-process-actions): Use progress reporter. Delete process in
21019 case of error. Improve messages.
21020
21021 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
21022 Call `tramp-error-with-buffer' with vector and buffer.
21023 (tramp-current-connection): Remove.
21024 (tramp-maybe-open-connection): The car of
21025 `tramp-current-connection' are the first 3 slots of the vector.
21026
21027 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
21028
21029 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
21030 inside continued strings.
21031
21032 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
21033
21034 Timestamp fixes for undo (Bug#14824).
21035 * files.el (clear-visited-file-modtime): Move here from fileio.c.
21036
21037 2013-07-10 Leo Liu <sdl.web@gmail.com>
21038
21039 * files.el (require-final-newline): Allow safe local value.
21040 (Bug#14834)
21041
21042 2013-07-09 Leo Liu <sdl.web@gmail.com>
21043
21044 * ido.el (ido-read-directory-name): Handle fallback.
21045 (ido-read-file-name): Update DIR to ido-current-directory.
21046 (Bug#1516)
21047 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
21048
21049 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
21050
21051 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
21052 "autoload". Remove "warn lower camel case" section, previously
21053 commented out. Highlight negation char. Do not highlight the
21054 target in singleton method definitions.
21055
21056 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
21057
21058 * faces.el (tty-setup-hook): Declare the hook.
21059
21060 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
21061 and detect when a guard/pred depends on local vars (bug#14773).
21062 (pcase--u1): Adjust caller.
21063
21064 2013-07-08 Eli Zaretskii <eliz@gnu.org>
21065
21066 * simple.el (line-move-partial, line-move): Account for
21067 line-spacing.
21068 (line-move-partial): Avoid setting vscroll when the last
21069 partially-visible line in window is of default height.
21070
21071 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
21072
21073 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
21074 been used a while.
21075
21076 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
21077
21078 * subr.el (read-quoted-char): Remove unused local variable `char'.
21079
21080 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
21081
21082 * vc/ediff.el (ediff-version): Version update.
21083 (ediff-files-command, ediff3-files-command, ediff-merge-command)
21084 (ediff-merge-with-ancestor-command, ediff-directories-command)
21085 (ediff-directories3-command, ediff-merge-directories-command)
21086 (ediff-merge-directories-with-ancestor-command): New functions.
21087 All are command-line interfaces to ediff: to facilitate calling
21088 Emacs with the appropriate ediff functions invoked.
21089
21090 * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
21091 New function.
21092 (viper-save-kill-buffer): Check if buffer is modified.
21093
21094 * emulation/viper.el (viper-version): Version update.
21095 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
21096
21097 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
21098
21099 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
21100 * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
21101 (viper-intercept-ESC-key): Simplify.
21102 * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
21103 don't use kbd.
21104 * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
21105 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
21106 (viper-setup-ESC-to-escape): New functions.
21107 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
21108 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
21109
21110 2013-07-07 Eli Zaretskii <eliz@gnu.org>
21111
21112 * simple.el (default-font-height, window-screen-lines):
21113 New functions.
21114 (line-move, line-move-partial): Use them instead of
21115 frame-char-height and window-text-height. This makes scrolling
21116 text smoother when the buffer's default face uses a font that is
21117 different from the frame's default font.
21118
21119 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
21120
21121 * files.el (write-file): Do not display confirm dialog for NS,
21122 it does its own dialog, which can't be canceled (Bug#14578).
21123
21124 2013-07-06 Eli Zaretskii <eliz@gnu.org>
21125
21126 * simple.el (line-move-partial): Adjust the row returned by
21127 posn-at-point for the current window-vscroll. (Bug#14567)
21128
21129 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
21130
21131 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
21132 (tramp-sh-file-inotifywait-process-filter): Handle file names with
21133 spaces.
21134
21135 2013-07-06 Martin Rudalics <rudalics@gmx.at>
21136
21137 * window.el (window-state-put-stale-windows): New variable.
21138 (window--state-put-2): Save list of windows without matching buffer.
21139 (window-state-put): Remove "bufferless" windows if possible.
21140
21141 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
21142
21143 * simple.el (alternatives-define): Remove leftover :group keyword.
21144 Tweak docstring.
21145
21146 2013-07-06 Leo Liu <sdl.web@gmail.com>
21147
21148 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
21149 (ido-enable-virtual-buffers): New variable.
21150 (ido-buffer-internal, ido-toggle-virtual-buffers)
21151 (ido-make-buffer-list): Use it.
21152 (ido-exhibit): Support turning on and off virtual buffers
21153 automatically.
21154
21155 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
21156
21157 * simple.el (alternatives-define): New macro.
21158
21159 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
21160
21161 * subr.el (read-quoted-char): Use read-key.
21162 (sit-for): Let read-event decode tty input (bug#14782).
21163
21164 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
21165
21166 * calendar/todo-mode.el: Add handling of file deletion, both by
21167 mode command and externally. Fix various related bugs.
21168 Clarify Commentary and improve some documentation strings and code.
21169 (todo-delete-file): New command.
21170 (todo-check-file): New function.
21171 (todo-show): Handle external deletion of the file we're trying to
21172 show (bug#14688). Replace called-interactively-p by an optional
21173 prefix argument to avoid problematic interaction with catch form
21174 when byte compiled (bug#14702).
21175 (todo-quit): Handle external deletion of the archive's todo file.
21176 Make sure the buffer that was visiting the archive file is still
21177 live before trying to bury it.
21178 (todo-category-completions): Handle external deletion of any
21179 category completion files.
21180 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
21181 of todo files, in case of external deletion.
21182 (todo-add-file): Replace unnecessary setq by let-binding.
21183 (todo-find-archive): Check whether there are any archives.
21184 Replace unnecessary setq by let-binding.
21185 (todo-archive-done-item): Use find-file-noselect to get the
21186 archive buffer whether or not the archive already exists.
21187 Remove superfluous code. Use file size instead of buffer-file-name to
21188 check if the archive is new; if it is, update list of archives.
21189 (todo-default-todo-file): Allow nil to be a valid value for when
21190 there are no todo files.
21191 (todo-reevaluate-default-file-defcustom): Use corrected definition
21192 of todo-default-todo-file.
21193 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
21194 (todo-delete-category, todo-show-categories-table)
21195 (todo-category-number): Clarify comment.
21196 (todo-filter-items): Clarify documentation string.
21197 (todo-show-current-file, todo-display-as-todo-file)
21198 (todo-reset-and-enable-done-separator): Tweak documentation string.
21199 (todo-done-separator): Make separator length window-width, since
21200 bug#2749 is now fixed.
21201
21202 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
21203
21204 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
21205 Support both "gvfs-monitor-dir" and "inotifywait".
21206 (tramp-sh-file-inotifywait-process-filter): Rename from
21207 `tramp-sh-file-notify-process-filter'.
21208 (tramp-sh-file-gvfs-monitor-dir-process-filter)
21209 (tramp-get-remote-gvfs-monitor-dir): New defuns.
21210
21211 2013-07-05 Leo Liu <sdl.web@gmail.com>
21212
21213 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
21214
21215 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21216
21217 * frame.el (display-pixel-height, display-pixel-width)
21218 (display-mm-height, display-mm-width): Mention behavior on
21219 multi-monitor setups in docstrings.
21220 (w32-display-monitor-attributes-list): Declare function.
21221 (display-monitor-attributes-list): Use it.
21222
21223 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
21224
21225 * filenotify.el: New package.
21226
21227 * autorevert.el (top): Require filenotify.el.
21228 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
21229 instead.
21230 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
21231 (auto-revert-notify-handler): Use `file-notify-*' functions.
21232
21233 * subr.el (file-notify-handle-event): Move function to filenotify.el.
21234
21235 * net/tramp.el (tramp-file-name-for-operation):
21236 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
21237
21238 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
21239 for `file-notify-add-watch' and `file-notify-rm-watch'.
21240 (tramp-process-sentinel): Improve trace.
21241 (tramp-sh-handle-file-notify-add-watch)
21242 (tramp-sh-file-notify-process-filter)
21243 (tramp-sh-handle-file-notify-rm-watch)
21244 (tramp-get-remote-inotifywait): New defuns.
21245
21246 2013-07-03 Juri Linkov <juri@jurta.org>
21247
21248 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
21249 call of `occur-read-primary-args' to interactive spec.
21250
21251 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
21252 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
21253
21254 2013-07-03 Matthias Meulien <orontee@gmail.com>
21255
21256 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
21257 `Buffer-menu-multi-occur'. Add it to the menu.
21258 (Buffer-menu-mode): Document it in docstring.
21259 (Buffer-menu-multi-occur): New command. (Bug#14673)
21260
21261 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
21262
21263 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
21264 keywords and built-ins.
21265
21266 2013-07-03 Glenn Morris <rgm@gnu.org>
21267
21268 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
21269
21270 Make info-xref checks case-sensitive by default
21271 * info.el (Info-find-node, Info-find-in-tag-table)
21272 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
21273 Add option for exact case matching of nodes.
21274 * info-xref.el (info-xref): New custom group.
21275 (info-xref-case-fold): New option.
21276 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
21277
21278 2013-07-03 Leo Liu <sdl.web@gmail.com>
21279
21280 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
21281
21282 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
21283
21284 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
21285 middle of block statement initially, lower the depth. Remove
21286 FIXME comment, not longer valid. Remove middle of block statement
21287 detection, no need to do that anymore since we've been using
21288 `ruby-parse-region' here.
21289
21290 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
21291
21292 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
21293
21294 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
21295
21296 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
21297
21298 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
21299
21300 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
21301 (desktop-restore-in-current-display): New customization option.
21302 (desktop--excluded-frame-parameters): Add `font'.
21303 (desktop--save-frames): Rename from desktop--save-windows.
21304 (desktop--restore-in-this-display-p): New function.
21305 (desktop--make-full-frame): Remove unwanted width/height from
21306 full(width|height) frames.
21307 (desktop--restore-frames): Rename from desktop--restore-windows.
21308 Obey desktop-restore-current-display. Do not delete old frames or
21309 select a new frame unless we were able to restore at least one frame.
21310
21311 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
21312
21313 * files.el (find-file-noselect): Simplify conditional expression.
21314
21315 * textmodes/remember.el (remember-append-to-file):
21316 Don't mix `find-buffer-visiting' and `get-file-buffer'.
21317
21318 Add `remember-notes' function to store random notes across Emacs
21319 restarts.
21320 * textmodes/remember.el (remember-data-file): Add :set callback to
21321 affect notes buffer (if any).
21322 (remember-notes): New command.
21323 (remember-notes-buffer-name, bury-remember-notes-on-kill):
21324 New defcustoms for the `remember-notes' function.
21325 (remember-notes-save-and-bury-buffer): New command.
21326 (remember-notes-mode-map): New variable.
21327 (remember-mode): New minor mode.
21328 (remember-notes--kill-buffer-query): New function.
21329 * startup.el (initial-buffer-choice): Add notes to custom type.
21330
21331 2013-06-30 Eli Zaretskii <eliz@gnu.org>
21332
21333 * bindings.el (right-char, left-char): Don't call sit-for, this is
21334 no longer needed. Use arithmetic comparison only for numerical
21335 arguments.
21336
21337 * international/mule-cmds.el (select-safe-coding-system):
21338 Handle the case of FROM being a string correctly. (Bug#14755)
21339
21340 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
21341
21342 * net/shr.el (shr-make-table-1): Add a sanity check that allows
21343 progression on degenerate tables.
21344 (shr-rescale-image): ImageMagick animated images currently don't work.
21345
21346 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
21347
21348 Some fixes and improvements for desktop frame restoration.
21349 It is still experimental and disabled by default.
21350 * desktop.el (desktop--save-windows): Put the selected frame at
21351 the head of the list.
21352 (desktop--make-full-frame): New function.
21353 (desktop--restore-windows): Try to re-select the frame that was
21354 selected upon saving. Do not abort if some frames fail to restore,
21355 just show an error message and continue. Set up maximized frames
21356 so they have default non-maximized dimensions.
21357
21358 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
21359
21360 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
21361 Don't start heredoc inside a string or comment.
21362
21363 2013-06-29 Eli Zaretskii <eliz@gnu.org>
21364
21365 * bindings.el (visual-order-cursor-movement): New defcustom.
21366 (right-char, left-char): Provide visual-order cursor motion by
21367 calling move-point-visually. Update the doc strings.
21368
21369 2013-06-28 Kenichi Handa <handa@gnu.org>
21370
21371 * international/mule.el (define-coding-system): New coding system
21372 properties :inhibit-null-byte-detection,
21373 :inhibit-iso-escape-detection, and :prefer-utf-8.
21374 (set-buffer-file-coding-system): If :charset-list property of
21375 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
21376 appropriate for setting.
21377
21378 * international/mule-cmds.el (select-safe-coding-system):
21379 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
21380 multibyte characters, return utf-8 (or one of its siblings).
21381
21382 * international/mule-conf.el (prefer-utf-8): New coding system.
21383 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
21384 files.
21385
21386 2013-06-28 Ivan Kanis <ivan@kanis.fr>
21387
21388 * net/shr.el (shr-render-region): New function.
21389
21390 * net/eww.el: Autoload `eww-browse-url'.
21391
21392 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
21393
21394 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21395 Adapt to `package-desc-version' being a list.
21396 Use `package--ac-desc-version' to retrieve version from a package
21397 archive element.
21398
21399 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
21400
21401 New experimental feature to save&restore window and frame setup.
21402 * desktop.el (desktop-save-windows): New defcustom.
21403 (desktop--saved-states): New var.
21404 (desktop--excluded-frame-parameters): New defconst.
21405 (desktop--filter-frame-parms, desktop--find-frame-in-display)
21406 (desktop--restore-windows, desktop--save-windows): New functions.
21407 (desktop-save): Call `desktop--save-windows'.
21408 (desktop-read): Call `desktop--restore-windows'.
21409
21410 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21411
21412 * net/shr.el (add-face-text-property): Remove compat definition.
21413
21414 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
21415
21416 * info.el (Info-try-follow-nearest-node): Move search for footnote
21417 above search for node name to prevent missing a footnote (bug#14717).
21418
21419 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
21420
21421 * obsolete/otodo-mode.el: Add obsolescence info to file header.
21422
21423 2013-06-27 Leo Liu <sdl.web@gmail.com>
21424
21425 * net/eww.el (eww-read-bookmarks): Check file size.
21426
21427 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
21428
21429 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
21430 advice--pending if newdef is nil or an autoload (bug#13820).
21431 (advice-mapc): New function.
21432
21433 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
21434
21435 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
21436 probably.
21437 (eww-mode-map): Add a menu bar.
21438 (eww-add-bookmark): New command.
21439 (eww-bookmark-mode): New mode and commands.
21440 (eww-add-bookmark): Remove newlines from the title.
21441 (eww-bookmark-browse): Don't bug out if it's the only window.
21442
21443 2013-06-26 Glenn Morris <rgm@gnu.org>
21444
21445 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
21446 (hfy-size): Handle ttys. (Bug#14668)
21447
21448 * info-xref.el: Update for Texinfo 5 change in *note format.
21449 (info-xref-node-re, info-xref-note-re): New constants.
21450 (info-xref-check-buffer): Use info-xref-note-re.
21451
21452 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
21453
21454 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
21455
21456 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
21457 nil terminate the loop (bug#14718).
21458
21459 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
21460
21461 * net/eww.el: Rework history traversal. When going forward/back,
21462 put these actions into the history, too, so that they can be
21463 replayed.
21464 (eww-render): Move the history reset to the correct buffer.
21465
21466 2013-06-25 Juri Linkov <juri@jurta.org>
21467
21468 * files-x.el (modify-dir-local-variable): Change the header comment
21469 in the file with directory local variables. (Bug#14692)
21470
21471 * files-x.el (read-file-local-variable-value): Add `default'.
21472 (Bug#14710)
21473
21474 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
21475
21476 * net/eww.el (eww-make-unique-file-name): Create a unique file
21477 name before saving to entering `y' accidentally asynchronously.
21478
21479 2013-06-25 Ivan Kanis <ivan@kanis.fr>
21480
21481 * net/eww.el (eww-download): New command and keystroke.
21482
21483 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
21484
21485 * net/eww.el (eww-copy-page-url): Change name of command.
21486
21487 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
21488 be more consistent with Info and dired.
21489
21490 * net/eww.el (eww-mode-map): Ditto.
21491
21492 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21493
21494 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
21495 packages from archives.
21496 (package-archive-contents): Change format; include obsolete packages.
21497 (package-desc): Use `dir' to mark builtin packages.
21498 (package--from-builtin): Set the `dir' field to `builtin'.
21499 (generated-autoload-file, version-control): Declare.
21500 (package-compute-transaction): Change first arg and return value to be
21501 lists of package-descs. Adjust to new package-archive-contents format.
21502 (package--add-to-archive-contents): Adjust to new
21503 package-archive-contents format.
21504 (package-download-transaction): Arg is now a list of package-descs.
21505 (package-install): If `pkg' is a package name, pass it as
21506 a requirement, so it is subject to the usual (e.g. disabled) checks.
21507 (describe-package): Accept package-desc as well.
21508 (describe-package-1): Describe a specific package-desc. Add links to
21509 other package-descs for the same package name.
21510 (package-menu-describe-package): Pass the actual package-desc.
21511 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
21512 works correctly.
21513 (package-desc-status): New function.
21514 (package-menu--refresh): New function, extracted
21515 from package-menu--generate.
21516 (package-menu--generate): Use it.
21517 (package-delete): Update package-alist.
21518 (package-menu-execute): Don't call package-initialize.
21519
21520 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
21521 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
21522 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
21523 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
21524 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
21525 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
21526
21527 2013-06-25 Martin Rudalics <rudalics@gmx.at>
21528
21529 * window.el (window--state-get-1): Workaround for bug#14527.
21530 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
21531
21532 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
21533
21534 * net/eww.el (eww-back-url): Implement the history by stashing all
21535 the data into a list.
21536 (eww-forward-url): Allow going forward in the history, too.
21537
21538 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
21539
21540 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
21541 for values and use read--expression for expressions (bug#14710).
21542 (read-file-local-variable): Avoid setq.
21543 (read-file-local-variable-mode): Use minor-mode-list.
21544
21545 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
21546
21547 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
21548 for DOI URLs.
21549
21550 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
21551
21552 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
21553 Update imenu-support when dialect changes.
21554
21555 2013-06-25 Leo Liu <sdl.web@gmail.com>
21556
21557 * ido.el (ido-read-internal): Allow forward slash on windows.
21558
21559 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
21560
21561 * net/eww.el (eww): Start of strings is \\`, not ^.
21562
21563 2013-06-24 Ivan Kanis <ivan@kanis.fr>
21564
21565 * net/shr.el (shr-browse-url): Fix interactive spec.
21566
21567 * net/eww.el (eww): Add a trailing slash to domain names.
21568
21569 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
21570
21571 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
21572
21573 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
21574
21575 * net/shr.el (shr-browse-url): Use an external browser if given a
21576 prefix.
21577
21578 * net/eww.el (eww-external-browser): Move to shr.
21579
21580 2013-06-24 Ivan Kanis <ivan@kanis.fr>
21581
21582 * net/eww.el (eww): Work more correctly for file: URLs.
21583 (eww-detect-charset): Allow quoted charsets.
21584 (eww-yank-page-url): New command and keystroke.
21585
21586 2013-06-24 Daiki Ueno <ueno@gnu.org>
21587
21588 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
21589 file name of gpg executable.
21590 (epg-context-program): New function.
21591 (epg-context-home-directory): New function.
21592 (epg-context-set-program): New function.
21593 (epg-context-set-home-directory): New function.
21594 (epg--start): Use `epg-context-program' instead of
21595 'epg-gpg-program'.
21596 (epg--list-keys-1): Likewise.
21597
21598 2013-06-24 Leo Liu <sdl.web@gmail.com>
21599
21600 * ido.el (ido-read-internal): Fix bug#14620.
21601
21602 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
21603
21604 * faces.el (face-documentation): Simplify.
21605 (read-face-attribute, tty-find-type, x-resolve-font-name):
21606 Use `string-match-p'.
21607 (list-faces-display): Use `string-match-p'. Simplify.
21608 (face-spec-recalc): Check face to avoid face alias loops.
21609 (read-color): Use `string-match-p' and non-capturing parenthesis.
21610
21611 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
21612
21613 * net/shr.el (shr-rescale-image): Use the new
21614 :max-width/:max-height functionality.
21615
21616 2013-06-23 Ivan Kanis <ivan@kanis.fr>
21617
21618 * net/eww.el (eww-search-prefix): New variable.
21619 (eww): Use it.
21620 (eww-external-browser): New variable.
21621 (eww-mode-map): New keystroke.
21622 (eww-browse-with-external-browser): New command.
21623
21624 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
21625
21626 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
21627
21628 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
21629 Don't skip aligning the next header field when padding is 0;
21630 otherwise, field width is not respected unless the title is as
21631 wide as the field.
21632
21633 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
21634
21635 * emacs-lisp/package.el (package-el-version): Remove.
21636 (package-process-define-package): Fix inf-loop.
21637 (package-install): Allow symbols as arguments again.
21638
21639 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
21640
21641 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
21642 add some more keyword-like methods.
21643 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
21644
21645 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
21646
21647 * bs.el (bs-buffer-show-mark): Make defvar-local.
21648 (bs-mode): Use setq-local.
21649
21650 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
21651 (emacs-lock--try-unlocking): Make defvar-local.
21652
21653 2013-06-22 Glenn Morris <rgm@gnu.org>
21654
21655 * play/cookie1.el (cookie-apropos): Minor simplification.
21656
21657 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
21658
21659 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
21660
21661 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
21662 `regexp-opt', it breaks the build during dumping.
21663
21664 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
21665
21666 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
21667 Highlight keyword-like methods on Kernel and Module with
21668 font-lock-builtin-face.
21669 (auto-mode-alist): Consolidate different entries into one regexp
21670 and add more *file-s.
21671
21672 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
21673
21674 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
21675
21676 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
21677 (diary-entry): Use it in the action of this button type instead of
21678 diary-goto-entry.
21679
21680 * calendar/todo-mode.el: New version.
21681 (todo-add-category): Append new category to end of file and give
21682 it the highest number, instead of putting it at the beginning and
21683 giving it 0. Incorporate noninteractive functionality.
21684 (todo-forward-category): Adapt to 1-based category numbering.
21685 Allow skipping over archived categories.
21686 (todo-backward-category): Derive from todo-forward-category.
21687 (todo-backward-item, todo-forward-item): Make noninteractive and
21688 delegate interactive part to new commands. Make sensitive to done items.
21689 (todo-categories): Make value an alist of category names and
21690 vectors of item counts.
21691 (todo-category-beg): Make a defconst.
21692 (todo-category-number): Use 1 instead of 0 as initial value.
21693 (todo-category-select): Make sensitive to overlays, optional item
21694 highlighting and done items.
21695 (todo-delete-item): Make sensitive to overlays and marked and done items.
21696 (todo-edit-item): Make sensitive to overlays and editing of
21697 date/time header optional. Add format checks.
21698 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
21699 no-op if point is not on an item. Advertise using todo-edit-quit.
21700 (todo-edit-mode): Make sensitive to new format, font-locking, and
21701 multiple todo files.
21702 (todo-insert-item, todo-insert-item-here): Derive from
21703 todo-basic-insert-item and extend functionality.
21704 (todo-item-end, todo-item-start): Make sensitive to done items.
21705 (todo-item-string): Don't return text properties. Restore point.
21706 (todo-jump-to-category): Make sensitive to multiple todo files and
21707 todo archives. Use extended category completion.
21708 (todo-lower-item, todo-raise-item): Rename to *-priority and
21709 derive from todo-set-item-priority.
21710 (todo-mode): Derive from special-mode. Make sensitive to new
21711 format, font-locking and multiple todo files. Make read-only.
21712 (todo-mode-map): Don't suppress digit keys, so they can supply
21713 prefix arguments. Add many new key bindings.
21714 (todo-prefix): Insert as an overlay instead of file text.
21715 Change semantics from diary date expression to purely visual mark.
21716 (todo-print): Rename to todo-print-buffer. Make buffer display
21717 features printable. Remove option to restrict number of items
21718 printed. Add option to print to file.
21719 (todo-print-function): Rename to todo-print-buffer-function.
21720 (todo-quit): Extend to handle exiting new todo modes.
21721 (todo-remove-item): Make sensitive to overlays.
21722 (todo-save): Extend to buffers of filtered items.
21723 (todo-show): Make sensitive to done items, multiple todo files and
21724 new todo modes. Offer to convert legacy todo file before creating
21725 first new todo file.
21726 (todo-show-priorities): Rename to todo-top-priorities.
21727 Change semantics of value 0.
21728 (todo-top-priorities): Rename to todo-filter-top-priorities,
21729 derive from todo-filter-items and extend functionality.
21730 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
21731 and extend functionality to other types of filtered items.
21732 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
21733 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
21734 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
21735 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
21736 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
21737 (todo-edit-mode-hook, todo-entry-prefix-function)
21738 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
21739 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
21740 (todo-initials, todo-insert-threshold, todo-item-string-start)
21741 (todo-line-string, todo-menu, todo-mode-hook)
21742 (todo-more-important-p, todo-previous-answer, todo-previous-line)
21743 (todo-print-priorities, todo-remove-separator)
21744 (todo-save-top-priorities-too, todo-string-count-lines)
21745 (todo-string-multiline-p, todo-time-string-format)
21746 (todo-tmp-buffer-name): Remove.
21747 (todo-add-file, todo-archive-done-item, todo-choose-archive)
21748 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
21749 (todo-edit-category-diary-inclusion)
21750 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
21751 (todo-edit-file, todo-edit-item-date-day)
21752 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
21753 (todo-edit-item-date-month, todo-edit-item-date-to-today)
21754 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
21755 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
21756 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
21757 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
21758 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
21759 (todo-filter-top-priorities-multifile, todo-find-archive)
21760 (todo-find-filtered-items-file, todo-go-to-source-item)
21761 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
21762 (todo-jump-to-archive-category, todo-lower-category)
21763 (todo-mark-category, todo-marked-item-p, todo-merge-category)
21764 (todo-move-category, todo-move-item, todo-next-button)
21765 (todo-next-item, todo-padded-string, todo-powerset)
21766 (todo-previous-button, todo-previous-item)
21767 (todo-print-buffer-to-file, todo-raise-category)
21768 (todo-rename-category, todo-repair-categories-sexp, todo-search)
21769 (todo-set-category-number, todo-set-item-priority)
21770 (todo-set-top-priorities-in-category)
21771 (todo-set-top-priorities-in-file, todo-show-categories-table)
21772 (todo-sort-categories-alphabetically-or-numerically)
21773 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
21774 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
21775 (todo-toggle-item-header, todo-toggle-item-highlighting)
21776 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
21777 (todo-toggle-view-done-items, todo-toggle-view-done-only)
21778 (todo-unarchive-items, todo-unmark-category): New commands.
21779 (todo-absolute-file-name, todo-add-to-buffer-list)
21780 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
21781 (todo-basic-insert-item, todo-category-completions)
21782 (todo-category-number, todo-category-string-matcher-1)
21783 (todo-category-string-matcher-2, todo-check-filtered-items-file)
21784 (todo-check-format, todo-clear-matches)
21785 (todo-comment-string-matcher, todo-convert-legacy-date-time)
21786 (todo-current-category, todo-date-string-matcher)
21787 (todo-define-insertion-command, todo-diary-expired-matcher)
21788 (todo-diary-goto-entry, todo-diary-item-p)
21789 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
21790 (todo-display-categories, todo-display-sorted, todo-done-item-p)
21791 (todo-done-item-section-p, todo-done-separator)
21792 (todo-done-string-matcher, todo-files, todo-filter-items)
21793 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
21794 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
21795 (todo-insert-category-line, todo-insert-item-from-calendar)
21796 (todo-insert-sort-button, todo-insert-with-overlays)
21797 (todo-insertion-command-name, todo-insertion-key-bindings)
21798 (todo-label-to-key, todo-longest-category-name-length)
21799 (todo-make-categories-list, todo-mode-external-set)
21800 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
21801 (todo-modes-set-3, todo-multiple-filter-files)
21802 (todo-nondiary-marker-matcher, todo-prefix-overlays)
21803 (todo-read-category, todo-read-date, todo-read-dayname)
21804 (todo-read-file-name, todo-read-time)
21805 (todo-reevaluate-category-completions-files-defcustom)
21806 (todo-reevaluate-default-file-defcustom)
21807 (todo-reevaluate-filelist-defcustoms)
21808 (todo-reevaluate-filter-files-defcustom)
21809 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
21810 (todo-reset-done-separator, todo-reset-done-separator-string)
21811 (todo-reset-done-string, todo-reset-global-current-todo-file)
21812 (todo-reset-highlight-item, todo-reset-nondiary-marker)
21813 (todo-reset-prefix, todo-set-categories)
21814 (todo-set-date-from-calendar, todo-set-show-current-file)
21815 (todo-set-top-priorities, todo-short-file-name)
21816 (todo-show-current-file, todo-sort, todo-time-string-matcher)
21817 (todo-total-item-counts, todo-update-buffer-list)
21818 (todo-update-categories-display, todo-update-categories-sexp)
21819 (todo-update-count, todo-validate-name, todo-y-or-n-p):
21820 New functions.
21821 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
21822 New major modes.
21823 (todo-categories, todo-display, todo-edit, todo-faces)
21824 (todo-filtered): New defgroups.
21825 (todo-archived-only, todo-button, todo-category-string, todo-date)
21826 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
21827 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
21828 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
21829 (todo-add-item-if-new-category, todo-always-add-time-string)
21830 (todo-categories-align, todo-categories-archived-label)
21831 (todo-categories-category-label, todo-categories-diary-label)
21832 (todo-categories-done-label, todo-categories-number-separator)
21833 (todo-categories-todo-label, todo-categories-totals-label)
21834 (todo-category-completions-files, todo-completion-ignore-case)
21835 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
21836 (todo-done-separator-string, todo-done-string)
21837 (todo-files-function, todo-filter-done-items, todo-filter-files)
21838 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
21839 (todo-initial-category, todo-initial-file, todo-item-mark)
21840 (todo-legacy-date-time-regexp, todo-mode-line-function)
21841 (todo-nondiary-marker, todo-number-prefix)
21842 (todo-print-buffer-function, todo-show-current-file)
21843 (todo-show-done-only, todo-show-first, todo-show-with-done)
21844 (todo-skip-archived-categories, todo-top-priorities-overrides)
21845 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
21846 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
21847 New defcustoms.
21848 (todo-category-done, todo-date-pattern, todo-date-string-start)
21849 (todo-diary-items-buffer, todo-done-string-start)
21850 (todo-filtered-items-buffer, todo-item-start)
21851 (todo-month-abbrev-array, todo-month-name-array)
21852 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
21853 (todo-top-priorities-buffer): New defconsts.
21854 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
21855 (todo-categories-with-marks, todo-category-string-face)
21856 (todo-comment-face, todo-comment-string, todo-current-todo-file)
21857 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
21858 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
21859 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
21860 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
21861 (todo-font-lock-keywords, todo-global-current-todo-file)
21862 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
21863 (todo-insertion-commands-args)
21864 (todo-insertion-commands-args-genlist)
21865 (todo-insertion-commands-names, todo-insertion-map)
21866 (todo-key-bindings-t, todo-key-bindings-t+a)
21867 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
21868 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
21869 (todo-nondiary-face, todo-print-buffer, todo-time-face)
21870 (todo-visited): New variables.
21871
21872 2013-06-21 Glenn Morris <rgm@gnu.org>
21873
21874 * play/cookie1.el (cookie-apropos): Add optional display argument.
21875 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
21876 (psychoanalyze-pinhead): Use cookie-doctor.
21877
21878 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
21879
21880 * emacs-lisp/package.el (tar-get-file-descriptor)
21881 (tar--extract): Declare.
21882
21883 2013-06-21 Eduard Wiebe <usenet@pusto.de>
21884
21885 Extend flymake's warning predicate to be a function (bug#14217).
21886 * progmodes/flymake.el (flymake-warning-predicate): New.
21887 (flymake-parse-line): Use it.
21888 (flymake-warning-re): Make obsolete alias to
21889 `flymake-warning-predicate'.
21890
21891 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21892
21893 * emacs-lisp/package.el (package-alist): Include obsolete packages.
21894 (package-obsolete-list): Remove.
21895 (package-activate): Remove min-version argument. Add `force' argument.
21896 Adjust to new package-alist format.
21897 (package-mark-obsolete): Remove.
21898 (package-unpack): Force reload of the package's autoloads.
21899 (package-installed-p): Check builtins if the installed package is not
21900 recent enough.
21901 (package-initialize): Don't reset package-obsolete-list.
21902 Don't specify which package version to activate.
21903 (package-process-define-package, describe-package-1)
21904 (package-menu--generate): Adjust to new package-alist format.
21905
21906 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
21907
21908 * allout-widgets.el (allout-widgets-mode-off)
21909 (allout-widgets-mode-on, allout-widgets-pre-command-business)
21910 (allout-widgets-post-command-business)
21911 (allout-widgets-after-copy-or-kill-function)
21912 (allout-widgets-after-undo-function, allout-test-range-overlaps)
21913 (allout-decorate-item-and-context)
21914 (allout-graphics-modification-handler): Fix typos in docstrings.
21915 (allout-get-or-create-parent-widget): Use `looking-at-p'.
21916
21917 * cmuscheme.el (scheme-start-file): Doc fix.
21918 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
21919 (scheme-input-filter): Use `string-match-p'.
21920
21921 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
21922
21923 * dired-x.el: Use Dired consistently in docstrings.
21924
21925 * dired.el: Use Dired consistently in docstrings.
21926 (dired-readin, dired-mode): Use `setq-local'.
21927 (dired-switches-alist): Make defvar-local.
21928 (dired-buffers-for-dir): Use `zerop'.
21929 (dired-safe-switches-p, dired-switches-escape-p)
21930 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
21931 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
21932 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
21933 (dired-goto-next-nontrivial-file): Use `string-match-p'.
21934 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
21935 (dired-toggle-marks, dired-mark-files-containing-regexp)
21936 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
21937 (dired-flag-auto-save-files, dired-flag-backup-files):
21938 Use `looking-at-p'.
21939 (dired-mark-files-regexp, dired-build-subdir-alist):
21940 Use `string-match-p', `looking-at-p'.
21941
21942 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
21943 (direct-print-region-helper): Use `string-match-p'.
21944
21945 2013-06-21 Leo Liu <sdl.web@gmail.com>
21946
21947 * comint.el (comint-redirect-results-list-from-process):
21948 Fix infinite loop.
21949
21950 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
21951
21952 * net/eww.el (eww-update-header-line-format): Quote % characters.
21953
21954 2013-06-21 Glenn Morris <rgm@gnu.org>
21955
21956 * play/cookie1.el (cookie): New custom group.
21957 (cookie-file): New option.
21958 (cookie-check-file): New function.
21959 (cookie): Make it interactive. Make start and end messages optional.
21960 Interactively, display the result. Default to cookie-file.
21961 (cookie-insert): Default to cookie-file.
21962 (cookie-snarf): Make start and end messages optional.
21963 Default to cookie-file. Use with-temp-buffer.
21964 (cookie-read): Rename from read-cookie.
21965 Make start and end messages optional. Default to cookie-file.
21966 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
21967 Do not autoload it.
21968 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
21969 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
21970
21971 2013-06-21 Leo Liu <sdl.web@gmail.com>
21972
21973 * progmodes/octave.el (octave-mode): Backward compatibility fix.
21974
21975 2013-06-21 Glenn Morris <rgm@gnu.org>
21976
21977 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
21978
21979 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
21980 Daniel Hackney <dan@haxney.org>
21981
21982 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
21983 Consolidate the single-file vs tarball code.
21984 (package-desc-suffix): New function.
21985 (package-desc-full-name): Don't bother inlining it.
21986 (package-load-descriptor): Return the new package-desc.
21987 (package-mark-obsolete): Remove unused arg `package'.
21988 (package-unpack): Make it work for single files as well.
21989 Make it update package-alist.
21990 (package--make-autoloads-and-stuff): Rename from
21991 package--make-autoloads-and-compile. Don't compile any more.
21992 (package--compile): New function.
21993 (package-generate-description-file): New function, extracted from
21994 package-unpack-single.
21995 (package-unpack-single): Remove.
21996 (package--with-work-buffer): Add indentation and debugging info.
21997 (package-download-single): Remove.
21998 (package-install-from-archive): Rename from package-download-tar, make
21999 it take a pkg-desc, and make it work for single files as well.
22000 (package-download-transaction): Simplify.
22001 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
22002 external tar program.
22003 (package-install-from-buffer): Remove `pkg-desc' argument.
22004 Use package-tar-file-info for tar-mode buffers.
22005 (package-install-file): Simplify accordingly.
22006 (package-archive-base): Change to take a pkg-desc.
22007 * tar-mode.el (tar--check-descriptor): New function, extracted from
22008 tar-get-descriptor.
22009 (tar-get-descriptor): Use it.
22010 (tar-get-file-descriptor): New function.
22011 (tar--extract): New function, extracted from tar-extract.
22012 (tar--extract): Use it.
22013 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
22014 case the summary uses non-ascii. Adjust to new calling convention of
22015 package-tar-file-info.
22016
22017 2013-06-21 Leo Liu <sdl.web@gmail.com>
22018
22019 * comint.el (comint-redirect-results-list-from-process):
22020 Fix random delay. (Bug#14681)
22021
22022 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
22023
22024 * profiler.el (profiler-format-number): Use log, not log10.
22025
22026 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
22027
22028 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
22029
22030 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
22031
22032 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
22033 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
22034 yet available.
22035 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
22036 (AUTOGENEL): ... here.
22037 * emacs-lisp/cl-macs.el (cl--sublis): New function.
22038 (cl--defsubst-expand): Use it.
22039
22040 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
22041
22042 * subr.el (log10): Move here from C code, and declare as obsolete.
22043 All uses of (log10 X) replaced with (log X 10).
22044
22045 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
22046
22047 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
22048 Declare with `defvar-local'.
22049 (tabulated-list-use-header-line, tabulated-list-entries)
22050 (tabulated-list-padding, tabulated-list-printer)
22051 (tabulated-list-sort-key): Declare with `defvar-local'.
22052 (tabulated-list-init-header, tabulated-list-print-fake-header):
22053 Use `setq-local'.
22054
22055 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
22056
22057 * arc-mode.el (archive-mode): Add `archive-write-file' to
22058 `write-contents-functions' also for remote files. (Bug#14652)
22059
22060 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
22061
22062 * cus-edit.el (custom-commands): Fix typos.
22063 (custom-display): Fix tooltip text.
22064 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
22065 Fix typos in docstrings.
22066 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
22067 (custom-unlispify-menu-entry, custom-magic-value-create)
22068 (custom-add-see-also, custom-group-value-create): Use ?\s.
22069 (custom-guess-type, customize-apropos, editable-field)
22070 (custom-face-value-create): Use `string-match-p'.
22071 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
22072
22073 * custom.el (custom-load-symbol): Use `string-match-p'.
22074
22075 * ansi-color.el: Convert to lexical binding.
22076 (ansi-colors): Fix URL.
22077 (ansi-color-context, ansi-color-context-region): Use defvar-local.
22078 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
22079 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
22080
22081 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
22082
22083 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
22084
22085 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
22086
22087 2013-06-19 Tom Tromey <tromey@redhat.com>
22088
22089 * net/eww.el (eww-top-url): Remove.
22090 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
22091 (eww-render): Set new variables. Don't set eww-top-url.
22092 (eww-handle-link): Handle "prev", "home", and "contents".
22093 Downcase the rel text.
22094 (eww-top-url): Choose best top URL.
22095
22096 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
22097
22098 * net/eww.el: Rewrite to implement form elements "by hand" instead of
22099 relying in widget.el. Using widget.el leads to too many
22100 user interface inconsistencies.
22101 (eww-self-insert): Implement entering commands in text fields.
22102 (eww-process-text-input): New function to make text input field editing
22103 work.
22104 (eww-submit): Rewrite to use the new-style form methods.
22105 (eww-select-display): Display the correct selected item.
22106 (eww-change-select): Implement changing the select value.
22107 (eww-toggle-checkbox): Implement radio/checkboxes.
22108 (eww-update-field): Fix compilation error.
22109 (eww-tag-textarea): Implement <textarea>.
22110
22111 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
22112 we don't shadow mode-specific bindings.
22113
22114 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
22115 nothing to push.
22116
22117 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
22118
22119 2013-06-19 Glenn Morris <rgm@gnu.org>
22120
22121 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
22122
22123 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
22124
22125 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
22126 not needed.
22127
22128 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
22129
22130 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
22131
22132 * net/browse-url.el (browse-url-browser-function):
22133 `eww-browse-url' has the right calling signature, `eww' does not.
22134
22135 2013-06-19 Glenn Morris <rgm@gnu.org>
22136
22137 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
22138 Only eval autoloaded macros.
22139 (byte-compile-autoload): Only give the macro warning for macros.
22140
22141 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
22142 (ps-underlined-faces): Declare.
22143
22144 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
22145 (speedbar-add-supported-extension): Declare.
22146
22147 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
22148 Don't include a date stamp in the header of the generated file;
22149 it leads to needless differences between output files.
22150
22151 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
22152
22153 * net/secrets.el (secrets-struct-secret-content-type):
22154 Replace check of introspection data by a test call of "CreateItem".
22155 Some servers do not offer introspection.
22156
22157 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
22158
22159 * electric.el (electric-pair-mode): Improve interaction with
22160 electric-layout-mode.
22161 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
22162 (electric-pair-syntax): Use text-mode-syntax-table in comments
22163 and strings.
22164 (electric-pair--insert): New function.
22165 (electric-pair-post-self-insert-function): Use it and
22166 electric--after-char-pos.
22167
22168 2013-06-19 Leo Liu <sdl.web@gmail.com>
22169
22170 * progmodes/octave.el (octave-help): Fix regexp.
22171
22172 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
22173
22174 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
22175 (shr-table-horizontal-line): Allow nil as a value, and change the
22176 default.
22177 (shr-insert-table-ruler): Respect the nil value.
22178
22179 2013-06-18 Tom Tromey <tromey@barimba>
22180
22181 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
22182 New defvars.
22183 (eww-open-file): New defun.
22184 (eww-render): Initialize new variables.
22185 (eww-display-html): Handle "link" and "a".
22186 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
22187 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
22188 (eww-back-url): Rename from eww-previous-url.
22189 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
22190 New defuns.
22191
22192 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
22193
22194 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
22195 Distinguish ternary operator tokens from slash symbol and slash
22196 char literal.
22197
22198 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
22199
22200 Convert symbol prettification into minor mode and global minor mode.
22201
22202 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
22203 `prog-prettify-symbols', and make a local defvar instead of defcustom.
22204 (prettify-symbols--keywords): Rename from
22205 `prog-prettify-symbols-alist' and make a local defvar.
22206 (prettify-symbols--compose-symbol): Rename from
22207 `prog--prettify-font-lock-compose-symbol'.
22208 (prettify-symbols--make-keywords): Rename from
22209 `prog-prettify-font-lock-symbols-keywords' and simplify.
22210 (prog-prettify-install): Remove.
22211 (prettify-symbols-mode): New minor mode, based on
22212 `prog-prettify-install'.
22213 (turn-on-prettify-symbols-mode): New function.
22214 (global-prettify-symbols-mode): New globalized minor mode.
22215
22216 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
22217 * progmodes/cfengine.el (cfengine3-mode):
22218 * progmodes/perl-mode.el (perl-mode): Don't call
22219 `prog-prettify-install'; set `prettify-symbols-alist' instead.
22220
22221 2013-06-18 Juri Linkov <juri@jurta.org>
22222
22223 * files-x.el (modify-file-local-variable-message): New function.
22224 (modify-file-local-variable)
22225 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
22226 and call `modify-file-local-variable-message' when it's non-nil.
22227 (add-file-local-variable, delete-file-local-variable)
22228 (add-file-local-variable-prop-line)
22229 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
22230 and use it. (Bug#9820)
22231
22232 2013-06-18 Juri Linkov <juri@jurta.org>
22233
22234 * emulation/vi.el (vi-shell-op):
22235 * emulation/vip.el (vip-execute-com, ex-command):
22236 * emulation/viper-cmd.el (viper-exec-bang):
22237 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
22238 the call of `shell-command-on-region'. (Bug#14637)
22239
22240 * simple.el (shell-command-on-region): Doc fix.
22241
22242 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
22243
22244 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
22245 (bug#14633).
22246
22247 2013-06-18 Glenn Morris <rgm@gnu.org>
22248
22249 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
22250
22251 * newcomment.el (comment-search-forward, comment-search-backward):
22252 Doc fix. (Bug#14376)
22253
22254 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
22255
22256 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
22257 (buffer-face-mode-invoke): Doc fix.
22258
22259 2013-06-18 Matthias Meulien <orontee@gmail.com>
22260
22261 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
22262 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
22263
22264 2013-06-18 Glenn Morris <rgm@gnu.org>
22265
22266 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
22267 Replace obsolete function generic-make-keywords with its expansion.
22268
22269 * progmodes/python.el (ffap-alist): Declare.
22270
22271 * textmodes/reftex.el (bibtex-mode-map): Declare.
22272
22273 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
22274
22275 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
22276 (package-unpack, package-unpack-single): Return the pkg-dir.
22277 (package-download-transaction): Use it to update package-alist.
22278
22279 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
22280
22281 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
22282 possible choice.
22283
22284 2013-06-17 Juri Linkov <juri@jurta.org>
22285
22286 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
22287
22288 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
22289
22290 * emacs-lisp/package.el (package-load-descriptor):
22291 Remove `with-syntax-table' call, `read' doesn't need it.
22292 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
22293
22294 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
22295
22296 * startup.el (command-line): Expand package name returned by
22297 `package--description-file' (bug#14639).
22298
22299 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
22300
22301 * emacs-lisp/package.el (package-load-descriptor): Do not call
22302 `emacs-lisp-mode', just use its syntax table.
22303
22304 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
22305
22306 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
22307 `font-lock-extra-managed-props' if any prettifying keyword is added.
22308 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
22309 (prog-mode): Use `setq-local'.
22310
22311 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
22312
22313 * international/characters.el (standard-case-table): Set syntax of ?»
22314 and ?« to punctuation.
22315
22316 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
22317
22318 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
22319 Save relevant match data before calling `syntax-ppss' (bug#14595).
22320
22321 2013-06-15 Juri Linkov <juri@jurta.org>
22322
22323 * files-x.el (modify-file-local-variable-prop-line): Add local
22324 variables to the end of the existing comment on the first line.
22325 Use `file-auto-mode-skip' to skip interpreter magic line,
22326 and also skip XML declaration.
22327
22328 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
22329
22330 * startup.el (package--builtin-versions): New var.
22331 (package-subdirectory-regexp): Remove.
22332 (package--description-file): Hard code its value instead.
22333
22334 * emacs-lisp/package.el: Don't activate packages older than builtin.
22335 (package-obsolete-list): Rename from package-obsolete-alist, and make
22336 it into a simple list of package-desc.
22337 (package-strip-version): Remove.
22338 (package-built-in-p): Use package--builtin-versions.
22339 (package-mark-obsolete): Simplify.
22340 (package-process-define-package): Mark it obsolete if older than the
22341 builtin version.
22342 (package-handle-response): Use line-end-position.
22343 (package-read-archive-contents, package--download-one-archive):
22344 Simplify.
22345 (package--add-to-archive-contents): Skip if older than the builtin or
22346 installed version.
22347 (package-menu-describe-package): Fix last change.
22348 (package-list-unversioned): New var.
22349 (package-menu--generate): Use it.
22350
22351 * emacs-lisp/autoload.el: Manage package--builtin-versions.
22352 (autoload--insert-text, autoload--insert-cookie-text): New functions.
22353 (autoload-builtin-package-versions): New variable.
22354 (autoload-generate-file-autoloads): Use them.
22355 Remove the list of autoloaded functions/macros from the
22356 (autoload...) comments.
22357
22358 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
22359
22360 2013-06-15 Eli Zaretskii <eliz@gnu.org>
22361
22362 * simple.el (line-move-partial): Don't jump to the next screen
22363 line as soon as it becomes visible. Instead, continue enlarging
22364 the vscroll until the portion of a tall screen line that's left on
22365 display is about the height of the frame's default font.
22366 (Bug#14567)
22367
22368 2013-06-15 Glenn Morris <rgm@gnu.org>
22369
22370 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
22371 compilation-error-regexp-alist void, or local while let-bound.
22372
22373 * progmodes/make-mode.el (makefile-mode-syntax-table):
22374 Treat "=" as punctuation. (Bug#14614)
22375
22376 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
22377
22378 * help-fns.el (describe-variable):
22379 Add extra line for permanent-local variables.
22380
22381 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
22382
22383 * progmodes/scheme.el (scheme-font-lock-keywords-2):
22384 Add export, import, library. (Bug#9164)
22385 (library): Set indent function.
22386
22387 2013-06-14 Glenn Morris <rgm@gnu.org>
22388
22389 * term/xterm.el (xterm--query):
22390 Stop after first matching handler. (Bug#14615)
22391
22392 2013-06-14 Ivan Kanis <ivan@kanis.fr>
22393
22394 Add support for dired in saveplace.
22395 * dired.el (dired-initial-position-hook): New variable.
22396 (dired-initial-position): Call hook to place cursor position.
22397 * saveplace.el (save-place-to-alist): Add dired position.
22398 (save-place-dired-hook): New function.
22399
22400 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
22401
22402 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
22403 through a symbol rather than letrec.
22404
22405 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
22406 (package-desc): Add `dir' field.
22407 (package-desc-full-name): New function.
22408 (package-load-descriptor): Combine the two arguments. Don't use `load'.
22409 (package-maybe-load-descriptor): Remove.
22410 (package-load-all-descriptors): Just call package-load-descriptor.
22411 (package--disabled-p): New function.
22412 (package-desc-vers, package-desc-doc): Remove aliases.
22413 (package--dir): Remove function.
22414 (package-activate): Check if a package is disabled.
22415 (package-process-define-package): New function, extracted from
22416 define-package.
22417 (define-package): Turn into a place holder.
22418 (package-unpack-single, package-tar-file-info):
22419 Use package--description-file.
22420 (package-compute-transaction): Use package--disabled-p.
22421 (package-download-transaction): Don't call
22422 package-maybe-load-descriptor since they're all loaded anyway.
22423 (package-install): Change argument to be a pkg-desc.
22424 (package-delete): Use a single pkg-desc argument.
22425 (describe-package-1): Use package-desc-dir instead of package--dir.
22426 Use package-desc property instead of package-symbol.
22427 (package-install-button-action): Adjust accordingly.
22428 (package--push): Rewrite.
22429 (package-menu--print-info): Adjust accordingly. Change the ID format
22430 to be a pkg-desc.
22431 (package-menu-describe-package, package-menu-get-status)
22432 (package-menu--find-upgrades, package-menu-mark-upgrades)
22433 (package-menu-execute, package-menu--name-predicate):
22434 Adjust accordingly.
22435 * startup.el (package--description-file): New function.
22436 (command-line): Use it.
22437 * emacs-lisp/package-x.el (package-upload-buffer-internal):
22438 Use package-desc-version.
22439
22440 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
22441 (byte-compile-preprocess): Use it.
22442 (byte-compile-file-form-defalias): Try a bit harder to use macros we
22443 can't quite recognize.
22444 (byte-compile-add-to-list): Remove.
22445 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
22446 (cconv-closure-convert): Add assertion.
22447
22448 * emacs-lisp/map-ynp.el: Use lexical-binding.
22449 (map-y-or-n-p): Remove unused vars `tail' and `object'.
22450 Factor out some repeated code.
22451
22452 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
22453
22454 * subr.el (with-eval-after-load): New macro.
22455 (eval-after-load): Allow form to be a function.
22456 take advantage of lexical-binding.
22457 (do-after-load-evaluation): Use dolist and adjust to new format.
22458 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
22459
22460 2013-06-13 Juri Linkov <juri@jurta.org>
22461
22462 * replace.el (perform-replace): Display "symbol " and other search
22463 modes from `isearch-message-prefix' in the *Help* buffer.
22464
22465 * isearch.el (isearch-query-replace): Add " symbol" and other
22466 possible search modes from `isearch-message-prefix' to the prompt.
22467 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
22468 when reading a regexp to collect.
22469
22470 2013-06-13 Juri Linkov <juri@jurta.org>
22471
22472 * isearch.el (word-search-regexp): Match whitespace if the search
22473 string begins or ends in whitespace. The LAX arg is applied to
22474 both ends of the search string. Use `regexp-quote' and explicit
22475 \< and \> instead of \b. Use \` and \' instead of ^ and $.
22476 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
22477 boundaries are replaced with symbol boundaries, and characters
22478 between symbols match non-word non-symbol syntax. (Bug#14602)
22479
22480 2013-06-13 Juri Linkov <juri@jurta.org>
22481
22482 * isearch.el (isearch-del-char): Don't exceed the length of
22483 `isearch-string' by the prefix arg. (Bug#14563)
22484
22485 2013-06-13 Juri Linkov <juri@jurta.org>
22486
22487 * isearch.el (isearch-yank-word, isearch-yank-line)
22488 (isearch-char-by-name, isearch-quote-char)
22489 (isearch-printing-char, isearch-process-search-char):
22490 Add optional count prefix arg. (Bug#14563)
22491
22492 * international/isearch-x.el
22493 (isearch-process-search-multibyte-characters):
22494 Add optional count prefix arg.
22495
22496 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
22497
22498 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
22499 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
22500 lexical-binding.
22501
22502 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
22503
22504 * subr.el (set-temporary-overlay-map): Add on-exit argument.
22505
22506 2013-06-13 Glenn Morris <rgm@gnu.org>
22507
22508 * startup.el (tty-handle-args):
22509 Don't just discard "--" and anything after. (Bug#14608)
22510
22511 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
22512
22513 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
22514
22515 Implement changes in Secret Service API. Make it backward compatible.
22516 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
22517 (secrets-create-item): Use it. Prefix properties with interface.
22518
22519 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
22520
22521 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
22522 (term-emulate-terminal): Respect term-suppress-hard-newline.
22523
22524 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
22525
22526 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
22527 Only remove a `thumb-file' overlay. (Bug#14548)
22528
22529 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
22530
22531 * mail/reporter.el (reporter-submit-bug-report):
22532 Handle missing package-name. (Bug#14600)
22533
22534 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
22535
22536 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
22537 (reftex-citation-prompt, reftex-default-bibliography)
22538 (reftex-bib-or-thebib, reftex-get-bibfile-list)
22539 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
22540 (reftex-bib-sort-author, reftex-bib-sort-year)
22541 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
22542 (reftex-extract-bib-entries-from-thebibliography)
22543 (reftex-get-bibkey-default, reftex-get-bib-names)
22544 (reftex-parse-bibtex-entry, reftex-get-bib-field)
22545 (reftex-format-bib-entry, reftex-parse-bibitem)
22546 (reftex-format-bibitem, reftex-do-citation)
22547 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
22548 (reftex-restrict-bib-matches, reftex-extract-bib-file)
22549 (reftex-insert-bib-matches, reftex-format-citation)
22550 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
22551 (reftex-create-bibtex-file): Add docstrings, mostly by converting
22552 existing comments into docstrings.
22553
22554 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
22555
22556 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
22557
22558 2013-06-12 Andreas Schwab <schwab@suse.de>
22559
22560 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
22561 for auto-save files.
22562
22563 2013-06-12 Glenn Morris <rgm@gnu.org>
22564
22565 * ido.el (ido-delete-ignored-files): Remove.
22566 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
22567 Go back to calling ido-ignore-item-p directly.
22568
22569 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
22570
22571 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
22572
22573 * ido.el (ido-delete-ignored-files): New function,
22574 split from ido-make-file-list-1.
22575 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
22576 (ido-make-file-list-1): Use ido-delete-ignored-files.
22577
22578 2013-06-12 Leo Liu <sdl.web@gmail.com>
22579
22580 * progmodes/octave.el (inferior-octave-startup)
22581 (inferior-octave-completion-table)
22582 (inferior-octave-track-window-width-change)
22583 (octave-eldoc-function-signatures, octave-help)
22584 (octave-find-definition): Use single quoted strings.
22585 (inferior-octave-startup-args): Change default value.
22586 (inferior-octave-startup): Do not hard code "-i" and
22587 "--no-line-editing".
22588 (inferior-octave-resync-dirs): Add optional arg NOERROR.
22589 (inferior-octave-directory-tracker): Use it.
22590 (octave-goto-function-definition): Robustify.
22591 (octave-help): Support highlighting operators in 'See also'.
22592 (octave-find-definition): Find subfunctions only in Octave mode.
22593
22594 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22595
22596 * help-fns.el (help-fns--compiler-macro): If the handler function is
22597 named, then put a link to it.
22598 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
22599 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
22600 (cl-typep): Use it.
22601 (cl-eval-when): Simplify debug spec.
22602 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
22603 compiler-macro function instead of setting `compiler-macro-file'.
22604
22605 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
22606
22607 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
22608 * vc/vc-hooks.el (vc-stay-local): Doc fix.
22609
22610 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
22611 Daniel Hackney <dan@haxney.org>
22612
22613 First part of Daniel Hackney's patch to package.el.
22614 * emacs-lisp/package.el: Use defstruct.
22615 (package-desc): New, main struct.
22616 (package--bi-desc, package--ac-desc): New structs, used to describe the
22617 format in external files.
22618 (package-desc-vers): Replace with package-desc-version accessor.
22619 (package-desc-doc): Replace with package-desc-summary accessor.
22620 (package-activate-1): Remove `package' arg since the pkg-vec now
22621 includes the name.
22622 (define-package): Use package-desc-from-define.
22623 (package-unpack-single): Change file-name arg to be a symbol.
22624 (package--add-to-archive-contents): Use package-desc-create and new
22625 accessor functions to package--ac-desc.
22626 (package-buffer-info, package-tar-file-info): Return a package-desc.
22627 (package-install-from-buffer): Remove `type' argument. Change pkg-info
22628 arg to be a package-desc.
22629 (package-install-file): Adjust accordingly. Use \' to match EOS.
22630 (package--from-builtin): New function.
22631 (describe-package-1, package-menu--generate): Use it.
22632 (package--make-autoloads-and-compile): Change name arg to be a symbol.
22633 (package-generate-autoloads): Idem and return the name of the file.
22634 * emacs-lisp/package-x.el (package-upload-buffer-internal):
22635 Change pkg-info arg to be a package-desc.
22636 Use package-make-ac-desc.
22637 (package-upload-file): Use \' to match EOS.
22638 * finder.el (finder-compile-keywords): Use package-make-builtin.
22639
22640 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22641
22642 * vc/vc.el (vc-deduce-fileset): Change error message.
22643 (vc-read-backend): New function.
22644 (vc-next-action): Use it.
22645
22646 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
22647
22648 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
22649 (prolog-font-lock-keywords): Use regexp-opt instead.
22650 Don't manually highlight strings.
22651 (prolog-mode-variables): Simplify comment-start-skip.
22652 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
22653
22654 * emacs-lisp/generic.el (generic--normalise-comments)
22655 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
22656 (generic-mode-set-comments): Use them.
22657 (generic-bracket-support): Use setq-local.
22658 (generic-make-keywords-list): Declare obsolete.
22659
22660 2013-06-11 Glenn Morris <rgm@gnu.org>
22661
22662 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
22663 Prettify after setting font-lock-defaults. (Bug#14574)
22664
22665 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
22666
22667 * replace.el (query-replace, occur-read-regexp-defaults-function)
22668 (replace-search):
22669 * subr.el (declare-function, number-sequence, local-set-key)
22670 (substitute-key-definition, locate-user-emacs-file)
22671 (with-silent-modifications, split-string, eval-after-load):
22672 Fix typos, remove unneeded backslashes and reflow some docstrings.
22673
22674 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
22675
22676 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
22677 default for Elisp files.
22678
22679 2013-06-11 Glenn Morris <rgm@gnu.org>
22680
22681 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
22682 although define-derived-mode was doing this anyway. (Bug#14583)
22683
22684 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
22685
22686 * allout.el (allout-encryption-plaintext-sanitization-regexps):
22687 Fix make-variable-buffer-local call to refer to the correct variable.
22688
22689 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
22690
22691 * eshell/em-term.el (eshell-visual-commands)
22692 (eshell-visual-subcommands, eshell-visual-options):
22693 Add summary line to docstrings. Add cross-references.
22694
22695 2013-06-10 Glenn Morris <rgm@gnu.org>
22696
22697 * epa.el (epa-read-file-name): New function. (Bug#14510)
22698 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
22699
22700 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
22701
22702 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
22703 output redirection to be ignored with visual commands.
22704
22705 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
22706
22707 * eshell/em-term.el (eshell-visual-command-p): New function.
22708 (eshell-term-initialize): Move long lambda to separate function
22709 eshell-visual-command-p.
22710 * eshell/em-dirs.el (eshell-dirs-initialize):
22711 * eshell/em-script.el (eshell-script-initialize):
22712 Add missing #' to lambda.
22713
22714 2013-06-08 Leo Liu <sdl.web@gmail.com>
22715
22716 * progmodes/octave.el (octave-add-log-current-defun): New function.
22717 (octave-mode): Set add-log-current-defun-function.
22718 (octave-goto-function-definition): Do not move point if not found.
22719 (octave-find-definition): Enhance to try subfunctions first.
22720
22721 2013-06-08 Glenn Morris <rgm@gnu.org>
22722
22723 * emacs-lisp/bytecomp.el (byte-compile-char-before)
22724 (byte-compile-backward-char, byte-compile-backward-word):
22725 Improve previous change, to handle non-explicit nil.
22726
22727 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
22728
22729 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
22730 (smie--opener/closer-at-point): New function.
22731 (smie--matching-block-data): Use it. Don't match from right after an
22732 opener or right before a closer. Obey smie-blink-matching-inners.
22733 Don't signal a mismatch for repeated inners like "switch..case..case".
22734
22735 2013-06-07 Leo Liu <sdl.web@gmail.com>
22736
22737 * progmodes/octave.el (octave-mode): Set comment-use-global-state
22738 to t. (Bug#14303)
22739 (octave-function-header-regexp): Fix. (Bug#14570)
22740 (octave-help-mode-finish-hook, octave-help-mode-finish):
22741 Remove. Just use temp-buffer-show-hook.
22742
22743 * newcomment.el (comment-search-backward): Revert last change.
22744 (Bug#14434)
22745
22746 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
22747
22748 2013-06-07 Eli Zaretskii <eliz@gnu.org>
22749
22750 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
22751 through xargs, to avoid failure due to MS-Windows limitations on
22752 command-line length.
22753
22754 2013-06-06 Glenn Morris <rgm@gnu.org>
22755
22756 * font-lock.el (lisp-font-lock-keywords-2):
22757 Treat user-error like error.
22758
22759 * emacs-lisp/bytecomp.el (byte-compile-char-before)
22760 (byte-compile-backward-char, byte-compile-backward-word):
22761 Handle explicit nil arguments. (Bug#14565)
22762
22763 2013-06-05 Alan Mackenzie <acm@muc.de>
22764
22765 * isearch.el (isearch-allow-prefix): New user option.
22766 (isearch-other-meta-char): Don't exit isearch when a prefix
22767 argument is typed whilst `isearch-allow-prefix' is non-nil.
22768 (Bug#9706)
22769
22770 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
22771
22772 * autorevert.el (auto-revert-notify-handler): Use memq.
22773 Hide assertion failure.
22774
22775 * skeleton.el: Use cl-lib.
22776 (skeleton-further-elements): Use defvar-local.
22777 (skeleton-insert): Use cl-progv.
22778
22779 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
22780
22781 * progmodes/prog-mode.el (prog-prettify-symbols)
22782 (prog-prettify-install): Update docstrings.
22783
22784 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
22785
22786 * simple.el: Move all the prog-mode code to prog-mode.el.
22787 * progmodes/prog-mode.el: New file.
22788 * loadup.el: Add prog-mode.el.
22789
22790 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
22791
22792 * simple.el (prog-prettify-symbols): Add version.
22793 (prog-prettify-install): Add convenience function to prettify symbols.
22794
22795 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
22796 (perl--augmented-font-lock-keywords-1)
22797 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
22798 variables and use it.
22799
22800 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
22801 (cfengine3-mode): Remove unneeded variable and use it.
22802
22803 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
22804 (lisp--augmented-font-lock-keywords-1)
22805 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
22806 Remove unneeded variables and use it.
22807
22808 2013-06-05 João Távora <joaotavora@gmail.com>
22809
22810 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
22811 to point when opening the connection. (Bug#14380)
22812
22813 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
22814
22815 * subr.el (load-history-regexp, load-history-filename-element)
22816 (eval-after-load, after-load-functions, do-after-load-evaluation)
22817 (eval-next-after-load, display-delayed-warnings)
22818 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
22819 definition of save-match-data.
22820 (overriding-local-map): Remove accidental obsolescence declaration.
22821
22822 * emacs-lisp/edebug.el (edebug-result): Move before first use.
22823
22824 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
22825
22826 Generalize symbol prettify support to prog-mode and implement it
22827 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
22828 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
22829 (prog--prettify-font-lock-compose-symbol)
22830 (prog-prettify-font-lock-symbols-keywords): New variables and
22831 functions to support symbol prettification.
22832 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
22833 (lisp--augmented-font-lock-keywords-1)
22834 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
22835 (lisp--prettify-symbols-alist): Implement prettify of lambda.
22836 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
22837 (cfengine3--prettify-symbols-alist, cfengine3-mode):
22838 Implement prettify of -> => :: strings.
22839 * progmodes/perl-mode.el (perl-prettify-symbols)
22840 (perl--font-lock-compose-symbol)
22841 (perl--font-lock-symbols-keywords): Move to prog-mode.
22842 (perl--prettify-symbols-alist): Prettify -> => :: strings.
22843 (perl-font-lock-keywords-1)
22844 (perl-font-lock-keywords-2): Remove explicit prettify support.
22845 (perl--augmented-font-lock-keywords)
22846 (perl--augmented-font-lock-keywords-1)
22847 (perl--augmented-font-lock-keywords-2, perl-mode):
22848 Implement prettify support.
22849
22850 2013-06-05 Leo Liu <sdl.web@gmail.com>
22851
22852 Re-implement SMIE matching block highlight using
22853 show-paren-data-function. (Bug#14395)
22854 * emacs-lisp/smie.el (smie-matching-block-highlight)
22855 (smie--highlight-matching-block-overlay)
22856 (smie--highlight-matching-block-lastpos)
22857 (smie-highlight-matching-block)
22858 (smie-highlight-matching-block-mode): Remove.
22859 (smie--matching-block-data-cache): New variable.
22860 (smie--matching-block-data): New function.
22861 (smie-setup): Use smie--matching-block-data for
22862 show-paren-data-function.
22863
22864 * progmodes/octave.el (octave-mode-menu): Fix.
22865 (octave-find-definition): Skip garbage lines.
22866
22867 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
22868
22869 Fix compilation error with simultaneous dynamic+lexical scoping.
22870 Add warning when a defvar appears after the first let-binding.
22871 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
22872 (byte-compile-close-variables): Initialize it.
22873 (byte-compile--declare-var): New function.
22874 (byte-compile-file-form-defvar)
22875 (byte-compile-file-form-define-abbrev-table)
22876 (byte-compile-file-form-custom-declare-variable): Use it.
22877 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
22878 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
22879 (byte-compile-bind): Handle dynamic bindings that shadow
22880 lexical bindings.
22881 (byte-compile-unbind): Make arg non-optional.
22882 (byte-compile-let): Simplify.
22883 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
22884 (cconv--analyse-function, cconv-analyse-form): Populate it.
22885 Protect byte-compile-bound-variables to limit the scope of defvars.
22886 (cconv-analyse-form): Add missing rule for (defvar <foo>).
22887 Remove unneeded rule for `declare'.
22888
22889 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
22890 so as to avoid depending on cl-adjoin at run-time.
22891 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
22892
22893 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
22894 (macroexp--warn-and-return): Use it.
22895
22896 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
22897
22898 * subr.el: Convert to lexical binding.
22899 (overriding-local-map): Make obsolete.
22900 (add-to-list): Doc fix. Add compiler macro.
22901 (read-key): Swap values of local maps.
22902
22903 2013-06-05 Leo Liu <sdl.web@gmail.com>
22904
22905 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
22906
22907 2013-06-04 Leo Liu <sdl.web@gmail.com>
22908
22909 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
22910 (compilation-auto-jump): Suppress the "Mark set" message to give
22911 way to exit message.
22912
22913 2013-06-04 Alan Mackenzie <acm@muc.de>
22914
22915 Remove faulty optimization from indentation calculation.
22916 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
22917 search limit based on 2000 characters back from indent-point.
22918
22919 2013-06-03 Tassilo Horn <tsdh@gnu.org>
22920
22921 * eshell/em-term.el (cl-lib): Require `cl-lib'.
22922
22923 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
22924
22925 * emacs-lisp/lisp.el: Use lexical-binding.
22926 (lisp--local-variables-1, lisp--local-variables): New functions.
22927 (lisp--local-variables-completion-table): New var.
22928 (lisp-completion-at-point): Use it complete let-bound vars.
22929
22930 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
22931 eagerly (bug#14422).
22932
22933 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
22934
22935 * autorevert.el (auto-revert-notify-enabled)
22936 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
22937 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
22938 (auto-revert-notify-handler): Handle also gfilenotify.
22939
22940 * subr.el (file-notify-handle-event): New defun. Replacing ...
22941 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
22942 Remove.
22943
22944 2013-06-03 Juri Linkov <juri@jurta.org>
22945
22946 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
22947 `M-s h .'. (Bug#14427)
22948
22949 * hi-lock.el (highlight-symbol-at-point): New alias for the new
22950 command `hi-lock-face-symbol-at-point'.
22951 (hi-lock-face-symbol-at-point): New command.
22952 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
22953 (hi-lock-menu): Add `highlight-symbol-at-point'.
22954 (hi-lock-mode): Doc fix.
22955
22956 * isearch.el (isearch-forward-symbol-at-point): New command.
22957 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
22958 (isearch-highlight-regexp): Add a regexp which matches
22959 words/symbols for word/symbol mode.
22960
22961 * subr.el (find-tag-default-bounds): New function with the body
22962 mostly moved from `find-tag-default'.
22963 (find-tag-default): Move most code to `find-tag-default-bounds',
22964 call it and apply `buffer-substring-no-properties' afterwards.
22965
22966 2013-06-03 Tassilo Horn <tsdh@gnu.org>
22967
22968 * eshell/em-term.el (eshell-term-initialize):
22969 Use `cl-intersection' rather than `intersection'.
22970
22971 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
22972
22973 * vc/log-view.el: Doc fix.
22974 (log-view-mode-map): Copy keymap from `special-mode-map'.
22975
22976 2013-06-02 Eric Ludlam <zappo@gnu.org>
22977
22978 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
22979 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
22980 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
22981 (eieio-unbound, eieio-default-superclass)
22982 (eieio--define-field-accessors, method-static, method-before)
22983 (method-primary, method-after, method-num-lists)
22984 (method-generic-before, method-generic-primary)
22985 (method-generic-after, method-num-slots)
22986 (eieio-specialized-key-to-generic-key)
22987 (eieio--check-type, class-v, class-p)
22988 (eieio-class-name, define-obsolete-function-alias)
22989 (eieio-class-parents-fast, eieio-class-children-fast)
22990 (same-class-fast-p, class-constructor, generic-p)
22991 (generic-primary-only-p, generic-primary-only-one-p)
22992 (class-option-assoc, class-option, eieio-object-p)
22993 (class-abstract-p, class-method-invocation-order)
22994 (eieio-defclass-autoload-map, eieio-defclass-autoload)
22995 (eieio-class-un-autoload, eieio-defclass)
22996 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
22997 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
22998 (eieio--defgeneric-init-form, eieio-defgeneric-form)
22999 (eieio-defgeneric-reset-generic-form)
23000 (eieio-defgeneric-form-primary-only)
23001 (eieio-defgeneric-reset-generic-form-primary-only)
23002 (eieio-defgeneric-form-primary-only-one)
23003 (eieio-defgeneric-reset-generic-form-primary-only-one)
23004 (eieio-unbind-method-implementations)
23005 (eieio--defmethod, eieio--typep)
23006 (eieio-perform-slot-validation, eieio-validate-slot-value)
23007 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
23008 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
23009 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
23010 (eieio-slot-name-index, eieio-class-slot-name-index)
23011 (eieio-set-defaults, eieio-initarg-to-attribute)
23012 (eieio-attribute-to-initarg, eieio-c3-candidate)
23013 (eieio-c3-merge-lists, eieio-class-precedence-c3)
23014 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
23015 (eieio-class-precedence-list, eieio-generic-call-methodname)
23016 (eieio-generic-call-arglst, eieio-generic-call-key)
23017 (eieio-generic-call-next-method-list)
23018 (eieio-pre-method-execution-functions, eieio-generic-call)
23019 (eieio-generic-call-primary-only, eieiomt-method-list)
23020 (eieiomt-optimizing-obarray, eieiomt-install)
23021 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
23022 (eieio-generic-form, eieio-defmethod, make-obsolete)
23023 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
23024 (defclass): Remove `eval-and-compile' from macro.
23025 (call-next-method, shared-initialize): Instead of using
23026 `scoped-class' variable, use new eieio--scoped-class, and
23027 eieio--with-scoped-class.
23028 (initialize-instance): Rename local variable 'scoped-class' to
23029 'this-class' to remove ambiguitity from old global.
23030
23031 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
23032 eieio.el.
23033 (eieio--scoped-class-stack): New variable.
23034 (eieio--scoped-class): New fcn.
23035 (eieio--with-scoped-class): New scoping macro.
23036 (eieio-defclass): Use pushnew instead of add-to-list.
23037 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
23038 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
23039 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
23040 `scoped-class' variable, use new eieio--scoped-class, and
23041 eieio--with-scoped-class.
23042
23043 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
23044
23045 2013-06-02 Tassilo Horn <tsdh@gnu.org>
23046
23047 * eshell/esh-ext.el (eshell-external-command): Pass args to
23048 `eshell-find-interpreter'.
23049 (eshell-find-interpreter): Add new second parameter ARGS.
23050
23051 * eshell/em-script.el (eshell-script-initialize): Add second arg
23052 to the function added as MATCH to `eshell-interpreter-alist'.
23053
23054 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
23055 the function added as MATCH to `eshell-interpreter-alist'.
23056
23057 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
23058 (eshell-visual-options): New defcustom.
23059 (eshell-escape-control-x): Adapt docstring.
23060 (eshell-term-initialize): Test `eshell-visual-subcommands' and
23061 `eshell-visual-options' in addition to `eshell-visual-commands'.
23062 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
23063
23064 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
23065
23066 * progmodes/python.el (python-indent-block-enders): Add break,
23067 continue and raise keywords.
23068
23069 2013-06-01 Glenn Morris <rgm@gnu.org>
23070
23071 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
23072
23073 Plain (f)boundp silences compilation warnings since Emacs 22.1.
23074 * progmodes/cc-cmds.el (delete-forward-p):
23075 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
23076 * progmodes/cc-engine.el (buffer-syntactic-context):
23077 * progmodes/cc-fonts.el (face-property-instance):
23078 * progmodes/cc-mode.el (set-keymap-parents):
23079 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
23080 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
23081 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
23082 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
23083 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
23084
23085 * progmodes/cc-vars.el (other): Emacs has this widget since
23086 at least 21.1, so don't (re)define it.
23087
23088 * eshell/em-cmpl.el (eshell-cmpl-initialize):
23089 Replace the obsolete alias pcomplete-arg-quote-list.
23090
23091 2013-06-01 Leo Liu <sdl.web@gmail.com>
23092
23093 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
23094 punctuation syntax.
23095 (inferior-octave-minimal-columns)
23096 (inferior-octave-last-column-width): New variables.
23097 (inferior-octave-track-window-width-change): New function.
23098 (inferior-octave-mode): Adjust column width so that Octave output,
23099 for example from 'ls', can fit into the window nicely.
23100
23101 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
23102
23103 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
23104 Highlight expansions inside regexp literals.
23105
23106 2013-05-31 Glenn Morris <rgm@gnu.org>
23107
23108 * obsolete/sym-comp.el (symbol-complete):
23109 Replace obsolete completion-annotate-function.
23110
23111 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
23112
23113 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
23114
23115 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
23116 New function, checks if point is inside a literal that allows
23117 expression expansion.
23118 (ruby-syntax-propertize-expansion): Use it.
23119 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
23120 around the body.
23121
23122 2013-05-30 Juri Linkov <juri@jurta.org>
23123
23124 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
23125 to "\M-si".
23126 (isearch-invisible): New variable.
23127 (isearch-forward): Doc fix.
23128 (isearch-mode): Set `isearch-invisible'
23129 to the value of `search-invisible'.
23130 (isearch-toggle-case-fold): Doc fix.
23131 (isearch-toggle-invisible): New command.
23132 (isearch-query-replace): Let-bind `search-invisible'
23133 to the value of `isearch-invisible'.
23134 (isearch-search): Use `isearch-invisible' instead of
23135 `search-invisible'. Let-bind `search-invisible'
23136 to the value of `isearch-invisible'. (Bug#11378)
23137
23138 2013-05-30 Juri Linkov <juri@jurta.org>
23139
23140 * replace.el (perform-replace): Avoid `isearch-range-invisible'
23141 call when `query-flag' is nil and `search-invisible' is non-nil.
23142 (Bug#11746)
23143
23144 2013-05-30 Glenn Morris <rgm@gnu.org>
23145
23146 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
23147
23148 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
23149 (cc-require): Suppress spurious "noruntime" warnings.
23150 (cc-require-when-compile): Use fboundp, for sake of compiler.
23151
23152 * progmodes/cc-mode.el: Move load of cc-vars before that of
23153 cc-langs (which in turn loads cc-vars), to quieten compiler.
23154
23155 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
23156
23157 * paren.el: Simplify the code.
23158 (show-paren-mode): Always start the timer.
23159 (show-paren--idle-timer): Rename from show-paren-idle-timer.
23160 (show-paren--overlay, show-paren--overlay-1): Rename from
23161 show-paren-overlay and show-paren-overlay-1, and initialize to an
23162 overlay rather than to nil.
23163 (show-paren-function): Misc cleanup and simplifications.
23164
23165 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
23166
23167 * paren.el (show-paren-data-function): New hook.
23168 (show-paren--default): New function, extracted from show-paren-function.
23169 (show-paren-function): Use show-paren-data-function.
23170
23171 2013-05-30 Glenn Morris <rgm@gnu.org>
23172
23173 * ielm.el (ielm-map, ielm-complete-symbol):
23174 Use completion-at-point rather than obsolete functions.
23175 (inferior-emacs-lisp-mode): Doc fix.
23176 Set completion-at-point-functions, rather than
23177 comint-dynamic-complete-functions.
23178
23179 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
23180 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
23181 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
23182
23183 * image.el (image-animated-p): Tweak definition.
23184
23185 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
23186 (rlogin-process-connection-type): Tweak default. Add set-after.
23187 (rlogin-host): Doc fix.
23188 (rlogin): Tweak prompt.
23189 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
23190
23191 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
23192 * progmodes/tcl.el (inferior-tcl-mode-map):
23193 Use completion-at-point rather than obsolete alias.
23194
23195 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
23196
23197 * minibuffer.el (read-file-name-completion-ignore-case):
23198 Move before completion--in-region, for eager macro expansion.
23199
23200 2013-05-29 Juri Linkov <juri@jurta.org>
23201
23202 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
23203 for total count of matching lines. Add `global-matches' for total
23204 count of matches. Rename `matches' to `lines' for count of
23205 matching lines. Add `matches' for count of matches.
23206 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
23207 to `prev-line' for line number of prev match endpt.
23208 Increment `matches' for every match. Print the number of
23209 matching lines in the header.
23210 (occur-context-lines): Rename `lines' to `curr-line'.
23211 Rename `prev-lines' to `prev-line'. (Bug#14017)
23212
23213 2013-05-29 Juri Linkov <juri@jurta.org>
23214
23215 * replace.el (perform-replace): Add `skip-read-only-count',
23216 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
23217 Increment them for corresponding conditions and report the number
23218 of skipped occurrences in the final message. (Bug#11746)
23219 (query-replace, query-replace-regexp, query-replace-regexp-eval)
23220 (replace-string, replace-regexp): Doc fix.
23221
23222 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
23223
23224 * emacs-lisp/trace.el (trace--read-args): Provide a default.
23225
23226 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
23227 prog-mode-map (bug#14504).
23228
23229 2013-05-29 Leo Liu <sdl.web@gmail.com>
23230
23231 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
23232 (octave-help): Small simplification.
23233
23234 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
23235 off the highlight first.
23236
23237 2013-05-29 Glenn Morris <rgm@gnu.org>
23238
23239 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
23240 Handle idlwave-last-system-routine-info-cons-cell being nil.
23241
23242 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
23243 (idlwave-write-paths): Simplify via with-temp-buffer.
23244
23245 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
23246 * emulation/cua-rect.el: Also load cua-base at run time.
23247
23248 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
23249 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
23250 (cperl-imenu-on-info): Require imenu.
23251
23252 2013-05-28 Alan Mackenzie <acm@muc.de>
23253
23254 Handle "capitalised keywords" correctly.
23255 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
23256
23257 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
23258
23259 * eshell/em-unix.el: Add -r option to cp.
23260
23261 2013-05-28 Glenn Morris <rgm@gnu.org>
23262
23263 * vc/vc-arch.el (vc-exec-after): Declare.
23264 (vc-switches): Autoload.
23265 * vc/vc-bzr.el: No need to require vc when compiling.
23266 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
23267 (vc-resynch-buffer, vc-dir-refresh): Declare.
23268 (vc-setup-buffer, vc-switches): Autoload.
23269 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
23270 (vc-resynch-buffer): Declare.
23271 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
23272 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
23273 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
23274 (grep-read-regexp, grep-read-files, grep-expand-template)
23275 (vc-dir-refresh): Declare.
23276 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
23277 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
23278 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
23279 * vc/vc-mtn.el (vc-exec-after): Declare.
23280 (vc-switches): Autoload.
23281 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
23282 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
23283 (vc-file-tree-walk): Declare.
23284 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
23285 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
23286 (vc-tag-precondition, vc-rename-master): Autoload.
23287 * vc/vc-svn.el (vc-exec-after): Declare.
23288 (vc-switches, vc-setup-buffer): Autoload.
23289 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
23290 Autoload.
23291 (vc-resynch-buffer): Declare.
23292
23293 * obsolete/fast-lock.el (byte-compile-warnings):
23294 Don't warn about obsolete features in this obsolete file.
23295
23296 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
23297 Move definition before use.
23298
23299 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
23300 (dun-unix-verbs): Remove dun-zippy.
23301 (dun-zippy): Remove function.
23302
23303 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
23304
23305 2013-05-27 Juri Linkov <juri@jurta.org>
23306
23307 * replace.el (replace-search): New function with code moved out
23308 from `perform-replace'.
23309 (replace-highlight, replace-dehighlight): Move function definitions
23310 up closer to `replace-search'. (Bug#11746)
23311
23312 2013-05-27 Juri Linkov <juri@jurta.org>
23313
23314 * replace.el (perform-replace): Ignore invisible matches.
23315 In addition to checking `query-replace-skip-read-only', also
23316 filter out matches by calling `run-hook-with-args-until-failure'
23317 on `isearch-filter-predicates', and also check `search-invisible'
23318 for t or call `isearch-range-invisible'.
23319 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
23320
23321 2013-05-27 Juri Linkov <juri@jurta.org>
23322
23323 * isearch.el (isearch-filter-predicates): Rename from
23324 `isearch-filter-predicate'. Doc fix. (Bug#11378)
23325 (isearch-message-prefix): Display text from the property
23326 `isearch-message-prefix' of the currently active filters.
23327 (isearch-search): Don't compare `isearch-filter-predicate' with
23328 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
23329 on `isearch-filter-predicates'. Also check `search-invisible' for t
23330 or call `isearch-range-invisible'.
23331 (isearch-filter-visible): Make obsolete.
23332 (isearch-lazy-highlight-search):
23333 Call `run-hook-with-args-until-failure' on
23334 `isearch-filter-predicates' and use `isearch-range-invisible'.
23335
23336 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
23337 `isearch-filter-predicates' instead of `funcall'ing
23338 `isearch-filter-predicate'.
23339 (Info-mode): Set `Info-isearch-filter' to
23340 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
23341
23342 * dired-aux.el (dired-isearch-filter-predicate-orig):
23343 Remove variable.
23344 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
23345 (dired-isearch-filenames-end): Add and remove
23346 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
23347 instead of changing the value of `isearch-filter-predicate'.
23348 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
23349 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
23350 Put property `isearch-message-prefix' to "filename " on
23351 `dired-isearch-filter-filenames'.
23352
23353 * wdired.el (wdired-change-to-wdired-mode):
23354 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
23355 locally instead of changing `isearch-filter-predicate'.
23356 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
23357
23358 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
23359
23360 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
23361 return the commit hash (Bug#14459). Also set the
23362 `vc-git-detached' property.
23363 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
23364 (vc-git-mode-line-string): Use the same help-echo format whether
23365 in detached mode or not, because we know the actual revision now.
23366 When in detached mode, shorten the revision to 7 chars.
23367
23368 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
23369
23370 * emacs-lisp/easy-mmode.el (define-minor-mode):
23371 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
23372 mode hook and provide a docstring.
23373
23374 2013-05-27 Alan Mackenzie <acm@muc.de>
23375
23376 Remove spurious syntax-table text properties inserted by C-y.
23377 * progmodes/cc-mode.el (c-after-change): Also clear hard
23378 syntax-table property with value nil.
23379
23380 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
23381
23382 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
23383 when reading the events; the buffer layout shall not be changed.
23384
23385 2013-05-27 Leo Liu <sdl.web@gmail.com>
23386
23387 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
23388 New variable.
23389 (inferior-octave-directory-tracker): Automatically re-sync
23390 default-directory.
23391 (octave-help): Improve handling of 'See also'.
23392
23393 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
23394
23395 * doc-view.el: Minor naming convention tweaks.
23396 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
23397
23398 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
23399 even if there's no `display' property yet (bug#14435).
23400
23401 2013-05-25 Eli Zaretskii <eliz@gnu.org>
23402
23403 * subr.el (unmsys--file-name): Rename from reveal-filename.
23404
23405 * Makefile.in (custom-deps, finder-data, autoloads)
23406 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
23407 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
23408 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
23409
23410 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
23411
23412 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
23413 error-completion on the first 2 args of condition-case (bug#14446).
23414 Don't burp at EOB.
23415
23416 2013-05-25 Leo Liu <sdl.web@gmail.com>
23417
23418 * comint.el (comint-previous-matching-input): Do not flood the
23419 *Messages* buffer with trivial messages.
23420
23421 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
23422
23423 * progmodes/flymake.el (flymake-nop): Don't return a string.
23424 (flymake-set-at): Fix typo.
23425
23426 * simple.el (read--expression): New function, extracted from
23427 eval-expression. Set completion-at-point-functions (bug#14465).
23428 (eval-expression, eval-minibuffer): Use it.
23429
23430 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
23431
23432 * progmodes/flymake.el (flymake-save-buffer-in-file)
23433 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
23434 (flymake-selected-frame, flymake-log, flymake-ins-after)
23435 (flymake-set-at, flymake-get-buildfile-from-cache)
23436 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
23437 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
23438 Refine the doc string.
23439 (flymake-get-file-name-mode-and-masks): Reformat.
23440 (flymake-get-real-file-name-function): Fix a minor bug.
23441
23442 2013-05-24 Juri Linkov <juri@jurta.org>
23443
23444 * progmodes/grep.el (grep-mode-font-lock-keywords):
23445 Support =linenumber= format used by git-grep for lines with
23446 function names. (Bug#13549)
23447
23448 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
23449
23450 * progmodes/octave.el (octave-smie-rules): Return nil rather than
23451 0 after a semi-colon; it works better for smie-auto-fill.
23452 (octave--indent-new-comment-line): New function.
23453 (octave-indent-new-comment-line): Use it (indirectly).
23454 (octave-mode): Don't disable smie-auto-fill. Use add-function to
23455 modify comment-line-break-function.
23456
23457 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
23458 (smie-setup): Use add-function to set it.
23459
23460 2013-05-24 Sam Steingold <sds@gnu.org>
23461
23462 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
23463 argument (before the `interactive' argument).
23464
23465 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
23466
23467 * image-mode.el (image-mode-winprops): Add winprops to
23468 image-mode-winprops-alist before running
23469 image-mode-new-window-functions.
23470 * doc-view.el (doc-view-new-window-function): Don't delay
23471 doc-view-goto-page via timers (bug#14435).
23472
23473 2013-05-24 Tassilo Horn <tsdh@gnu.org>
23474
23475 * doc-view.el: Integrate with desktop.el. (Bug#14435)
23476 (doc-view-desktop-save-buffer): New function.
23477 (doc-view-restore-desktop-buffer): New function.
23478 (desktop-buffer-mode-handlers):
23479 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
23480 handler.
23481 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
23482 `desktop-save-buffer' function.
23483
23484 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
23485
23486 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
23487 (tramp-gvfs-file-name-handler): Raise a user error when
23488 `tramp-gvfs-enabled' is nil.
23489 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
23490 Do not raise a user error when loading package. (Bug#14447)
23491
23492 * net/xesam.el: Move to obsolete/.
23493
23494 2013-05-24 Glenn Morris <rgm@gnu.org>
23495
23496 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
23497
23498 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
23499
23500 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
23501 (Info-find-node, Man-getpage-in-background): Declare.
23502
23503 * mail/unrmail.el (unrmail):
23504 Replace obsolete detect-coding-with-priority.
23505
23506 * net/socks.el (socks-split-string): Use this rather than split-string.
23507 (socks-nslookup-host): Update for above change.
23508 (dynamic-choice, s5-dynamic-choice-match)
23509 (s5-dynamic-choice-match-inline, s5-widget-value-create):
23510 Comment out unused code.
23511
23512 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
23513 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
23514 (gud-tooltip-echo-area): Make obsolete.
23515 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
23516
23517 * progmodes/js.el (js--optimize-arglist): Declare.
23518
23519 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
23520
23521 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
23522 (ediff-window-C): Declare.
23523
23524 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
23525 Tweak requires to silence compiler.
23526
23527 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
23528 (he-search-string, he-tried-table, he-expand-list)
23529 (he-init-string, he-string-member, he-substitute-string)
23530 (he-reset-string): Declare.
23531
23532 * obsolete/options.el (list-options): Use custom-variable-p,
23533 rather than obsolete alias.
23534
23535 2013-05-23 Sam Steingold <sds@gnu.org>
23536
23537 * simple.el (shell-command-on-region): Pass the `replace' argument
23538 down to `call-process-region' to comply with the doc as reported on
23539 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
23540
23541 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
23542
23543 * emacs-lisp/smie.el (smie-indent-forward-token)
23544 (smie-indent-backward-token): Handle string tokens (bug#14381).
23545
23546 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
23547
23548 * ielm.el (ielm-menu): New menu.
23549 (inferior-emacs-lisp-mode): Set comment-start.
23550
23551 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
23552
23553 * textmodes/reftex.el (reftex-ref-style-toggle):
23554 Fix deactivate action.
23555
23556 * textmodes/reftex-vars.el (reftex-ref-style-alist):
23557 Add cleveref macros.
23558
23559 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
23560 Accept options for bibliography commands.
23561 * textmodes/reftex-vars.el (reftex-bibliography-commands):
23562 Add addbibresource. Basic Biblatex support.
23563
23564 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
23565
23566 * net/tramp-gvfs.el (top):
23567 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
23568 when loading package. (Bug#14447)
23569
23570 2013-05-23 Glenn Morris <rgm@gnu.org>
23571
23572 * progmodes/js.el: No need to load comint when compiling.
23573 (ring-insert, comint-send-string, comint-send-input)
23574 (comint-last-input-end, ido-chop): Declare.
23575
23576 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
23577 * vc/ediff-mult.el: Adjust requires.
23578 (ediff-directories-internal, ediff-directory-revisions-internal)
23579 (ediff-patch-file-internal): Declare.
23580 * vc/ediff-ptch.el: Adjust requires.
23581 (ediff-use-last-dir, ediff-buffers-internal): Declare.
23582 (ediff-find-file): Autoload.
23583 * vc/ediff-util.el: No need to load ediff when compiling.
23584 (ediff-regions-internal): Declare.
23585 * vc/ediff-wind.el: Adjust requires.
23586 (ediff-compute-toolbar-width): Define when compiling.
23587 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
23588 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
23589 (dired-get-filename, dired-get-marked-files)
23590 (ediff-last-dir-patch, ediff-patch-default-directory)
23591 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
23592 (ediff-patch-buffer-internal): Declare.
23593
23594 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
23595 (ispell-process, ispell-buffer-local-words, lm-summary)
23596 (lm-section-start, lm-section-end): Declare.
23597 (checkdoc-ispell-init): Simplify.
23598
23599 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
23600 (he-string-member, he-reset-string, he-substitute-string): Declare.
23601
23602 * eshell/em-ls.el: Adjust requires.
23603 (eshell-glob-regexp): Declare.
23604 * eshell/em-tramp.el: Adjust requires.
23605 (eshell-parse-command): Autoload.
23606 * eshell/em-xtra.el: Adjust requires.
23607 (eshell-parse-command): Autoload.
23608 * eshell/esh-ext.el: Adjust requires.
23609 (eshell-parse-command, eshell-close-handles): Autoload.
23610 * eshell/esh-io.el: Adjust requires.
23611 (eshell-output-filter): Autoload.
23612 * eshell/esh-util.el: No need to load tramp when compiling.
23613 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
23614 Declare.
23615 (eshell-parse-ange-ls): Require ange-ftp and tramp.
23616 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
23617 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
23618 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
23619 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
23620 * eshell/esh-opt.el, eshell/esh-proc.el:
23621 * eshell/esh-var.el: Adjust requires.
23622 * eshell/eshell.el: Do not require esh-util twice.
23623 (eshell-add-input-to-history): Declare.
23624 (eshell-command): Check history module is active before using it.
23625
23626 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
23627
23628 2013-05-22 Leo Liu <sdl.web@gmail.com>
23629
23630 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
23631
23632 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
23633
23634 * autorevert.el (auto-revert-notify-add-watch)
23635 (auto-revert-notify-handler): Add `attrib' for the inotify case,
23636 it indicates changes in file modification time.
23637
23638 2013-05-22 Glenn Morris <rgm@gnu.org>
23639
23640 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23641 Always delete the autoloaded function from the noruntime and
23642 unresolved functions lists.
23643
23644 * allout.el: No need to load epa, epg, overlay when compiling.
23645 (epg-context-set-passphrase-callback, epg-list-keys)
23646 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
23647 (epg-key-user-id-list): Declare.
23648
23649 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
23650 (viper-set-parsing-style-toggling-macro)
23651 (viper-set-emacs-state-searchstyle-macros):
23652 Use called-interactively-p on Emacs.
23653 (viper-looking-back): Make it an obsolete alias. Update callers.
23654 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
23655 Use looking-back rather than viper-looking-back.
23656 (viper-tmp-insert-at-eob, viper-enlarge-region)
23657 (viper-read-string-with-history, viper-register-to-point)
23658 (viper-append-to-register, viper-change-state-to-vi)
23659 (viper-backward-char-carefully, viper-forward-char-carefully)
23660 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
23661 (viper-change-state-to-emacs): Declare.
23662 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
23663 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
23664 * emulation/viper-mous.el: Do not load viper-cmd.
23665 (viper-backward-char-carefully, viper-forward-char-carefully)
23666 (viper-forward-word, viper-adjust-window): Declare.
23667
23668 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
23669
23670 * progmodes/idlw-help.el (idlwave-help-fontify):
23671 Use called-interactively-p.
23672
23673 * term/w32console.el (w32-get-console-codepage)
23674 (w32-get-console-output-codepage): Declare.
23675
23676 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
23677 Remove unnecessary declarations.
23678 (dframe-message): Doc fix.
23679
23680 * info.el (dframe-select-attached-frame, dframe-current-frame):
23681 Declare.
23682
23683 * speedbar.el (speedbar-message): Make it an obsolete alias.
23684 Update all callers.
23685 (speedbar-with-attached-buffer)
23686 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
23687 (speedbar-with-writable): Use backquote.
23688 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
23689 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
23690 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
23691 rather than speedbar- aliases.
23692 * mail/rmail.el: Load dframe rather than speedbar when compiling.
23693 (speedbar-make-specialized-keymap, speedbar-insert-button)
23694 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
23695 (speedbar-do-function-pointer): Declare.
23696 (rmail-speedbar-button, rmail-speedbar-find-file)
23697 (rmail-speedbar-move-message):
23698 Use dframe-with-attached-buffer rather than speedbar- alias.
23699 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
23700 (dframe-message, speedbar-make-specialized-keymap)
23701 (speedbar-add-expansion-list, speedbar-mode-functions-list)
23702 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
23703 (speedbar-insert-button, dframe-select-attached-frame)
23704 (dframe-maybee-jump-to-attached-frame)
23705 (speedbar-change-initial-expansion-list)
23706 (speedbar-previously-used-expansion-list-name): Declare.
23707 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
23708 Use dframe-message, dframe-with-attached-buffer rather than
23709 speedbar- aliases.
23710 (gud-sentinel): Silence compiler.
23711 * progmodes/vhdl-mode.el (speedbar-refresh)
23712 (speedbar-do-function-pointer, speedbar-add-supported-extension)
23713 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
23714 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
23715 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
23716 (speedbar-file-lists, speedbar-make-tag-line)
23717 (speedbar-line-directory, speedbar-goto-this-file)
23718 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
23719 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
23720 (speedbar-make-button, speedbar-reset-scanners)
23721 (speedbar-files-item-info, speedbar-line-text)
23722 (speedbar-find-file-in-frame, speedbar-set-timer)
23723 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
23724 (speedbar-with-writable): Do not (re)define it.
23725 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
23726 rather than speedbar- alias.
23727
23728 2013-05-21 Leo Liu <sdl.web@gmail.com>
23729
23730 * progmodes/octave.el (octave-mode-menu): Update and re-organize
23731 menu items.
23732 (octave-mode): Tweak fill-nobreak-predicate.
23733 (inferior-octave-startup): Check process to avoid infinite loop.
23734 (inferior-octave): Pop to buffer first to show abornmal process
23735 exit information.
23736
23737 2013-05-21 Glenn Morris <rgm@gnu.org>
23738
23739 * printing.el (pr-menu-bar): Define when compiling.
23740
23741 2013-05-21 Leo Liu <sdl.web@gmail.com>
23742
23743 * progmodes/octave.el (octave-auto-fill): Remove.
23744 (octave-indent-new-comment-line): Improve.
23745 (octave-mode): Use auto fill mode through
23746 comment-line-break-function and fill-nobreak-predicate.
23747 (octave-goto-function-definition): Support DEFUN_DLD.
23748 (octave-beginning-of-defun): Small tweak.
23749 (octave-help): Show parent directory.
23750
23751 2013-05-21 Glenn Morris <rgm@gnu.org>
23752
23753 * files.el (dired-unmark):
23754 * progmodes/gud.el (gdb-input): Update declarations.
23755
23756 * calculator.el (electric, ehelp): No need to load when compiling.
23757 (Electric-command-loop, electric-describe-mode): Declare.
23758
23759 * doc-view.el (doc-view-current-converter-processes): Move before use.
23760
23761 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
23762 Move MODE-set-explicitly definition before use.
23763
23764 * international/mule-diag.el (mule-diag):
23765 Don't use obsolete window-system-version.
23766
23767 * mail/feedmail.el (smtpmail): No need to load when compiling.
23768 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
23769
23770 * mail/mail-utils.el (rfc822): No need to load when compiling.
23771 (rfc822-addresses): Autoload it.
23772 (mail-strip-quoted-names): Trivial simplification.
23773
23774 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
23775 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
23776
23777 * net/snmp-mode.el (tempo): Don't duplicate requires.
23778
23779 * progmodes/prolog.el (info): No need to load when compiling.
23780 (comint): Require before shell requires it.
23781 (Info-goto-node): Autoload it.
23782 (Info-follow-nearest-node): Declare.
23783 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
23784
23785 * textmodes/artist.el (picture-mode-exit): Declare.
23786
23787 * textmodes/reftex-parse.el (reftex-parse-from-file):
23788 Trivial rewrite so the compiler can parse it better.
23789
23790 2013-05-20 Leo Liu <sdl.web@gmail.com>
23791
23792 * progmodes/octave.el (octave-help-mode-map)
23793 (octave-help-mode-finish-hook): New variables.
23794 (octave-help-mode, octave-help-mode-finish): New functions.
23795 (octave-help): Use octave-help-mode.
23796
23797 2013-05-20 Glenn Morris <rgm@gnu.org>
23798
23799 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
23800
23801 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
23802
23803 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
23804 start at point, so that expansion starting right after opening
23805 slash in a regexp is recognized.
23806 (ruby-syntax-before-regexp-re): New defvar, extracted from
23807 ruby-syntax-propertize-function. Since the value of this regexp
23808 is looked up at runtime now, we should be able to turn
23809 `ruby-syntax-methods-before-regexp' into a defcustom later.
23810 (ruby-syntax-propertize-function): Split regexp matching into two
23811 parts, for opening and closing slashes. That allows us to skip
23812 over string interpolations and support multiline regexps.
23813 Don't call `ruby-syntax-propertize-expansions', instead use another rule
23814 for them, which calls `ruby-syntax-propertize-expansion'.
23815 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
23816 call to `ruby-syntax-propertize-function'.
23817 (ruby-syntax-propertize-expansion): Extracted from
23818 `ruby-syntax-propertize-expansions'. Handles one expansion.
23819 (ruby-syntax-propertize-percent-literal): Leave point right after
23820 the percent symbol, so that the expression expansion rule can
23821 propertize the contents.
23822 (ruby-syntax-propertize-heredoc): Leave point at bol following the
23823 heredoc openers.
23824 (ruby-syntax-propertize-expansions): Remove.
23825
23826 2013-05-18 Juri Linkov <juri@jurta.org>
23827
23828 * man.el (Man-default-man-entry): Remove `-' from the end
23829 of the default value. (Bug#14400)
23830
23831 2013-05-18 Glenn Morris <rgm@gnu.org>
23832
23833 * comint.el (comint-password-prompt-regexp):
23834 Allow "password for XXX" where XXX contains colons (eg https://...).
23835
23836 2013-05-18 Leo Liu <sdl.web@gmail.com>
23837
23838 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
23839 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
23840 (octave-source-directories): Don't check process.
23841 (octave-source-directories, octave-find-definition): Doc fix.
23842
23843 2013-05-18 Glenn Morris <rgm@gnu.org>
23844
23845 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
23846 Remove backspace/delete bindings. (Bug#14392)
23847
23848 * cus-dep.el (custom-make-dependencies): Sort the output.
23849 (custom-versions-load-alist): Convert comment to doc.
23850
23851 2013-05-17 Leo Liu <sdl.web@gmail.com>
23852
23853 * newcomment.el (comment-search-backward): Stricter in finding
23854 comment start. (Bug#14303)
23855
23856 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
23857 (octave-comment-start-skip): Properly anchored.
23858
23859 2013-05-17 Leo Liu <sdl.web@gmail.com>
23860
23861 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
23862 Clean up when turned off. (Bug#14395)
23863 (smie--highlight-matching-block-overlay): No longer buffer-local.
23864 (smie-highlight-matching-block): Adjust.
23865
23866 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
23867
23868 Doc string fix for "nanoseconds" (Bug#14406).
23869 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
23870 Fix doc string typo that had "nanoseconds" instead of "microseconds".
23871
23872 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
23873
23874 * calc/calc-units.el (math-extract-units): Preserve powers
23875 of units.
23876
23877 2013-05-17 Leo Liu <sdl.web@gmail.com>
23878
23879 * subr.el (delete-consecutive-dups): New function.
23880 * ido.el (ido-set-matches-1): Use it.
23881 * progmodes/octave.el (inferior-octave-completion-table): Use it.
23882 * ido.el (ido-remove-consecutive-dups): Remove.
23883
23884 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
23885
23886 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
23887 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
23888 regexp-opt's `words'.
23889
23890 2013-05-16 Leo Liu <sdl.web@gmail.com>
23891
23892 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
23893 (smie--highlight-matching-block-overlay)
23894 (smie--highlight-matching-block-lastpos)
23895 (smie--highlight-matching-block-timer): New variables.
23896 (smie-highlight-matching-block): New function.
23897 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
23898 (smie-setup): Conditionally enable smie-blink-matching-open.
23899
23900 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
23901
23902 Sync with upstream verilog-mode r840.
23903 * progmodes/verilog-mode.el (verilog-mode-version)
23904 (verilog-mode-release-date): Update.
23905 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
23906 (verilog-sig-tieoff): Fix string error on
23907 AUTORESET with colon define, bug594. Reported by Andrew Hou.
23908 (verilog-read-decls): Fix parameters confusing
23909 AUTOINST interfaces, bug565. Reported by Leith Johnson.
23910
23911 2013-05-16 Eli Zaretskii <eliz@gnu.org>
23912
23913 * subr.el (reveal-filename): New function.
23914
23915 * loadup.el: Compute Emacs executable versions on MS-Windows,
23916 where executables have the .exe extension. Add a hard link
23917 emacs-XX.YY.ZZ.exe on MS-Windows.
23918
23919 * Makefile.in (XARGS_LIMIT): New variable.
23920 (custom-deps, finder-data, autoloads)
23921 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
23922 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
23923 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
23924 (compile-main): Limit xargs according to $(XARGS_LIMIT).
23925
23926 2013-05-16 Leo Liu <sdl.web@gmail.com>
23927
23928 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
23929 (octave-mode-menu, octave-mode-map): Remove its uses.
23930
23931 2013-05-16 Reto Zimmermann <reto@gnu.org>
23932
23933 Sync with upstream vhdl mode v3.34.2.
23934 * progmodes/vhdl-mode.el: Use `push' throughout.
23935 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
23936 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
23937 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
23938 (vhdl-actual-generic-name): New option to derive actual generic name.
23939 (vhdl-port-paste-signals): Replace formal by actual generics.
23940 (vhdl-beautify): New name for old group vhdl-align. Update users.
23941 (vhdl-beautify-options): New option.
23942 (vhdl-last-input-event): New compat alias. Use throughout.
23943 (vhdl-goto-line): Replace user level function `goto-line'.
23944 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
23945 vhdl-fix-statement-buffer.
23946 (vhdl-create-mode-menu): Add some entries.
23947 (vhdl-align-region-groups): Respect vhdl-beautify-options.
23948 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
23949 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
23950 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
23951 to force statements on one line.
23952 (vhdl-remove-trailing-spaces-region):
23953 New, split from vhdl-remove-trailing-spaces.
23954 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
23955 Respect vhdl-beautify-options.
23956 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
23957 (vhdl-update-sensitivity-list): Not add with index if exists without.
23958 Not include array index with signal. Ignore keywords in comments.
23959 (vhdl-get-visible-signals): Regexp tweaks.
23960 (vhdl-template-component-inst): Handle empty library.
23961 (vhdl-template-type): Add template for 'enum' type.
23962 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
23963 Use vhdl-replace-string.
23964 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
23965 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
23966 (vhdl-speedbar-initialize): Update for above name change.
23967 (vhdl-compose-wire-components): Fix in handling of constants.
23968 (vhdl-error-regexp-emacs-alist): New variable.
23969 (vhdl-error-regexp-add-emacs): New function;
23970 adds support for new compile.el (Emacs 22+)
23971 (vhdl-generate-makefile-1): Change target order for single lib. units.
23972 Allow use of absolute file names.
23973
23974 2013-05-16 Leo Liu <sdl.web@gmail.com>
23975
23976 * simple.el (prog-indent-sexp): Indent enclosing defun.
23977
23978 2013-05-15 Glenn Morris <rgm@gnu.org>
23979
23980 * cus-start.el (show-trailing-whitespace): Move to editing basics.
23981 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
23982 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
23983 (whitespace-highlight): Move to whitespace group.
23984
23985 * comint.el (comint-source):
23986 * pcmpl-linux.el (pcmpl-linux):
23987 * shell.el (shell-faces):
23988 * eshell/esh-opt.el (eshell-opt):
23989 * international/ccl.el (ccl): Remove empty custom groups.
23990
23991 * completion.el (dynamic-completion-mode):
23992 * jit-lock.el (jit-lock-debug-mode):
23993 * minibuffer.el (completion-in-region-mode):
23994 * type-break.el (type-break-mode-line-message-mode)
23995 (type-break-query-mode):
23996 * emulation/tpu-edt.el (tpu-edt-mode):
23997 * progmodes/subword.el (global-subword-mode, global-superword-mode):
23998 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
23999 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
24000
24001 * term/xterm.el (xterm): Change parent group to terminals.
24002
24003 * master.el (master): Remove empty custom group.
24004 (master-mode): Remove unused :group argument.
24005 * textmodes/refill.el (refill): Remove empty custom group.
24006 (refill-mode): Remove unused :group argument.
24007
24008 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
24009
24010 * cus-dep.el: Provide a feature.
24011 (custom-make-dependencies): Ignore dotfiles (dir-locals).
24012 Don't mistakenly ignore files whose basenames match a basename
24013 from preloaded-file-list (eg cedet/ede/simple.el).
24014 Add a fallback method for getting :group.
24015
24016 2013-05-15 Juri Linkov <juri@jurta.org>
24017
24018 * isearch.el (isearch-char-by-name): Rename from
24019 `isearch-insert-char-by-name'. Doc fix.
24020 (isearch-forward): Mention `isearch-char-by-name' in
24021 the docstring. (Bug#13348)
24022
24023 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
24024 `exit-minibuffer' instead of
24025 `isearch-nonincremental-exit-minibuffer'.
24026 (isearch-edit-string): Remove mention of
24027 `isearch-nonincremental-exit-minibuffer' from docstring.
24028 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
24029 (isearch-forward-exit-minibuffer)
24030 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
24031
24032 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
24033
24034 * loadup.el: Just use unversioned DOC.
24035
24036 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
24037 literals as extending to EOB.
24038 (nxml-last-fontify-end): Remove unused variable.
24039 (nxml-after-change1): Use with-silent-modifications.
24040 (nxml-extend-after-change-region): Simplify.
24041 (nxml-extend-after-change-region1): Remove function.
24042 (nxml-after-change1): Don't adjust for dependent regions.
24043 (nxml-fontify-matcher): Simplify.
24044 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
24045 (xmltok-add-dependent): Remove function.
24046 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
24047 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
24048 (xmltok-scan-prolog-after-processing-instruction-open): Treat
24049 unclosed <[[, <?, comment, and other literals as extending to EOB.
24050 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
24051 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
24052 Remove functions.
24053 (rng-do-some-validation-1): Don't mark dependent regions.
24054 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
24055 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
24056 (nxml-clear-dependent-regions): Remove functions.
24057 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
24058 (nxml-ensure-scan-up-to-date):
24059 Don't clear&mark dependent regions.
24060
24061 2013-05-15 Leo Liu <sdl.web@gmail.com>
24062
24063 * progmodes/octave.el (octave-goto-function-definition):
24064 Improve and fix callers.
24065
24066 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
24067
24068 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
24069 the setter (bug#14387).
24070
24071 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
24072 surrounding group (bug#14402).
24073
24074 2013-05-14 Juri Linkov <juri@jurta.org>
24075
24076 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
24077 (Bug#14390)
24078
24079 2013-05-14 Glenn Morris <rgm@gnu.org>
24080
24081 * progmodes/f90.el (f90-imenu-generic-expression):
24082 Fix typo in 2013-05-08 change. (Bug#14402)
24083
24084 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
24085
24086 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
24087 Remove signals for which replies are never received.
24088
24089 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
24090
24091 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
24092 (gdb-handler-alist, gdb-handler-number): Remove variables.
24093 (gdb-handler-list): New variable.
24094 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
24095 (gdb-pending-handler-p, gdb-handle-reply)
24096 (gdb-remove-all-pending-triggers): New functions.
24097 (gdb-discard-unordered-replies): New defcustom.
24098 (gdb-handler): New defstruct.
24099 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
24100 instead of gdb-pending-triggers. Update docstring.
24101 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
24102 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
24103 (gdb-var-update-handler, def-gdb-auto-update-trigger)
24104 (def-gdb-auto-update-handler, gdb-get-changed-registers)
24105 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
24106 (gdb-frame-handler): Pending triggers are now automatically managed.
24107 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
24108 Remove argument.
24109 (gdb-input): Automatically handles pending triggers. Update docstring.
24110 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
24111 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
24112 Update comments.
24113 (gdb-done-or-error): Now use gdb-handle-reply.
24114
24115 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
24116
24117 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
24118 gdb-debug-log.
24119
24120 2013-05-14 Glenn Morris <rgm@gnu.org>
24121
24122 * subr.el (user-emacs-directory-warning): New option.
24123 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
24124
24125 2013-05-14 Leo Liu <sdl.web@gmail.com>
24126
24127 * progmodes/octave.el (octave-font-lock-keywords): Fix error
24128 during redisplay.
24129 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
24130 (octave-font-lock-texinfo-comment): Fix invalid search bound
24131 error: wrong side of point.
24132
24133 2013-05-14 Glenn Morris <rgm@gnu.org>
24134
24135 * progmodes/flymake.el (flymake-xml-program): New option.
24136 (flymake-xml-init): Use it.
24137
24138 * term/xterm.el: Provide a feature.
24139
24140 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
24141
24142 2013-05-13 Glenn Morris <rgm@gnu.org>
24143
24144 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
24145 Add compat aliases as a hack workaround. (Bug#14384)
24146
24147 2013-05-13 Leo Liu <sdl.web@gmail.com>
24148
24149 * progmodes/octave.el (octave-indent-comment): Fix indentation for
24150 ###, and %!.
24151 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
24152 C-M-q.
24153 (octave-comment-start-skip): Include %!.
24154 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
24155
24156 2013-05-12 Leo Liu <sdl.web@gmail.com>
24157
24158 * progmodes/octave.el (inferior-octave-startup): Store the value
24159 of __octave_srcdir__ for octave-source-directories.
24160 (inferior-octave-check-process): New function refactored out of
24161 inferior-octave-send-list-and-digest.
24162 (octave-source-directories)
24163 (octave-find-definition-filename-function): New variables.
24164 (octave-source-directories)
24165 (octave-find-definition-default-filename): New functions.
24166 (octave-find-definition): Improve to find functions implemented in C++.
24167
24168 2013-05-12 Glenn Morris <rgm@gnu.org>
24169
24170 * calendar/diary-lib.el (diary-outlook-format-1):
24171 Don't include dayname in the output. (Bug#14349)
24172
24173 2013-05-11 Glenn Morris <rgm@gnu.org>
24174
24175 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
24176
24177 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
24178 Treat cc-provide like provide.
24179
24180 2013-05-11 Kevin Ryde <user42@zip.com.au>
24181
24182 * cus-dep.el (custom-make-dependencies):
24183 Use generated-autoload-load-name for the sake of files such
24184 such cedet/semantic/bovine/c.el, where the base file name
24185 is not in load-path. (Bug#5277)
24186
24187 2013-05-11 Glenn Morris <rgm@gnu.org>
24188
24189 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
24190 Provide features.
24191
24192 2013-05-11 Leo Liu <sdl.web@gmail.com>
24193
24194 * progmodes/octave.el (octave-indent-comment): Improve.
24195 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
24196 (octave-eldoc-function-signatures, octave-eldoc-function):
24197 New functions.
24198 (octave-mode, inferior-octave-mode): Add eldoc support.
24199
24200 2013-05-11 Richard Stallman <rms@gnu.org>
24201
24202 * epa.el (epa-decrypt-file): Take output file name as argument
24203 and read it using `interactive'.
24204
24205 2013-05-11 Leo Liu <sdl.web@gmail.com>
24206
24207 * progmodes/octave.el (octave-beginning-of-line)
24208 (octave-end-of-line): Check before using up-list because it jumps
24209 out of more syntactic contructs since moving to smie.
24210 (octave-indent-comment): New function.
24211 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
24212 (octave-begin-keywords, octave-end-keywords)
24213 (octave-reserved-words, octave-smie-bnf-table)
24214 (octave-smie-rules): Add new keywords from Octave 3.6.4.
24215
24216 2013-05-11 Glenn Morris <rgm@gnu.org>
24217
24218 * faces.el (internal-face-x-get-resource):
24219 * frame.el (ns-display-monitor-attributes-list):
24220 * calc/calc-aent.el (math-to-radians-2):
24221 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
24222 Fix declarations.
24223
24224 * calc/calc-menu.el: Make it loadable in isolation.
24225
24226 * net/eudcb-bbdb.el: Make it loadable without bbdb.
24227 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
24228 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
24229 (eudc-bbdb-query-internal): Require 'bbdb.
24230
24231 * lpr.el (lpr-headers-switches):
24232 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
24233
24234 * progmodes/sql.el (sql-login-params): Fix and improve :type.
24235
24236 * emulation/edt-mapper.el: In batch mode, error rather than hang.
24237
24238 * term.el (term-set-escape-char): Make it idempotent.
24239
24240 2013-05-10 Leo Liu <sdl.web@gmail.com>
24241
24242 * progmodes/octave.el (inferior-octave-completion-table):
24243 No longer a function and all uses changed. Use cache to speed up
24244 completion due to bug#11906.
24245 (octave-beginning-of-defun): Re-write to be more general.
24246
24247 2013-05-10 Glenn Morris <rgm@gnu.org>
24248
24249 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
24250
24251 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
24252
24253 * comint.el (comint-redirect-send-command-to-process): Use :around
24254 rather than :override for comint-redirect-filter.
24255 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
24256 Call it instead of comint-redirect-original-filter-function (which
24257 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
24258
24259 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
24260
24261 * frame.el (display-monitor-attributes-list): Add NS case.
24262 (ns-display-monitor-attributes-list): Declare.
24263
24264 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
24265
24266 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
24267
24268 2013-05-09 Glenn Morris <rgm@gnu.org>
24269
24270 * international/fontset.el (vertical-centering-font-regexp):
24271 Set standard-value.
24272
24273 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
24274
24275 * bookmark.el (bookmark-search-delay):
24276 * cus-start.el (vertical-centering-font-regexp):
24277 * ps-mule.el (ps-mule-font-info-database-default):
24278 * ps-print.el (ps-default-fg, ps-default-bg):
24279 * type-break.el (type-break-good-break-interval):
24280 * whitespace.el (whitespace-indentation-regexp)
24281 (whitespace-space-after-tab-regexp):
24282 * emacs-lisp/testcover.el (testcover-1value-functions)
24283 (testcover-noreturn-functions, testcover-progn-functions)
24284 (testcover-prog1-functions):
24285 * emulation/viper-init.el (viper-emacs-state-cursor-color):
24286 * eshell/em-glob.el (eshell-glob-translate-alist):
24287 * play/tetris.el (tetris-tty-colors):
24288 * progmodes/cpp.el (cpp-face-default-list):
24289 * progmodes/flymake.el (flymake-allowed-file-name-masks):
24290 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
24291 (idlwave-help-browser-generic-args):
24292 * progmodes/make-mode.el (makefile-special-targets-list):
24293 * progmodes/python.el (python-shell-virtualenv-path):
24294 * progmodes/verilog-mode.el (verilog-active-low-regexp)
24295 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
24296 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
24297 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
24298 * textmodes/reftex-vars.el (reftex-format-label-function):
24299 * textmodes/remember.el (remember-diary-file): Fix custom types.
24300
24301 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
24302 Add :version.
24303
24304 2013-05-09 Leo Liu <sdl.web@gmail.com>
24305
24306 * progmodes/octave.el (inferior-octave-completion-at-point):
24307 Restore file completion. (Bug#14300)
24308 (inferior-octave-startup): Fix incorrect highlighting for the
24309 first prompt.
24310
24311 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
24312
24313 * progmodes/ruby-mode.el: First cut at SMIE support.
24314 (ruby-use-smie): New var.
24315 (ruby-smie-grammar): New constant.
24316 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
24317 (ruby-smie--forward-token, ruby-smie--backward-token)
24318 (ruby-smie-rules): New functions.
24319 (ruby-mode-variables): Setup SMIE if applicable.
24320
24321 2013-05-08 Eli Zaretskii <eliz@gnu.org>
24322
24323 * simple.el (line-move-visual): Signal beginning/end of buffer
24324 only if vertical-motion moved less than it was requested. Avoids
24325 silly incorrect error messages when there are display strings with
24326 multiple newlines at EOL.
24327
24328 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
24329
24330 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
24331 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
24332 (prolog-char-quote-workaround):
24333 * progmodes/cperl-mode.el (cperl-under-as-char):
24334 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
24335 Mark as obsolete.
24336 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
24337 their declaration.
24338 (vhdl-mode-syntax-table-init): Remove.
24339
24340 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
24341 last change.
24342
24343 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
24344 syntax for "_".
24345 (ld-script-font-lock-keywords):
24346 Change regexps to use things like \_< and \_>.
24347
24348 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
24349 Change all regexps to use things like \_< and \_>.
24350
24351 * progmodes/autoconf.el (autoconf-definition-regexp)
24352 (autoconf-font-lock-keywords, autoconf-current-defun-function):
24353 Handle a _ with symbol syntax.
24354 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
24355
24356 * progmodes/ada-mode.el (ada-mode-abbrev-table):
24357 Consolidate declaration.
24358 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
24359 the declaration.
24360 (ada-create-syntax-table): Remove.
24361 (ada-capitalize-word): Don't mess with the syntax of "_" since it
24362 already has the right syntax nowadays.
24363 (ada-goto-next-word): Don't change the syntax of "_".
24364
24365 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
24366 with-wrapper-hook.
24367
24368 2013-05-08 Sam Steingold <sds@gnu.org>
24369
24370 * thingatpt.el (thing-at-point): Accept optional second argument
24371 NO-PROPERTIES to strip the text properties from the return value.
24372 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
24373 to `thing-at-point' instead of stripping the properties ourselves.
24374 Also, when `thing-at-point' fails to find a url, prepend "http://"
24375 to the filename at point on the assumption that the user is
24376 pointing at something like gnu.org/gnu.
24377
24378 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
24379
24380 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
24381 * faces.el (crm-separator):
24382 Silence byte-compiler.
24383
24384 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
24385 (tool-bar-map): Remove unneeded defvars.
24386
24387 2013-05-08 Leo Liu <sdl.web@gmail.com>
24388
24389 Re-work a fix for bug#10994 based on Le Wang's patch.
24390 * ido.el (ido-remove-consecutive-dups): New helper.
24391 (ido-completing-read): Use it.
24392 (ido-chop): Revert fix for bug#10994.
24393
24394 2013-05-08 Adam Spiers <emacs@adamspiers.org>
24395
24396 * cus-edit.el (custom-save-variables):
24397 Pretty-print long values. (Bug#14187)
24398
24399 2013-05-08 Glenn Morris <rgm@gnu.org>
24400
24401 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
24402 (m4-mode-syntax-table): Init in the defvar.
24403 (m4-mode-abbrev-table): Let define-derived-mode define it.
24404
24405 2013-05-08 Tom Tromey <tromey@redhat.com>
24406
24407 * progmodes/m4-mode.el (m4-mode-syntax-table):
24408 Do not treat "_" as word constituent. (Bug#14167)
24409
24410 2013-05-07 Glenn Morris <rgm@gnu.org>
24411
24412 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
24413 Remove explicit eshell-isearch-cancel-map.
24414
24415 * progmodes/f90.el (f90-smart-end-names): New option.
24416 (f90-smart-end): Doc fix.
24417 (f90-end-block-optional-name): New constant.
24418 (f90-block-match): Respect f90-smart-end-names.
24419
24420 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
24421
24422 * progmodes/octave.el (octave-smie-forward-token): Be more careful
24423 about implicit semi-colons (bug#14218).
24424
24425 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24426
24427 * frame.el (display-monitor-attributes-list)
24428 (frame-monitor-attributes): New functions.
24429
24430 2013-05-06 Leo Liu <sdl.web@gmail.com>
24431
24432 * progmodes/octave.el (octave-syntax-propertize-function): Change
24433 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
24434 (octave-font-lock-keywords): Use octave-operator-regexp.
24435 (octave-completion-at-point): Rename from
24436 octave-completion-at-point-function.
24437 (inferior-octave-directory-tracker): Robustify.
24438 (octave-text-functions): Remove and fix its uses. No such things
24439 any more.
24440
24441 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
24442
24443 * emacs-lisp/trace.el (trace--display-buffer): New function.
24444 (trace-make-advice): Use it.
24445
24446 2013-05-06 Juri Linkov <juri@jurta.org>
24447
24448 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
24449 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
24450 Doc fix.
24451 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
24452 in the help string. (Bug#12985)
24453
24454 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
24455
24456 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
24457
24458 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
24459
24460 * progmodes/perl-mode.el: Add support for here documents.
24461 (perl-syntax-propertize-function): Match here-doc markers.
24462 (perl-syntax-propertize-special-constructs): Find their end.
24463 (perl-imenu-generic-expression): Use [:alnum:].
24464
24465 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
24466 (advice--add-function): Refresh the advice if already present
24467 (bug#14317).
24468
24469 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
24470
24471 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
24472
24473 2013-05-06 Glenn Morris <rgm@gnu.org>
24474
24475 * w32-fns.el (w32-charset-info-alist): Declare.
24476
24477 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
24478 of its defcustom properties.
24479 (eshell-cmpl-initialize): No need to load pcomplete.
24480
24481 * generic-x.el: No need to require comint when compiling.
24482
24483 * net/eudc-export.el: Make it loadable without bbdb.
24484 (top-level): Use require rather than load-library.
24485 (eudc-create-bbdb-record, eudc-bbdbify-phone)
24486 (eudc-batch-export-records-to-bbdb)
24487 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
24488 Require bbdb.
24489
24490 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
24491
24492 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
24493 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
24494 some tweaks, instead.
24495
24496 2013-05-05 Leo Liu <sdl.web@gmail.com>
24497
24498 * progmodes/octave.el (octave-font-lock-keywords)
24499 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
24500 (inferior-octave-send-list-and-digest): Improve error message.
24501 (octave-mode, inferior-octave-mode): Use setq-local.
24502 (octave-help): Set info-lookup-mode.
24503
24504 2013-05-05 Richard Stallman <rms@gnu.org>
24505
24506 * vc/compare-w.el (compare-windows-whitespace):
24507 Treat no-break space as whitespace.
24508
24509 * mail/rmailsum.el (rmail-summary-rmail-update):
24510 Detect empty summary and don't change selected message.
24511 (rmail-summary-goto-msg): Likewise.
24512
24513 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
24514 Doc fixes, rename args.
24515
24516 2013-05-05 Alan Mackenzie <acm@muc.de>
24517
24518 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
24519
24520 2013-05-05 Juri Linkov <juri@jurta.org>
24521
24522 * info.el (Info-read-subfile): Use (point-min) instead of (point)
24523 to not add the length of the summary segment to the return value.
24524 (Bug#14125)
24525
24526 2013-05-05 Leo Liu <sdl.web@gmail.com>
24527
24528 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
24529 (inferior-octave-output-filter): Remove.
24530 (octave-send-region, inferior-octave-startup): Fix callers.
24531 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
24532 (octave-binary-file-extensions): New user variable.
24533 (octave-find-definition): Confirm if opening binary files.
24534 (octave-help-file): Use octave-find-definition to get the binary
24535 confirmation.
24536 (octave-help): Adjust for octave-help-file change.
24537
24538 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
24539
24540 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
24541 Merge the two entries that handle function definitions.
24542 (pascal--syntax-propertize): New const.
24543 (pascal-mode): Use it. Use setq-local.
24544
24545 2013-05-04 Glenn Morris <rgm@gnu.org>
24546
24547 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
24548 (diary-from-outlook): Respect diary-from-outlook-function.
24549
24550 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
24551
24552 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
24553 Move the declaration from C.
24554 (read-minibuffer, eval-minibuffer): Move from C.
24555 (completion-setup-function): Avoid minibuffer-completion-contents.
24556
24557 2013-05-03 Leo Liu <sdl.web@gmail.com>
24558
24559 * progmodes/octave.el (octave-font-lock-keywords): Do not
24560 dehighlight 'end' in comments or strings.
24561 (octave-completing-read, octave-goto-function-definition):
24562 New helpers.
24563 (octave-help-buffer): New user variable.
24564 (octave-help-file, octave-help-function): New button types.
24565 (octave-help): New command and bind it to C-h ;.
24566 (octave-find-definition): New command and bind it to M-.
24567 (user-error): Alias to error if not defined.
24568
24569 2013-05-02 Leo Liu <sdl.web@gmail.com>
24570
24571 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
24572 for \. (bug#14332)
24573 (octave-font-lock-keywords): Include [ and {.
24574
24575 2013-05-02 Leo Liu <sdl.web@gmail.com>
24576
24577 * progmodes/octave.el (inferior-octave-startup-file): Change default.
24578 (inferior-octave): Remove calling comint-mode and return the buffer.
24579 (inferior-octave-startup): Cosmetic changes.
24580
24581 2013-05-02 Leo Liu <sdl.web@gmail.com>
24582
24583 * progmodes/octave.el (octave-syntax-propertize-function):
24584 Include the case when ' is at line beginning. (Bug#14336)
24585
24586 2013-05-02 Glenn Morris <rgm@gnu.org>
24587
24588 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
24589 * desktop.el (vc-dir-mode): Just autoload it here.
24590
24591 2013-05-02 Alan Mackenzie <acm@muc.de>
24592
24593 Eliminate variable c-standard-font-lock-fontify-region-function.
24594 * progmodes/cc-mode.el
24595 (c-standard-font-lock-fontify-region-function): Remove.
24596 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
24597
24598 2013-05-01 Leo Liu <sdl.web@gmail.com>
24599
24600 * progmodes/octave.el: Compatible with older emacs-24 releases.
24601 (inferior-octave-has-built-in-variables): Remove. Built-in
24602 variables were removed from Octave in 2007.
24603 (inferior-octave-startup): Fix uses.
24604 (comint-line-beginning-position): Remove compatibility code for
24605 emacs 21.
24606
24607 2013-05-01 Juri Linkov <juri@jurta.org>
24608
24609 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
24610
24611 2013-05-01 Juri Linkov <juri@jurta.org>
24612
24613 * comint.el (comint-previous-matching-input): Don't print message
24614 "History item: %d" when `isearch-mode' is active.
24615 (comint-history-isearch-message): Print message "History item: %d"
24616 when `comint-input-ring-index' is not empty and this function is
24617 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
24618
24619 2013-05-01 Leo Liu <sdl.web@gmail.com>
24620
24621 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
24622 definitions. Use completion-at-point to insert keywords.
24623 (octave-abbrev-start): Remove.
24624 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
24625
24626 2013-04-30 Leo Liu <sdl.web@gmail.com>
24627
24628 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
24629 change.
24630
24631 2013-04-30 Alan Mackenzie <acm@muc.de>
24632
24633 Handle arbitrarily long C++ member initialization lists.
24634 * progmodes/cc-engine.el (c-back-over-member-initializers):
24635 new function.
24636 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
24637 (most) member init lists.
24638
24639 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
24640
24641 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
24642 variable.
24643
24644 2013-04-30 Leo Liu <sdl.web@gmail.com>
24645
24646 * progmodes/octave.el (octave-variables): Remove. No builtin
24647 variables any more. All converted to functions.
24648 (octave-font-lock-keywords, octave-completion-at-point-function):
24649 Fix uses.
24650 (octave-font-lock-texinfo-comment): New user variable.
24651 (octave-texinfo-font-lock-keywords): New variable for texinfo
24652 comment block.
24653 (octave-function-comment-block): New face.
24654 (octave-font-lock-texinfo-comment): New function.
24655 (octave-mode): Font lock texinfo comment block.
24656
24657 2013-04-29 Leo Liu <sdl.web@gmail.com>
24658
24659 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
24660 indexing expression.
24661 (octave-continuation-string): Do not use \.
24662 (inferior-octave-complete-impossible): Remove.
24663 (inferior-octave-completion-table)
24664 (inferior-octave-completion-at-point): Remove its uses.
24665 (inferior-octave-startup): completion_matches was introduced to
24666 Octave in 1996 so safe to assume it.
24667 (octave-function-file-comment): Improve to follow how Octave does it.
24668 (octave-update-function-file-comment): Tweak.
24669
24670 2013-04-29 Leo Liu <sdl.web@gmail.com>
24671
24672 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
24673 (inferior-octave-startup): Remove inferior-octave-startup-hook.
24674 (octave-function-file-comment): Fix typo.
24675 (octave-sync-function-file-names): Use read-char-choice.
24676
24677 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
24678
24679 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
24680 to t for the less important warnings.
24681
24682 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
24683
24684 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
24685
24686 2013-04-27 Glenn Morris <rgm@gnu.org>
24687
24688 * vc/log-view.el (log-view-current-entry):
24689 Treat "---" separator lines as part of the following rev. (Bug#14169)
24690
24691 2013-04-27 Juri Linkov <juri@jurta.org>
24692
24693 * subr.el (read-number): Doc fix about using it by interactive
24694 code letter `n'. (Bug#14254)
24695
24696 2013-04-27 Juri Linkov <juri@jurta.org>
24697
24698 * desktop.el (desktop-auto-save-timeout): New option.
24699 (desktop-file-checksum): New variable.
24700 (desktop-save): Add optional arg `auto-save' and don't auto-save
24701 if nothing changed.
24702 (desktop-auto-save-timer): New variable.
24703 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
24704 (after-init-hook): Call `desktop-auto-save-set-timer'.
24705 Suggested by Reuben Thomas <rrt@sc3d.org> in
24706 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
24707
24708 2013-04-27 Leo Liu <sdl.web@gmail.com>
24709
24710 * progmodes/octave.el (octave-function-file-p)
24711 (octave-skip-comment-forward, octave-function-file-comment)
24712 (octave-update-function-file-comment): New functions.
24713 (octave-mode-map): Bind C-c ; to
24714 octave-update-function-file-comment.
24715 (octave-mode-menu): Add octave-update-function-file-comment.
24716 (octave-mode, inferior-octave-mode): Fix doc-string.
24717 (octave-insert-defun): Conform to Octave's coding convention.
24718 (Bug#14285)
24719
24720 * files.el (basic-save-buffer): Don't let errors in
24721 before-save-hook prevent saving buffer.
24722
24723 2013-04-20 Roland Winkler <winkler@gnu.org>
24724
24725 * faces.el (read-face-name): Use completing-read if arg multiple
24726 is nil.
24727
24728 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
24729
24730 * ls-lisp.el (ls-lisp-insert-directory): If no files are
24731 displayed, move point to after the totals line.
24732 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
24733 for the details.
24734
24735 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
24736
24737 * emacs-lisp/package.el (package-autoload-ensure-default-file):
24738 Add current dir to the load-path.
24739 (package-generate-autoloads): Don't rely on
24740 autoload-ensure-default-file.
24741
24742 2013-04-26 Reuben Thomas <rrt@sc3d.org>
24743
24744 * textmodes/remember.el (remember-store-in-files): Document that
24745 the file name format is passed to `format-time-string'.
24746
24747 2013-04-26 Leo Liu <sdl.web@gmail.com>
24748
24749 * progmodes/octave.el (octave-sync-function-file-names): New function.
24750 (octave-mode): Use it in before-save-hook.
24751
24752 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
24753
24754 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
24755 (bug#14274).
24756
24757 * progmodes/octave.el (octave-smie-forward-token): Properly skip
24758 \n and comment, even if it's not an implicit ; (bug#14218).
24759
24760 2013-04-26 Glenn Morris <rgm@gnu.org>
24761
24762 * subr.el (read-number): Once more use `read' rather than
24763 `string-to-number', to trap non-numeric input. (Bug#14254)
24764
24765 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
24766
24767 * emacs-lisp/syntax.el (syntax-propertize-multiline):
24768 Use `syntax-multiline' text property consistently instead of
24769 `font-lock-multiline'. (Bug#14237)
24770
24771 2013-04-26 Glenn Morris <rgm@gnu.org>
24772
24773 * emacs-lisp/shadow.el (list-load-path-shadows):
24774 No longer necessary to check for duplicate simple.el, since
24775 2012-07-07 change to init_lread to not include installation lisp
24776 directories in load-path when running uninstalled. (Bug#14270)
24777
24778 2013-04-26 Leo Liu <sdl.web@gmail.com>
24779
24780 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
24781 (octave-mode, inferior-octave-mode): Use setq-local.
24782 (octave-not-in-string-or-comment-p): Rename to
24783 octave-in-string-or-comment-p.
24784 (octave-in-comment-p, octave-in-string-p)
24785 (octave-in-string-or-comment-p): Replace defsubst with defun.
24786
24787 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
24788
24789 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
24790
24791 2013-04-25 Bastien Guerry <bzg@gnu.org>
24792
24793 * textmodes/remember.el (remember-data-directory)
24794 (remember-directory-file-name-format): Fix custom types.
24795
24796 2013-04-25 Leo Liu <sdl.web@gmail.com>
24797
24798 * progmodes/octave.el (octave-completion-at-point-function):
24799 Make use of inferior octave process.
24800 (octave-initialize-completions): Remove.
24801 (inferior-octave-completion-table): New function.
24802 (inferior-octave-completion-at-point): Use it.
24803 (octave-completion-alist): Remove.
24804
24805 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
24806
24807 * progmodes/opascal.el: Use font-lock and syntax-propertize.
24808 (opascal-mode-syntax-table): New var.
24809 (opascal-literal-kind, opascal-is-literal-end)
24810 (opascal-literal-token-at): Rewrite.
24811 (opascal--literal-start-re, opascal-font-lock-keywords)
24812 (opascal--syntax-propertize): New constants.
24813 (opascal-font-lock-defaults): Adjust.
24814 (opascal-mode): Use them. Set comment-<foo> variables as well.
24815 (delphi-comment-face, opascal-comment-face, delphi-string-face)
24816 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
24817 (delphi-other-face, opascal-other-face): Remove face variables.
24818 (opascal-save-state): Remove macro.
24819 (opascal-fontifying-progress-step): Remove constant.
24820 (opascal--ignore-changes): Remove var.
24821 (opascal-set-token-property, opascal-parse-next-literal)
24822 (opascal-is-stable-literal, opascal-complete-literal)
24823 (opascal-is-literal-start, opascal-face-of)
24824 (opascal-parse-region, opascal-parse-region-until-stable)
24825 (opascal-fontify-region, opascal-after-change)
24826 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
24827 (opascal-debug-parse-region, opascal-debug-parse-window)
24828 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
24829 (opascal-debug-fontify-buffer): Remove.
24830 (opascal-debug-mode-map): Adjust accordingly.
24831
24832 2013-04-25 Leo Liu <sdl.web@gmail.com>
24833
24834 Merge octave-mod.el and octave-inf.el into octave.el with some
24835 cleanups.
24836 * progmodes/octave.el: New file renamed from octave-mod.el.
24837 * progmodes/octave-inf.el: Merged into octave.el.
24838 * progmodes/octave-mod.el: Renamed to octave.el.
24839
24840 2013-04-25 Tassilo Horn <tsdh@gnu.org>
24841
24842 * textmodes/reftex-vars.el
24843 (reftex-label-ignored-macros-and-environments): New defcustom.
24844
24845 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
24846
24847 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
24848
24849 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
24850 (smie-indent-keyword): Improve the check to ensure that the next
24851 comment is really on the same line.
24852 (smie-indent-comment): Don't align with a subsequent closer (or eob).
24853
24854 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
24855 semi-colons if the line is not otherwise empty (bug#14218).
24856
24857 2013-04-25 Glenn Morris <rgm@gnu.org>
24858
24859 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
24860
24861 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
24862
24863 * progmodes/opascal.el (opascal-set-token-property): Rename from
24864 opascal-set-text-properties and only set `token' (bug#14134).
24865 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
24866 (opascal-literal-text-properties): Remove.
24867 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
24868 Adjust callers.
24869
24870 2013-04-24 Reuben Thomas <rrt@sc3d.org>
24871
24872 * textmodes/remember.el (remember-handler-functions): Add an
24873 option for a new handler `remember-store-in-files'.
24874 (remember-data-directory, remember-directory-file-name-format):
24875 New options.
24876 (remember-store-in-files): New function to store remember notes
24877 as separate files within a directory.
24878
24879 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
24880
24881 * progmodes/compile.el (compilation-next-error-function):
24882 Pass "formats" to compilation-find-file (bug#11777).
24883
24884 2013-04-24 Glenn Morris <rgm@gnu.org>
24885
24886 * vc/vc-bzr.el (vc-bzr-print-log):
24887 * vc/vc-hg.el (vc-hg-print-log):
24888 * vc/vc-svn.el (vc-svn-print-log):
24889 Fix START-REVISION with LIMIT != 1. (Bug#14168)
24890
24891 * vc/vc-bzr.el (vc-bzr-print-log):
24892 * vc/vc-cvs.el (vc-cvs-print-log):
24893 * vc/vc-git.el (vc-git-print-log):
24894 * vc/vc-hg.el (vc-hg-print-log):
24895 * vc/vc-mtn.el (vc-mtn-print-log):
24896 * vc/vc-rcs.el (vc-rcs-print-log):
24897 * vc/vc-sccs.el (vc-sccs-print-log):
24898 * vc/vc-svn.el (vc-svn-print-log):
24899 * vc/vc.el (vc-print-log-internal): Doc fixes.
24900
24901 2013-04-23 Glenn Morris <rgm@gnu.org>
24902
24903 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
24904 Remove venerable code attempting to avoid substitute-command-keys.
24905
24906 2013-04-23 Tassilo Horn <tsdh@gnu.org>
24907
24908 * textmodes/reftex-vars.el (reftex-label-regexps):
24909 Call `reftex-compile-variables' after changes to this variable.
24910
24911 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
24912
24913 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
24914 Use lexical-binding.
24915 (jit-lock-force-redisplay): Use markers, check buffer's continued
24916 existence and beware narrowed buffers.
24917 (jit-lock-fontify-now): Adjust call accordingly.
24918
24919 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
24920
24921 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
24922 to avoid misleading the user.
24923
24924 2013-04-22 Leo Liu <sdl.web@gmail.com>
24925
24926 * info-look.el: Prefer latex2e.info. (Bug#14240)
24927
24928 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
24929
24930 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
24931
24932 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
24933 * net/tramp.el (tramp-call-process): ... here.
24934 (tramp-set-completion-function, tramp-parse-putty):
24935 * net/tramp-adb.el (tramp-adb-execute-adb-command):
24936 * net/tramp-gvfs.el (tramp-gvfs-send-command):
24937 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
24938 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
24939 (tramp-call-local-coding-command): Use `tramp-call-process'
24940 instead of `tramp-compat-call-process'.
24941
24942 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
24943 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
24944 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
24945 (tramp-find-inline-compress): Improve traces.
24946 (tramp-maybe-send-script): Check for Perl binary.
24947 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
24948
24949 2013-04-22 Daiki Ueno <ueno@gnu.org>
24950
24951 * epg.el (epg-context-pinentry-mode): New function.
24952 (epg-context-set-pinentry-mode): New function.
24953 (epg--start): Pass --pinentry-mode option to gpg command.
24954
24955 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
24956
24957 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
24958 `comint-dynamic-complete' is obsolete since 24.1, replaced by
24959 `completion-at-point'. (Bug#13774)
24960
24961 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
24962 default key binding for `describe-distribution' has been moved to
24963 `C-h C-o'. (Bug#13970)
24964
24965 2013-04-21 Glenn Morris <rgm@gnu.org>
24966
24967 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
24968 Add doc strings.
24969 (vc-print-log): Clarify interactive prompt.
24970
24971 2013-04-20 Glenn Morris <rgm@gnu.org>
24972
24973 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
24974 No longer include timestamp etc information.
24975
24976 2013-04-20 Roland Winkler <winkler@gnu.org>
24977
24978 * faces.el (read-face-name): Bug fix, return just one face if arg
24979 multiple is nil. (Bug#14209)
24980
24981 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
24982
24983 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
24984 (remove-function): Autoload.
24985
24986 * comint.el (comint-redirect-original-filter-function): Remove.
24987 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
24988 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
24989 (vc-cvs-annotate-command):
24990 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
24991 * progmodes/prolog.el (prolog-consult-compile):
24992 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
24993 Use add/remove-function instead.
24994 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
24995 (gud-tooltip-process-output, gud-tooltip-tips):
24996 Use add/remove-function instead.
24997 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
24998 (scheme-interaction-mode, exit-scheme-interaction-mode):
24999 Use add/remove-function instead.
25000
25001 * vc/vc-dispatcher.el: Use lexical-binding.
25002 (vc--process-sentinel): Rename from vc-process-sentinel.
25003 Change last arg to be the code to run. Don't use vc-previous-sentinel
25004 and vc-sentinel-commands any more.
25005 (vc-exec-after): Allow code to be a function. Use add/remove-function.
25006 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
25007
25008 2013-04-19 Masatake YAMATO <yamato@redhat.com>
25009
25010 * progmodes/sh-script.el (sh-imenu-generic-expression):
25011 Handle function names with a single character. (Bug#14111)
25012
25013 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
25014
25015 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
25016 for subroutines defined in an eval (bug#14182).
25017
25018 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
25019
25020 * bookmark.el (bookmark-completing-read): Improve handling of empty
25021 string (bug#14176).
25022
25023 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
25024
25025 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
25026
25027 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
25028
25029 New faster Imenu implementation (bug#14058).
25030 * progmodes/python.el (python-imenu-prev-index-position)
25031 (python-imenu-format-item-label-function)
25032 (python-imenu-format-parent-item-label-function)
25033 (python-imenu-format-parent-item-jump-label-function):
25034 New vars.
25035 (python-imenu-format-item-label)
25036 (python-imenu-format-parent-item-label)
25037 (python-imenu-format-parent-item-jump-label)
25038 (python-imenu--put-parent, python-imenu--build-tree)
25039 (python-imenu-create-index, python-imenu-create-flat-index)
25040 (python-util-popn): New functions.
25041 (python-mode): Set imenu-create-index-function to
25042 python-imenu-create-index.
25043
25044 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
25045
25046 * winner.el (winner-active-region): Use region-active-p, activate-mark
25047 and deactivate-mark (bug#14225).
25048
25049 * simple.el (deactivate-mark): Don't inline it.
25050
25051 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
25052
25053 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
25054
25055 2013-04-18 Tassilo Horn <tsdh@gnu.org>
25056
25057 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
25058 file extensions from the archive-mode entry in order to prefer
25059 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
25060
25061 2013-04-18 Leo Liu <sdl.web@gmail.com>
25062
25063 * bindings.el (help-event-list): Add ?\?.
25064
25065 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
25066
25067 * subr.el (with-wrapper-hook): Declare obsolete.
25068 * simple.el (filter-buffer-substring-function): New hook.
25069 (filter-buffer-substring): Use it.
25070 (filter-buffer-substring-functions): Mark obsolete.
25071 * minibuffer.el (completion-in-region-function): New hook.
25072 (completion-in-region): Use it.
25073 (completion-in-region-functions): Mark obsolete.
25074 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
25075 * abbrev.el (abbrev-expand-function): New hook.
25076 (expand-abbrev): Use it.
25077 (abbrev-expand-functions): Mark obsolete.
25078 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
25079 and :filter-return.
25080
25081 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
25082
25083 * progmodes/python.el (python-nav--syntactically): Fix cornercases
25084 and do not care about match data.
25085
25086 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
25087
25088 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
25089 completion tables when completing error conditions and
25090 `declare' arguments.
25091 (lisp-complete-symbol, field-complete): Mark as obsolete.
25092 (check-parens): Unmatched parens are user errors.
25093 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
25094
25095 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
25096
25097 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
25098 command changed buffer (ie. `flyspell-pre-buffer' is not current
25099 buffer), which prevents making decisions based on invalid value of
25100 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
25101 cause an error when `flyspell-pre-point' was nil after switching
25102 buffers.
25103 (flyspell-post-command-hook): No longer needs to change buffers when
25104 checking pre-word. While at it remove unnecessary progn.
25105
25106 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
25107
25108 * textmodes/ispell.el (ispell-add-per-file-word-list):
25109 Fix `flyspell-correct-word-before-point' error when accepting
25110 words and `coment-padding' is an integer by using
25111 `comment-normalize-vars' (Bug #14214).
25112
25113 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
25114
25115 New defun movement commands.
25116 * progmodes/python.el (python-nav--syntactically)
25117 (python-nav--forward-defun, python-nav-backward-defun)
25118 (python-nav-forward-defun): New functions.
25119
25120 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
25121
25122 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
25123 (python-syntax-context): Use named compiler-macro for backwards
25124 compatibility with Emacs 24.x.
25125
25126 2013-04-17 Leo Liu <sdl.web@gmail.com>
25127
25128 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
25129 octave-hide-process-buffer.
25130
25131 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
25132
25133 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
25134 (bug#14216).
25135
25136 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
25137
25138 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
25139 Fix adjustment of offset when receiving incomplete responses from GDB
25140 (bug#14129).
25141
25142 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
25143
25144 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
25145 python-mode-abbrev-table.
25146 (python-skeleton-define): Adjust accordingly.
25147 (python-mode-abbrev-table): New table that inherits from it so that
25148 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
25149
25150 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
25151 (abbrev-symbol): Use it.
25152 (abbrev--before-point): Use it since we already handle inheritance.
25153
25154 2013-04-16 Leo Liu <sdl.web@gmail.com>
25155
25156 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
25157 binding to info-lookup-symbol.
25158
25159 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
25160
25161 * minibuffer.el (completion--twq-all):
25162 * term/ns-win.el (ns-initialize-window-system):
25163 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
25164
25165 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
25166
25167 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
25168 global bindings.
25169
25170 * doc-view.el (doc-view-start-process): Handle url-handler directories.
25171
25172 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
25173
25174 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
25175 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
25176 to nil.
25177 (ruby-end-of-defun): Remove the unused arg, change the docstring
25178 to reflect that this function is only used as the value of
25179 `end-of-defun-function'.
25180 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
25181 to reflect an earlier change that beginning/end-of-defun functions
25182 jump between methods in a class definition, as well as top-level
25183 functions.
25184
25185 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
25186
25187 * minibuffer.el (minibuffer-complete): Don't just scroll
25188 a *Completions* that's been iconified.
25189 (minibuffer-force-complete): Make sure repetitions do cycle when going
25190 through completion-in-region -> minibuffer-complete.
25191
25192 2013-04-15 Alan Mackenzie <acm@muc.de>
25193
25194 Correct the placement of c-cpp-delimiters when there're #s not at
25195 col 0.
25196
25197 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
25198 place a submatch around the #.
25199 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
25200 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
25201 on the #, not BOL.
25202
25203 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
25204
25205 * emacs-lisp/nadvice.el: Properly test names when adding advice.
25206 (advice--member-p): New arg `name'.
25207 (advice--add-function, advice-member-p): Use it (bug#14202).
25208
25209 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
25210
25211 Reformulate java imenu-generic-expression.
25212 The old expression contained ill formed regexps.
25213
25214 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
25215 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
25216 (cc-imenu-java-method-arg-regexp): New defconsts.
25217 (cc-imenu-java-build-type-args-regex): New defun.
25218 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
25219 handling of spaces in the regexp.
25220
25221 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
25222
25223 * textmodes/ispell.el (ispell-command-loop): Remove
25224 flyspell highlight of a word when ispell accepts it (bug #14178).
25225
25226 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
25227
25228 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
25229 uses code from the previous `ange-ftp-run-real-handler'.
25230 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
25231 only in case that function exist. This is needed for proper
25232 unloading of Tramp.
25233
25234 2013-04-15 Tassilo Horn <tsdh@gnu.org>
25235
25236 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
25237
25238 * textmodes/reftex.el (reftex-compile-variables): Use it.
25239
25240 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
25241
25242 * files.el (normal-mode): Only use default major-mode if no other mode
25243 was specified.
25244
25245 * emacs-lisp/trace.el (trace-values): New function.
25246
25247 * files.el: Allow : in local variables (bug#14089).
25248 (hack-local-variable-regexp): New var.
25249 (hack-local-variables-prop-line, hack-local-variables): Use it.
25250
25251 2013-04-13 Roland Winkler <winkler@gnu.org>
25252
25253 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
25254 data before it gets modified by bibtex-beginning-of-entry.
25255
25256 2013-04-13 Roland Winkler <winkler@gnu.org>
25257
25258 * textmodes/bibtex.el (bibtex-url): Doc fix.
25259
25260 2013-04-13 Roland Winkler <winkler@gnu.org>
25261
25262 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
25263 does not visit a BibTeX file, exclude it from the list of buffers
25264 returned by bibtex-initialize.
25265
25266 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
25267
25268 * window.el (split-window): Remove interactive form, since as a
25269 command this function is a special case of split-window-below.
25270 Correct doc string.
25271
25272 2013-04-12 Roland Winkler <winkler@gnu.org>
25273
25274 * faces.el (read-face-name): Do not override value of arg default.
25275 Allow single faces and strings as default values. Remove those
25276 elements from return value that are not faces.
25277 (describe-face): Simplify.
25278 (face-at-point): New optional args thing and multiple so that this
25279 function can provide the same functionality previously provided by
25280 read-face-name.
25281 (make-face-bold, make-face-unbold, make-face-italic)
25282 (make-face-unitalic, make-face-bold-italic, invert-face)
25283 (modify-face, read-face-and-attribute): Use face-at-point.
25284
25285 * cus-edit.el (customize-face, customize-face-other-window)
25286 * cus-theme.el (custom-theme-add-face)
25287 * face-remap.el (buffer-face-set)
25288 * facemenu.el (facemenu-set-face): Use face-at-point.
25289
25290 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
25291
25292 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
25293
25294 2013-04-10 Tassilo Horn <tsdh@gnu.org>
25295
25296 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
25297 off leading { and trailing } from field values.
25298
25299 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
25300
25301 * emacs-lisp/timer.el (timer--check): New function.
25302 (timer--time, timer-set-function, timer-event-handler): Use it.
25303 (timer-set-idle-time): Simplify.
25304 (timer--activate): CSE.
25305 (timer-event-handler): Give more info in error message.
25306 (internal-timer-start-idle): New function, moved from C.
25307
25308 * mpc.el (mpc-proc): Add `restart' argument.
25309 (mpc-proc-cmd): Use it.
25310 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
25311 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
25312 less often.
25313
25314 2013-04-10 Masatake YAMATO <yamato@redhat.com>
25315
25316 * progmodes/sh-script.el: Implement `sh-mode' own
25317 `add-log-current-defun-function' (bug#14112).
25318 (sh-current-defun-name): New function.
25319 (sh-mode): Use the function.
25320
25321 2013-04-09 Bastien Guerry <bzg@gnu.org>
25322
25323 * simple.el (choose-completion-string): Fix docstring (bug#14163).
25324
25325 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
25326
25327 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
25328
25329 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
25330 timer (bug#14156).
25331
25332 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
25333
25334 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
25335 declaration.
25336
25337 2013-04-07 Leo Liu <sdl.web@gmail.com>
25338
25339 * pcmpl-x.el: New file.
25340
25341 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
25342
25343 Do not set x-display-name until X connection is established.
25344 This is needed to prevent from weird situation described at
25345 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
25346 * frame.el (make-frame): Set x-display-name after call to
25347 window system initialization function, not before.
25348 * term/x-win.el (x-initialize-window-system): Add optional
25349 display argument and use it.
25350 * term/w32-win.el (w32-initialize-window-system):
25351 * term/ns-win.el (ns-initialize-window-system):
25352 * term/pc-win.el (msdos-initialize-window-system):
25353 Add compatible optional display argument.
25354
25355 2013-04-06 Eli Zaretskii <eliz@gnu.org>
25356
25357 * files.el (normal-backup-enable-predicate): On MS-Windows and
25358 MS-DOS compare truenames of temporary-file-directory and of the
25359 file, so that 8+3 aliases (usually found in $TEMP on Windows)
25360 don't fail comparison by compare-strings. Also, compare file
25361 names case-insensitively on MS-Windows and MS-DOS.
25362
25363 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
25364
25365 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
25366 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
25367
25368 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
25369
25370 * whitespace.el (whitespace-color-on, whitespace-color-off):
25371 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
25372
25373 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
25374
25375 * ispell.el (ispell-set-spellchecker-params):
25376 Really set `ispell-args' for all equivs.
25377
25378 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
25379
25380 * ido.el (ido-completions): Use extra elements of ido-decorations
25381 (bug#14143).
25382 (ido-decorations): Update docstring.
25383
25384 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
25385
25386 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
25387 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
25388 nil during initialization, in order not to miss changes since the
25389 file was opened. (Bug#14140)
25390
25391 2013-04-05 Leo Liu <sdl.web@gmail.com>
25392
25393 * kmacro.el (kmacro-call-macro): Fix bug#14135.
25394
25395 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
25396
25397 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
25398
25399 2013-04-04 Glenn Morris <rgm@gnu.org>
25400
25401 * electric.el (electric-pair-inhibit-predicate): Add :version.
25402
25403 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
25404
25405 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
25406 when a package is required several times (bug#14082).
25407
25408 2013-04-04 Roland Winkler <winkler@gnu.org>
25409
25410 * faces.el (read-face-name): Behave as promised by the docstring.
25411 Assume that arg default is a list of faces.
25412 (describe-face): Call read-face-name with list of default faces.
25413
25414 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
25415
25416 * bookmark.el: Fix deletion of bookmarks (bug#13972).
25417 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
25418 (bookmark-bmenu-execute-deletions): Only skip first line if it's
25419 the header.
25420 (bookmark-exit-hook-internal): Save even if list is empty.
25421
25422 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
25423
25424 * emacs-lisp/package.el (package-pinned-packages): New var.
25425 (package--add-to-archive-contents): Obey it (bug#14118).
25426
25427 2013-04-03 Alan Mackenzie <acm@muc.de>
25428
25429 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
25430 Also adapt to the new values of element 7 of a parse state.
25431
25432 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
25433 parameter `not-in-delimiter'. Handle being inside comment opener.
25434 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
25435 character in case we're typing a '*' after a '/'.
25436 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
25437 instead by passing the parameter to c-state-pp-to-literal.
25438
25439 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
25440 for elt. 7 of a parse state.
25441
25442 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
25443
25444 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
25445 * international/latin1-disp.el, international/mule-util.el:
25446 * language/cyril-util.el, language/european.el, language/ind-util.el:
25447 * language/lao-util.el, language/thai.el, language/tibet-util.el:
25448 * language/tibetan.el, language/viet-util.el:
25449 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
25450
25451 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
25452
25453 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
25454 (electric-pair-post-self-insert-function): Use it.
25455 (electric-pair-default-inhibit): New function, extracted from
25456 electric-pair-post-self-insert-function.
25457
25458 2013-03-31 Roland Winkler <winkler@gnu.org>
25459
25460 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
25461
25462 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
25463
25464 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
25465
25466 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
25467
25468 Un-indent after "pass" and "return" statements (Bug#13888)
25469 * progmodes/python.el (python-indent-block-enders): New var.
25470 (python-indent-calculate-indentation): Use it.
25471
25472 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
25473
25474 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
25475 defun. Defining it as defalias could introduce too eager
25476 byte-compiler optimization. (Bug#14030)
25477
25478 2013-03-30 Chong Yidong <cyd@gnu.org>
25479
25480 * iswitchb.el (iswitchb-read-buffer): Fix typo.
25481
25482 2013-03-30 Leo Liu <sdl.web@gmail.com>
25483
25484 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
25485 (kmacro-execute-from-register): Pass the keyboard macro to
25486 kmacro-call-macro or repeating won't work correctly.
25487
25488 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
25489
25490 * progmodes/subword.el: Back to using `forward-symbol'.
25491
25492 * subr.el (forward-whitespace, forward-symbol)
25493 (forward-same-syntax): Move from thingatpt.el.
25494
25495 2013-03-29 Leo Liu <sdl.web@gmail.com>
25496
25497 * kmacro.el (kmacro-to-register): New command.
25498 (kmacro-execute-from-register): New function.
25499 (kmacro-keymap): Bind to 'x'. (Bug#14071)
25500
25501 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
25502
25503 * mpc.el: Use defvar-local and setq-local.
25504 (mpc--proc-connect): Connection failures are not bugs.
25505 (mpc-mode-map): `follow-link' only applies to the buffer's content.
25506 (mpc-volume-map): Bind to the up-events.
25507
25508 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
25509
25510 * progmodes/subword.el (superword-mode): Use `forward-sexp'
25511 instead of `forward-symbol'.
25512
25513 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
25514
25515 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
25516 (edebug--recursive-edit): Use it.
25517 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
25518 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
25519
25520 2013-03-28 Leo Liu <sdl.web@gmail.com>
25521
25522 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
25523
25524 2013-03-27 Eli Zaretskii <eliz@gnu.org>
25525
25526 * facemenu.el (list-colors-callback): New defvar.
25527 (list-colors-redisplay): New function.
25528 (list-colors-display): Install list-colors-redisplay as the
25529 revert-buffer-function. (Bug#14063)
25530
25531 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
25532
25533 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
25534 and suffixes don't overlap (bug#14061).
25535
25536 * case-table.el: Use lexical-binding.
25537 (case-table-get-table): New function.
25538 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
25539
25540 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
25541
25542 * progmodes/subword.el: Add `superword-mode' to do word motion
25543 over symbol_words (parallels and leverages `subword-mode' which
25544 does word motion inside MixedCaseWords).
25545
25546 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
25547
25548 * eshell/em-unix.el: Move su and sudo to...
25549 * eshell/em-tramp.el: ...Eshell tramp module.
25550
25551 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
25552
25553 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
25554 Change return value to be a sexp. Delay `get-buffer' to after
25555 restoring the desktop (bug#13951).
25556
25557 2013-03-26 Leo Liu <sdl.web@gmail.com>
25558
25559 * register.el: Move semantic tag handling back to
25560 cedet/semantic/senator.el. (Bug#14052)
25561
25562 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
25563
25564 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
25565 into the prompt either (bug#13963).
25566
25567 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
25568
25569 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
25570 part of "(error-foo)".
25571
25572 2013-03-24 Juri Linkov <juri@jurta.org>
25573
25574 * replace.el (list-matching-lines-prefix-face): New defcustom.
25575 (occur-1): Pass `list-matching-lines-prefix-face' to the function
25576 `occur-engine' if `face-differs-from-default-p' returns t.
25577 (occur-engine): Add `,' inside backquote construct to evaluate
25578 `prefix-face'. Propertize the prefix with the `prefix-face' face.
25579 Pass `prefix-face' to the functions `occur-context-lines' and
25580 `occur-engine-add-prefix'.
25581 (occur-engine-add-prefix, occur-context-lines): Add optional arg
25582 `prefix-face' and propertize the prefix with `prefix-face'.
25583 (Bug#14017)
25584
25585 2013-03-24 Leo Liu <sdl.web@gmail.com>
25586
25587 * nxml/rng-valid.el (rng-validate-while-idle)
25588 (rng-validate-quick-while-idle): Guard against deleted buffer.
25589 (Bug#13999)
25590
25591 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
25592 is the last entry in kill-buffer-hook.
25593
25594 * files.el (kill-buffer-hook): Doc fix.
25595
25596 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
25597
25598 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
25599 Make it safe-local.
25600
25601 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
25602
25603 2013-03-23 Leo Liu <sdl.web@gmail.com>
25604
25605 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
25606 Remove.
25607
25608 * nxml/rng-valid.el (rng-validate-mode)
25609 (rng-after-change-function, rng-do-some-validation):
25610 * nxml/rng-maint.el (rng-validate-buffer):
25611 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
25612 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
25613 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
25614 (nxml-extend-after-change-region): Use with-silent-modifications.
25615
25616 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
25617 timer-idle-list.
25618
25619 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
25620 (rng-next-error-1, rng-previous-error-1): Do not let-bind
25621 timer-idle-list. (Bug#13999)
25622
25623 2013-03-23 Juri Linkov <juri@jurta.org>
25624
25625 * info.el (info-index-match): New face.
25626 (Info-index, Info-apropos-matches): Add a nested subgroup to the
25627 main pattern and add text properties with the new face to matches
25628 in index entries relative to the beginning of the index entry.
25629 (Bug#14015)
25630
25631 2013-03-21 Eric Ludlam <zappo@gnu.org>
25632
25633 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
25634 Inhibit read only while inserting objects.
25635
25636 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
25637
25638 * progmodes/cfengine.el: Update docs to mention
25639 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
25640 symbol motion. Remove "_" from the word syntax.
25641
25642 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
25643
25644 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
25645 syntax for both `cfengine2-mode' and `cfengine3-mode'.
25646
25647 2013-03-20 Juri Linkov <juri@jurta.org>
25648
25649 * info.el (Info-next-reference-or-link)
25650 (Info-prev-reference-or-link): New functions.
25651 (Info-next-reference, Info-prev-reference): Use them.
25652 (Info-try-follow-nearest-node): Handle footnote navigation.
25653 (Info-fontify-node): Fontify footnotes. (Bug#13989)
25654
25655 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
25656
25657 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
25658 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
25659
25660 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
25661
25662 Suppress unnecessary non-ASCII chatter during build process.
25663 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
25664 (batch-skkdic-convert): Suppress most of the chatter.
25665 It's not needed so much now that machines are faster,
25666 and its non-ASCII component was confusing; see Dmitry Gutov in
25667 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
25668
25669 2013-03-20 Leo Liu <sdl.web@gmail.com>
25670
25671 * ido.el (ido-chop): Fix bug#10994.
25672
25673 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
25674
25675 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
25676 Remove vars.
25677 (whitespace-color-on, whitespace-color-off):
25678 Use `font-lock-fontify-buffer' (Bug#13817).
25679
25680 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
25681
25682 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
25683 remapping in mode-line.
25684 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
25685
25686 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
25687
25688 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
25689 value for `whitespace-line' face (Bug#13875).
25690 (whitespace-font-lock-keywords): Change description.
25691 (whitespace-color-on): Don't save `font-lock-keywords' value, save
25692 the constructed keywords instead.
25693 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
25694
25695 2013-03-19 Leo Liu <sdl.web@gmail.com>
25696
25697 * progmodes/compile.el (compilation-display-error): New command.
25698 (compilation-mode-map, compilation-minor-mode-map): Bind it to
25699 C-o. (Bug#13992)
25700
25701 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
25702
25703 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
25704
25705 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
25706
25707 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
25708
25709 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
25710
25711 * net/tramp-compat.el (tramp-compat-user-error): New defun.
25712
25713 * net/tramp-adb.el (tramp-adb-handle-shell-command):
25714 * net/tramp-gvfs.el (top):
25715 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
25716 (tramp-handle-shell-command): Use it.
25717 (tramp-dissect-file-name): Raise an error when hostname is a
25718 method name, and neither method nor user is specified.
25719
25720 * net/trampver.el: Update release number.
25721
25722 2013-03-18 Leo Liu <sdl.web@gmail.com>
25723
25724 Make sure eldoc can be turned off properly.
25725 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
25726 eldoc-mode.
25727 (eldoc-display-message-p): Revert last change.
25728 (eldoc-display-message-no-interference-p)
25729 (eldoc-print-current-symbol-info): Tweak.
25730
25731 2013-03-18 Tassilo Horn <tsdh@gnu.org>
25732
25733 * doc-view.el (doc-view-new-window-function): Check the new window
25734 overlay's display property instead the char property of the
25735 buffer's first char. Use `with-selected-window' instead of
25736 `save-window-excursion' with `select-window'.
25737 (doc-view-document->bitmap): Check the current doc-view overlay's
25738 display property instead the char property of the buffer's first char.
25739
25740 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
25741
25742 Automate the build of ja-dic.el (Bug#13984).
25743 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
25744 from the input, rather than assume that it's been done for us by the
25745 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
25746 the current date into a ja-dic.el comment, as that complicates
25747 regression testing.
25748
25749 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
25750
25751 * whitespace.el: Fix double evaluation.
25752 (whitespace-space, whitespace-hspace, whitespace-tab)
25753 (whitespace-newline, whitespace-trailing, whitespace-line)
25754 (whitespace-space-before-tab, whitespace-indentation)
25755 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
25756 obsolete defvars.
25757 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
25758 (whitespace-color-on): Use a single font-lock-add-keywords call.
25759 Fix double-evaluation of face variables.
25760
25761 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
25762
25763 * net/tramp-adb.el (tramp-adb-parse-device-names):
25764 Use `start-process' instead of `call-process'. Otherwise, the
25765 function might be blocked under MS Windows. (Bug#13299)
25766
25767 2013-03-17 Leo Liu <sdl.web@gmail.com>
25768
25769 Extend eldoc to display info in the mode-line. (Bug#13978)
25770 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
25771 (eldoc-mode-line-string): New variable.
25772 (eldoc-minibuffer-message): New function.
25773 (eldoc-message-function): New variable.
25774 (eldoc-message): Use it.
25775 (eldoc-display-message-p)
25776 (eldoc-display-message-no-interference-p):
25777 Support eldoc-post-insert-mode.
25778
25779 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
25780 (eval-expression): Run it.
25781
25782 2013-03-17 Roland Winkler <winkler@gnu.org>
25783
25784 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
25785 strings in the list of return values.
25786
25787 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
25788
25789 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
25790 radix before checking for HMS forms.
25791
25792 2013-03-16 Leo Liu <sdl.web@gmail.com>
25793
25794 * progmodes/scheme.el: Add indentation and font-locking for λ.
25795 (Bug#13975)
25796
25797 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
25798
25799 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
25800 token before point (bug#13942).
25801
25802 2013-03-16 Leo Liu <sdl.web@gmail.com>
25803
25804 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
25805
25806 2013-03-16 Eli Zaretskii <eliz@gnu.org>
25807
25808 * startup.el (command-line-normalize-file-name): Fix handling of
25809 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
25810 <xfq.free@gmail.com> in
25811 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
25812
25813 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
25814
25815 Sync with Tramp 2.2.7.
25816
25817 * net/trampver.el: Update release number.
25818
25819 2013-03-14 Tassilo Horn <tsdh@gnu.org>
25820
25821 * doc-view.el: Fix bug#13887.
25822 (doc-view-insert-image): Don't modify overlay associated to
25823 non-live windows, and implement horizontal centering of image in
25824 case it's smaller than the window.
25825 (doc-view-new-window-function): Force redisplay of new windows on
25826 doc-view buffers.
25827
25828 2013-03-13 Karl Fogel <kfogel@red-bean.com>
25829
25830 * saveplace.el (save-place-alist-to-file): Don't sort
25831 `save-place-alist', just pretty-print it (bug#13882).
25832
25833 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
25834
25835 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
25836 Check whether `default-file-name-coding-system' is bound.
25837 It isn't in XEmacs.
25838
25839 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
25840
25841 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
25842 backquotes for `obsolete' (bug#13929).
25843
25844 * international/mule.el (find-auto-coding): Include file name in
25845 obsolescence warning (bug#13922).
25846
25847 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
25848
25849 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
25850 for CFEngine 3-specific indentation.
25851 (cfengine3-indent-line): Use it. Fix up category regex.
25852 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
25853
25854 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
25855
25856 * type-break.el (type-break-file-name):
25857 * textmodes/remember.el (remember-data-file):
25858 * strokes.el (strokes-file):
25859 * shadowfile.el (shadow-initialize):
25860 * saveplace.el (save-place-file):
25861 * ps-bdf.el (bdf-cache-file):
25862 * progmodes/idlwave.el (idlwave-config-directory):
25863 * net/quickurl.el (quickurl-url-file):
25864 * international/kkc.el (kkc-init-file-name):
25865 * ido.el (ido-save-directory-list-file):
25866 * emulation/viper.el (viper-custom-file-name):
25867 * emulation/vip.el (vip-startup-file):
25868 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
25869 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
25870
25871 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
25872
25873 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
25874 * language/thai-word.el: Switch to UTF-8.
25875
25876 See ChangeLog.16 for earlier changes.
25877
25878 ;; Local Variables:
25879 ;; coding: utf-8
25880 ;; End:
25881
25882 Copyright (C) 2011-2015 Free Software Foundation, Inc.
25883
25884 This file is part of GNU Emacs.
25885
25886 GNU Emacs is free software: you can redistribute it and/or modify
25887 it under the terms of the GNU General Public License as published by
25888 the Free Software Foundation, either version 3 of the License, or
25889 (at your option) any later version.
25890
25891 GNU Emacs is distributed in the hope that it will be useful,
25892 but WITHOUT ANY WARRANTY; without even the implied warranty of
25893 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25894 GNU General Public License for more details.
25895
25896 You should have received a copy of the GNU General Public License
25897 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.