]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
tildify.el: Better support for XML
[gnu-emacs] / lisp / ChangeLog
1 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
2
3 * textmodes/tildify.el (tildify-string-alist)
4 (tildify-ignored-environments-alist): Add `nxml-mode' to the list
5 of supported modes since `xml-mode' is no longer a thing but just
6 an alias to the former. Also include comments and insides of tags
7 in `tildify-ignored-environments-alist' for XML modes. Finally,
8 since XML does not define “&nbsp;”[1], use a numeric reference for
9 a no-break space (namely “&#160;”)
10
11 [1] XML specification defines only a handful of predefined entities.
12 The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
13 and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
14 >, &, ' and " respectively). This is in contrast to HTML and even
15 XHTML which defined a whole bunch of entities including “&nbsp;”.
16
17 * textmodes/tildify.el (tildify-pattern-alist)
18 (tildify-string-alist, tildify-ignored-environments-alist):
19 Improve defcustom's types by adding more tags explaining what each
20 value means and replace “sexp” used in
21 `tildify-ignored-environments-alist' with a full type declaration.
22
23 * textmodes/tildify.el (tildify-find-env): Fix matched group
24 indexes in end-regex building
25
26 When looking for a start of an ignore-environment, the regex is built
27 by concatenating regexes of all the environments configured in
28 `tildify-ignored-environments-alist'. So for example, the following
29 list could be used to match TeX's \verb and \verb* commands:
30
31 (("\\\\verb\\(.\\)" . (1))
32 ("\\\\verb\\*\\(.\\)" . (1)))
33
34 This would result in the following regex being used to find the start
35 of any of the variants of the \verb command:
36
37 \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
38
39 But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
40 won't match anything, and thus (match-string 1) will be nil, which
41 will cause building of the end-matching regex to fail.
42
43 Fix this by using capture groups from the time when the opening
44 regexes are matched individually.
45
46 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
47 in `tildify-find-env'
48
49 The `tildify-ignored-environments-alist' allows the end-regex to
50 be provided not as a static string but mix of strings and indexes
51 of groups matched the begin-regex. For example, the “\verb!…!”
52 TeX-command (where “!” is an arbitrary character) is handled
53 using:
54
55 ("\\\\verb\\*?\\(.\\)" . (1))
56
57 In the same way, the following should be supported as well:
58
59 ("open-\\(.\\)" . ("end-" 1))
60
61 However the tildify-find-env function fails at
62
63 (concat result
64 (if (stringp (setq aux (car expression)))
65 expression ; BUG: expression is a list
66 (regexp-quote (match-string aux))))
67
68 where the string part is handled incorrectly.
69
70 The most trivial fix would be to replace `expression' in the
71 true-part of the if-statement with `aux', but instead, this commit
72 optimises `tildify-find-env' by changing it to use `mapconcat'
73 rather than open-coded while-loop.
74
75 2014-06-05 Mario Lang <mlang@delysid.org>
76
77 * woman.el (woman-mapcan): Remove.
78 (woman-parse-colon-path): Use cl-mapcan instead.
79
80 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
81
82 * register.el: Add link to Emacs manual in Commentary.
83
84 2014-06-02 Sam Steingold <sds@gnu.org>
85
86 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
87 (popup-menu): ...here.
88 (menu-bar-open): Use it to avoid an error when `lookup-key'
89 returns a number.
90
91 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
92
93 * net/tramp.el (tramp-call-process): Add traces.
94 (tramp-handle-unhandled-file-name-directory): Return "/".
95
96 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
97
98 Sync with upstream verilog-mode revision 3cd8144.
99 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
100 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
101 (verilog-type-font-keywords): Add nor.
102 (verilog-batch-execute-func): Force reading of Local Variables.
103 Fix printing "no changes to be saved" with verilog-batch.
104 (verilog-auto-arg-ports): Doc fix.
105 Add verilog-auto-arg-format to support newlines in AUTOARG.
106 (verilog-auto-arg): Doc fix.
107
108 2014-06-02 Glenn Morris <rgm@gnu.org>
109
110 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
111 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
112 * emulation/ws-mode.el: Move to obsolete/.
113 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
114
115 2014-06-02 Eli Zaretskii <eliz@gnu.org>
116
117 * simple.el (keyboard-quit): Force update of mode lines, to remove
118 the "Def" indicator, if we were defining a macro. (Bug#17615)
119
120 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
121
122 * minibuffer.el (minibuffer-force-complete-and-exit):
123 Obey minibuffer-default (bug#17545).
124
125 * progmodes/js.el (js-indent-line): Don't mix columns and chars
126 (bug#17619).
127
128 * subr.el (set-transient-map): Don't wait for some "nested"
129 transient-map to finish if we're only supposed to be active for
130 the next command (bug#17642).
131
132 2014-06-02 Leo Liu <sdl.web@gmail.com>
133
134 * emacs-lisp/gv.el (window-buffer, window-display-table)
135 (window-dedicated-p, window-hscroll, window-point, window-start):
136 Fix gv-expander. (Bug#17630)
137
138 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
139
140 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
141 clicks (bug#17633).
142
143 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
144 for the single comma, since ", " is *very* common in normal French text
145 (bug#17643).
146
147 2014-06-02 Glenn Morris <rgm@gnu.org>
148
149 * emacs-lisp/package.el (package-check-signature)
150 (package-unsigned-archives): Fix :version.
151
152 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
153
154 * subr.el (sit-for): Don't run input-methods (bug#15614).
155
156 2014-06-02 Glenn Morris <rgm@gnu.org>
157
158 * cus-start.el: Fix some :version numbers.
159
160 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
161
162 * simple.el (deactivate-mark): Set mark-active to nil even if
163 deactivation is done via setting transient-mark-mode to nil,
164 since one is buffer-local and the other is global.
165
166 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
167 there can't be more than 2 arguments (bug#17584).
168
169 2014-06-02 Glenn Morris <rgm@gnu.org>
170
171 * simple.el (filter-buffer-substring-functions)
172 (filter-buffer-substring-function, buffer-substring-filters)
173 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
174
175 * minibuffer.el (completion-in-region-functions, completion-in-region)
176 (completion--in-region): Doc fixes.
177
178 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
179 (expand-abbrev, abbrev--default-expand): Doc fixes.
180
181 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
182
183 Include sources used to create macuvs.h.
184 * international/README: Refer to the Unicode Terms of Use rather
185 than copying it bodily here, as that simplifies maintenance.
186
187 2014-06-01 Glenn Morris <rgm@gnu.org>
188
189 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
190
191 2014-05-31 Glenn Morris <rgm@gnu.org>
192
193 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
194
195 2014-05-30 Glenn Morris <rgm@gnu.org>
196
197 * loadup.el: Treat `command-line-args' more flexibly.
198
199 2014-05-30 Alan Mackenzie <acm@muc.de>
200
201 Guard (looking-at "\\s!") from XEmacs.
202 * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
203
204 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
205
206 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward): The
207 argument COUNT is now optional, to be more backward-compatible.
208 Doc fix. (Bug#17560)
209
210 2014-05-29 Reuben Thomas <rrt@sc3d.org>
211
212 * whitespace.el (whitespace-report-region): Simplify
213 documentation.
214 (whitespace-report-region): Allow report-if-bogus to take the
215 value `never', for non-interactive use.
216 (whitespace-report): Refer to whitespace-report-region's
217 documentation.
218
219 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
220
221 * whitespace.el: Use font-lock-flush. Minimize refontifications.
222 Side benefit: it works without jit-lock.
223 (whitespace-point--used): New buffer-local var.
224 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
225 (whitespace-color-off): Use font-lock-flush.
226 (whitespace-point--used, whitespace-point--flush-used): New functions.
227 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
228 (whitespace-empty-at-eob-regexp): Use them.
229 (whitespace-post-command-hook): Rewrite.
230
231 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
232 (font-lock-fontify-buffer): Mark interactive-only.
233 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
234 Make buffer-local.
235 (font-lock-specified-p): Remove redundant boundp check.
236 (font-lock-flush-function, font-lock-ensure-function): New vars.
237 (font-lock-turn-on-thing-lock): Set them.
238 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
239 (font-lock-after-change-function): Make `old-len' optional.
240 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
241 Call font-lock-flush, just in case.
242 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
243 recent Emacsen.
244 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
245 (vera-mode-map, vera-mode-menu): Remove bindings to it.
246 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
247 and with-syntax-table.
248 * textmodes/conf-mode.el (conf-quote-normal):
249 * progmodes/sh-script.el (sh-set-shell):
250 * progmodes/prog-mode.el (prettify-symbols-mode):
251 * progmodes/f90.el (f90-font-lock-n):
252 * progmodes/cwarn.el (cwarn-mode):
253 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
254 * progmodes/compile.el (compilation-setup, compilation--unsetup):
255 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
256 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
257 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
258 font-lock-fontify-buffer-function and
259 font-lock-unfontify-buffer-function.
260 (rmail-unfontify-buffer-function, rmail-fontify-message):
261 Use with-silent-modifications.
262 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
263 and font-lock-ensure.
264 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
265
266 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
267
268 * emacs-lisp/package.el (package-generate-autoloads):
269 Inhibit backup files.
270
271 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
272
273 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
274 (bug#17608).
275
276 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
277
278 * textmodes/tildify.el (tildify-buffer, tildify-region):
279 Add dont-ask option.
280
281 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
282
283 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
284 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
285
286 * subr.el (internal--funcall-interactively): New.
287 (internal--call-interactively): Remove.
288 (called-interactively-p): Detect funcall-interactively instead of
289 call-interactively.
290 * simple.el (repeat-complex-command): Use funcall-interactively.
291 (repeat-complex-command--called-interactively-skip): Remove.
292
293 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
294
295 * register.el (register-read-with-preview): Don't burp on
296 frame switches (e.g. due to the frame we just popped).
297
298 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
299 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
300
301 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
302
303 * cus-face.el (custom-face-attributes): Add :distant-foreground.
304
305 2014-05-26 Martin Rudalics <rudalics@gmx.at>
306
307 * window.el (window--dump-frame): Remove interactive specification.
308
309 2014-05-26 Glenn Morris <rgm@gnu.org>
310
311 * hippie-exp.el (he-line-search-regexp):
312 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
313
314 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
315
316 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
317 to avoid errors when trying to create or visit a file foo.todo
318 located outside to todo-directory, and to allow having such files
319 without them being tied to Todo mode (bug#17482).
320 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
321 (todo-archive-done-item, todo-find-filtered-items-file)
322 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
323 (todo-category-completions, todo-read-category): When visiting a
324 Todo file, make sure we're in the right mode and the buffer local
325 variables are set.
326 (todo-make-categories-list, todo-reset-nondiary-marker)
327 (todo-reset-done-string, todo-reset-comment-string):
328 After processing all Todo files, kill the buffers of those files that
329 weren't being visited before the processing.
330 (todo-display-as-todo-file, todo-add-to-buffer-list)
331 (todo-visit-files-commands): Comment out.
332 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
333 (auto-mode-alist): Remove add-to-list calls making Todo file
334 extensions unrestrictedly tied to Todo modes.
335
336 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
337
338 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
339 (advice-function-member-p): Tell it to check both names and functions
340 (bug#17531).
341 (advice--add-function): Adjust call accordingly.
342
343 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
344
345 * calendar/todo-mode.el: Miscellaneous bug fixes.
346 (todo-delete-file): When deleting an archive but not its todo
347 file, make sure to update the todo file's category sexp.
348 (todo-move-category): Keep the moved category's name unless the
349 file moved to already has a category with that name. If the
350 numerically last category of the source file was moved, make the
351 first category current to avoid selecting a nonexisting category.
352 (todo-merge-category): Fix implementation to make merging to a
353 category in another file work as documented. Eliminate now
354 insufficient and unnecessary renaming of archive category, correct
355 document string accordingly, and clarify it. If the numerically
356 last category of the source file was merged, make the first
357 category current to avoid selecting a nonexisting category.
358 (todo-archive-done-item): When there are marked items and point
359 happens to be on an unmarked item, ignore the latter. Don't leave
360 point below last item after archiving marked items.
361 (todo-unarchive-items): Fix logic to ensure unarchiving an item
362 from an archive with only one category deletes the archive only
363 when the category is empty after unarchiving. Make sure the todo
364 file's category sexp is updated.
365 (todo-read-file-name): Allow an existing file name even when it is
366 not required (todo-move-category needs this to work as documented).
367 (todo-add-file): Call todo-validate-name to reject the name of an
368 existing todo file (needed due to fix in todo-read-file-name).
369 (todo-reset-nondiary-marker): Also reset in filtered items files.
370 (todo-reset-done-string, todo-reset-comment-string): Also reset in
371 regexp filtered items files.
372 (todo-reset-highlight-item): Also reset in filtered items files.
373 Fix incorrect variable reference in document string.
374
375 2014-05-26 Glenn Morris <rgm@gnu.org>
376
377 * window.el (window--dump-frame): Avoid error in --without-x builds.
378
379 2014-05-26 Glenn Morris <rgm@gnu.org>
380
381 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
382
383 2014-05-26 Eli Zaretskii <eliz@gnu.org>
384
385 * frame.el (set-frame-font): Doc fix.
386
387 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
388
389 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
390
391 * emacs-lisp/package.el (package--download-one-archive):
392 Use `write-region' instead of `save-buffer' to avoid running various
393 hooks. (Bug#17155)
394 (describe-package-1): Same. Insert newline at the end of the
395 buffer if appropriate.
396
397 2014-05-26 Juri Linkov <juri@jurta.org>
398
399 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
400 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
401 Add more modifiers: meta, control, shift, hyper, super, alt.
402 (Bug#17439)
403
404 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
405 to allow changing its value with `set-variable'.
406
407 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
408
409 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
410 #; comments.
411 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
412 New functions.
413 (scheme-mode-variables): Set syntax-propertize-function instead of
414 font-lock-syntactic-face-function.
415 (scheme-font-lock-syntactic-face-function): Delete.
416
417 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
418
419 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
420 (bug#17392).
421
422 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
423
424 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
425 for a temporary file name.
426
427 2014-05-26 Eli Zaretskii <eliz@gnu.org>
428
429 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
430
431 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
432
433 * net/dbus.el (dbus-init-bus, dbus-call-method)
434 (dbus-call-method-asynchronously, dbus-send-signal)
435 (dbus-method-return-internal, dbus-method-error-internal):
436 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
437
438 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
439
440 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
441 methods which do not have a doc string. (Bug#17490)
442
443 2014-05-25 Tassilo Horn <tsdh@gnu.org>
444
445 * textmodes/reftex-ref.el (reftex-format-special): Make it work
446 also for AMS Math's \eqref macro.
447
448 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
449
450 Arrange to never byte-compile the generated -pkg.el file.
451
452 * emacs-lisp/package.el (package-generate-description-file):
453 Output first-line comment to set buffer-local var `no-byte-compile'.
454 Suggested by Dmitry Gutov:
455 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
456
457 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
458
459 Fix bug: Properly quote args to generated -pkg.el `define-package'.
460
461 * emacs-lisp/package.el (package-generate-description-file):
462 Inline `package--alist-to-plist'; rewrite to selectively
463 quote alist values that are not self-quoting.
464 (package--alist-to-plist): Delete func.
465
466 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
467
468 * term/xterm.el (xterm-function-map): Add mapping for shifted
469 keypad keys.
470
471 2014-05-24 Daniel Colascione <dancol@dancol.org>
472
473 * progmodes/subword.el (subword-find-word-boundary): Move point to
474 correct spot before search. (Bug#17580)
475
476 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
477 breaking the build.
478
479 2014-05-24 Leo Liu <sdl.web@gmail.com>
480
481 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
482
483 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
484
485 * minibuffer.el (completion--sreverse): Remove.
486 (completion--common-suffix): Use `reverse' instead.
487 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
488
489 2014-05-22 Glenn Morris <rgm@gnu.org>
490
491 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
492
493 2014-05-21 Daniel Colascione <dancol@dancol.org>
494
495 * files.el (interpreter-mode-alist): Add mksh.
496
497 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
498 derivative.
499 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
500 mksh. Improve custom spec; allow regular expressions.
501 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
502 (sh-after-hack-local-variables): New function.
503 (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
504 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
505 the normalization.
506 (sh-canonicalize-shell): Rewrite to support regexes.
507
508 2014-05-21 Leo Liu <sdl.web@gmail.com>
509
510 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
511
512 2014-05-19 Leo Liu <sdl.web@gmail.com>
513
514 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
515
516 2014-05-18 Glenn Morris <rgm@gnu.org>
517
518 * loadup.el:
519 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
520
521 2014-05-14 Sam Steingold <sds@gnu.org>
522
523 * progmodes/python.el (python-shell-get-or-create-process):
524 Do not bind `current-prefix-arg' so that C-c C-z does not talk
525 back unless requested.
526
527 2014-05-14 Glenn Morris <rgm@gnu.org>
528
529 * subr.el (with-file-modes): New macro.
530 * printing.el (pr-save-file-modes): Make obsolete.
531 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
532 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
533 Add with-file-modes.
534 * doc-view.el (doc-view-make-safe-dir):
535 * epg.el (epg--start):
536 * files.el (locate-user-emacs-file, make-temp-file)
537 (backup-buffer-copy, move-file-to-trash):
538 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
539 * eshell/esh-util.el (eshell-with-private-file-modes)
540 (eshell-make-private-directory):
541 * net/browse-url.el (browse-url-mosaic):
542 * obsolete/mailpost.el (post-mail-send-it):
543 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
544 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
545 Use with-file-modes.
546
547 * vc/emerge.el (emerge-make-temp-file): Simplify.
548
549 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
550 Stefan Monnier <monnier@iro.umontreal.ca>
551
552 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
553 suffix (bug#15419).
554
555 2014-05-14 Glenn Morris <rgm@gnu.org>
556
557 * vc/emerge.el (emerge-temp-file-prefix):
558 Make pointless option obsolete.
559 (emerge-temp-file-mode): Make non-functional option obsolete.
560
561 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
562
563 * net/browse-url.el (browse-url):
564 Use `unhandled-file-name-directory' when setting `default-directory',
565 in order to circumvent stalled remote connections. (Bug#17425)
566
567 2014-05-14 Glenn Morris <rgm@gnu.org>
568
569 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
570 Optimize on Emacs, which has the relevant functions for ages.
571
572 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
573
574 * simple.el (undo-make-selective-list): Obey undo-no-redo.
575
576 2014-05-12 Sam Steingold <sds@gnu.org>
577
578 * calendar/time-date.el (seconds-to-string): New function to
579 pretty print time delay in seconds.
580
581 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
582
583 * mpc.el (mpc-format): Trim Date to the year.
584 (mpc-songs-hashcons): Shorten the Date field.
585
586 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
587 into autoloading just because of a silly indirection.
588
589 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com> (tiny change)
590
591 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
592
593 2014-05-12 Glenn Morris <rgm@gnu.org>
594
595 * emacs-lisp/find-gc.el: Move to ../admin.
596
597 * printing.el (pr-version):
598 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
599
600 * net/browse-url.el (browse-url-mosaic):
601 Create /tmp/Mosaic.PID as a private file.
602
603 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
604
605 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
606 (advice--member-p): If name is given, only compare the name.
607 (advice--remove-function): Don't stop at the first match.
608 (advice--normalize-place): New function.
609 (add-function, remove-function): Use it.
610 (advice--add-function): Pass the name, if any, to
611 advice--remove-function.
612
613 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
614
615 * electric.el (electric-indent-post-self-insert-function): Don't use
616 `pos' after modifying the buffer (bug#17449).
617
618 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
619
620 * calendar/todo-mode.el (todo-insert-item-from-calendar):
621 Correct argument list to conform to todo-insert-item--basic.
622
623 2014-05-12 Glenn Morris <rgm@gnu.org>
624
625 * files.el (cd-absolute): Test if directory is accessible
626 rather than executable. (Bug#17330)
627
628 * progmodes/compile.el (recompile):
629 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
630
631 * net/browse-url.el (browse-url-mosaic):
632 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
633 This is CVE-2014-3423.
634
635 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
636
637 * mouse.el: Use the normal toplevel loop while dragging.
638 (mouse-set-point): Handle multi-clicks.
639 (mouse-set-region): Handle multi-clicks for drags.
640 (mouse-drag-region): Update call accordingly.
641 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
642 Use the normal event loop instead of a local while/read-event loop.
643 (global-map): Remove redundant bindings for double/triple-mouse-1.
644 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
645 Generate synthetic down events when the protocol only sends up events.
646 (xterm-mouse-last): Remove.
647 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
648 terminal parameter instead.
649 (xterm-mouse--set-click-count): New function.
650 (xterm-mouse-event): Detect/generate double/triple clicks.
651 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
652
653 * info.el (Info-quoted): New face.
654 (Info-mode-font-lock-keywords): New var.
655 (Info-mode): Use it.
656
657 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
658 are a hindrance for C-x C-e.
659
660 2014-05-11 Leo Liu <sdl.web@gmail.com>
661
662 * net/rcirc.el (rcirc-sentinel): Fix last change.
663
664 2014-05-08 Sam Steingold <sds@gnu.org>
665
666 * net/rcirc.el (rcirc-reconnect-delay): New user option.
667 (rcirc-sentinel): Auto-reconnect to the server if
668 `rcirc-reconnect-delay' is non-0 (but not more often than its
669 value in case the host is off-line).
670
671 2014-05-09 Eli Zaretskii <eliz@gnu.org>
672
673 * progmodes/grep.el (lgrep): Fix a typo in last commit.
674
675 2014-05-09 Glenn Morris <rgm@gnu.org>
676
677 * files.el (file-expand-wildcards):
678 * man.el (Man-support-local-filenames):
679 * printing.el (pr-i-directory, pr-interface-directory):
680 * progmodes/grep.el (lgrep, rgrep):
681 * textmodes/ispell.el (ispell-call-process)
682 (ispell-call-process-region, ispell-start-process)
683 (ispell-init-process): Use file-accessible-directory-p.
684
685 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
686
687 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
688 (xterm-mouse--read-event-sequence-1000): Return nil if something
689 looks fishy.
690 (xterm-mouse-event): Propagate it.
691 (xterm-mouse-translate-1): Handle it.
692
693 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
694
695 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
696 four slots of the parameter list are filled, make sure to pass it
697 to the argument list of todo-insert-item--basic.
698
699 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
700
701 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
702 Add optional `seen' argument to detect and break infinite loops.
703
704 2014-05-08 Eli Zaretskii <eliz@gnu.org>
705
706 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
707 (trace-unsafe, trace-use-tree): Make parentheses style be
708 according to Emacs style.
709
710 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
711
712 * net/tramp-sh.el (tramp-remote-process-environment):
713 Remove HISTFILE and HISTSIZE; it's too late to set them here.
714 Add :version entry.
715 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
716 Add "HISTSIZE=/dev/null" to the shell's env arguments. Do not send
717 extra "PSx=..." commands.
718 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
719 (Bug#17295)
720
721 (tramp-uudecode): Replace the hard-coded temporary file name by a
722 format specifier.
723 (tramp-remote-coding-commands): Enhance docstring.
724 (tramp-find-inline-encoding): Replace "%t" by a temporary file
725 name. (Bug#17415)
726 This is CVE-2014-3424.
727
728 2014-05-08 Glenn Morris <rgm@gnu.org>
729
730 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
731 (find-gc-source-files): Update some names.
732 (trace-call-tree): Simplify and update.
733 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
734 This is CVE-2014-3422.
735
736 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
737
738 * minibuffer.el (completion--try-word-completion): Revert fix for
739 Bug#15980 (bug#17375).
740
741 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
742 Always store button numbers in the same way in xterm-mouse-last;
743 Don't burp is xterm-mouse-last is not set as expected.
744 Never return negative indices.
745
746 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
747
748 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
749 Backtrack one char if the global/char-literal var matcher hits
750 inside a string. The next char could be the beginning of an
751 expression expansion.
752
753 2014-05-08 Glenn Morris <rgm@gnu.org>
754
755 * help-fns.el (describe-function-1): Test for an autoload before a
756 macro, since `macrop' works on autoloads. (Bug#17410)
757
758 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
759
760 * electric.el (electric-indent-functions-without-reindent): Add yaml.
761
762 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
763 Make sure the new point we return is within the new string (bug#17239).
764
765 2014-05-05 Daniel Colascione <dancol@dancol.org>
766
767 * progmodes/compile.el (compilation-error-regexp-alist-alist):
768 Port `gnu' pattern to rx.
769
770 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
771
772 Remove unneeded prompt when closing a buffer with active
773 emacsclient ("Buffer ... still has clients"), #16548.
774 * server.el (server-start): Remove the only call to:
775 (server-kill-buffer-query-function): Remove.
776
777 2014-05-04 Leo Liu <sdl.web@gmail.com>
778
779 * calendar/diary-lib.el (calendar-chinese-month-name-array):
780 Defvar to pacify compiler.
781
782 2014-05-04 Eli Zaretskii <eliz@gnu.org>
783
784 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
785
786 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
787
788 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
789 Use nil rather than `default' for the "default" appearance (bug#17388).
790 * vc/ediff-util.el (ediff-inferior-compare-regions)
791 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
792 a misleading `default' value when it's really a boolean.
793 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
794 overlay is not visible.
795
796 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
797
798 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
799 (todo-menu): Uncomment and update.
800
801 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
802
803 * calendar/todo-mode.el: Reimplement item editing to have the same
804 basic user interface as item insertion, and make small UI and
805 larger internal improvements to the latter.
806 (todo-insert-item): Add reference to the Todo mode user manual to
807 the documentation string.
808 (todo-insert-item--basic): Rename from todo-basic-insert-item and
809 adjust all callers. Change signature to combine diary and
810 nonmarking arguments. Incorporate functionality of deleted item
811 copying command and add error checking. Remove detailed
812 descriptions of the arguments from the documentation string, since
813 this is treated in the Todo mode user manual.
814 (todo-copy-item, todo-edit-multiline-item)
815 (todo-edit-done-item-comment, todo-edit-item-header)
816 (todo-edit-item-time, todo-edit-item-date-from-calendar)
817 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
818 (todo-edit-item-date-year, todo-edit-item-date-month)
819 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
820 Remove.
821 (todo-edit-item): Reimplement as wrapper command for
822 todo-edit-item--next-key and make it distinguish done and not done
823 todo items.
824 (todo-edit-item--text): New function, replacing old command
825 todo-edit-item and incorporating deleted commands
826 todo-edit-multiline-item and todo-edit-done-item-comment.
827 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
828 Use only numeric value of prefix argument. Remove detailed
829 descriptions of the arguments from the documentation string, since
830 this is treated in the Todo mode user manual.
831 (todo-edit-item--diary-inclusion): New function, replacing old
832 command todo-edit-item-diary-inclusion and incorporating and fixing
833 functionality of deleted command todo-edit-item-diary-nonmarking,
834 making sure to remove todo-nondiary-marker when adding
835 diary-nonmarking-symbol.
836 (todo-edit-category-diary-inclusion): Make sure to delete
837 diary-nonmarking-symbol when adding todo-nondiary-marker.
838 (todo-edit-category-diary-nonmarking): Fix indentation.
839 (todo-insert-item--parameters): Group diary and nonmarking
840 parameters together.
841 (todo-insert-item--apply-args): Adjust to signature of
842 todo-insert-item--basic and incorporate copy parameter.
843 Make small code improvements.
844 (todo-insert-item--next-param): Improve prompt and adjust it to
845 new parameter grouping. Remove obsolete code.
846 (todo-edit-item--param-key-alist)
847 (todo-edit-item--date-param-key-alist)
848 (todo-edit-done-item--param-key-alist): New defconsts.
849 (todo-edit-item--prompt): New variable.
850 (todo-edit-item--next-key): New function.
851 (todo-key-bindings-t): Bind "e" to todo-edit-item.
852 Remove bindings of deleted commands.
853
854 2014-05-04 Leo Liu <sdl.web@gmail.com>
855
856 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
857
858 2014-05-04 Glenn Morris <rgm@gnu.org>
859
860 * allout-widgets.el (allout-widgets-tally)
861 (allout-decorate-item-guides):
862 * menu-bar.el (menu-bar-positive-p):
863 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
864 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
865 * progmodes/js.el (js--inside-param-list-p)
866 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
867 * progmodes/prolog.el (region-exists-p):
868 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
869 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
870 Doc fixes (replace `iff').
871
872 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
873
874 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
875
876 2014-05-04 Leo Liu <sdl.web@gmail.com>
877
878 Support Chinese diary entries in calendar and diary. (Bug#17393)
879 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
880 (calendar-chinese-from-absolute-for-diary)
881 (calendar-chinese-to-absolute-for-diary)
882 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
883 (diary-chinese-list-entries): New functions to list and mark
884 Chinese diary entries in the calendar window.
885 (diary-chinese-anniversary)
886 (diary-chinese-insert-anniversary-entry)
887 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
888 (diary-chinese-insert-yearly-entry): New commands to insert
889 Chinese diary entries.
890
891 * calendar/diary-lib.el (diary-font-lock-keywords):
892 Support font-locking Chinese dates.
893
894 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
895 inserting Chinese diary entries.
896
897 * calendar/calendar.el (diary-chinese-entry-symbol):
898 New customizable variable.
899 (calendar-mode-map): Add bindings for inserting Chinese diary
900 entries.
901
902 2014-05-03 Juri Linkov <juri@jurta.org>
903
904 * dired.el (dired-check-switches, dired-switches-recursive-p):
905 New functions. (Bug#17218)
906 (dired-switches-escape-p, dired-move-to-end-of-filename):
907 Use `dired-check-switches'.
908 (dired-insert-old-subdirs, dired-build-subdir-alist)
909 (dired-sort-R-check): Use `dired-switches-recursive-p'.
910
911 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
912
913 * simple.el (undo-make-selective-list): New algorithm fixes
914 incorrectness of position adjustments when undoing in region.
915 (Bug#17235)
916 (undo-elt-crosses-region): Make obsolete.
917 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
918 New functions to adjust positions using undo-deltas.
919
920 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
921
922 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
923 the last consecutive closing paren (bug#17345).
924
925 2014-04-30 Reuben Thomas <rrt@sc3d.org>
926
927 * dired.el (dired-mode): make terminology for eXpunge command
928 consistent. (Bug#17276)
929
930 2014-04-30 Eli Zaretskii <eliz@gnu.org>
931
932 * dired.el (dired-initial-position-hook, dired-initial-position):
933 Doc string fixes.
934
935 2014-04-30 Glenn Morris <rgm@gnu.org>
936
937 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
938
939 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
940
941 * faces.el (face-spec-recalc): Apply X resources only after the
942 defface spec has been applied. Thus, X resources are no longer
943 overriden by the defface spec which also fixes issues on win32 where
944 the toolbar coloring was wrong because it is set through X resources
945 and was (wrongfully) overriden. (Bug#16694)
946
947 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * textmodes/rst.el (electric-pair-pairs): Declare.
950 (rst-mode): Set it (bug#17131).
951
952 2014-04-30 Juri Linkov <juri@jurta.org>
953
954 * desktop.el (desktop-value-to-string): Let-bind `print-length'
955 and `print-level' to nil. (Bug#17351)
956
957 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
958
959 * battery.el (battery-update): Handle the case where battery
960 status is "N/A" (bug#17319).
961
962 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
963
964 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
965 to syntax-propertize.
966 (ps-mode-auto-indent): Mark as obsolete.
967 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
968 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
969 word regexp operators.
970 (ps-mode-map): Move initialization into declaration. Remove binding
971 for TAB, RET, >, ], and }.
972 (ps-mode-syntax-table): Move initialization into declaration.
973 Don't give word syntax to non-word chars.
974 (ps-run-mode-map): Move initialization into declaration.
975 (ps-mode-menu-main): Remove auto-indent entry.
976 (ps-mode-smie-rules): New function.
977 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
978 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
979 (ps-mode--string-syntax-table): New const.
980 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
981 New functions.
982 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
983 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
984
985 2014-04-27 Daniel Colascione <dancol@dancol.org>
986
987 * term/xterm.el (xterm-paste): Use large finite timeout when
988 reading event to avoid putting keys in this-command-keys.
989
990 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
991
992 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
993 (perl-syntax-propertize-function): Use it. Extend handling of
994 here-docs to the unquoted case.
995
996 2014-04-25 Eli Zaretskii <eliz@gnu.org>
997
998 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
999 Use equal-including-properties to compare help-echo strings (bug#17331).
1000
1001 2014-04-25 Leo Liu <sdl.web@gmail.com>
1002
1003 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1004 Fix syntax for @. (Bug#17325)
1005
1006 2014-04-25 Daniel Colascione <dancol@dancol.org>
1007
1008 * emacs-lisp/cl.el (gv): Require gv early to break eager
1009 macro-expansion cycles.
1010
1011 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1012
1013 * simple.el (region-active-p): Check there's a mark (bug#17324).
1014
1015 * simple.el (completion-list-mode-map): Use choose-completion for the
1016 mouse binding as well (bug#17302).
1017 (completion-list-mode, completion-setup-function): Adjust docstring and
1018 echo area message accordingly.
1019 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
1020 calling convention of choose-completion.
1021 * comint.el (comint-dynamic-list-completions):
1022 * term.el (term-dynamic-list-completions): Accept choose-completion.
1023
1024 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
1025 &, |, +, - and * can't be a division (bug#17317).
1026
1027 * term/xterm.el (xterm--version-handler): Don't use modern xterm
1028 features on gnome-terminal (bug#16988).
1029
1030 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
1031
1032 Improve Scheme font-locking for (define ((foo ...) ...) ...).
1033
1034 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
1035 the declared object, ignore zero or more parens, not zero or one.
1036
1037 2014-04-24 Leo Liu <sdl.web@gmail.com>
1038
1039 * progmodes/xscheme.el (xscheme-expressions-ring)
1040 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
1041 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
1042 (xscheme-allow-output-p, xscheme-prompt)
1043 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
1044
1045 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
1046 Comment out unused functions.
1047
1048 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1049
1050 * info.el: Use lexical-binding and cl-lib.
1051 Use defvar-local and setq-local instead of make-local-variable.
1052 (Info-apropos-matches): Avoid add-to-list.
1053 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
1054
1055 2014-04-24 Daniel Colascione <dancol@dancol.org>
1056
1057 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
1058
1059 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1060
1061 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
1062
1063 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
1064
1065 * dired.el (dired-insert-set-properties): Do not consider
1066 subdirectory headings and empty lines to be information that
1067 `dired-hide-details-mode' should hide. (Bug#17228)
1068
1069 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1070
1071 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1072 Remove test messages.
1073 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
1074 and `target' twice.
1075
1076 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1077
1078 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
1079 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
1080
1081 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
1082
1083 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1084
1085 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1086 Set "IFS=" when using read builtin, in order to preserve spaces in
1087 the file name. Add test messages for hunting a bug on hydra.
1088 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
1089
1090 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1091
1092 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
1093 Don't prettify a word within a symbol.
1094
1095 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1096
1097 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
1098 possible.
1099
1100 2014-04-22 Daniel Colascione <dancol@dancol.org>
1101
1102 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
1103 use defun to define `function-put'.
1104
1105 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1106
1107 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
1108 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
1109 (lisp-mode-variables): Set font-lock-extra-managed-props.
1110
1111 * emacs-lisp/byte-run.el (function-put): New function.
1112 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
1113 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
1114 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
1115 Use them.
1116
1117 2014-04-22 Daniel Colascione <dancol@dancol.org>
1118
1119 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
1120 Add `full-p' parameter; when nil, call `macroexpand' instead of
1121 `macroexpand-all'.
1122
1123 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1124 Improve docstrings.
1125
1126 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1127 Use lambda function values, not quoted lambdas.
1128 (byte-compile-recurse-toplevel): Remove extraneous &optional.
1129
1130 * emacs-lisp/cl-macs.el
1131 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
1132 (cl-struct-slot-value): Conditionally use aref or nth so that the
1133 compiler produces optimal code.
1134
1135 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1136
1137 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
1138 (inline): Don't inline cl--set-elt.
1139 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
1140 Define as inlinable instead.
1141 (cl-struct-set-slot-value): Remove.
1142
1143 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
1144 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
1145 Use setf instead.
1146
1147 2014-04-21 Daniel Colascione <dancol@dancol.org>
1148
1149 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
1150 last two parameters after all.
1151 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
1152 (cl--compiler-macro-assoc,cl-struct-slot-value)
1153 (cl-struct-set-slot-value): Stop using them.
1154
1155 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
1158 entry in image-mode-winprops-alist.
1159
1160 2014-04-21 Daniel Colascione <dancol@dancol.org>
1161
1162 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
1163 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
1164 (byte-compile-toplevel-file-form): Use it.
1165
1166 * emacs-lisp/cl-macs.el:
1167 (cl--loop-let): Properly destructure `while' clauses.
1168
1169 2014-04-20 Daniel Colascione <dancol@dancol.org>
1170
1171 * vc/vc.el (vc-root-dir): New public autoloaded function for
1172 generically finding the current VC root.
1173 * vc/vc-hooks.el (vc-not-supported): New error.
1174 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
1175
1176 2014-04-20 Daniel Colascione <dancol@dancol.org>
1177
1178 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
1179 argument.
1180 (cl--const-expr-val): cl--const-expr-val should macroexpand its
1181 argument in case we're inside a symbol-macrolet.
1182 (cl--do-arglist, cl--compiler-macro-typep)
1183 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
1184 environment to `cl--const-expr-val'.
1185 (cl-struct-sequence-type,cl-struct-slot-info)
1186 (cl-struct-slot-offset, cl-struct-slot-value)
1187 (cl-struct-set-slot-value): New functions.
1188
1189 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1190
1191 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
1192 assignments such as "case=hello" (bug#17297).
1193
1194 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
1195
1196 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
1197 Do not autoload.
1198 (tramp-file-name-handler, tramp-completion-file-name-handler):
1199 Revert patch from 2014-04-10, it isn't necessary anymore.
1200 (tramp-autoload-file-name-handler)
1201 (tramp-register-autoload-file-name-handlers): New defuns.
1202 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
1203 (tramp-register-file-name-handlers): Remove also
1204 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
1205 Do not autoload its invocation, but eval it after loading of 'tramp.
1206
1207 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
1208
1209 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
1210
1211 2014-04-17 Daniel Colascione <dancol@dancol.org>
1212
1213 Add support for bracketed paste mode; add infrastructure for
1214 managing terminal mode enabling and disabling automatically.
1215
1216 * xt-mouse.el:
1217 (xterm-mouse-mode): Simplify.
1218 (xterm-mouse-tracking-enable-sequence)
1219 (xterm-mouse-tracking-disable-sequence): New constants.
1220 (turn-on-xterm-mouse-tracking-on-terminal)
1221 (turn-off-xterm-mouse-tracking-on-terminal):
1222 Use tty-mode-set-strings and tty-mode-reset-strings terminal
1223 parameters instead of random hooks.
1224 (turn-on-xterm-mouse-tracking)
1225 (turn-off-xterm-mouse-tracking): Delete.
1226
1227 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
1228 (xterm-paste-ending-sequence): New constant.
1229 (xterm-paste): New command used for bracketed paste support.
1230
1231 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
1232 (terminal-init-xterm-bracketed-paste-mode): New function.
1233 (terminal-init-xterm): Call it.
1234 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
1235 and tty-mode-reset-strings instead of random hooks.
1236 (xterm-turn-on-modify-other-keys)
1237 (xterm-turn-off-modify-other-keys)
1238 (xterm-remove-modify-other-keys): Delete obsolete functions.
1239
1240 * term/screen.el: Rewrite to just use the xterm code.
1241 Add copyright notice. Mention tmux.
1242
1243 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
1244
1245 * image-mode.el (image-mode-window-put): Also update the property of
1246 the "default window".
1247 * doc-view.el (doc-view-new-window-function): If no window
1248 exists, move to the last known page.
1249
1250 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1251
1252 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
1253 here-documents (bug#17262).
1254
1255 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1256
1257 * term/pc-win.el (x-list-fonts, x-get-selection-value):
1258 Provide doc strings, as required by snarf-documentation.
1259
1260 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1261
1262 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
1263 arg of overlays-at. Use `invisible-p'.
1264
1265 * obsolete/lucid.el (extent-at):
1266 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
1267 overlays-at.
1268 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
1269
1270 2014-04-16 João Távora <joaotavora@gmail.com>
1271
1272 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
1273 links. (Bug#17217).
1274
1275 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1276
1277 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1278 Use mapc to loop over a vector. (Bug#17257).
1279
1280 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
1281
1282 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
1283 patch, there are new problems with file names containing spaces.
1284 Get rid of backticks. (Bug#17238)
1285
1286 2014-04-16 João Távora <joaotavora@gmail.com>
1287
1288 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
1289 possible bug.
1290
1291 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1292
1293 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
1294 (blink-cursor-mode): Mention customization variables and the
1295 effect of 'blink-cursor-blinks'.
1296
1297 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
1298
1299 * simple.el (undo): Prevent insertion of identity mapping into
1300 undo-equiv-table so as undo-only does not inf loop in the presence
1301 of consecutive nils in undo list.
1302
1303 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
1304
1305 * faces.el (make-face): Deprecate optional argument as it is no
1306 longer needed/used since the conditional X resources handling
1307 has been pushed down to make-face-x-resource-internal itself.
1308 (make-empty-face): Don't pass optional argument to make-face.
1309
1310 2014-04-16 Karl Fogel <kfogel@red-bean.com>
1311
1312 * savehist.el (savehist-save): Remove workaround for a read-passwd
1313 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
1314 noticing that the shim was still present.
1315
1316 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1317
1318 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
1319
1320 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
1321
1322 * faces.el (face-set-after-frame-default): Remove unused local variable.
1323
1324 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1325
1326 * progmodes/grep.el: Use lexical-binding.
1327 (grep-expand-template): Pass explicit lexical env to `eval'.
1328 (zrgrep): Let-bind grep-find-template explicitly.
1329
1330 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
1331 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
1332
1333 2014-04-12 Eli Zaretskii <eliz@gnu.org>
1334
1335 * international/characters.el <standard-case-table>: Add entries
1336 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
1337 Set category of Coptic characters be 'g' (Greek).
1338
1339 2014-04-12 Leo Liu <sdl.web@gmail.com>
1340
1341 * progmodes/octave.el (completion-table-with-cache):
1342 Define if not available.
1343 (octave-goto-function-definition, octave-sync-function-file-names)
1344 (octave-find-definition-default-filename):
1345 Backquote upattern for compatibility.
1346
1347 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
1348
1349 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
1350 name twice due to backticks. (Bug#17238)
1351
1352 2014-04-12 Glenn Morris <rgm@gnu.org>
1353
1354 * term/w32-win.el (x-win-suspend-error):
1355 * term/x-win.el (x-win-suspend-error): Sync docs.
1356
1357 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
1358
1359 * faces.el (make-face): Remove deprecated optional argument.
1360 The conditional application of X resources is handled directly by
1361 make-face-x-resource-internal since Emacs 24.4.
1362 (make-empty-face): Don't pass optional argument to make-face.
1363
1364 2014-04-11 Glenn Morris <rgm@gnu.org>
1365
1366 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
1367
1368 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1369
1370 Ediff's overlay priorities cause more trouble than they solve.
1371 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
1372 (ediff-highest-priority): Remove function (bug#17234).
1373 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
1374 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
1375 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
1376 overlay priorities.
1377
1378 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
1379
1380 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
1381 entry; use symbol boundaries to avoid mis-matches.
1382
1383 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
1384
1385 * net/tramp.el (tramp-file-name-handler)
1386 (tramp-completion-file-name-handler): Avoid recursive loading.
1387
1388 * net/tramp-sh.el (tramp-make-copy-program-file-name):
1389 Quote result also locally.
1390
1391 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1392
1393 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
1394 Remove left-over code.
1395
1396 * newcomment.el (comment-indent-new-line): Sink code where it's used.
1397 Reuse the previous comment's indentation unconditionally if it's on its
1398 own line.
1399
1400 2014-04-09 Daniel Colascione <dancol@dancol.org>
1401
1402 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
1403 `no-syntax-crossing' arguments. Forward to `up-list'.
1404 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
1405 Implement logic for escaping from strings. Use narrowing to deal
1406 with corner cases.
1407
1408 2014-04-09 Leo Liu <sdl.web@gmail.com>
1409
1410 * net/rcirc.el (rcirc-connection-info): New variable.
1411 (rcirc-connect): Use it to store connection info.
1412 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
1413 for killed process.
1414 (rcirc-cmd-reconnect): New command. (Bug#17045)
1415 (rcirc-mode, set-rcirc-encode-coding-system)
1416 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
1417
1418 2014-04-09 Daniel Colascione <dancol@dancol.org>
1419
1420 * emacs-lisp/cl-indent.el: Add comment claiming
1421 facility is also good for elisp.
1422 (lisp-indent-find-method): New function.
1423 (common-lisp-indent-function): Recognize cl-loop.
1424 (common-lisp-indent-function-1): Recognize cl constructs; use
1425 `lisp-indent-find-method' instead of `get' directly.
1426 (if): Use else-body style for elisp.
1427
1428 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
1429
1430 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
1431 Module methods. (Bug#17216)
1432
1433 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1434
1435 * help.el (describe-bindings): Fix buffer handling (bug#17210).
1436 (describe-bindings-internal): Mark obsolete.
1437
1438 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1439
1440 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
1441 buffer-file-name, and buffer-file-truename any more.
1442
1443 2014-04-08 Leo Liu <sdl.web@gmail.com>
1444
1445 Use lexical-binding and require cl-lib.
1446 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
1447 (rcirc-handler-generic, rcirc-fill-paragraph)
1448 (rcirc-format-response-string, rcirc-target-buffer)
1449 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
1450 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
1451 (rcirc-ctcp-sender-PING, rcirc-browse-url)
1452 (rcirc-markup-timestamp, rcirc-markup-attributes)
1453 (rcirc-markup-my-nick, rcirc-markup-urls)
1454 (rcirc-markup-bright-nicks, rcirc-markup-fill)
1455 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
1456 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
1457 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
1458 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
1459 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
1460 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
1461 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
1462 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
1463 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
1464 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
1465 use cl-lib.
1466
1467 2014-04-07 João Távora <joaotavora@gmail.com>
1468
1469 * elec-pair.el (electric-pair--syntax-ppss):
1470 When inside comments parse from comment beginning.
1471 (electric-pair--balance-info): Fix typo in comment.
1472 (electric-pair--in-unterminated-string-p): Delete.
1473 (electric-pair--unbalanced-strings-p): New function.
1474 (electric-pair-string-bound-function): New var.
1475 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1476 according to `electric-pair--in-unterminated-string-p'
1477
1478 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1479 Inhibit quote pairing if point-max is inside an unterminated string.
1480 (electric-pair--looking-at-unterminated-string-p): Delete.
1481 (electric-pair--in-unterminated-string-p): New function.
1482
1483 2014-04-07 Glenn Morris <rgm@gnu.org>
1484
1485 * shell.el (shell-directory-tracker):
1486 Go back to just ignoring failures. (Bug#17159)
1487
1488 2014-04-07 João Távora <joaotavora@gmail.com>
1489
1490 Fix `electric-pair-delete-adjacent-pairs' in modes binding
1491 backspace. (bug#16981)
1492 * elec-pair.el (electric-pair-backward-delete-char): Delete.
1493 (electric-pair-backward-delete-char-untabify): Delete.
1494 (electric-pair-mode-map): Bind backspace to a menu item filtering
1495 a new `electric-pair-delete-pair' command.
1496 (electric-pair-delete-pair): New command.
1497
1498 * progmodes/python.el (python-electric-pair-string-delimiter):
1499 Fix triple-quoting electricity. (Bug#17192)
1500
1501 * elec-pair.el (electric-pair-post-self-insert-function):
1502 Don't skip whitespace when `electric-pair-text-pairs' and
1503 `electric-pair-pairs' were used. syntax to
1504 electric-pair--skip-whitespace. (Bug#17183)
1505
1506 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1507
1508 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
1509 "<F>". (Bug#17199)
1510
1511 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1512
1513 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
1514 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
1515
1516 2014-04-07 Glenn Morris <rgm@gnu.org>
1517
1518 * help.el (view-lossage): Doc tweak.
1519
1520 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
1521
1522 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
1523 only when inhibit-x-resources is nil, and do that earlier in the
1524 function. Doc fix. (Bug#16694)
1525 (face-spec-choose): Accept additional optional argument, whose
1526 value is returned if no matching attributes are found.
1527 (face-spec-recalc): Use the new optional argument when calling
1528 face-spec-choose. (Bug#16378)
1529 (make-face-x-resource-internal): Do nothing when
1530 inhibit-x-resources is non-nil. Don't touch the default face if
1531 reversed video is given--as was done in previous versions of Emacs.
1532 (face-set-after-frame-default): Don't call
1533 make-face-x-resource-internal here. (Bug#16434)
1534
1535 2014-04-07 Tassilo Horn <tsdh@gnu.org>
1536
1537 * doc-view.el (doc-view-bookmark-jump):
1538 Use `bookmark-after-jump-hook' to jump to the right page after the
1539 buffer is shown in a window. (bug#16090)
1540
1541 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1542
1543 * international/characters.el (mirroring): Fix last change:
1544 instead of loading uni-mirrored.el explicitly, do that implicitly
1545 by creating the 'mirroring' uniprop table. This avoids announcing
1546 the loading of uni-mirrored.el.
1547
1548 2014-04-07 Glenn Morris <rgm@gnu.org>
1549
1550 * files.el (buffer-stale--default-function)
1551 (buffer-stale-function, revert-buffer--default):
1552 * autorevert.el (auto-revert-buffers): Doc tweaks.
1553
1554 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1555
1556 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
1557
1558 2014-04-07 Glenn Morris <rgm@gnu.org>
1559
1560 * files.el (make-backup-file-name-function)
1561 (make-backup-file-name, make-backup-file-name--default-function)
1562 (make-backup-file-name-1, find-backup-file-name)
1563 (revert-buffer-function, revert-buffer-insert-file-contents-function)
1564 (buffer-stale--default-function, buffer-stale-function)
1565 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
1566 (revert-buffer, revert-buffer--default)
1567 (revert-buffer-insert-file-contents--default-function):
1568 Doc fixes related to defaults no longer being nil.
1569 (make-backup-file-name-function): Bump :version.
1570 Restore nil as a valid but deprecated custom type.
1571
1572 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1573
1574 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1575 Handle $' used as a variable (bug#17174).
1576
1577 * progmodes/perl-mode.el (perl-indent-new-calculate):
1578 Handle forward-sexp failure (bug#16985).
1579 (perl-syntax-propertize-function): Add "foreach" and "for" statement
1580 modifiers introducing expressions (bug#17116).
1581
1582 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
1583
1584 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
1585
1586 2014-04-05 Leo Liu <sdl.web@gmail.com>
1587
1588 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
1589 Add define-compilation-mode.
1590
1591 2014-04-04 João Távora <joaotavora@gmail.com>
1592
1593 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
1594 parse from comment beginning.
1595 (electric-pair--balance-info): Fix typo in comment.
1596 (electric-pair--in-unterminated-string-p): Delete.
1597 (electric-pair--unbalanced-strings-p): New function.
1598 (electric-pair-string-bound-function): New var.
1599 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1600 according to `electric-pair--in-unterminated-string-p'.
1601
1602 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1603
1604 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
1605 Move declaration before first use.
1606 (reftex-move-to-next-arg): Silence compiler warning.
1607
1608 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
1609
1610 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
1611 Use `window-total-width' instead of `window-width'.
1612
1613 2014-04-03 Daniel Colascione <dancol@dancol.org>
1614
1615 * subr.el (set-transient-map): Remove rms's workaround entirely;
1616 use new `suspicious-object' subr to mark our lambda for closer
1617 scrutiny during gc.
1618
1619 2014-04-02 Richard Stallman <rms@gnu.org>
1620
1621 * subr.el (set-transient-map): Comment out previous change.
1622
1623 2014-04-02 Glenn Morris <rgm@gnu.org>
1624
1625 * menu-bar.el (menu-bar-file-menu):
1626 * vc/ediff.el (ediff-current-file):
1627 Update for revert-buffer-function no longer being nil by default.
1628
1629 * simple.el (command-execute): Respect nil disabled-command-function.
1630
1631 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1632
1633 * simple.el (command-execute): Do not execute the command when it
1634 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
1635
1636 2014-04-02 Juri Linkov <juri@jurta.org>
1637
1638 * dired-aux.el (dired-compress-file): Don't use string-match-p
1639 because its match data is used afterwards.
1640
1641 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
1642
1643 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
1644 0 like nil.
1645
1646 2014-04-02 João Távora <joaotavora@gmail.com>
1647
1648 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1649 Inhibit quote pairing if point-max is inside an unterminated string.
1650 (electric-pair--looking-at-unterminated-string-p):
1651 Delete.
1652 (electric-pair--in-unterminated-string-p): New function.
1653
1654 2014-04-01 Daniel Colascione <dancol@dancol.org>
1655
1656 * minibuffer.el (minibuffer-complete): Prevent assertion failure
1657 when trying to complete the prompt.
1658
1659 2014-03-31 Leo Liu <sdl.web@gmail.com>
1660
1661 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1662 Refactor out eldoc-documentation-function-default.
1663 (eldoc-documentation-function-default): New function.
1664 (eldoc-documentation-function): Change value.
1665
1666 2014-03-31 Glenn Morris <rgm@gnu.org>
1667
1668 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
1669
1670 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
1671 (vhdl-compose-components-package, vhdl-compose-configuration):
1672 Abbreviate default-directory (missing from some previous upstream sync).
1673
1674 2014-03-31 Reto Zimmermann <reto@gnu.org>
1675
1676 Sync with upstream vhdl mode v3.35.2.
1677 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
1678 (top-level): No longer require assoc.
1679 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
1680 New functions. Use throughout to replace aget etc.
1681 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
1682 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
1683 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
1684 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
1685 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
1686 except `vhdl-compiler'.
1687 (vhdl-error-regexp-add-emacs): Remove all other compilers,
1688 when appropriate.
1689
1690 2014-03-31 Glenn Morris <rgm@gnu.org>
1691
1692 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
1693 Revert 2014-03-26 merge goof; go back to using defalias.
1694
1695 2014-03-30 Daniel Colascione <dancol@dancol.org>
1696
1697 * comint.el (comint-send-input):
1698 Deactivate completion-in-region-mode before we send comint input.
1699 (Bug#17139).
1700
1701 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
1702 on keyboard-quit.
1703
1704 2014-03-29 Glenn Morris <rgm@gnu.org>
1705
1706 * textmodes/reftex.el: Manage most autoloads automatically.
1707 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
1708 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
1709 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
1710 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
1711 * textmodes/reftex-toc.el: Set generated-autoload-file,
1712 and add autoload cookies for reftex.el.
1713 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
1714
1715 2014-03-28 Glenn Morris <rgm@gnu.org>
1716
1717 * cus-start.el (report-emacs-bug-address): Set custom properties.
1718 * mail/emacsbug.el (report-emacs-bug-address):
1719 Variable is now defined in emacs.c.
1720
1721 * mail/emacsbug.el (report-emacs-bug):
1722 Include system-configuration-features.
1723
1724 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
1725
1726 * simple.el (cycle-spacing): Never delete spaces on first run by
1727 default, but do so in a new 'fast mode and if there are already
1728 N spaces (the previous behavior).
1729 Compare N with its value in previous invocation so that changing
1730 prefix argument restarts `cycle-spacing' sequence.
1731 The idea is that with this change, binding M-SPC to
1732 `cycle-spacing' should not introduce any changes in behavior of
1733 the binding so long as users do not type M-SPC twice in a raw with
1734 the same prefix argument or lack thereof.
1735
1736 2014-03-28 Glenn Morris <rgm@gnu.org>
1737
1738 * faces.el (term-file-aliases): New variable.
1739 (tty-run-terminal-initialization): Respect term-file-aliases.
1740 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
1741 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
1742 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
1743
1744 2014-03-27 Glenn Morris <rgm@gnu.org>
1745
1746 * startup.el (inhibit-startup-hooks): Doc tweak.
1747 (normal-top-level): Simplify running of hooks.
1748 For window-setup-hook, respect inhibit-startup-hooks.
1749 (command-line-1): Don't set window-setup-hook to nil.
1750
1751 Allow selective autoloading from obsolete/ directory.
1752 * Makefile.in (obsolete-autoloads): New rule.
1753 (autoloads): Run obsolete-autoloads.
1754 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
1755 * simple.el (iswitchb-mode): Remove hand-written autoloads.
1756
1757 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
1758
1759 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1760 Highlight special globals with font-lock-builtin-face. (Bug#17057)
1761
1762 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1763 Don't propertize `?' or `!' as symbol constituent when after
1764 colon. (Bug#17097)
1765
1766 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
1767
1768 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
1769 which is no longer needed and causes trouble in GTK builds (bug#17046).
1770
1771 * emacs-lisp/package-x.el (package--archive-contents-from-url):
1772 Use url-insert-file-contents; package-handle-response no longer exists.
1773
1774 2014-03-26 Daniel Colascione <dancol@dancol.org>
1775
1776 * simple.el (process-menu-mode-map): New variable.
1777 (process-menu-delete-process): New command.
1778
1779 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
1780
1781 * emacs-lisp/package.el: Fix bug#16733 (again).
1782 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
1783 (url-http-target-url): Remove unused declarations.
1784 (package-handle-response): Remove.
1785 (package--with-work-buffer): Use url-insert-file-contents and simplify.
1786 (package--download-one-archive): Use current-buffer instead of
1787 dynamic binding of `buffer'.
1788 (describe-package-1): Do not decode readme-string.
1789
1790 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
1791
1792 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
1793
1794 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
1795 from 2014-03-07, it decreases performance unnecessarily. Let-bind
1796 `remote-file-name-inhibit-cache' to nil in the second pass.
1797 (tramp-find-executable): Do not call "which" on SunOS.
1798 (tramp-send-command-and-check): Fix docstring.
1799 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
1800 check whether source directory has set the sticky bit.
1801
1802 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
1803
1804 * simple.el (primitive-undo): Only process marker adjustments
1805 validated against their corresponding (TEXT . POS). Issue warning
1806 for lone marker adjustments in undo history. (Bug#16818)
1807 (undo-make-selective-list): Add marker adjustments to selective
1808 undo list based on whether their corresponding (TEXT . POS) is in
1809 the region. Remove variable adjusted-markers, which was unused
1810 and only non nil during undo-make-selective-list.
1811 (undo-elt-in-region): Return nil when passed a marker adjustment
1812 and explain in function doc.
1813
1814 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1815
1816 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
1817
1818 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
1819
1820 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
1821 Match special global variables without curlies, too.
1822 (ruby-font-lock-keywords): Simplify the matcher for special global
1823 variables. Don't require a non-word character after the variable.
1824 (Bug#17057)
1825
1826 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
1827
1828 * simple.el (redisplay-highlight-region-function): Increase priority of
1829 overlay to make sure boundaries are visible (bug#15899).
1830
1831 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
1832
1833 * frameset.el (frameset--initial-params): Fix typo in parameter name.
1834 (frameset-restore): Compare display strings with equal.
1835
1836 * frame.el (make-frame): Don't quote display name in error message,
1837 it is already a string.
1838
1839 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1840
1841 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
1842 the password.
1843
1844 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
1845
1846 * emacs-lisp/package.el (package--add-to-archive-contents):
1847 Include already installed and built-in packages in
1848 `package-archive-contents'.
1849 (package-install): Don't include already installed packages in the
1850 options during interactive invocation. (Bug#16762)
1851 (package-show-package-list): If the buffer is already displayed in
1852 another window, switch to that window.
1853
1854 2014-03-26 Reto Zimmermann <reto@gnu.org>
1855
1856 Sync with upstream vhdl mode v3.35.1.
1857 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
1858 (vhdl-compiler-alist): Doc fix.
1859 (vhdl-goto-line): Remove.
1860 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
1861 (vhdl-mode) <paragraph-start>: Fix value.
1862 (vhdl-fix-statement-region): Not `for' in wait-statement.
1863 (vhdl-beautify-region): Also (un)tabify.
1864 (vhdl-get-visible-signals):
1865 Scan declarative part of generate statements.
1866 (vhdl-template-record): Fix indentation for record type declaration.
1867 (vhdl-expand-abbrev, vhdl-expand-paren):
1868 Revert to using fset again rather than defalias.
1869 (vhdl-scan-directory-contents): Tweak.
1870 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
1871 (vhdl-compose-components-package):
1872 Replace vhdl-goto-line with forward-line.
1873 (top-level): Tweak speedbar frame selection.
1874 (vhdl-generate-makefile-1): Support for compilers with no
1875 unit-to-file name mapping (create directory with dummy files).
1876
1877 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
1878
1879 Sync with upstream verilog-mode revision 702457d.
1880 * progmodes/verilog-mode.el (verilog-mode-version): Update.
1881 (create-lockfiles): Declare.
1882 (verilog-read-decls): Fix module header imports, bug709.
1883 Reported by Victor Lau.
1884 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
1885 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
1886 interface-only modules, bug721. Reported by Dean Hoyt.
1887
1888 2014-03-26 Glenn Morris <rgm@gnu.org>
1889
1890 * obsolete/gulp.el: Move here from emacs-lisp/.
1891
1892 * files.el (lock-buffer, unlock-buffer, file-locked-p):
1893 Remove fallback aliases, since they are always defined now.
1894
1895 2014-03-24 Daniel Colascione <dancol@dancol.org>
1896
1897 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
1898 instead of cl-loop search function.
1899
1900 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
1901
1902 * calendar/parse-time.el (parse-time-iso8601-regexp)
1903 (parse-iso8601-time-string): Copied from `url-dav' so that we can use
1904 it more generally.
1905
1906 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
1907
1908 * net/dns.el (network-interface-list): Define for XEmacs.
1909
1910 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
1911
1912 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
1913 the network interfaces changed.
1914 (dns-query): Use it to flush the data.
1915
1916 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
1917
1918 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
1919
1920 2014-03-23 Daniel Colascione <dancol@dancol.org>
1921
1922 Change subword-mode to use `find-word-boundary-function-table' and
1923 replace `capitalized-words-mode'. Also, convert to lexical
1924 binding.
1925
1926 * progmodes/cap-words.el: Delete now-obsolete file.
1927 * progmodes/subword.el: Reimplement using
1928 `find-word-boundary-function-table'.
1929 (subword-mode-map): Hollow out.
1930 (capitalized-words-mode): Define as obsolete alias for
1931 `subword-mode'.
1932 (subword-mode, superword-mode): Tweak documentation to reflect new
1933 implementation; call `subword-setup-buffer'.
1934 (subword-forward, subword-capitalize): Add underscore to indicate
1935 unused variable.
1936 (subword-find-word-boundary-function-table): New constant.
1937 (subword-empty-char-table): New constant.
1938 (subword-setup-buffer): New function.
1939 (subword-find-word-boundary): New function.
1940
1941 2014-03-23 Daniel Colascione <dancol@dancol.org>
1942
1943 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
1944 list to look for keyword arguments instead of `memq', fixing
1945 (Bug#3647) --- unfortunately, only for freshly-compiled code.
1946 Please make bootstrap.
1947
1948 2014-03-22 Glenn Morris <rgm@gnu.org>
1949
1950 * dired.el (dired-read-regexp): Make obsolete.
1951 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
1952 (dired-flag-files-regexp):
1953 * dired-aux.el (dired-mark-read-regexp):
1954 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
1955
1956 * startup.el (fancy-startup-text):
1957 * help.el (describe-gnu-project): Visit online info about GNU project.
1958
1959 * help-fns.el (help-fns--interactive-only): New function.
1960 (help-fns-describe-function-functions): Add the above function.
1961 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
1962 (next-line, previous-line): Remove hand-written interactive-only
1963 information from doc strings, it is auto-generated now.
1964 * bookmark.el (bookmark-write):
1965 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
1966 (epa-mail-import-keys): Mark interactive-only,
1967 and remove hand-written interactive-only information from doc strings.
1968 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
1969 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
1970 * files.el (not-modified):
1971 * simple.el (mark-whole-buffer): Mark interactive-only.
1972
1973 * emacs-lisp/byte-run.el (defun-declarations-alist):
1974 Add interactive-only. Doc tweak.
1975 (macro-declarations-alist): Doc tweak.
1976 * subr.el (declare): Doc tweak (add xref to manual).
1977 * comint.el (comint-run):
1978 * files.el (insert-file-literally, insert-file):
1979 * replace.el (replace-string, replace-regexp):
1980 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
1981 (delete-forward-char, goto-line, insert-buffer, next-line)
1982 (previous-line): Set interactive-only via declare.
1983
1984 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
1985
1986 * emacs-lisp/package.el (package-desc): Use the contents of the
1987 quoted form, not its cdr. (Bug#16873)
1988
1989 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
1990
1991 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
1992 benefit of doc.c; change parameter profile to match the X function.
1993
1994 2014-03-22 Leo Liu <sdl.web@gmail.com>
1995
1996 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
1997 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
1998
1999 2014-03-21 Richard Stallman <rms@gnu.org>
2000
2001 * battery.el (battery-linux-sysfs): Search for each field
2002 from the beginning of the buffer.
2003
2004 * subr.el (set-transient-map): Clear out function and value
2005 of the temporary symbol when we're done with it.
2006
2007 * mail/rmailsum.el (rmail-summary-delete-forward):
2008 Optimize case of reaching end and handling count.
2009 (rmail-summary-mark-deleted): Optimize when N is current msg.
2010 Don't create new summary line.
2011 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
2012 (rmail-summary-undelete-many): Rewrite for speed.
2013 (rmail-summary-msg-number): New function.
2014
2015 * mail/rmail.el (rmail-delete-message): Update summary.
2016 (rmail-undelete-previous-message): Handle repeat count arg.
2017 (rmail-delete-backward, rmail-delete-forward): Likewise.
2018
2019 2014-03-21 Daniel Colascione <dancol@dancol.org>
2020
2021 * mail/emacsbug.el (report-emacs-bug): Include memory usage
2022 information in bug reports.
2023
2024 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
2025
2026 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
2027 and `tramp-copy-env'.
2028
2029 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
2030 (tramp-maybe-open-connection): Handle `tramp-login-env'.
2031
2032 2014-03-21 Glenn Morris <rgm@gnu.org>
2033
2034 * electric.el (electric-indent-post-self-insert-function): Add doc.
2035
2036 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
2037
2038 * emacs-lisp/package.el (package-compute-transaction):
2039 Use `version-list-<=' to compare the requirement version against
2040 the version of package already to be installed. Update the error
2041 message. (Bug#16826)
2042
2043 * progmodes/ruby-mode.el (ruby-smie-rules):
2044 Add indentation rule for ` @ '. (Bug#17050)
2045
2046 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2047
2048 * align.el (align-regexp): Remove superfluous backslash.
2049
2050 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
2051 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
2052 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
2053 Fix docstring typos.
2054 (ffap-next): Use C-u in docstring.
2055 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
2056 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
2057 Remove superfluous backslashes.
2058 (ffap-string-at-point): Reflow docstring.
2059
2060 * server.el (server-host): Reflow docstring.
2061 (server-unload-function): Fix docstring typo.
2062 (server-eval-at): Remove superfluous backslash.
2063
2064 * skeleton.el (skeleton-insert): Remove superfluous backslash.
2065 (skeleton-insert): Doc fix.
2066 (skeleton-insert): Reflow docstring.
2067
2068 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
2069 (tty-color-approximate, tty-color-by-index, tty-color-values)
2070 (tty-color-desc): Remove superfluous backslashes.
2071
2072 2014-03-21 Glenn Morris <rgm@gnu.org>
2073
2074 * cus-start.el (history-length): Bump :version.
2075
2076 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2077 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2078 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2079 Don't set `make-backup-files'.
2080
2081 * info.el (info--prettify-description): New function,
2082 to give info-finder descriptions consistent case, punctuation.
2083 (Info-finder-find-node): Use it. Sort packages.
2084 Refer to "description" rather than "commentary".
2085
2086 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2087
2088 * frameset.el (frameset--print-register): New function.
2089 (frameset-to-register): Use it.
2090
2091 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
2092
2093 * progmodes/hideif.el (hif-string-to-number): New function.
2094 (hif-tokenize): Use it to understand non-decimal floats.
2095
2096 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
2097
2098 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
2099
2100 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2101
2102 * electric.el (electric-newline-and-maybe-indent): New command.
2103 Bind it globally to C-j.
2104 (electric-indent-mode): Don't mess with the global map any more.
2105 Don't drop the post-self-insert-hook is some buffer is still using it
2106 (bug#16770).
2107
2108 * bindings.el (global-map): Remove C-j binding.
2109
2110 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
2111 the docstring of functions advised before dumping (bug#16993).
2112
2113 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
2114
2115 * ps-print.el (ps-generate-postscript-with-faces):
2116 Explicitly deactivate the mark (bug#16866).
2117 * simple.el (deactivate-mark): Update region highlight.
2118
2119 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
2120
2121 * emacs-lisp/package.el (describe-package-1):
2122 Decode commentary (bug#16733).
2123
2124 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
2125
2126 * custom.el (defcustom): Doc fix: recommend avoiding destructive
2127 modification of the value argument of :set (bug#16755).
2128
2129 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
2130
2131 * simple.el (newline-and-indent): Do autofill (bug#17031).
2132
2133 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
2134
2135 * newcomment.el (comment-normalize-vars): Only add escaping check
2136 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
2137 (comment-beginning): Use `narrow-to-region' instead of moving back
2138 one character.
2139 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
2140 (comment-start-skip): Update the docstring.
2141
2142 2014-03-18 Richard Stallman <rms@gnu.org>
2143
2144 * dired.el (dired-display-file): Force use of other window.
2145
2146 2014-03-18 Daniel Colascione <dancol@dancol.org>
2147
2148 * startup.el (tty-handle-args): Remove debug message from 2007.
2149
2150 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2151
2152 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
2153 (advice--make-interactive-form): Use it to avoid (auto)loading function.
2154 (advice--make-1, advice-add, advice-remove):
2155 Remove braindead :advice-pending hack.
2156
2157 2014-03-17 Glenn Morris <rgm@gnu.org>
2158
2159 * calendar/calendar.el (calendar-generate-month): Apply weekend
2160 face to the right days; fixes 2013-08-06 change. (Bug#17028)
2161
2162 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
2163
2164 * net/tramp.el (tramp-action-out-of-band): Read pending output.
2165 (tramp-call-process): Trace also DESTINATION.
2166
2167 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2168 Quote file names when they are local. Remove superfluous trace.
2169
2170 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
2171
2172 * newcomment.el (comment-beginning): If `comment-start-skip'
2173 doesn't match, move back one char and try again. (Bug#16971)
2174
2175 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2176 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
2177 Set `comment-start-skip' to a simpler value that doesn't try to
2178 check if the semicolon is escaped (this is handled by
2179 `syntax-ppss' now). (Bug#16971)
2180
2181 * progmodes/scheme.el (scheme-mode-variables): Same.
2182
2183 2014-03-16 Martin Rudalics <rudalics@gmx.at>
2184
2185 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
2186 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
2187 current (Bug#16816, Bug#17007).
2188 (with-current-buffer-window): New macro doing the same as
2189 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
2190 * help.el (help-print-return-message): Warn in doc-string to not
2191 use this in `with-help-window'.
2192 (describe-bindings-internal): Call `describe-buffer-bindings'
2193 from within help buffer. See Juanma's scenario in (Bug#16816).
2194 (with-help-window): Update doc-string.
2195 * dired.el (dired-mark-pop-up):
2196 * files.el (save-buffers-kill-emacs):
2197 * register.el (register-preview): Use `with-current-buffer-window'
2198 instead of `with-temp-buffer-window'.
2199
2200 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
2201
2202 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
2203 Implement inserting into current buffer, documented in their docstrings.
2204 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
2205 (rst-section-tree-point, rst-forward-section, rst-indent)
2206 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
2207 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
2208 (rst-font-lock-handle-adornment-pre-match-form)
2209 (rst-repeat-last-character): Reflow docstrings.
2210 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
2211 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
2212 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
2213 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
2214 Fix docstring typos.
2215 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
2216 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
2217 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
2218
2219 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
2220
2221 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
2222 for compatibility with other ports.
2223 (ns-initialize-window-system): Use it. It is set in term/common-win.el
2224 from the -xrm command line argument, but in the Nextstep port its value
2225 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
2226
2227 * progmodes/python.el (defconst, python-syntax-count-quotes)
2228 (python-indent-region, python-indent-shift-right)
2229 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
2230 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
2231 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
2232 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
2233 (inferior-python-mode, python-shell-make-comint, run-python-internal)
2234 (python-shell-buffer-substring, python-shell-send-buffer)
2235 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
2236 (python-completion-complete-at-point, python-fill-docstring-style)
2237 (python-eldoc-function, python-imenu-format-item-label)
2238 (python-imenu-format-parent-item-label)
2239 (python-imenu-format-parent-item-jump-label)
2240 (python-imenu--build-tree, python-imenu-create-index)
2241 (python-imenu-create-flat-index): Fix docstring typos.
2242 (python-indent-context, python-shell-prompt-regexp, run-python):
2243 Remove superfluous backslashes.
2244 (python-indent-line, python-nav-beginning-of-defun)
2245 (python-shell-get-buffer, python-shell-get-process)
2246 (python-info-current-defun, python-info-current-line-comment-p)
2247 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
2248 (python-indent-post-self-insert-function, python-shell-send-file)
2249 (python-shell-completion-get-completions)
2250 (python-shell-completion-complete-or-indent)
2251 (python-eldoc--get-doc-at-point): Reflow docstrings.
2252
2253 2014-03-14 Glenn Morris <rgm@gnu.org>
2254
2255 * emacs-lisp/package.el (package-menu-mode-map):
2256 Replace use of obsolete function alias. Tweak menu item text.
2257
2258 * info.el (Info-finder-find-node):
2259 Ignore the `emacs' metapackage. (Bug#10813)
2260
2261 * finder.el (finder-list-matches): Include unversioned packages
2262 in the result of a keyword search.
2263
2264 * finder.el (finder--builtins-descriptions): New constant.
2265 (finder-compile-keywords): Use finder--builtins-descriptions.
2266
2267 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
2268
2269 * simple.el (blink-matching-paren): Describe the new value,
2270 `jump', enabling the old behavior.
2271 (blink-matching-open): Use that value. (Bug#17008)
2272
2273 2014-03-14 Glenn Morris <rgm@gnu.org>
2274
2275 * finder.el (finder-no-scan-regexp): Add leim-list.
2276 (finder-compile-keywords):
2277 Don't skip files with same basename. (Bug#14010)
2278 * Makefile.in (setwins_finder): New, excluding leim.
2279 (finder-data): Use setwins_finder.
2280
2281 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
2282 (help-function-arglist, help-make-usage): Move from here...
2283 * help.el (help-split-fundoc, help-add-fundoc-usage)
2284 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
2285 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
2286
2287 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
2288
2289 * net/socks.el (socks, socks-override-functions)
2290 (socks-find-services-entry):
2291 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
2292 (hif-find-ifdef-block):
2293 * progmodes/modula2.el (m2-indent): Fix docstring typos.
2294
2295 * net/tls.el (tls-program): Reflow docstring.
2296
2297 * progmodes/pascal.el (pascal-mode-abbrev-table)
2298 (pascal-imenu-generic-expression, pascal-auto-endcomments)
2299 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
2300 (pascal-outline-mode): Fix docstring typos.
2301 (pascal-mode): Let define-derived-mode document mode hook.
2302 (pascal-uncomment-area): Reflow.
2303 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
2304
2305 * progmodes/opascal.el (opascal-compound-block-indent)
2306 (opascal-case-label-indent): Fix docstring typos.
2307 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
2308
2309 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
2310
2311 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2312 Fontify multiple adjacent negation chars. (Bug#17004)
2313
2314 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
2315
2316 * emacs-lisp/package.el (package--prepare-dependencies):
2317 Accept requirements without explicit version (bug#14941).
2318
2319 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2320
2321 * register.el (register-separator, copy-to-register): Doc fixes.
2322 (register-preview-default): Remove unnecessary call to concat.
2323
2324 * frameset.el (frameset-restore): When checking for a visible frame,
2325 use the action map instead of calling visible-frame-list.
2326
2327 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
2328
2329 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
2330
2331 2014-03-12 Martin Rudalics <rudalics@gmx.at>
2332
2333 * window.el (fit-frame-to-buffer): Get maximum width from
2334 display's width instead of height.
2335
2336 2014-03-12 Glenn Morris <rgm@gnu.org>
2337
2338 * desktop.el (desktop-restore-frames)
2339 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
2340 (desktop-restore-reuses-frames): Doc tweaks.
2341
2342 * electric.el (electric-indent-mode): Doc fix.
2343
2344 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2345
2346 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
2347 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
2348 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
2349 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
2350 (cvs-dired-use-hook): Fix docstring typos.
2351 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
2352 Doc fixes.
2353
2354 * vc/pcvs-defs.el (cvs-auto-remove-handled)
2355 (cvs-auto-remove-directories, cvs-default-ignore-marks)
2356 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
2357 (cvs-execute-single-dir): Fix docstring typos.
2358
2359 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
2360 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
2361
2362 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
2363
2364 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
2365 Fix docstring typos.
2366
2367 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2368
2369 * frameset.el (frameset--jump-to-register): Add autoload; it could be
2370 called from jump-to-register after unloading the frameset package.
2371
2372 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2373
2374 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
2375 (bug#16975). Deactivate the mark before setting it to nil.
2376 (activate-mark): Do nothing if region is already active.
2377
2378 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
2379
2380 * frameset.el (frameset--target-display): Remove definition; declare.
2381 (frameset-save, frameset-restore): Let-bind frameset--target-display.
2382
2383 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2384
2385 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
2386 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
2387 when the advice is pending.
2388 (advice-remove): Remove this marker when not needed any more.
2389
2390 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
2391
2392 * frameset.el: Separate options for reusing frames and cleaning up.
2393 (frameset--reuse-list): Remove definition; declare.
2394 (frameset--action-map): Declare.
2395 (frameset--find-frame-if): Doc fix.
2396 (frameset--restore-frame): Cache frame action.
2397 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
2398 how to clean up the frame list after restoring. Remove cleaning
2399 options from REUSE-FRAMES. Change all keyword values to symbols.
2400 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
2401
2402 * desktop.el (desktop-restore-forces-onscreen)
2403 (desktop-restore-reuses-frames): Use non-keyword values.
2404 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
2405
2406 2014-03-10 Glenn Morris <rgm@gnu.org>
2407
2408 * files.el (find-file): Doc fix: update info node name.
2409
2410 * emacs-lisp/advice.el (ad-add-advice, defadvice):
2411 Doc fix: remove references to deleted info nodes.
2412
2413 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
2414
2415 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
2416 Do not add `nil' to the environment, when there's no remote `locale'.
2417 (tramp-find-inline-encoding): Check, that the remote host has
2418 installed perl, before sending scripts.
2419
2420 2014-03-10 Leo Liu <sdl.web@gmail.com>
2421
2422 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
2423 Clear eldoc-last-message. (Bug#16920)
2424
2425 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2426
2427 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
2428 (bug#14430).
2429
2430 2014-03-09 Juri Linkov <juri@jurta.org>
2431
2432 * ansi-color.el (ansi-color-names-vector): Copy default colors
2433 from `xterm-standard-colors' that look well on the default white
2434 background (and also on the black background) to avoid illegible
2435 color combinations like yellow-on-white and white-on-white.
2436 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
2437
2438 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
2439
2440 * frameset.el (frameset-restore): When no frame is visible, do not
2441 generate a list of frames, just make visible the selected one.
2442
2443 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
2444
2445 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
2446 it only contains the repository root. (Bug#16897)
2447
2448 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
2449
2450 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
2451 only when `remote-file-name-inhibit-cache' is nil.
2452 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
2453
2454 2014-03-06 Martin Rudalics <rudalics@gmx.at>
2455
2456 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
2457 Fix doc-strings.
2458 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
2459 fit-frame-to-buffer variable. Fix doc-string.
2460 (fit-window-to-buffer): Set ONLY argument in call of
2461 fit-frame-to-buffer. Fix doc-string.
2462
2463 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
2464
2465 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
2466 (tramp-action-password): Clear password cache if needed.
2467 (tramp-read-passwd): Do not clear password cache.
2468
2469 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
2470 cache unless it is the first password request.
2471
2472 2014-03-06 Glenn Morris <rgm@gnu.org>
2473
2474 * simple.el (newline): Doc tweak.
2475
2476 * emacs-lisp/shadow.el (load-path-shadows-find):
2477 Ignore dir-locals. (Bug#12357)
2478
2479 2014-03-05 Glenn Morris <rgm@gnu.org>
2480
2481 * files.el (interpreter-mode-alist):
2482 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
2483
2484 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
2485
2486 * frameset.el (frameset--initial-params): Filter out null entries.
2487
2488 2014-03-05 Martin Rudalics <rudalics@gmx.at>
2489
2490 * window.el (window-min-height, window-min-width):
2491 Rewrite doc-strings.
2492 (window-body-size): Add PIXELWISE argument to make it consistent
2493 with its callees.
2494
2495 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
2496
2497 * finder.el (finder-mode-map, finder-mode-syntax-table):
2498 Revert part of 2014-02-28 change.
2499
2500 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
2501
2502 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
2503 (eww-setup-buffer): Clear next/prev/etc more reliably.
2504 (eww-textarea-map): [tab] doesn't work on tty.
2505 Reported by Mario Lang.
2506
2507 * net/shr.el (shr-map): Ditto.
2508
2509 2014-03-04 Glenn Morris <rgm@gnu.org>
2510
2511 * minibuffer.el (completion-hilit-commonality):
2512 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
2513
2514 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
2515
2516 * hilit-chg.el (hilit-chg-unload-function): New function.
2517 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
2518 (hilit-chg-map-changes): Prefer cardinal number to digit.
2519 (hilit-chg-display-changes): Reflow docstring.
2520 (highlight-changes-rotate-faces): Remove superfluous backslash.
2521
2522 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
2523
2524 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
2525 `tramp-send-command-and-check'.
2526
2527 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
2528
2529 * hexl.el (hexl-address-region, hexl-ascii-region)
2530 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
2531 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
2532 (hexl-forward-word, hexl-previous-line, hexl-next-line):
2533 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
2534 (hexl-mode): Doc fix.
2535 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
2536 (hexl-mode-ruler): Fix typos in docstrings.
2537
2538 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
2539 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
2540 Remove superfluous backslashes.
2541 (strokes-last-stroke, strokes-global-map, strokes-mode):
2542 Reflow docstrings.
2543 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
2544 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
2545 (strokes-distance-squared, strokes-global-set-stroke)
2546 (strokes-global-set-stroke-string): Doc fixes.
2547 (strokes-help): Fix typos; reflow docstring.
2548
2549 2014-03-04 Martin Rudalics <rudalics@gmx.at>
2550
2551 * window.el (window-in-direction): Fix doc-string.
2552
2553 2014-03-04 Glenn Morris <rgm@gnu.org>
2554
2555 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
2556 Explicit error if no grammar.
2557 (smie-config-save): Doc fix. Fix quote typo.
2558
2559 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
2560
2561 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
2562 electric-indent-mode-hook if we obey electric-indent-mode.
2563 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
2564 decide whether we obey electric-indent-mode.
2565 (c-change-set-fl-decl-start, c-extend-after-change-region):
2566 Silence warnings.
2567 (c-electric-indent-mode-hook): Assume we do want to obey
2568 electric-indent-mode.
2569
2570 * electric.el (electric-indent-mode-has-been-called): Remove.
2571 (electric-indent-mode): Fix accordingly.
2572
2573 * files.el (hack-local-variables): Mention file name in warning.
2574
2575 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
2576
2577 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
2578
2579 * bindings.el: Add comment describing why C-d binds to `delete-char'.
2580 * simple.el (delete-forward-char): Mark as interactive-only.
2581
2582 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
2583
2584 * icomplete.el (icomplete-completions):
2585 Follow-up to 2014-03-01 change.
2586
2587 * icomplete.el: Miscellaneous doc fixes.
2588 Use Icomplete everywhere instead of icomplete for consistency.
2589 (icomplete-max-delay-chars): Fix typo.
2590 (icomplete-mode): Use \[].
2591 (icomplete-tidy, icomplete-exhibit): Reflow.
2592 (icomplete-minibuffer-setup-hook, icomplete-completions):
2593 Remove superfluous backlashes.
2594
2595 * ido.el: Miscellaneous doc fixes.
2596 Use Ido everywhere instead of ido or `ido' for consistency.
2597 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
2598 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
2599 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
2600 (ido-separator): Extract obsolescence info from docstring and declare
2601 with make-obsolete-variable.
2602 (ido-minibuffer-setup-hook): Simplify example.
2603 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
2604 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
2605 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
2606 (ido-everywhere): Reflow docstring.
2607 (ido-toggle-vc): Doc fix.
2608 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
2609 of long list of keybindings.
2610
2611 2014-03-03 Glenn Morris <rgm@gnu.org>
2612
2613 * frame.el (display-pixel-height, display-pixel-width)
2614 (display-mm-dimensions-alist, display-mm-height)
2615 (display-mm-width): Doc tweaks.
2616
2617 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
2618
2619 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
2620 case of undo in region.
2621
2622 2014-03-02 Martin Rudalics <rudalics@gmx.at>
2623
2624 * window.el (fit-window-to-buffer): Fix argument in window-size
2625 call when window is horizontally combined.
2626
2627 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
2628
2629 * icomplete.el (icomplete-completions): Use string-width.
2630 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2631
2632 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
2633
2634 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2635 Highlight regexp options. (Bug#16914)
2636
2637 2014-03-01 Martin Rudalics <rudalics@gmx.at>
2638
2639 * window.el (window--max-delta-1): Round down when calculating
2640 how many lines/columns we can get from a window.
2641
2642 2014-03-01 Glenn Morris <rgm@gnu.org>
2643
2644 * isearch.el (search-invisible): Doc fix.
2645
2646 * minibuffer.el (completion-hilit-commonality):
2647 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
2648 * comint.el (comint-dynamic-list-completions): Doc fix.
2649 * comint.el (comint-dynamic-list-completions):
2650 * filecache.el (file-cache-minibuffer-complete):
2651 * tempo.el (tempo-display-completions):
2652 * eshell/em-hist.el (eshell-list-history):
2653 Replace use of obsolete argument of display-completion-list.
2654
2655 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
2656
2657 * icomplete.el (icomplete-completions):
2658 Revert back to using "..." when ?… cannot be displayed.
2659
2660 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
2661
2662 * finder.el (finder-unload-function): New function.
2663
2664 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
2665
2666 * dframe.el (dframe-detach):
2667 * find-dired.el (find-dired, find-name-dired):
2668 * finder.el (finder-mode-map, finder-mode-syntax-table)
2669 (finder-headmark, finder-select, finder-mouse-select):
2670 Fix docstring typos.
2671
2672 2014-02-28 Martin Rudalics <rudalics@gmx.at>
2673
2674 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
2675 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
2676 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
2677 Fix doc-string based on a suggestion by Nicolas Richard
2678 <theonewiththeevillook@yahoo.fr>.
2679 * help.el (with-help-window): Fix doc-string.
2680
2681 2014-02-28 Ivan Kanis <ivan@kanis.fr>
2682
2683 * net/shr.el (shr-image-animate): New option.
2684 (shr-put-image): Respect shr-image-animate.
2685
2686 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
2687
2688 * net/tramp-adb.el (tramp-adb-parse-device-names):
2689 Use `accept-process-output'.
2690 (tramp-adb-handle-file-truename): Cache the localname only.
2691 (tramp-adb-handle-make-directory)
2692 (tramp-adb-handle-delete-directory): Flush file properties correctly.
2693 (tramp-adb-handle-set-file-modes): Do not raise an error when file
2694 modes cannot be changed.
2695
2696 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
2697 file properties of symlinks.
2698
2699 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
2700
2701 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
2702 required/optional fields to match development biblatex. (Bug#16781)
2703
2704 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
2705
2706 * saveplace.el (toggle-save-place):
2707 Fix argument handling. (Bug#16673)
2708
2709 2014-02-28 Glenn Morris <rgm@gnu.org>
2710
2711 * minibuffer.el (completions-first-difference)
2712 (completions-common-part, completion-hilit-commonality): Doc fixes.
2713
2714 2014-02-28 Karl Berry <karl@gnu.org>
2715
2716 * info.el (Info-mode-map): Add H for describe-mode,
2717 to synchronize with standalone Info.
2718
2719 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
2720
2721 * progmodes/sql.el (sql-interactive-mode):
2722 Avoid setting global comint-input-ring-separator. (Bug#16814)
2723
2724 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
2725
2726 * net/dbus.el (dbus--init-bus): Declare function.
2727 (dbus-path-local, dbus-interface-local): New defconst.
2728 (dbus-init-bus): Use them.
2729 (dbus-return-values-table): Extend doc.
2730 (dbus-handle-bus-disconnect): Extend error message.
2731
2732 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
2733
2734 * subr.el (y-or-n-p): Fix double space issue in message.
2735
2736 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
2737
2738 * net/tramp.el (tramp-call-process): Improve trace message.
2739 (tramp-handle-insert-file-contents): Trace error case.
2740
2741 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
2742 <insert-directory>: Use `tramp-handle-insert-directory'.
2743 (tramp-adb-handle-insert-directory): Remove function.
2744 (tramp-adb-send-command-and-check): New defun, replacing
2745 `tramp-adb-command-exit-status'. Change all callees.
2746 (tramp-adb-handle-file-attributes)
2747 (tramp-adb-handle-directory-files-and-attributes): Use it.
2748 (tramp-adb-ls-output-name-less-p):
2749 Use `directory-listing-before-filename-regexp'.
2750 (tramp-adb-handle-delete-directory): Flush also file properties of
2751 the truename of directory.
2752 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
2753 (tramp-adb-handle-file-local-copy): Make the local copy readable.
2754 (tramp-adb-handle-write-region): Implement APPEND.
2755 (tramp-adb-handle-rename-file): Make it more robust. Flush file
2756 properties correctly.
2757 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
2758 variables. Check for connected devices only when needed.
2759
2760 2014-02-27 Glenn Morris <rgm@gnu.org>
2761
2762 * minibuffer.el (completion-table-dynamic)
2763 (completion-table-with-cache): Doc fixes.
2764
2765 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
2766 (completing-read-multiple): Doc fixes.
2767
2768 2014-02-27 Daniel Colascione <dancol@dancol.org>
2769
2770 * minibuffer.el (completion--nth-completion): Fix indentation.
2771
2772 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
2773 explicit tramp path is empty.
2774
2775 2014-02-27 Glenn Morris <rgm@gnu.org>
2776
2777 * emacs-lisp/crm.el (completing-read-multiple):
2778 Empower help-enable-auto-load.
2779
2780 2014-02-26 Glenn Morris <rgm@gnu.org>
2781
2782 * startup.el (command-line): Don't init the tty in daemon mode.
2783
2784 Avoid calling tty-setup-hook twice, eg if a term file
2785 explicitly calls tty-run-terminal-initialization. (Bug#16859)
2786 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
2787 (tty-create-frame-with-faces): Use it.
2788 * startup.el (command-line): Pass run-hook argument
2789 to tty-run-terminal-initialization.
2790
2791 * dired.el (dired-restore-desktop-buffer): Demote errors;
2792 eg in case a glob match fails. (Bug#16884)
2793
2794 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
2795
2796 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
2797 error from `read-from-string'. (Bug#16850)
2798
2799 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
2800 result of `completing-read' in the interactive form. (Bug#16854)
2801
2802 2014-02-25 Glenn Morris <rgm@gnu.org>
2803
2804 * image.el (image-animate, image-animate-timeout):
2805 Stop animating images in dead buffers. (Bug#16878)
2806
2807 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
2808
2809 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
2810 Doc fixes.
2811 * startup.el (term-setup-hook): Doc fix. Make obsolete.
2812 * term/sun.el (sun-raw-prefix-hooks):
2813 Use tty-setup-hook instead of term-setup-hook.
2814 (terminal-init-sun): Construct message from bytecomp plist.
2815 * term/wyse50.el (enable-arrow-keys): Doc fix.
2816
2817 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
2818
2819 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
2820 Fix docstring typos.
2821
2822 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
2823
2824 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
2825
2826 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2827
2828 * minibuffer.el (completion--try-word-completion):
2829 Fix error when completing M-x commands (bug#16808).
2830
2831 2014-02-24 Leo Liu <sdl.web@gmail.com>
2832
2833 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
2834
2835 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
2836
2837 * apropos.el (apropos-print): Avoid formatting error when
2838 apropos-do-all and apropos-compact-layout are both t.
2839
2840 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
2841
2842 * apropos.el (apropos-property, apropos-all-words-regexp)
2843 (apropos-true-hit, apropos-variable, apropos-print):
2844 Fix docstring typos, and remove obsolete comment.
2845
2846 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
2847
2848 * net/tramp-sh.el (tramp-sh-handle-file-truename):
2849 Preserve trailing "/". (Bug#16851)
2850
2851 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
2852
2853 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
2854 after `=>' (bug#16811).
2855 (ruby-smie-rules): Handle the inconsistent second element of the
2856 list returned by `smie-indent--parent'.
2857 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
2858 method call.
2859
2860 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
2861
2862 * elec-pair.el (electric-pair-text-syntax-table)
2863 (electric-pair-syntax-info, electric-pair--syntax-ppss)
2864 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
2865 (electric-pair--looking-at-unterminated-string-p): Doc fix.
2866 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
2867
2868 2014-02-22 Glenn Morris <rgm@gnu.org>
2869
2870 * imenu.el (imenu--generic-function): Doc fix.
2871
2872 * register.el (frame-configuration-to-register): Make obsolete.
2873
2874 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
2875
2876 * desktop.el (desktop-save-buffer-p): Do not fail when
2877 desktop-files-not-to-save is nil. Return t for true result
2878 as the doc says.
2879
2880 2014-02-22 Daniel Colascione <dancol@dancol.org>
2881
2882 * net/secrets.el (secrets-create-item, secrets-search-items):
2883 Check that attribute values are strings, avoiding the construction
2884 of invalid dbus messages.
2885
2886 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2887
2888 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
2889 defun-declarations-alist.
2890
2891 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
2892
2893 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
2894 (bug#16829).
2895
2896 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2897
2898 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
2899 (whitespace-newline, whitespace-trailing, whitespace-line)
2900 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
2901 (whitespace-space-after-tab): Fix typo in docstrings.
2902
2903 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
2904
2905 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
2906
2907 * electric.el (electric-indent-functions-without-reindent):
2908 Add `yaml-indent-line'.
2909
2910 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2911
2912 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
2913 It has done nothing for years; should be removed after the release.
2914
2915 * simple.el (choose-completion): Fix docstring typo.
2916 (read-quoted-char-radix): Remove unneeded * in docstring.
2917 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
2918 Don't escape parentheses unnecessarily in docstrings.
2919
2920 2014-02-21 Martin Rudalics <rudalics@gmx.at>
2921
2922 Fix handling of window-min-height/-width (Bug#16738).
2923 * window.el (window--dump-window, window--dump-frame):
2924 New functions.
2925 (window--min-size-1): Account for window dividers.
2926 When window-resize-pixelwise is nil, delay rounding till after the
2927 sum of the window components has been calculated.
2928 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
2929 nil make sure at least one text line and two text columns remain
2930 fully visible.
2931 (window-resize): Signal an error when window-resize-apply fails.
2932 (window--resize-child-windows): Fix calculation of by how many
2933 pixels a window can still be shrunk via window-new-normal.
2934 (adjust-window-trailing-edge): Call window--resizable with
2935 correct TRAIL argument.
2936
2937 (with-temp-buffer-window): Don't evaluate BODY within
2938 with-current-buffer (Bug#16816).
2939
2940 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
2941
2942 * net/tramp.el (tramp-check-cached-permissions):
2943 Call `file-attributes' with `suffix' being a symbol but a string.
2944
2945 2014-02-21 Daniel Colascione <dancol@dancol.org>
2946
2947 * net/dbus.el (dbus-init-bus-1): Declare new subr.
2948 (dbus-init-bus): New function: call into dbus-init-bus-1
2949 and installs a handler for the disconnect signal.
2950 (dbus-call-method): Rewrite to look for result in cons.
2951 (dbus-call-method-handler): Store result in cons.
2952 (dbus-check-event): Recognize events with nil sender as valid.
2953 (dbus-handle-bus-disconnect): New function. React to bus
2954 disconnection signal by synthesizing dbus error for each
2955 pending synchronous or asynchronous call.
2956 (dbus-notice-synchronous-call-errors): New function.
2957 (dbus-handle-event): Raise errors directly only when `dbus-debug'
2958 is true, not all the time.
2959
2960 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2961
2962 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
2963 Remove obsolescence declarations, these variables do not exist anymore.
2964
2965 * savehist.el (savehist-save-minibuffer-history)
2966 (savehist-additional-variables, savehist-file, savehist-mode-hook)
2967 (savehist-save-hook, savehist-coding-system, savehist-loaded)
2968 (savehist-load, savehist-install, savehist-autosave): Fix typos;
2969 mostly, refer to "Savehist mode" when talking about the mode,
2970 and not the function.
2971
2972 * saveplace.el (save-place): Remove redundant info in docstring.
2973 (save-place-forget-unreadable-files, toggle-save-place)
2974 (save-place-forget-unreadable-files, save-place-dired-hook):
2975 Fix typos and remove unneeded backslashes.
2976
2977 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
2978
2979 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
2980 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
2981
2982 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2983 <insert-directory>: Use `tramp-handle-insert-directory'.
2984 (tramp-gvfs-handle-insert-directory): Remove function.
2985
2986 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
2987 Call `tramp-handle-insert-directory'.
2988
2989 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
2990
2991 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
2992 before the start of buffer/region (bug#16799).
2993
2994 2014-02-20 Glenn Morris <rgm@gnu.org>
2995
2996 * isearch.el (search-invisible): Doc fix.
2997
2998 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
2999
3000 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
3001 (bug#16657).
3002
3003 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3004
3005 * frameset.el (frameset-restore): Delay removing an old frame's
3006 duplicate id until the new frame has been correctly created.
3007
3008 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
3009
3010 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
3011 (tramp-check-cached-permissions): Call `file-attributes' if the
3012 cache is empty.
3013
3014 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
3015 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3016
3017 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3018 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
3019 (tramp-gvfs-maybe-open-connection): Set always connection
3020 properties, even if target is mounted already.
3021
3022 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
3023 Set tramp-autoload cookie.
3024 (tramp-get-remote-touch): New defun.
3025 (tramp-sh-handle-set-file-times): Use it.
3026 (tramp-sh-handle-directory-files-and-attributes):
3027 Use `tramp-handle-directory-files-and-attributes' if neither stat
3028 nor perl are available on the remote host.
3029
3030 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
3031 "/". Write long listing only when "l" belongs to the switches.
3032
3033 * net/trampver.el: Update release number.
3034
3035 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
3036
3037 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
3038
3039 2014-02-19 Martin Rudalics <rudalics@gmx.at>
3040
3041 * window.el (window-state-put): Allow WINDOW to refer to an
3042 internal window (Bug#16793).
3043
3044 2014-02-19 Glenn Morris <rgm@gnu.org>
3045
3046 * textmodes/remember.el: Move provide statement to end.
3047 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
3048 (remember-notes): Doc fixes.
3049
3050 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3051
3052 * delsel.el (delete-char): Restore incorrectly erased property
3053 (bug#16795).
3054
3055 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
3056
3057 * frameset.el (frameset--restore-frame): When a frame is being reused
3058 and its root window is not alive, delete all the frame's windows before
3059 restoring the window state. This works around the issue in bug#16793.
3060
3061 2014-02-18 Glenn Morris <rgm@gnu.org>
3062
3063 * textmodes/remember.el (remember-data-directory)
3064 (remember-directory-file-name-format, remember-store-in-files)
3065 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
3066 (remember-notes-save-and-bury-buffer)
3067 (remember-notes--kill-buffer-query): Doc fixes.
3068
3069 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
3070
3071 2014-02-17 Alan Mackenzie <acm@muc.de>
3072
3073 Connect electric-indent-mode up with CC Mode. Bug #15478.
3074 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
3075 to electric-indent-{,local-}-mode.
3076 (c-basic-common-init): Set electric-indent-inhibit.
3077 Initialise c-electric-flag from electric-indent-mode.
3078 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
3079 New hook functions which propagate electric-indent-mode to CC mode.
3080
3081 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
3082 hit, toggle electric-indent-local-mode.
3083
3084 * electric.el (electric-indent-mode-has-been-called):
3085 New variable.
3086
3087 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
3088
3089 * frameset.el (frameset-cfg-id): New function.
3090 (frameset--reuse-frame, frameset-restore): Use it.
3091 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
3092
3093 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
3094
3095 * ido.el (ido-file-internal): Remove unused var `d'.
3096 Use \` for to match BoS. Fit within 80n columns.
3097
3098 2014-02-17 Daniel Colascione <dancol@dancol.org>
3099
3100 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
3101 dbus-call-method check for completion using a busy-wait loop with
3102 gradual backoff.
3103
3104 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
3105
3106 Sync with Tramp 2.2.9.
3107
3108 * net/trampver.el: Update release number.
3109
3110 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
3111
3112 * ido.el (ido-file-internal): Don't add the name of an existing
3113 directory twice. (Bug#16747)
3114
3115 2014-02-16 Glenn Morris <rgm@gnu.org>
3116
3117 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
3118 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
3119
3120 2014-02-15 Michael R. Mauger <michael@mauger.com>
3121
3122 * progmodes/sql.el: Version 3.4
3123 (sql-oracle-options): New default value ("-L").
3124 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
3125 (sql-placeholders-filter): Correct placeholder pattern.
3126 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
3127 (sql-login-delay): New variable.
3128 (sql-product-interactive): Use it.
3129
3130 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
3131
3132 * frameset.el (frameset--jump-to-register): Check that buffer is live
3133 (bug#16749).
3134
3135 2014-02-15 Glenn Morris <rgm@gnu.org>
3136
3137 * info.el (info-initialize): Revert 2014-01-10 change.
3138
3139 2014-02-14 Glenn Morris <rgm@gnu.org>
3140
3141 * replace.el (map-query-replace-regexp)
3142 (read-regexp-defaults-function, read-regexp): Doc fixes.
3143
3144 * dired.el (dired-read-regexp):
3145 * faces.el (list-faces-display):
3146 * misearch.el (multi-isearch-read-matching-buffers)
3147 (multi-isearch-read-matching-files):
3148 * play/cookie1.el (cookie-apropos):
3149 * progmodes/grep.el (grep-read-regexp): Doc fixes.
3150
3151 * textmodes/remember.el (remember): Use frameset-to-register
3152 rather than frame-configuration-to-register.
3153
3154 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
3155
3156 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
3157 incorrect keybinding.
3158
3159 2014-02-13 Daniel Colascione <dancol@dancol.org>
3160
3161 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
3162 when adding overlays so that line numbers from compiler match line
3163 numbers we use.
3164
3165 2014-02-13 Glenn Morris <rgm@gnu.org>
3166
3167 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
3168
3169 * jit-lock.el (jit-lock-mode): Doc fix.
3170
3171 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
3172
3173 * apropos.el (apropos-read-pattern): When the user passes an empty
3174 string, give a more helpful error message than "Wrong type
3175 argument: stringp, nil".
3176
3177 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
3178
3179 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
3180
3181 2014-02-13 Glenn Morris <rgm@gnu.org>
3182
3183 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
3184
3185 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
3186
3187 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
3188 shift-select commands.
3189
3190 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
3191
3192 * progmodes/js.el (js-indent-line): Don't widen.
3193 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
3194
3195 2014-02-12 Glenn Morris <rgm@gnu.org>
3196
3197 * icomplete.el (icomplete): Add info-link to defgroup.
3198 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
3199 (icomplete-minibuffer-map, icomplete-mode)
3200 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
3201
3202 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
3203 (package-menu-filter): Rename from package-menu-filter-interactive.
3204 Doc fix.
3205
3206 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
3207
3208 * frameset.el (frameset--jump-to-register): Select the required
3209 window and buffer before restoring position (bug#16696).
3210
3211 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
3212
3213 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
3214
3215 2014-02-10 Glenn Morris <rgm@gnu.org>
3216
3217 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
3218
3219 2014-02-10 Eli Zaretskii <eliz@gnu.org>
3220
3221 * w32-common-fns.el (x-get-selection): Doc fix.
3222 * select.el (x-get-selection): Doc fix. (Bug#15109)
3223
3224 * face-remap.el (face-remap-add-relative)
3225 (face-remap-remove-relative, face-remap-reset-base)
3226 (face-remap-set-base): Call force-mode-line-update to redisplay
3227 the current buffer due to potential change in faces. (Bug#16709)
3228
3229 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
3230
3231 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
3232 script more robustly.
3233
3234 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
3235
3236 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
3237
3238 * simple.el (choose-completion): Doc fix (bug#14160).
3239
3240 * subr.el (event-start): Say what a nil EVENT value means.
3241
3242 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
3243 (bug#14197).
3244
3245 * progmodes/grep.el (find-program): Doc fix (bug#14289).
3246
3247 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
3248
3249 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
3250
3251 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
3252 predicate function (bug#15455).
3253
3254 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
3255
3256 * ielm.el (inferior-emacs-lisp-mode): Instead of
3257 `comment-use-global-state', set `comment-use-syntax'.
3258
3259 2014-02-10 Glenn Morris <rgm@gnu.org>
3260
3261 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
3262
3263 2014-02-09 Alan Mackenzie <acm@muc.de>
3264
3265 Fix c-invalidate-state-cache on narrowed buffers.
3266 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
3267 Widen when setting and clearing the CPP delimiter properties.
3268
3269 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
3270
3271 * help.el (describe-bindings): Doc fix (bug#9888).
3272
3273 * files.el (save-buffer): Use ARG as the parameter name for
3274 consistency (bug#10346).
3275 (save-buffer): Clarify the 0 argument (bug#10346).
3276
3277 * cus-edit.el (customize-apropos): Fix error string.
3278 (custom-buffer-create): Doc fix (bug#11122).
3279 (custom-sort-items): Doc fix (bug#11121).
3280
3281 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
3282
3283 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
3284 (icomplete-simple-completing-p): Mention the previous variable.
3285
3286 * font-lock.el (font-lock-value-in-major-mode): Clarify the
3287 meaning of the parameter (bug#12282).
3288
3289 * files.el (find-file-noselect): Clarify prompt when changing
3290 readedness (bug#13261).
3291 (locate-file): Suffixes aren't returned, so don't say that they
3292 are (bug#12674).
3293 (backup-inhibited): Doc clarification (bug#12525).
3294
3295 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
3296 before we actually start to delete things (bug#16331).
3297
3298 * subr.el (event-start): Doc fix (bug#14228).
3299 (event-end): Ditto.
3300
3301 2014-02-09 Glenn Morris <rgm@gnu.org>
3302
3303 * emacs-lisp/warnings.el (lwarn):
3304 Empower help-enable-auto-load. (Bug#15940)
3305
3306 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
3307
3308 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
3309 (Bug#16690)
3310
3311 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
3312
3313 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3314 Insert output at end of buffer. (Bug#16120)
3315
3316 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
3317
3318 * simple.el (choose-completion-string-functions): Document new
3319 calling convention (bug#14153).
3320 (execute-extended-command): Clarify doc string (bug#13373).
3321
3322 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
3323
3324 * find-dired.el (find-name-dired): Doc fix (bug#14290).
3325 (find-grep-dired): Doc fix (bug#14288).
3326
3327 2014-02-08 Juri Linkov <juri@jurta.org>
3328
3329 * isearch.el (isearch-quote-char): Check character validity
3330 like in `quoted-insert' (bug#16677).
3331
3332 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
3333
3334 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
3335
3336 * isearch.el (isearch-hide-immediately): Doc clarification
3337 (bug#14723).
3338
3339 * simple.el (line-move): Document utility function used many
3340 places in the Emacs sources (bug#14843).
3341
3342 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
3343 (dired-prev-marked-file): Doc fix (bug#14855).
3344 (dired-up-directory): Doc fix (bug#14848).
3345
3346 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
3347
3348 * files.el (file-relative-name): Doc fix (bug#15159).
3349
3350 * fringe.el (fringe-styles): Doc fix (bug#15239).
3351
3352 * isearch.el (isearch-filter-predicate): Documentation typo fix
3353 (bug#15474).
3354
3355 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
3356
3357 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
3358
3359 * replace.el (replace-match-maybe-edit): Doc clarification
3360 (bug#15632).
3361
3362 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
3363
3364 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
3365
3366 2014-02-08 Glenn Morris <rgm@gnu.org>
3367
3368 * help-fns.el (describe-variable):
3369 Check {file,dir}-local-variables-alist, and buffer-file-name,
3370 in the correct buffer.
3371
3372 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
3373
3374 * help-fns.el (describe-variable): Fix the case where
3375 a value is directory-local with no dir-locals file. (Bug#16635)
3376
3377 2014-02-08 Glenn Morris <rgm@gnu.org>
3378
3379 * abbrev.el (edit-abbrevs-mode):
3380 Derive from fundamental-mode. (Bug#16682)
3381
3382 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
3383
3384 * simple.el (quoted-insert): Check character validity (bug#16677).
3385
3386 2014-02-07 Juri Linkov <juri@jurta.org>
3387
3388 * desktop.el (desktop-read): Claim the lock when the owner is not
3389 the current process. (Bug#16157)
3390
3391 2014-02-07 Juri Linkov <juri@jurta.org>
3392
3393 * desktop.el (desktop-buffers-not-to-save): Change default from nil
3394 to "\\` ". (Bug#16651)
3395
3396 2014-02-07 Juri Linkov <juri@jurta.org>
3397
3398 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
3399 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
3400 (desktop-auto-save-cancel-timer): New function with some code from
3401 `desktop-auto-save-set-timer'.
3402 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
3403 Instead of setting `desktop-save-mode' to nil, call
3404 `desktop-save-mode' with arg 0. (Bug#16630)
3405
3406 2014-02-07 Glenn Morris <rgm@gnu.org>
3407
3408 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
3409 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
3410 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
3411
3412 * obsolete/iswitchb.el: Move to obsolete/.
3413 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
3414 since obsolete/ is not scanned for autoloads.
3415 * emacs-lisp/authors.el (authors-valid-file-names):
3416 Add iswitchb.el.
3417
3418 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
3419 Disable now non-functional find-file-hook.
3420
3421 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
3422
3423 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
3424 instead of ";" in order to avoid additional prompts. Let heredoc
3425 scripts read from tty. (Bug#16582)
3426 (tramp-send-command): No special handling of heredocs, it isn't
3427 necessary anymore.
3428
3429 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
3430
3431 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
3432 with a space (bug#16664). Limit the symbols considered to the ones
3433 that are bound or fbound (bug#16646).
3434
3435 2014-02-06 Glenn Morris <rgm@gnu.org>
3436
3437 * epa.el (epa-mail-aliases): Doc fix.
3438
3439 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
3440
3441 * emacs-lisp/lisp.el (lisp-completion-at-point):
3442 Use `completion-table-merge' instead of `completion-table-in-turn'
3443 (bug#16604).
3444
3445 * minibuffer.el (completion-table-merge): New function.
3446
3447 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
3448
3449 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
3450 (tramp-sh-handle-set-file-acl)
3451 (tramp-sh-handle-start-file-process)
3452 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
3453 (tramp-find-executable, tramp-send-command): Use it.
3454
3455 2014-02-05 Glenn Morris <rgm@gnu.org>
3456
3457 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
3458
3459 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
3460
3461 * progmodes/python.el (python-shell-send-string)
3462 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
3463
3464 2014-02-04 Anders Lindgren <andlind@gmail.com>
3465
3466 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
3467 the names (bug#16620).
3468
3469 2014-02-03 Martin Rudalics <rudalics@gmx.at>
3470
3471 * faces.el (window-divider): New default value. Rewrite doc-string.
3472 (window-divider-first-pixel, window-divider-last-pixel): New faces.
3473
3474 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
3475
3476 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
3477 `protected' and `public' can also be called without arguments.
3478
3479 2014-02-03 Glenn Morris <rgm@gnu.org>
3480
3481 * register.el (window-configuration-to-register)
3482 (frame-configuration-to-register): Unadvertise unused argument.
3483 * frameset.el (frameset-to-register): Remove unused argument.
3484
3485 * frameset.el (frameset-to-register):
3486 * kmacro.el (kmacro-to-register):
3487 * register.el (increment-register):
3488 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
3489 (calc-append-to-register, calc-prepend-to-register):
3490 * play/gametree.el (gametree-layout-to-register)
3491 (gametree-apply-register-layout):
3492 * textmodes/picture.el (picture-clear-rectangle-to-register)
3493 (picture-yank-rectangle-from-register):
3494 * vc/emerge.el (emerge-combine-versions-register):
3495 Use register-read-with-preview to read registers.
3496
3497 2014-02-03 João Távora <joaotavora@gmail.com>
3498
3499 * elec-pair.el (electric-pair-backward-delete-char): Don't error
3500 when at beginning of (possibly narrowed) buffer.
3501
3502 2014-02-02 Daniel Colascione <dancol@dancol.org>
3503
3504 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
3505 Also try to display local help from just before point.
3506
3507 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
3508
3509 c-parse-state. Don't "append-lower-brace-pair" in certain
3510 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
3511 recognised as a comment.
3512
3513 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
3514 as well as normal comment starter.
3515 (c-parse-state-get-strategy): Extra return possibility
3516 'back-and-forward.
3517 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
3518 return value list to indicate replacement of a brace-pair cons
3519 with its car.
3520 (c-parse-state-1): With 'back-and-forward, only call
3521 c-append-lower-brace-pair-to state-cache when cons-separated.
3522
3523 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
3524
3525 * term/ns-win.el (ns-suspend-error): New function.
3526 (ns-initialize-window-system): Add ns-suspend-error to
3527 suspend-hook (Bug#16612).
3528
3529 2014-02-02 Daniel Colascione <dancol@dancol.org>
3530
3531 * progmodes/cc-defs.el (c-find-assignment-for-mode):
3532 Make loading cc-mode silent.
3533
3534 2014-02-02 Daniel Colascione <dancol@dancol.org>
3535
3536 * comint.el (comint-prompt-read-only): Change doc to suggest
3537 remap keybinding.
3538
3539 2014-02-02 Glenn Morris <rgm@gnu.org>
3540
3541 * register.el (register-read-with-preview, point-to-register)
3542 (window-configuration-to-register, frame-configuration-to-register)
3543 (jump-to-register, number-to-register, view-register, insert-register)
3544 (copy-to-register, append-to-register, prepend-to-register)
3545 (copy-rectangle-to-register): Doc fixes.
3546
3547 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
3548
3549 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
3550 * emacs-lisp/find-func.el (find-function-C-source): Idem.
3551 * emacs-lisp/nadvice.el (advice--cd*r): New function.
3552 * help-fns.el (describe-function-1): Use it.
3553
3554 2014-02-02 Glenn Morris <rgm@gnu.org>
3555
3556 * register.el (register-preview-default): New function,
3557 split from register-preview.
3558 (register-preview-function): Rename from register-preview-functions,
3559 make it not a hook.
3560 (register-preview): Use register-preview-function.
3561 (register-read-with-preview): Error on non-character event. (Bug#16595)
3562
3563 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
3564
3565 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
3566 `:' before binary operators (bug#16609). Don't check for `:'
3567 before `[' and `(', or their syntax status. A percent literal
3568 can't end with either.
3569 (ruby-font-lock-keywords): For built-ins that require arguments,
3570 check that they're followed by something that looks like argument
3571 (bug#16610).
3572
3573 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
3574
3575 * subr.el (butlast): Document what an omitted N means (bug#13437).
3576 (nbutlast): Ditto.
3577
3578 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
3579
3580 * net/shr.el (shr-generic): Make into a defsubst to make the stack
3581 depth shallower (bug#16587).
3582 (shr-tag-svg): Respect `shr-inhibit-images'.
3583 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
3584
3585 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
3586
3587 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
3588 (ruby-smie-grammar): Make "." right-associative. Make its priority
3589 lower than the ternary and all binary operators.
3590 (ruby-smie-rules): Indent "(" relative to the first non-"."
3591 parent, or the first "." parent at indentation.
3592 Use `ruby-align-chained-calls' for indentation of "." tokens.
3593 (Bug#16593)
3594
3595 2014-01-31 Juri Linkov <juri@jurta.org>
3596
3597 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
3598 from `make-hash-table'.
3599
3600 * textmodes/ispell.el (ispell-init-process): Change message format
3601 to be consistent with other messages.
3602
3603 2014-01-31 Glenn Morris <rgm@gnu.org>
3604
3605 * delsel.el (delete-selection-mode): Doc fix.
3606
3607 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
3608 (trace-function-background): Doc fixes.
3609
3610 * ido.el (ido-use-virtual-buffers): Doc fix.
3611 Reset :version, since the default value has not changed.
3612
3613 * register.el (register-preview-delay, register-read-with-preview):
3614 Doc fixes.
3615
3616 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
3617 do not mess with mail-buffer position (fixes 2009-11-03 change).
3618 * progmodes/cc-mode.el (c-submit-bug-report):
3619 Check auto-fill-mode is bound. (Bug#16592)
3620
3621 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
3622
3623 * startup.el (fancy-splash-image-file): New function,
3624 split from fancy-splash-head.
3625 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
3626 so that we are both using the same image. (Bug#16574)
3627
3628 2014-01-30 Glenn Morris <rgm@gnu.org>
3629
3630 * simple.el (eval-expression): Doc fix.
3631
3632 * hexl.el (hexl-mode-hook):
3633 * ielm.el (ielm-mode-hook):
3634 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
3635 (lisp-interaction-mode-hook):
3636 * progmodes/cfengine.el (cfengine3-documentation-function):
3637 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
3638
3639 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
3640
3641 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
3642 is a symbol (bug#16584).
3643
3644 2014-01-30 Glenn Morris <rgm@gnu.org>
3645
3646 * help.el (help-for-help-internal): Add "P" to text.
3647
3648 2014-01-29 Glenn Morris <rgm@gnu.org>
3649
3650 * simple.el (just-one-space, cycle-spacing): Doc fixes.
3651
3652 2014-01-28 Martin Rudalics <rudalics@gmx.at>
3653
3654 * window.el (fit-frame-to-buffer): Fix calculations for margins and
3655 height constraints.
3656
3657 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
3658
3659 * progmodes/hideif.el: Extend to full CPP expression syntax.
3660 (hif-token-alist): Add missing tokens.
3661 (hif-token-regexp): Add support for float/octal/hex immediates.
3662 (hif-string-literal-regexp): New const.
3663 (hif-tokenize): Recognize strings and float/octal/hex immediates.
3664 (hif-exprlist): New function.
3665 (hif-parse-if-exp): Use it.
3666 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
3667 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
3668 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
3669 (hif-logxor, hif-comma): New functions.
3670
3671 2014-01-28 Glenn Morris <rgm@gnu.org>
3672
3673 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
3674
3675 * indent.el (tab-stop-list): Doc fix. Add :version.
3676
3677 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
3678 (cvs-append-to-ignore): Add compatibility alias.
3679
3680 2014-01-27 Glenn Morris <rgm@gnu.org>
3681
3682 * dired.el (dired-hide-details-mode): Don't autoload it,
3683 since it cannot be used outside Dired buffers anyway.
3684
3685 * emulation/cua-base.el (cua-mode): Doc fix.
3686
3687 * dired.el (dired-hide-details-hide-symlink-targets)
3688 (dired-hide-details-hide-information-lines)
3689 (dired-hide-details-mode): Doc fixes.
3690
3691 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
3692 * strokes.el (strokes-file): Doc fix. Bump :version.
3693 (strokes-help): Doc fix.
3694 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
3695 * emulation/viper.el (viper): Doc fix for custom group.
3696 (top-level): Remove oh-so-no-longer-relevant text about vip.
3697 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
3698
3699 * ido.el (ido-save-directory-list-file):
3700 * saveplace.el (save-place-file):
3701 * calendar/timeclock.el (timeclock-file):
3702 * net/quickurl.el (quickurl-url-file):
3703 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
3704 * progmodes/idlwave.el (idlwave-config-directory):
3705 * textmodes/remember.el (remember-data-file):
3706 Bump :version.
3707
3708 2014-01-26 Glenn Morris <rgm@gnu.org>
3709
3710 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
3711 Doc fix. Make obsolete.
3712 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
3713
3714 * sort.el (delete-duplicate-lines): Doc fix.
3715
3716 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3717
3718 * progmodes/ada-mode.el (ada):
3719 * woman.el (woman): Link to info manual and Commentary section.
3720
3721 * progmodes/flymake.el (flymake):
3722 * nxml/nxml-mode.el (nxml):
3723 * net/eww.el (eww):
3724 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
3725 * htmlfontify.el (htmlfontify):
3726 * ses.el (ses):
3727 * epa.el (epa):
3728 * ido.el (ido): Link to info manual.
3729
3730 2014-01-25 Leo Liu <sdl.web@gmail.com>
3731
3732 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
3733
3734 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
3735
3736 * net/shr.el (shr-tag-img): Prefer the title over the alt text
3737 (bug#16537).
3738
3739 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
3740
3741 * net/eww.el (eww-download-callback):
3742 Fix reference to eww-download-directory.
3743
3744 * emacs-lisp/bytecomp.el (byte-compile-file):
3745 Remove unused local variable `file-name'.
3746
3747 2014-01-24 Glenn Morris <rgm@gnu.org>
3748
3749 * woman.el (woman-default-faces, woman-monochrome-faces):
3750 Fix obsolescence specification.
3751
3752 * subr.el (with-demoted-errors): Doc fix.
3753
3754 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
3755
3756 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
3757 (cl--macroexp-fboundp): New function.
3758 (cl--make-type-test): Use it.
3759
3760 2014-01-23 Glenn Morris <rgm@gnu.org>
3761
3762 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
3763 * simple.el (eval-expression): Doc fixes.
3764
3765 2014-01-22 Glenn Morris <rgm@gnu.org>
3766
3767 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
3768
3769 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
3770
3771 * emacs-lisp/package.el: Write files silently.
3772 (package-autoload-ensure-default-file, package--write-file-no-coding)
3773 (package-generate-description-file, package--download-one-archive)
3774 (package-install-from-archive): Tell `write-region' to stay quiet.
3775 (package-menu-mode, package-menu--print-info): Omit the Archive column
3776 if there's only one archive.
3777 (package-all-keywords, package--has-keyword-p): Remove dead code.
3778
3779 2014-01-22 Glenn Morris <rgm@gnu.org>
3780
3781 * version.el (emacs-bzr-version-bzr): Fix typo.
3782
3783 * version.el (emacs-repository-get-version):
3784 Check either .bzr or .git, but not both.
3785 Make the git case actually use the DIR argument, and return nil
3786 rather than the empty string.
3787 Avoid error if .git exists but the git executable is not found.
3788
3789 2014-01-22 Martin Rudalics <rudalics@gmx.at>
3790
3791 Fixes in window size functions around Bug#16430 and Bug#16470.
3792 * window.el (window-total-size, window-size): New argument ROUND.
3793 (window--min-delta-1, window-min-delta, window--max-delta-1):
3794 Be more conservative when calculating the numbers of lines or
3795 columns a window can shrink (Bug#16430).
3796 (fit-window-to-buffer): Simplify code.
3797 * term.el (term-window-width): Call window-body-width again.
3798
3799 2014-01-22 Glenn Morris <rgm@gnu.org>
3800
3801 * image.el (image-format-suffixes): Doc fix.
3802
3803 * international/quail.el (quail-define-package): Doc fix.
3804
3805 * emacs-lisp/authors.el (authors-valid-file-names)
3806 (authors-renamed-files-alist): Additions.
3807
3808 * vc/vc-git.el (vc-git-print-log): Remove --follow;
3809 reverts 2014-01-09 change. (Bug#16422)
3810
3811 * calc/calc-embed.el (thing-at-point-looking-at):
3812 * emacs-lisp/map-ynp.el (x-popup-dialog):
3813 * obsolete/lmenu.el (x-popup-dialog):
3814 * emacs-lisp/package.el (url-recreate-url):
3815 * mail/mailclient.el (clipboard-kill-ring-save):
3816 * subr.el (x-popup-dialog): Update declaration.
3817 * mail/rmail.el (rmail-mime-message-p):
3818 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
3819
3820 2014-01-21 Daniel Colascione <dancol@dancol.org>
3821
3822 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3823 Correctly detect when we're inside an arithmetic expansion form
3824 containing nested parenthesis.
3825 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
3826 to detect cases where we shouldn't expand "<<" to a heredoc
3827 skeleton.
3828
3829 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
3830
3831 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
3832 (eldoc--message-command-p): New function.
3833 (eldoc-display-message-p): Use it.
3834 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
3835 message is not automatically erased for us.
3836 (eldoc-print-current-symbol-info): Erase previous message, if any.
3837
3838 2014-01-21 Tassilo Horn <tsdh@gnu.org>
3839
3840 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
3841 specify it's an interactive function.
3842
3843 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
3844 Fix regex used for scanning for citation keys which failed for
3845 citations with optional arguments.
3846
3847 2014-01-21 Leo Liu <sdl.web@gmail.com>
3848
3849 * simple.el (read--expression): Don't enable eldoc-mode.
3850
3851 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
3852
3853 * simple.el (move-beginning-of-line): Make sure we don't move forward
3854 (bug#16497).
3855
3856 2014-01-20 Juri Linkov <juri@jurta.org>
3857
3858 * saveplace.el (toggle-save-place, save-place-to-alist)
3859 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
3860 'dired-mode) before checking for dired-directory. (Bug#16477)
3861
3862 2014-01-20 Juri Linkov <juri@jurta.org>
3863
3864 * indent.el (indent-line-to): Use backward-to-indentation
3865 instead of back-to-indentation. (Bug#16461)
3866
3867 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
3868
3869 Revert some of the CANNOT_DUMP fix (Bug#16494).
3870 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
3871 but fixing this can wait until after the next release.
3872 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
3873
3874 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
3875
3876 * eshell/esh-mode.el (eshell-password-prompt-regexp):
3877 Use `password-word-equivalents'.
3878 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
3879 to t. (Bug#5664, Bug#13124)
3880
3881 2014-01-19 Alan Mackenzie <acm@muc.de>
3882
3883 Bind open-paren-in-column-0-is-defun-start to nil at some entry
3884 points.
3885 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
3886 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
3887 * progmodes/cc-mode.el (c-before-change, c-after-change)
3888 (c-font-lock-fontify-region): Bind it here.
3889
3890 2014-01-19 Martin Rudalics <rudalics@gmx.at>
3891
3892 * term.el (term-window-width): Call window-text-width instead of
3893 window-width (Bug#16470).
3894
3895 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
3896
3897 * simple.el (password-word-equivalents): Remove duplicates.
3898 Sort, to make this easier next time.
3899 Downcase. Omit ": " after "jelszó".
3900
3901 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
3902
3903 * term/common-win.el (saved-region-selection): Defvar it.
3904 (x-select-text): Set saved-region-selection (Bug#16382).
3905
3906 2014-01-18 Glenn Morris <rgm@gnu.org>
3907
3908 * emacs-lisp/authors.el (authors-aliases)
3909 (authors-renamed-files-alist): Add some entries.
3910
3911 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
3912
3913 * net/tramp.el (tramp-password-prompt-regexp):
3914 Use `password-word-equivalents' if available.
3915 (tramp-action-password, tramp-process-one-action)
3916 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
3917
3918 2014-01-17 Chong Yidong <cyd@gnu.org>
3919
3920 * simple.el (password-word-equivalents): New defcustom.
3921 * comint.el (comint-password-prompt-regexp): Use it. Bump version
3922 to 24.4.
3923 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
3924 to t. (Bug#13124)
3925
3926 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
3927
3928 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
3929 (ruby-align-to-stmt-keywords): Change the default value.
3930 Use `ruby-alignable-keywords' to generate the possible customization
3931 choices.
3932 (ruby-smie-rules): Instead of using a hardcoded list of alignable
3933 keywords, check against the value of `ruby-alignable-keywords'
3934 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
3935
3936 2014-01-17 Glenn Morris <rgm@gnu.org>
3937
3938 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
3939
3940 Make M-x authors return zero *Authors Errors* from current logs.
3941 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
3942 (authors-ignored-files): Add some entries, remove others.
3943 (authors-ambiguous-files, authors-valid-file-names):
3944 Add some entries.
3945 (authors-renamed-files-alist): Add, remove, and adjust entries.
3946 (authors-renamed-files-regexps): Add some entries.
3947 Remove some very broad ones. Make some entries `lax'.
3948 (authors-lax-changelogs): New constant.
3949 (authors-disambiguate-file-name): Treat top-level specially.
3950 (authors-lax-changelog-p): New function.
3951 (authors-canonical-file-name): Check file as written against
3952 authors-valid-file-names. Do not special-case etc/.
3953 Handle `lax' logs and authors-renamed-files-regexps elements.
3954
3955 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
3956
3957 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
3958 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
3959 callers.
3960
3961 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3962
3963 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
3964 Assume we're already in the proper buffer.
3965 Inspired by Anders Lindgren <andlind@gmail.com>.
3966 (follow-post-command-hook): Call it from the right buffer.
3967 (follow-comint-scroll-to-bottom): Adjust call.
3968 (follow-all-followers): Use get-buffer-window-list.
3969
3970 2014-01-15 Daniel Colascione <dancol@dancol.org>
3971
3972 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
3973 `buffer-file-name' in interactive-form so that we don't leave
3974 pathless file names in `file-name-history'.
3975
3976 2014-01-15 Juri Linkov <juri@jurta.org>
3977
3978 * indent.el (indent-rigidly): Set deactivate-mark to nil
3979 in transient indentation mode. (Bug#16438)
3980
3981 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
3982
3983 * emacs-lisp/package.el (package-desc-keywords): New function
3984 (Bug#16222).
3985 (describe-package-1, package-all-keywords)
3986 (package--has-keyword-p): Use it.
3987
3988 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3989
3990 * simple.el (define-alternatives): When creating the
3991 COMMAND-alternatives variable, assign COMMAND as its definition
3992 name so that `describe-variable' can relocate it.
3993
3994 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
3995
3996 * font-lock.el (font-lock-keywords): Fix typo in docstring
3997 (bug#16307).
3998
3999 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4000
4001 * ispell.el (ispell-region): Reset `in-comment' for new line
4002 instead of wrongly reset `add-coment' (bug#13577).
4003
4004 2014-01-14 Daiki Ueno <ueno@gnu.org>
4005
4006 * epa-file.el (epa-file-write-region): Encode the region according
4007 to `buffer-file-format'. Problem reported at:
4008 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
4009
4010 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
4011
4012 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
4013 so it applies in the right buffer (bug#16410).
4014
4015 2014-01-13 Daniel Colascione <dancol@dancol.org>
4016
4017 * textmodes/rst.el (rst-define-key): Provide deprecated
4018 keybindings through named functions instead of anonymous ones so
4019 that "??" doesn't appear in describe-mode output.
4020
4021 2014-01-13 Bastien Guerry <bzg@gnu.org>
4022
4023 * simple.el (define-alternatives): Call the selected command
4024 interactively. When setting `COMMAND--implementation' for the
4025 first time, tell the user how to chose another implementation.
4026 Enhance the docstring.
4027
4028 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4029
4030 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
4031 (log-edit--match-first-line): New function.
4032 (log-edit-font-lock-keywords): Use it.
4033 (log-edit-mode): Make jit-lock-defer-multiline work.
4034
4035 2014-01-13 Bastien Guerry <bzg@gnu.org>
4036
4037 * rect.el (rectangle-mark-mode): When the region is not active,
4038 display a message saying that the mark as been set and that
4039 rectangle mode is in use.
4040 (rectangle--highlight-for-redisplay): Only put an overlay with a
4041 visible vertical bar when (display-graphic-p) is non-nil.
4042 This partially fixes Bug#16403.
4043
4044 2014-01-13 Juri Linkov <juri@jurta.org>
4045
4046 * info.el (Info-find-file): Go to DIR before displaying the error
4047 about a nonexistent file if no previous Info file is visited.
4048 Use `user-error' instead of `error' for "Info file %s does not exist".
4049 (Info-find-node-2): In case of a nonexistent node in unwind forms
4050 go to the Top node if there is no previous node to revert to.
4051 (Bug#16405)
4052
4053 2014-01-13 Martin Rudalics <rudalics@gmx.at>
4054
4055 fit-frame/window-to-buffer code fixes including one for Bug#14096.
4056 * window.el (fit-frame-to-buffer): Fix doc-string.
4057 Respect window-min-height/-width. Fit pixelwise when
4058 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
4059 when avoiding that frame goes partially off-screen.
4060 (fit-window-to-buffer): Respect window-min-height/-width
4061 (Bug#14096).
4062
4063 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4064
4065 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
4066 after an empty line.
4067
4068 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
4069
4070 * net/shr.el (shr-render-region): Autoload.
4071
4072 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
4073
4074 * net/eww.el (eww-download-directory): Rename from
4075 `eww-download-path' (Bug#16419).
4076
4077 2014-01-12 Leo Liu <sdl.web@gmail.com>
4078
4079 * dired-x.el (dired-mode-map): Fix last change.
4080
4081 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
4082
4083 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
4084
4085 Spelling fixes.
4086 * emacs-lisp/generic.el (generic--normalize-comments):
4087 Rename from generic--normalise-comments. All uses changed.
4088 * play/bubbles.el (bubbles--neighborhood-score)
4089 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
4090 (bubbles--neighborhood-available)
4091 (bubbles--update-neighborhood-score):
4092 Rename from names with 'neighbourhood'. All uses changed.
4093
4094 2014-01-12 Leo Liu <sdl.web@gmail.com>
4095
4096 Re-implement the feature of showing eldoc info after editing.
4097 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
4098 (eldoc-edit-message-commands): New function.
4099 (eldoc-print-after-edit): New variable.
4100 (eldoc-pre-command-refresh-echo-area): Emit message only by
4101 eldoc-message-commands.
4102 (eldoc-mode): Restrict eldoc-message-commands to editing commands
4103 if eldoc-print-after-edit is set. (Bug#16346)
4104 * simple.el (read--expression): Enable eldoc-mode.
4105 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
4106
4107 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
4108 Eric S. Raymond <esr@thyrsus.com>
4109
4110 * version.el (emacs-repository-get-version): Enhance so the
4111 function works correctly in either a Bazaar or Git repo.
4112
4113 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
4114
4115 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
4116 Goes with removal of the joke manpages from /etc.
4117
4118 2014-01-10 Kenichi Handa <handa@gnu.org>
4119
4120 * mail/rmail.el (rmail-get-coding-system):
4121 Check rmail-get-coding-function before "funcall"ing it.
4122
4123 2014-01-10 Glenn Morris <rgm@gnu.org>
4124
4125 * emacs-lisp/authors.el (authors-fixed-entries):
4126 Update for files that no longer exist.
4127
4128 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
4129
4130 * version.el (emacs-bzr-get-version): Restore compatibilty with
4131 24.3 (Tested).
4132
4133 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
4134
4135 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
4136 and Podfile.
4137
4138 2014-01-10 Eli Zaretskii <eliz@gnu.org>
4139
4140 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
4141
4142 2014-01-10 Chong Yidong <cyd@gnu.org>
4143
4144 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
4145
4146 2014-01-10 Anders Lindgren <andlind@gmail.com>
4147
4148 * follow.el (follow-cache-command-list): Include right-char and
4149 left-char.
4150
4151 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
4152
4153 Spelling fixes.
4154 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
4155 * woman.el (woman-mark-horizontal-position):
4156 Rename from woman-mark-horizonal-position. Use changed.
4157
4158 2014-01-10 Glenn Morris <rgm@gnu.org>
4159
4160 * info.el (info-initialize): If running uninstalled, ensure our
4161 own info files are always found first, even if INFOPATH is set.
4162
4163 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
4164
4165 2014-01-09 David Engster <deng@randomsample.de>
4166
4167 * emacs-lisp/eieio-custom.el:
4168 * emacs-lisp/eieio-opt.el: Set generated autoload file to
4169 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
4170 * emacs-lisp/eieio.el: Regenerate autoloads.
4171
4172 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
4173
4174 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
4175 following renames. (Bug#8756)
4176
4177 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
4178
4179 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
4180 (bug#16382).
4181 (activate-mark): Add `no-tmm' argument.
4182 (set-mark, push-mark-command): Use it instead of running
4183 activate-mark-hook by hand.
4184
4185 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
4186
4187 In preparation for the move to git, sanitize out some
4188 Bazaar-specific names.
4189
4190 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
4191
4192 * version.el (emacs-bzr-version): Name changed to
4193 emacs-repository-version. Obsolete-variable alias made.
4194 * loadup.el: Follow through on this name change.
4195 * mail/emacsbug.el (report-emacs-bug): Factor out any
4196 assumption about the version control system in use.
4197
4198 2014-01-08 David Engster <deng@randomsample.de>
4199
4200 * help-fns.el (help-fns-describe-function-functions):
4201 New variable to call functions for augmenting help buffers.
4202 (describe-function-1): Remove explicit calls to
4203 `help-fns--compiler-macro', `help-fns--parent-mode' and
4204 `help-fns--obsolete'. Put them in above new variable instead, and
4205 call them through `run-hook-with-args'.
4206 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
4207 `eieio-describe-class'. Not meant for interactive use anymore,
4208 but to augment existing help buffers. Remove optional second
4209 argument. Create proper button for file location.
4210 Rewrite function to use `insert' instead of `princ' and `prin1' where
4211 possible.
4212 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
4213 (eieio-method-def, eieio-class-def): Move further up.
4214 (describe-method, describe-generic, eieio-describe-method):
4215 Remove aliases.
4216 (eieio-help-constructor, eieio-help-generic): Rename from
4217 `eieio-describe-constructor' and `eieio-describe-generic', resp.
4218 Rewrite to use `insert' in the current buffer and use proper help
4219 buttons.
4220 (eieio-help-find-method-definition)
4221 (eieio-help-find-class-definition): Also accept symbols as
4222 arguments.
4223 (eieio-help-mode-augmentation-maybee): Remove.
4224 (eieio-describe-class-sb): Use `describe-function'.
4225 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
4226 Add `eieio-help-generic' and `eieio-help-constructor'.
4227
4228 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
4229
4230 Spelling fixes.
4231 * language/china-util.el (hz-ascii-designation):
4232 Rename from hz-ascii-designnation.
4233 (hz-ascii-designation): Rename from hz-ascii-designnation.
4234 All uses changed.
4235
4236 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
4237
4238 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
4239 package-alist.
4240
4241 2014-01-08 Bastien Guerry <bzg@gnu.org>
4242
4243 * emacs-lisp/package.el (package-delete):
4244 Correctly delete the package from package-alist.
4245
4246 2014-01-08 Daiki Ueno <ueno@gnu.org>
4247
4248 * emacs-lisp/package.el (url-recreate-url): Declare.
4249 (url-http-target-url): Declare.
4250 (package-handle-response): Include requested URL in the error message.
4251 (package--check-signature): Don't re-signal errors from
4252 package--with-work-buffer. Suggested by Stefan Monnier.
4253
4254 2014-01-07 Bastien Guerry <bzg@gnu.org>
4255
4256 * minibuffer.el (completion--try-word-completion): When both a
4257 hyphen and a space are possible candidates for the character
4258 following a word, display both candidates. (Bug#15980)
4259
4260 2014-01-07 Martin Rudalics <rudalics@gmx.at>
4261
4262 * window.el (balance-windows-2): While rounding don't give a
4263 window more than the remainder. Bug#16351, bug#16383.
4264
4265 2014-01-07 Glenn Morris <rgm@gnu.org>
4266
4267 * menu-bar.el (menu-bar-help-extra-packages): Remove.
4268 (menu-bar-help-menu): Use view-external-packages instead.
4269
4270 2014-01-07 Bastien Guerry <bzg@gnu.org>
4271
4272 * emacs-lisp/package.el (package-delete): Also delete the package
4273 name from `package-alist', not its description only.
4274
4275 2014-01-07 Glenn Morris <rgm@gnu.org>
4276
4277 * help.el (view-external-packages):
4278 * menu-bar.el (menu-bar-help-extra-packages):
4279 Visit efaq.info rather than etc/MORE.STUFF.
4280
4281 2014-01-07 Juri Linkov <juri@jurta.org>
4282
4283 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
4284 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
4285
4286 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
4287 that shadows RET. (Bug#16342)
4288
4289 2014-01-07 Chong Yidong <cyd@gnu.org>
4290
4291 * isearch.el (isearch-yank-char, isearch-yank-word)
4292 (isearch-yank-line): Doc fix.
4293
4294 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
4295
4296 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
4297 * emacs-lisp/elint.el (elint-find-builtins):
4298 * emacs-lisp/eldoc.el (eldoc-symbol-function):
4299 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
4300 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
4301 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4302 * apropos.el (apropos-safe-documentation):
4303 * subr.el (symbol-file): Remove redundant fboundp.
4304 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
4305
4306 2014-01-06 Bastien Guerry <bzg@gnu.org>
4307
4308 * hl-line.el (global-hl-line-overlay): Make a local variable.
4309 (global-hl-line-overlays): New variable to store all overlays.
4310 (global-hl-line-mode): Don't delete overlays from the current
4311 buffer when `global-hl-line-sticky-flag' is non-nil.
4312 (global-hl-line-highlight): Add new overlays to
4313 `global-hl-line-overlays'.
4314 (global-hl-line-unhighlight-all): New function to delete all
4315 overlays when turning off `global-hl-line-mode'.
4316 This fixes Bug#16183.
4317
4318 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
4319
4320 * subr.el (set-transient-map): Fix nested case and docstring.
4321
4322 2014-01-06 Tassilo Horn <tsdh@gnu.org>
4323
4324 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
4325 `Texinfo' entry.
4326
4327 2014-01-06 Daniel Colascione <dancol@dancol.org>
4328
4329 Fix defun navigation in vc log view.
4330
4331 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
4332 like `beginning-of-defun'.
4333 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
4334 log-view-end-of-defun to log-view-end-of-defun-1. Replace
4335 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
4336 (log-view-extract-comment): Call `log-view-current-entry' directly
4337 instead of relying on broken `log-view-beginning-of-defun' behavior.
4338
4339 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
4340
4341 Spelling fixes.
4342 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
4343 * emacs-lisp/debug.el (cancel-debug-on-entry):
4344 * epg.el (epg-error-to-string):
4345 * files.el (recover-file):
4346 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4347 * mail/emacsbug.el (report-emacs-bug-hook):
4348 * mail/sendmail.el (mail-recover):
4349 * ses.el (ses-yank-resize):
4350 * term/ns-win.el (ns-print-buffer):
4351 Spelling fixes in diagnostics, mostly for "canceled" with one L.
4352 * epg.el (epg-key-capability-alist): Rename from misspelled version.
4353 All uses changed.
4354 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
4355
4356 2014-01-06 Leo Liu <sdl.web@gmail.com>
4357
4358 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
4359 to avoid shadowing global key. (Bug#16354)
4360
4361 2014-01-06 Daniel Colascione <dancol@dancol.org>
4362
4363 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
4364 rst-mode.
4365
4366 2014-01-05 Martin Rudalics <rudalics@gmx.at>
4367
4368 * window.el (balance-windows): Add mising t to fix Bug#16351.
4369
4370 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4371
4372 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
4373 (bug#16285).
4374 (shr-insert): If we have a word that's longer than `shr-width',
4375 break after it anyway. Otherwise we'll do no breaking once we get
4376 such a long word.
4377
4378 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4379
4380 * net/eww.el (eww): Support single/double quote for search.
4381 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
4382 (eww-history-quit): Delete and use quit-window.
4383 (eww-history-kill): Delete, because it doesn't work well and
4384 not necessary.
4385 (eww-history-mode-map): Delete some keys and add easy-menu.
4386
4387 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
4388
4389 Fix misspelling of 'chinese' in rx (Bug#16237).
4390 * emacs-lisp/rx.el (rx-categories): Correct spelling of
4391 chinese-two-byte.
4392
4393 Change subword regexps back to vars (Bug#16296).
4394 * progmodes/subword.el (subword-forward-regexp)
4395 (subword-backward-regexp): Change these back to variables.
4396
4397 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4398
4399 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
4400 syntax-begin-function (bug#16247).
4401
4402 2014-01-03 Chong Yidong <cyd@gnu.org>
4403
4404 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
4405 (advice--docstring): Delete variable.
4406 (advice--make-1): Leave the docstring empty.
4407 (advice-add): Use function-documentation for advised docstring.
4408
4409 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
4410 Ignore function-documentation property when getting documentation.
4411 (ad-activate-advised-definition): Use function-documentation
4412 generate the docstring.
4413 (ad-make-advised-definition): Don't call
4414 ad-make-advised-definition-docstring.
4415 (ad-make-advised-definition-docstring, ad-advised-definition-p):
4416 Delete functions.
4417
4418 * progmodes/sql.el (sql-help): Use function-documentation instead
4419 of dynamic-docstring-function property. No need to autoload now.
4420 (sql--help-docstring): New variable.
4421 (sql--make-help-docstring): Use it.
4422
4423 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4424
4425 * ielm.el (ielm-tab): Retarget.
4426 (ielm-map): Use ielm-tab for tab.
4427 (ielm-complete-filename): Use comint-filename-completion.
4428 (ielm-complete-symbol): Remove.
4429 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
4430 remove ielm-tab from completion-at-point-functions (bug#16224).
4431
4432 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
4433 Beware signals raised by predicates (bug#16201).
4434
4435 2014-01-02 Richard Stallman <rms@gnu.org>
4436
4437 * dired-aux.el (dired-do-print): Handle printer-name.
4438
4439 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
4440 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
4441 (rmail-epa-decrypt): Turn off mime processing.
4442
4443 * mail/rmail.el (rmail-make-in-reply-to-field):
4444 Add parens in message-id.
4445
4446 * mail/rmail.el (rmail-get-coding-function): Variable.
4447 (rmail-get-coding-system): Use it.
4448
4449 2013-12-31 Eli Zaretskii <eliz@gnu.org>
4450
4451 * international/mule-conf.el: Unify the charset indian-is13194.
4452 (indian-is13194): Specify unify-map.
4453
4454 2013-12-31 Leo Liu <sdl.web@gmail.com>
4455
4456 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
4457
4458 2013-12-30 Daniel Colascione <dancol@dancol.org>
4459
4460 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
4461 of printing a useless when we resume from sleep.
4462
4463 * progmodes/sh-script.el
4464 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
4465 in indentation code. (Bug#16233)
4466
4467 2013-12-28 João Távora <joaotavora@gmail.com>
4468
4469 * elec-pair.el (electric-pair-post-self-insert-function):
4470 Don't open extra newlines at beginning of buffer. (Bug#16272)
4471
4472 2013-12-28 Eli Zaretskii <eliz@gnu.org>
4473
4474 * frame.el (window-system-for-display): Don't allow to create a
4475 GUI frame from a -nw session on MS-Windows. (Bug#14739)
4476
4477 2013-12-28 Glenn Morris <rgm@gnu.org>
4478
4479 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
4480 Update callers.
4481
4482 * apropos.el (apropos-match-face):
4483 * calculator.el (calculator-displayer):
4484 * dabbrev.el (dabbrev-search-these-buffers-only):
4485 * face-remap.el (buffer-face-mode-face):
4486 * simple.el (yank-handled-properties):
4487 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
4488 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
4489 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
4490 (hashcash-double-spend-database):
4491 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
4492 (ruby-deep-indent-paren-style):
4493 * textmodes/flyspell.el (flyspell-auto-correct-binding):
4494 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
4495 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
4496 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
4497 Specify custom types.
4498
4499 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
4500 * bookmark.el (bookmark-bmenu-use-header-line):
4501 * doc-view.el (doc-view-scale-internally):
4502 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
4503 * register.el (register-preview-delay):
4504 * net/shr.el (shr-bullet):
4505 * progmodes/cfengine.el (cfengine-cf-promises)
4506 (cfengine-parameters-indent):
4507 * progmodes/octave.el (inferior-octave-error-regexp-alist):
4508 * textmodes/reftex-vars.el (reftex-label-regexps):
4509 * vc/log-edit.el (log-edit-setup-add-author): Add version.
4510
4511 * net/tls.el (tls-certtool-program): Fix default value.
4512
4513 * desktop.el (desktop-restore-in-current-display):
4514 * newcomment.el (comment-empty-lines):
4515 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
4516 (idlwave-pad-keyword):
4517 * progmodes/tcl.el (tcl-tab-always-indent):
4518 * textmodes/reftex-vars.el (reftex-index-default-tag):
4519 * elec-pair.el (electric-pair-skip-whitespace):
4520 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
4521
4522 * emacs-lisp/authors.el (authors-ignored-files)
4523 (authors-valid-file-names, authors-renamed-files-alist): Additions.
4524
4525 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
4526
4527 * shell.el (shell-dynamic-complete-command): Doc fix.
4528 (shell--command-completion-data): Shell completion now matches
4529 executable filenames from the current buffer's directory, on
4530 systems in which this behavior is the default (windows-nt, ms-dos).
4531
4532 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
4533
4534 * net/shr.el (shr-insert): Don't infloop if the width is zero.
4535
4536 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
4539 (bug#16251).
4540
4541 * electric.el: Move all electric-pair-* to elec-pair.el.
4542 * elec-pair.el: New file, split from electric.el.
4543
4544 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
4545
4546 * net/shr.el (shr-find-fill-point): Don't try to fill if the
4547 indentation level is larger than the width, because that will
4548 infloop.
4549 (shr-insert): Fill repeatedly long texts, so that Japanese is
4550 formatted correctly (bug#16263).
4551 (shr-find-fill-point): Off by one error in comparison with the
4552 indentation.
4553
4554 2013-12-26 João Távora <joaotavora@gmail.com>
4555
4556 * electric.el (electric-pair-mode): More flexible engine for skip-
4557 and inhibit predicates, new options for pairing-related functionality.
4558 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
4559 if that keeps or improves their balance in buffers.
4560 (electric-pair-delete-adjacent-pairs): Delete the pair when
4561 backspacing over adjacent matched delimiters.
4562 (electric-pair-open-extra-newline): Open extra newline when
4563 inserting newlines between adjacent matched delimiters.
4564 (electric--sort-post-self-insertion-hook):
4565 Sort post-self-insert-hook according to priority values when
4566 minor-modes are activated.
4567 * simple.el (newline-and-indent): Call newline with interactive
4568 set to t.
4569 (blink-paren-post-self-insert-function): Set priority to 100.
4570 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4571 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
4572 comments. Locally set electric-pair-skip-whitespace to 'chomp and
4573 electric-pair-open-newline-between-pairs to nil.
4574
4575 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
4576
4577 * progmodes/python.el: Use lexical-binding.
4578 (python-nav-beginning-of-defun): Stop searching ASAP.
4579
4580 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
4581
4582 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
4583 Fix interactive spec. Doc fix. (Bug#15754)
4584
4585 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
4586
4587 * emacs-lisp/byte-run.el (eval-when-compile):
4588 * progmodes/cc-defs.el (cc-eval-when-compile):
4589 Fix edebug spec (bug#16184).
4590
4591 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
4592
4593 * net/shr.el (shr-visit-file): Remove debugging function.
4594 (shr-insert): Don't infloop if we can't find a good place to break
4595 the line (bug#16256).
4596
4597 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
4598
4599 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
4600 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
4601 python-nav-lisp-forward-sexp-safe.
4602 (python-nav--forward-sexp): New argument SAFE allows switching
4603 forward sexp movement behavior for parens.
4604 (python-nav-forward-sexp): Throw errors on unterminated parens
4605 (Bug#16191).
4606 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
4607 (python-nav-backward-sexp-safe): New functions.
4608 (python-shell-buffer-substring):
4609 Use `python-nav-forward-sexp-safe'.
4610
4611 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
4612
4613 * net/shr.el (shr-find-fill-point): Don't break lines before a
4614 quotation mark.
4615 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
4616 (shr-find-fill-point): Remove the special checks for the quotation
4617 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
4618
4619 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4620
4621 * net/eww.el (eww-form-textarea): Use a different face for
4622 textareas than text input since they have different keymaps
4623 (bug#16142).
4624
4625 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
4626
4627 * progmodes/python.el (python-nav-beginning-of-statement):
4628 Speed up (Bug#15295).
4629
4630 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
4631
4632 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
4633 the window configuration.
4634
4635 2013-12-24 Eli Zaretskii <eliz@gnu.org>
4636
4637 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
4638 we run on MS-Windows or MS-DOS.
4639
4640 2013-12-24 Martin Rudalics <rudalics@gmx.at>
4641
4642 * window.el (balance-windows-area): Call window-size instead of
4643 window-height and window-width. Bug#16241.
4644
4645 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
4646
4647 * net/eww.el (eww-bookmark-quit): Remove.
4648 (eww-bookmark-browse): Restore the window configuration when you
4649 choose a bookmark (bug#16144).
4650
4651 2013-12-24 Daniel Colascione <dancol@dancol.org>
4652
4653 * icomplete.el: Remove redundant :group arguments to `defcustom'
4654 throughout.
4655 (icomplete-show-matches-on-no-input): New customizable variable.
4656 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
4657 we have something to show.
4658 (icomplete-exhibit): Compute completions even if we have no user input.
4659
4660 2013-12-23 Daniel Colascione <dancol@dancol.org>
4661
4662 * icomplete.el: Move `provide' to end of file.
4663
4664 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
4665
4666 * net/gnutls.el (gnutls-verify-error): Add version tag.
4667
4668 2013-12-23 Chong Yidong <cyd@gnu.org>
4669
4670 * subr.el (set-transient-map): Rename from
4671 set-temporary-overlay-map. Doc fix.
4672
4673 * face-remap.el (text-scale-adjust):
4674 * indent.el (indent-rigidly):
4675 * kmacro.el (kmacro-call-macro):
4676 * minibuffer.el (minibuffer-force-complete):
4677 * repeat.el (repeat):
4678 * simple.el (universal-argument--mode):
4679 * calendar/todo-mode.el (todo-insert-item--next-param):
4680 * progmodes/f90.el (f90-abbrev-start): Callers changed.
4681
4682 * indent.el (indent-rigidly): Use substitute-command-keys.
4683
4684 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4685
4686 * net/eww.el (eww-tag-select): Add text-property to jump to next
4687 select field.
4688 (eww): Add non-supported ftp error.
4689
4690 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4691
4692 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
4693 comments. Handle electric indent after typing `?' and `!'.
4694
4695 2013-12-22 Chong Yidong <cyd@gnu.org>
4696
4697 * faces.el (face-spec-recalc): If the theme specs are not
4698 applicable to a frame, fall back on the defface spec.
4699 This prevents themes from obliterating faces on low-color terminals.
4700
4701 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4702
4703 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
4704 after `{'. We need it after block openers, and it doesn't seem
4705 to hurt after hash openers.
4706
4707 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4708
4709 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
4710 extracted from `ruby-smie-rules'.
4711 (ruby--electric-indent-chars): New variable.
4712 (ruby--electric-indent-p): New function.
4713 (ruby-mode): Use `electric-indent-functions' instead of
4714 `electric-indent-chars'.
4715
4716 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4717
4718 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
4719 docstring.
4720 (ruby-smie-rules): Indent plus one level after `=>'.
4721
4722 2013-12-21 Richard Stallman <rms@gnu.org>
4723
4724 * simple.el (newline): Doc fix.
4725
4726 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4727
4728 * net/eww.el (eww-list-histories, eww-list-histories)
4729 (eww-history-browse, eww-history-quit, eww-history-kill)
4730 (eww-history-mode-map, eww-history-mode): New command and
4731 functions to list browser histories.
4732 (eww-form-text): Support text form with disabled
4733 and readonly attributes.
4734 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
4735
4736 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4737
4738 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
4739 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
4740 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
4741 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
4742 Use `user-error'.
4743 (eww-bookmark-mode-map): Add menu.
4744 (eww-render, eww-mode): Use `setq-local'.
4745 (eww-tool-bar-map): New variable.
4746 (eww-mode): Set `tool-bar-map'.
4747 (eww-view-source): Check for `html-mode' with `fboundp'.
4748
4749 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4750
4751 * net/shr.el (shr--extract-best-source): Don't bug out on audio
4752 elements with text inside. Also remove debugging.
4753
4754 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
4755
4756 * cus-start.el (all): Add ns-use-srgb-colorspace.
4757
4758 2013-12-21 Chong Yidong <cyd@gnu.org>
4759
4760 * custom.el (custom-theme-recalc-face): Do nothing if the face is
4761 undefined. Thus, theme settings for undefined faces do not take
4762 effect until the faces are defined with defface, the same as with
4763 theme variables.
4764
4765 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
4766 (face-spec-reset-face): Don't assign extra properties in temacs.
4767 (face-spec-recalc): Apply X resources too.
4768
4769 2013-12-21 Chong Yidong <cyd@gnu.org>
4770
4771 * faces.el (face-spec-set):
4772 * cus-face.el (custom-theme-set-faces, custom-set-faces):
4773 * custom.el (defface): Doc fixes (Bug#16203).
4774
4775 * indent.el (indent-rigidly-map): Add docstring, and move commands
4776 into named functions.
4777 (indent-rigidly-left, indent-rigidly-right)
4778 (indent-rigidly-left-to-tab-stop)
4779 (indent-rigidly-right-to-tab-stop): New functions. Decide on
4780 indentation direction based on bidi direction, and accumulate
4781 sequential commands in a single undo boundary.
4782 (indent-rigidly--pop-undo): New utility function.
4783
4784 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
4785
4786 * faces.el (read-face-name): Require crm.el when using crm-separator.
4787
4788 2013-12-20 Daniel Colascione <dancol@dancol.org>
4789
4790 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
4791 so that we don't reflow comments into the shebang line.
4792
4793 2013-12-20 Juri Linkov <juri@jurta.org>
4794
4795 * saveplace.el (save-place-to-alist): Add `dired-filename' as
4796 a position when `dired-directory' is non-nil. Check integer
4797 positions with `integerp'.
4798 (toggle-save-place, save-places-to-alist): Add check for
4799 `dired-directory'.
4800 (save-place-find-file-hook): Check integer positions with
4801 `integerp'.
4802 (save-place-dired-hook): Use `dired-goto-file' when
4803 `dired-filename' is found in the assoc list. Check integer
4804 positions with `integerp'.
4805 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
4806
4807 * dired.el (dired-initial-position-hook): Rename back from
4808 `dired-initial-point-hook'.
4809 (dired-initial-position): Rename `dired-initial-point-hook' to
4810 `dired-initial-position-hook'.
4811 (dired-file-name-at-point): Doc fix. (Bug#15329)
4812
4813 2013-12-20 Juri Linkov <juri@jurta.org>
4814
4815 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
4816 (read-regexp-suggestions): New function.
4817 (read-regexp): Use `read-regexp-defaults-function' to get default values.
4818 Use `read-regexp-suggestions'. Add non-empty default to history
4819 for empty input.
4820 (occur-read-regexp-defaults-function): Remove function.
4821 (occur-read-primary-args): Use `regexp-history-last' instead of
4822 `occur-read-regexp-defaults-function'.
4823
4824 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
4825 (hi-lock-line-face-buffer, hi-lock-face-buffer)
4826 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
4827 `hi-lock-read-regexp-defaults-function'. Doc fix.
4828 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
4829 with `find-tag-default-as-symbol-regexp'. Doc fix.
4830 (hi-lock-read-regexp-defaults): Remove function.
4831 (hi-lock-regexp-okay): Add check for null.
4832
4833 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
4834 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
4835
4836 * subr.el (find-tag-default-as-symbol-regexp): New function.
4837 (find-tag-default-as-regexp): Move symbol regexp formatting to
4838 `find-tag-default-as-symbol-regexp'.
4839
4840 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
4841
4842 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
4843 (Bug#14179)
4844
4845 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
4846
4847 * calendar/todo-mode.el: New implementation of item insertion
4848 commands and key bindings.
4849 (todo-key-prompt): New face.
4850 (todo-insert-item): New command.
4851 (todo-insert-item--parameters): New defconst, replacing defvar
4852 todo-insertion-commands-args-genlist.
4853 (todo-insert-item--param-key-alist): New defconst, replacing
4854 defvar todo-insertion-commands-arg-key-list.
4855 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
4856 (todo-insert-item--argsleft, todo-insert-item--apply-args)
4857 (todo-insert-item--next-param): New functions.
4858 (todo-insert-item--args, todo-insert-item--argleft)
4859 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
4860 New variables.
4861 (todo-key-bindings-t): Change binding of "i" from
4862 todo-insertion-map to todo-insert-item.
4863 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
4864 (todo-insertion-command-name, todo-insertion-commands-names)
4865 (todo-define-insertion-command, todo-insertion-commands)
4866 (todo-insertion-key-bindings, todo-insertion-map): Remove.
4867
4868 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
4869
4870 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
4871 (todo-toggle-item-highlighting): Use eval-and-compile instead of
4872 eval-when-compile.
4873 (todo-move-category): Allow choosing a non-existing todo file to
4874 move the category to, and create that file.
4875 (todo-default-priority): New user option.
4876 (todo-set-item-priority): Use it.
4877 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
4878 (desktop-restore-file-buffer): Declare.
4879 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
4880 (todo-modes-set-2): Locally set desktop-save-buffer to
4881 todo-desktop-save-buffer.
4882 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
4883 (auto-mode-alist): Add autoload cookie.
4884
4885 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
4886
4887 * emacs-lisp/subr-x.el: Renamed from helpers.el.
4888 helpers.el was a poor choice of name.
4889 (string-remove-prefix): New function.
4890 (string-remove-suffix): New function.
4891
4892 2013-12-20 Martin Rudalics <rudalics@gmx.at>
4893
4894 Fix assignment for new window total sizes.
4895 * window.el (window--pixel-to-size): Remove function.
4896 (window--pixel-to-total-1, window--pixel-to-total):
4897 Fix calculation of new total sizes.
4898
4899 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
4900
4901 * comint.el (comint-output-filter): Fix rear-nonsticky property
4902 placement (Bug#16010).
4903
4904 2013-12-20 Chong Yidong <cyd@gnu.org>
4905
4906 * faces.el (read-color): Minor fix for completion function.
4907
4908 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
4909
4910 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
4911 New option. (Bug#16182)
4912 (ruby-smie--indent-to-stmt-p): Use it.
4913 (ruby-smie-rules): Revert the logic in the handling of `when'.
4914 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
4915 (ruby-deep-arglist, ruby-deep-indent-paren)
4916 (ruby-deep-indent-paren-style): Update docstrings to note that the
4917 vars don't have any effect with SMIE.
4918
4919 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
4920
4921 * calc/calc.el (calc-enter, calc-pop): Use the variable
4922 `calc-context-sensitive-enter'.
4923
4924 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
4925
4926 * net/shr.el (shr-insert): Protect against infloops in degenerate
4927 tables.
4928
4929 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4930
4931 * progmodes/octave.el (octave): Add link to manual and octave
4932 homepage.
4933 (octave-mode-menu): Link to octave-mode manual.
4934
4935 2013-12-20 Leo Liu <sdl.web@gmail.com>
4936
4937 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
4938 insertion using skeleton-end-newline. (Bug#16138)
4939
4940 2013-12-20 Juri Linkov <juri@jurta.org>
4941
4942 * replace.el (occur-engine): Use `add-face-text-property'
4943 to add the face property to matches and titles. (Bug#14645)
4944
4945 * hi-lock.el (hi-green): Use lighter color "light green" closer to
4946 the palette of other hi-lock colors.
4947 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
4948
4949 2013-12-19 Juri Linkov <juri@jurta.org>
4950
4951 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
4952 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
4953 (minibuffer-history-symbol): Move variable declaration closer to
4954 its usage.
4955
4956 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
4957 (Bug#14785)
4958
4959 2013-12-19 Juri Linkov <juri@jurta.org>
4960
4961 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
4962 New function.
4963 (log-edit-hook): Add it to :options. (Bug#16170)
4964
4965 2013-12-19 Juri Linkov <juri@jurta.org>
4966
4967 * simple.el (eval-expression-print-format): Don't check for
4968 command names and the last command. Always display additional
4969 formats of the integer result in the echo area, and insert them
4970 to the current buffer only with a zero prefix arg.
4971 Display character when char-displayable-p is non-nil.
4972 (eval-expression): With a zero prefix arg, set `print-length' and
4973 `print-level' to nil, and insert the integer values from
4974 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
4975
4976 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
4977 `eval-last-sexp-arg-internal'. Doc fix.
4978 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
4979 `eval-last-sexp-print-value'. Doc fix.
4980 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
4981 Set `print-length' and `print-level' to nil when arg is zero.
4982 (eval-last-sexp): Doc fix.
4983 (eval-defun-2): Print the integer values from
4984 `eval-expression-print-format' at the end.
4985
4986 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
4987 values from `eval-expression-print-format' at the end.
4988
4989 * ielm.el (ielm-eval-input): Print the integer
4990 values from `eval-expression-print-format' at the end.
4991
4992 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
4993
4994 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
4995 2013-12-11T19:01:44Z!tzz@lifelogs.com.
4996
4997 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
4998
4999 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
5000 (hl-line-highlight, global-hl-line-highlight): Use it.
5001 (hl-line-overlay): Use defvar-local.
5002
5003 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
5004
5005 * term/ns-win.el: Require dnd.
5006 (global-map): Remove drag items.
5007 (ns-insert-text, ns-set-foreground-at-mouse)
5008 (ns-set-background-at-mouse):
5009 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
5010 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
5011 New functions.
5012
5013 2013-12-19 Glenn Morris <rgm@gnu.org>
5014
5015 * emacs-lisp/ert.el (ert-select-tests):
5016 Fix string/symbol mixup. (Bug#16121)
5017
5018 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5019
5020 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
5021 keywords to their parent.
5022
5023 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
5024
5025 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
5026 first arg to be a string (fixed dead code), or an operator symbol.
5027 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
5028 operator symbols.
5029 (ruby-smie-rules): Remove parent token check in the `.' clause, it
5030 did nothing. Don't respond to `(:after ".")', it will be called
5031 with :before anyway. Remove the ` @ ' rule, it didn't seem to
5032 change anything. Only return indentation for binary operators
5033 when they are hanging. De-dent opening paren when its parent is
5034 `.', otherwise it looks bad when the dot is not at bol or eol
5035 (bug#16182).
5036
5037 2013-12-19 Juri Linkov <juri@jurta.org>
5038
5039 * replace.el (query-replace-read-args): Split a non-negative arg
5040 and a negative arg into separate elements.
5041 (query-replace, query-replace-regexp, replace-string)
5042 (replace-regexp): Add arg `backward'. Doc fix.
5043 (replace-match-maybe-edit): When new arg `backward' is non-nil,
5044 move point to the beginning of the match.
5045 (replace-search, replace-highlight): Use new arg `backward'
5046 to set the value of `isearch-forward'.
5047 (perform-replace): Add arg `backward' and use it to perform
5048 replacement backward. (Bug#14979)
5049
5050 * isearch.el (isearch-query-replace): Use a negative prefix arg
5051 to call `perform-replace' with a non-nil arg `backward'.
5052
5053 2013-12-18 Juri Linkov <juri@jurta.org>
5054
5055 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
5056 to the default list. Move `log-edit-show-files' to the end.
5057 Add more available functions to options.
5058 (log-edit): Move default specific settings to
5059 `log-edit-insert-message-template'. Don't move point.
5060 (log-edit-insert-message-template): New function.
5061 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
5062 (Bug#16170)
5063
5064 2013-12-18 Juri Linkov <juri@jurta.org>
5065
5066 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
5067 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
5068
5069 2013-12-18 Leo Liu <sdl.web@gmail.com>
5070
5071 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
5072 (Bug#16186)
5073
5074 2013-12-18 Eli Zaretskii <eliz@gnu.org>
5075
5076 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
5077 formats for displaying file sizes when the -s switch is given.
5078 Instead, compute a separate format for displaying the size in
5079 blocks, which is displayed in addition to the "regular" size.
5080 When -h is given in addition to -s, produce size in blocks in
5081 human-readable form as well. (Bug#16179)
5082
5083 2013-12-18 Tassilo Horn <tsdh@gnu.org>
5084
5085 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5086 Reference tables with ~\ref{...} instead of only \ref{...}.
5087
5088 2013-12-18 Chong Yidong <cyd@gnu.org>
5089
5090 * cus-edit.el (custom-magic-alist): Fix "themed" description
5091 (Bug#14348).
5092
5093 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
5094 is non-nil, do not create a new entry in the symbol's theme-value
5095 or theme-face property; update theme-settings only (Bug#14664).
5096 (custom-available-themes): Doc fix.
5097
5098 * cus-theme.el (custom-new-theme-mode-map): Add bindings
5099 (Bug#15674).
5100
5101 * replace.el (occur-engine): Avoid infloop (Bug#7593).
5102
5103 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5104
5105 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
5106 (Bug#13914).
5107
5108 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5109
5110 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
5111
5112 2013-12-18 Glenn Morris <rgm@gnu.org>
5113
5114 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
5115 * cus-start.el (load-prefer-newer): New option.
5116
5117 2013-12-18 Le Wang <l26wang@gmail.com>
5118
5119 * comint.el (comint-previous-matching-input-from-input):
5120 Retain point (Bug#13404).
5121
5122 2013-12-18 Chong Yidong <cyd@gnu.org>
5123
5124 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
5125
5126 2013-12-18 Glenn Morris <rgm@gnu.org>
5127
5128 * mail/emacsbug.el (report-emacs-bug):
5129 Only mention enable-multibyte-characters if non-standard.
5130
5131 2013-12-17 Juri Linkov <juri@jurta.org>
5132
5133 * arc-mode.el (archive-extract-by-file): Check if directory exists
5134 before deletion to not show irrelevant errors if it doesn't exist.
5135
5136 2013-12-17 Juri Linkov <juri@jurta.org>
5137
5138 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
5139 (Bug#14751)
5140
5141 * net/eww.el (browse-web): Add alias to `eww'.
5142 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
5143 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
5144
5145 * net/browse-url.el (browse-url-browser-function): Move `eww'
5146 closer to similar functions.
5147
5148 * startup.el (fancy-startup-screen, fancy-about-screen):
5149 Set browse-url-browser-function to eww-browse-url locally.
5150 (Bug#14751)
5151
5152 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5153
5154 * window.el (window--pixel-to-total): Remove unused `mini' var.
5155 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
5156 (split-window): Remove unused `new' var.
5157 (window--display-buffer): Remove unused `frame' and `delta' vars.
5158 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
5159 and display-width'.
5160
5161 2013-12-17 Martin Rudalics <rudalics@gmx.at>
5162
5163 * dired.el (dired-mark-pop-up):
5164 * register.el (register-preview): Don't bind
5165 split-height-threshold here since it's now done in
5166 display-buffer-below-selected.
5167
5168 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
5169
5170 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
5171 xterm-rgb-convert-to-16bit.
5172 (rxvt-register-default-colors): Standardize with
5173 xterm-register-default-colors (Bug#14078).
5174
5175 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
5176
5177 * simple.el (kill-region): Pass mark first, then point, so that
5178 kill-append works right (Bug#12819).
5179 (copy-region-as-kill, kill-ring-save): Likewise.
5180
5181 2013-12-17 Leo Liu <sdl.web@gmail.com>
5182
5183 * net/rcirc.el (rcirc-add-face):
5184 * eshell/em-prompt.el (eshell-emit-prompt):
5185 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
5186 (Bug#16167)
5187
5188 2013-12-17 Chong Yidong <cyd@gnu.org>
5189
5190 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
5191 Suggested by Xue Fuqiao.
5192
5193 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5194
5195 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
5196
5197 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5198
5199 * net/shr.el (shr-insert-document): Remove unused var
5200 `shr-preliminary-table-render'.
5201 (shr-rescale-image): Remove unused arg `force'.
5202 (shr-put-image): Update calls accordingly.
5203 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
5204
5205 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5206
5207 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
5208 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
5209 :close-all, to see which indentation method to use (Bug#16116).
5210 (smie-rules-function): Document the method :close-all.
5211
5212 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5213
5214 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
5215
5216 * net/eww.el (eww-display-html): If we can't find the anchor we're
5217 looking for, then go to point-min.
5218
5219 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
5220
5221 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
5222 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
5223 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
5224 Expand dir too, in case it's relative.
5225
5226 2013-12-16 Juri Linkov <juri@jurta.org>
5227
5228 * desktop.el (desktop-auto-save-timeout): Change default to
5229 `auto-save-timeout'. Doc fix.
5230 (desktop-save): Skip the timestamp in desktop-saved-frameset
5231 when checking for auto-save changes.
5232 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
5233 `desktop-auto-save' is called repeatedly by the idle timer.
5234 (desktop-auto-save-set-timer): Replace `run-with-timer' with
5235 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
5236 (Bug#15331)
5237
5238 2013-12-16 Juri Linkov <juri@jurta.org>
5239
5240 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
5241 (Bug#16035)
5242 (isearch-pre-command-hook): Check `this-command' for symbolp.
5243
5244 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5245
5246 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
5247
5248 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
5249
5250 * progmodes/cfengine.el (cfengine3--current-word): Remove.
5251 (cfengine3--current-function): Bring in the current-function
5252 functionality from `cfengine3--current-word'.
5253 (cfengine3-completion-function): Bring in the
5254 bounds-of-current-word functionality from
5255 `cfengine3--current-word'.
5256
5257 2013-12-16 Martin Rudalics <rudalics@gmx.at>
5258
5259 * window.el (display-buffer-below-selected):
5260 Bind split-height-threshold to 0 as suggested by Juri Linkov.
5261
5262 2013-12-16 Leo Liu <sdl.web@gmail.com>
5263
5264 * progmodes/compile.el (compile-goto-error): Do not push-mark.
5265 Remove NOMSG arg and all uses changed.
5266
5267 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5268
5269 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
5270 (cua--deactivate-rectangle): Don't deactivate the mark.
5271 (cua-set-rectangle-mark): Don't set mark-active since
5272 cua--activate-rectangle already does it for us.
5273 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
5274 non-rectangular region.
5275
5276 * emulation/cua-base.el (cua-repeat-replace-region):
5277 Use with-current-buffer.
5278
5279 * net/gnutls.el: Use cl-lib.
5280 (gnutls-negotiate): `mapcan' -> cl-mapcan.
5281
5282 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5283
5284 * emacs-lisp/package.el (package-built-in-p): Support both
5285 built-in and the package.el converted package descriptions.
5286 (package-show-package-list): Allow keywords.
5287 (package-keyword-button-action): Use it instead of
5288 `finder-list-matches'.
5289 (package-menu-filter-interactive): Interactive filtering (by
5290 keyword) function.
5291 (package-menu--generate): Support keywords and change keymappings
5292 and headers when they are given.
5293 (package--has-keyword-p): Helper function.
5294 (package-menu--refresh): Use it.
5295 (package--mapc): Helper function.
5296 (package-all-keywords): Use it.
5297 (package-menu-mode-map): Set up menu items and keybindings to
5298 provide a filtering UI.
5299
5300 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5301
5302 * net/gnutls.el (gnutls-verify-error): New defcustom to control
5303 the behavior when a certificate fails validation. Defaults to
5304 old behavior: never abort, just warn.
5305 (gnutls-negotiate): Use it.
5306
5307 2013-12-14 Martin Rudalics <rudalics@gmx.at>
5308
5309 * window.el (display-buffer-below-selected): Never split window
5310 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
5311
5312 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
5313
5314 * emacs-lisp/package.el (package--prepare-dependencies): New function.
5315 (package-buffer-info): Use it (bug#15108).
5316
5317 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
5318
5319 * icomplete.el (icomplete-completions): Make sure the prefix is already
5320 displayed elsewhere before hiding it (bug#16219).
5321
5322 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
5323
5324 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
5325 open-paren tokens when preceded by a open-paren, too.
5326 (ruby-smie-rules): Handle virtual indentation after open-paren
5327 tokens specially. If there is code between it and eol, return the
5328 column where is starts (Bug#16118).
5329
5330 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
5331
5332 * progmodes/cfengine.el: Fix `add-hook' doc.
5333 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
5334 (cfengine3--current-word): Fix parameters.
5335 (cfengine3-make-syntax-cache): Simplify further.
5336 (cfengine3-completion-function, cfengine3--current-function):
5337 Use `assq' for symbols.
5338 (cfengine3--current-function): Fix `cfengine3--current-word' call.
5339
5340 2013-12-13 Glenn Morris <rgm@gnu.org>
5341
5342 * loadup.el (load-path): Warn if site-load or site-init changes it.
5343 No more need to reset it when bootstrapping.
5344
5345 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
5346
5347 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
5348 locations for cf-promises.
5349 (cfengine-mode-syntax-functions-regex): New caching variable.
5350 (cfengine3-fallback-syntax): Fallback syntax for cases where
5351 cf-promises doesn't run.
5352 (cfengine3--current-word): Reimplement using
5353 `cfengine-mode-syntax-functions-regex'.
5354 (cfengine3-completion-function, cfengine3--current-function):
5355 Use `cfengine3-make-syntax-cache' directly.
5356 (cfengine3-clear-syntax-cache): New function.
5357 (cfengine3-make-syntax-cache): Simplify and create
5358 `cfengine-mode-syntax-functions-regex' on demand.
5359 (cfengine3-format-function-docstring): Don't call
5360 `cfengine3-make-syntax-cache' explicitly.
5361
5362 2013-12-13 Martin Rudalics <rudalics@gmx.at>
5363
5364 Fix windmove-find-other-window broken after pixelwise resizing
5365 (Bug#16017).
5366 * windmove.el (windmove-other-window-loc): Revert change from
5367 2013-12-04.
5368 (windmove-find-other-window): Call window-in-direction.
5369 * window.el (window-in-direction): New arguments SIGN, WRAP and
5370 MINI to emulate original windmove-find-other-window behavior.
5371
5372 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
5373
5374 * simple.el (blink-matching--overlay): New variable.
5375 (blink-matching-open): Instead of moving point, highlight the
5376 matching paren with an overlay
5377 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
5378
5379 * faces.el (paren-showing-faces, show-paren-match)
5380 (show-paren-mismatch): Move from paren.el.
5381
5382 2013-12-13 Leo Liu <sdl.web@gmail.com>
5383
5384 * indent.el (indent-region): Disable progress reporter in
5385 minibuffer. (Bug#16108)
5386
5387 * bindings.el (visual-order-cursor-movement): Fix version.
5388
5389 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
5390
5391 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
5392 Also match after beginning of line.
5393 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
5394 files. Thanks to Russell Sim. (Bug#15378)
5395
5396 2013-12-13 Juri Linkov <juri@jurta.org>
5397
5398 * simple.el <Keypad support>: Remove key bindings duplicated
5399 with bindings.el. (Bug#14397)
5400
5401 2013-12-13 Juri Linkov <juri@jurta.org>
5402
5403 * comint.el (comint-mode-map): Replace `delete-char' with
5404 `delete-forward-char'. (Bug#16109)
5405
5406 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
5407
5408 * progmodes/python.el (python-indent-calculate-indentation):
5409 Fix de-denters cornercase. (Bug#15731)
5410
5411 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
5412
5413 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
5414 (advice--make): Pay attention to `depth'.
5415 (advice--make-1): Don't autoload commands eagerly.
5416 * emacs-lisp/elp.el (elp-instrument-function):
5417 * emacs-lisp/trace.el (trace-function-internal):
5418 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
5419
5420 * iswitchb.el (iswitchb-mode): Don't belittle ido.
5421
5422 2013-12-12 Eli Zaretskii <eliz@gnu.org>
5423
5424 * term/w32-win.el (w32-handle-dropped-file):
5425 * startup.el (normal-top-level):
5426 * net/browse-url.el (browse-url-file-url):
5427 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
5428 decode file names using 'utf-8' rather than
5429 file-name-coding-system.
5430
5431 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
5432
5433 * progmodes/python.el (python-indent-context)
5434 (python-indent-calculate-indentation): Fix auto-identation
5435 behavior for comment blocks. (Bug#15916)
5436
5437 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
5438
5439 * progmodes/python.el (python-indent-calculate-indentation):
5440 When determining indentation, don't treat "return", "pass", etc., as
5441 operators when they are just string constituents. (Bug#15812)
5442
5443 2013-12-12 Juri Linkov <juri@jurta.org>
5444
5445 * uniquify.el (uniquify-buffer-name-style): Change default to
5446 `post-forward-angle-brackets'.
5447
5448 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
5449 `uniquify'. Change default to `post-forward-angle-brackets'.
5450
5451 2013-12-11 Glenn Morris <rgm@gnu.org>
5452
5453 * emacs-lisp/package.el (finder-list-matches):
5454 Autoload rather than falsely declaring.
5455
5456 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
5457
5458 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
5459 (eww-mode-map): Use them.
5460
5461 2013-12-11 Martin Rudalics <rudalics@gmx.at>
5462
5463 * window.el (display-buffer-in-side-window): Fix doc-string
5464 (Bug#16115).
5465
5466 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
5467
5468 * vc/vc-git.el: Silence byte-compiler warnings.
5469 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
5470 (log-edit-set-header): Declare.
5471
5472 2013-12-11 Eli Zaretskii <eliz@gnu.org>
5473
5474 * Makefile.in (custom-deps, finder-data): Run output file names
5475 through unmsys--file-name. (Bug#16099)
5476
5477 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
5478
5479 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
5480 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
5481
5482 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
5483 instead of deleting the selection "by hand" (bug#16098).
5484 Rely on insert-for-yank to yank rectangles.
5485 (cua-highlight-region-shift-only): Mark obsolete.
5486 (cua-mode): Don't enable/disable transient-mark-mode,
5487 shift-select-mode (cua-mode works both with and without them), and
5488 pc-selection-mode (obsolete).
5489 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
5490 (cua--deactivate-rectangle): Deactivate it.
5491
5492 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
5493 (delete-selection-helper): Make sure yank starts at the top of the
5494 deleted region.
5495 (minibuffer-keyboard-quit): Use region-active-p.
5496
5497 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
5498
5499 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
5500 to `delete' (bug#16109).
5501
5502 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5503
5504 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
5505 info manual and show keybindings and set `:group' keyword.
5506
5507 2013-12-11 Juri Linkov <juri@jurta.org>
5508
5509 * delsel.el (delete-active-region): Let-bind `this-command'
5510 to prevent `kill-region' from changing its original value.
5511 (delete-selection-helper): Handle `overwrite-mode' for the type
5512 `kill' exactly the same way as for the type `t'.
5513 (insert-char, quoted-insert, reindent-then-newline-and-indent):
5514 Support more commands. (Bug#13312)
5515
5516 2013-12-11 Juri Linkov <juri@jurta.org>
5517
5518 * bindings.el: Map kp keys to non-kp keys systematically
5519 with basic modifiers control, meta and shift. (Bug#14397)
5520
5521 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5522
5523 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
5524 "Close browser" menu items. Fix wrong function of "List
5525 bookmarks".
5526
5527 2013-12-11 Juri Linkov <juri@jurta.org>
5528
5529 * misearch.el (multi-isearch-buffers): Set the value of
5530 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
5531 arg of isearch-forward to t.
5532 (multi-isearch-buffers-regexp): Set the value of
5533 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
5534 arg of isearch-forward-regexp to t.
5535 (multi-isearch-files): Set the value of
5536 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
5537 arg of isearch-forward to t.
5538 (multi-isearch-files-regexp): Set the value of
5539 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
5540 arg of isearch-forward-regexp to t. (Bug#16035)
5541
5542 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
5543 arg of isearch-forward to t.
5544 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
5545 arg of isearch-forward-regexp to t.
5546 (dired-isearch-filter-filenames): Remove unnecessary check for
5547 `dired-isearch-filenames'.
5548
5549 * comint.el (comint-history-isearch-backward):
5550 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
5551 (comint-history-isearch-backward-regexp):
5552 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
5553
5554 2013-12-10 Eli Zaretskii <eliz@gnu.org>
5555
5556 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
5557 unmsys--file-name. (Bug#16099)
5558
5559 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
5560
5561 * emacs-lisp/package.el (package-keyword-button-action):
5562 Remove finder.el require dependency.
5563
5564 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
5565
5566 * emacs-lisp/package.el: Require finder.el.
5567 (describe-package-1): Add keyword buttons.
5568 (package-make-button): New convenience function.
5569 (package-keyword-button-action): Keyword button action using
5570 `finder-list-matches'.
5571
5572 2013-12-09 Eli Zaretskii <eliz@gnu.org>
5573
5574 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
5575 last commit.
5576
5577 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
5578
5579 * autorevert.el (auto-revert-notify-add-watch): Do not handle
5580 symlinked files.
5581
5582 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
5583
5584 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5585 after the end of a percent literal.
5586
5587 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
5588
5589 * progmodes/ruby-mode.el (ruby-forward-string): Document.
5590 Handle caret-delimited strings (Bug#16079).
5591
5592 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
5593
5594 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
5595 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
5596 `ruby-parse-partial' (Bug#16078).
5597
5598 2013-12-09 Leo Liu <sdl.web@gmail.com>
5599
5600 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
5601
5602 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
5603
5604 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
5605 (js-switch-indent-offset): New option.
5606 (js--proper-indentation): Use it. And handle the case when
5607 "default" is actually a key in an object literal.
5608 (js--same-line): New function.
5609 (js--multi-line-declaration-indentation): Use it.
5610 (js--indent-in-array-comp, js--array-comp-indentation):
5611 New functions.
5612 (js--proper-indentation): Use them, to handle array comprehension
5613 continuations.
5614
5615 2013-12-08 Leo Liu <sdl.web@gmail.com>
5616
5617 * progmodes/flymake.el (flymake-highlight-line): Re-write.
5618 (flymake-make-overlay): Remove arg MOUSE-FACE.
5619 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
5620
5621 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5622
5623 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
5624 New function.
5625 (redisplay-highlight-region-function): Use it.
5626
5627 * emulation/cua-base.el (cua--explicit-region-start)
5628 (cua--last-region-shifted): Remove.
5629 (cua--deactivate): Use deactivate-mark.
5630 (cua--pre-command-handler-1): Don't handle shift-selection.
5631 (cua--post-command-handler-1): Don't change transient-mark-mode.
5632 (cua--select-keymaps): Use region-active-p rather than
5633 cua--explicit-region-start or cua--last-region-shifted.
5634 (cua-mode): Enable shift-select-mode.
5635
5636 2013-12-08 Leo Liu <sdl.web@gmail.com>
5637
5638 * progmodes/flymake.el (flymake-popup-current-error-menu):
5639 Rename from flymake-display-err-menu-for-current-line. Reimplement.
5640 (flymake-posn-at-point-as-event, flymake-popup-menu)
5641 (flymake-make-emacs-menu): Remove. (Bug#16077)
5642
5643 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5644
5645 * rect.el (rectangle-mark-mode): Activate mark even if
5646 transient-mark-mode is off (bug#16066).
5647 (rectangle--highlight-for-redisplay): Fix boundary condition when point
5648 is > mark and at bolp.
5649
5650 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
5651 (region-extract-function): Use it.
5652 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
5653 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
5654 Delete functions.
5655 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
5656 kill-ring-save, kill-region, delete-char, delete-forward-char.
5657 Ignore self-insert-iso.
5658
5659 * emulation/cua-gmrk.el (cua--init-global-mark):
5660 Ignore `self-insert-iso'.
5661
5662 * emulation/cua-base.el (cua--prefix-copy-handler)
5663 (cua--prefix-cut-handler): Rely on region-extract-function rather than
5664 checking cua--rectangle.
5665 (cua-delete-region): Use region-extract-function.
5666 (cua-replace-region): Delete function.
5667 (cua-copy-region, cua-cut-region): Obey region-extract-function.
5668 (cua--pre-command-handler-1): Don't do the delete-selection thing.
5669 (cua--self-insert-char-p): Ignore `self-insert-iso'.
5670 (cua--init-keymaps): Don't remap delete-selection commands.
5671 (cua-mode): Use delete-selection-mode instead of rolling our own
5672 (bug#16085).
5673
5674 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
5675 Obey region-extract-function.
5676
5677 Make registers and delete-selection-mode work on rectangles.
5678 * register.el (describe-register-1): Don't modify the register's value.
5679 (copy-to-register): Obey region-extract-function.
5680 * delsel.el (delete-active-region): Obey region-extract-function.
5681
5682 2013-12-08 Leo Liu <sdl.web@gmail.com>
5683
5684 * progmodes/flymake.el (flymake, flymake-error-bitmap)
5685 (flymake-warning-bitmap, flymake-fringe-indicator-position)
5686 (flymake-compilation-prevents-syntax-check)
5687 (flymake-start-syntax-check-on-newline)
5688 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
5689 (flymake-start-syntax-check-on-find-file, flymake-log-level)
5690 (flymake-xml-program, flymake-master-file-dirs)
5691 (flymake-master-file-count-limit)
5692 (flymake-allowed-file-name-masks): Relocate.
5693 (flymake-makehash, flymake-float-time)
5694 (flymake-replace-regexp-in-string, flymake-split-string)
5695 (flymake-get-temp-dir): Remove.
5696 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
5697 (flymake-current-row, flymake-selected-frame)
5698 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
5699 related functions. (Bug#16077)
5700
5701 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
5702
5703 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
5704
5705 2013-12-07 Tassilo Horn <tsdh@gnu.org>
5706
5707 * help-fns.el (describe-function-1): Use new advice-* functions
5708 rather than old ad-* functions. Fix function type description and
5709 source links for advised functions and subrs.
5710
5711 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
5712
5713 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
5714
5715 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
5716
5717 * progmodes/compile.el (compilation-start):
5718 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
5719
5720 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5721 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
5722
5723 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5724
5725 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
5726 Touch up the last change.
5727
5728 2013-12-06 Leo Liu <sdl.web@gmail.com>
5729
5730 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
5731 (inferior-octave-startup): Always use "octave> " for prompt.
5732 (octave-goto-function-definition)
5733 (octave-sync-function-file-names)
5734 (octave-find-definition-default-filename): Remove redundant backquotes.
5735
5736 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5737
5738 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
5739 syntax for `?'.
5740 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
5741 where appropriate already.
5742 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
5743 end of method names (Bug#15874).
5744
5745 2013-12-06 Juri Linkov <juri@jurta.org>
5746
5747 * isearch.el (isearch--saved-overriding-local-map):
5748 New internal variable.
5749 (isearch-mode): Set it to the initial value of
5750 `overriding-terminal-local-map'.
5751 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
5752 with `isearch--saved-overriding-local-map'. (Bug#16035)
5753
5754 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5755
5756 * progmodes/octave.el (inferior-octave-completion-table):
5757 Turn back into function, use `completion-table-with-cache'
5758 (Bug#11906). Update all references.
5759
5760 * minibuffer.el (completion-table-with-cache): New function.
5761
5762 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
5763
5764 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
5765
5766 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
5767
5768 * net/eww.el (eww-current-source): New variable to store page
5769 source.
5770 (eww-display-html, eww-mode, eww-save-history)
5771 (eww-restore-history): Use it.
5772 (eww-view-source): New command to view page source.
5773 Opportunistically uses `html-mode' to highlight the buffer.
5774 (eww-mode-map): Install it.
5775
5776 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
5777
5778 * net/dbus.el (dbus-unregister-service)
5779 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
5780 Fix docstring.
5781 (dbus-unregister-service): Skip :serial entries in
5782 `dbus-registered-objects-table'.
5783 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
5784
5785 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
5786
5787 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
5788 around keywords with extra `split-string' argument.
5789
5790 2013-12-04 Martin Rudalics <rudalics@gmx.at>
5791
5792 * windmove.el (windmove-other-window-loc): Handle navigation
5793 between windows (excluding the minibuffer window - Bug#16017).
5794
5795 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
5796
5797 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
5798 in D-Bus type syntax.
5799 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
5800 preserve unibyte strings. (Bug#16048)
5801
5802 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
5803
5804 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
5805 Call force-mode-line-update is the proper buffer (bug#16042).
5806
5807 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
5808
5809 * vc/log-edit.el (log-edit-add-new-comment): Rename to
5810 `log-edit-remember-comment', make argument optional. Adjust all
5811 callers.
5812 (log-edit-mode): Add `log-edit-remember-comment' to
5813 `kill-buffer-hook' locally.
5814 (log-edit-kill-buffer): Don't remember comment explicitly since
5815 the buffer is killed anyway.
5816
5817 2013-12-04 Juri Linkov <juri@jurta.org>
5818
5819 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
5820 add-hook and remove-hook for multi-buffer search. (Bug#16035)
5821
5822 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
5823
5824 * notifications.el (notifications-close-notification): Call the
5825 D-Bus method with ID being a `:uint32'. (Bug#16030)
5826
5827 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
5828
5829 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
5830
5831 2013-12-03 Juri Linkov <juri@jurta.org>
5832
5833 * progmodes/compile.el (compilation-start): Rename window alist
5834 entry `no-display-ok' to `allow-no-window'.
5835
5836 * simple.el (shell-command): Add window alist entry
5837 `allow-no-window' to `display-buffer'.
5838 (async-shell-command): Doc fix.
5839
5840 * window.el (display-buffer-no-window): New action function.
5841 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
5842
5843 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5844
5845 * vc/log-edit.el (log-edit-set-header): Extract from
5846 `log-edit-toggle-header'.
5847 (log-edit-extract-headers): Separate the summary, when extracted
5848 from header, from the rest of the message with an empty line.
5849
5850 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
5851 line, if present, to the Summary header.
5852
5853 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5854
5855 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
5856 in current-buffer (bug#16029).
5857
5858 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
5859
5860 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
5861 (debugger-mode-map): Bind it.
5862 (debugger--backtrace-base): New function.
5863 (debugger-eval-expression): Use it.
5864 (debugger-frame-number): Skip local vars when present.
5865 (debugger--locals-visible-p, debugger--insert-locals)
5866 (debugger--show-locals, debugger--hide-locals): New functions.
5867
5868 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
5869
5870 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
5871 "LC_ALL".
5872 (tramp-get-remote-locale): New defun.
5873 (tramp-open-connection-setup-interactive-shell): Use it.
5874
5875 2013-12-02 Leo Liu <sdl.web@gmail.com>
5876
5877 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
5878
5879 * progmodes/sh-script.el (sh-shell-process):
5880 * progmodes/octave.el (inferior-octave-process-live-p):
5881 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
5882 (gdb-inferior-io-sentinel):
5883 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
5884
5885 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5886
5887 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
5888 `save-selected-window' to `log-edit-hide-buf'. This makes
5889 `log-edit-show-files' idempotent.
5890 (log-edit-show-files): Mark the new window as dedicated.
5891
5892 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5893
5894 * vc/log-edit.el (log-edit-mode-map): Add binding for
5895 `log-edit-kill-biffer'.
5896 (log-edit-hide-buf): Add a FIXME comment.
5897 (log-edit-add-new-comment): New function, extracted from
5898 `log-edit-done'.
5899 (log-edit-done, log-edit-add-to-changelog): Use it.
5900 (log-edit-kill-buffer): New command.
5901
5902 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5903
5904 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
5905 instead of killing the buffer.
5906
5907 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5908
5909 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
5910
5911 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5912
5913 * net/eww.el (eww-form-checkbox-selected-symbol)
5914 (eww-form-checkbox-symbol): New customizable variable.
5915 (eww-form-checkbox, eww-toggle-checkbox):
5916 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
5917
5918 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
5919 (shr--get-media-pref, shr--extract-best-source): New function.
5920 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
5921 no :src tag was specified.
5922
5923 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
5924 (eww-render): Handle `eww-use-external-browser-for-content-type'.
5925 Use \\` to match beginning of string instead of ^.
5926 (eww-browse-with-external-browser): Provide optional URL parameter.
5927 (eww-render): Set `eww-current-title' back to "".
5928
5929 * net/shr.el (shr-tag-video): Display content for video if no
5930 poster is available.
5931 (shr-tag-audio): Add support for <audio> tag.
5932
5933 * net/eww.el (eww-text-input-types): New const.
5934 (eww-process-text-input): Treat input types in
5935 `eww-text-input-types' as text.
5936
5937 * net/shr.el (shr-tag-table): Fix comment typo.
5938
5939 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5940
5941 * net/eww.el (eww-follow-link): New command to avoid reloading
5942 pages when we follow #target links (bug#15243).
5943 (eww-quit): Special mode buffers shouldn't query before exiting.
5944
5945 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5946
5947 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
5948 forms.
5949
5950 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5951
5952 * net/eww.el (eww-restore-history): Update the window title after
5953 moving in the history.
5954 (eww-current-dom): New variable used to save the current DOM.
5955
5956 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
5957
5958 * vc/log-edit.el (log-edit-mode-map): Add binding for
5959 `log-edit-beginning-of-line'.
5960 (log-edit-setup-add-author): New user option.
5961 (log-edit-beginning-of-line): New command.
5962 (log-edit): Move major mode call above the contents setup so that
5963 the local variable values are already applied.
5964 (log-edit): Only insert "Author: " when
5965 `log-edit-setup-add-author' is non-nil.
5966 (log-edit): When SETUP is non-nil, position point after ": "
5967 instead of point-min.
5968
5969 2013-12-01 Glenn Morris <rgm@gnu.org>
5970
5971 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
5972
5973 2013-11-30 Eli Zaretskii <eliz@gnu.org>
5974
5975 * startup.el (fancy-splash-frame): On MS-Windows, trigger
5976 redisplay to make sure the initial frame gets a chance to become
5977 visible. (Bug#16014)
5978
5979 2013-11-30 Martin Rudalics <rudalics@gmx.at>
5980
5981 Support resizing frames and windows pixelwise.
5982 * cus-start.el (frame-resize-pixelwise)
5983 (window-resize-pixelwise): New entries.
5984 * emacs-lisp/debug.el (debug): Use window-total-height instead
5985 of window-total-size.
5986 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
5987 * help.el (describe-bindings-internal): Use help-buffer as
5988 argument for with-help-window.
5989 (temp-buffer-max-width): New option.
5990 (resize-temp-buffer-window, help-window-setup)
5991 (with-help-window): Rewrite.
5992 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
5993 dragging dividers.
5994 * window.el (frame-char-size, window-min-pixel-height)
5995 (window-safe-min-pixel-height, window-safe-min-pixel-width)
5996 (window-min-pixel-width, window-safe-min-pixel-size)
5997 (window-combination-p, window-safe-min-size)
5998 (window-resizable-p, window--size-to-pixel)
5999 (window--pixel-to-size, window--resize-apply-p): New functions.
6000 (window-safe-min-height): Fix doc-string.
6001 (window-size, window-min-size, window--min-size-1)
6002 (window-sizable, window-sizable-p, window--min-delta-1)
6003 (window-min-delta, window--max-delta-1, window-max-delta)
6004 (window--resizable, window--resizable-p, window-resizable)
6005 (window-full-height-p, window-full-width-p, window-at-side-p)
6006 (window--in-direction-2, window-in-direction)
6007 (window--resize-reset-1, window--resize-mini-window)
6008 (window-resize, window-resize-no-error)
6009 (window--resize-child-windows-normal)
6010 (window--resize-child-windows, window--resize-siblings)
6011 (window--resize-this-window, window--resize-root-window)
6012 (window--resize-root-window-vertically)
6013 (adjust-window-trailing-edge, enlarge-window, shrink-window)
6014 (maximize-window, minimize-window, delete-window)
6015 (quit-restore-window, window-split-min-size, split-window)
6016 (balance-windows-2, balance-windows)
6017 (balance-windows-area-adjust, balance-windows-area)
6018 (window--state-get-1, window-state-get, window--state-put-1)
6019 (window--state-put-2, window-state-put)
6020 (display-buffer-record-window, window--display-buffer):
6021 Make functions handle pixelwise sizing of windows.
6022 (display-buffer--action-function-custom-type)
6023 (display-buffer-fallback-action):
6024 Add display-buffer-in-previous-window.
6025 (display-buffer-use-some-window): Resize window to height it had
6026 before.
6027 (fit-window-to-buffer-horizontally): New option.
6028 (fit-frame-to-buffer): Describe new values.
6029 (fit-frame-to-buffer-bottom-margin): Replace with
6030 fit-frame-to-buffer-margins.
6031 (window--sanitize-margin): New function.
6032 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
6033 using window-text-pixel-size.
6034
6035 2013-11-30 Glenn Morris <rgm@gnu.org>
6036
6037 * emacs-lisp/bytecomp.el (byte-compile-form):
6038 Make the `interactive-only' warning like the `obsolete' one.
6039 * comint.el (comint-run):
6040 * files.el (insert-file-literally, insert-file):
6041 * replace.el (replace-string, replace-regexp):
6042 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
6043 (goto-line, insert-buffer, next-line, previous-line):
6044 Tweak `interactive-only' spec.
6045
6046 Stop keeping (most) generated cedet grammar files in the repository.
6047 * Makefile.in (semantic): New.
6048 (compile-main): Depend on semantic.
6049
6050 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6051
6052 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
6053 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
6054
6055 * uniquify.el (uniquify-buffer-name-style): Change default.
6056
6057 * loadup.el: Preload "uniquify".
6058
6059 * time.el (display-time-update): Update all mode lines (bug#15999).
6060
6061 * electric.el (electric-indent-mode): Enable by default.
6062 * loadup.el: Preload "electric".
6063
6064 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
6065
6066 * emacs-lisp/helpers.el (string-empty-p): New function.
6067 (string-blank-p): New function.
6068
6069 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
6070
6071 * imenu.el (imenu--index-alist): Add missing dot to the docstring
6072 (Bug#14029).
6073
6074 2013-11-29 Andreas Politz <politza@fh-trier.de>
6075 * imenu.el (imenu--subalist-p): Don't error on non-conses and
6076 allow non-lambda lists as functions.
6077 (imenu--in-alist): Don't recurse into non-subalists.
6078 (imenu): Don't pass function itself as an argument (Bug#14029).
6079
6080 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6081
6082 * progmodes/python.el (python-mode-map): Remove binding for ":".
6083 (python-indent-electric-colon): Remove command.
6084 (python-indent-post-self-insert-function): Integrate the previous code
6085 of python-indent-electric-colon. Make it conditional on
6086 electric-indent-mode.
6087 (python-mode): Add ?: to electric-indent-chars.
6088 Move python-indent-post-self-insert-function to the end of
6089 post-self-insert-hook.
6090
6091 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6092
6093 * doc-view.el (doc-view-goto-page): Update mode-line.
6094
6095 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
6096
6097 2013-11-27 Glenn Morris <rgm@gnu.org>
6098
6099 * international/charprop.el, international/uni-bidi.el:
6100 * international/uni-category.el, international/uni-combining.el:
6101 * international/uni-comment.el, international/uni-decimal.el:
6102 * international/uni-decomposition.el, international/uni-digit.el:
6103 * international/uni-lowercase.el, international/uni-mirrored.el:
6104 * international/uni-name.el, international/uni-numeric.el:
6105 * international/uni-old-name.el, international/uni-titlecase.el:
6106 * international/uni-uppercase.el:
6107 Remove generated files from VCS repository.
6108
6109 2013-11-27 Eli Zaretskii <eliz@gnu.org>
6110
6111 * filenotify.el (file-notify-add-watch): Don't special-case
6112 w32notify when computing the directory to watch.
6113
6114 2013-11-27 Glenn Morris <rgm@gnu.org>
6115
6116 Make bootstrap without generated uni-*.el files possible again.
6117 * loadup.el: Update command-line-args checking for unidata-gen.
6118 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
6119 * composite.el, international/characters.el:
6120 Handle unicode tables being undefined.
6121
6122 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
6123 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
6124 (compile-main): Depend on leim rule.
6125 (leim): New rule.
6126 * loadup.el: Move leim-list.el to leim/ subdirectory.
6127 * startup.el (normal-top-level): No more leim directory.
6128 * international/ja-dic-cnv.el (skkdic-convert):
6129 Disable version-control and autoloads in output files.
6130 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
6131 Disable version-control and autoloads in output files.
6132 * leim/quail: Move here from ../leim.
6133 * leim/quail/hangul.el (hangul-input-method-activate):
6134 Add autoload cookie.
6135 (generated-autoload-load-name): Set file-local value.
6136 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
6137 (generated-autoload-load-name): Set file-local value.
6138
6139 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
6140
6141 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
6142 (eww-add-bookmark): Ask confirmation when add to bookmarks.
6143 (eww-quit): Ask confirmation before quitting eww.
6144
6145 2013-11-26 Eli Zaretskii <eliz@gnu.org>
6146
6147 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
6148 reading output from Diff on MS-Windows and MS-DOS.
6149
6150 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
6151
6152 * emacs-lisp/helpers.el (string-reverse): New function.
6153
6154 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
6155
6156 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
6157 names on MS Windows, like "/[::1]:".
6158
6159 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
6160 SWITCHES.
6161
6162 2013-11-26 Glenn Morris <rgm@gnu.org>
6163
6164 * progmodes/python.el (python-indent-guess-indent-offset):
6165 Avoid corner-case error. (Bug#15975)
6166
6167 Preload leim-list.el. (Bug#4789)
6168 * loadup.el: Load leim-list.el when found.
6169 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
6170
6171 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
6172
6173 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
6174
6175 * emacs-lisp/helpers.el (string-join): New function.
6176
6177 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
6178
6179 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6180 Mark as obsolete and replace it with a symbol property.
6181 (byte-compile-form): Use new 'interactive-only property.
6182 * comint.el, files.el, replace.el, simple.el:
6183 Apply new 'interactive-only properly.
6184
6185 2013-11-25 Martin Rudalics <rudalics@gmx.at>
6186
6187 * window.el (display-buffer-at-bottom): Make sure that
6188 split-window-sensibly creates the new window on bottom
6189 (Bug#15961).
6190
6191 2013-11-23 David Kastrup <dak@gnu.org>
6192
6193 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
6194 on the conflict markers when available.
6195 (smerge--get-marker): New function.
6196 (smerge-end-re, smerge-base-re): Add subgroup.
6197
6198 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6199
6200 * frame.el (handle-focus-in, handle-focus-out): Add missing
6201 interactive spec.
6202
6203 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
6204
6205 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6206 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
6207
6208 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6209
6210 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
6211 (gomoku--last-pos): New var.
6212 (gomoku--intangible-chars): New const.
6213 (gomoku--intangible): New function.
6214 (gomoku-mode): Use it. Derive from special-mode.
6215 (gomoku-move-up): Adjust line count.
6216 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
6217 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
6218 Simplify accordingly.
6219
6220 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
6221 Remove blink-cursor code.
6222 (blink-cursor-timer-function, blink-cursor-suspend):
6223 Don't special-case GUIs.
6224 (blink-cursor-mode): Use focus-in/out-hook.
6225
6226 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
6227
6228 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
6229 work when annotation is invisible (Bug#13886).
6230
6231 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
6232
6233 * json.el (json-alist-p): Only return non-nil if the alist has
6234 simple keys (Bug#13518).
6235
6236 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
6237
6238 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
6239 when control-statement is the first statement in a buffer (Bug#15956).
6240
6241 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
6242
6243 * imenu.el (imenu-generic-skip-comments-and-strings):
6244 New option (Bug#15560).
6245 (imenu--generic-function): Use it.
6246
6247 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
6248
6249 * minibuffer.el (completion--in-region-1): Scroll the correct window.
6250 (Bug#13898)
6251
6252 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
6253
6254 * emacs-lisp/helpers.el: Add some string helpers.
6255 (string-trim-left): Removes leading whitespace.
6256 (string-trim-right): Removes trailing whitespace.
6257 (string-trim): Removes leading and trailing whitespace.
6258
6259 * subr.el (string-suffix-p): New function.
6260
6261 2013-11-23 Glenn Morris <rgm@gnu.org>
6262
6263 * progmodes/python.el (python-shell-send-file):
6264 Add option to delete file when done. (Bug#15647)
6265 (python-shell-send-string, python-shell-send-region): Use it.
6266
6267 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
6268
6269 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
6270 to set buffer-read-only to t, never to nil. (Bug#15938)
6271
6272 * textmodes/tex-mode.el (latex-noindent-environments):
6273 Add safe-local-variable property. (Bug#15936)
6274
6275 2013-11-23 Glenn Morris <rgm@gnu.org>
6276
6277 * textmodes/enriched.el (enriched-mode): Doc fix.
6278 * emacs-lisp/authors.el (authors-renamed-files-alist):
6279 Add enriched.doc -> enriched.txt.
6280
6281 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
6282
6283 2013-11-22 Leo Liu <sdl.web@gmail.com>
6284
6285 * progmodes/octave.el (inferior-octave-startup): Spit out error
6286 message.
6287
6288 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
6289
6290 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
6291 Improve docstring.
6292 Add :version.
6293 (ruby-encoding-magic-comment-style): Add :version.
6294
6295 2013-11-22 Leo Liu <sdl.web@gmail.com>
6296
6297 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
6298 (Bug#15076)
6299 (octave-help-mode): Adapt to change to help-mode-finish to use
6300 derived-mode-p on 2013-09-17.
6301 (inferior-octave-prompt): Also match octave-gui.
6302 (octave-kill-process): Don't ask twice. (Bug#10564)
6303
6304 2013-11-22 Leo Liu <sdl.web@gmail.com>
6305
6306 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
6307 (inferior-octave-startup, inferior-octave-check-process)
6308 (inferior-octave-track-window-width-change)
6309 (octave-completion-at-point, octave-eldoc-function): Use it.
6310 (octave-kill-process): Provide confirmation. (Bug#10564)
6311
6312 2013-11-21 Leo Liu <sdl.web@gmail.com>
6313
6314 * progmodes/octave.el (octave-mode, inferior-octave-mode):
6315 Fix obsolete variable comment-use-global-state.
6316
6317 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6318
6319 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
6320 Add `octave-source-file'.
6321 (octave-source-file): New function. (Bug#15935)
6322
6323 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
6324
6325 * net/eww.el (eww-local-regex): New variable.
6326 (eww): Use it to detect localhost and similar.
6327
6328 2013-11-21 Leo Liu <sdl.web@gmail.com>
6329
6330 Add completion for command `ag'.
6331 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
6332 (pcomplete/ag): New function.
6333 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
6334
6335 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6336
6337 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
6338 (bug#14646).
6339 (make-obsolete): Remove interactive spec.
6340
6341 2013-11-21 Glenn Morris <rgm@gnu.org>
6342
6343 * startup.el (command-line-1): Use path-separator with -L.
6344
6345 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
6346
6347 * emacs-lisp/package.el (describe-package-1): Add package archive
6348 to shown fields.
6349
6350 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
6351
6352 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
6353 Change default to "# encoding: %s" to differentiate it from the
6354 default Ruby encoding comment template.
6355
6356 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
6357
6358 * ses.el (ses-mode): Doc fix. (Bug#14748)
6359
6360 2013-11-20 Leo Liu <sdl.web@gmail.com>
6361
6362 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
6363
6364 2013-11-19 Dan Nicolaescu <dann@gnu.org>
6365
6366 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
6367 when rebase or bisect are in progress.
6368
6369 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
6370
6371 * filenotify.el (file-notify-add-watch): Doc fix.
6372
6373 2013-11-19 Leo Liu <sdl.web@gmail.com>
6374
6375 * obsolete/rcompile.el: Mark obsolete.
6376
6377 * progmodes/compile.el (compilation-start)
6378 (compilation-goto-locus, compilation-find-file):
6379 Pass no-display-ok and handle nil value from display-buffer.
6380 (Bug#13594)
6381
6382 * window.el (display-buffer-alist, display-buffer): Document the
6383 new parameter no-display-ok. Return either a window or nil
6384 but never a non-window value.
6385
6386 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
6387
6388 * electric.el (electric-indent-mode-map): Remove.
6389 (electric-indent-mode): Change the global-map instead (bug#15915).
6390
6391 * textmodes/text-mode.el (paragraph-indent-minor-mode):
6392 Use add-function.
6393
6394 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
6395
6396 * emacs-lisp/nadvice.el (remove-function): Align with
6397 add-function's behavior.
6398
6399 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
6400 (gdb--string-regexp): New constant.
6401 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
6402 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
6403 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
6404 submatch 1.
6405 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
6406 Adjust use accordingly.
6407 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
6408
6409 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
6410
6411 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
6412 interpolation curlies (Bug#15914).
6413
6414 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
6415
6416 * calc/calc.el (calc-context-sensitive-enter): New variable.
6417 (calc-enter): Use `calc-context-sensitive-enter'.
6418
6419 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
6420
6421 * progmodes/cfengine.el: Version bump.
6422 (cfengine-cf-promises): New defcustom to locate cf-promises.
6423 (cfengine3-vartypes): Add new "data" type.
6424 (cfengine3--current-word): New function to get current name-like
6425 word or its bounds.
6426 (cfengine3--current-function): New function to look up a CFEngine
6427 function's definition.
6428 (cfengine3-format-function-docstring): New function.
6429 (cfengine3-make-syntax-cache): New function.
6430 (cfengine3-documentation-function): New function: ElDoc glue.
6431 (cfengine3-completion-function): New function: completion glue.
6432 (cfengine3-mode): Set `compile-command',
6433 `eldoc-documentation-function', and add to
6434 `completion-at-point-functions'.
6435
6436 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
6437
6438 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6439 `tramp-current-connection'.
6440
6441 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
6442
6443 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
6444 nil/self/true/false with "end of symbol".
6445
6446 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
6447
6448 * subr.el (version-regexp-alist): Fix a typo.
6449
6450 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
6451
6452 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
6453 "en_US.utf8" and "LC_CTYPE" to "".
6454 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
6455 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
6456
6457 2013-11-15 Leo Liu <sdl.web@gmail.com>
6458
6459 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
6460
6461 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6462
6463 * progmodes/gud.el (ctl-x-map):
6464 Remove C-x SPC binding. (Bug#12342)
6465 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
6466
6467 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
6468
6469 * subr.el (version-regexp-alist):
6470 Recognize hg, svn and darcs versions as snapshot versions.
6471
6472 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
6473 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
6474 (ruby--encoding-comment-required-p): Extract from
6475 `ruby-mode-set-encoding'.
6476 (ruby-mode-set-encoding): Add the ability to always insert an
6477 utf-8 encoding comment. Fix and simplify coding comment update
6478 logic.
6479
6480 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
6481
6482 * net/tramp-gvfs.el (top): Run init code only when
6483 `tramp-gvfs-enabled' is not nil.
6484 (tramp-gvfs-enabled): Check also :system bus.
6485
6486 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6487
6488 Sync with upstream verilog-mode revision 78e66ba.
6489 * progmodes/verilog-mode.el (verilog-end-of-defun)
6490 (verilog-type-completion, verilog-get-list): Remove unused funcs.
6491 (verilog-get-end-of-defun): Remove unused argument.
6492 (verilog-comment-depth): Remove unused local `e'.
6493 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
6494 Don't pass arg to verilog-get-end-of-defun.
6495
6496 2013-11-14 Glenn Morris <rgm@gnu.org>
6497
6498 * obsolete/assoc.el (aget): Prefix dynamic variable.
6499
6500 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
6501
6502 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6503
6504 * widget.el, hfy-cmap.el: Remove bogus package version number.
6505
6506 2013-11-13 Glenn Morris <rgm@gnu.org>
6507
6508 * replace.el (replace-eval-replacement):
6509 Try to give more helpful error message. (Bug#15836)
6510
6511 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6512 (archive-7z-update): Avoid custom type mismatches.
6513
6514 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
6515
6516 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
6517
6518 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
6519 address can be empty.
6520
6521 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
6522 Accept nil SWITCHES.
6523 (tramp-gvfs-handle-write-region): Implement APPEND.
6524
6525 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
6526
6527 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
6528 binary "|" operator and closing block args delimiter.
6529 Remove FIXME comment referring to Ruby 1.8-only syntax.
6530 (ruby-smie--implicit-semi-p): Not after "|" operator.
6531 (ruby-smie--closing-pipe-p): New function.
6532 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
6533 (ruby-smie-rules): Indent after "|".
6534
6535 2013-11-12 Glenn Morris <rgm@gnu.org>
6536
6537 * ps-print.el (ps-face-attribute-list):
6538 Handle anonymous faces. (Bug#15827)
6539
6540 2013-11-12 Martin Rudalics <rudalics@gmx.at>
6541
6542 * window.el (display-buffer-other-frame): Fix doc-string.
6543 (Bug#15868)
6544
6545 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6546
6547 * subr.el (force-mode-line-update): Delete, move to buffer.c.
6548
6549 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
6550
6551 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
6552 (tramp-sh-handle-file-local-copy): Don't write a message when
6553 saving temporary files.
6554
6555 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
6556 both directories are remote.
6557 (tramp-smb-handle-directory-files): Do not return double entries.
6558 Do not expand full file names.
6559 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
6560 (tramp-smb-handle-write-region): Implement APPEND.
6561 (tramp-smb-get-stat-capability): Fix a stupid bug.
6562
6563 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6564
6565 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
6566
6567 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6568
6569 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
6570 throwing error over malformed let/let* (bug#15814).
6571
6572 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6573
6574 * iswitchb.el (iswitchb-mode): Mark obsolete.
6575
6576 2013-11-11 Glenn Morris <rgm@gnu.org>
6577
6578 * international/uni-bidi.el, international/uni-category.el:
6579 * international/uni-name.el, international/uni-numeric.el:
6580 Regenerate for Unicode 6.3.0.
6581
6582 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
6583
6584 * net/tramp.el (tramp-methods):
6585 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
6586 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
6587
6588 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
6589
6590 * progmodes/sh-script.el (sh-font-lock-keywords-var):
6591 Force highlighting text after Summary keyword in doc face for rpm.
6592
6593 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
6594
6595 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
6596 available and the word has no wildcards, append one to the grep pattern.
6597 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
6598 (ispell-complete-word): Call `ispell-lookup-words' with the value
6599 independent of `ispell-look-p'.
6600
6601 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6602
6603 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
6604 Not after "||".
6605 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
6606 their parent.
6607
6608 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6609
6610 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
6611 (ruby-font-lock-keywords): Use backquote.
6612
6613 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6614
6615 * progmodes/ruby-mode.el (ruby-smie--forward-token)
6616 (ruby-smie--backward-token): Only consider full-string matches.
6617
6618 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
6619
6620 * faces.el (describe-face): Add distant-foreground.
6621
6622 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
6623
6624 * progmodes/ruby-mode.el: Improve encoding comment handling.
6625 (ruby-encoding-magic-comment-style): New option.
6626 (ruby-custom-encoding-magic-comment-template): New option.
6627 (ruby--insert-coding-comment, ruby--detect-encoding):
6628 New functions extracted from `ruby-mode-set-encoding'.
6629 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
6630 to control the style of the auto-inserted encoding comment.
6631
6632 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6633
6634 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
6635 Use `smie-backward-sexp' with token argument.
6636
6637 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
6638
6639 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
6640 Remove instrumentation code.
6641
6642 2013-11-08 Glenn Morris <rgm@gnu.org>
6643
6644 * progmodes/autoconf.el (autoconf-mode):
6645 Tweak comment-start-skip. (Bug#15822)
6646
6647 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6648
6649 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
6650 at bobp (bug#15826).
6651 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
6652
6653 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
6654
6655 * man.el (Man-start-calling): New macro, extracted from
6656 Man-getpage-in-background.
6657 (Man-getpage-in-background): Use it.
6658 (Man-update-manpage): New command.
6659 (Man-mode-map): Bind it.
6660
6661 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6662
6663 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
6664 of "and", "or", "&&" and "||".
6665 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
6666 argument. Prohibit opening curly brace because it could only be a
6667 block opener in that position.
6668 (ruby-smie--forward-token, ruby-smie--backward-token):
6669 Separate "|" from "&" or "*" going after it. That can happen in block
6670 arguments.
6671 (ruby-smie--indent-to-stmt): New function, seeks the end of
6672 previous statement or beginning of buffer.
6673 (ruby-smie-rules): Use it.
6674 (ruby-smie-rules): Check if there's a ":" before a curly block
6675 opener candidate; if there is, it's a hash.
6676
6677 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
6678
6679 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
6680 (cl--block-wrapper): Fix last accidental change.
6681
6682 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
6683
6684 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
6685 Instrument, in order to hunt failure on hydra.
6686
6687 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6688
6689 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
6690 malformed bindings form (bug#15814).
6691
6692 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
6693
6694 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
6695 "." compared to " @ ". This incidentally fixes some indentation
6696 examples with "do".
6697 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
6698 (ruby-smie-grammar): New tokens: "and" and "or".
6699 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
6700 Exclude "and" and "or". Remove "do" in order to work around token
6701 priorities.
6702 (ruby-smie-rules): Add all infix tokens. Handle the case of
6703 beginning-of-buffer.
6704
6705 2013-11-06 Glenn Morris <rgm@gnu.org>
6706
6707 * Makefile.in (setwins_almost, setwins_for_subdirs):
6708 Avoid accidental matches.
6709
6710 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
6711
6712 * menu-bar.el (popup-menu): Use key-binding.
6713
6714 2013-11-06 Eli Zaretskii <eliz@gnu.org>
6715
6716 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
6717 menus, support also the menus produced by minor modes.
6718 (Bug#15817)
6719
6720 2013-11-06 Leo Liu <sdl.web@gmail.com>
6721
6722 * thingatpt.el (thing-at-point-looking-at): Add optional arg
6723 DISTANCE to bound the search. All uses changed. (Bug#15808)
6724
6725 2013-11-06 Glenn Morris <rgm@gnu.org>
6726
6727 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
6728 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
6729 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
6730
6731 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
6732
6733 * electric.el (electric-indent-just-newline): New command.
6734 (electric-indent-mode-map): New keymap.
6735 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
6736 Re-add :group which weren't redundant.
6737
6738 * electric.el (electric-indent-local-mode): New minor mode.
6739 (electric-indent-functions-without-reindent): New var.
6740 (electric-indent-post-self-insert-function): Use it.
6741 * emacs-lisp/gv.el (buffer-local-value): Add setter.
6742
6743 2013-11-05 Eli Zaretskii <eliz@gnu.org>
6744
6745 * international/quail.el (quail-help): Be more explicit about the
6746 meaning of the labels shown on the keys. (Bug#15800)
6747
6748 * startup.el (normal-top-level): Load the subdirs.el files before
6749 setting the locale environment. (Bug#15805)
6750
6751 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
6752
6753 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
6754 via arguments so as to get the right ones (bug#15418).
6755
6756 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
6757
6758 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
6759
6760 Fix problems found while writing a test suite.
6761
6762 * net/tramp-compat.el (tramp-compat-load): New defun.
6763 * net/tramp.el (tramp-handle-load): Use it.
6764
6765 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
6766 "(numberp ok-if-already-exists)" correctly.
6767
6768 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
6769
6770 * international/characters.el (glyphless-char-display-control):
6771 Add usage note.
6772
6773 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
6774
6775 * progmodes/python.el (python-mode):
6776 * progmodes/scheme.el (scheme-mode):
6777 * progmodes/prolog.el (prolog-mode):
6778 * progmodes/ruby-mode.el (ruby-mode):
6779 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
6780 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
6781
6782 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6783
6784 * rect.el (rectangle--highlight-for-redisplay):
6785 * emacs-lisp/smie.el (smie--next-indent-change):
6786 Use buffer-chars-modified-tick.
6787
6788 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
6789
6790 * electric.el (electric-indent-post-self-insert-function):
6791 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
6792
6793 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
6794
6795 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
6796
6797 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6798
6799 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
6800 (bug#15786).
6801
6802 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6803
6804 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
6805
6806 * progmodes/python.el: Fix up last change.
6807 (python-shell--save-temp-file): New function.
6808 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
6809 `string' comes from the current buffer.
6810 (python-shell-send-string-no-output): Remove `msg' arg.
6811 (python--use-fake-loc): New var.
6812 (python-shell-buffer-substring): Obey it. Try to compensate for the
6813 extra coding line added by python-shell--save-temp-file.
6814 (python-shell-send-region): Use python-shell--save-temp-file and
6815 python-shell-send-file directly. Add `nomain' argument.
6816 (python-shell-send-buffer): Use python-shell-send-region.
6817 (python-electric-pair-string-delimiter): New function.
6818 (python-mode): Use it.
6819
6820 2013-11-04 Eli Zaretskii <eliz@gnu.org>
6821
6822 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
6823 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
6824 environment and decoding all of the default-directory's to here
6825 from command-line.
6826 (command-line): Decode also argv[0].
6827
6828 * loadup.el: Error out if default-directory is a multibyte string
6829 when we are dumping.
6830
6831 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
6832
6833 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
6834
6835 * emacs-lisp/package.el (package-menu-mode)
6836 (package-menu--print-info, package-menu--archive-predicate):
6837 Add Archive column to package list.
6838
6839 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
6840
6841 Fix problems found while writing a test suite.
6842
6843 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
6844 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
6845 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
6846 to nil when running original file name handler. Otherwise,
6847 there are problems with constructs like "$$FOO".
6848
6849 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
6850 for `localname'.
6851
6852 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
6853
6854 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
6855
6856 * subr.el (version<, version<=, version=):
6857 Update docstrings with information for snapshot versions.
6858
6859 * helpers.el: New library for misc helper functions.
6860 (hash-table-keys): New function returning a list of hash keys.
6861 (hash-table-values): New function returning a list of hash values.
6862
6863 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
6864
6865 * progmodes/ruby-mode.el (ruby-smie--forward-token)
6866 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
6867
6868 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
6869
6870 * textmodes/fill.el (fill-single-char-nobreak-p): New function
6871 checking whether point is after a 1-letter word.
6872
6873 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6874
6875 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
6876 Don't infloop when expanding region over `multiline' syntax-type that
6877 begins a line (bug#15778).
6878
6879 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6880
6881 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
6882 Make it into a proper minor mode.
6883 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
6884 (rectangle-mark-mode-map): New keymap.
6885 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
6886
6887 2013-11-04 Glenn Morris <rgm@gnu.org>
6888
6889 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
6890
6891 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6892
6893 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
6894 (ruby-smie-rules): Use smie-rule-parent instead.
6895
6896 * emacs-lisp/smie.el (smie-rule-parent): Always call
6897 smie-indent-virtual rather than only for hanging tokens.
6898 (smie--next-indent-change): New helper command.
6899
6900 2013-11-03 Glenn Morris <rgm@gnu.org>
6901
6902 * Makefile.in (abs_srcdir): Remove.
6903 (emacs): Unset EMACSLOADPATH.
6904
6905 2013-11-02 Glenn Morris <rgm@gnu.org>
6906
6907 * Makefile.in (EMACS): Use a relative filename.
6908 (abs_top_builddir): Remove.
6909 (custom-deps, finder-data, autoloads): Use --chdir.
6910
6911 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
6912
6913 Use relative filenames in TAGS files.
6914 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
6915 (lisptagsfiles4, TAGS): Use relative file names.
6916 (TAGS-LISP): Remove.
6917 (maintainer-clean): No more TAGS-LISP file.
6918
6919 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
6920 (lisptagsfiles4): Use absolute filenames again.
6921 (TAGS, TAGS-LISP): Not everything needs to run in one line.
6922 Remove all *loaddefs files, not just the first. Remove esh-groups.
6923 (maintainer-clean): Delete TAGS, TAGS-LISP.
6924
6925 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6926
6927 * emacs-lisp/package.el (package-version-join):
6928 Recognize snapshot versions.
6929
6930 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6931
6932 * subr.el (version-regexp-alist): Add support for snapshot versions.
6933
6934 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
6935
6936 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
6937 New function, replacement for `smie-rule-parent' for when we want to
6938 skip over our direct parent if it's an assignment token..
6939 (ruby-smie-rules): Use it.
6940
6941 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
6942
6943 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
6944 unconditionally. Remove now unnecessary forward declarations.
6945 Remove XEmacs-specific setup.
6946 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
6947 (ruby-font-lock-syntactic-keywords)
6948 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
6949 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
6950 (ruby-here-doc-end-syntax): Remove.
6951 (ruby-mode): Don't check whether `syntax-propertize-rules' is
6952 defined as function.
6953
6954 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6955
6956 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
6957
6958 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
6959
6960 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
6961 table and abbrev table, `define-derived-mode' does that for us
6962 anyway.
6963
6964 2013-11-01 Glenn Morris <rgm@gnu.org>
6965
6966 * Makefile.in: Remove manual mh-e dependencies (writing .elc
6967 files is atomic for some time, so no parallel compilation issues).
6968
6969 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
6970
6971 * faces.el (face-x-resources): Add :distant-foreground.
6972 (region): Use :distant-foreground for gtk and ns.
6973
6974 2013-11-01 Tassilo Horn <tsdh@gnu.org>
6975
6976 Allow multiple bibliographies when BibLaTeX is used rather than
6977 BibTeX.
6978 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
6979 (reftex-locate-bibliography-files): Us it.
6980
6981 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
6982
6983 * image.el (image-type-header-regexps): Fix the 'pbm' part to
6984 allow comments in pbm files.
6985
6986 * term/w32-win.el (dynamic-library-alist): Support newer versions
6987 of libjpeg starting with v7: look only for the DLL from the
6988 version against which Emacs was built.
6989 Support versions of libpng beyond 1.4.x.
6990 Support libtiff v4.x.
6991
6992 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
6993
6994 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
6995 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
6996 Add property :safe.
6997 (ruby-deep-arglist): Add property :type.
6998
6999 2013-10-31 Glenn Morris <rgm@gnu.org>
7000
7001 * Makefile.in (custom-deps, finder-data): No need to setq the target
7002 variables, we are in the right directory and the defaults work fine.
7003
7004 2013-10-30 Glenn Morris <rgm@gnu.org>
7005
7006 * Makefile.in (autoloads): Do not use abs_lisp.
7007
7008 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7009 `newline' does not respect `standard-output', so use `princ'.
7010
7011 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
7012
7013 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
7014 * buff-menu.el (Buffer-menu--unmark): New function.
7015 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
7016
7017 2013-10-30 Glenn Morris <rgm@gnu.org>
7018
7019 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
7020
7021 * emacs-lisp/package.el (lm-homepage): Declare.
7022
7023 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
7024 Fix doc typos.
7025
7026 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
7027
7028 * Makefile.in (finder-data, autoloads, update-subdirs)
7029 (compile-main, compile-clean, compile-always, bootstrap-clean):
7030 Check return value of cd.
7031 (compile-calc): Remove.
7032
7033 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7034
7035 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
7036
7037 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
7038 (byte-compile-and-folded): New function.
7039 (=, <, >, <=, >=): Use it.
7040
7041 * dos-w32.el (minibuffer-history-case-insensitive-variables)
7042 (path-separator, null-device, buffer-file-coding-system)
7043 (lpr-headers-switches): Check system-type before modifying them.
7044 (find-buffer-file-type-coding-system): Mark obsolete.
7045 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
7046 find-file-not-found-set-buffer-file-coding-system.
7047 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
7048 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
7049 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
7050 (w32-direct-print-region-helper, w32-direct-print-region-function)
7051 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
7052 * startup.el (normal-top-level-add-subdirs-to-load-path):
7053 * ps-print.el (ps-print-region-function):
7054 * lpr.el (print-region-function): Use new name.
7055
7056 * subr.el (custom-declare-variable-early): Remove function.
7057 (custom-declare-variable-list): Remove var.
7058 (error, user-error): Remove `while' loop.
7059 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
7060 (user-emacs-directory-warning, locate-user-emacs-file):
7061 Move to files.el.
7062 * simple.el (read-quoted-char-radix, read-quoted-char):
7063 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
7064 Move from subr.el.
7065 * custom.el (custom-declare-variable-list): Don't process
7066 custom-declare-variable-list.
7067
7068 * progmodes/python.el (python-shell-get-buffer): New function.
7069 (python-shell-get-process): Use it.
7070 (python-shell-send-string): Always use utf-8 and add a cookie to tell
7071 Python which encoding was used. Don't split-string since we only care
7072 about the first line. Return the temp-file, if applicable.
7073 (python-shell-send-region): Tell compile.el how to turn locations in
7074 the temp-file into locations in the source buffer.
7075
7076 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
7077
7078 * subr.el (undefined): Add missing behavior from the C code for
7079 unbound keys.
7080
7081 * rect.el: Use lexical-binding. Add new rectangular region support.
7082 (rectangle-mark): New command.
7083 (rectangle--region): New var.
7084 (deactivate-mark-hook): Reset rectangle--region.
7085 (rectangle--extract-region, rectangle--insert-for-yank)
7086 (rectangle--highlight-for-redisplay)
7087 (rectangle--unhighlight-for-redisplay): New functions.
7088 (region-extract-function, redisplay-unhighlight-region-function)
7089 (redisplay-highlight-region-function): Use them to handle
7090 rectangular region.
7091 * simple.el (region-extract-function): New var.
7092 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
7093 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
7094 (kill-region): Replace obsolete `yank-handler' arg with `region'.
7095 (copy-region-as-kill, kill-ring-save): Add `region' argument.
7096 (redisplay-unhighlight-region-function)
7097 (redisplay-highlight-region-function): New vars.
7098 (redisplay--update-region-highlight): New function.
7099 (pre-redisplay-function): Use it.
7100 (exchange-point-and-mark): Don't deactivate the mark before
7101 reactivate-it anyway.
7102 * comint.el (comint-kill-region): Remove yank-handler argument.
7103 * delsel.el (delete-backward-char, backward-delete-char-untabify)
7104 (delete-char): Remove property, since it's now part of their
7105 default behavior.
7106 (self-insert-iso): Remove property since this command doesn't exist.
7107
7108 * emacs-lisp/package.el (package--download-one-archive)
7109 (describe-package-1): Don't query the user about final newline.
7110
7111 2013-10-29 Daniel Colascione <dancol@dancol.org>
7112
7113 * net/tramp.el (tramp-methods): Document new functionality.
7114 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
7115 tramp-hostname-checker if method provides one instead of scanning
7116 argument list for "%h" to decide hostname acceptability.
7117
7118 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
7119
7120 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7121 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7122 Handle COPY-CONTENTS. (Bug#15737)
7123
7124 2013-10-28 Daiki Ueno <ueno@gnu.org>
7125
7126 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7127 Document that this option has no effect with GnuPG 2.0 (bug#15552).
7128
7129 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
7130
7131 * image.el (defimage, image-load-path): Doc fixes.
7132
7133 2013-10-27 Alan Mackenzie <acm@muc.de>
7134
7135 Indent statements in macros following "##" correctly.
7136 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7137 Modify the "#" arm of a cond form to handle "#" and "##" operators.
7138
7139 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7140
7141 * linum.el (linum-update-window): Fix boundary test (bug#13446).
7142
7143 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
7144
7145 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
7146 after `=' is probably a new expression.
7147
7148 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7149
7150 * man.el (man-imenu-title): New option.
7151 (Man-mode-map): Add menu. (Bug#15722)
7152 (Man-mode): Add imenu to menu.
7153
7154 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
7155
7156 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
7157 specific in what the first arg can be: a non-keyword word,
7158 string/regexp/percent literal opener, opening paren, or unary
7159 operator followed directly by word.
7160
7161 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7162
7163 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
7164 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
7165 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
7166 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
7167 Remove vars, they do not apply any more.
7168 (prolog-mode-abbrev-table): Remove redundant declaration.
7169 (prolog-upper-case-string, prolog-lower-case-string): Remove.
7170 (prolog-use-smie): Remove.
7171 (prolog-smie-rules): Add indentation rule for the if-then-else layout
7172 supported by prolog-electric-if-then-else-flag.
7173 (prolog-mode-variables, prolog-menu): Use setq-local.
7174 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
7175 Remove binding to `Backspace' since this key doesn't exist anyway.
7176 Remove bindings for electric self-inserting keys.
7177 (prog-mode): Assume it's defined.
7178 (prolog-post-self-insert): New function.
7179 (prolog-mode): Use it.
7180 (prolog-indent-line, prolog-indent-level)
7181 (prolog-find-indent-of-matching-paren)
7182 (prolog-indentation-level-of-line, prolog-goto-comment-column)
7183 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
7184 (prolog-goto-next-paren, prolog-in-string-or-comment)
7185 (prolog-tokenize, prolog-inside-mline-comment)
7186 (prolog-find-start-of-mline-comment): Remove functions.
7187 (prolog-find-unmatched-paren, prolog-clause-end)
7188 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
7189 (prolog-electric--if-then-else): Rename from
7190 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
7191 (prolog-tokenize-searchkey): Remove const.
7192 (prolog-clause-info): Use forward-sexp.
7193 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
7194 (prolog-electric-if-then-else): Remove commands.
7195 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
7196 for use in post-self-insert-hook.
7197 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
7198 for use in post-self-insert-hook.
7199 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
7200 for use in post-self-insert-hook.
7201 (prolog-electric--underscore): Rename from prolog-electric--underscore;
7202 adapt it for use in post-self-insert-hook.
7203
7204 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
7205
7206 * emacs-lisp/ert.el (ert-run-tests-interactively):
7207 Use `completing-read'. (Bug#9756)
7208
7209 2013-10-25 Eli Zaretskii <eliz@gnu.org>
7210
7211 * simple.el (line-move): Call line-move-1 instead of
7212 line-move-visual when the current window hscroll is zero, but
7213 temporary-goal-column indicates we will need to hscroll as result
7214 of the movement. (Bug#15712)
7215
7216 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
7217
7218 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
7219 capitalization. Use :visible instead of :active.
7220 Fix `ruby-indent-exp' reference. Add menu items for the generic
7221 commands that are used with SMIE.
7222 (ruby-do-end-to-brace): Insert space after `{'.
7223
7224 2013-10-25 John Anthony <john@jo.hnanthony.com>
7225
7226 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
7227
7228 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
7229
7230 2013-10-25 Glenn Morris <rgm@gnu.org>
7231
7232 * vc/vc.el (vc-print-log): Don't use a working revision unless
7233 one was explicitly specified. (Bug#15322)
7234
7235 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7236
7237 * subr.el (add-to-list): Preserve return value in compiler-macro
7238 (bug#15692).
7239
7240 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7241
7242 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
7243 result. Ask user to retry using '-all' flag. (Bug#15701)
7244
7245 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7246
7247 * emacs-lisp/smie.el: New smie-config system.
7248 (smie-config): New defcustom.
7249 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
7250 (smie-config-guess, smie-config-save): New commands.
7251 (smie-config--mode-local, smie-config--buffer-local)
7252 (smie-config--trace, smie-config--modefuns): New vars.
7253 (smie-config--advice, smie-config--mode-hook)
7254 (smie-config--setter, smie-config-local, smie-config--get-trace)
7255 (smie-config--guess-value, smie-config--guess): New functions.
7256 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
7257 text properties. Treat "string fence" syntax like string syntax.
7258
7259 * progmodes/sh-script.el (sh-use-smie): Change default.
7260 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
7261 (sh-var-value): Simplify by CSE.
7262 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
7263 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
7264 is used.
7265 (sh-guess-basic-offset): Use cl-incf.
7266 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
7267
7268 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
7269
7270 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
7271 (bug#15699).
7272
7273 2013-10-24 Glenn Morris <rgm@gnu.org>
7274
7275 * Makefile.in (abs_top_srcdir): Remove.
7276 (update-subdirs): Use relative path to update-subdirs.
7277
7278 2013-10-24 Eli Zaretskii <eliz@gnu.org>
7279
7280 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
7281 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
7282 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
7283 Call unmsys--file-name before expand-file-name, not after it.
7284
7285 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
7286
7287 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
7288 (ert-test-skipped): New error.
7289 (ert-skip, ert-stats-skipped): New defuns.
7290 (ert--skip-unless): New macro.
7291 (ert-test-skipped): New struct.
7292 (ert--run-test-debugger, ert-test-result-type-p)
7293 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
7294 (ert--stats-set-test-and-result, ert-char-for-test-result)
7295 (ert-string-for-test-result, ert-run-tests-batch)
7296 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
7297 Handle skipped tests. (Bug#9803)
7298
7299 2013-10-24 Glenn Morris <rgm@gnu.org>
7300
7301 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
7302
7303 * Makefile.in (abs_top_srcdir): New, set by configure.
7304 (update-subdirs): Correct build-aux location.
7305
7306 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
7307
7308 * vc/vc.el (vc-print-root-log): Always set `default-directory'
7309 value, whether we could auto-deduce `backend', or not.
7310
7311 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
7312 with parameters" example. Simplify the "is it block or is it
7313 hash" check, but also make it more thorough.
7314
7315 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
7316
7317 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
7318
7319 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
7320
7321 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
7322 { if it is hanging.
7323
7324 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
7325 :before ";".
7326
7327 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
7328
7329 * progmodes/compile.el (compilation-directory-matcher)
7330 (compilation-page-delimiter):
7331 Support GNU Make-4.0 directory quoting. (Bug#15678)
7332
7333 2013-10-23 Leo Liu <sdl.web@gmail.com>
7334
7335 * ido.el (ido-tidy): Handle read-only text.
7336
7337 2013-10-23 Glenn Morris <rgm@gnu.org>
7338
7339 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
7340 (emacs, compile, compile-always):
7341 Quote entities that might contain whitespace.
7342 (custom-deps, finder-data, autoloads): Use abs_lisp.
7343 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7344 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7345 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
7346
7347 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
7348
7349 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
7350 Use `following-char'.
7351
7352 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
7353
7354 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
7355 * progmodes/ruby-mode.el (ruby-smie-rules):
7356 Remove corresponding workaround. Fix indentation rule of ";" so it
7357 also applies when ";" is the parent.
7358
7359 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
7360
7361 * frame.el (display-screens, display-pixel-height)
7362 (display-pixel-width, display-mm-width, display-backing-store)
7363 (display-save-under, display-planes, display-color-cells)
7364 (display-visual-class, display-monitor-attributes-list):
7365 Mention the optional ‘display’ argument in doc strings.
7366
7367 2013-10-22 Michael Gauland <mikelygee@amuri.net>
7368
7369 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
7370 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
7371
7372 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
7373
7374 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
7375 TODO. Add "." after " @ ".
7376 (ruby-smie--at-dot-call): New function. Checks if point at method
7377 call with explicit target.
7378 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
7379 to the method name tokens when it precedes them.
7380 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
7381 (ruby-smie-rules): Add rule for indentation before and after "."
7382 token.
7383
7384 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7385
7386 * textmodes/remember.el (remember-diary-extract-entries):
7387 Avoid add-to-list.
7388
7389 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
7390 an instruction.
7391
7392 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
7393
7394 * progmodes/ruby-mode.el (ruby-smie-grammar):
7395 Add (almost) all infix operators.
7396 (ruby-smie--implicit-semi-p): Add new operator chars.
7397
7398 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
7399 `smie-down-list'.
7400 (ruby-smie--args-separator-p): Check that there's no newline
7401 between method call and its arguments.
7402
7403 2013-10-20 Alan Mackenzie <acm@muc.de>
7404
7405 Allow comma separated lists after Java "implements".
7406
7407 * progmodes/cc-engine.el (c-backward-over-enum-header):
7408 Parse commas.
7409 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
7410 from a "disallowed" list in enum fontification.
7411
7412 2013-10-20 Johan Bockgård <bojohan@gnu.org>
7413
7414 * startup.el (default-frame-background-mode): Remove unused defvar.
7415
7416 * progmodes/verilog-mode.el (verilog-mode): Don't set
7417 comment-indent-function globally.
7418
7419 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
7420
7421 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
7422 Move Info menu item creation to ns-win.el.
7423
7424 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
7425 in menu bar.
7426
7427 * menu-bar.el: Move GNUstep specific menus...
7428
7429 * term/ns-win.el (ns-initialize-window-system): ... to here.
7430
7431 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7432
7433 * simple.el (newline): Only run post-self-insert-hook when
7434 called interactively.
7435
7436 2013-10-19 Johan Bockgård <bojohan@gnu.org>
7437
7438 * icomplete.el (icomplete-with-completion-tables): Add :version.
7439
7440 2013-10-19 Alan Mackenzie <acm@muc.de>
7441
7442 Fix fontification bugs with constructors and const.
7443
7444 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
7445 CASE 2) Remove the check for the absence of a suffix construct
7446 after a function declaration with only types (no identifiers) in
7447 the parentheses. Also, accept a function declaration with just a
7448 type inside the parentheses, if this type can be positively
7449 recognised as such, or if a prefix keyword like "explicit" nails
7450 down the construct as a declaration.
7451
7452 2013-10-19 Eli Zaretskii <eliz@gnu.org>
7453
7454 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
7455 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
7456 the problem whereby selecting a menu item that leads to a
7457 minibuffer prompt moves the cursor out of the minibuffer window,
7458 making it hard to type at the prompt. Suggested by Stefan Monnier
7459 <monnier@iro.umontreal.ca>.
7460
7461 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
7462
7463 * menu-bar.el: Don't make Services menu.
7464
7465 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7466
7467 * ffap.el: Handle "/usr/include/c++/<version>" directories.
7468 (ffap-alist): Use ffap-c++-mode for c++-mode.
7469 (ffap-c++-path): New variable.
7470 (ffap-c++-mode): New function.
7471
7472 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
7473
7474 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
7475
7476 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
7477
7478 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
7479 introduced on 2013-09-08, which results in an infinite loop
7480 requesting a password.
7481
7482 2013-10-18 Glenn Morris <rgm@gnu.org>
7483
7484 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
7485
7486 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
7487
7488 Sync with upstream verilog-mode revision 1a6ecec7.
7489 * progmodes/verilog-mode.el (verilog-mode-version): Update.
7490 (verilog-mode-release-date): Remove.
7491 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
7492 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
7493 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
7494 (verilog-auto-tieoff-ignore-regexp)
7495 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
7496 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
7497 (verilog-signals-with, verilog-dir-cache-preserving)
7498 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
7499 Doc fixes.
7500 (verilog-case-fold): New option, to control case folding in
7501 regexp searches, bug597.
7502 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
7503 (verilog-string-match-fold, verilog-in-paren-count)
7504 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
7505 (verilog-at-close-struct-p): New functions.
7506 (verilog-beg-block-re-ordered, verilog-extended-case-re)
7507 (verilog-forward-sexp, verilog-set-auto-endcomments)
7508 (verilog-leap-to-case-head): Handle "unique0" case.
7509 (verilog-in-constraint-re): New constant.
7510 (verilog-keywords, verilog-type-font-keywords):
7511 Add some SystemVerilog 1800-2012 keywords.
7512 (verilog-label-be): Remove unimplemented argument, bug669.
7513 (verilog-batch-execute-func): When batch expanding clear
7514 create-lockfiles to prevent spurious user locks when a file ends
7515 up not changing.
7516 (verilog-calculate-indent, verilog-calc-1)
7517 (verilog-at-close-constraint-p, verilog-at-constraint-p)
7518 (verilog-do-indent): Fix indentation of nested constraints
7519 and structures.
7520 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
7521 (verilog-auto-inst-param): Use verilog-string-match-fold.
7522 (verilog-read-inst-module-matcher):
7523 Fix AUTOINST on gate primitives with #1.
7524 (verilog-read-decls): Fix double-declaring user-defined typed signals.
7525 Reads all user-defined typed variables.
7526 (verilog-read-defines): Fix reading definitions inside comments, bug647.
7527 (verilog-signals-matching-regexp)
7528 (verilog-signals-not-matching-regexp, verilog-auto):
7529 Respect verilog-case-fold.
7530 (verilog-diff-report): Fix line count.
7531 (verilog-auto-assign-modport): Remove unused local `modi'.
7532 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
7533 better handle multidimensional arrays.
7534 Fix packed array ports misadding bit index in AUTOINST, bug637.
7535 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
7536 to not double-declare existing outputs and inputs, respectively.
7537 (verilog-template-map): Bind U to verilog-sk-uvm-component.
7538 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
7539 (verilog-sk-uvm-component): New skeleton.
7540 (verilog-submit-bug-report): Add verilog-case-fold,
7541 remove verilog-mode-release-date.
7542
7543 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
7544
7545 * subr.el (sit-for): Call (input-pending-p t) so as to behave
7546 as before.
7547
7548 2013-10-18 Reuben Thomas <rrt@sc3d.org>
7549
7550 * textmodes/remember.el (remember): Set buffer-offer-save in
7551 remember buffers (bug#13566).
7552
7553 2013-10-18 Daniel Colascione <dancol@dancol.org>
7554
7555 When evaluating forms in ielm, direct standard output to ielm
7556 buffer. Add new ielm-return-for-effect command. Remove trailing
7557 whitespace throughout.
7558
7559 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
7560 (ielm-return-for-effect): New command.
7561 (ielm-send-input): Accept optional `for-effect' parameter.
7562 (ielm-eval-input): Accept optional `for-effect' parameter.
7563 Bind `standard-output' to stream we create using
7564 `ielm-standard-output-impl'. Suppress printing result when
7565 `for-effect'.
7566 (ielm-standard-output-impl): New function.
7567 (inferior-emacs-lisp-mode): Explain new features in documentation.
7568
7569 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
7570
7571 Code cleanup.
7572
7573 * net/tramp.el (tramp-debug-message): Do not check for connection
7574 buffer.
7575 (tramp-message): Use "vector" connection property.
7576
7577 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
7578 (tramp-equal-remote, tramp-eshell-directory-change)
7579 * net/tramp-adb.el (tramp-adb-handle-copy-file)
7580 (tramp-adb-handle-rename-file)
7581 * net/tramp-cmds.el (tramp-list-remote-buffers)
7582 (tramp-cleanup-connection, tramp-cleanup-this-connection)
7583 * net/tramp-compat.el (tramp-compat-process-running-p)
7584 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
7585 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
7586 (tramp-gvfs-handle-rename-file)
7587 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
7588 (tramp-set-file-uid-gid)
7589 * net/tramp-smb.el (tramp-smb-handle-copy-file)
7590 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
7591 of `file-remote-p'.
7592
7593 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
7594 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
7595 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
7596 (tramp-gw-open-network-stream): Suppress unrelated traces.
7597
7598 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
7599 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
7600 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7601 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
7602 connection property.
7603
7604 * net/tramp-cache.el (top): Suppress traces when reading
7605 persistency file.
7606
7607 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
7608 Refactor common code. Improve debug message.
7609 (tramp-maybe-open-connection)
7610 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
7611 connection buffer too early.
7612
7613 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
7614 from `tramp-smb-actions-with-acl'.
7615 (tramp-smb-actions-set-acl): New defconst.
7616 (tramp-smb-handle-copy-directory)
7617 (tramp-smb-action-get-acl): New defun, renamed from
7618 `tramp-smb-action-with-acl'.
7619 (tramp-smb-action-set-acl): New defun.
7620 (tramp-smb-handle-set-file-acl): Rewrite.
7621
7622 2013-10-17 Glenn Morris <rgm@gnu.org>
7623
7624 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
7625
7626 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7627
7628 * skeleton.el (skeleton-newline): Remove.
7629 (skeleton-internal-1): Use (insert "\n") instead.
7630
7631 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
7632 let-bindings.
7633
7634 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
7635 forward-sexp-function while we redo its job (bug#15613).
7636
7637 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
7638
7639 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
7640 represented by lists.
7641
7642 2013-10-16 Glenn Morris <rgm@gnu.org>
7643
7644 * tmm.el (tmm--history): New dynamic variable.
7645 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
7646
7647 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
7648
7649 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
7650 (tramp-smb-errors): Add error messages.
7651 (tramp-smb-actions-with-acl): New defconst.
7652 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
7653 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
7654 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
7655 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
7656 (tramp-smb-get-stat-capability): Fix tests.
7657
7658 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
7659
7660 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
7661 (bug#15580).
7662
7663 2013-10-16 Glenn Morris <rgm@gnu.org>
7664
7665 * ansi-color.el (ansi-color-drop-regexp):
7666 Add 1J, 1K, 2K. (Bug#15617)
7667
7668 * files.el (hack-local-variables--warned-lexical): New.
7669 (hack-local-variables):
7670 Warn about misplaced lexical-binding. (Bug#15616)
7671
7672 * net/eww.el (eww-render): Always set eww-current-url,
7673 and update header line. (Bug#15622)
7674 (eww-display-html): ... Rather than just doing it here.
7675
7676 2013-10-15 Eli Zaretskii <eliz@gnu.org>
7677
7678 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
7679 menu navigations commands.
7680
7681 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
7682
7683 * progmodes/subword.el (subword-capitalize): Be careful when
7684 the search for [[:alpha:]] fails (bug#15580).
7685
7686 2013-10-14 Eli Zaretskii <eliz@gnu.org>
7687
7688 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
7689 to commands that scroll the menu.
7690
7691 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
7692
7693 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
7694 Handle methods ending with `?' and `!'.
7695
7696 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
7697
7698 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
7699 `japanese-cp932' to `cp932' to fix the problem where saving a
7700 source file written in Shift_JIS twice would end up having
7701 `coding: japanese-cp932' which Ruby could not recognize.
7702 (ruby-mode-set-encoding): Add support for encodings mapped to nil
7703 in `ruby-encoding-map'.
7704 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
7705 doesn't need to be explicitly declared in magic comment.
7706 (ruby-encoding-map): Add type declaration for better customize UI.
7707
7708 2013-10-13 Glenn Morris <rgm@gnu.org>
7709
7710 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
7711 Occur buffers are read-only. http://bugs.debian.org/720775
7712
7713 * emacs-lisp/authors.el (authors-fixed-entries):
7714 Comment out old alpha stuff.
7715
7716 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
7717
7718 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
7719 to `after-save-hook' instead of `before-save-hook'.
7720 (ruby-mode-set-encoding): Use the value of coding system used to
7721 write the file. Call `basic-save-buffer-1' after modifying the
7722 buffer.
7723
7724 2013-10-13 Alan Mackenzie <acm@muc.de>
7725
7726 Fix indentation/fontification of Java enum with
7727 "implements"/generic.
7728
7729 * progmodes/cc-engine.el (c-backward-over-enum-header):
7730 Extracted from the three other places and enhanced to handle generics.
7731 (c-inside-bracelist-p): Uses new function above.
7732 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
7733 function above.
7734 (c-font-lock-enum-tail): Uses new function above.
7735
7736 2013-10-13 Kenichi Handa <handa@gnu.org>
7737
7738 * international/mule-cmds.el (select-safe-coding-system): Remove a
7739 superfluous condition in chekcing whether a coding system is safe
7740 or not.
7741
7742 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
7743
7744 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
7745
7746 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
7747
7748 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
7749
7750 2013-10-13 Glenn Morris <rgm@gnu.org>
7751
7752 * menu-bar.el (menu-bar-update-buffers):
7753 Unify Buffers menu prompt string. (Bug#15576)
7754
7755 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
7756
7757 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
7758 Add some entries.
7759 (authors-fixed-entries): Use accented form of name.
7760
7761 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
7762
7763 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
7764 method calls (bug#15594).
7765 (ruby-smie--args-separator-p): New function.
7766 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
7767 recognize paren-free method calls.
7768
7769 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
7770 internals of universal-argument.
7771
7772 2013-10-11 Eli Zaretskii <eliz@gnu.org>
7773
7774 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
7775 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
7776 dropped menu on second mouse click on the menu bar.
7777
7778 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7779
7780 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
7781 (explicit-shell-file-name): Declare.
7782 (sh--vars-before-point, sh--cmd-completion-table): New functions.
7783 (sh-completion-at-point-function): New function.
7784 (sh-mode): Use it.
7785 (sh-smie--keyword-p): Remove unused argument.
7786 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
7787 vars.
7788 (sh-set-shell): Always setup SMIE, even if we use the
7789 old indentation code.
7790
7791 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
7792
7793 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
7794 cases of ? and =.
7795 (ruby-smie-rules): Simplify the "do" rule. The cases when the
7796 predicate would return nil are almost non-existent.
7797 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
7798
7799 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
7800 cache also after commands that modify the buffer but don't move
7801 point.
7802
7803 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7804
7805 * env.el (substitute-env-in-file-name): New function.
7806 (substitute-env-vars): Extend the meaning of the optional arg.
7807
7808 2013-10-10 Eli Zaretskii <eliz@gnu.org>
7809
7810 * term/w32-win.el (dynamic-library-alist): Define separate lists
7811 of GIF DLLs for versions before and after 5.0.0 of giflib.
7812 (Bug#15531)
7813
7814 2013-10-10 João Távora <joaotavora@gmail.com>
7815
7816 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
7817 not locked, use last revision and current source as
7818 defaults. (Bug#15569)
7819
7820 2013-10-10 Masatake YAMATO <yamato@redhat.com>
7821
7822 * menu-bar.el (menu-bar-open): Don't use popup-menu if
7823 menu-bar is hidden.
7824
7825 2013-10-10 Martin Rudalics <rudalics@gmx.at>
7826
7827 * window.el (pop-to-buffer-same-window): Fix doc-string.
7828 (Bug#15492)
7829
7830 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7831
7832 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
7833
7834 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
7835
7836 * calendar/icalendar.el (icalendar-import-file):
7837 Fix interactive spec. (Bug#15482)
7838
7839 2013-10-10 Glenn Morris <rgm@gnu.org>
7840
7841 * desktop.el (desktop-save): Default to saving in .emacs.d,
7842 since PWD is no longer in desktop-path by default. (Bug#15319)
7843
7844 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
7845 now that text mode has a menu with the same entry.
7846 (menu-bar-text-mode-auto-fill): Remove now unused func.
7847 * textmodes/text-mode.el (text-mode-map):
7848 Use auto-fill help text from menu-bar.el.
7849
7850 2013-10-10 John Anthony <john@jo.hnanthony.com>
7851
7852 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
7853
7854 2013-10-09 Juri Linkov <juri@jurta.org>
7855
7856 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
7857 instead of this-command-keys. Add universal-argument-more and
7858 universal-argument-minus to the list of prefix commands. (Bug#15568)
7859
7860 2013-10-09 Glenn Morris <rgm@gnu.org>
7861
7862 * vc/vc-svn.el (vc-svn-create-repo):
7863 Expand paths in file://... url. (Bug#15446)
7864
7865 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
7866 Add some entries.
7867 (authors): Remove unused local variables.
7868
7869 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
7870
7871 * profiler.el: Create a more coherent calltree from partial backtraces.
7872 (profiler-format): Hide the tail with `invisible' so that C-s can still
7873 find the hidden elements.
7874 (profiler-calltree-depth): Don't recurse so enthusiastically.
7875 (profiler-function-equal): New hash-table-test.
7876 (profiler-calltree-build-unified): New function.
7877 (profiler-calltree-build): Use it.
7878 (profiler-report-make-name-part): Indent the calltree less.
7879 (profiler-report-mode): Add visibility specs for profiler-format.
7880 (profiler-report-expand-entry, profiler-report-toggle-entry):
7881 Expand the whole subtree when provided with a prefix arg.
7882
7883 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
7884
7885 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
7886 iuwu-mod token.
7887 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
7888 hanging iuwu-mod token.
7889 (ruby-smie--forward-token): Do not include a dot after a token in
7890 that token.
7891 (ruby-smie--backward-token): Likewise.
7892
7893 2013-10-08 Juri Linkov <juri@jurta.org>
7894
7895 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
7896 to isearch-other-control-char.
7897 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
7898 and isearch-post-command-hook to post-command-hook.
7899 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
7900 and isearch-post-command-hook from post-command-hook.
7901 (isearch-unread-key-sequence)
7902 (isearch-reread-key-sequence-naturally)
7903 (isearch-lookup-scroll-key, isearch-other-control-char)
7904 (isearch-other-meta-char): Remove functions.
7905 (isearch-pre-command-hook, isearch-post-command-hook):
7906 New functions based on isearch-other-meta-char rewritten
7907 relying on the new behavior of overriding-terminal-local-map
7908 that does not replace the local keymaps any more. (Bug#15200)
7909
7910 2013-10-08 Eli Zaretskii <eliz@gnu.org>
7911
7912 Support menus on text-mode terminals.
7913 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
7914 functionality.
7915
7916 * tooltip.el (tooltip-mode): Don't error out on TTYs.
7917
7918 * menu-bar.el (popup-menu, popup-menu-normalize-position):
7919 Move here from mouse.el.
7920 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
7921 and arrow keys.
7922 (tty-menu-navigation-map): New map for TTY menu navigation.
7923
7924 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
7925
7926 * frame.el (display-mouse-p): Report text-mode mouse as available
7927 on w32.
7928 (display-popup-menus-p): Report availability if mouse is
7929 available; don't condition on window-system.
7930
7931 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
7932 (tty-menu-selected-face): New faces.
7933
7934 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
7935
7936 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
7937 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
7938 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
7939 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
7940 New constants.
7941 (lisp-mode-variables): New `elisp' argument.
7942 (emacs-lisp-mode): Use it.
7943 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
7944 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
7945
7946 * indent.el: Use lexical-binding.
7947 (indent-region): Add progress reporter.
7948 (tab-stop-list): Make it implicitly extend to infinity by repeating the
7949 last step.
7950 (indent--next-tab-stop): New function to implement this behavior.
7951 (tab-to-tab-stop, move-to-tab-stop): Use it.
7952
7953 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
7954
7955 * indent.el (indent-rigidly--current-indentation): New function.
7956 (indent-rigidly-map): New var.
7957 (indent-rigidly): Use it to provide interactive mode (bug#8196).
7958
7959 2013-10-08 Bastien Guerry <bzg@gnu.org>
7960
7961 * register.el (insert-register): Fix 2013-10-07 change.
7962
7963 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
7964
7965 * progmodes/perl-mode.el: Use lexical-binding.
7966 Remove redundant :group args.
7967 (perl-nochange): Change default to be closer to other major modes's
7968 standard behavior.
7969 (perl-indent-line): Don't consider text on current line as a
7970 valid beginning of function from which to indent.
7971
7972 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
7973 with more than one argument (bug#15538).
7974
7975 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
7976
7977 * vc/pcvs.el: Use lexical-binding.
7978 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
7979 environment of `eval'.
7980 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
7981 than a list of expressions. Adjust callers.
7982 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
7983
7984 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
7985
7986 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
7987 case of the dot in a chained method call being on the following line.
7988
7989 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7990
7991 * electric.el (electric-indent-inhibit): New var.
7992 (electric-indent-post-self-insert-function): Use it.
7993 * progmodes/python.el (python-mode): Set it.
7994
7995 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
7996 open braces.
7997
7998 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
7999
8000 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
8001 (css-mode): Use electric-indent-chars.
8002
8003 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
8004 (font-lock-beg, font-lock-end): Move before first use.
8005 (nxml-mode): Use syntax-propertize-function.
8006 (nxml-after-change, nxml-after-change1): Adjust accordingly.
8007 (nxml-extend-after-change-region): Remove.
8008 * nxml/xmltok.el: Use lexical-binding.
8009 (xmltok-save): Use `declare'.
8010 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
8011 * nxml/nxml-util.el: Use lexical-binding.
8012 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
8013 Use `declare'.
8014 * nxml/nxml-ns.el: Use lexical-binding.
8015 (nxml-ns-save): Use `declare'.
8016 (nxml-ns-prefixes-for): Avoid add-to-list.
8017 * nxml/rng-match.el: Use lexical-binding.
8018 (rng--ipattern): Use cl-defstruct.
8019 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
8020 (rng-cons-group-after, rng-subst-group-after)
8021 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
8022 Use closures instead of `(lambda...).
8023
8024 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
8025
8026 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
8027 of BEG and END.
8028
8029 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
8030 Use `tramp-handle-insert-file-contents'.
8031 (tramp-gvfs-handle-insert-file-contents): Remove function.
8032
8033 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8034 Use `save-restriction' in order to keep markers.
8035
8036 * net/trampver.el: Update release number.
8037
8038 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8039
8040 * progmodes/compile.el (compilation-parse-errors):
8041 Use compilation--put-prop.
8042 (compilation--ensure-parse): Check compilation-multiline.
8043
8044 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
8045
8046 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
8047 lexical-binding.
8048
8049 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
8050
8051 * progmodes/ruby-mode.el: Fix recently added tests.
8052 (ruby-smie-grammar): Add - and +.
8053 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
8054 (ruby-smie--backward-id): New functions.
8055 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
8056 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
8057 any more.
8058
8059 2013-10-07 Leo Liu <sdl.web@gmail.com>
8060
8061 * register.el (register-preview-delay)
8062 (register-preview-functions): New variables.
8063 (register-read-with-preview, register-preview)
8064 (register-describe-oneline): New functions.
8065 (point-to-register, window-configuration-to-register)
8066 (frame-configuration-to-register, jump-to-register)
8067 (number-to-register, view-register, insert-register)
8068 (copy-to-register, append-to-register, prepend-to-register)
8069 (copy-rectangle-to-register): Use register-read-with-preview to
8070 read register. (Bug#15525)
8071
8072 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
8073
8074 * net/network-stream.el (network-stream-open-starttls): Don't add
8075 --insecure if it's already present, because that gnutls-cli
8076 rejects getting that parameter twice.
8077
8078 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
8079
8080 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
8081 keyword, too.
8082
8083 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
8084
8085 * newcomment.el (comment-use-global-state): Change default value
8086 to t, mark obsolete (Bug#15251).
8087 (comment-beginning): In addition to `comment-to-syntax', check the
8088 value of `comment-use-global-state'.
8089
8090 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8091
8092 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
8093 (ruby-comment-column): Follow the global default, by default.
8094 (ruby-smie-grammar): Add assignment syntax.
8095 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
8096 open-paren, a comma, or a \.
8097 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
8098 and line continuations.
8099 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
8100 followed by implicit semi-colons. Add rule for string concatenation
8101 and for indentation at BOB.
8102 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
8103
8104 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
8105 calling next-sexp, since next-token may have skipped chars which
8106 next-sexp doesn't know should be skipped!
8107
8108 2013-10-05 Leo Liu <sdl.web@gmail.com>
8109
8110 * progmodes/octave.el (octave-send-region):
8111 Call compilation-forget-errors.
8112
8113 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8114
8115 * vc/vc-svn.el (vc-svn-find-admin-dir):
8116 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
8117 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
8118 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
8119 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
8120
8121 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8122
8123 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
8124
8125 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8126
8127 * subr.el (read-passwd): Hide chars even when called within a context
8128 where after-change-functions is disabled (bug#15501).
8129 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
8130 until we removed ourself from overriding-terminal-local-map.
8131
8132 2013-10-04 Leo Liu <sdl.web@gmail.com>
8133
8134 * progmodes/octave.el (inferior-octave-mode):
8135 Call compilation-forget-errors.
8136
8137 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8138
8139 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
8140
8141 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
8142
8143 * net/secrets.el (secrets-create-collection): Add optional
8144 argument ALIAS. Use proper Label keyword. Append ALIAS as
8145 dbus-call-method argument. (Bug#15516)
8146
8147 2013-10-04 Leo Liu <sdl.web@gmail.com>
8148
8149 * progmodes/octave.el (inferior-octave-error-regexp-alist)
8150 (inferior-octave-compilation-font-lock-keywords): New variables.
8151 (compilation-error-regexp-alist)
8152 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
8153 (inferior-octave-mode): Use compilation-shell-minor-mode.
8154
8155 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
8156
8157 * minibuffer.el (completion--replace): Be careful that `end' might be
8158 a marker.
8159
8160 2013-10-03 Daiki Ueno <ueno@gnu.org>
8161
8162 Add support for package signature checking.
8163 * emacs-lisp/package.el (url-http-file-exists-p)
8164 (epg-make-context, epg-context-set-home-directory)
8165 (epg-verify-string, epg-context-result-for)
8166 (epg-signature-status, epg-signature-to-string)
8167 (epg-check-configuration, epg-configuration)
8168 (epg-import-keys-from-file): Declare.
8169 (package-check-signature): New user option.
8170 (package-unsigned-archives): New user option.
8171 (package-desc): Add `signed' field.
8172 (package-load-descriptor): Set `signed' field if .signed file exists.
8173 (package--archive-file-exists-p): New function.
8174 (package--check-signature): New function.
8175 (package-install-from-archive): Check package signature.
8176 (package--download-one-archive): Check archive signature.
8177 (package-delete): Remove .signed file.
8178 (package-import-keyring): New command.
8179 (package-refresh-contents): Import default keyring.
8180 (package-desc-status): Add "unsigned" status.
8181 (describe-package-1, package-menu--print-info)
8182 (package-menu-mark-delete, package-menu--find-upgrades)
8183 (package-menu--status-predicate): Support "unsigned" status.
8184
8185 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8186
8187 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
8188 the new compilation scheme using the new byte-codes.
8189
8190 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
8191 (byte-pophandler): New byte codes.
8192 (byte-goto-ops): Adjust accordingly.
8193 (byte-compile--use-old-handlers): New var.
8194 (byte-compile-catch): Use new byte codes depending on
8195 byte-compile--use-old-handlers.
8196 (byte-compile-condition-case--old): Rename from
8197 byte-compile-condition-case.
8198 (byte-compile-condition-case--new): New function.
8199 (byte-compile-condition-case): New function that dispatches depending
8200 on byte-compile--use-old-handlers.
8201 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
8202 when we can.
8203
8204 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
8205 Optimize under `condition-case' and `catch' if
8206 byte-compile--use-old-handlers is nil.
8207 (disassemble-offset): Handle new bytecodes.
8208
8209 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8210
8211 * subr.el (error): Use `declare'.
8212 (decode-char, encode-char): Use advertised-calling-convention instead
8213 of the docstring to discourage use of the `restriction' arg.
8214
8215 2013-10-03 Daiki Ueno <ueno@gnu.org>
8216
8217 * epg.el (epg-verify-file): Add a comment saying that it does not
8218 notify verification error as a return value nor a signal.
8219 (epg-verify-string): Ditto.
8220
8221 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
8222
8223 * progmodes/compile.el (compilation-start): Try globbing the arg to
8224 `cd' (bug#15417).
8225
8226 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
8227
8228 Sync with Tramp 2.2.8.
8229
8230 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
8231 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
8232 * net/trampver.el: Update release number.
8233
8234 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
8235
8236 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8237 and default-process-coding-system for darwin only.
8238
8239 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8240
8241 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
8242
8243 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
8244
8245 * vc/vc-git.el (vc-git-grep): Disable pager.
8246
8247 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
8248
8249 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
8250 Use :url instead of :homepage, as per
8251 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
8252
8253 * newcomment.el (comment-beginning): When `comment-use-syntax' is
8254 non-nil, use `syntax-ppss' (Bug#15251).
8255
8256 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8257
8258 * progmodes/octave.el (inferior-octave-startup-file):
8259 Prefer ~/.emacs.d/init_octave.m.
8260
8261 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
8262
8263 * emacs-lisp/package.el (package-desc-from-define):
8264 Accept additional arguments as plist, convert them to an alist and store
8265 them in the `extras' slot.
8266 (package-generate-description-file): Convert extras alist back to
8267 plist and append to the `define-package' form arguments.
8268 (package--alist-to-plist): New function.
8269 (package--ac-desc): Add `extras' slot.
8270 (package--add-to-archive-contents): Check if the archive-contents
8271 vector is long enough, and if it is, pass its `extras' slot value
8272 to `package-desc-create'.
8273 (package-buffer-info): Call `lm-homepage', pass the returned value
8274 to `package-desc-from-define'.
8275 (describe-package-1): Render the homepage button (Bug#13291).
8276
8277 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8278 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
8279
8280 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
8281
8282 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8283 and default-process-coding-system to utf-8-unix (Bug#15402).
8284
8285 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
8286
8287 * subr.el (looking-back): Do not recommend using looking-back.
8288
8289 2013-09-28 Alan Mackenzie <acm@muc.de>
8290
8291 Fix indentation/fontification of Java enum with "implements".
8292
8293 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
8294 regexp which matches "implements", etc., in Java.
8295 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
8296 specifier clauses coming after "enum".
8297 * progmodes/cc-fonts.el (c-font-lock-declarations)
8298 (c-font-lock-enum-tail): Check for extra specifier clauses coming
8299 after "enum".
8300
8301 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
8302
8303 * faces.el (region): Change ns_selection_color to
8304 ns_selection_fg_color, add ns_selection_bg_color.
8305
8306 2013-09-28 Leo Liu <sdl.web@gmail.com>
8307
8308 * progmodes/octave.el (inferior-octave-completion-table)
8309 (inferior-octave-completion-at-point): Minor tweaks.
8310
8311 * textmodes/ispell.el (ispell-lookup-words): Rename from
8312 lookup-words. (Bug#15460)
8313 (lookup-words): Obsolete.
8314 (ispell-complete-word, ispell-command-loop): All uses changed.
8315
8316 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8317
8318 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
8319 (octave-mode-menu): Add octave-send-buffer.
8320 (octave-send-buffer): New function.
8321
8322 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8323
8324 * progmodes/octave.el (octave-mode-map): Add key binding for
8325 octave-lookfor.
8326 (octave-mode-menu): Add octave-lookfor.
8327 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
8328 octave-lookfor.
8329 (octave-lookfor): New function.
8330
8331 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8332
8333 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
8334 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
8335 its convention.
8336 (cl--loop-set-iterator-function): New function.
8337 (cl-loop): Adjust accordingly, so as not to use cl-subst.
8338 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
8339 Bind `it' with `let' instead of substituting it with `cl-subst'.
8340 (cl--unused-var-p): New function.
8341 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
8342 Eliminate some unused variable warnings (bug#15326).
8343
8344 2013-09-27 Tassilo Horn <tsdh@gnu.org>
8345
8346 * doc-view.el (doc-view-scale-reset): Rename from
8347 `doc-view-reset-zoom-level'.
8348 (doc-view-scale-adjust): New command.
8349 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
8350 `doc-view-scale-adjust'.
8351
8352 2013-09-26 Tassilo Horn <tsdh@gnu.org>
8353
8354 * doc-view.el (doc-view-reset-zoom-level): New command.
8355 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
8356 zoom commands (bug#15466).
8357
8358 2013-09-26 Kenichi Handa <handa@gnu.org>
8359
8360 * international/quail.el (quail-help): Make it not a command.
8361
8362 2013-09-26 Leo Liu <sdl.web@gmail.com>
8363
8364 * minibuffer.el (completion-all-sorted-completions): Make args
8365 optional as they are.
8366
8367 2013-09-25 Daniel Colascione <dancol@dancol.org>
8368
8369 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
8370 specs are and that they're not evaluated.
8371
8372 2013-09-24 Sam Steingold <sds@gnu.org>
8373
8374 * midnight.el (clean-buffer-list-kill-regexps)
8375 (clean-buffer-list-kill-buffer-names): Update for the new Man
8376 buffer naming which includes the object name.
8377
8378 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8379
8380 * eshell/esh-cmd.el (eshell--sep-terms): New var.
8381 (eshell-parse-command, eshell-parse-pipeline): Use it since
8382 eshell-separate-commands requires a dynamic scoped var.
8383 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
8384
8385 2013-09-23 Leo Liu <sdl.web@gmail.com>
8386
8387 * autoinsert.el (auto-insert-alist): Make the value of
8388 lexical-binding match its file setting.
8389
8390 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
8391
8392 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
8393
8394 * autoarg.el (autoarg-kp-digit-argument):
8395 * electric.el (Electric-command-loop):
8396 * kmacro.el (kmacro-step-edit-insert):
8397 Do not set universal-argument-num-events.
8398
8399 2013-09-22 Leo Liu <sdl.web@gmail.com>
8400
8401 * files.el (interpreter-mode-alist): Add octave.
8402
8403 2013-09-21 Alan Mackenzie <acm@muc.de>
8404
8405 C++: fontify identifier in declaration following "public:" correctly.
8406 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
8407 to match "public", etc.
8408 (c-decl-prefix-re): Add ":" into the C++ value.
8409 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
8410 bit. Add a check for a ":" preceded by "public", etc.
8411
8412 2013-09-21 Eli Zaretskii <eliz@gnu.org>
8413
8414 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
8415 recognized by GDB 7.5 and later.
8416
8417 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
8418
8419 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
8420
8421 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8422
8423 * subr.el (internal--call-interactively): New const.
8424 (called-interactively-p): Use it (bug#3984).
8425
8426 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
8427
8428 * vc/pcvs.el (cvs-mode-ignore):
8429 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
8430 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
8431
8432 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8433
8434 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
8435 (eshell-ls-orig-insert-directory): Remove.
8436 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
8437 (eshell-ls-use-in-dired): Use advice-add/remove.
8438 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
8439 Add `orig-fun' arg for use in :around advice.
8440 Make it check (redundantly) eshell-ls-use-in-dired.
8441
8442 2013-09-19 Glenn Morris <rgm@gnu.org>
8443
8444 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
8445
8446 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
8447
8448 * emacs-lisp/eieio.el (class-parent): Undo previous change.
8449
8450 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
8451
8452 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
8453 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
8454 (tramp-get-remote-python): New defuns.
8455 (tramp-get-remote-uid-with-perl)
8456 (tramp-get-remote-gid-with-perl): New defuns. Perl code
8457 contributed by yary <not.com@gmail.com> (tiny change).
8458 (tramp-get-remote-uid-with-python)
8459 (tramp-get-remote-gid-with-python): New defuns. Python code
8460 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
8461 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
8462
8463 2013-09-19 Glenn Morris <rgm@gnu.org>
8464
8465 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
8466
8467 * eshell/em-unix.el (eshell-remove-entries):
8468 Rename argument to avoid name-clash with global `top-level'.
8469
8470 * eshell/esh-proc.el (eshell-kill-process-function):
8471 Remove eshell-reset-after-proc from eshell-kill-hook if present.
8472 (eshell-reset-after-proc): Remove unused arg `proc'.
8473
8474 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
8475 (directory-files-and-attributes): Mark unused arg.
8476
8477 * eshell/em-unix.el (eshell-remove-entries):
8478 Remove unused arg `path'. Update callers.
8479
8480 * eshell/em-hist.el (eshell-hist-parse-arguments):
8481 Remove unused arg `silent'. Update callers.
8482
8483 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
8484 Fix (f)boundp mix-up.
8485
8486 * eshell/em-smart.el (eshell-smart-scroll-window)
8487 (eshell-disable-after-change):
8488 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
8489
8490 2013-09-18 Alan Mackenzie <acm@muc.de>
8491
8492 Fix fontification of type when followed by "const".
8493 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
8494 "known" types from fontification.
8495
8496 2013-09-18 Glenn Morris <rgm@gnu.org>
8497
8498 * emacs-lisp/chart.el (x-display-color-cells): Declare.
8499 (chart-face-list): Drop Emacsen without display-color-p.
8500
8501 * net/eww.el (libxml-parse-html-region): Declare.
8502 (eww-display-html): Explicit error if no libxml2 support.
8503
8504 * doc-view.el (doc-view-mode): Silence --without-x compilation.
8505
8506 * image.el (image-type-from-buffer, image-multi-frame-p):
8507 Remove --without-x warning/error.
8508
8509 * mouse.el (mouse-yank-primary):
8510 * term.el (term-mouse-paste):
8511 Reorder to silence --without-x compilation.
8512
8513 * mpc.el (doc-view-mode): Silence --without-x compilation.
8514
8515 * mail/rmailmm.el (rmail-mime-set-bulk-data):
8516 Silence --without-x compilation.
8517
8518 * progmodes/gud.el (gud-find-file, gud-mode):
8519 Silence --without-x compilation.
8520 (tooltip-mode): Declare.
8521
8522 * wdired.el (dired-backup-overwrite): Remove declaration.
8523 (wdired-mode-map): Add doc string.
8524
8525 * custom.el (x-get-resource): Declare.
8526
8527 * eshell/em-glob.el (ange-cache):
8528 * eshell/em-unix.el (ange-cache): Declare.
8529
8530 * faces.el (x-display-list, x-open-connection, x-get-resource):
8531 Declare.
8532
8533 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
8534 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
8535 Declare.
8536
8537 * frame.el (x-display-grayscale-p, x-display-name): Declare.
8538
8539 * net/gnutls.el (gnutls-log-level): Declare.
8540
8541 * net/shr.el (image-size, image-animate): Declare.
8542
8543 * simple.el (font-info): Declare.
8544
8545 * subr.el (x-popup-dialog): Declare.
8546
8547 * term/common-win.el (x-select-enable-primary)
8548 (x-last-selected-text-primary, x-last-selected-text-clipboard):
8549 Declare.
8550
8551 * term/ns-win.el (x-handle-args): Declare.
8552
8553 * term/x-win.el (x-select-enable-clipboard): Declare.
8554
8555 * term/w32-win.el (create-default-fontset): Declare.
8556
8557 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
8558 Declare.
8559
8560 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
8561 (fit-frame-to-buffer): Explicit error if --without-x.
8562 (mouse-autoselect-window-select): Silence compiler.
8563
8564 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
8565
8566 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
8567 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
8568 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
8569 * eshell/esh-util.el (eshell-sublist):
8570 Remove unused local variables.
8571
8572 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
8573
8574 * textmodes/two-column.el: Make 2C-split work for --without-x.
8575 (scroll-bar-columns): Autoload.
8576 (top-level): Require fringe when compiling.
8577
8578 2013-09-18 Leo Liu <sdl.web@gmail.com>
8579
8580 * subr.el (add-hook): Robustify to handle closure as well.
8581
8582 2013-09-17 Glenn Morris <rgm@gnu.org>
8583
8584 * simple.el (messages-buffer-mode-map): Unbind "g".
8585
8586 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8587
8588 * help-mode.el (help-mode-finish): Use derived-mode-p.
8589 Remove obsolete highlighting.
8590
8591 * play/life.el (life-mode): Use define-derived-mode. Derive from
8592 special-mode.
8593 (life): Let-bind inhibit-read-only.
8594 (life-setup): Avoid `setq'. Use `life-mode'.
8595
8596 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
8597 which should not be needed any more.
8598 (package-menu-refresh, package-menu-describe-package): Use user-error.
8599
8600 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
8601 (eshell-post-rewrite-command-hook): Make obsolete.
8602 (eshell-parse-command): Simplify.
8603 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
8604 (eshell--cmd): Declare.
8605 (eshell-parse-pipeline): Remove unused var `final-p'.
8606 Pass a dynvar to eshell-post-rewrite-command-hook.
8607 Implement the new eshell-post-rewrite-command-function.
8608 (eshell-invoke-directly): Remove unused arg `input'.
8609 * eshell/esh-io.el (eshell-io-initialize):
8610 Use eshell-post-rewrite-command-function (bug#15399).
8611 (eshell--apply-redirections): Rename from eshell-apply-redirections;
8612 adjust to new calling convention.
8613 (eshell-create-handles): Rename args to avoid clashing with dynvar
8614 `standard-output'.
8615
8616 2013-09-17 Glenn Morris <rgm@gnu.org>
8617
8618 * simple.el (messages-buffer-mode): New major mode.
8619 (messages-buffer): New function.
8620 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
8621 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
8622 (ert-run-test): Use `messages-buffer' function.
8623 (ert--force-message-log-buffer-truncation): Ignore read-only.
8624 * help.el (view-echo-area-messages): Use `messages-buffer' function.
8625 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
8626
8627 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8628
8629 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
8630
8631 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
8632
8633 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8634
8635 * icomplete.el (icomplete-in-buffer): New var.
8636 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
8637 vars and replace them with functions.
8638 (icomplete-minibuffer-setup): Adjust accordingly.
8639 (icomplete--completion-table, icomplete--completion-predicate)
8640 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
8641 New functions.
8642 (icomplete-forward-completions, icomplete-backward-completions)
8643 (icomplete-simple-completing-p, icomplete-exhibit)
8644 (icomplete-completions): Use them.
8645 (icomplete--in-region-buffer): New var.
8646 (icomplete--in-region-setup): New function.
8647 (icomplete-mode): Use it.
8648
8649 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
8650 (bug#15379).
8651 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
8652 return args and options.
8653 (eshell-eval-using-options): Use the new return value of
8654 eshell--do-opts to set the options's vars in their scope.
8655 (eshell--set-option): Rename from eshell-set-option.
8656 Add arg `opt-vals'.
8657 (eshell--process-option): Rename from eshell-process-option.
8658 Add arg `opt-vals'.
8659 (eshell--process-args): Use an `opt-vals' alist to store the options's
8660 values during their processing and return them additionally to the
8661 remaining args.
8662
8663 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
8664
8665 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
8666 continuation character an operator, as far as indentation is
8667 concerned (Bug#15369).
8668
8669 2013-09-15 Martin Rudalics <rudalics@gmx.at>
8670
8671 * window.el (window--state-put-2): Don't process buffer state
8672 when buffer doesn't exist any more (Bug#15382).
8673
8674 2013-09-15 Glenn Morris <rgm@gnu.org>
8675
8676 * eshell/em-unix.el (eshell/rm):
8677 Make -f ignore missing files. (Bug#15373)
8678
8679 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
8680 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
8681 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
8682
8683 2013-09-14 Glenn Morris <rgm@gnu.org>
8684
8685 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
8686
8687 2013-09-13 Glenn Morris <rgm@gnu.org>
8688
8689 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
8690 (dired-guess-default): Make `file' available in the env. (Bug#15363)
8691
8692 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
8693
8694 * frame.el (x-focus-frame): Mark as declared in frame.c.
8695
8696 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8697
8698 * ls-lisp.el: Use advice-add.
8699 (original-insert-directory): Remove.
8700 (ls-lisp--insert-directory): Rename from insert-directory; add
8701 `orig-fun' argument.
8702 (insert-directory): Advise.
8703
8704 2013-09-13 Eli Zaretskii <eliz@gnu.org>
8705
8706 * term.el (term-emulate-terminal): Decode the command string
8707 before passing it to term-command-hook. (Bug#15337)
8708
8709 2013-09-13 Glenn Morris <rgm@gnu.org>
8710
8711 * eshell/esh-util.el (ange-cache): Move declaration earlier.
8712
8713 * eshell/esh-ext.el (eshell-search-path): Declare.
8714
8715 * eshell/em-prompt.el (eshell/pwd): Autoload it.
8716 Otherwise an error occurs if eshell-dirs module not loaded.
8717
8718 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
8719
8720 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
8721
8722 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
8723 `tramp-check-proper-host'. Check for a valid method name.
8724
8725 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
8726 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
8727 * net/tramp-sh.el (tramp-maybe-open-connection):
8728 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
8729
8730 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
8731 also for hash values.
8732
8733 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8734
8735 * term/ns-win.el (parameters): Don't declare as dynamic.
8736 (before-make-frame-hook): Don't add ineffective function.
8737
8738 * eshell/*.el: Use lexical-binding (bug#15231).
8739
8740 2013-09-12 Kenichi Handa <handa@gnu.org>
8741
8742 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
8743
8744 2013-09-12 Glenn Morris <rgm@gnu.org>
8745
8746 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
8747 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
8748
8749 * subr.el (do-after-load-evaluation): Also give compiler warnings
8750 when obsolete files are used (except by obsolete files).
8751
8752 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
8753 in the status output, assume `filename' is the first. (Bug#15322)
8754
8755 * vc/vc.el (vc-deduce-fileset): Doc fix.
8756
8757 * calc/calc-help.el (Info-goto-node):
8758 * progmodes/cperl-mode.el (Info-find-node):
8759 * vc/ediff.el (Info-goto-node): Update declarations.
8760
8761 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
8762
8763 * vc/vc-bzr.el (vc-compilation-mode): Declare.
8764 (vc-bzr-pull): Require vc-dispatcher.
8765 * vc/vc-git.el (vc-compilation-mode): Declare.
8766 (vc-git-pull): Require vc-dispatcher.
8767
8768 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
8769
8770 * progmodes/octave.el (help-button-action): Declare.
8771
8772 * shell.el (shell-directory-tracker): Output error as a message
8773 rather than just returning it as a string.
8774 (shell-process-pushd): Remove useless use of message.
8775
8776 * dframe.el (dframe-timer-fn):
8777 * files.el (dir-locals-read-from-file):
8778 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
8779 (mpc-format):
8780 * reveal.el (reveal-post-command):
8781 * saveplace.el (load-save-place-alist-from-file):
8782 * shell.el (shell-resync-dirs):
8783 * w32-common-fns.el (x-get-selection-value):
8784 * emacs-lisp/copyright.el (copyright-find-copyright):
8785 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
8786 * emulation/tpu-edt.el (tpu-copy-keyfile):
8787 * play/bubbles.el (bubbles--mark-neighbourhood):
8788 * progmodes/executable.el
8789 (executable-make-buffer-file-executable-if-script-p):
8790 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
8791
8792 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8793
8794 Cleanup Eshell to rely less on dynamic scoping.
8795 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
8796 last-value, and ext-command here. Bind `args' closer to `body'.
8797 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
8798 (eshell--args): Declare new dynamic var.
8799 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
8800 last-value, and ext-command. Pass `args' to `body'.
8801 (eshell-process-args): Bind eshell--args.
8802 (eshell-set-option): Use eshell--args.
8803 * eshell/eshell.el (eshell): Use derived-mode-p.
8804 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
8805 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
8806 (eshell-glob-function): Declare.
8807 * eshell/esh-util.el: Require cl-lib.
8808 (eshell-read-hosts-file): Avoid add-to-list.
8809 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
8810 `err'.
8811 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
8812 Declare.
8813 (eshell/diff): Remove unused var `err'.
8814 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
8815 `killflag'.
8816 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
8817 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
8818 first use.
8819 * eshell/em-glob.el (eshell-glob-matches, message-shown):
8820 Move declaration before first use.
8821 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
8822 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
8823 rely on cl-return.
8824
8825 2013-09-12 Glenn Morris <rgm@gnu.org>
8826
8827 * term/ns-win.el (global-map): Remove binding for ispell-next,
8828 deleted 1999-05-29. (Bug#15357)
8829
8830 2013-09-11 Glenn Morris <rgm@gnu.org>
8831
8832 * echistory.el (electric-command-history): Remove call to deleted func.
8833
8834 * play/landmark.el (landmark-mode): Fix typos.
8835
8836 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
8837 Check cvs-sort-ignore-file is bound.
8838
8839 * savehist.el: No need for cl when compiling on Emacs.
8840
8841 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8842
8843 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
8844 (bug#15338).
8845 (eshell-self-insert-command, eshell-send-invisible):
8846 Remove unused argument.
8847 (eshell-handle-control-codes): Remove unused var `orig'.
8848 Avoid delete-backward-char.
8849
8850 * files.el (set-auto-mode): Simplify a bit further.
8851
8852 2013-09-11 Glenn Morris <rgm@gnu.org>
8853
8854 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
8855 (set-auto-mode): Don't regexp-quote elements.
8856 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
8857 * progmodes/cc-mode.el (interpreter-mode-alist):
8858 * progmodes/ruby-mode.el (interpreter-mode-alist):
8859 Revert previous change.
8860
8861 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8862
8863 * play/snake.el (snake-mode):
8864 * play/mpuz.el (mpuz-mode):
8865 * play/landmark.el (lm-mode):
8866 * play/blackbox.el (blackbox-mode):
8867 * play/5x5.el (5x5-mode):
8868 * obsolete/options.el (Edit-options-mode):
8869 * net/quickurl.el (quickurl-list-mode):
8870 * net/newst-treeview.el (newsticker-treeview-mode):
8871 * mail/rmailsum.el (rmail-summary-mode):
8872 * mail/mspools.el (mspools-mode):
8873 * locate.el (locate-mode):
8874 * ibuffer.el (ibuffer-mode):
8875 * emulation/ws-mode.el (wordstar-mode):
8876 * emacs-lisp/debug.el (debugger-mode):
8877 * array.el (array-mode):
8878 * net/eudc.el (eudc-mode): Use define-derived-mode.
8879 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
8880 Move initialization into declaration.
8881 (mairix-searches-mode): Use define-derived-mode.
8882 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
8883 (eudc-edit-hotlist): Use dolist.
8884 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
8885 (Man-mode): Use define-derived-mode.
8886 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
8887 (Info-edit-mode): Use define-derived-mode.
8888 (Info-cease-edit): Use Info-mode.
8889 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
8890 into declaration.
8891 (eshell-mode): Use define-derived-mode.
8892 * chistory.el (command-history-mode-map): Rename from
8893 command-history-map.
8894 (command-history-mode): Use define-derived-mode.
8895 (Command-history-setup): Remove function.
8896 * calc/calc.el (calc-trail-mode-map): New var.
8897 (calc-trail-mode): Use define-derived-mode.
8898 (calc-trail-buffer): Set calc-main-buffer manually.
8899 * bookmark.el (bookmark-insert-annotation): New function.
8900 (bookmark-edit-annotation): Use it.
8901 (bookmark-edit-annotation-mode): Make it a proper major mode.
8902 (bookmark-send-edited-annotation): Use derived-mode-p.
8903 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
8904 closer to its ideal place. Use \' to match EOS.
8905
8906 * profiler.el (profiler-calltree-find): Use function-equal.
8907
8908 2013-09-10 Glenn Morris <rgm@gnu.org>
8909
8910 * files.el (interpreter-mode-alist): Convert to regexps.
8911 (set-auto-mode): Adapt for this. (Bug#15306)
8912 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
8913 Comment out unused variable.
8914 * progmodes/cc-mode.el (interpreter-mode-alist):
8915 * progmodes/python.el (interpreter-mode-alist):
8916 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
8917 * progmodes/sh-script.el (sh-set-shell):
8918 No longer use interpreter-mode-alist to get list of shells.
8919
8920 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
8921
8922 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8923
8924 * simple.el: Use set-temporary-overlay-map for universal-argument.
8925 (universal-argument-map): Don't use default-bindings (bug#15317).
8926 Bind switch-frame explicitly. Replace universal-argument-minus with
8927 a conditional binding.
8928 (universal-argument-num-events, saved-overriding-map): Remove.
8929 (restore-overriding-map): Remove.
8930 (universal-argument--mode): Rename from save&set-overriding-map,
8931 and rewrite.
8932 (universal-argument, universal-argument-more, negative-argument)
8933 (digit-argument): Adjust accordingly.
8934 (universal-argument-minus): Remove.
8935 (universal-argument-other-key): Remove.
8936
8937 * subr.el (with-demoted-errors): Add `format' argument.
8938
8939 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
8940
8941 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
8942 `tramp-cleanup-connection'.
8943
8944 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
8945 parameters KEEP-DEBUG and KEEP-PASSWORD.
8946
8947 * net/tramp.el (tramp-file-name-handler):
8948 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
8949 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
8950 (tramp-maybe-open-connection):
8951 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8952 Use `tramp-cleanup-connection'.
8953
8954 * net/tramp-sh.el (tramp-maybe-open-connection):
8955 Catch 'uname-changed inside the progress reporter.
8956
8957 2013-09-10 Glenn Morris <rgm@gnu.org>
8958
8959 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
8960
8961 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
8962 returns "alternate access method" in mode (eg "-rw-r--r--.").
8963
8964 2013-09-08 Glenn Morris <rgm@gnu.org>
8965
8966 * saveplace.el (load-save-place-alist-from-file):
8967 Demote errors. (Bug#15305)
8968
8969 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
8970
8971 Improve compatibility with older Emacsen, and XEmacs.
8972
8973 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
8974 only if it is bound. It isn't for XEmacs.
8975 (with-tramp-progress-reporter): Do not let-bind `result'.
8976 This yields to scoping errors in XEmacs.
8977 (tramp-handle-make-auto-save-file-name): New function, moved from
8978 tramp-sh.el.
8979
8980 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
8981 for `make-auto-save-file-name'.
8982 (tramp-adb--gnu-switches-to-ash):
8983 Use `tramp-compat-replace-regexp-in-string'.
8984
8985 * net/tramp-cache.el (tramp-cache-print): Call
8986 `substring-no-properties' only if it is bound. It isn't for XEmacs.
8987
8988 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
8989 bound. It isn't for XEmacs.
8990
8991 * net/tramp-compat.el (tramp-compat-copy-file):
8992 Catch `wrong-number-of-arguments' error.
8993 (tramp-compat-replace-regexp-in-string): New defun.
8994
8995 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
8996 for `make-auto-save-file-name'.
8997 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
8998 `copy-file'.
8999 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
9000 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
9001 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
9002
9003 * net/tramp-gw.el (tramp-gw-open-network-stream):
9004 Use `tramp-compat-replace-regexp-in-string'.
9005
9006 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
9007 Call `tramp-handle-make-auto-save-file-name'.
9008 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
9009 (tramp-sh-file-gvfs-monitor-dir-process-filter)
9010 (tramp-sh-file-inotifywait-process-filter):
9011 Use `tramp-compat-replace-regexp-in-string'.
9012 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
9013
9014 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
9015 for `make-auto-save-file-name'.
9016 (tramp-smb-handle-copy-directory):
9017 Call `tramp-compat-replace-regexp-in-string'.
9018 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
9019 (tramp-smb-handle-copy-file): Improve error message.
9020 (tramp-smb-handle-rename-file): Rename directly only in case
9021 `newname' does not exist yet. This is a restriction of smbclient.
9022 (tramp-smb-maybe-open-connection): Rerun the function only when
9023 `auth-sources' is non-nil.
9024
9025 2013-09-08 Kenichi Handa <handa@gnu.org>
9026
9027 * international/characters.el: Set category "^" (Combining) for
9028 more characters.
9029
9030 2013-09-07 Alan Mackenzie <acm@muc.de>
9031
9032 Correctly fontify Java class constructors.
9033 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
9034 in Java Mode.
9035 (c-recognize-typeless-decls): Set the Java value to t.
9036 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
9037 While handling a "(", add a check for, effectively, Java, and handle a
9038 "typeless" declaration there.
9039
9040 2013-09-07 Roland Winkler <winkler@gnu.org>
9041
9042 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
9043 field subtitle for entry type book.
9044
9045 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9046
9047 * minibuffer.el: Make minibuffer-complete call completion-in-region
9048 rather than other way around.
9049 (completion--some, completion-pcm--find-all-completions):
9050 Don't delay signals when debugging.
9051 (minibuffer-completion-contents): Beware fields within the
9052 minibuffer contents.
9053 (completion-all-sorted-completions): Use defvar-local.
9054 (completion--do-completion, completion--cache-all-sorted-completions)
9055 (completion-all-sorted-completions, minibuffer-force-complete):
9056 Add args `beg' and `end'.
9057 (completion--in-region-1): New fun, extracted from minibuffer-complete.
9058 (minibuffer-complete): Use completion-in-region.
9059 (completion-complete-and-exit): New fun, extracted from
9060 minibuffer-complete-and-exit.
9061 (minibuffer-complete-and-exit): Use it.
9062 (completion--complete-and-exit): Rename from
9063 minibuffer--complete-and-exit.
9064 (completion-in-region--single-word): New function, extracted from
9065 minibuffer-complete-word.
9066 (minibuffer-complete-word): Use it.
9067 (display-completion-list): Make `common-substring' argument obsolete.
9068 (completion--in-region): Call completion--in-region-1 instead of
9069 minibuffer-complete.
9070 (completion-help-at-point): Pass boundaries to
9071 minibuffer-completion-help as args rather than via an overlay.
9072 (completion-pcm--string->pattern): Use `any-delim'.
9073 (completion-pcm--optimize-pattern): New function.
9074 (completion-pcm--pattern->regex): Handle `any-delim'.
9075 * icomplete.el (icomplete-forward-completions)
9076 (icomplete-backward-completions, icomplete-completions):
9077 Adjust calls to completion-all-sorted-completions and
9078 completion--cache-all-sorted-completions.
9079 (icomplete-with-completion-tables): Default to t.
9080 * emacs-lisp/crm.el (crm--current-element): Rename from
9081 crm--select-current-element. Don't put an overlay but return the
9082 boundaries instead.
9083 (crm--completion-command): Take two new args to bind to the boundaries.
9084 (crm-completion-help): Adjust accordingly.
9085 (crm-complete): Use completion-in-region.
9086 (crm-complete-word): Use completion-in-region--single-word.
9087 (crm-complete-and-exit): Use completion-complete-and-exit.
9088
9089 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9090
9091 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
9092 than dynamically.
9093
9094 2013-09-06 Juri Linkov <juri@jurta.org>
9095
9096 * info.el (Info-display-images-node): When image file doesn't exist
9097 display text version of the image if it's provided in the Info file.
9098 Otherwise, display the location of missing image from SRC attribute.
9099 Add help-echo text property from ALT attribute. (Bug#15279)
9100
9101 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9102
9103 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
9104 (edit-abbrevs-mode): Use define-derived-mode.
9105
9106 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
9107 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
9108 that it's defined.
9109 (epa-key-list-mode, epa-key-mode, epa-info-mode):
9110 Use define-derived-mode.
9111
9112 * epg.el (epg-start-encrypt): Minor CSE simplification.
9113
9114 2013-09-06 William Xu <william.xwl@gmail.com>
9115
9116 * arc-mode.el: Add support for 7za (bug#15264).
9117 (archive-7z-program): New var.
9118 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
9119 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
9120 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
9121
9122 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
9123
9124 Remove URL syntax.
9125
9126 * net/tramp.el (tramp-syntax, tramp-prefix-format)
9127 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
9128 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
9129 (tramp-postfix-host-format, tramp-file-name-regexp)
9130 (tramp-completion-file-name-regexp)
9131 (tramp-completion-dissect-file-name)
9132 (tramp-handle-substitute-in-file-name): Remove 'url case.
9133 (tramp-file-name-regexp-url)
9134 (tramp-completion-file-name-regexp-url): Remove constants.
9135
9136 2013-09-06 Glenn Morris <rgm@gnu.org>
9137
9138 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
9139
9140 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
9141
9142 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
9143 keywords" below "here-doc beginnings" (Bug#15270).
9144
9145 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9146
9147 * subr.el (pop): Use `car-safe'.
9148 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
9149 to detect unused `pop' return value.
9150
9151 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
9152 var `block-regexp'.
9153 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
9154 (python-fill-string): Remove unused var `marker'.
9155 (python-skeleton-add-menu-items): Remove unused var `items'.
9156
9157 * international/mule-cmds.el: Require CL.
9158 (find-coding-systems-for-charsets): Avoid add-to-list.
9159 (sanitize-coding-system-list): New function, extracted from
9160 select-safe-coding-system-interactively.
9161 (select-safe-coding-system-interactively): Use it.
9162 (read-input-method-name): Accept symbols for `default'.
9163
9164 * emacs-lisp/advice.el (defadvice): Add indent rule.
9165
9166 2013-09-05 Daniel Hackney <dan@haxney.org>
9167
9168 * dired-x.el:
9169 * net/ange-ftp.el:
9170 * net/browse-url.el:
9171 * net/dbus.el:
9172 * net/eudc.el:
9173 * net/eudcb-ldap.el:
9174 * net/eww.el:
9175 * net/imap.el:
9176 * printing.el:
9177 * vc/ediff-diff.el:
9178 * vc/ediff-init.el:
9179 * vc/ediff-merg.el:
9180 * vc/ediff-mult.el:
9181 * vc/ediff-util.el:
9182 * vc/ediff-wind.el:
9183 * vc/ediff.el:
9184 * vc/emerge.el:
9185 * vc/pcvs.el:
9186 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
9187 byte compiler. Remove some unused let-bound variables.
9188
9189 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9190
9191 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
9192 a "ref-cell", since it gets better optimized (bug#14883).
9193
9194 2013-09-05 Glenn Morris <rgm@gnu.org>
9195
9196 * progmodes/cc-awk.el (c-forward-sws): Declare.
9197
9198 2013-09-04 Glenn Morris <rgm@gnu.org>
9199
9200 * generic-x.el [rul-generic-mode]: Require cc-mode.
9201 (c++-mode-syntax-table): Declare.
9202 (rul-generic-mode-syntax-table): Init in the defvar.
9203
9204 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9205
9206 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
9207 (vc-do-command, vc-set-async-update):
9208 * vc/vc-mtn.el (vc-mtn-dir-status):
9209 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
9210 (vc-hg-pull, vc-hg-merge-branch):
9211 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
9212 (vc-git-merge-branch):
9213 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
9214 (vc-cvs-dir-status-files):
9215 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
9216 (vc-bzr-dir-status-files):
9217 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
9218 * vc/vc-annotate.el: Use lexical-binding.
9219 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
9220 (vc-sentinel-movepoint): Declare.
9221 (vc-annotate): Don't use `goto-line'.
9222 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
9223 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
9224 (vc-sentinel-movepoint): Declare.
9225 * vc/vc-svn.el: Use lexical-binding.
9226 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
9227 * vc/vc-sccs.el:
9228 * vc/vc-rcs.el: Use lexical-binding.
9229
9230 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
9231 `deleted'. Don't drop errors silently.
9232
9233 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
9234
9235 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
9236
9237 * vc/vc.el (vc-ignore): Rewrite.
9238 (vc-default-ignore): New function.
9239 (vc-default-ignore-completion-table): Use find-ignore-file.
9240
9241 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
9242 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
9243 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
9244 Remove. Most code moved to vc.el.
9245
9246 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
9247
9248 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
9249 * net/tramp-smb.el (tramp-smb-get-file-entries):
9250 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
9251 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
9252
9253 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
9254 Update call to it.
9255 (eww-change-select): Remove unused var `properties'.
9256 (eww-make-unique-file-name): Remove unused var `base'.
9257
9258 * finder.el (finder-compile-keywords): Don't mess with windows.
9259
9260 * calculator.el (calculator-funcall): Fix typo in last change.
9261
9262 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
9263
9264 * emacs-lisp/package.el (package-activate-1): Don't let a missing
9265 <pkg>-autoloads.el file stop us.
9266
9267 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
9268 warnings, and factor out common code.
9269
9270 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
9271
9272 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
9273 two-character operators and whether the character preceding them
9274 changes their meaning (Bug#15208).
9275
9276 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9277
9278 Format code sent to Python shell for robustness.
9279 * progmodes/python.el (python-shell-buffer-substring):
9280 New function.
9281 (python-shell-send-region, python-shell-send-buffer): Use it.
9282
9283 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
9284
9285 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
9286 * net/tramp.el (tramp-user-error): ... here.
9287 (tramp-find-method, tramp-check-proper-host)
9288 (tramp-dissect-file-name, tramp-debug-message)
9289 (tramp-handle-shell-command):
9290 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9291 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
9292
9293 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
9294
9295 2013-09-02 Martin Rudalics <rudalics@gmx.at>
9296
9297 * avoid.el (mouse-avoidance-point-position)
9298 (mouse-avoidance-too-close-p): Handle case where posn-at-point
9299 returns nil.
9300
9301 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9302
9303 * progmodes/python.el (python-shell-completion-get-completions):
9304 Drop use of deleted `comint-last-prompt-overlay'.
9305 (python-nav-if-name-main): New command.
9306
9307 2013-09-01 Glenn Morris <rgm@gnu.org>
9308
9309 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
9310 Avoid leading space in $wins. Otherwise the sed command used by
9311 eg compile-main ends up containing "/*.el". (Bug#15170)
9312
9313 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
9314
9315 2013-08-30 Glenn Morris <rgm@gnu.org>
9316
9317 * emacs-lisp/bytecomp.el (byte-recompile-directory):
9318 Fix is-this-a-directory logic. (Bug#15220)
9319
9320 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9321
9322 * textmodes/css-mode.el: Use SMIE.
9323 (css-smie-grammar): New var.
9324 (css-smie--forward-token, css-smie--backward-token)
9325 (css-smie-rules): New functions.
9326 (css-mode): Use them.
9327 (css-navigation-syntax-table): Remove var.
9328 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
9329 (css-indent-calculate, css-indent-line): Remove functions.
9330
9331 Misc changes to reduce use of `(lambda...); and other cleanups.
9332 * cus-edit.el: Use lexical-binding.
9333 (customize-push-and-save, customize-apropos)
9334 (custom-buffer-create-internal): Use closures.
9335 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
9336 * progmodes/ada-xref.el: Use setq.
9337 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
9338 * dframe.el: Use lexical-binding.
9339 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
9340 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
9341 * descr-text.el: Use lexical-binding.
9342 (describe-text-widget, describe-text-sexp, describe-property-list):
9343 Use closures.
9344 * comint.el (comint-history-isearch-push-state): Use a closure.
9345 * calculator.el: Use lexical-binding.
9346 (calculator-number-to-string): Make it work with lexical-binding.
9347 (calculator-funcall): Same and use cl-letf.
9348
9349 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
9350 (lisp--company-doc-string, lisp--company-location): New functions.
9351 (lisp-completion-at-point): Use them to improve Company support.
9352
9353 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
9354 params of lambda expressions.
9355 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
9356 (ruby-smie--opening-pipe-p): New function.
9357 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
9358 symbols and matched |...| for formal params.
9359 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
9360 from being treated as hanging. Handle "rescue".
9361
9362 2013-08-29 Glenn Morris <rgm@gnu.org>
9363
9364 * progmodes/cc-engine.el (c-pull-open-brace):
9365 Move definition before use.
9366
9367 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9368
9369 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
9370 are immutable. Don't use `unsafe' any more.
9371 (cl--defsubst-expand): Don't substitute at the same time as keeping
9372 a residual unused let-binding. Don't use `unsafe' any more.
9373
9374 2013-08-29 Glenn Morris <rgm@gnu.org>
9375
9376 * calendar/cal-china.el (calendar-chinese-year-cache):
9377 Recenter on 2015.
9378
9379 * nxml/nxml-util.el (nxml-debug-clear-inside):
9380 Use cl-loop rather than loop.
9381
9382 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
9383
9384 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
9385
9386 2013-08-28 Glenn Morris <rgm@gnu.org>
9387
9388 * progmodes/antlr-mode.el: No need to require cc-mode twice.
9389
9390 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
9391
9392 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
9393
9394 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9395
9396 * simple.el (repeat-complex-command--called-interactively-skip):
9397 New function.
9398 (repeat-complex-command): Use it (bug#14136).
9399
9400 * progmodes/cc-mode.el: Minor cleanup of var declarations.
9401 (c-define-abbrev-table): Add `doc' argument.
9402 (c-mode-abbrev-table, c++-mode-abbrev-table)
9403 (objc-mode-abbrev-table, java-mode-abbrev-table)
9404 (idl-mode-abbrev-table, pike-mode-abbrev-table)
9405 (awk-mode-abbrev-table): Use it.
9406 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
9407 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
9408 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
9409 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
9410 Move initialization into the declaration; and remove any
9411 autoload cookie.
9412
9413 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
9414 and dynamic let binding.
9415
9416 * vc/smerge-mode.el: Remove redundant :group args.
9417
9418 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
9419 to load-path.
9420
9421 2013-08-28 Juri Linkov <juri@jurta.org>
9422
9423 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
9424 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
9425 (isearch-other-meta-char): Handle an undefined shifted printing
9426 character by downshifting it. (Bug#15200)
9427
9428 2013-08-28 Juri Linkov <juri@jurta.org>
9429
9430 * isearch.el (isearch-search): Change regexp error message for
9431 non-regexp searches. (Bug#15166)
9432
9433 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
9434
9435 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
9436 for portability to hosts where /bin/sh has problems.
9437
9438 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9439
9440 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
9441
9442 2013-08-27 Juri Linkov <juri@jurta.org>
9443
9444 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
9445 in the keyboard macro. (Bug#15126)
9446
9447 2013-08-27 Juri Linkov <juri@jurta.org>
9448
9449 * isearch.el (isearch-quote-char): Comment out converting unibyte
9450 to multibyte, thus syncing with its `quoted-insert' counterpart.
9451 (Bug#15166)
9452
9453 2013-08-27 Martin Rudalics <rudalics@gmx.at>
9454
9455 * window.el (display-buffer-use-some-window): Add missing
9456 argument in call of get-largest-window (Bug#15185).
9457 Reported by Stephen Leake.
9458
9459 2013-08-27 Glenn Morris <rgm@gnu.org>
9460
9461 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
9462
9463 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9464
9465 * progmodes/python.el (python-font-lock-keywords): Don't return nil
9466 from a matcher-function unless there's no more matches (bug#15161).
9467
9468 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
9469
9470 * minibuffer.el: Revert change from 2013-08-20.
9471
9472 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
9473 with text property `tramp-default', if appropriate.
9474 (tramp-check-proper-host): New defun.
9475 (tramp-dissect-file-name): Do not check hostname. Revert change
9476 of 2013-03-18.
9477 (tramp-backtrace): Make VEC-OR-PROC optional.
9478
9479 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9480 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9481 * net/tramp-sh.el (tramp-maybe-open-connection):
9482 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9483 Apply `tramp-check-proper-host'.
9484
9485 2013-08-26 Tassilo Horn <tsdh@gnu.org>
9486
9487 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
9488 lambda expression in order to have `describe-variable' display it.
9489
9490 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
9491
9492 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
9493 BUF can be optional. (Bug#15186)
9494
9495 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
9496
9497 * progmodes/flymake.el (flymake-get-real-file-name-function):
9498 Fix broken customization. (Bug#15184)
9499
9500 2013-08-25 Alan Mackenzie <acm@muc.de>
9501
9502 Improve indentation of bracelists defined by macros (without "=").
9503
9504 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
9505 expansion begins with "{", regard it as bracelist when it doesn't
9506 contain a ";".
9507
9508 Parse C++ inher-intro when there's a template split over 2 lines.
9509
9510 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
9511 rigorously the search for "class" etc. followed by ":".
9512
9513 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
9514 random languages a regexp which never matches rather than nil.
9515
9516 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
9517
9518 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
9519 (c-awk-regexp-one-line-possibly-open-char-list-re)
9520 (c-awk-one-line-possibly-open-regexp-re)
9521 (c-awk-one-line-non-syn-ws*-re): Remove.
9522 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
9523 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
9524 (c-awk-space*-unclosed-regexp-/-re): New constants.
9525 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
9526 aren't regexp delimiters.
9527
9528 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
9529 handling for a rare situation in AWK Mode involving unterminated
9530 strings/regexps.
9531
9532 2013-08-23 Glenn Morris <rgm@gnu.org>
9533
9534 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
9535
9536 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
9537
9538 * files.el (create-file-buffer): If the result would begin with
9539 spaces, prepend a "|" instead of removing them. (Bug#15162)
9540
9541 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9542
9543 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
9544 text-properties (bug#15155).
9545
9546 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
9547 exist any more.
9548 (calc-keypad-redraw): Remove unused var `pad'.
9549 (calc-keypad-press): Remove unused var `menu'.
9550
9551 2013-08-23 Martin Rudalics <rudalics@gmx.at>
9552
9553 * window.el (display-buffer-pop-up-frame):
9554 Call pop-up-frame-function with BUFFER current so `make-frame' will
9555 use it as the new frame's buffer (Bug#15133).
9556
9557 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9558
9559 * calendar/timeclock.el: Minor cleanups.
9560 (timeclock-ask-before-exiting, timeclock-use-display-time):
9561 Use `symbol'.
9562 (timeclock-modeline-display): Define as alias before the
9563 actual definition.
9564 (timeclock-mode-line-display): Use define-minor-mode.
9565 (timeclock-day-list-template): Make it a function, add an argument.
9566 (timeclock-day-list-required, timeclock-day-list-length)
9567 (timeclock-day-list-debt, timeclock-day-list-span)
9568 (timeclock-day-list-break): Adjust calls accordingly.
9569
9570 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
9571
9572 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
9573 Use read--expression so that completion works again.
9574
9575 2013-08-21 Sam Steingold <sds@gnu.org>
9576
9577 Add rudimentary inferior shell interaction
9578 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
9579 (sh-set-shell): Reset it.
9580 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
9581 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
9582
9583 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
9584
9585 * align.el: Use lexical-binding.
9586 (align-region): Simplify accordingly.
9587
9588 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
9589
9590 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
9591
9592 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
9593 `non-essential' up.
9594
9595 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
9596
9597 * net/tramp.el:
9598 * net/tramp-adb.el:
9599 * net/tramp-cmds.el:
9600 * net/tramp-ftp.el:
9601 * net/tramp-gvfs.el:
9602 * net/tramp-gw.el:
9603 * net/tramp-sh.el: Don't wrap external variable declarations by
9604 `eval-when-compile'.
9605
9606 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
9607
9608 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
9609 now that Emacs supports ImageMagick animations.
9610
9611 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
9612
9613 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
9614 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
9615
9616 2013-08-16 Martin Rudalics <rudalics@gmx.at>
9617
9618 * window.el (mouse-autoselect-window-select): Do autoselect when
9619 mouse pointer is on margin.
9620
9621 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
9622
9623 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
9624
9625 2013-08-16 Glenn Morris <rgm@gnu.org>
9626
9627 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
9628 Handle "Remote Directory" response of some clients. (Bug#15058)
9629
9630 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
9631 Tweak warning. (Bug#14926)
9632
9633 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
9634 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
9635
9636 * image-mode.el (image-mode-map): Add menu items to reverse,
9637 increase, decrease, reset animation speed.
9638 (image--set-speed, image-increase-speed, image-decrease-speed)
9639 (image-reverse-speed, image-reset-speed): New functions.
9640 (image-mode-map): Add bindings for speed commands.
9641
9642 * image.el (image-animate-get-speed, image-animate-set-speed):
9643 New functions.
9644 (image-animate-timeout): Respect image :speed property.
9645
9646 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9647
9648 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
9649 previous line (bug#15101).
9650 (debugger-eval-expression, debugger-record-expression):
9651 Use read--expression (bug#15102).
9652
9653 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
9654
9655 Remove byte compiler warnings, visible when compiling with
9656 `byte-compile-force-lexical-warnings' set to t.
9657
9658 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
9659 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
9660 (tramp-handle-unhandled-file-name-directory)
9661 (tramp-handle-file-notify-add-watch, tramp-action-login)
9662 (tramp-action-succeed, tramp-action-permission-denied)
9663 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
9664 arguments with "_".
9665
9666 * net/tramp-adb.el (tramp-adb-parse-device-names)
9667 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
9668 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
9669 (tramp-adb-handle-file-truename): Remove unused arguments.
9670
9671 * net/tramp-cache.el (tramp-flush-directory-property)
9672 (tramp-flush-connection-property, tramp-list-connections)
9673 (tramp-parse-connection-properties): Prefix unused arguments with "_".
9674
9675 * net/tramp-compat.el (tramp-compat-make-temp-file):
9676 Rename FILENAME to F.
9677
9678 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
9679 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
9680 (tramp-zeroconf-parse-workstation-device-names)
9681 (tramp-zeroconf-parse-webdav-device-names)
9682 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
9683
9684 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
9685 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
9686
9687 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
9688 arguments.
9689 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
9690 (tramp-sh-handle-insert-file-contents-literally)
9691 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
9692 with "_".
9693 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
9694 Remove unused variables.
9695
9696 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
9697 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
9698 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
9699
9700 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
9701 Make them a defconst.
9702 (tramp-uuencode-region): Remove unused variable.
9703
9704 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
9705
9706 * frameset.el (frameset--prop-setter): New function.
9707 (frameset-prop): Add gv-setter declaration.
9708 (frameset-filter-minibuffer): Deal with the case that the minibuffer
9709 parameter was already set in FILTERED. Doc fix.
9710 (frameset--record-minibuffer-relationships): Allow saving a
9711 minibufferless frame without its corresponding minibuffer frame.
9712 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
9713 frame, if the frame id matches.
9714 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
9715 frames before orphaned ones.
9716 (frameset-restore): Warn about orphaned windows, instead of error out.
9717
9718 2013-08-14 Martin Rudalics <rudalics@gmx.at>
9719
9720 * window.el (window-make-atom): Don't overwrite parameter
9721 already present.
9722 (display-buffer-in-atom-window): Handle special case where we
9723 split an already atomic window.
9724 (window--major-non-side-window, display-buffer-in-side-window)
9725 (window--side-check): Ignore minibuffer window when walking
9726 window tree.
9727 (window-deletable-p): Return 'frame only if no other frame uses
9728 our minibuffer window.
9729 (record-window-buffer): Run buffer-list-update-hook.
9730 (split-window): Make sure window--check-frame won't destroy an
9731 existing atomic window in case the new window gets nested
9732 inside.
9733 (display-buffer-at-bottom): Ignore minibuffer window when
9734 walking window tree. Don't split a side window.
9735 (pop-to-buffer): Don't set-buffer here, the select-window call
9736 should do that.
9737 (mouse-autoselect-window-select): Autoselect only if we are in the
9738 text portion of the window.
9739
9740 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9741
9742 * net/shr.el (shr-parse-image-data): New function to grab both the
9743 data itself and the Content-Type.
9744 (shr-put-image): Use it.
9745
9746 * net/eww.el (eww-display-image): Ditto.
9747
9748 * image.el (image-content-type-suffixes): New variable.
9749
9750 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
9751
9752 * progmodes/python.el (python-imenu--build-tree)
9753 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
9754
9755 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
9756
9757 * simple.el (backward-word): Mention the optional argument.
9758
9759 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
9760
9761 * frameset.el (frameset--make): Rename constructor from make-frameset.
9762 (frameset-p, frameset-valid-p): Don't autoload.
9763 (frameset-valid-p): Use normal accessors.
9764
9765 2013-08-13 Glenn Morris <rgm@gnu.org>
9766
9767 * progmodes/compile.el (compile-command): Tweak example in doc.
9768 * obsolete/scribe.el (scribe-mode):
9769 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
9770
9771 * mail/feedmail.el (feedmail-confirm-outgoing)
9772 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
9773
9774 * cus-start.el (truncate-partial-width-windows): Fix type.
9775
9776 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
9777
9778 * net/shr.el (shr-table-horizontal-line): Fix custom type.
9779
9780 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
9781
9782 * emacs-lisp/timer.el (timer--time-setter): New function.
9783 (timer--time): Use it as gv-setter.
9784
9785 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
9786 setter is not a symbol.
9787
9788 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
9789
9790 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
9791 if sending fails. This makes debugging easier.
9792
9793 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
9794
9795 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
9796 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
9797 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
9798
9799 2013-08-12 Eli Zaretskii <eliz@gnu.org>
9800
9801 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
9802
9803 2013-08-12 Glenn Morris <rgm@gnu.org>
9804
9805 * format.el (format-annotate-function):
9806 Handle read-only text properties in the source. (Bug#14887)
9807
9808 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9809
9810 * net/eww.el (eww-display-html): Ignore coding system errors.
9811 One web site uses "utf-8lias" as the coding system.
9812
9813 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
9814
9815 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
9816
9817 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
9818
9819 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
9820 (tutorial--detailed-help): Remove unused local variables.
9821 (tutorial--save-tutorial-to): Use ignore-errors.
9822 (help-with-tutorial): Use looking-at-p.
9823
9824 * view.el (view-buffer-other-window, view-buffer-other-frame):
9825 Mark unused arguments.
9826
9827 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
9828 (woman-select-symbol-fonts, woman, woman-find-file)
9829 (woman-insert-file-contents, woman-non-underline-faces):
9830 Use string-match-p.
9831 (woman1-unquote): Move declaration.
9832
9833 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
9834 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
9835 argument. Remove unused local variable.
9836 (xml-parse-elem-type): Use string-match-p.
9837 (xml-substitute-numeric-entities): Use ignore-errors.
9838
9839 * calculator.el (calculator): Mark unused argument.
9840 (calculator-paste, calculator-quit, calculator-integer-p):
9841 Use ignore-errors.
9842 (calculator-string-to-number, calculator-decimal, calculator-exp)
9843 (calculator-op-or-exp): Use string-match-p.
9844
9845 * dired.el (dired-buffer-more-recently-used-p): Declare.
9846 (dired-insert-set-properties, dired-insert-old-subdirs):
9847 Use ignore-errors.
9848
9849 * dired-aux.el (dired-compress): Use ignore-errors.
9850 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
9851 (dired-do-async-shell-command, dired-do-shell-command)
9852 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
9853 (dired-insert-subdir-validate): Use string-match-p.
9854 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
9855 (dired-add-entry): Use string-match-p, looking-at-p.
9856 (dired-insert-subdir-newpos): Remove unused local variable.
9857
9858 * filenotify.el (file-notify-callback): Remove unused local variable.
9859
9860 * filesets.el (filesets-error): Mark unused argument.
9861 (filesets-which-command-p, filesets-filter-dir-names)
9862 (filesets-directory-files, filesets-get-external-viewer)
9863 (filesets-ingroup-get-data): Use string-match-p.
9864
9865 * find-file.el (ff-other-file-name, ff-other-file-name)
9866 (ff-find-the-other-file, ff-cc-hh-converter):
9867 Remove unused local variables.
9868 (ff-get-file-name): Use string-match-p.
9869 (ff-all-dirs-under): Use ignore-errors.
9870
9871 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
9872 (follow-select-if-visible): Remove unused local variable.
9873
9874 * forms.el (read-file-filter): Move declaration.
9875 (forms--make-format, forms--make-parser, forms-insert-record):
9876 Quote function with #'.
9877 (forms--update): Use string-match-p. Quote function with #'.
9878
9879 * help-mode.el (help-dir-local-var-def): Mark unused argument.
9880 (help-make-xrefs): Use looking-at-p.
9881 (help-xref-on-pp): Use looking-at-p, ignore-errors.
9882
9883 * ibuffer.el (ibuffer-ext-visible-p): Declare.
9884 (ibuffer-confirm-operation-on): Use string-match-p.
9885
9886 * msb.el (msb-item-handler, msb-dired-item-handler):
9887 Mark unused arguments.
9888
9889 * ses.el (ses-decode-cell-symbol)
9890 (ses-kill-override): Remove unused local variable.
9891 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
9892 (ses-load): Use ignore-errors, looking-at-p.
9893 (ses-jump-safe): Use ignore-errors.
9894 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
9895
9896 * tabify.el (untabify, tabify): Mark unused arguments.
9897
9898 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
9899 Mark unused argument.
9900 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
9901 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
9902
9903 * emacs-lisp/timer.el (timer--time): Define setter with
9904 gv-define-setter to avoid deprecation warning.
9905
9906 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
9907 (*record-cmpl-statistics-p*): Remove (was commented out).
9908 (cmpl-statistics-block): Remove (body was commented out).
9909 All callers changed.
9910 (add-completions-from-buffer, load-completions-from-file):
9911 Remove unused variables.
9912
9913 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
9914
9915 * filecache.el (file-cache-delete-file-list):
9916 Print message only when told so.
9917 (file-cache-files-matching): Use #' in mapconcat argument.
9918
9919 * ffap.el (ffap-url-at-point): Fix reference to variable
9920 thing-at-point-default-mail-uri-scheme.
9921
9922 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
9923
9924 * subr.el (define-error): New function.
9925 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
9926 error-file-not-found and define with define-error.
9927 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
9928 and define with define-error.
9929 * userlock.el (file-locked, file-supersession):
9930 * simple.el (mark-inactive):
9931 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
9932 * progmodes/ada-mode.el (ada-mode-errors):
9933 * play/life.el (life-extinct):
9934 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
9935 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
9936 * nxml/rng-util.el (rng-error):
9937 * nxml/rng-uri.el (rng-uri-error):
9938 * nxml/rng-match.el (rng-compile-error):
9939 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
9940 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
9941 * nxml/nxml-rap.el (nxml-scan-error):
9942 * nxml/nxml-outln.el (nxml-outline-error):
9943 * net/soap-client.el (soap-error):
9944 * net/gnutls.el (gnutls-error):
9945 * net/ange-ftp.el (ftp-error):
9946 * mpc.el (mpc-proc-error):
9947 * json.el (json-error, json-readtable-error, json-unknown-keyword)
9948 (json-number-format, json-string-escape, json-string-format)
9949 (json-key-format, json-object-format):
9950 * jka-compr.el (compression-error):
9951 * international/quail.el (quail-error):
9952 * international/kkc.el (kkc-error):
9953 * emacs-lisp/ert.el (ert-test-failed):
9954 * calc/calc.el (calc-error, inexact-result, math-overflow)
9955 (math-underflow):
9956 * bookmark.el (bookmark-error-no-filename):
9957 * epg.el (epg-error): Define with define-error.
9958
9959 * time.el (display-time-event-handler)
9960 (display-time-next-load-average): Don't call sit-for since it seems
9961 unnecessary (bug#15045).
9962
9963 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
9964 Use #' instead of ' to quote functions.
9965 (checkdoc-output-mode): Use setq-local.
9966 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
9967 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
9968 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
9969 (checkdoc-ispell, checkdoc-ispell-current-buffer)
9970 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
9971 (checkdoc-ispell-message-text, checkdoc-ispell-start)
9972 (checkdoc-ispell-continue, checkdoc-ispell-comments)
9973 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
9974
9975 * ido.el (ido-completion-help): Fix up compiler warning.
9976
9977 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
9978
9979 * frameset.el (frameset-p): Add autoload cookie.
9980 (frameset--jump-to-register): New function, based on code moved from
9981 register.el.
9982 (frameset-to-register): Move from register.el. Adapt to `registerv'.
9983
9984 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
9985 (frameset-restore, frameset-save, frameset-session-filter-alist):
9986 Remove declarations.
9987 (register-alist): Doc fix.
9988 (frameset-to-register): Move to frameset.el.
9989 (jump-to-register, describe-register-1): Remove frameset-specific code.
9990
9991 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9992
9993 * allout-widgets.el (allout-widgets-pre-command-business)
9994 (allout-widgets-post-command-business)
9995 (allout-widgets-after-change-handler)
9996 (allout-decorate-item-and-context, allout-set-boundary-marker)
9997 (allout-body-modification-handler)
9998 (allout-graphics-modification-handler): Mark ignored arguments.
9999 (allout-widgets-post-command-business)
10000 (allout-widgets-exposure-change-processor)
10001 (allout-widgets-exposure-undo-processor)
10002 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
10003 (allout-parse-item-at-point, allout-decorate-item-guides)
10004 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
10005 * allout.el (epa-passphrase-callback-function): Declare.
10006 (allout-overlay-insert-in-front-handler)
10007 (allout-overlay-interior-modification-handler)
10008 (allout-isearch-end-handler, allout-chart-siblings)
10009 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
10010 (allout-yank-processing, allout-process-exposed)
10011 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
10012 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
10013 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
10014 (lisp-indent-defform): Mark ignored arguments.
10015 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
10016 (calculate-lisp-indent): Remove unused variables.
10017 * international/characters.el (indian-2-column, arabic-2-column)
10018 (tibetan): Mark ignored arguments.
10019 (use-cjk-char-width-table): Mark ignored arguments.
10020 Remove unused variables.
10021 * international/fontset.el (build-default-fontset-data)
10022 (x-compose-font-name, create-fontset-from-fontset-spec):
10023 Mark ignored arguments.
10024 (fontset-plain-name): Remove unused variables.
10025 * international/mule.el (charset-id, charset-bytes, generic-char-p)
10026 (keyboard-coding-system): Mark ignored arguments.
10027 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
10028 * help.el (resize-temp-buffer-window):
10029 * window.el (display-buffer-in-major-side-window)
10030 (display-buffer-in-side-window, display-buffer-in-previous-window):
10031 Remove unused variables.
10032 * isearch.el (isearch-forward-symbol):
10033 * version.el (emacs-bzr-version-bzr):
10034 * international/mule-cmds.el (current-language-environment):
10035 * term/common-win.el (x-handle-iconic, x-handle-geometry)
10036 (x-handle-display):
10037 * term/pc-win.el (x-list-fonts, x-display-planes)
10038 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
10039 (x-server-version, x-display-screens, x-display-mm-height)
10040 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
10041 (x-selection-owner-p, x-own-selection-internal)
10042 (x-disown-selection-internal, x-get-selection-internal)
10043 (msdos-initialize-window-system):
10044 * term/tty-colors.el (tty-color-alist, tty-color-clear):
10045 * term/x-win.el (x-handle-no-bitmap-icon):
10046 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
10047 (vc-default-find-file-hook, vc-default-extra-menu):
10048 Mark ignored arguments.
10049
10050 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10051
10052 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
10053 break-condition in the context of the debugged code (bug#12685).
10054
10055 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
10056
10057 * comint.el:
10058 Do not use an overlay to highlight the last prompt. (Bug#14744)
10059 (comint-mode): Make comint-last-prompt buffer local.
10060 (comint-last-prompt): New variable.
10061 (comint-last-prompt-overlay): Remove. Superseded by
10062 comint-last-prompt.
10063 (comint-snapshot-last-prompt, comint-output-filter):
10064 Use comint-last-prompt.
10065
10066 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10067
10068 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
10069 (frameset-save): Check validity of the resulting frameset.
10070
10071 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
10072
10073 * ido.el (ido-record-command): Add doc string.
10074
10075 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10076
10077 * frameset.el (frameset): Do not disable creation of the default
10078 frameset-p predicate. Doc fix.
10079 (frameset-valid-p): New function, copied from the old predicate-p.
10080 Add additional checks.
10081 (frameset-restore): Check with frameset-valid-p.
10082 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
10083 (frameset-name, frameset-description, frameset-properties)
10084 (frameset-states): Add docstring.
10085 (frameset-session-filter-alist, frameset-persistent-filter-alist)
10086 (frameset-filter-alist): Doc fixes.
10087
10088 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10089
10090 * frameset.el (frameset-p, frameset-prop): Doc fixes.
10091
10092 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10093
10094 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
10095 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
10096 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
10097 (byte-compile-normal-call): Remove obsolescence check.
10098
10099 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10100
10101 * frameset.el (frameset-restore): Doc fix.
10102
10103 * register.el (frameset-frame-id, frameset-frame-with-id)
10104 (frameset-p, frameset-restore, frameset-save): Declare.
10105 (register-alist): Document framesets.
10106 (frameset-session-filter-alist): Declare.
10107 (frameset-to-register): New function.
10108 (jump-to-register): Implement jumping to framesets. Doc fix.
10109 (describe-register-1): Describe framesets.
10110
10111 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
10112
10113 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
10114
10115 * desktop.el (desktop-save-frameset): Use new frameset-save args.
10116 Use lexical-binding.
10117
10118 * frameset.el (frameset): Use type vector, not list (incompatible
10119 change). Do not declare a new constructor, use the default one.
10120 Upgrade suggested properties `app', `name' and `desc' to slots `app',
10121 `name' and `description', respectively, and add read-only slot
10122 `timestamp'. Doc fixes.
10123 (frameset-copy, frameset-persistent-filter-alist)
10124 (frameset-filter-alist, frameset-switch-to-gui-p)
10125 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
10126 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
10127 (frameset-filter-iconified, frameset-keep-original-display-p):
10128 Doc fixes.
10129 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
10130 Rename from frameset-filter-(save|restore)-param. All callers changed.
10131 Doc fix.
10132 (frameset-p): Adapt to change to vector and be more thorough.
10133 Change arg name to OBJECT. Doc fix.
10134 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
10135 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
10136 All callers changed.
10137 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
10138 All callers changed.
10139 (frameset--record-minibuffer-relationships): Rename from
10140 frameset--process-minibuffer-frames. All callers changed.
10141 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
10142 Use new default constructor (again). Doc fix.
10143 (frameset--find-frame-if): Rename from `frameset--find-frame'.
10144 All callers changed.
10145 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
10146 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
10147 Doc fix.
10148 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
10149 PARAMETERS and WINDOW-STATE, respectively.
10150 (frameset-restore): Add new keyword argument PREDICATE.
10151 Reset frameset--target-display to nil. Doc fix.
10152
10153 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10154
10155 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
10156 (bat-mode): Use it.
10157 (bat-mode-syntax-table): Mark \n as end-of-comment.
10158 (bat-font-lock-keywords): Remove comment rule.
10159
10160 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
10161 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
10162
10163 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
10164 (byte-compile-callargs-warn): Use `push'.
10165 (byte-compile-arglist-warn): Ignore higher-order "calls".
10166 (byte-compile-file-form-autoload): Use `pcase'.
10167 (byte-compile-function-form): If quoting a symbol, check that it exists.
10168
10169 2013-08-07 Eli Zaretskii <eliz@gnu.org>
10170
10171 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
10172 and add a few popular commands found in batch files.
10173 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
10174 (dos-mode): Doc fixes.
10175
10176 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10177
10178 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
10179 (dos-mode): Use setq-local. Add space after "rem".
10180 (dos-mode-syntax-table): Don't use "w" for symbol chars.
10181 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
10182
10183 2013-08-07 Arni Magnusson <arnima@hafro.is>
10184
10185 * progmodes/dos.el: New file.
10186 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
10187 dos-mode.
10188
10189 2013-08-06 Glenn Morris <rgm@gnu.org>
10190
10191 * calendar/calendar.el: Add new faces, and day-header-array.
10192 (calendar-weekday-header, calendar-weekend-header)
10193 (calendar-month-header): New faces.
10194 (calendar-day-header-construct): New function.
10195 (calendar-day-header-width): Also :set calendar-day-header-array.
10196 (calendar-american-month-header, calendar-european-month-header)
10197 (calendar-iso-month-header): Use calendar- faces.
10198 (calendar-generate-month):
10199 Use calendar-day-header-array for day headers; apply faces to them.
10200 (calendar-mode): Check calendar-font-lock-keywords non-nil.
10201 (calendar-abbrev-construct): Add optional maxlen argument.
10202 (calendar-day-name-array): Doc fix.
10203 (calendar-day-name-array, calendar-abbrev-length)
10204 (calendar-day-abbrev-array):
10205 Also :set calendar-day-header-array, and maybe redraw.
10206 (calendar-day-header-array): New option. (Bug#15007)
10207 (calendar-font-lock-keywords): Set to nil and make obsolete.
10208 (calendar-day-name): Add option to use header array.
10209
10210 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10211
10212 * net/shr.el (shr-render-td): Remove debugging.
10213 (shr-render-td): Make width computation consistent by defaulting
10214 all zero-width columns to 10 characters. This may not be optimal,
10215 but it's at least consistent.
10216 (shr-make-table-1): Redo last change to fix the real problem in
10217 colspan handling.
10218
10219 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10220
10221 * files.el (cache-long-line-scans):
10222 Make obsolete alias to `cache-long-scans'.
10223
10224 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10225
10226 * frameset.el (frameset, frameset-filter-alist)
10227 (frameset-filter-params, frameset-save, frameset--reuse-frame)
10228 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
10229 (frameset-compute-pos): Rename from frameset--compute-pos,
10230 and add docstring.
10231 (frameset-move-onscreen): Use frameset-compute-pos.
10232 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10233
10234 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
10235 Fix typos in docstrings.
10236
10237 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10238
10239 * frame.el (get-other-frame): Tiny cleanup.
10240
10241 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10242
10243 * vc/vc.el (vc-default-ignore-completion-table):
10244 Silence byte-compiler warning.
10245
10246 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
10247 slot, which can indeed be nil.
10248 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10249 Move entry for `left' from persistent to live filter alist.
10250 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
10251 Doc fixes.
10252 (frameset-filter-params): When restoring a frame, copy items added to
10253 `filtered', to avoid unwittingly modifying the original parameters.
10254 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
10255 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
10256
10257 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
10258 to use looking-at-p instead of looking-at. (Bug#15028)
10259
10260 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10261
10262 Revert introduction of isearch-filter-predicates (bug#14714).
10263 Rely on add-function instead.
10264 * isearch.el (isearch-filter-predicates): Rename it back to
10265 isearch-filter-predicate.
10266 (isearch-message-prefix): Use advice-function-mapc and advice
10267 properties to get the isearch-message-prefix.
10268 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
10269 instead of run-hook-with-args-until-failure.
10270 (isearch-filter-visible): Not obsolete any more.
10271 * loadup.el: Preload nadvice.
10272 * replace.el (perform-replace): Revert to funcall
10273 instead of run-hook-with-args-until-failure.
10274 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
10275 * dired-aux.el (dired-isearch-filenames-mode): Rename from
10276 dired-isearch-filenames-toggle; make it into a proper minor mode.
10277 Use add/remove-function.
10278 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
10279 Call the minor-mode rather than add/remove-hook.
10280 (dired-isearch-filter-filenames):
10281 Remove isearch-message-prefix property.
10282 * info.el (Info--search-loop): New function, extracted from Info-search.
10283 Funcall isearch-filter-predicate instead of
10284 run-hook-with-args-until-failure isearch-filter-predicates.
10285 (Info-search): Use it.
10286 (Info-mode): Use isearch-filter-predicate instead of
10287 isearch-filter-predicates.
10288
10289 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
10290
10291 Do not call to `selected-window' where it is assumed by default.
10292 Affected functions are `window-minibuffer-p', `window-dedicated-p',
10293 `window-hscroll', `window-width', `window-height', `window-buffer',
10294 `window-frame', `window-start', `window-point', `next-window'
10295 and `window-display-table'.
10296 * abbrev.el (abbrev--default-expand):
10297 * bs.el (bs--show-with-configuration):
10298 * buff-menu.el (Buffer-menu-mouse-select):
10299 * calc/calc.el (calc):
10300 * calendar/calendar.el (calendar-generate-window):
10301 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
10302 (diary-make-entry):
10303 * comint.el (send-invisible, comint-dynamic-complete-filename)
10304 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
10305 * completion.el (complete):
10306 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
10307 * disp-table.el (describe-current-display-table):
10308 * doc-view.el (doc-view-insert-image):
10309 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
10310 * ehelp.el (with-electric-help):
10311 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10312 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
10313 * emacs-lisp/helper.el (Helper-help-scroller):
10314 * emulation/cua-base.el (cua--post-command-handler-1):
10315 * eshell/esh-mode.el (eshell-output-filter):
10316 * ffap.el (ffap-gnus-wrapper):
10317 * help-macro.el (make-help-screen):
10318 * hilit-chg.el (highlight-compare-buffers):
10319 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
10320 * hl-line.el (global-hl-line-highlight):
10321 * icomplete.el (icomplete-simple-completing-p):
10322 * isearch.el (isearch-done):
10323 * jit-lock.el (jit-lock-stealth-fontify):
10324 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
10325 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
10326 * mpc.el (mpc-tagbrowser, mpc):
10327 * net/rcirc.el (rcirc-any-buffer):
10328 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
10329 * play/landmark.el (landmark-max-width, landmark-max-height):
10330 * play/zone.el (zone):
10331 * progmodes/compile.el (compilation-goto-locus):
10332 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
10333 * progmodes/etags.el (find-tag-other-window):
10334 * progmodes/fortran.el (fortran-column-ruler):
10335 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10336 * progmodes/verilog-mode.el (verilog-point-text):
10337 * reposition.el (reposition-window):
10338 * rot13.el (toggle-rot13-mode):
10339 * server.el (server-switch-buffer):
10340 * shell.el (shell-dynamic-complete-command)
10341 (shell-dynamic-complete-environment-variable):
10342 * simple.el (insert-buffer, set-selective-display)
10343 (delete-completion-window):
10344 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
10345 (speedbar-recenter):
10346 * startup.el (fancy-splash-head):
10347 * textmodes/ispell.el (ispell-command-loop):
10348 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
10349 * tutorial.el (help-with-tutorial):
10350 * vc/add-log.el (add-change-log-entry):
10351 * vc/compare-w.el (compare-windows):
10352 * vc/ediff-help.el (ediff-indent-help-message):
10353 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
10354 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
10355 (ediff-setup-control-frame):
10356 * vc/emerge.el (emerge-position-region):
10357 * vc/pcvs-util.el (cvs-bury-buffer):
10358 * window.el (walk-windows, mouse-autoselect-window-select):
10359 * winner.el (winner-set-conf, winner-undo): Related users changed.
10360
10361 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
10362
10363 * frameset.el (frameset--set-id): Doc fix.
10364 (frameset-frame-id, frameset-frame-id-equal-p)
10365 (frameset-locate-frame-id): New functions.
10366 (frameset--process-minibuffer-frames, frameset--reuse-frame)
10367 (frameset-restore): Use them.
10368
10369 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
10370
10371 Do not call to `selected-frame' where it is assumed by default.
10372 Affected functions are `raise-frame', `redraw-frame',
10373 `frame-first-window', `frame-terminal' and `delete-frame'.
10374 * calendar/appt.el (appt-disp-window):
10375 * epg.el (epg-wait-for-completion):
10376 * follow.el (follow-delete-other-windows-and-split)
10377 (follow-avoid-tail-recenter):
10378 * international/mule.el (set-terminal-coding-system):
10379 * mail/rmail.el (rmail-mail-return):
10380 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
10381 * progmodes/f90.el (f90-add-imenu-menu):
10382 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
10383 * server.el (server-switch-buffer):
10384 * simple.el (delete-completion-window):
10385 * talk.el (talk):
10386 * term/xterm.el (terminal-init-xterm-modify-other-keys)
10387 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
10388 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
10389 * vc/ediff.el (ediff-documentation): Related users changed.
10390 * frame.el (selected-terminal): Remove the leftover.
10391
10392 2013-08-05 Glenn Morris <rgm@gnu.org>
10393
10394 * calendar/calendar.el (calendar-generate-month):
10395 Fix for calendar-column-width != 1 + calendar-day-digit-width.
10396 (calendar-generate-month, calendar-font-lock-keywords):
10397 Fix for calendar-day-header-width > length of any day name.
10398
10399 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
10400
10401 * desktop.el (desktop-clear): Use new name of sort predicate.
10402
10403 * frameset.el (frameset): Add docstring. Move :version property to its
10404 own `version' slot.
10405 (frameset-copy): Rename from copy-frameset.
10406 (frameset-p): Check more thoroughly.
10407 (frameset-prop): Do not check for :version, which is no longer a prop.
10408 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10409 Use new :never value instead of t.
10410 (frameset-filter-alist): Expand and clarify docstring.
10411 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
10412 (frameset-filter-minibuffer, frameset-filter-save-param)
10413 (frameset-filter-restore-param, frameset-filter-iconified):
10414 Add pointer to docstring of frameset-filter-alist.
10415 (frameset-filter-params): Rename filter values to be more meaningful:
10416 :never instead of t, and reverse the meanings of :save and :restore.
10417 (frameset--process-minibuffer-frames): Clarify error message.
10418 (frameset-save): Avoid unnecessary and confusing call to framep.
10419 Use new BOA constructor for framesets.
10420 (frameset--reuse-list): Doc fix.
10421 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
10422 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
10423 (frameset-minibufferless-first-p): Doc fix.
10424 Rename from frameset-sort-frames-for-deletion.
10425 (frameset-restore): Doc fixes. Use new function names.
10426 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10427
10428 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
10429
10430 * desktop.el (desktop-restore-forces-onscreen)
10431 (desktop-restore-reuses-frames): Document :keyword constant values.
10432 (desktop-filter-parameters-alist): Remove, now identical to
10433 frameset-filter-alist.
10434 (desktop--filter-tty*): Remove, moved to frameset.el.
10435 (desktop-save-frameset, desktop-restore-frameset):
10436 Do not pass :filters argument.
10437
10438 * frameset.el (frameset-live-filter-alist)
10439 (frameset-persistent-filter-alist): New variables.
10440 (frameset-filter-alist): Use them. Add autoload cookie.
10441 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
10442 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
10443 `frameset--id' (it's supposed to be internal to frameset.el).
10444 (frameset--process-minibuffer-frames): Ditto. Doc fix.
10445 (frameset--initial-params): New function.
10446 (frameset--get-frame): Use it. Doc fix.
10447 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
10448 Accept :all, not 'all.
10449 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
10450 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
10451 with fbound symbols. Fix frame id matching, and remove matching ids if
10452 the frame being restored is deleted. Obey :delete.
10453
10454 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
10455
10456 * subr.el (macrop): New function.
10457 (text-clone--maintaining): New var.
10458 (text-clone--maintain): Rename from text-clone-maintain. Use it
10459 instead of inhibit-modification-hooks.
10460
10461 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
10462 a proxy, so as handle autoloads and redefinitions of the target.
10463 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
10464
10465 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
10466 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
10467 (pcase--mutually-exclusive-p): New function.
10468 (pcase--split-consp): Use it.
10469 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
10470 mutually exclusive with the current predicate.
10471
10472 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
10473 (edebug-macrop): Remove. Use `macrop' instead.
10474 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
10475 (ad-macro-p):
10476 * eshell/esh-cmd.el (eshell-macrop):
10477 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
10478
10479 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
10480
10481 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
10482 (advice-mapc): New function, using it.
10483 (advice-function-member-p): New function.
10484 (advice--normalize): Store the cdr in advice--saved-rewrite since
10485 that's the part that will be changed.
10486 (advice--symbol-function): New function.
10487 (advice-remove): Handle removal before the function is defined.
10488 Adjust to new advice--saved-rewrite.
10489 (advice-member-p): Use advice-function-member-p and
10490 advice--symbol-function.
10491
10492 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
10493
10494 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
10495 (frameset-filter-minibuffer): Doc fix.
10496 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
10497 (frameset--set-id, frameset--process-minibuffer-frames)
10498 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
10499 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
10500
10501 * desktop.el (desktop-clear): Only delete frames when called
10502 interactively and desktop-restore-frames is non-nil. Doc fix.
10503 (desktop-read): Set desktop-saved-frameset to nil.
10504
10505 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
10506
10507 * vc/vc.el (vc-ignore): Rewrite.
10508 (vc-default-ignore-completion-table, vc--read-lines)
10509 (vc--add-line, vc--remove-regexp): New functions.
10510
10511 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
10512 (vc-svn-ignore-completion-table): New function.
10513
10514 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
10515 (vc-hg-ignore-completion-table)
10516 (vc-hg-find-ignore-file): New functions.
10517
10518 * vc/vc-git.el (vc-git-ignore): Rewrite.
10519 (vc-git-ignore-completion-table)
10520 (vc-git-find-ignore-file): New functions.
10521
10522 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
10523
10524 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
10525 (vc-bzr-ignore-completion-table)
10526 (vc-bzr-find-ignore-file): New functions.
10527
10528 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
10529
10530 * frameset.el (frameset-prop): New function and setter.
10531 (frameset-save): Do not modify frame list passed by the caller.
10532
10533 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10534
10535 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
10536
10537 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
10538
10539 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
10540 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
10541
10542 * custom.el (custom-initialize-default, custom-initialize-set)
10543 (custom-initialize-reset, custom-initialize-changed): Affect the
10544 toplevel-default-value (bug#6275, bug#14586).
10545 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
10546 for bug#6275.
10547
10548 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
10549
10550 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
10551 Add cl-def* expressions.
10552
10553 * frameset.el (frameset-filter-params): Fix order of arguments.
10554
10555 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
10556
10557 Move code related to saving frames to frameset.el.
10558 * desktop.el: Require frameset.
10559 (desktop-restore-frames): Doc fix.
10560 (desktop-restore-reuses-frames): Rename from
10561 desktop-restoring-reuses-frames.
10562 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
10563 (desktop-clear): Clear frames too.
10564 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
10565 (desktop--filter-tty*, desktop-save, desktop-read):
10566 Use frameset functions.
10567 (desktop-before-saving-frames-functions, desktop--filter-*-color)
10568 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
10569 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
10570 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
10571 (desktop--process-minibuffer-frames, desktop-save-frames)
10572 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
10573 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
10574 (desktop--sort-states, desktop-restoring-frames-p)
10575 (desktop-restore-frames): Remove. Most code moved to frameset.el.
10576 (desktop-restoring-frameset-p, desktop-restore-frameset)
10577 (desktop--check-dont-save, desktop-save-frameset): New functions.
10578 (desktop--app-id): New constant.
10579 (desktop-first-buffer, desktop-buffer-ok-count)
10580 (desktop-buffer-fail-count): Move before first use.
10581 * frameset.el: New file.
10582
10583 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10584
10585 * files.el: Use lexical-binding.
10586 (dir-locals-read-from-file): Remove unused `err' variable.
10587 (hack-dir-local-variables--warned-coding): New var.
10588 (hack-dir-local-variables): Use it to avoid repeated warnings.
10589 (make-backup-file-name--default-function): New function.
10590 (make-backup-file-name-function): Use it as default.
10591 (buffer-stale--default-function): New function.
10592 (buffer-stale-function): Use it as default.
10593 (revert-buffer-insert-file-contents--default-function): New function.
10594 (revert-buffer-insert-file-contents-function): Use it as default.
10595 (insert-directory): Avoid add-to-list.
10596
10597 * autorevert.el (auto-revert-handler): Simplify.
10598 Use buffer-stale--default-function.
10599
10600 2013-08-01 Tassilo Horn <tsdh@gnu.org>
10601
10602 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
10603
10604 * whitespace.el (whitespace-ensure-local-variables): New function.
10605 (whitespace-cleanup-region): Call it.
10606 (whitespace-turn-on): Call it.
10607
10608 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
10609
10610 Complete file name handlers.
10611
10612 * net/tramp.el (tramp-handle-set-visited-file-modtime)
10613 (tramp-handle-verify-visited-file-modtime)
10614 (tramp-handle-file-notify-rm-watch): New functions.
10615 (tramp-call-process): Do not bind `default-directory'.
10616
10617 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10618 Order alphabetically.
10619 <access-file, add-name-to-file, dired-call-process>:
10620 <dired-compress-file, file-acl, file-notify-rm-watch>:
10621 <file-ownership-preserved-p, file-selinux-context>:
10622 <make-directory-internal, make-symbolic-link, set-file-acl>:
10623 <set-file-selinux-context, set-visited-file-modtime>:
10624 <verify-visited-file-modtime>: Add handler.
10625 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
10626
10627 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
10628 <file-notify-add-watch, file-notify-rm-watch>:
10629 <set-file-times, set-visited-file-modtime>:
10630 <verify-visited-file-modtime>: Add handler.
10631 (with-tramp-gvfs-error-message)
10632 (tramp-gvfs-handle-set-visited-file-modtime)
10633 (tramp-gvfs-fuse-file-name): Remove.
10634 (tramp-gvfs-handle-file-notify-add-watch)
10635 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
10636 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
10637
10638 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10639 Order alphabetically.
10640 <file-notify-rm-watch>: Use default Tramp handler.
10641 <executable-find>: Remove private handler.
10642 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
10643 `default-directory'.
10644 (tramp-sh-handle-executable-find)
10645 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
10646 (tramp-sh-file-gvfs-monitor-dir-process-filter)
10647 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
10648 Do not use `format' in `tramp-message'.
10649
10650 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
10651 <file-notify-rm-watch, set-visited-file-modtime>:
10652 <verify-visited-file-modtime>: Add handler.
10653 (tramp-smb-call-winexe): Do not bind `default-directory'.
10654
10655 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
10656
10657 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
10658
10659 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
10660
10661 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
10662 use it.
10663 (log-view-diff-changeset): Same.
10664 (log-view-diff-common): Call backend command `previous-revision'
10665 to find out the previous revision, in both cases. Swap the
10666 variables `to' and `fr', so that `fr' usually refers to the
10667 earlier revision (Bug#14989).
10668
10669 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
10670
10671 * ibuf-ext.el (ibuffer-filter-by-filename):
10672 Make it work with dired buffers too.
10673
10674 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
10675
10676 * emacs-lisp/re-builder.el (reb-color-display-p):
10677 * files.el (save-buffers-kill-terminal):
10678 * net/browse-url.el (browse-url):
10679 * server.el (server-save-buffers-kill-terminal):
10680 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
10681 Prefer nil to selected-frame for the first arg of frame-parameter.
10682
10683 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
10684
10685 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
10686
10687 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
10688
10689 * minibuffer.el (completion--twq-all): Try and preserve each
10690 completion's case choice (bug#14907).
10691
10692 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
10693
10694 * net/network-stream.el (open-network-stream): Mention the new
10695 :nogreeting parameter.
10696 (network-stream-open-starttls): Use the :nogreeting parameter
10697 (bug#14938).
10698
10699 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
10700
10701 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
10702 more natural than popping.
10703
10704 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
10705 (shr-urlify): Highlight under mouse.
10706
10707 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
10708
10709 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
10710
10711 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
10712
10713 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
10714 buffer for output.
10715
10716 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
10717 point-min==1. Fix search string. Fix parentheses missing.
10718
10719 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
10720 assume point-min==1. Fix search string. Fix parentheses missing.
10721
10722 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
10723
10724 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
10725 buffer for output.
10726
10727 2013-07-29 Eli Zaretskii <eliz@gnu.org>
10728
10729 * frame.el (frame-notice-user-settings): Avoid inflooping when the
10730 initial frame is minibuffer-less. (Bug#14841)
10731
10732 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
10733
10734 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
10735 option.
10736
10737 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
10738 (tramp-maybe-open-connection): Use it.
10739
10740 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
10741
10742 * desktop.el (desktop--make-frame): Include `minibuffer' in the
10743 minimal set of parameters passed when creating a frame, because
10744 the minibuffer status of a frame cannot be changed later.
10745
10746 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
10747
10748 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
10749 replace-regexp-in-string and inadvertent omissions in previous change.
10750 (todo-filter-items): Ensure only file names are comma-separated in
10751 name of filtered items buffer.
10752
10753 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
10754
10755 * desktop.el: Optionally force offscreen frames back onscreen.
10756 (desktop-restoring-reuses-frames): New option.
10757 (desktop--compute-pos, desktop--move-onscreen): New functions.
10758 (desktop--make-frame): Use desktop--move-onscreen.
10759
10760 2013-07-27 Alan Mackenzie <acm@muc.de>
10761
10762 Fontify a Java generic method as a function.
10763 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
10764 value to t.
10765
10766 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
10767
10768 * calendar/todo-mode.el: Add command to rename todo files.
10769 (todo-rename-file): New command.
10770 (todo-key-bindings-t): Add key binding for it. Change the
10771 bindings of todo-filter-regexp-items(-multifile) to use `x'
10772 instead of `r', since the latter is better suited to the new
10773 renaming command.
10774
10775 2013-07-27 Alan Mackenzie <acm@muc.de>
10776
10777 Make Java try-with-resources statement parse properly.
10778 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
10779 (c-block-stmt-1-2-key): New language constants/variables.
10780 * progmodes/cc-engine.el (c-beginning-of-statement-1)
10781 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
10782 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
10783 with c-block-stmt-1-2-key.
10784
10785 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
10786
10787 * desktop.el (desktop--make-frame): Apply most frame parameters after
10788 creating the frame to force (partially or totally) offscreen frames to
10789 be restored as such.
10790
10791 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
10792
10793 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
10794 (Bug#14948)
10795
10796 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10797
10798 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
10799 `base' arg of backtrace-frame.
10800
10801 2013-07-26 Eli Zaretskii <eliz@gnu.org>
10802
10803 * simple.el (list-processes): Doc fix.
10804
10805 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
10806
10807 * desktop.el (desktop--select-frame):
10808 Try harder to reuse existing frames.
10809
10810 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10811
10812 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
10813 (edebug-eval): Use backtrace-eval.
10814 (edebug--display, edebug--recursive-edit): Don't let-bind the
10815 edebug-outer-* vars that keep track of variables we locally let-bind.
10816 (edebug-outside-excursion): Don't restore outside values of locally
10817 let-bound vars.
10818 (edebug--display): Use user-error.
10819 (cl-lexical-debug, cl-debug-env): Remove.
10820
10821 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
10822
10823 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
10824 are restored to be sure that they are visible before deleting any
10825 remaining ones.
10826
10827 2013-07-26 Matthias Meulien <orontee@gmail.com>
10828
10829 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
10830 vc-print-root-log. (Bug#14948)
10831
10832 2013-07-26 Richard Stallman <rms@gnu.org>
10833
10834 Add aliases for encrypting mail.
10835 * epa.el (epa-mail-aliases): New option.
10836 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
10837 Bind inhibit-read-only so read-only text doesn't ruin everything.
10838 (epa-mail-default-recipients): New subroutine broken out.
10839 Handle epa-mail-aliases.
10840
10841 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10842
10843 Add support for lexical variables to the debugger's `e' command.
10844 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
10845 vars, except for debugger-outer-match-data.
10846 (debugger-frame-number): Move check for "on a function call" from
10847 callers into it. Add `skip-base' argument.
10848 (debugger-frame, debugger-frame-clear): Simplify accordingly.
10849 (debugger-env-macro): Only reset the state stored in non-variables,
10850 i.e. current-buffer and match-data.
10851 (debugger-eval-expression): Rewrite using backtrace-eval.
10852 * subr.el (internal--called-interactively-p--get-frame): Remove.
10853 (called-interactively-p):
10854 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
10855 `base' arg of backtrace-frame instead.
10856
10857 2013-07-26 Glenn Morris <rgm@gnu.org>
10858
10859 * align.el (align-regexp): Doc fix. (Bug#14857)
10860 (align-region): Explicit error if subexpression missing/does not match.
10861
10862 * simple.el (global-visual-line-mode):
10863 Do not duplicate the mode lighter. (Bug#14858)
10864
10865 2013-07-25 Martin Rudalics <rudalics@gmx.at>
10866
10867 * window.el (display-buffer): In display-buffer bind
10868 split-window-keep-point to t, bug#14829.
10869
10870 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
10871
10872 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
10873 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
10874 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
10875 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
10876 Change accordingly.
10877 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
10878 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
10879
10880 2013-07-25 Glenn Morris <rgm@gnu.org>
10881
10882 * dired-x.el (dired-mark-extension): Convert comment to doc string.
10883
10884 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
10885
10886 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
10887 parameter to modify-frame-parameters if the value has not changed;
10888 this is a workaround for bug#14949.
10889 (desktop--make-frame): On cl-delete-if call, check parameter name,
10890 not full parameter.
10891
10892 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
10893
10894 * vc/vc.el (vc-ignore): New function.
10895
10896 * vc/vc-svn.el (vc-svn-ignore): New function.
10897
10898 * vc/vc-hg.el (vc-hg-ignore): New function.
10899
10900 * vc/vc-git.el (vc-git-ignore): New function.
10901
10902 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
10903 (vc-dir-ignore): New function.
10904
10905 * vc/vc-cvs.el (vc-cvs-ignore): New function.
10906 (cvs-append-to-ignore): Move here from pcvs.el.
10907
10908 * vc/vc-bzr.el (vc-bzr-ignore): New function.
10909
10910 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
10911
10912 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
10913
10914 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
10915 (desktop-restore-frames): Warn when deleting an existing frame failed.
10916
10917 2013-07-24 Glenn Morris <rgm@gnu.org>
10918
10919 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
10920
10921 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
10922
10923 * filenotify.el (file-notify-supported-p):
10924 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
10925 Remove functions.
10926
10927 * autorevert.el (auto-revert-use-notify)
10928 (auto-revert-notify-add-watch):
10929 * net/tramp.el (tramp-file-name-for-operation):
10930 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10931 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10932 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10933 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
10934 Remove `file-notify-supported-p' entry.
10935
10936 2013-07-24 Glenn Morris <rgm@gnu.org>
10937
10938 * printing.el: Replace all uses of deleted ps-windows-system,
10939 ps-lp-system, ps-flatten-list with lpr- versions.
10940
10941 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10942
10943 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
10944 checked with memq (bug#14935).
10945
10946 * files.el (revert-buffer-function): Use a non-nil default.
10947 (revert-buffer-preserve-modes): Declare var to
10948 provide access to the `preserve-modes' argument.
10949 (revert-buffer): Let-bind it.
10950 (revert-buffer--default): New function, extracted from revert-buffer.
10951
10952 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10953
10954 * lpr.el: Signal print errors more prominently.
10955 (print-region-function): Don't default to nil.
10956 (lpr-print-region): New function, extracted from print-region-1.
10957 Check lpr's return value and signal an error in case of problem.
10958 (print-region-1): Use it.
10959 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
10960 versions instead.
10961 (ps-printer-name): Default to nil.
10962 (ps-printer-name-option): Default to lpr-printer-switch.
10963 (ps-print-region-function): Don't default to nil.
10964 (ps-postscript-code-directory): Simplify default.
10965 (ps-do-despool): Use lpr-print-region to properly check the outcome.
10966 (ps-string-list, ps-eval-switch, ps-flatten-list)
10967 (ps-flatten-list-1): Remove.
10968 (ps-multibyte-buffer): Avoid setq.
10969 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
10970 (print-region-function, ps-print-region-function): Don't set them here.
10971
10972 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
10973
10974 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
10975 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
10976 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
10977 (ido-decorations): Doc fix.
10978
10979 * ansi-color.el: Fix old URL.
10980
10981 2013-07-23 Michael R. Mauger <michael@mauger.com>
10982
10983 * progmodes/sql.el: Version 3.3
10984 (sql-product-alist): Improve oracle :prompt-cont-regexp.
10985 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
10986 (sql-interactive-remove-continuation-prompt): Rewrite, use
10987 functions above. Fix continuation prompt and complete output line
10988 handling.
10989 (sql-redirect-one, sql-execute): Use `read-only-mode' on
10990 redirected output buffer.
10991 (sql-mode): Restore deleted code (Bug#13591).
10992
10993 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
10994
10995 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
10996
10997 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
10998
10999 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
11000
11001 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11002 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11003 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
11004
11005 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
11006
11007 * desktop.el (desktop-clear): Simplify; remove useless checks
11008 against invalid buffer names.
11009 (desktop-list*): Use cl-list*.
11010 (desktop-buffer-info, desktop-create-buffer): Simplify.
11011
11012 2013-07-23 Leo Liu <sdl.web@gmail.com>
11013
11014 * bookmark.el (bookmark-make-record): Restore NAME as a default
11015 value. (Bug#14933)
11016
11017 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
11018
11019 * emacs-lisp/autoload.el (autoload--setup-output): New function,
11020 extracted from autoload--insert-text.
11021 (autoload--insert-text): Remove.
11022 (autoload--print-cookie-text): New function, extracted from
11023 autoload--insert-cookie-text.
11024 (autoload--insert-cookie-text): Remove.
11025 (autoload-generate-file-autoloads): Adjust calls accordingly.
11026
11027 * winner.el (winner-hook-installed-p): Remove.
11028 (winner-mode): Simplify accordingly.
11029
11030 * subr.el (add-to-list): Fix compiler-macro when `append' is
11031 not constant. Don't use `cl-member' for the base case.
11032
11033 * progmodes/subword.el: Fix boundary case (bug#13758).
11034 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
11035 own group.
11036 (subword-backward-regexp): Make it a constant.
11037 (subword-forward-internal): Don't treat a trailing capital as the
11038 beginning of a word.
11039
11040 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
11041
11042 * emacs-lisp/package.el (package-menu-mode): Don't modify the
11043 global value of tabulated-list-revert-hook (bug#14930).
11044
11045 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
11046
11047 * desktop.el: Require 'cl-lib.
11048 (desktop-before-saving-frames-functions): New hook.
11049 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
11050 for frames being saved. Rename from desktop--save-minibuffer-frames.
11051 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
11052 Do not save frames with non-nil `desktop-dont-save' parameter.
11053 Filter out deleted frames.
11054 (desktop--find-frame): Use cl-find-if.
11055 (desktop--select-frame): Use cl-(first|second|third) to access values
11056 of desktop-mini.
11057 (desktop--make-frame): Use cl-delete-if.
11058 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
11059 (desktop-restore-frames): Use cl-(first|second|third) to access values
11060 of desktop-mini. Look for visible frame at the end, not while
11061 restoring frames.
11062
11063 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
11064 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
11065 Use string-match-p, looking-at-p (bug#14927).
11066
11067 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
11068
11069 * desktop.el (desktop-saved-frame-states):
11070 Rename from desktop--saved-states; all users changed.
11071 (desktop-save-frames): Rename from desktop--save-frames.
11072 Do not save state to desktop file.
11073 (desktop-save): Save desktop-saved-frame-states to desktop file
11074 and reset to nil.
11075 (desktop-restoring-frames-p): New function.
11076 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
11077 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
11078 buffer-lists when restoring frames. Suggested by Martin Rudalics.
11079
11080 * desktop.el: Correctly restore iconified frames.
11081 (desktop--filter-iconified-position): New function.
11082 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
11083
11084 2013-07-20 Glenn Morris <rgm@gnu.org>
11085
11086 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
11087 Let `message' do the formatting.
11088 (def-gdb-preempt-display-buffer): Add explicit format.
11089
11090 * image-dired.el (image-dired-track-original-file):
11091 Use with-current-buffer.
11092 (image-dired-track-thumbnail): Use with-current-buffer.
11093 Avoid changing point of wrong window.
11094
11095 * image-dired.el (image-dired-track-original-file):
11096 Avoid changing point of wrong window. (Bug#14909)
11097
11098 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
11099
11100 * progmodes/gdb-mi.el (gdb-done-or-error):
11101 Guard against "%" in gdb output. (Bug#14127)
11102
11103 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
11104
11105 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
11106 (Bug#14826)
11107
11108 * international/mule.el (coding-system-iso-2022-flags): Fix last
11109 change.
11110
11111 2013-07-20 Kenichi Handa <handa@gnu.org>
11112
11113 * international/mule.el (coding-system-iso-2022-flags):
11114 Add `8-bit-level-4'. (Bug#8522)
11115
11116 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11117
11118 * net/shr.el (shr-mouse-browse-url): New command and keystroke
11119 (bug#14815).
11120
11121 * net/eww.el (eww-process-text-input): Allow inputting when the
11122 point is at the start of the line, as the properties aren't
11123 front-sticky.
11124
11125 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
11126 degenerate widths.
11127
11128 2013-07-19 Richard Stallman <rms@gnu.org>
11129
11130 * epa.el (epa-popup-info-window): Doc fix.
11131
11132 * subr.el (split-string): New arg TRIM.
11133
11134 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
11135
11136 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
11137 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
11138
11139 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
11140
11141 * filenotify.el (file-notify--library): Rename from
11142 `file-notify-support'. Do not autoload. Adapt all uses.
11143 (file-notify-supported-p): New defun.
11144
11145 * autorevert.el (auto-revert-use-notify):
11146 Use `file-notify-supported-p' instead of `file-notify-support'.
11147 Adapt docstring.
11148 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
11149
11150 * net/tramp.el (tramp-file-name-for-operation):
11151 Add `file-notify-supported-p'.
11152
11153 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11154 New defun.
11155 (tramp-sh-file-name-handler-alist): Add it as handler for
11156 `file-notify-supported-p '.
11157
11158 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11159 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11160 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11161 Add `ignore' as handler for `file-notify-*' functions.
11162
11163 2013-07-17 Eli Zaretskii <eliz@gnu.org>
11164
11165 * simple.el (line-move-partial, line-move): Don't start vscroll or
11166 scroll-up if the current line is not taller than the window.
11167 (Bug#14881)
11168
11169 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
11170
11171 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
11172 highlight question marks in the method names as strings.
11173 (ruby-block-beg-keywords): Inline.
11174 (ruby-font-lock-keyword-beg-re): Extract from
11175 `ruby-font-lock-keywords'.
11176
11177 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
11178
11179 * frame.el (blink-cursor-blinks): New defcustom.
11180 (blink-cursor-blinks-done): New defvar.
11181 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
11182 (blink-cursor-timer-function): Check if number of blinks has been
11183 done on X and NS.
11184 (blink-cursor-suspend, blink-cursor-check): New defuns.
11185
11186 2013-07-15 Glenn Morris <rgm@gnu.org>
11187
11188 * edmacro.el (edmacro-format-keys): Fix previous change.
11189
11190 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
11191
11192 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
11193 The hack didn't work outside English locales anyway.
11194
11195 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
11196
11197 * simple.el (define-alternatives): Rename from alternatives-define,
11198 per RMS' suggestion.
11199
11200 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
11201
11202 * desktop.el (desktop-restore-frames): Change default to t.
11203 (desktop-restore-in-current-display): Now offer more options.
11204 (desktop-restoring-reuses-frames): New customization option.
11205 (desktop--saved-states): Doc fix.
11206 (desktop-filter-parameters-alist): New variable, renamed and expanded
11207 from desktop--excluded-frame-parameters.
11208 (desktop--target-display): New variable.
11209 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
11210 (desktop--filter-tty*, desktop--filter-*-color)
11211 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11212 (desktop--filter-save-desktop-parm)
11213 (desktop-restore-in-original-display-p): New functions.
11214 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
11215 (desktop--save-minibuffer-frames): New function, inspired by a similar
11216 function from Martin Rudalics.
11217 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
11218 (desktop--restore-in-this-display-p): Remove.
11219 (desktop--find-frame): Rename from desktop--find-frame-in-display
11220 and add predicate argument.
11221 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
11222 (desktop--reuse-list): New variable.
11223 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
11224 New functions.
11225 (desktop--restore-frames): Add support for "minibuffer-special" frames.
11226
11227 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
11228
11229 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
11230
11231 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
11232
11233 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11234 Highlight conversion methods on Kernel.
11235
11236 2013-07-13 Alan Mackenzie <acm@muc.de>
11237
11238 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
11239 and comment it out. This out-commenting enables certain C++
11240 declarations to be parsed correctly.
11241
11242 2013-07-13 Eli Zaretskii <eliz@gnu.org>
11243
11244 * international/mule.el (define-coding-system): Doc fix.
11245
11246 * simple.el (default-font-height): Don't call font-info if the
11247 frame's default font didn't change since the frame was created.
11248 (Bug#14838)
11249
11250 2013-07-13 Leo Liu <sdl.web@gmail.com>
11251
11252 * ido.el (ido-read-file-name): Guard against non-symbol value.
11253
11254 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
11255
11256 * progmodes/python.el (python-imenu--build-tree): Fix corner case
11257 in nested defuns.
11258
11259 2013-07-13 Leo Liu <sdl.web@gmail.com>
11260
11261 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
11262 ido-set-matches call. (Bug#6852)
11263
11264 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
11265
11266 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
11267 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
11268 Ruby 2.0.
11269 (ruby-font-lock-keywords): Distinguish calls to functions with
11270 module-like names from module references. Highlight character
11271 literals.
11272
11273 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
11274
11275 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
11276 (gdb-send): Handle continued commands. (Bug#14847)
11277
11278 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11279
11280 * desktop.el (desktop--v2s): Remove unused local variable.
11281 (desktop-save-buffer): Make defvar-local; adjust docstring.
11282 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
11283 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
11284
11285 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
11286
11287 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
11288
11289 2013-07-12 Eli Zaretskii <eliz@gnu.org>
11290
11291 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
11292 (Bug#14842)
11293
11294 2013-07-12 Glenn Morris <rgm@gnu.org>
11295
11296 * doc-view.el: Require cl-lib at runtime too.
11297 (doc-view-remove-if): Remove.
11298 (doc-view-search-next-match, doc-view-search-previous-match):
11299 Use cl-remove-if.
11300
11301 * edmacro.el: Require cl-lib at runtime too.
11302 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
11303 (edmacro-mismatch, edmacro-subseq): Remove.
11304
11305 * shadowfile.el: Require cl-lib.
11306 (shadow-remove-if): Remove.
11307 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
11308 Use cl-remove-if.
11309
11310 * wid-edit.el: Require cl-lib.
11311 (widget-choose): Use cl-remove-if.
11312 (widget-remove-if): Remove.
11313
11314 * progmodes/ebrowse.el: Require cl-lib at runtime too.
11315 (ebrowse-delete-if-not): Remove.
11316 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
11317 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
11318 Use cl-delete-if-not.
11319
11320 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11321
11322 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
11323 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
11324
11325 2013-07-12 Leo Liu <sdl.web@gmail.com>
11326
11327 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
11328
11329 2013-07-11 Glenn Morris <rgm@gnu.org>
11330
11331 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
11332 (edebug-gensym-index, edebug-gensym):
11333 Remove reimplementation of cl-gensym.
11334 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
11335
11336 * thumbs.el: Require cl-lib at run-time too.
11337 (thumbs-gensym-counter, thumbs-gensym):
11338 Remove reimplementation of cl-gensym.
11339 (thumbs-temp-file): Use cl-gensym.
11340
11341 * emacs-lisp/ert.el: Require cl-lib at runtime too.
11342 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
11343 (ert--intersection, ert--set-difference, ert--set-difference-eq)
11344 (ert--union, ert--gensym-counter, ert--gensym-counter)
11345 (ert--coerce-to-vector, ert--remove*, ert--string-position)
11346 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
11347 (ert-make-test-unbound, ert--expand-should-1)
11348 (ert--expand-should, ert--should-error-handle-error)
11349 (should-error, ert--explain-equal-rec)
11350 (ert--plist-difference-explanation, ert-select-tests)
11351 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
11352 Use cl-lib functions rather than reimplementations.
11353
11354 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
11355
11356 * net/tramp.el (tramp-methods): Extend docstring.
11357 (tramp-connection-timeout): New defcustom.
11358 (tramp-error-with-buffer): Reset timestamp only when appropriate.
11359 (with-tramp-progress-reporter): Simplify.
11360 (tramp-process-actions): Improve messages.
11361
11362 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
11363 * net/tramp-sh.el (tramp-maybe-open-connection):
11364 Use `tramp-connection-timeout'.
11365 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
11366 (Bug#14808)
11367
11368 2013-07-11 Leo Liu <sdl.web@gmail.com>
11369
11370 * ido.el (ido-read-file-name): Conform to the requirements of
11371 read-file-name. (Bug#11861)
11372 (ido-read-directory-name): Conform to the requirements of
11373 read-directory-name.
11374
11375 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
11376
11377 * subr.el (delay-warning): New function.
11378
11379 2013-07-10 Eli Zaretskii <eliz@gnu.org>
11380
11381 * simple.el (default-line-height): New function.
11382 (line-move-partial, line-move): Use it instead of computing the
11383 line height inline.
11384 (line-move-partial): Always compute ROWH. If the last line is
11385 partially-visible, but its text is completely visible, allow
11386 cursor to enter such a partially-visible line.
11387
11388 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
11389
11390 Improve error messages. (Bug#14808)
11391
11392 * net/tramp.el (tramp-current-connection): New defvar, moved from
11393 tramp-sh.el.
11394 (tramp-message-show-progress-reporter-message): Remove, not
11395 needed anymore.
11396 (tramp-error-with-buffer): Show message in minibuffer.
11397 Discard input before waiting. Reset connection timestamp.
11398 (with-tramp-progress-reporter): Improve messages.
11399 (tramp-process-actions): Use progress reporter. Delete process in
11400 case of error. Improve messages.
11401
11402 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
11403 Call `tramp-error-with-buffer' with vector and buffer.
11404 (tramp-current-connection): Remove.
11405 (tramp-maybe-open-connection): The car of
11406 `tramp-current-connection' are the first 3 slots of the vector.
11407
11408 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
11409
11410 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
11411 inside continued strings.
11412
11413 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
11414
11415 Timestamp fixes for undo (Bug#14824).
11416 * files.el (clear-visited-file-modtime): Move here from fileio.c.
11417
11418 2013-07-10 Leo Liu <sdl.web@gmail.com>
11419
11420 * files.el (require-final-newline): Allow safe local value.
11421 (Bug#14834)
11422
11423 2013-07-09 Leo Liu <sdl.web@gmail.com>
11424
11425 * ido.el (ido-read-directory-name): Handle fallback.
11426 (ido-read-file-name): Update DIR to ido-current-directory.
11427 (Bug#1516)
11428 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
11429
11430 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
11431
11432 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
11433 "autoload". Remove "warn lower camel case" section, previously
11434 commented out. Highlight negation char. Do not highlight the
11435 target in singleton method definitions.
11436
11437 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11438
11439 * faces.el (tty-setup-hook): Declare the hook.
11440
11441 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
11442 and detect when a guard/pred depends on local vars (bug#14773).
11443 (pcase--u1): Adjust caller.
11444
11445 2013-07-08 Eli Zaretskii <eliz@gnu.org>
11446
11447 * simple.el (line-move-partial, line-move): Account for
11448 line-spacing.
11449 (line-move-partial): Avoid setting vscroll when the last
11450 partially-visible line in window is of default height.
11451
11452 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11453
11454 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
11455 been used a while.
11456
11457 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
11458
11459 * subr.el (read-quoted-char): Remove unused local variable `char'.
11460
11461 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
11462
11463 * ediff.el (ediff-version): Version update.
11464 (ediff-files-command, ediff3-files-command, ediff-merge-command)
11465 (ediff-merge-with-ancestor-command, ediff-directories-command)
11466 (ediff-directories3-command, ediff-merge-directories-command)
11467 (ediff-merge-directories-with-ancestor-command): New functions.
11468 All are command-line interfaces to ediff: to facilitate calling
11469 Emacs with the appropriate ediff functions invoked.
11470
11471 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
11472 (viper-save-kill-buffer): Check if buffer is modified.
11473
11474 * viper.el (viper-version): Version update.
11475 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
11476
11477 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
11478
11479 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
11480 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
11481 (viper-intercept-ESC-key): Simplify.
11482 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
11483 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
11484 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
11485 (viper-setup-ESC-to-escape): New functions.
11486 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
11487 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
11488
11489 2013-07-07 Eli Zaretskii <eliz@gnu.org>
11490
11491 * simple.el (default-font-height, window-screen-lines):
11492 New functions.
11493 (line-move, line-move-partial): Use them instead of
11494 frame-char-height and window-text-height. This makes scrolling
11495 text smoother when the buffer's default face uses a font that is
11496 different from the frame's default font.
11497
11498 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
11499
11500 * files.el (write-file): Do not display confirm dialog for NS,
11501 it does its own dialog, which can't be canceled (Bug#14578).
11502
11503 2013-07-06 Eli Zaretskii <eliz@gnu.org>
11504
11505 * simple.el (line-move-partial): Adjust the row returned by
11506 posn-at-point for the current window-vscroll. (Bug#14567)
11507
11508 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
11509
11510 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
11511 (tramp-sh-file-inotifywait-process-filter): Handle file names with
11512 spaces.
11513
11514 2013-07-06 Martin Rudalics <rudalics@gmx.at>
11515
11516 * window.el (window-state-put-stale-windows): New variable.
11517 (window--state-put-2): Save list of windows without matching buffer.
11518 (window-state-put): Remove "bufferless" windows if possible.
11519
11520 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
11521
11522 * simple.el (alternatives-define): Remove leftover :group keyword.
11523 Tweak docstring.
11524
11525 2013-07-06 Leo Liu <sdl.web@gmail.com>
11526
11527 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
11528 (ido-enable-virtual-buffers): New variable.
11529 (ido-buffer-internal, ido-toggle-virtual-buffers)
11530 (ido-make-buffer-list): Use it.
11531 (ido-exhibit): Support turning on and off virtual buffers
11532 automatically.
11533
11534 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
11535
11536 * simple.el (alternatives-define): New macro.
11537
11538 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
11539
11540 * subr.el (read-quoted-char): Use read-key.
11541 (sit-for): Let read-event decode tty input (bug#14782).
11542
11543 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
11544
11545 * calendar/todo-mode.el: Add handling of file deletion, both by
11546 mode command and externally. Fix various related bugs.
11547 Clarify Commentary and improve some documentation strings and code.
11548 (todo-delete-file): New command.
11549 (todo-check-file): New function.
11550 (todo-show): Handle external deletion of the file we're trying to
11551 show (bug#14688). Replace called-interactively-p by an optional
11552 prefix argument to avoid problematic interaction with catch form
11553 when byte compiled (bug#14702).
11554 (todo-quit): Handle external deletion of the archive's todo file.
11555 Make sure the buffer that was visiting the archive file is still
11556 live before trying to bury it.
11557 (todo-category-completions): Handle external deletion of any
11558 category completion files.
11559 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
11560 of todo files, in case of external deletion.
11561 (todo-add-file): Replace unnecessary setq by let-binding.
11562 (todo-find-archive): Check whether there are any archives.
11563 Replace unnecessary setq by let-binding.
11564 (todo-archive-done-item): Use find-file-noselect to get the
11565 archive buffer whether or not the archive already exists.
11566 Remove superfluous code. Use file size instead of buffer-file-name to
11567 check if the archive is new; if it is, update list of archives.
11568 (todo-default-todo-file): Allow nil to be a valid value for when
11569 there are no todo files.
11570 (todo-reevaluate-default-file-defcustom): Use corrected definition
11571 of todo-default-todo-file.
11572 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
11573 (todo-delete-category, todo-show-categories-table)
11574 (todo-category-number): Clarify comment.
11575 (todo-filter-items): Clarify documentation string.
11576 (todo-show-current-file, todo-display-as-todo-file)
11577 (todo-reset-and-enable-done-separator): Tweak documentation string.
11578 (todo-done-separator): Make separator length window-width, since
11579 bug#2749 is now fixed.
11580
11581 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
11582
11583 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
11584 Support both "gvfs-monitor-dir" and "inotifywait".
11585 (tramp-sh-file-inotifywait-process-filter): Rename from
11586 `tramp-sh-file-notify-process-filter'.
11587 (tramp-sh-file-gvfs-monitor-dir-process-filter)
11588 (tramp-get-remote-gvfs-monitor-dir): New defuns.
11589
11590 2013-07-05 Leo Liu <sdl.web@gmail.com>
11591
11592 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
11593
11594 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11595
11596 * frame.el (display-pixel-height, display-pixel-width)
11597 (display-mm-height, display-mm-width): Mention behavior on
11598 multi-monitor setups in docstrings.
11599 (w32-display-monitor-attributes-list): Declare function.
11600 (display-monitor-attributes-list): Use it.
11601
11602 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
11603
11604 * filenotify.el: New package.
11605
11606 * autorevert.el (top): Require filenotify.el.
11607 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
11608 instead.
11609 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
11610 (auto-revert-notify-handler): Use `file-notify-*' functions.
11611
11612 * subr.el (file-notify-handle-event): Move function to filenotify.el.
11613
11614 * net/tramp.el (tramp-file-name-for-operation):
11615 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
11616
11617 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
11618 for `file-notify-add-watch' and `file-notify-rm-watch'.
11619 (tramp-process-sentinel): Improve trace.
11620 (tramp-sh-handle-file-notify-add-watch)
11621 (tramp-sh-file-notify-process-filter)
11622 (tramp-sh-handle-file-notify-rm-watch)
11623 (tramp-get-remote-inotifywait): New defuns.
11624
11625 2013-07-03 Juri Linkov <juri@jurta.org>
11626
11627 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
11628 call of `occur-read-primary-args' to interactive spec.
11629
11630 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
11631 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
11632
11633 2013-07-03 Matthias Meulien <orontee@gmail.com>
11634
11635 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
11636 `Buffer-menu-multi-occur'. Add it to the menu.
11637 (Buffer-menu-mode): Document it in docstring.
11638 (Buffer-menu-multi-occur): New command. (Bug#14673)
11639
11640 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
11641
11642 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
11643 keywords and built-ins.
11644
11645 2013-07-03 Glenn Morris <rgm@gnu.org>
11646
11647 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
11648
11649 Make info-xref checks case-sensitive by default
11650 * info.el (Info-find-node, Info-find-in-tag-table)
11651 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
11652 Add option for exact case matching of nodes.
11653 * info-xref.el (info-xref): New custom group.
11654 (info-xref-case-fold): New option.
11655 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
11656
11657 2013-07-03 Leo Liu <sdl.web@gmail.com>
11658
11659 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
11660
11661 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
11662
11663 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
11664 middle of block statement initially, lower the depth. Remove
11665 FIXME comment, not longer valid. Remove middle of block statement
11666 detection, no need to do that anymore since we've been using
11667 `ruby-parse-region' here.
11668
11669 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
11670
11671 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
11672
11673 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
11674
11675 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
11676
11677 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
11678
11679 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
11680 (desktop-restore-in-current-display): New customization option.
11681 (desktop--excluded-frame-parameters): Add `font'.
11682 (desktop--save-frames): Rename from desktop--save-windows.
11683 (desktop--restore-in-this-display-p): New function.
11684 (desktop--make-full-frame): Remove unwanted width/height from
11685 full(width|height) frames.
11686 (desktop--restore-frames): Rename from desktop--restore-windows.
11687 Obey desktop-restore-current-display. Do not delete old frames or
11688 select a new frame unless we were able to restore at least one frame.
11689
11690 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
11691
11692 * files.el (find-file-noselect): Simplify conditional expression.
11693
11694 * textmodes/remember.el (remember-append-to-file):
11695 Don't mix `find-buffer-visiting' and `get-file-buffer'.
11696
11697 Add `remember-notes' function to store random notes across Emacs
11698 restarts.
11699 * textmodes/remember.el (remember-data-file): Add :set callback to
11700 affect notes buffer (if any).
11701 (remember-notes): New command.
11702 (remember-notes-buffer-name, bury-remember-notes-on-kill):
11703 New defcustoms for the `remember-notes' function.
11704 (remember-notes-save-and-bury-buffer): New command.
11705 (remember-notes-mode-map): New variable.
11706 (remember-mode): New minor mode.
11707 (remember-notes--kill-buffer-query): New function.
11708 * startup.el (initial-buffer-choice): Add notes to custom type.
11709
11710 2013-06-30 Eli Zaretskii <eliz@gnu.org>
11711
11712 * bindings.el (right-char, left-char): Don't call sit-for, this is
11713 no longer needed. Use arithmetic comparison only for numerical
11714 arguments.
11715
11716 * international/mule-cmds.el (select-safe-coding-system):
11717 Handle the case of FROM being a string correctly. (Bug#14755)
11718
11719 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11720
11721 * net/shr.el (shr-make-table-1): Add a sanity check that allows
11722 progression on degenerate tables.
11723 (shr-rescale-image): ImageMagick animated images currently don't work.
11724
11725 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
11726
11727 Some fixes and improvements for desktop frame restoration.
11728 It is still experimental and disabled by default.
11729 * desktop.el (desktop--save-windows): Put the selected frame at
11730 the head of the list.
11731 (desktop--make-full-frame): New function.
11732 (desktop--restore-windows): Try to re-select the frame that was
11733 selected upon saving. Do not abort if some frames fail to restore,
11734 just show an error message and continue. Set up maximized frames
11735 so they have default non-maximized dimensions.
11736
11737 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
11738
11739 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
11740 Don't start heredoc inside a string or comment.
11741
11742 2013-06-29 Eli Zaretskii <eliz@gnu.org>
11743
11744 * bindings.el (visual-order-cursor-movement): New defcustom.
11745 (right-char, left-char): Provide visual-order cursor motion by
11746 calling move-point-visually. Update the doc strings.
11747
11748 2013-06-28 Kenichi Handa <handa@gnu.org>
11749
11750 * international/mule.el (define-coding-system): New coding system
11751 properties :inhibit-null-byte-detection,
11752 :inhibit-iso-escape-detection, and :prefer-utf-8.
11753 (set-buffer-file-coding-system): If :charset-list property of
11754 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
11755 appropriate for setting.
11756
11757 * international/mule-cmds.el (select-safe-coding-system):
11758 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
11759 multibyte characters, return utf-8 (or one of its siblings).
11760
11761 * international/mule-conf.el (prefer-utf-8): New coding system.
11762 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
11763 files.
11764
11765 2013-06-28 Ivan Kanis <ivan@kanis.fr>
11766
11767 * net/shr.el (shr-render-region): New function.
11768
11769 * net/eww.el: Autoload `eww-browse-url'.
11770
11771 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
11772
11773 * emacs-lisp/package-x.el (package-upload-buffer-internal):
11774 Adapt to `package-desc-version' being a list.
11775 Use `package--ac-desc-version' to retrieve version from a package
11776 archive element.
11777
11778 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
11779
11780 New experimental feature to save&restore window and frame setup.
11781 * desktop.el (desktop-save-windows): New defcustom.
11782 (desktop--saved-states): New var.
11783 (desktop--excluded-frame-parameters): New defconst.
11784 (desktop--filter-frame-parms, desktop--find-frame-in-display)
11785 (desktop--restore-windows, desktop--save-windows): New functions.
11786 (desktop-save): Call `desktop--save-windows'.
11787 (desktop-read): Call `desktop--restore-windows'.
11788
11789 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11790
11791 * net/shr.el (add-face-text-property): Remove compat definition.
11792
11793 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
11794
11795 * info.el (Info-try-follow-nearest-node): Move search for footnote
11796 above search for node name to prevent missing a footnote (bug#14717).
11797
11798 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
11799
11800 * obsolete/otodo-mode.el: Add obsolescence info to file header.
11801
11802 2013-06-27 Leo Liu <sdl.web@gmail.com>
11803
11804 * net/eww.el (eww-read-bookmarks): Check file size.
11805
11806 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11807
11808 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
11809 advice--pending if newdef is nil or an autoload (bug#13820).
11810 (advice-mapc): New function.
11811
11812 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11813
11814 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
11815 probably.
11816 (eww-mode-map): Add a menu bar.
11817 (eww-add-bookmark): New command.
11818 (eww-bookmark-mode): New mode and commands.
11819 (eww-add-bookmark): Remove newlines from the title.
11820 (eww-bookmark-browse): Don't bug out if it's the only window.
11821
11822 2013-06-26 Glenn Morris <rgm@gnu.org>
11823
11824 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
11825 (hfy-size): Handle ttys. (Bug#14668)
11826
11827 * info-xref.el: Update for Texinfo 5 change in *note format.
11828 (info-xref-node-re, info-xref-note-re): New constants.
11829 (info-xref-check-buffer): Use info-xref-note-re.
11830
11831 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11832
11833 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
11834
11835 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
11836 nil terminate the loop (bug#14718).
11837
11838 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11839
11840 * net/eww.el: Rework history traversal. When going forward/back,
11841 put these actions into the history, too, so that they can be
11842 replayed.
11843 (eww-render): Move the history reset to the correct buffer.
11844
11845 2013-06-25 Juri Linkov <juri@jurta.org>
11846
11847 * files-x.el (modify-dir-local-variable): Change the header comment
11848 in the file with directory local variables. (Bug#14692)
11849
11850 * files-x.el (read-file-local-variable-value): Add `default'.
11851 (Bug#14710)
11852
11853 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11854
11855 * net/eww.el (eww-make-unique-file-name): Create a unique file
11856 name before saving to entering `y' accidentally asynchronously.
11857
11858 2013-06-25 Ivan Kanis <ivan@kanis.fr>
11859
11860 * net/eww.el (eww-download): New command and keystroke.
11861
11862 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11863
11864 * net/eww.el (eww-copy-page-url): Change name of command.
11865
11866 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
11867 be more consistent with Info and dired.
11868
11869 * net/eww.el (eww-mode-map): Ditto.
11870
11871 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11872
11873 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
11874 packages from archives.
11875 (package-archive-contents): Change format; include obsolete packages.
11876 (package-desc): Use `dir' to mark builtin packages.
11877 (package--from-builtin): Set the `dir' field to `builtin'.
11878 (generated-autoload-file, version-control): Declare.
11879 (package-compute-transaction): Change first arg and return value to be
11880 lists of package-descs. Adjust to new package-archive-contents format.
11881 (package--add-to-archive-contents): Adjust to new
11882 package-archive-contents format.
11883 (package-download-transaction): Arg is now a list of package-descs.
11884 (package-install): If `pkg' is a package name, pass it as
11885 a requirement, so it is subject to the usual (e.g. disabled) checks.
11886 (describe-package): Accept package-desc as well.
11887 (describe-package-1): Describe a specific package-desc. Add links to
11888 other package-descs for the same package name.
11889 (package-menu-describe-package): Pass the actual package-desc.
11890 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
11891 works correctly.
11892 (package-desc-status): New function.
11893 (package-menu--refresh): New function, extracted
11894 from package-menu--generate.
11895 (package-menu--generate): Use it.
11896 (package-delete): Update package-alist.
11897 (package-menu-execute): Don't call package-initialize.
11898
11899 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
11900 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
11901 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
11902 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
11903 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
11904 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
11905
11906 2013-06-25 Martin Rudalics <rudalics@gmx.at>
11907
11908 * window.el (window--state-get-1): Workaround for bug#14527.
11909 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
11910
11911 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11912
11913 * net/eww.el (eww-back-url): Implement the history by stashing all
11914 the data into a list.
11915 (eww-forward-url): Allow going forward in the history, too.
11916
11917 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11918
11919 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
11920 for values and use read--expression for expressions (bug#14710).
11921 (read-file-local-variable): Avoid setq.
11922 (read-file-local-variable-mode): Use minor-mode-list.
11923
11924 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11925
11926 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
11927 for DOI URLs.
11928
11929 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11930
11931 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
11932 Update imenu-support when dialect changes.
11933
11934 2013-06-25 Leo Liu <sdl.web@gmail.com>
11935
11936 * ido.el (ido-read-internal): Allow forward slash on windows.
11937
11938 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
11939
11940 * net/eww.el (eww): Start of strings is \\`, not ^.
11941
11942 2013-06-24 Ivan Kanis <ivan@kanis.fr>
11943
11944 * net/shr.el (shr-browse-url): Fix interactive spec.
11945
11946 * net/eww.el (eww): Add a trailing slash to domain names.
11947
11948 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
11949
11950 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
11951
11952 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
11953
11954 * net/shr.el (shr-browse-url): Use an external browser if given a
11955 prefix.
11956
11957 * net/eww.el (eww-external-browser): Move to shr.
11958
11959 2013-06-24 Ivan Kanis <ivan@kanis.fr>
11960
11961 * net/eww.el (eww): Work more correctly for file: URLs.
11962 (eww-detect-charset): Allow quoted charsets.
11963 (eww-yank-page-url): New command and keystroke.
11964
11965 2013-06-24 Daiki Ueno <ueno@gnu.org>
11966
11967 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
11968 file name of gpg executable.
11969 (epg-context-program): New function.
11970 (epg-context-home-directory): New function.
11971 (epg-context-set-program): New function.
11972 (epg-context-set-home-directory): New function.
11973 (epg--start): Use `epg-context-program' instead of
11974 'epg-gpg-program'.
11975 (epg--list-keys-1): Likewise.
11976
11977 2013-06-24 Leo Liu <sdl.web@gmail.com>
11978
11979 * ido.el (ido-read-internal): Fix bug#14620.
11980
11981 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
11982
11983 * faces.el (face-documentation): Simplify.
11984 (read-face-attribute, tty-find-type, x-resolve-font-name):
11985 Use `string-match-p'.
11986 (list-faces-display): Use `string-match-p'. Simplify.
11987 (face-spec-recalc): Check face to avoid face alias loops.
11988 (read-color): Use `string-match-p' and non-capturing parenthesis.
11989
11990 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
11991
11992 * net/shr.el (shr-rescale-image): Use the new
11993 :max-width/:max-height functionality.
11994
11995 2013-06-23 Ivan Kanis <ivan@kanis.fr>
11996
11997 * net/eww.el (eww-search-prefix): New variable.
11998 (eww): Use it.
11999 (eww-external-browser): New variable.
12000 (eww-mode-map): New keystroke.
12001 (eww-browse-with-external-browser): New command.
12002
12003 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
12004
12005 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
12006
12007 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12008 Don't skip aligning the next header field when padding is 0;
12009 otherwise, field width is not respected unless the title is as
12010 wide as the field.
12011
12012 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
12013
12014 * emacs-lisp/package.el (package-el-version): Remove.
12015 (package-process-define-package): Fix inf-loop.
12016 (package-install): Allow symbols as arguments again.
12017
12018 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12019
12020 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
12021 add some more keyword-like methods.
12022 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
12023
12024 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
12025
12026 * bs.el (bs-buffer-show-mark): Make defvar-local.
12027 (bs-mode): Use setq-local.
12028
12029 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
12030 (emacs-lock--try-unlocking): Make defvar-local.
12031
12032 2013-06-22 Glenn Morris <rgm@gnu.org>
12033
12034 * play/cookie1.el (cookie-apropos): Minor simplification.
12035
12036 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
12037
12038 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
12039
12040 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
12041 `regexp-opt', it breaks the build during dumping.
12042
12043 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
12044
12045 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12046 Highlight keyword-like methods on Kernel and Module with
12047 font-lock-builtin-face.
12048 (auto-mode-alist): Consolidate different entries into one regexp
12049 and add more *file-s.
12050
12051 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
12052
12053 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
12054
12055 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
12056 (diary-entry): Use it in the action of this button type instead of
12057 diary-goto-entry.
12058
12059 * calendar/todo-mode.el: New version.
12060 (todo-add-category): Append new category to end of file and give
12061 it the highest number, instead of putting it at the beginning and
12062 giving it 0. Incorporate noninteractive functionality.
12063 (todo-forward-category): Adapt to 1-based category numbering.
12064 Allow skipping over archived categories.
12065 (todo-backward-category): Derive from todo-forward-category.
12066 (todo-backward-item, todo-forward-item): Make noninteractive and
12067 delegate interactive part to new commands. Make sensitive to done items.
12068 (todo-categories): Make value an alist of category names and
12069 vectors of item counts.
12070 (todo-category-beg): Make a defconst.
12071 (todo-category-number): Use 1 instead of 0 as initial value.
12072 (todo-category-select): Make sensitive to overlays, optional item
12073 highlighting and done items.
12074 (todo-delete-item): Make sensitive to overlays and marked and done items.
12075 (todo-edit-item): Make sensitive to overlays and editing of
12076 date/time header optional. Add format checks.
12077 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
12078 no-op if point is not on an item. Advertise using todo-edit-quit.
12079 (todo-edit-mode): Make sensitive to new format, font-locking, and
12080 multiple todo files.
12081 (todo-insert-item, todo-insert-item-here): Derive from
12082 todo-basic-insert-item and extend functionality.
12083 (todo-item-end, todo-item-start): Make sensitive to done items.
12084 (todo-item-string): Don't return text properties. Restore point.
12085 (todo-jump-to-category): Make sensitive to multiple todo files and
12086 todo archives. Use extended category completion.
12087 (todo-lower-item, todo-raise-item): Rename to *-priority and
12088 derive from todo-set-item-priority.
12089 (todo-mode): Derive from special-mode. Make sensitive to new
12090 format, font-locking and multiple todo files. Make read-only.
12091 (todo-mode-map): Don't suppress digit keys, so they can supply
12092 prefix arguments. Add many new key bindings.
12093 (todo-prefix): Insert as an overlay instead of file text.
12094 Change semantics from diary date expression to purely visual mark.
12095 (todo-print): Rename to todo-print-buffer. Make buffer display
12096 features printable. Remove option to restrict number of items
12097 printed. Add option to print to file.
12098 (todo-print-function): Rename to todo-print-buffer-function.
12099 (todo-quit): Extend to handle exiting new todo modes.
12100 (todo-remove-item): Make sensitive to overlays.
12101 (todo-save): Extend to buffers of filtered items.
12102 (todo-show): Make sensitive to done items, multiple todo files and
12103 new todo modes. Offer to convert legacy todo file before creating
12104 first new todo file.
12105 (todo-show-priorities): Rename to todo-top-priorities.
12106 Change semantics of value 0.
12107 (todo-top-priorities): Rename to todo-filter-top-priorities,
12108 derive from todo-filter-items and extend functionality.
12109 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
12110 and extend functionality to other types of filtered items.
12111 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
12112 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
12113 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
12114 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
12115 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
12116 (todo-edit-mode-hook, todo-entry-prefix-function)
12117 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
12118 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
12119 (todo-initials, todo-insert-threshold, todo-item-string-start)
12120 (todo-line-string, todo-menu, todo-mode-hook)
12121 (todo-more-important-p, todo-previous-answer, todo-previous-line)
12122 (todo-print-priorities, todo-remove-separator)
12123 (todo-save-top-priorities-too, todo-string-count-lines)
12124 (todo-string-multiline-p, todo-time-string-format)
12125 (todo-tmp-buffer-name): Remove.
12126 (todo-add-file, todo-archive-done-item, todo-choose-archive)
12127 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
12128 (todo-edit-category-diary-inclusion)
12129 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
12130 (todo-edit-file, todo-edit-item-date-day)
12131 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
12132 (todo-edit-item-date-month, todo-edit-item-date-to-today)
12133 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
12134 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
12135 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
12136 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
12137 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
12138 (todo-filter-top-priorities-multifile, todo-find-archive)
12139 (todo-find-filtered-items-file, todo-go-to-source-item)
12140 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
12141 (todo-jump-to-archive-category, todo-lower-category)
12142 (todo-mark-category, todo-marked-item-p, todo-merge-category)
12143 (todo-move-category, todo-move-item, todo-next-button)
12144 (todo-next-item, todo-padded-string, todo-powerset)
12145 (todo-previous-button, todo-previous-item)
12146 (todo-print-buffer-to-file, todo-raise-category)
12147 (todo-rename-category, todo-repair-categories-sexp, todo-search)
12148 (todo-set-category-number, todo-set-item-priority)
12149 (todo-set-top-priorities-in-category)
12150 (todo-set-top-priorities-in-file, todo-show-categories-table)
12151 (todo-sort-categories-alphabetically-or-numerically)
12152 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
12153 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
12154 (todo-toggle-item-header, todo-toggle-item-highlighting)
12155 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
12156 (todo-toggle-view-done-items, todo-toggle-view-done-only)
12157 (todo-unarchive-items, todo-unmark-category): New commands.
12158 (todo-absolute-file-name, todo-add-to-buffer-list)
12159 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
12160 (todo-basic-insert-item, todo-category-completions)
12161 (todo-category-number, todo-category-string-matcher-1)
12162 (todo-category-string-matcher-2, todo-check-filtered-items-file)
12163 (todo-check-format, todo-clear-matches)
12164 (todo-comment-string-matcher, todo-convert-legacy-date-time)
12165 (todo-current-category, todo-date-string-matcher)
12166 (todo-define-insertion-command, todo-diary-expired-matcher)
12167 (todo-diary-goto-entry, todo-diary-item-p)
12168 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
12169 (todo-display-categories, todo-display-sorted, todo-done-item-p)
12170 (todo-done-item-section-p, todo-done-separator)
12171 (todo-done-string-matcher, todo-files, todo-filter-items)
12172 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
12173 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
12174 (todo-insert-category-line, todo-insert-item-from-calendar)
12175 (todo-insert-sort-button, todo-insert-with-overlays)
12176 (todo-insertion-command-name, todo-insertion-key-bindings)
12177 (todo-label-to-key, todo-longest-category-name-length)
12178 (todo-make-categories-list, todo-mode-external-set)
12179 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
12180 (todo-modes-set-3, todo-multiple-filter-files)
12181 (todo-nondiary-marker-matcher, todo-prefix-overlays)
12182 (todo-read-category, todo-read-date, todo-read-dayname)
12183 (todo-read-file-name, todo-read-time)
12184 (todo-reevaluate-category-completions-files-defcustom)
12185 (todo-reevaluate-default-file-defcustom)
12186 (todo-reevaluate-filelist-defcustoms)
12187 (todo-reevaluate-filter-files-defcustom)
12188 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
12189 (todo-reset-done-separator, todo-reset-done-separator-string)
12190 (todo-reset-done-string, todo-reset-global-current-todo-file)
12191 (todo-reset-highlight-item, todo-reset-nondiary-marker)
12192 (todo-reset-prefix, todo-set-categories)
12193 (todo-set-date-from-calendar, todo-set-show-current-file)
12194 (todo-set-top-priorities, todo-short-file-name)
12195 (todo-show-current-file, todo-sort, todo-time-string-matcher)
12196 (todo-total-item-counts, todo-update-buffer-list)
12197 (todo-update-categories-display, todo-update-categories-sexp)
12198 (todo-update-count, todo-validate-name, todo-y-or-n-p):
12199 New functions.
12200 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
12201 New major modes.
12202 (todo-categories, todo-display, todo-edit, todo-faces)
12203 (todo-filtered): New defgroups.
12204 (todo-archived-only, todo-button, todo-category-string, todo-date)
12205 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
12206 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
12207 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
12208 (todo-add-item-if-new-category, todo-always-add-time-string)
12209 (todo-categories-align, todo-categories-archived-label)
12210 (todo-categories-category-label, todo-categories-diary-label)
12211 (todo-categories-done-label, todo-categories-number-separator)
12212 (todo-categories-todo-label, todo-categories-totals-label)
12213 (todo-category-completions-files, todo-completion-ignore-case)
12214 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
12215 (todo-done-separator-string, todo-done-string)
12216 (todo-files-function, todo-filter-done-items, todo-filter-files)
12217 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
12218 (todo-initial-category, todo-initial-file, todo-item-mark)
12219 (todo-legacy-date-time-regexp, todo-mode-line-function)
12220 (todo-nondiary-marker, todo-number-prefix)
12221 (todo-print-buffer-function, todo-show-current-file)
12222 (todo-show-done-only, todo-show-first, todo-show-with-done)
12223 (todo-skip-archived-categories, todo-top-priorities-overrides)
12224 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
12225 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
12226 New defcustoms.
12227 (todo-category-done, todo-date-pattern, todo-date-string-start)
12228 (todo-diary-items-buffer, todo-done-string-start)
12229 (todo-filtered-items-buffer, todo-item-start)
12230 (todo-month-abbrev-array, todo-month-name-array)
12231 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
12232 (todo-top-priorities-buffer): New defconsts.
12233 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
12234 (todo-categories-with-marks, todo-category-string-face)
12235 (todo-comment-face, todo-comment-string, todo-current-todo-file)
12236 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
12237 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
12238 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
12239 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
12240 (todo-font-lock-keywords, todo-global-current-todo-file)
12241 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
12242 (todo-insertion-commands-args)
12243 (todo-insertion-commands-args-genlist)
12244 (todo-insertion-commands-names, todo-insertion-map)
12245 (todo-key-bindings-t, todo-key-bindings-t+a)
12246 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
12247 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
12248 (todo-nondiary-face, todo-print-buffer, todo-time-face)
12249 (todo-visited): New variables.
12250
12251 2013-06-21 Glenn Morris <rgm@gnu.org>
12252
12253 * play/cookie1.el (cookie-apropos): Add optional display argument.
12254 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
12255 (psychoanalyze-pinhead): Use cookie-doctor.
12256
12257 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12258
12259 * emacs-lisp/package.el (tar-get-file-descriptor)
12260 (tar--extract): Declare.
12261
12262 2013-06-21 Eduard Wiebe <usenet@pusto.de>
12263
12264 Extend flymake's warning predicate to be a function (bug#14217).
12265 * progmodes/flymake.el (flymake-warning-predicate): New.
12266 (flymake-parse-line): Use it.
12267 (flymake-warning-re): Make obsolete alias to
12268 `flymake-warning-predicate'.
12269
12270 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12271
12272 * emacs-lisp/package.el (package-alist): Include obsolete packages.
12273 (package-obsolete-list): Remove.
12274 (package-activate): Remove min-version argument. Add `force' argument.
12275 Adjust to new package-alist format.
12276 (package-mark-obsolete): Remove.
12277 (package-unpack): Force reload of the package's autoloads.
12278 (package-installed-p): Check builtins if the installed package is not
12279 recent enough.
12280 (package-initialize): Don't reset package-obsolete-list.
12281 Don't specify which package version to activate.
12282 (package-process-define-package, describe-package-1)
12283 (package-menu--generate): Adjust to new package-alist format.
12284
12285 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12286
12287 * allout-widgets.el (allout-widgets-mode-off)
12288 (allout-widgets-mode-on, allout-widgets-pre-command-business)
12289 (allout-widgets-post-command-business)
12290 (allout-widgets-after-copy-or-kill-function)
12291 (allout-widgets-after-undo-function, allout-test-range-overlaps)
12292 (allout-decorate-item-and-context)
12293 (allout-graphics-modification-handler): Fix typos in docstrings.
12294 (allout-get-or-create-parent-widget): Use `looking-at-p'.
12295
12296 * cmuscheme.el (scheme-start-file): Doc fix.
12297 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
12298 (scheme-input-filter): Use `string-match-p'.
12299
12300 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
12301
12302 * dired-x.el: Use Dired consistently in docstrings.
12303
12304 * dired.el: Use Dired consistently in docstrings.
12305 (dired-readin, dired-mode): Use `setq-local'.
12306 (dired-switches-alist): Make defvar-local.
12307 (dired-buffers-for-dir): Use `zerop'.
12308 (dired-safe-switches-p, dired-switches-escape-p)
12309 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
12310 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
12311 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
12312 (dired-goto-next-nontrivial-file): Use `string-match-p'.
12313 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
12314 (dired-toggle-marks, dired-mark-files-containing-regexp)
12315 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
12316 (dired-flag-auto-save-files, dired-flag-backup-files):
12317 Use `looking-at-p'.
12318 (dired-mark-files-regexp, dired-build-subdir-alist):
12319 Use `string-match-p', `looking-at-p'.
12320
12321 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
12322 (direct-print-region-helper): Use `string-match-p'.
12323
12324 2013-06-21 Leo Liu <sdl.web@gmail.com>
12325
12326 * comint.el (comint-redirect-results-list-from-process):
12327 Fix infinite loop.
12328
12329 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12330
12331 * net/eww.el (eww-update-header-line-format): Quote % characters.
12332
12333 2013-06-21 Glenn Morris <rgm@gnu.org>
12334
12335 * play/cookie1.el (cookie): New custom group.
12336 (cookie-file): New option.
12337 (cookie-check-file): New function.
12338 (cookie): Make it interactive. Make start and end messages optional.
12339 Interactively, display the result. Default to cookie-file.
12340 (cookie-insert): Default to cookie-file.
12341 (cookie-snarf): Make start and end messages optional.
12342 Default to cookie-file. Use with-temp-buffer.
12343 (cookie-read): Rename from read-cookie.
12344 Make start and end messages optional. Default to cookie-file.
12345 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
12346 Do not autoload it.
12347 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
12348 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
12349
12350 2013-06-21 Leo Liu <sdl.web@gmail.com>
12351
12352 * progmodes/octave.el (octave-mode): Backward compatibility fix.
12353
12354 2013-06-21 Glenn Morris <rgm@gnu.org>
12355
12356 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
12357
12358 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12359 Daniel Hackney <dan@haxney.org>
12360
12361 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
12362 Consolidate the single-file vs tarball code.
12363 (package-desc-suffix): New function.
12364 (package-desc-full-name): Don't bother inlining it.
12365 (package-load-descriptor): Return the new package-desc.
12366 (package-mark-obsolete): Remove unused arg `package'.
12367 (package-unpack): Make it work for single files as well.
12368 Make it update package-alist.
12369 (package--make-autoloads-and-stuff): Rename from
12370 package--make-autoloads-and-compile. Don't compile any more.
12371 (package--compile): New function.
12372 (package-generate-description-file): New function, extracted from
12373 package-unpack-single.
12374 (package-unpack-single): Remove.
12375 (package--with-work-buffer): Add indentation and debugging info.
12376 (package-download-single): Remove.
12377 (package-install-from-archive): Rename from package-download-tar, make
12378 it take a pkg-desc, and make it work for single files as well.
12379 (package-download-transaction): Simplify.
12380 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
12381 external tar program.
12382 (package-install-from-buffer): Remove `pkg-desc' argument.
12383 Use package-tar-file-info for tar-mode buffers.
12384 (package-install-file): Simplify accordingly.
12385 (package-archive-base): Change to take a pkg-desc.
12386 * tar-mode.el (tar--check-descriptor): New function, extracted from
12387 tar-get-descriptor.
12388 (tar-get-descriptor): Use it.
12389 (tar-get-file-descriptor): New function.
12390 (tar--extract): New function, extracted from tar-extract.
12391 (tar--extract): Use it.
12392 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
12393 case the summary uses non-ascii. Adjust to new calling convention of
12394 package-tar-file-info.
12395
12396 2013-06-21 Leo Liu <sdl.web@gmail.com>
12397
12398 * comint.el (comint-redirect-results-list-from-process):
12399 Fix random delay. (Bug#14681)
12400
12401 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12402
12403 * profiler.el (profiler-format-number): Use log, not log10.
12404
12405 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12406
12407 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
12408
12409 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12410
12411 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
12412 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
12413 yet available.
12414 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
12415 (AUTOGENEL): ... here.
12416 * emacs-lisp/cl-macs.el (cl--sublis): New function.
12417 (cl--defsubst-expand): Use it.
12418
12419 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
12420
12421 * subr.el (log10): Move here from C code, and declare as obsolete.
12422 All uses of (log10 X) replaced with (log X 10).
12423
12424 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12425
12426 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
12427 Declare with `defvar-local'.
12428 (tabulated-list-use-header-line, tabulated-list-entries)
12429 (tabulated-list-padding, tabulated-list-printer)
12430 (tabulated-list-sort-key): Declare with `defvar-local'.
12431 (tabulated-list-init-header, tabulated-list-print-fake-header):
12432 Use `setq-local'.
12433
12434 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
12435
12436 * arc-mode.el (archive-mode): Add `archive-write-file' to
12437 `write-contents-functions' also for remote files. (Bug#14652)
12438
12439 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12440
12441 * cus-edit.el (custom-commands): Fix typos.
12442 (custom-display): Fix tooltip text.
12443 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
12444 Fix typos in docstrings.
12445 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
12446 (custom-unlispify-menu-entry, custom-magic-value-create)
12447 (custom-add-see-also, custom-group-value-create): Use ?\s.
12448 (custom-guess-type, customize-apropos, editable-field)
12449 (custom-face-value-create): Use `string-match-p'.
12450 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
12451
12452 * custom.el (custom-load-symbol): Use `string-match-p'.
12453
12454 * ansi-color.el: Convert to lexical binding.
12455 (ansi-colors): Fix URL.
12456 (ansi-color-context, ansi-color-context-region): Use defvar-local.
12457 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
12458 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
12459
12460 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12461
12462 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
12463
12464 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
12465
12466 2013-06-19 Tom Tromey <tromey@redhat.com>
12467
12468 * net/eww.el (eww-top-url): Remove.
12469 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
12470 (eww-render): Set new variables. Don't set eww-top-url.
12471 (eww-handle-link): Handle "prev", "home", and "contents".
12472 Downcase the rel text.
12473 (eww-top-url): Choose best top URL.
12474
12475 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12476
12477 * net/eww.el: Rewrite to implement form elements "by hand" instead of
12478 relying in widget.el. Using widget.el leads to too many
12479 user interface inconsistencies.
12480 (eww-self-insert): Implement entering commands in text fields.
12481 (eww-process-text-input): New function to make text input field editing
12482 work.
12483 (eww-submit): Rewrite to use the new-style form methods.
12484 (eww-select-display): Display the correct selected item.
12485 (eww-change-select): Implement changing the select value.
12486 (eww-toggle-checkbox): Implement radio/checkboxes.
12487 (eww-update-field): Fix compilation error.
12488 (eww-tag-textarea): Implement <textarea>.
12489
12490 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
12491 we don't shadow mode-specific bindings.
12492
12493 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
12494 nothing to push.
12495
12496 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
12497
12498 2013-06-19 Glenn Morris <rgm@gnu.org>
12499
12500 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
12501
12502 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
12503
12504 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
12505 not needed.
12506
12507 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
12508
12509 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12510
12511 * net/browse-url.el (browse-url-browser-function):
12512 `eww-browse-url' has the right calling signature, `eww' does not.
12513
12514 2013-06-19 Glenn Morris <rgm@gnu.org>
12515
12516 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12517 Only eval autoloaded macros.
12518 (byte-compile-autoload): Only give the macro warning for macros.
12519
12520 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
12521 (ps-underlined-faces): Declare.
12522
12523 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
12524 (speedbar-add-supported-extension): Declare.
12525
12526 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
12527 Don't include a date stamp in the header of the generated file;
12528 it leads to needless differences between output files.
12529
12530 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
12531
12532 * net/secrets.el (secrets-struct-secret-content-type):
12533 Replace check of introspection data by a test call of "CreateItem".
12534 Some servers do not offer introspection.
12535
12536 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
12537
12538 * electric.el (electric-pair-mode): Improve interaction with
12539 electric-layout-mode.
12540 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
12541 (electric-pair-syntax): Use text-mode-syntax-table in comments
12542 and strings.
12543 (electric-pair--insert): New function.
12544 (electric-pair-post-self-insert-function): Use it and
12545 electric--after-char-pos.
12546
12547 2013-06-19 Leo Liu <sdl.web@gmail.com>
12548
12549 * progmodes/octave.el (octave-help): Fix regexp.
12550
12551 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
12552
12553 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
12554 (shr-table-horizontal-line): Allow nil as a value, and change the
12555 default.
12556 (shr-insert-table-ruler): Respect the nil value.
12557
12558 2013-06-18 Tom Tromey <tromey@barimba>
12559
12560 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
12561 New defvars.
12562 (eww-open-file): New defun.
12563 (eww-render): Initialize new variables.
12564 (eww-display-html): Handle "link" and "a".
12565 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
12566 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
12567 (eww-back-url): Rename from eww-previous-url.
12568 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
12569 New defuns.
12570
12571 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
12572
12573 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
12574 Distinguish ternary operator tokens from slash symbol and slash
12575 char literal.
12576
12577 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
12578
12579 Convert symbol prettification into minor mode and global minor mode.
12580
12581 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
12582 `prog-prettify-symbols', and make a local defvar instead of defcustom.
12583 (prettify-symbols--keywords): Rename from
12584 `prog-prettify-symbols-alist' and make a local defvar.
12585 (prettify-symbols--compose-symbol): Rename from
12586 `prog--prettify-font-lock-compose-symbol'.
12587 (prettify-symbols--make-keywords): Rename from
12588 `prog-prettify-font-lock-symbols-keywords' and simplify.
12589 (prog-prettify-install): Remove.
12590 (prettify-symbols-mode): New minor mode, based on
12591 `prog-prettify-install'.
12592 (turn-on-prettify-symbols-mode): New function.
12593 (global-prettify-symbols-mode): New globalized minor mode.
12594
12595 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12596 * progmodes/cfengine.el (cfengine3-mode):
12597 * progmodes/perl-mode.el (perl-mode): Don't call
12598 `prog-prettify-install'; set `prettify-symbols-alist' instead.
12599
12600 2013-06-18 Juri Linkov <juri@jurta.org>
12601
12602 * files-x.el (modify-file-local-variable-message): New function.
12603 (modify-file-local-variable)
12604 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
12605 and call `modify-file-local-variable-message' when it's non-nil.
12606 (add-file-local-variable, delete-file-local-variable)
12607 (add-file-local-variable-prop-line)
12608 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
12609 and use it. (Bug#9820)
12610
12611 2013-06-18 Juri Linkov <juri@jurta.org>
12612
12613 * emulation/vi.el (vi-shell-op):
12614 * emulation/vip.el (vip-execute-com, ex-command):
12615 * emulation/viper-cmd.el (viper-exec-bang):
12616 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
12617 the call of `shell-command-on-region'. (Bug#14637)
12618
12619 * simple.el (shell-command-on-region): Doc fix.
12620
12621 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12622
12623 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
12624 (bug#14633).
12625
12626 2013-06-18 Glenn Morris <rgm@gnu.org>
12627
12628 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
12629
12630 * newcomment.el (comment-search-forward, comment-search-backward):
12631 Doc fix. (Bug#14376)
12632
12633 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
12634
12635 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
12636 (buffer-face-mode-invoke): Doc fix.
12637
12638 2013-06-18 Matthias Meulien <orontee@gmail.com>
12639
12640 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
12641 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
12642
12643 2013-06-18 Glenn Morris <rgm@gnu.org>
12644
12645 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
12646 Replace obsolete function generic-make-keywords with its expansion.
12647
12648 * progmodes/python.el (ffap-alist): Declare.
12649
12650 * textmodes/reftex.el (bibtex-mode-map): Declare.
12651
12652 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12653
12654 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
12655 (package-unpack, package-unpack-single): Return the pkg-dir.
12656 (package-download-transaction): Use it to update package-alist.
12657
12658 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12659
12660 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
12661 possible choice.
12662
12663 2013-06-17 Juri Linkov <juri@jurta.org>
12664
12665 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
12666
12667 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
12668
12669 * emacs-lisp/package.el (package-load-descriptor):
12670 Remove `with-syntax-table' call, `read' doesn't need it.
12671 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
12672
12673 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
12674
12675 * startup.el (command-line): Expand package name returned by
12676 `package--description-file' (bug#14639).
12677
12678 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
12679
12680 * emacs-lisp/package.el (package-load-descriptor): Do not call
12681 `emacs-lisp-mode', just use its syntax table.
12682
12683 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
12684
12685 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
12686 `font-lock-extra-managed-props' if any prettifying keyword is added.
12687 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
12688 (prog-mode): Use `setq-local'.
12689
12690 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12691
12692 * international/characters.el (standard-case-table): Set syntax of ?»
12693 and ?« to punctuation.
12694
12695 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
12696
12697 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
12698 Save relevant match data before calling `syntax-ppss' (bug#14595).
12699
12700 2013-06-15 Juri Linkov <juri@jurta.org>
12701
12702 * files-x.el (modify-file-local-variable-prop-line): Add local
12703 variables to the end of the existing comment on the first line.
12704 Use `file-auto-mode-skip' to skip interpreter magic line,
12705 and also skip XML declaration.
12706
12707 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12708
12709 * startup.el (package--builtin-versions): New var.
12710 (package-subdirectory-regexp): Remove.
12711 (package--description-file): Hard code its value instead.
12712
12713 * emacs-lisp/package.el: Don't activate packages older than builtin.
12714 (package-obsolete-list): Rename from package-obsolete-alist, and make
12715 it into a simple list of package-desc.
12716 (package-strip-version): Remove.
12717 (package-built-in-p): Use package--builtin-versions.
12718 (package-mark-obsolete): Simplify.
12719 (package-process-define-package): Mark it obsolete if older than the
12720 builtin version.
12721 (package-handle-response): Use line-end-position.
12722 (package-read-archive-contents, package--download-one-archive):
12723 Simplify.
12724 (package--add-to-archive-contents): Skip if older than the builtin or
12725 installed version.
12726 (package-menu-describe-package): Fix last change.
12727 (package-list-unversioned): New var.
12728 (package-menu--generate): Use it.
12729
12730 * emacs-lisp/autoload.el: Manage package--builtin-versions.
12731 (autoload--insert-text, autoload--insert-cookie-text): New functions.
12732 (autoload-builtin-package-versions): New variable.
12733 (autoload-generate-file-autoloads): Use them.
12734 Remove the list of autoloaded functions/macros from the
12735 (autoload...) comments.
12736
12737 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
12738
12739 2013-06-15 Eli Zaretskii <eliz@gnu.org>
12740
12741 * simple.el (line-move-partial): Don't jump to the next screen
12742 line as soon as it becomes visible. Instead, continue enlarging
12743 the vscroll until the portion of a tall screen line that's left on
12744 display is about the height of the frame's default font.
12745 (Bug#14567)
12746
12747 2013-06-15 Glenn Morris <rgm@gnu.org>
12748
12749 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
12750 compilation-error-regexp-alist void, or local while let-bound.
12751
12752 * progmodes/make-mode.el (makefile-mode-syntax-table):
12753 Treat "=" as punctuation. (Bug#14614)
12754
12755 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
12756
12757 * help-fns.el (describe-variable):
12758 Add extra line for permanent-local variables.
12759
12760 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
12761
12762 * progmodes/scheme.el (scheme-font-lock-keywords-2):
12763 Add export, import, library. (Bug#9164)
12764 (library): Set indent function.
12765
12766 2013-06-14 Glenn Morris <rgm@gnu.org>
12767
12768 * term/xterm.el (xterm--query):
12769 Stop after first matching handler. (Bug#14615)
12770
12771 2013-06-14 Ivan Kanis <ivan@kanis.fr>
12772
12773 Add support for dired in saveplace.
12774 * dired.el (dired-initial-position-hook): New variable.
12775 (dired-initial-position): Call hook to place cursor position.
12776 * saveplace.el (save-place-to-alist): Add dired position.
12777 (save-place-dired-hook): New function.
12778
12779 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
12780
12781 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
12782 through a symbol rather than letrec.
12783
12784 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
12785 (package-desc): Add `dir' field.
12786 (package-desc-full-name): New function.
12787 (package-load-descriptor): Combine the two arguments. Don't use `load'.
12788 (package-maybe-load-descriptor): Remove.
12789 (package-load-all-descriptors): Just call package-load-descriptor.
12790 (package--disabled-p): New function.
12791 (package-desc-vers, package-desc-doc): Remove aliases.
12792 (package--dir): Remove function.
12793 (package-activate): Check if a package is disabled.
12794 (package-process-define-package): New function, extracted from
12795 define-package.
12796 (define-package): Turn into a place holder.
12797 (package-unpack-single, package-tar-file-info):
12798 Use package--description-file.
12799 (package-compute-transaction): Use package--disabled-p.
12800 (package-download-transaction): Don't call
12801 package-maybe-load-descriptor since they're all loaded anyway.
12802 (package-install): Change argument to be a pkg-desc.
12803 (package-delete): Use a single pkg-desc argument.
12804 (describe-package-1): Use package-desc-dir instead of package--dir.
12805 Use package-desc property instead of package-symbol.
12806 (package-install-button-action): Adjust accordingly.
12807 (package--push): Rewrite.
12808 (package-menu--print-info): Adjust accordingly. Change the ID format
12809 to be a pkg-desc.
12810 (package-menu-describe-package, package-menu-get-status)
12811 (package-menu--find-upgrades, package-menu-mark-upgrades)
12812 (package-menu-execute, package-menu--name-predicate):
12813 Adjust accordingly.
12814 * startup.el (package--description-file): New function.
12815 (command-line): Use it.
12816 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12817 Use package-desc-version.
12818
12819 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
12820 (byte-compile-preprocess): Use it.
12821 (byte-compile-file-form-defalias): Try a bit harder to use macros we
12822 can't quite recognize.
12823 (byte-compile-add-to-list): Remove.
12824 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
12825 (cconv-closure-convert): Add assertion.
12826
12827 * emacs-lisp/map-ynp.el: Use lexical-binding.
12828 (map-y-or-n-p): Remove unused vars `tail' and `object'.
12829 Factor out some repeated code.
12830
12831 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12832
12833 * subr.el (with-eval-after-load): New macro.
12834 (eval-after-load): Allow form to be a function.
12835 take advantage of lexical-binding.
12836 (do-after-load-evaluation): Use dolist and adjust to new format.
12837 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
12838
12839 2013-06-13 Juri Linkov <juri@jurta.org>
12840
12841 * replace.el (perform-replace): Display "symbol " and other search
12842 modes from `isearch-message-prefix' in the *Help* buffer.
12843
12844 * isearch.el (isearch-query-replace): Add " symbol" and other
12845 possible search modes from `isearch-message-prefix' to the prompt.
12846 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
12847 when reading a regexp to collect.
12848
12849 2013-06-13 Juri Linkov <juri@jurta.org>
12850
12851 * isearch.el (word-search-regexp): Match whitespace if the search
12852 string begins or ends in whitespace. The LAX arg is applied to
12853 both ends of the search string. Use `regexp-quote' and explicit
12854 \< and \> instead of \b. Use \` and \' instead of ^ and $.
12855 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
12856 boundaries are replaced with symbol boundaries, and characters
12857 between symbols match non-word non-symbol syntax. (Bug#14602)
12858
12859 2013-06-13 Juri Linkov <juri@jurta.org>
12860
12861 * isearch.el (isearch-del-char): Don't exceed the length of
12862 `isearch-string' by the prefix arg. (Bug#14563)
12863
12864 2013-06-13 Juri Linkov <juri@jurta.org>
12865
12866 * isearch.el (isearch-yank-word, isearch-yank-line)
12867 (isearch-char-by-name, isearch-quote-char)
12868 (isearch-printing-char, isearch-process-search-char):
12869 Add optional count prefix arg. (Bug#14563)
12870
12871 * international/isearch-x.el
12872 (isearch-process-search-multibyte-characters):
12873 Add optional count prefix arg.
12874
12875 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12876
12877 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
12878 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
12879 lexical-binding.
12880
12881 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
12882
12883 * subr.el (set-temporary-overlay-map): Add on-exit argument.
12884
12885 2013-06-13 Glenn Morris <rgm@gnu.org>
12886
12887 * startup.el (tty-handle-args):
12888 Don't just discard "--" and anything after. (Bug#14608)
12889
12890 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
12891
12892 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
12893
12894 Implement changes in Secret Service API. Make it backward compatible.
12895 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
12896 (secrets-create-item): Use it. Prefix properties with interface.
12897
12898 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
12899
12900 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
12901 (term-emulate-terminal): Respect term-suppress-hard-newline.
12902
12903 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
12904
12905 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
12906 Only remove a `thumb-file' overlay. (Bug#14548)
12907
12908 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
12909
12910 * mail/reporter.el (reporter-submit-bug-report):
12911 Handle missing package-name. (Bug#14600)
12912
12913 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12914
12915 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
12916 (reftex-citation-prompt, reftex-default-bibliography)
12917 (reftex-bib-or-thebib, reftex-get-bibfile-list)
12918 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
12919 (reftex-bib-sort-author, reftex-bib-sort-year)
12920 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
12921 (reftex-extract-bib-entries-from-thebibliography)
12922 (reftex-get-bibkey-default, reftex-get-bib-names)
12923 (reftex-parse-bibtex-entry, reftex-get-bib-field)
12924 (reftex-format-bib-entry, reftex-parse-bibitem)
12925 (reftex-format-bibitem, reftex-do-citation)
12926 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
12927 (reftex-restrict-bib-matches, reftex-extract-bib-file)
12928 (reftex-insert-bib-matches, reftex-format-citation)
12929 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
12930 (reftex-create-bibtex-file): Add docstrings, mostly by converting
12931 existing comments into docstrings.
12932
12933 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
12934
12935 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
12936
12937 2013-06-12 Andreas Schwab <schwab@suse.de>
12938
12939 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
12940 for auto-save files.
12941
12942 2013-06-12 Glenn Morris <rgm@gnu.org>
12943
12944 * ido.el (ido-delete-ignored-files): Remove.
12945 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
12946 Go back to calling ido-ignore-item-p directly.
12947
12948 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
12949
12950 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
12951
12952 * ido.el (ido-delete-ignored-files): New function,
12953 split from ido-make-file-list-1.
12954 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
12955 (ido-make-file-list-1): Use ido-delete-ignored-files.
12956
12957 2013-06-12 Leo Liu <sdl.web@gmail.com>
12958
12959 * progmodes/octave.el (inferior-octave-startup)
12960 (inferior-octave-completion-table)
12961 (inferior-octave-track-window-width-change)
12962 (octave-eldoc-function-signatures, octave-help)
12963 (octave-find-definition): Use single quoted strings.
12964 (inferior-octave-startup-args): Change default value.
12965 (inferior-octave-startup): Do not hard code "-i" and
12966 "--no-line-editing".
12967 (inferior-octave-resync-dirs): Add optional arg NOERROR.
12968 (inferior-octave-directory-tracker): Use it.
12969 (octave-goto-function-definition): Robustify.
12970 (octave-help): Support highlighting operators in 'See also'.
12971 (octave-find-definition): Find subfunctions only in Octave mode.
12972
12973 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12974
12975 * help-fns.el (help-fns--compiler-macro): If the handler function is
12976 named, then put a link to it.
12977 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
12978 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
12979 (cl-typep): Use it.
12980 (cl-eval-when): Simplify debug spec.
12981 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
12982 compiler-macro function instead of setting `compiler-macro-file'.
12983
12984 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
12985
12986 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
12987 * vc/vc-hooks.el (vc-stay-local): Doc fix.
12988
12989 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12990 Daniel Hackney <dan@haxney.org>
12991
12992 First part of Daniel Hackney's patch to package.el.
12993 * emacs-lisp/package.el: Use defstruct.
12994 (package-desc): New, main struct.
12995 (package--bi-desc, package--ac-desc): New structs, used to describe the
12996 format in external files.
12997 (package-desc-vers): Replace with package-desc-version accessor.
12998 (package-desc-doc): Replace with package-desc-summary accessor.
12999 (package-activate-1): Remove `package' arg since the pkg-vec now
13000 includes the name.
13001 (define-package): Use package-desc-from-define.
13002 (package-unpack-single): Change file-name arg to be a symbol.
13003 (package--add-to-archive-contents): Use package-desc-create and new
13004 accessor functions to package--ac-desc.
13005 (package-buffer-info, package-tar-file-info): Return a package-desc.
13006 (package-install-from-buffer): Remove `type' argument. Change pkg-info
13007 arg to be a package-desc.
13008 (package-install-file): Adjust accordingly. Use \' to match EOS.
13009 (package--from-builtin): New function.
13010 (describe-package-1, package-menu--generate): Use it.
13011 (package--make-autoloads-and-compile): Change name arg to be a symbol.
13012 (package-generate-autoloads): Idem and return the name of the file.
13013 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13014 Change pkg-info arg to be a package-desc.
13015 Use package-make-ac-desc.
13016 (package-upload-file): Use \' to match EOS.
13017 * finder.el (finder-compile-keywords): Use package-make-builtin.
13018
13019 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13020
13021 * vc/vc.el (vc-deduce-fileset): Change error message.
13022 (vc-read-backend): New function.
13023 (vc-next-action): Use it.
13024
13025 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
13026
13027 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
13028 (prolog-font-lock-keywords): Use regexp-opt instead.
13029 Don't manually highlight strings.
13030 (prolog-mode-variables): Simplify comment-start-skip.
13031 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
13032
13033 * emacs-lisp/generic.el (generic--normalise-comments)
13034 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
13035 (generic-mode-set-comments): Use them.
13036 (generic-bracket-support): Use setq-local.
13037 (generic-make-keywords-list): Declare obsolete.
13038
13039 2013-06-11 Glenn Morris <rgm@gnu.org>
13040
13041 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13042 Prettify after setting font-lock-defaults. (Bug#14574)
13043
13044 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
13045
13046 * replace.el (query-replace, occur-read-regexp-defaults-function)
13047 (replace-search):
13048 * subr.el (declare-function, number-sequence, local-set-key)
13049 (substitute-key-definition, locate-user-emacs-file)
13050 (with-silent-modifications, split-string, eval-after-load):
13051 Fix typos, remove unneeded backslashes and reflow some docstrings.
13052
13053 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13054
13055 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
13056 default for Elisp files.
13057
13058 2013-06-11 Glenn Morris <rgm@gnu.org>
13059
13060 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
13061 although define-derived-mode was doing this anyway. (Bug#14583)
13062
13063 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
13064
13065 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13066 Fix make-variable-buffer-local call to refer to the correct variable.
13067
13068 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
13069
13070 * eshell/em-term.el (eshell-visual-commands)
13071 (eshell-visual-subcommands, eshell-visual-options):
13072 Add summary line to docstrings. Add cross-references.
13073
13074 2013-06-10 Glenn Morris <rgm@gnu.org>
13075
13076 * epa.el (epa-read-file-name): New function. (Bug#14510)
13077 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
13078
13079 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13080
13081 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
13082 output redirection to be ignored with visual commands.
13083
13084 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13085
13086 * eshell/em-term.el (eshell-visual-command-p): New function.
13087 (eshell-term-initialize): Move long lambda to separate function
13088 eshell-visual-command-p.
13089 * eshell/em-dirs.el (eshell-dirs-initialize):
13090 * eshell/em-script.el (eshell-script-initialize):
13091 Add missing #' to lambda.
13092
13093 2013-06-08 Leo Liu <sdl.web@gmail.com>
13094
13095 * progmodes/octave.el (octave-add-log-current-defun): New function.
13096 (octave-mode): Set add-log-current-defun-function.
13097 (octave-goto-function-definition): Do not move point if not found.
13098 (octave-find-definition): Enhance to try subfunctions first.
13099
13100 2013-06-08 Glenn Morris <rgm@gnu.org>
13101
13102 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13103 (byte-compile-backward-char, byte-compile-backward-word):
13104 Improve previous change, to handle non-explicit nil.
13105
13106 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13107
13108 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
13109 (smie--opener/closer-at-point): New function.
13110 (smie--matching-block-data): Use it. Don't match from right after an
13111 opener or right before a closer. Obey smie-blink-matching-inners.
13112 Don't signal a mismatch for repeated inners like "switch..case..case".
13113
13114 2013-06-07 Leo Liu <sdl.web@gmail.com>
13115
13116 * progmodes/octave.el (octave-mode): Set comment-use-global-state
13117 to t. (Bug#14303)
13118 (octave-function-header-regexp): Fix. (Bug#14570)
13119 (octave-help-mode-finish-hook, octave-help-mode-finish):
13120 Remove. Just use temp-buffer-show-hook.
13121
13122 * newcomment.el (comment-search-backward): Revert last change.
13123 (Bug#14434)
13124
13125 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
13126
13127 2013-06-07 Eli Zaretskii <eliz@gnu.org>
13128
13129 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
13130 through xargs, to avoid failure due to MS-Windows limitations on
13131 command-line length.
13132
13133 2013-06-06 Glenn Morris <rgm@gnu.org>
13134
13135 * font-lock.el (lisp-font-lock-keywords-2):
13136 Treat user-error like error.
13137
13138 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13139 (byte-compile-backward-char, byte-compile-backward-word):
13140 Handle explicit nil arguments. (Bug#14565)
13141
13142 2013-06-05 Alan Mackenzie <acm@muc.de>
13143
13144 * isearch.el (isearch-allow-prefix): New user option.
13145 (isearch-other-meta-char): Don't exit isearch when a prefix
13146 argument is typed whilst `isearch-allow-prefix' is non-nil.
13147 (Bug#9706)
13148
13149 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13150
13151 * autorevert.el (auto-revert-notify-handler): Use memq.
13152 Hide assertion failure.
13153
13154 * skeleton.el: Use cl-lib.
13155 (skeleton-further-elements): Use defvar-local.
13156 (skeleton-insert): Use cl-progv.
13157
13158 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13159
13160 * progmodes/prog-mode.el (prog-prettify-symbols)
13161 (prog-prettify-install): Update docstrings.
13162
13163 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13164
13165 * simple.el: Move all the prog-mode code to prog-mode.el.
13166 * progmodes/prog-mode.el: New file.
13167 * loadup.el: Add prog-mode.el.
13168
13169 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13170
13171 * simple.el (prog-prettify-symbols): Add version.
13172 (prog-prettify-install): Add convenience function to prettify symbols.
13173
13174 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
13175 (perl--augmented-font-lock-keywords-1)
13176 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
13177 variables and use it.
13178
13179 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13180 (cfengine3-mode): Remove unneeded variable and use it.
13181
13182 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13183 (lisp--augmented-font-lock-keywords-1)
13184 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
13185 Remove unneeded variables and use it.
13186
13187 2013-06-05 João Távora <joaotavora@gmail.com>
13188
13189 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
13190 to point when opening the connection. (Bug#14380)
13191
13192 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13193
13194 * subr.el (load-history-regexp, load-history-filename-element)
13195 (eval-after-load, after-load-functions, do-after-load-evaluation)
13196 (eval-next-after-load, display-delayed-warnings)
13197 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
13198 definition of save-match-data.
13199 (overriding-local-map): Remove accidental obsolescence declaration.
13200
13201 * emacs-lisp/edebug.el (edebug-result): Move before first use.
13202
13203 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13204
13205 Generalize symbol prettify support to prog-mode and implement it
13206 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
13207 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
13208 (prog--prettify-font-lock-compose-symbol)
13209 (prog-prettify-font-lock-symbols-keywords): New variables and
13210 functions to support symbol prettification.
13211 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13212 (lisp--augmented-font-lock-keywords-1)
13213 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
13214 (lisp--prettify-symbols-alist): Implement prettify of lambda.
13215 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13216 (cfengine3--prettify-symbols-alist, cfengine3-mode):
13217 Implement prettify of -> => :: strings.
13218 * progmodes/perl-mode.el (perl-prettify-symbols)
13219 (perl--font-lock-compose-symbol)
13220 (perl--font-lock-symbols-keywords): Move to prog-mode.
13221 (perl--prettify-symbols-alist): Prettify -> => :: strings.
13222 (perl-font-lock-keywords-1)
13223 (perl-font-lock-keywords-2): Remove explicit prettify support.
13224 (perl--augmented-font-lock-keywords)
13225 (perl--augmented-font-lock-keywords-1)
13226 (perl--augmented-font-lock-keywords-2, perl-mode):
13227 Implement prettify support.
13228
13229 2013-06-05 Leo Liu <sdl.web@gmail.com>
13230
13231 Re-implement SMIE matching block highlight using
13232 show-paren-data-function. (Bug#14395)
13233 * emacs-lisp/smie.el (smie-matching-block-highlight)
13234 (smie--highlight-matching-block-overlay)
13235 (smie--highlight-matching-block-lastpos)
13236 (smie-highlight-matching-block)
13237 (smie-highlight-matching-block-mode): Remove.
13238 (smie--matching-block-data-cache): New variable.
13239 (smie--matching-block-data): New function.
13240 (smie-setup): Use smie--matching-block-data for
13241 show-paren-data-function.
13242
13243 * progmodes/octave.el (octave-mode-menu): Fix.
13244 (octave-find-definition): Skip garbage lines.
13245
13246 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13247
13248 Fix compilation error with simultaneous dynamic+lexical scoping.
13249 Add warning when a defvar appears after the first let-binding.
13250 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
13251 (byte-compile-close-variables): Initialize it.
13252 (byte-compile--declare-var): New function.
13253 (byte-compile-file-form-defvar)
13254 (byte-compile-file-form-define-abbrev-table)
13255 (byte-compile-file-form-custom-declare-variable): Use it.
13256 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
13257 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
13258 (byte-compile-bind): Handle dynamic bindings that shadow
13259 lexical bindings.
13260 (byte-compile-unbind): Make arg non-optional.
13261 (byte-compile-let): Simplify.
13262 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
13263 (cconv--analyse-function, cconv-analyse-form): Populate it.
13264 Protect byte-compile-bound-variables to limit the scope of defvars.
13265 (cconv-analyse-form): Add missing rule for (defvar <foo>).
13266 Remove unneeded rule for `declare'.
13267
13268 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
13269 so as to avoid depending on cl-adjoin at run-time.
13270 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
13271
13272 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
13273 (macroexp--warn-and-return): Use it.
13274
13275 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13276
13277 * subr.el: Convert to lexical binding.
13278 (overriding-local-map): Make obsolete.
13279 (add-to-list): Doc fix. Add compiler macro.
13280 (read-key): Swap values of local maps.
13281
13282 2013-06-05 Leo Liu <sdl.web@gmail.com>
13283
13284 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
13285
13286 2013-06-04 Leo Liu <sdl.web@gmail.com>
13287
13288 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
13289 (compilation-auto-jump): Suppress the "Mark set" message to give
13290 way to exit message.
13291
13292 2013-06-04 Alan Mackenzie <acm@muc.de>
13293
13294 Remove faulty optimisation from indentation calculation.
13295 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
13296 search limit based on 2000 characters back from indent-point.
13297
13298 2013-06-03 Tassilo Horn <tsdh@gnu.org>
13299
13300 * eshell/em-term.el (cl-lib): Require `cl-lib'.
13301
13302 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
13303
13304 * emacs-lisp/lisp.el: Use lexical-binding.
13305 (lisp--local-variables-1, lisp--local-variables): New functions.
13306 (lisp--local-variables-completion-table): New var.
13307 (lisp-completion-at-point): Use it complete let-bound vars.
13308
13309 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
13310 eagerly (bug#14422).
13311
13312 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
13313
13314 * autorevert.el (auto-revert-notify-enabled)
13315 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
13316 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
13317 (auto-revert-notify-handler): Handle also gfilenotify.
13318
13319 * subr.el (file-notify-handle-event): New defun. Replacing ...
13320 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
13321 Remove.
13322
13323 2013-06-03 Juri Linkov <juri@jurta.org>
13324
13325 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
13326 `M-s h .'. (Bug#14427)
13327
13328 * hi-lock.el (highlight-symbol-at-point): New alias for the new
13329 command `hi-lock-face-symbol-at-point'.
13330 (hi-lock-face-symbol-at-point): New command.
13331 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
13332 (hi-lock-menu): Add `highlight-symbol-at-point'.
13333 (hi-lock-mode): Doc fix.
13334
13335 * isearch.el (isearch-forward-symbol-at-point): New command.
13336 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
13337 (isearch-highlight-regexp): Add a regexp which matches
13338 words/symbols for word/symbol mode.
13339
13340 * subr.el (find-tag-default-bounds): New function with the body
13341 mostly moved from `find-tag-default'.
13342 (find-tag-default): Move most code to `find-tag-default-bounds',
13343 call it and apply `buffer-substring-no-properties' afterwards.
13344
13345 2013-06-03 Tassilo Horn <tsdh@gnu.org>
13346
13347 * eshell/em-term.el (eshell-term-initialize):
13348 Use `cl-intersection' rather than `intersection'.
13349
13350 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
13351
13352 * vc/log-view.el: Doc fix.
13353 (log-view-mode-map): Copy keymap from `special-mode-map'.
13354
13355 2013-06-02 Eric Ludlam <zappo@gnu.org>
13356
13357 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
13358 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
13359 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
13360 (eieio-unbound, eieio-default-superclass)
13361 (eieio--define-field-accessors, method-static, method-before)
13362 (method-primary, method-after, method-num-lists)
13363 (method-generic-before, method-generic-primary)
13364 (method-generic-after, method-num-slots)
13365 (eieio-specialized-key-to-generic-key)
13366 (eieio--check-type, class-v, class-p)
13367 (eieio-class-name, define-obsolete-function-alias)
13368 (eieio-class-parents-fast, eieio-class-children-fast)
13369 (same-class-fast-p, class-constructor, generic-p)
13370 (generic-primary-only-p, generic-primary-only-one-p)
13371 (class-option-assoc, class-option, eieio-object-p)
13372 (class-abstract-p, class-method-invocation-order)
13373 (eieio-defclass-autoload-map, eieio-defclass-autoload)
13374 (eieio-class-un-autoload, eieio-defclass)
13375 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
13376 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
13377 (eieio--defgeneric-init-form, eieio-defgeneric-form)
13378 (eieio-defgeneric-reset-generic-form)
13379 (eieio-defgeneric-form-primary-only)
13380 (eieio-defgeneric-reset-generic-form-primary-only)
13381 (eieio-defgeneric-form-primary-only-one)
13382 (eieio-defgeneric-reset-generic-form-primary-only-one)
13383 (eieio-unbind-method-implementations)
13384 (eieio--defmethod, eieio--typep)
13385 (eieio-perform-slot-validation, eieio-validate-slot-value)
13386 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
13387 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
13388 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
13389 (eieio-slot-name-index, eieio-class-slot-name-index)
13390 (eieio-set-defaults, eieio-initarg-to-attribute)
13391 (eieio-attribute-to-initarg, eieio-c3-candidate)
13392 (eieio-c3-merge-lists, eieio-class-precedence-c3)
13393 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
13394 (eieio-class-precedence-list, eieio-generic-call-methodname)
13395 (eieio-generic-call-arglst, eieio-generic-call-key)
13396 (eieio-generic-call-next-method-list)
13397 (eieio-pre-method-execution-functions, eieio-generic-call)
13398 (eieio-generic-call-primary-only, eieiomt-method-list)
13399 (eieiomt-optimizing-obarray, eieiomt-install)
13400 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
13401 (eieio-generic-form, eieio-defmethod, make-obsolete)
13402 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
13403 (defclass): Remove `eval-and-compile' from macro.
13404 (call-next-method, shared-initialize): Instead of using
13405 `scoped-class' variable, use new eieio--scoped-class, and
13406 eieio--with-scoped-class.
13407 (initialize-instance): Rename local variable 'scoped-class' to
13408 'this-class' to remove ambiguitity from old global.
13409
13410 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
13411 eieio.el.
13412 (eieio--scoped-class-stack): New variable.
13413 (eieio--scoped-class): New fcn.
13414 (eieio--with-scoped-class): New scoping macro.
13415 (eieio-defclass): Use pushnew instead of add-to-list.
13416 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
13417 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
13418 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
13419 `scoped-class' variable, use new eieio--scoped-class, and
13420 eieio--with-scoped-class.
13421
13422 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
13423
13424 2013-06-02 Tassilo Horn <tsdh@gnu.org>
13425
13426 * eshell/esh-ext.el (eshell-external-command): Pass args to
13427 `eshell-find-interpreter'.
13428 (eshell-find-interpreter): Add new second parameter ARGS.
13429
13430 * eshell/em-script.el (eshell-script-initialize): Add second arg
13431 to the function added as MATCH to `eshell-interpreter-alist'.
13432
13433 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
13434 the function added as MATCH to `eshell-interpreter-alist'.
13435
13436 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
13437 (eshell-visual-options): New defcustom.
13438 (eshell-escape-control-x): Adapt docstring.
13439 (eshell-term-initialize): Test `eshell-visual-subcommands' and
13440 `eshell-visual-options' in addition to `eshell-visual-commands'.
13441 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
13442
13443 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
13444
13445 * progmodes/python.el (python-indent-block-enders): Add break,
13446 continue and raise keywords.
13447
13448 2013-06-01 Glenn Morris <rgm@gnu.org>
13449
13450 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
13451
13452 Plain (f)boundp silences compilation warnings since Emacs 22.1.
13453 * progmodes/cc-cmds.el (delete-forward-p):
13454 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
13455 * progmodes/cc-engine.el (buffer-syntactic-context):
13456 * progmodes/cc-fonts.el (face-property-instance):
13457 * progmodes/cc-mode.el (set-keymap-parents):
13458 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
13459 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
13460 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
13461 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
13462 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
13463
13464 * progmodes/cc-vars.el (other): Emacs has this widget since
13465 at least 21.1, so don't (re)define it.
13466
13467 * eshell/em-cmpl.el (eshell-cmpl-initialize):
13468 Replace the obsolete alias pcomplete-arg-quote-list.
13469
13470 2013-06-01 Leo Liu <sdl.web@gmail.com>
13471
13472 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
13473 punctuation syntax.
13474 (inferior-octave-minimal-columns)
13475 (inferior-octave-last-column-width): New variables.
13476 (inferior-octave-track-window-width-change): New function.
13477 (inferior-octave-mode): Adjust column width so that Octave output,
13478 for example from 'ls', can fit into the window nicely.
13479
13480 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
13481
13482 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
13483 Highlight expansions inside regexp literals.
13484
13485 2013-05-31 Glenn Morris <rgm@gnu.org>
13486
13487 * obsolete/sym-comp.el (symbol-complete):
13488 Replace obsolete completion-annotate-function.
13489
13490 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
13491
13492 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
13493
13494 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
13495 New function, checks if point is inside a literal that allows
13496 expression expansion.
13497 (ruby-syntax-propertize-expansion): Use it.
13498 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
13499 around the body.
13500
13501 2013-05-30 Juri Linkov <juri@jurta.org>
13502
13503 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
13504 to "\M-si".
13505 (isearch-invisible): New variable.
13506 (isearch-forward): Doc fix.
13507 (isearch-mode): Set `isearch-invisible'
13508 to the value of `search-invisible'.
13509 (isearch-toggle-case-fold): Doc fix.
13510 (isearch-toggle-invisible): New command.
13511 (isearch-query-replace): Let-bind `search-invisible'
13512 to the value of `isearch-invisible'.
13513 (isearch-search): Use `isearch-invisible' instead of
13514 `search-invisible'. Let-bind `search-invisible'
13515 to the value of `isearch-invisible'. (Bug#11378)
13516
13517 2013-05-30 Juri Linkov <juri@jurta.org>
13518
13519 * replace.el (perform-replace): Avoid `isearch-range-invisible'
13520 call when `query-flag' is nil and `search-invisible' is non-nil.
13521 (Bug#11746)
13522
13523 2013-05-30 Glenn Morris <rgm@gnu.org>
13524
13525 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
13526
13527 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
13528 (cc-require): Suppress spurious "noruntime" warnings.
13529 (cc-require-when-compile): Use fboundp, for sake of compiler.
13530
13531 * progmodes/cc-mode.el: Move load of cc-vars before that of
13532 cc-langs (which in turn loads cc-vars), to quieten compiler.
13533
13534 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13535
13536 * paren.el: Simplify the code.
13537 (show-paren-mode): Always start the timer.
13538 (show-paren--idle-timer): Rename from show-paren-idle-timer.
13539 (show-paren--overlay, show-paren--overlay-1): Rename from
13540 show-paren-overlay and show-paren-overlay-1, and initialize to an
13541 overlay rather than to nil.
13542 (show-paren-function): Misc cleanup and simplifications.
13543
13544 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13545
13546 * paren.el (show-paren-data-function): New hook.
13547 (show-paren--default): New function, extracted from show-paren-function.
13548 (show-paren-function): Use show-paren-data-function.
13549
13550 2013-05-30 Glenn Morris <rgm@gnu.org>
13551
13552 * ielm.el (ielm-map, ielm-complete-symbol):
13553 Use completion-at-point rather than obsolete functions.
13554 (inferior-emacs-lisp-mode): Doc fix.
13555 Set completion-at-point-functions, rather than
13556 comint-dynamic-complete-functions.
13557
13558 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
13559 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
13560 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
13561
13562 * image.el (image-animated-p): Tweak definition.
13563
13564 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
13565 (rlogin-process-connection-type): Tweak default. Add set-after.
13566 (rlogin-host): Doc fix.
13567 (rlogin): Tweak prompt.
13568 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
13569
13570 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
13571 * progmodes/tcl.el (inferior-tcl-mode-map):
13572 Use completion-at-point rather than obsolete alias.
13573
13574 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
13575
13576 * minibuffer.el (read-file-name-completion-ignore-case):
13577 Move before completion--in-region, for eager macro expansion.
13578
13579 2013-05-29 Juri Linkov <juri@jurta.org>
13580
13581 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
13582 for total count of matching lines. Add `global-matches' for total
13583 count of matches. Rename `matches' to `lines' for count of
13584 matching lines. Add `matches' for count of matches.
13585 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
13586 to `prev-line' for line number of prev match endpt.
13587 Increment `matches' for every match. Print the number of
13588 matching lines in the header.
13589 (occur-context-lines): Rename `lines' to `curr-line'.
13590 Rename `prev-lines' to `prev-line'. (Bug#14017)
13591
13592 2013-05-29 Juri Linkov <juri@jurta.org>
13593
13594 * replace.el (perform-replace): Add `skip-read-only-count',
13595 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
13596 Increment them for corresponding conditions and report the number
13597 of skipped occurrences in the final message. (Bug#11746)
13598 (query-replace, query-replace-regexp, query-replace-regexp-eval)
13599 (replace-string, replace-regexp): Doc fix.
13600
13601 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
13602
13603 * emacs-lisp/trace.el (trace--read-args): Provide a default.
13604
13605 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
13606 prog-mode-map (bug#14504).
13607
13608 2013-05-29 Leo Liu <sdl.web@gmail.com>
13609
13610 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
13611 (octave-help): Small simplification.
13612
13613 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
13614 off the highlight first.
13615
13616 2013-05-29 Glenn Morris <rgm@gnu.org>
13617
13618 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
13619 Handle idlwave-last-system-routine-info-cons-cell being nil.
13620
13621 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
13622 (idlwave-write-paths): Simplify via with-temp-buffer.
13623
13624 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
13625 * emulation/cua-rect.el: Also load cua-base at run time.
13626
13627 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
13628 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
13629 (cperl-imenu-on-info): Require imenu.
13630
13631 2013-05-28 Alan Mackenzie <acm@muc.de>
13632
13633 Handle "capitalised keywords" correctly.
13634 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
13635
13636 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
13637
13638 * eshell/em-unix.el: Add -r option to cp.
13639
13640 2013-05-28 Glenn Morris <rgm@gnu.org>
13641
13642 * vc/vc-arch.el (vc-exec-after): Declare.
13643 (vc-switches): Autoload.
13644 * vc/vc-bzr.el: No need to require vc when compiling.
13645 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
13646 (vc-resynch-buffer, vc-dir-refresh): Declare.
13647 (vc-setup-buffer, vc-switches): Autoload.
13648 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
13649 (vc-resynch-buffer): Declare.
13650 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
13651 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
13652 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
13653 (grep-read-regexp, grep-read-files, grep-expand-template)
13654 (vc-dir-refresh): Declare.
13655 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
13656 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
13657 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
13658 * vc/vc-mtn.el (vc-exec-after): Declare.
13659 (vc-switches): Autoload.
13660 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
13661 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
13662 (vc-file-tree-walk): Declare.
13663 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
13664 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
13665 (vc-tag-precondition, vc-rename-master): Autoload.
13666 * vc/vc-svn.el (vc-exec-after): Declare.
13667 (vc-switches, vc-setup-buffer): Autoload.
13668 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
13669 Autoload.
13670 (vc-resynch-buffer): Declare.
13671
13672 * obsolete/fast-lock.el (byte-compile-warnings):
13673 Don't warn about obsolete features in this obsolete file.
13674
13675 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
13676 Move definition before use.
13677
13678 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
13679 (dun-unix-verbs): Remove dun-zippy.
13680 (dun-zippy): Remove function.
13681
13682 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
13683
13684 2013-05-27 Juri Linkov <juri@jurta.org>
13685
13686 * replace.el (replace-search): New function with code moved out
13687 from `perform-replace'.
13688 (replace-highlight, replace-dehighlight): Move function definitions
13689 up closer to `replace-search'. (Bug#11746)
13690
13691 2013-05-27 Juri Linkov <juri@jurta.org>
13692
13693 * replace.el (perform-replace): Ignore invisible matches.
13694 In addition to checking `query-replace-skip-read-only', also
13695 filter out matches by calling `run-hook-with-args-until-failure'
13696 on `isearch-filter-predicates', and also check `search-invisible'
13697 for t or call `isearch-range-invisible'.
13698 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
13699
13700 2013-05-27 Juri Linkov <juri@jurta.org>
13701
13702 * isearch.el (isearch-filter-predicates): Rename from
13703 `isearch-filter-predicate'. Doc fix. (Bug#11378)
13704 (isearch-message-prefix): Display text from the property
13705 `isearch-message-prefix' of the currently active filters.
13706 (isearch-search): Don't compare `isearch-filter-predicate' with
13707 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
13708 on `isearch-filter-predicates'. Also check `search-invisible' for t
13709 or call `isearch-range-invisible'.
13710 (isearch-filter-visible): Make obsolete.
13711 (isearch-lazy-highlight-search):
13712 Call `run-hook-with-args-until-failure' on
13713 `isearch-filter-predicates' and use `isearch-range-invisible'.
13714
13715 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
13716 `isearch-filter-predicates' instead of `funcall'ing
13717 `isearch-filter-predicate'.
13718 (Info-mode): Set `Info-isearch-filter' to
13719 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
13720
13721 * dired-aux.el (dired-isearch-filter-predicate-orig):
13722 Remove variable.
13723 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
13724 (dired-isearch-filenames-end): Add and remove
13725 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
13726 instead of changing the value of `isearch-filter-predicate'.
13727 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
13728 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
13729 Put property `isearch-message-prefix' to "filename " on
13730 `dired-isearch-filter-filenames'.
13731
13732 * wdired.el (wdired-change-to-wdired-mode):
13733 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
13734 locally instead of changing `isearch-filter-predicate'.
13735 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
13736
13737 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
13738
13739 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
13740 return the commit hash (Bug#14459). Also set the
13741 `vc-git-detached' property.
13742 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
13743 (vc-git-mode-line-string): Use the same help-echo format whether
13744 in detached mode or not, because we know the actual revision now.
13745 When in detached mode, shorten the revision to 7 chars.
13746
13747 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13748
13749 * emacs-lisp/easy-mmode.el (define-minor-mode):
13750 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
13751 mode hook and provide a docstring.
13752
13753 2013-05-27 Alan Mackenzie <acm@muc.de>
13754
13755 Remove spurious syntax-table text properties inserted by C-y.
13756 * progmodes/cc-mode.el (c-after-change): Also clear hard
13757 syntax-table property with value nil.
13758
13759 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
13760
13761 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
13762 when reading the events; the buffer layout shall not be changed.
13763
13764 2013-05-27 Leo Liu <sdl.web@gmail.com>
13765
13766 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
13767 New variable.
13768 (inferior-octave-directory-tracker): Automatically re-sync
13769 default-directory.
13770 (octave-help): Improve handling of 'See also'.
13771
13772 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13773
13774 * doc-view.el: Minor naming convention tweaks.
13775 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
13776
13777 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
13778 even if there's no `display' property yet (bug#14435).
13779
13780 2013-05-25 Eli Zaretskii <eliz@gnu.org>
13781
13782 * subr.el (unmsys--file-name): Rename from reveal-filename.
13783
13784 * Makefile.in (custom-deps, finder-data, autoloads)
13785 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
13786 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
13787 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
13788
13789 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13790
13791 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
13792 error-completion on the first 2 args of condition-case (bug#14446).
13793 Don't burp at EOB.
13794
13795 2013-05-25 Leo Liu <sdl.web@gmail.com>
13796
13797 * comint.el (comint-previous-matching-input): Do not flood the
13798 *Messages* buffer with trivial messages.
13799
13800 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13801
13802 * progmodes/flymake.el (flymake-nop): Don't return a string.
13803 (flymake-set-at): Fix typo.
13804
13805 * simple.el (read--expression): New function, extracted from
13806 eval-expression. Set completion-at-point-functions (bug#14465).
13807 (eval-expression, eval-minibuffer): Use it.
13808
13809 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
13810
13811 * progmodes/flymake.el (flymake-save-buffer-in-file)
13812 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
13813 (flymake-selected-frame, flymake-log, flymake-ins-after)
13814 (flymake-set-at, flymake-get-buildfile-from-cache)
13815 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
13816 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
13817 Refine the doc string.
13818 (flymake-get-file-name-mode-and-masks): Reformat.
13819 (flymake-get-real-file-name-function): Fix a minor bug.
13820
13821 2013-05-24 Juri Linkov <juri@jurta.org>
13822
13823 * progmodes/grep.el (grep-mode-font-lock-keywords):
13824 Support =linenumber= format used by git-grep for lines with
13825 function names. (Bug#13549)
13826
13827 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13828
13829 * progmodes/octave.el (octave-smie-rules): Return nil rather than
13830 0 after a semi-colon; it works better for smie-auto-fill.
13831 (octave--indent-new-comment-line): New function.
13832 (octave-indent-new-comment-line): Use it (indirectly).
13833 (octave-mode): Don't disable smie-auto-fill. Use add-function to
13834 modify comment-line-break-function.
13835
13836 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
13837 (smie-setup): Use add-function to set it.
13838
13839 2013-05-24 Sam Steingold <sds@gnu.org>
13840
13841 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
13842 argument (before the `interactive' argument).
13843
13844 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13845
13846 * image-mode.el (image-mode-winprops): Add winprops to
13847 image-mode-winprops-alist before running
13848 image-mode-new-window-functions.
13849 * doc-view.el (doc-view-new-window-function): Don't delay
13850 doc-view-goto-page via timers (bug#14435).
13851
13852 2013-05-24 Tassilo Horn <tsdh@gnu.org>
13853
13854 * doc-view.el: Integrate with desktop.el. (Bug#14435)
13855 (doc-view-desktop-save-buffer): New function.
13856 (doc-view-restore-desktop-buffer): New function.
13857 (desktop-buffer-mode-handlers):
13858 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
13859 handler.
13860 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
13861 `desktop-save-buffer' function.
13862
13863 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
13864
13865 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
13866 (tramp-gvfs-file-name-handler): Raise a user error when
13867 `tramp-gvfs-enabled' is nil.
13868 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
13869 Do not raise a user error when loading package. (Bug#14447)
13870
13871 * net/xesam.el: Move to obsolete/.
13872
13873 2013-05-24 Glenn Morris <rgm@gnu.org>
13874
13875 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
13876
13877 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
13878
13879 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
13880 (Info-find-node, Man-getpage-in-background): Declare.
13881
13882 * mail/unrmail.el (unrmail):
13883 Replace obsolete detect-coding-with-priority.
13884
13885 * net/socks.el (socks-split-string): Use this rather than split-string.
13886 (socks-nslookup-host): Update for above change.
13887 (dynamic-choice, s5-dynamic-choice-match)
13888 (s5-dynamic-choice-match-inline, s5-widget-value-create):
13889 Comment out unused code.
13890
13891 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
13892 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
13893 (gud-tooltip-echo-area): Make obsolete.
13894 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
13895
13896 * progmodes/js.el (js--optimize-arglist): Declare.
13897
13898 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
13899
13900 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
13901 (ediff-window-C): Declare.
13902
13903 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
13904 Tweak requires to silence compiler.
13905
13906 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
13907 (he-search-string, he-tried-table, he-expand-list)
13908 (he-init-string, he-string-member, he-substitute-string)
13909 (he-reset-string): Declare.
13910
13911 * obsolete/options.el (list-options): Use custom-variable-p,
13912 rather than obsolete alias.
13913
13914 2013-05-23 Sam Steingold <sds@gnu.org>
13915
13916 * simple.el (shell-command-on-region): Pass the `replace' argument
13917 down to `call-process-region' to comply with the doc as reported on
13918 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
13919
13920 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13921
13922 * emacs-lisp/smie.el (smie-indent-forward-token)
13923 (smie-indent-backward-token): Handle string tokens (bug#14381).
13924
13925 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13926
13927 * ielm.el (ielm-menu): New menu.
13928 (inferior-emacs-lisp-mode): Set comment-start.
13929
13930 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13931
13932 * textmodes/reftex.el (reftex-ref-style-toggle):
13933 Fix deactivate action.
13934
13935 * textmodes/reftex-vars.el (reftex-ref-style-alist):
13936 Add cleveref macros.
13937
13938 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
13939 Accept options for bibliography commands.
13940 * textmodes/reftex-vars.el (reftex-bibliography-commands):
13941 Add addbibresource. Basic Biblatex support.
13942
13943 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
13944
13945 * net/tramp-gvfs.el (top):
13946 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
13947 when loading package. (Bug#14447)
13948
13949 2013-05-23 Glenn Morris <rgm@gnu.org>
13950
13951 * progmodes/js.el: No need to load comint when compiling.
13952 (ring-insert, comint-send-string, comint-send-input)
13953 (comint-last-input-end, ido-chop): Declare.
13954
13955 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
13956 * vc/ediff-mult.el: Adjust requires.
13957 (ediff-directories-internal, ediff-directory-revisions-internal)
13958 (ediff-patch-file-internal): Declare.
13959 * vc/ediff-ptch.el: Adjust requires.
13960 (ediff-use-last-dir, ediff-buffers-internal): Declare.
13961 (ediff-find-file): Autoload.
13962 * vc/ediff-util.el: No need to load ediff when compiling.
13963 (ediff-regions-internal): Declare.
13964 * vc/ediff-wind.el: Adjust requires.
13965 (ediff-compute-toolbar-width): Define when compiling.
13966 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
13967 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
13968 (dired-get-filename, dired-get-marked-files)
13969 (ediff-last-dir-patch, ediff-patch-default-directory)
13970 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
13971 (ediff-patch-buffer-internal): Declare.
13972
13973 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
13974 (ispell-process, ispell-buffer-local-words, lm-summary)
13975 (lm-section-start, lm-section-end): Declare.
13976 (checkdoc-ispell-init): Simplify.
13977
13978 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
13979 (he-string-member, he-reset-string, he-substitute-string): Declare.
13980
13981 * eshell/em-ls.el: Adjust requires.
13982 (eshell-glob-regexp): Declare.
13983 * eshell/em-tramp.el: Adjust requires.
13984 (eshell-parse-command): Autoload.
13985 * eshell/em-xtra.el: Adjust requires.
13986 (eshell-parse-command): Autoload.
13987 * eshell/esh-ext.el: Adjust requires.
13988 (eshell-parse-command, eshell-close-handles): Autoload.
13989 * eshell/esh-io.el: Adjust requires.
13990 (eshell-output-filter): Autoload.
13991 * eshell/esh-util.el: No need to load tramp when compiling.
13992 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
13993 Declare.
13994 (eshell-parse-ange-ls): Require ange-ftp and tramp.
13995 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
13996 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
13997 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
13998 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
13999 * eshell/esh-opt.el, eshell/esh-proc.el:
14000 * eshell/esh-var.el: Adjust requires.
14001 * eshell/eshell.el: Do not require esh-util twice.
14002 (eshell-add-input-to-history): Declare.
14003 (eshell-command): Check history module is active before using it.
14004
14005 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
14006
14007 2013-05-22 Leo Liu <sdl.web@gmail.com>
14008
14009 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
14010
14011 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
14012
14013 * autorevert.el (auto-revert-notify-add-watch)
14014 (auto-revert-notify-handler): Add `attrib' for the inotify case,
14015 it indicates changes in file modification time.
14016
14017 2013-05-22 Glenn Morris <rgm@gnu.org>
14018
14019 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14020 Always delete the autoloaded function from the noruntime and
14021 unresolved functions lists.
14022
14023 * allout.el: No need to load epa, epg, overlay when compiling.
14024 (epg-context-set-passphrase-callback, epg-list-keys)
14025 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
14026 (epg-key-user-id-list): Declare.
14027
14028 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
14029 (viper-set-parsing-style-toggling-macro)
14030 (viper-set-emacs-state-searchstyle-macros):
14031 Use called-interactively-p on Emacs.
14032 (viper-looking-back): Make it an obsolete alias. Update callers.
14033 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
14034 Use looking-back rather than viper-looking-back.
14035 (viper-tmp-insert-at-eob, viper-enlarge-region)
14036 (viper-read-string-with-history, viper-register-to-point)
14037 (viper-append-to-register, viper-change-state-to-vi)
14038 (viper-backward-char-carefully, viper-forward-char-carefully)
14039 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
14040 (viper-change-state-to-emacs): Declare.
14041 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
14042 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
14043 * emulation/viper-mous.el: Do not load viper-cmd.
14044 (viper-backward-char-carefully, viper-forward-char-carefully)
14045 (viper-forward-word, viper-adjust-window): Declare.
14046
14047 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
14048
14049 * progmodes/idlw-help.el (idlwave-help-fontify):
14050 Use called-interactively-p.
14051
14052 * term/w32console.el (w32-get-console-codepage)
14053 (w32-get-console-output-codepage): Declare.
14054
14055 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
14056 Remove unnecessary declarations.
14057 (dframe-message): Doc fix.
14058
14059 * info.el (dframe-select-attached-frame, dframe-current-frame):
14060 Declare.
14061
14062 * speedbar.el (speedbar-message): Make it an obsolete alias.
14063 Update all callers.
14064 (speedbar-with-attached-buffer)
14065 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
14066 (speedbar-with-writable): Use backquote.
14067 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
14068 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
14069 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
14070 rather than speedbar- aliases.
14071 * mail/rmail.el: Load dframe rather than speedbar when compiling.
14072 (speedbar-make-specialized-keymap, speedbar-insert-button)
14073 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
14074 (speedbar-do-function-pointer): Declare.
14075 (rmail-speedbar-button, rmail-speedbar-find-file)
14076 (rmail-speedbar-move-message):
14077 Use dframe-with-attached-buffer rather than speedbar- alias.
14078 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
14079 (dframe-message, speedbar-make-specialized-keymap)
14080 (speedbar-add-expansion-list, speedbar-mode-functions-list)
14081 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
14082 (speedbar-insert-button, dframe-select-attached-frame)
14083 (dframe-maybee-jump-to-attached-frame)
14084 (speedbar-change-initial-expansion-list)
14085 (speedbar-previously-used-expansion-list-name): Declare.
14086 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
14087 Use dframe-message, dframe-with-attached-buffer rather than
14088 speedbar- aliases.
14089 (gud-sentinel): Silence compiler.
14090 * progmodes/vhdl-mode.el (speedbar-refresh)
14091 (speedbar-do-function-pointer, speedbar-add-supported-extension)
14092 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
14093 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
14094 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
14095 (speedbar-file-lists, speedbar-make-tag-line)
14096 (speedbar-line-directory, speedbar-goto-this-file)
14097 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
14098 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
14099 (speedbar-make-button, speedbar-reset-scanners)
14100 (speedbar-files-item-info, speedbar-line-text)
14101 (speedbar-find-file-in-frame, speedbar-set-timer)
14102 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
14103 (speedbar-with-writable): Do not (re)define it.
14104 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
14105 rather than speedbar- alias.
14106
14107 2013-05-21 Leo Liu <sdl.web@gmail.com>
14108
14109 * progmodes/octave.el (octave-mode-menu): Update and re-organize
14110 menu items.
14111 (octave-mode): Tweak fill-nobreak-predicate.
14112 (inferior-octave-startup): Check process to avoid infinite loop.
14113 (inferior-octave): Pop to buffer first to show abornmal process
14114 exit information.
14115
14116 2013-05-21 Glenn Morris <rgm@gnu.org>
14117
14118 * printing.el (pr-menu-bar): Define when compiling.
14119
14120 2013-05-21 Leo Liu <sdl.web@gmail.com>
14121
14122 * progmodes/octave.el (octave-auto-fill): Remove.
14123 (octave-indent-new-comment-line): Improve.
14124 (octave-mode): Use auto fill mode through
14125 comment-line-break-function and fill-nobreak-predicate.
14126 (octave-goto-function-definition): Support DEFUN_DLD.
14127 (octave-beginning-of-defun): Small tweak.
14128 (octave-help): Show parent directory.
14129
14130 2013-05-21 Glenn Morris <rgm@gnu.org>
14131
14132 * files.el (dired-unmark):
14133 * progmodes/gud.el (gdb-input): Update declarations.
14134
14135 * calculator.el (electric, ehelp): No need to load when compiling.
14136 (Electric-command-loop, electric-describe-mode): Declare.
14137
14138 * doc-view.el (doc-view-current-converter-processes): Move before use.
14139
14140 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14141 Move MODE-set-explicitly definition before use.
14142
14143 * international/mule-diag.el (mule-diag):
14144 Don't use obsolete window-system-version.
14145
14146 * mail/feedmail.el (smtpmail): No need to load when compiling.
14147 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
14148
14149 * mail/mail-utils.el (rfc822): No need to load when compiling.
14150 (rfc822-addresses): Autoload it.
14151 (mail-strip-quoted-names): Trivial simplification.
14152
14153 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
14154 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
14155
14156 * net/snmp-mode.el (tempo): Don't duplicate requires.
14157
14158 * progmodes/prolog.el (info): No need to load when compiling.
14159 (comint): Require before shell requires it.
14160 (Info-goto-node): Autoload it.
14161 (Info-follow-nearest-node): Declare.
14162 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
14163
14164 * textmodes/artist.el (picture-mode-exit): Declare.
14165
14166 * textmodes/reftex-parse.el (reftex-parse-from-file):
14167 Trivial rewrite so the compiler can parse it better.
14168
14169 2013-05-20 Leo Liu <sdl.web@gmail.com>
14170
14171 * progmodes/octave.el (octave-help-mode-map)
14172 (octave-help-mode-finish-hook): New variables.
14173 (octave-help-mode, octave-help-mode-finish): New functions.
14174 (octave-help): Use octave-help-mode.
14175
14176 2013-05-20 Glenn Morris <rgm@gnu.org>
14177
14178 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
14179
14180 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
14181
14182 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
14183 start at point, so that expansion starting right after opening
14184 slash in a regexp is recognized.
14185 (ruby-syntax-before-regexp-re): New defvar, extracted from
14186 ruby-syntax-propertize-function. Since the value of this regexp
14187 is looked up at runtime now, we should be able to turn
14188 `ruby-syntax-methods-before-regexp' into a defcustom later.
14189 (ruby-syntax-propertize-function): Split regexp matching into two
14190 parts, for opening and closing slashes. That allows us to skip
14191 over string interpolations and support multiline regexps.
14192 Don't call `ruby-syntax-propertize-expansions', instead use another rule
14193 for them, which calls `ruby-syntax-propertize-expansion'.
14194 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
14195 call to `ruby-syntax-propertize-function'.
14196 (ruby-syntax-propertize-expansion): Extracted from
14197 `ruby-syntax-propertize-expansions'. Handles one expansion.
14198 (ruby-syntax-propertize-percent-literal): Leave point right after
14199 the percent symbol, so that the expression expansion rule can
14200 propertize the contents.
14201 (ruby-syntax-propertize-heredoc): Leave point at bol following the
14202 heredoc openers.
14203 (ruby-syntax-propertize-expansions): Remove.
14204
14205 2013-05-18 Juri Linkov <juri@jurta.org>
14206
14207 * man.el (Man-default-man-entry): Remove `-' from the end
14208 of the default value. (Bug#14400)
14209
14210 2013-05-18 Glenn Morris <rgm@gnu.org>
14211
14212 * comint.el (comint-password-prompt-regexp):
14213 Allow "password for XXX" where XXX contains colons (eg https://...).
14214
14215 2013-05-18 Leo Liu <sdl.web@gmail.com>
14216
14217 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
14218 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
14219 (octave-source-directories): Don't check process.
14220 (octave-source-directories, octave-find-definition): Doc fix.
14221
14222 2013-05-18 Glenn Morris <rgm@gnu.org>
14223
14224 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
14225 Remove backspace/delete bindings. (Bug#14392)
14226
14227 * cus-dep.el (custom-make-dependencies): Sort the output.
14228 (custom-versions-load-alist): Convert comment to doc.
14229
14230 2013-05-17 Leo Liu <sdl.web@gmail.com>
14231
14232 * newcomment.el (comment-search-backward): Stricter in finding
14233 comment start. (Bug#14303)
14234
14235 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
14236 (octave-comment-start-skip): Properly anchored.
14237
14238 2013-05-17 Leo Liu <sdl.web@gmail.com>
14239
14240 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
14241 Clean up when turned off. (Bug#14395)
14242 (smie--highlight-matching-block-overlay): No longer buffer-local.
14243 (smie-highlight-matching-block): Adjust.
14244
14245 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
14246
14247 Doc string fix for "nanoseconds" (Bug#14406).
14248 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
14249 Fix doc string typo that had "nanoseconds" instead of "microseconds".
14250
14251 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
14252
14253 * calc/calc-units.el (math-extract-units): Preserve powers
14254 of units.
14255
14256 2013-05-17 Leo Liu <sdl.web@gmail.com>
14257
14258 * subr.el (delete-consecutive-dups): New function.
14259 * ido.el (ido-set-matches-1): Use it.
14260 * progmodes/octave.el (inferior-octave-completion-table): Use it.
14261 * ido.el (ido-remove-consecutive-dups): Remove.
14262
14263 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14264
14265 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
14266 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
14267 regexp-opt's `words'.
14268
14269 2013-05-16 Leo Liu <sdl.web@gmail.com>
14270
14271 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
14272 (smie--highlight-matching-block-overlay)
14273 (smie--highlight-matching-block-lastpos)
14274 (smie--highlight-matching-block-timer): New variables.
14275 (smie-highlight-matching-block): New function.
14276 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
14277 (smie-setup): Conditionally enable smie-blink-matching-open.
14278
14279 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
14280
14281 Sync with upstream verilog-mode r840.
14282 * progmodes/verilog-mode.el (verilog-mode-version)
14283 (verilog-mode-release-date): Update.
14284 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
14285 (verilog-sig-tieoff): Fix string error on
14286 AUTORESET with colon define, bug594. Reported by Andrew Hou.
14287 (verilog-read-decls): Fix parameters confusing
14288 AUTOINST interfaces, bug565. Reported by Leith Johnson.
14289
14290 2013-05-16 Eli Zaretskii <eliz@gnu.org>
14291
14292 * subr.el (reveal-filename): New function.
14293
14294 * loadup.el: Compute Emacs executable versions on MS-Windows,
14295 where executables have the .exe extension. Add a hard link
14296 emacs-XX.YY.ZZ.exe on MS-Windows.
14297
14298 * Makefile.in (XARGS_LIMIT): New variable.
14299 (custom-deps, finder-data, autoloads)
14300 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14301 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14302 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
14303 (compile-main): Limit xargs according to $(XARGS_LIMIT).
14304
14305 2013-05-16 Leo Liu <sdl.web@gmail.com>
14306
14307 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
14308 (octave-mode-menu, octave-mode-map): Remove its uses.
14309
14310 2013-05-16 Reto Zimmermann <reto@gnu.org>
14311
14312 Sync with upstream vhdl mode v3.34.2.
14313 * progmodes/vhdl-mode.el: Use `push' throughout.
14314 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
14315 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
14316 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
14317 (vhdl-actual-generic-name): New option to derive actual generic name.
14318 (vhdl-port-paste-signals): Replace formal by actual generics.
14319 (vhdl-beautify): New name for old group vhdl-align. Update users.
14320 (vhdl-beautify-options): New option.
14321 (vhdl-last-input-event): New compat alias. Use throughout.
14322 (vhdl-goto-line): Replace user level function `goto-line'.
14323 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
14324 vhdl-fix-statement-buffer.
14325 (vhdl-create-mode-menu): Add some entries.
14326 (vhdl-align-region-groups): Respect vhdl-beautify-options.
14327 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
14328 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
14329 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
14330 to force statements on one line.
14331 (vhdl-remove-trailing-spaces-region):
14332 New, split from vhdl-remove-trailing-spaces.
14333 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
14334 Respect vhdl-beautify-options.
14335 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
14336 (vhdl-update-sensitivity-list): Not add with index if exists without.
14337 Not include array index with signal. Ignore keywords in comments.
14338 (vhdl-get-visible-signals): Regexp tweaks.
14339 (vhdl-template-component-inst): Handle empty library.
14340 (vhdl-template-type): Add template for 'enum' type.
14341 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
14342 Use vhdl-replace-string.
14343 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
14344 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
14345 (vhdl-speedbar-initialize): Update for above name change.
14346 (vhdl-compose-wire-components): Fix in handling of constants.
14347 (vhdl-error-regexp-emacs-alist): New variable.
14348 (vhdl-error-regexp-add-emacs): New function;
14349 adds support for new compile.el (Emacs 22+)
14350 (vhdl-generate-makefile-1): Change target order for single lib. units.
14351 Allow use of absolute file names.
14352
14353 2013-05-16 Leo Liu <sdl.web@gmail.com>
14354
14355 * simple.el (prog-indent-sexp): Indent enclosing defun.
14356
14357 2013-05-15 Glenn Morris <rgm@gnu.org>
14358
14359 * cus-start.el (show-trailing-whitespace): Move to editing basics.
14360 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
14361 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
14362 (whitespace-highlight): Move to whitespace group.
14363
14364 * comint.el (comint-source):
14365 * pcmpl-linux.el (pcmpl-linux):
14366 * shell.el (shell-faces):
14367 * eshell/esh-opt.el (eshell-opt):
14368 * international/ccl.el (ccl): Remove empty custom groups.
14369
14370 * completion.el (dynamic-completion-mode):
14371 * jit-lock.el (jit-lock-debug-mode):
14372 * minibuffer.el (completion-in-region-mode):
14373 * type-break.el (type-break-mode-line-message-mode)
14374 (type-break-query-mode):
14375 * emulation/tpu-edt.el (tpu-edt-mode):
14376 * progmodes/subword.el (global-subword-mode, global-superword-mode):
14377 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
14378 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
14379
14380 * term/xterm.el (xterm): Change parent group to terminals.
14381
14382 * master.el (master): Remove empty custom group.
14383 (master-mode): Remove unused :group argument.
14384 * textmodes/refill.el (refill): Remove empty custom group.
14385 (refill-mode): Remove unused :group argument.
14386
14387 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
14388
14389 * cus-dep.el: Provide a feature.
14390 (custom-make-dependencies): Ignore dotfiles (dir-locals).
14391 Don't mistakenly ignore files whose basenames match a basename
14392 from preloaded-file-list (eg cedet/ede/simple.el).
14393 Add a fallback method for getting :group.
14394
14395 2013-05-15 Juri Linkov <juri@jurta.org>
14396
14397 * isearch.el (isearch-char-by-name): Rename from
14398 `isearch-insert-char-by-name'. Doc fix.
14399 (isearch-forward): Mention `isearch-char-by-name' in
14400 the docstring. (Bug#13348)
14401
14402 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
14403 `exit-minibuffer' instead of
14404 `isearch-nonincremental-exit-minibuffer'.
14405 (isearch-edit-string): Remove mention of
14406 `isearch-nonincremental-exit-minibuffer' from docstring.
14407 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
14408 (isearch-forward-exit-minibuffer)
14409 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
14410
14411 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14412
14413 * loadup.el: Just use unversioned DOC.
14414
14415 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
14416 literals as extending to EOB.
14417 (nxml-last-fontify-end): Remove unused variable.
14418 (nxml-after-change1): Use with-silent-modifications.
14419 (nxml-extend-after-change-region): Simplify.
14420 (nxml-extend-after-change-region1): Remove function.
14421 (nxml-after-change1): Don't adjust for dependent regions.
14422 (nxml-fontify-matcher): Simplify.
14423 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
14424 (xmltok-add-dependent): Remove function.
14425 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
14426 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
14427 (xmltok-scan-prolog-after-processing-instruction-open): Treat
14428 unclosed <[[, <?, comment, and other literals as extending to EOB.
14429 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
14430 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
14431 Remove functions.
14432 (rng-do-some-validation-1): Don't mark dependent regions.
14433 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
14434 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
14435 (nxml-clear-dependent-regions): Remove functions.
14436 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
14437 (nxml-ensure-scan-up-to-date):
14438 Don't clear&mark dependent regions.
14439
14440 2013-05-15 Leo Liu <sdl.web@gmail.com>
14441
14442 * progmodes/octave.el (octave-goto-function-definition):
14443 Improve and fix callers.
14444
14445 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14446
14447 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
14448 the setter (bug#14387).
14449
14450 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
14451 surrounding group (bug#14402).
14452
14453 2013-05-14 Juri Linkov <juri@jurta.org>
14454
14455 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
14456 (Bug#14390)
14457
14458 2013-05-14 Glenn Morris <rgm@gnu.org>
14459
14460 * progmodes/f90.el (f90-imenu-generic-expression):
14461 Fix typo in 2013-05-08 change. (Bug#14402)
14462
14463 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14464
14465 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
14466 Remove signals for which replies are never received.
14467
14468 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14469
14470 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
14471 (gdb-handler-alist, gdb-handler-number): Remove variables.
14472 (gdb-handler-list): New variable.
14473 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
14474 (gdb-pending-handler-p, gdb-handle-reply)
14475 (gdb-remove-all-pending-triggers): New functions.
14476 (gdb-discard-unordered-replies): New defcustom.
14477 (gdb-handler): New defstruct.
14478 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
14479 instead of gdb-pending-triggers. Update docstring.
14480 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
14481 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
14482 (gdb-var-update-handler, def-gdb-auto-update-trigger)
14483 (def-gdb-auto-update-handler, gdb-get-changed-registers)
14484 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
14485 (gdb-frame-handler): Pending triggers are now automatically managed.
14486 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
14487 Remove argument.
14488 (gdb-input): Automatically handles pending triggers. Update docstring.
14489 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
14490 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
14491 Update comments.
14492 (gdb-done-or-error): Now use gdb-handle-reply.
14493
14494 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14495
14496 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
14497 gdb-debug-log.
14498
14499 2013-05-14 Glenn Morris <rgm@gnu.org>
14500
14501 * subr.el (user-emacs-directory-warning): New option.
14502 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
14503
14504 2013-05-14 Leo Liu <sdl.web@gmail.com>
14505
14506 * progmodes/octave.el (octave-font-lock-keywords): Fix error
14507 during redisplay.
14508 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
14509 (octave-font-lock-texinfo-comment): Fix invalid search bound
14510 error: wrong side of point.
14511
14512 2013-05-14 Glenn Morris <rgm@gnu.org>
14513
14514 * progmodes/flymake.el (flymake-xml-program): New option.
14515 (flymake-xml-init): Use it.
14516
14517 * term/xterm.el: Provide a feature.
14518
14519 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
14520
14521 2013-05-13 Glenn Morris <rgm@gnu.org>
14522
14523 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
14524 Add compat aliases as a hack workaround. (Bug#14384)
14525
14526 2013-05-13 Leo Liu <sdl.web@gmail.com>
14527
14528 * progmodes/octave.el (octave-indent-comment): Fix indentation for
14529 ###, and %!.
14530 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
14531 C-M-q.
14532 (octave-comment-start-skip): Include %!.
14533 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
14534
14535 2013-05-12 Leo Liu <sdl.web@gmail.com>
14536
14537 * progmodes/octave.el (inferior-octave-startup): Store the value
14538 of __octave_srcdir__ for octave-source-directories.
14539 (inferior-octave-check-process): New function refactored out of
14540 inferior-octave-send-list-and-digest.
14541 (octave-source-directories)
14542 (octave-find-definition-filename-function): New variables.
14543 (octave-source-directories)
14544 (octave-find-definition-default-filename): New functions.
14545 (octave-find-definition): Improve to find functions implemented in C++.
14546
14547 2013-05-12 Glenn Morris <rgm@gnu.org>
14548
14549 * calendar/diary-lib.el (diary-outlook-format-1):
14550 Don't include dayname in the output. (Bug#14349)
14551
14552 2013-05-11 Glenn Morris <rgm@gnu.org>
14553
14554 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
14555
14556 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
14557 Treat cc-provide like provide.
14558
14559 2013-05-11 Kevin Ryde <user42@zip.com.au>
14560
14561 * cus-dep.el (custom-make-dependencies):
14562 Use generated-autoload-load-name for the sake of files such
14563 such cedet/semantic/bovine/c.el, where the base file name
14564 is not in load-path. (Bug#5277)
14565
14566 2013-05-11 Glenn Morris <rgm@gnu.org>
14567
14568 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
14569 Provide features.
14570
14571 2013-05-11 Leo Liu <sdl.web@gmail.com>
14572
14573 * progmodes/octave.el (octave-indent-comment): Improve.
14574 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
14575 (octave-eldoc-function-signatures, octave-eldoc-function):
14576 New functions.
14577 (octave-mode, inferior-octave-mode): Add eldoc support.
14578
14579 2013-05-11 Richard Stallman <rms@gnu.org>
14580
14581 * epa.el (epa-decrypt-file): Take output file name as argument
14582 and read it using `interactive'.
14583
14584 2013-05-11 Leo Liu <sdl.web@gmail.com>
14585
14586 * progmodes/octave.el (octave-beginning-of-line)
14587 (octave-end-of-line): Check before using up-list because it jumps
14588 out of more syntactic contructs since moving to smie.
14589 (octave-indent-comment): New function.
14590 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
14591 (octave-begin-keywords, octave-end-keywords)
14592 (octave-reserved-words, octave-smie-bnf-table)
14593 (octave-smie-rules): Add new keywords from Octave 3.6.4.
14594
14595 2013-05-11 Glenn Morris <rgm@gnu.org>
14596
14597 * faces.el (internal-face-x-get-resource):
14598 * frame.el (ns-display-monitor-attributes-list):
14599 * calc/calc-aent.el (math-to-radians-2):
14600 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
14601 Fix declarations.
14602
14603 * calc/calc-menu.el: Make it loadable in isolation.
14604
14605 * net/eudcb-bbdb.el: Make it loadable without bbdb.
14606 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
14607 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
14608 (eudc-bbdb-query-internal): Require 'bbdb.
14609
14610 * lpr.el (lpr-headers-switches):
14611 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
14612
14613 * progmodes/sql.el (sql-login-params): Fix and improve :type.
14614
14615 * emulation/edt-mapper.el: In batch mode, error rather than hang.
14616
14617 * term.el (term-set-escape-char): Make it idempotent.
14618
14619 2013-05-10 Leo Liu <sdl.web@gmail.com>
14620
14621 * progmodes/octave.el (inferior-octave-completion-table):
14622 No longer a function and all uses changed. Use cache to speed up
14623 completion due to bug#11906.
14624 (octave-beginning-of-defun): Re-write to be more general.
14625
14626 2013-05-10 Glenn Morris <rgm@gnu.org>
14627
14628 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
14629
14630 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
14631
14632 * comint.el (comint-redirect-send-command-to-process): Use :around
14633 rather than :override for comint-redirect-filter.
14634 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
14635 Call it instead of comint-redirect-original-filter-function (which
14636 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
14637
14638 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
14639
14640 * frame.el (display-monitor-attributes-list): Add NS case.
14641 (ns-display-monitor-attributes-list): Declare.
14642
14643 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
14644
14645 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
14646
14647 2013-05-09 Glenn Morris <rgm@gnu.org>
14648
14649 * international/fontset.el (vertical-centering-font-regexp):
14650 Set standard-value.
14651
14652 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
14653
14654 * bookmark.el (bookmark-search-delay):
14655 * cus-start.el (vertical-centering-font-regexp):
14656 * ps-mule.el (ps-mule-font-info-database-default):
14657 * ps-print.el (ps-default-fg, ps-default-bg):
14658 * type-break.el (type-break-good-break-interval):
14659 * whitespace.el (whitespace-indentation-regexp)
14660 (whitespace-space-after-tab-regexp):
14661 * emacs-lisp/testcover.el (testcover-1value-functions)
14662 (testcover-noreturn-functions, testcover-progn-functions)
14663 (testcover-prog1-functions):
14664 * emulation/viper-init.el (viper-emacs-state-cursor-color):
14665 * eshell/em-glob.el (eshell-glob-translate-alist):
14666 * play/tetris.el (tetris-tty-colors):
14667 * progmodes/cpp.el (cpp-face-default-list):
14668 * progmodes/flymake.el (flymake-allowed-file-name-masks):
14669 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
14670 (idlwave-help-browser-generic-args):
14671 * progmodes/make-mode.el (makefile-special-targets-list):
14672 * progmodes/python.el (python-shell-virtualenv-path):
14673 * progmodes/verilog-mode.el (verilog-active-low-regexp)
14674 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
14675 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
14676 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
14677 * textmodes/reftex-vars.el (reftex-format-label-function):
14678 * textmodes/remember.el (remember-diary-file): Fix custom types.
14679
14680 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
14681 Add :version.
14682
14683 2013-05-09 Leo Liu <sdl.web@gmail.com>
14684
14685 * progmodes/octave.el (inferior-octave-completion-at-point):
14686 Restore file completion. (Bug#14300)
14687 (inferior-octave-startup): Fix incorrect highlighting for the
14688 first prompt.
14689
14690 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14691
14692 * progmodes/ruby-mode.el: First cut at SMIE support.
14693 (ruby-use-smie): New var.
14694 (ruby-smie-grammar): New constant.
14695 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
14696 (ruby-smie--forward-token, ruby-smie--backward-token)
14697 (ruby-smie-rules): New functions.
14698 (ruby-mode-variables): Setup SMIE if applicable.
14699
14700 2013-05-08 Eli Zaretskii <eliz@gnu.org>
14701
14702 * simple.el (line-move-visual): Signal beginning/end of buffer
14703 only if vertical-motion moved less than it was requested. Avoids
14704 silly incorrect error messages when there are display strings with
14705 multiple newlines at EOL.
14706
14707 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14708
14709 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
14710 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
14711 (prolog-char-quote-workaround):
14712 * progmodes/cperl-mode.el (cperl-under-as-char):
14713 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
14714 Mark as obsolete.
14715 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
14716 their declaration.
14717 (vhdl-mode-syntax-table-init): Remove.
14718
14719 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
14720 last change.
14721
14722 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
14723 syntax for "_".
14724 (ld-script-font-lock-keywords):
14725 Change regexps to use things like \_< and \_>.
14726
14727 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
14728 Change all regexps to use things like \_< and \_>.
14729
14730 * progmodes/autoconf.el (autoconf-definition-regexp)
14731 (autoconf-font-lock-keywords, autoconf-current-defun-function):
14732 Handle a _ with symbol syntax.
14733 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
14734
14735 * progmodes/ada-mode.el (ada-mode-abbrev-table):
14736 Consolidate declaration.
14737 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
14738 the declaration.
14739 (ada-create-syntax-table): Remove.
14740 (ada-capitalize-word): Don't mess with the syntax of "_" since it
14741 already has the right syntax nowadays.
14742 (ada-goto-next-word): Don't change the syntax of "_".
14743
14744 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
14745 with-wrapper-hook.
14746
14747 2013-05-08 Sam Steingold <sds@gnu.org>
14748
14749 * thingatpt.el (thing-at-point): Accept optional second argument
14750 NO-PROPERTIES to strip the text properties from the return value.
14751 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
14752 to `thing-at-point' instead of stripping the properties ourselves.
14753 Also, when `thing-at-point' fails to find a url, prepend "http://"
14754 to the filename at point on the assumption that the user is
14755 pointing at something like gnu.org/gnu.
14756
14757 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
14758
14759 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
14760 * faces.el (crm-separator):
14761 Silence byte-compiler.
14762
14763 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
14764 (tool-bar-map): Remove unneeded defvars.
14765
14766 2013-05-08 Leo Liu <sdl.web@gmail.com>
14767
14768 Re-work a fix for bug#10994 based on Le Wang's patch.
14769 * ido.el (ido-remove-consecutive-dups): New helper.
14770 (ido-completing-read): Use it.
14771 (ido-chop): Revert fix for bug#10994.
14772
14773 2013-05-08 Adam Spiers <emacs@adamspiers.org>
14774
14775 * cus-edit.el (custom-save-variables):
14776 Pretty-print long values. (Bug#14187)
14777
14778 2013-05-08 Glenn Morris <rgm@gnu.org>
14779
14780 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
14781 (m4-mode-syntax-table): Init in the defvar.
14782 (m4-mode-abbrev-table): Let define-derived-mode define it.
14783
14784 2013-05-08 Tom Tromey <tromey@redhat.com>
14785
14786 * progmodes/m4-mode.el (m4-mode-syntax-table):
14787 Do not treat "_" as word constituent. (Bug#14167)
14788
14789 2013-05-07 Glenn Morris <rgm@gnu.org>
14790
14791 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
14792 Remove explicit eshell-isearch-cancel-map.
14793
14794 * progmodes/f90.el (f90-smart-end-names): New option.
14795 (f90-smart-end): Doc fix.
14796 (f90-end-block-optional-name): New constant.
14797 (f90-block-match): Respect f90-smart-end-names.
14798
14799 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14800
14801 * progmodes/octave.el (octave-smie-forward-token): Be more careful
14802 about implicit semi-colons (bug#14218).
14803
14804 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14805
14806 * frame.el (display-monitor-attributes-list)
14807 (frame-monitor-attributes): New functions.
14808
14809 2013-05-06 Leo Liu <sdl.web@gmail.com>
14810
14811 * progmodes/octave.el (octave-syntax-propertize-function): Change
14812 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
14813 (octave-font-lock-keywords): Use octave-operator-regexp.
14814 (octave-completion-at-point): Rename from
14815 octave-completion-at-point-function.
14816 (inferior-octave-directory-tracker): Robustify.
14817 (octave-text-functions): Remove and fix its uses. No such things
14818 any more.
14819
14820 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14821
14822 * emacs-lisp/trace.el (trace--display-buffer): New function.
14823 (trace-make-advice): Use it.
14824
14825 2013-05-06 Juri Linkov <juri@jurta.org>
14826
14827 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
14828 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
14829 Doc fix.
14830 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
14831 in the help string. (Bug#12985)
14832
14833 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
14834
14835 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
14836
14837 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14838
14839 * progmodes/perl-mode.el: Add support for here documents.
14840 (perl-syntax-propertize-function): Match here-doc markers.
14841 (perl-syntax-propertize-special-constructs): Find their end.
14842 (perl-imenu-generic-expression): Use [:alnum:].
14843
14844 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
14845 (advice--add-function): Refresh the advice if already present
14846 (bug#14317).
14847
14848 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
14849
14850 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
14851
14852 2013-05-06 Glenn Morris <rgm@gnu.org>
14853
14854 * w32-fns.el (w32-charset-info-alist): Declare.
14855
14856 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
14857 of its defcustom properties.
14858 (eshell-cmpl-initialize): No need to load pcomplete.
14859
14860 * generic-x.el: No need to require comint when compiling.
14861
14862 * net/eudc-export.el: Make it loadable without bbdb.
14863 (top-level): Use require rather than load-library.
14864 (eudc-create-bbdb-record, eudc-bbdbify-phone)
14865 (eudc-batch-export-records-to-bbdb)
14866 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
14867 Require bbdb.
14868
14869 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14870
14871 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
14872 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
14873 some tweaks, instead.
14874
14875 2013-05-05 Leo Liu <sdl.web@gmail.com>
14876
14877 * progmodes/octave.el (octave-font-lock-keywords)
14878 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
14879 (inferior-octave-send-list-and-digest): Improve error message.
14880 (octave-mode, inferior-octave-mode): Use setq-local.
14881 (octave-help): Set info-lookup-mode.
14882
14883 2013-05-05 Richard Stallman <rms@gnu.org>
14884
14885 * vc/compare-w.el (compare-windows-whitespace):
14886 Treat no-break space as whitespace.
14887
14888 * mail/rmailsum.el (rmail-summary-rmail-update):
14889 Detect empty summary and don't change selected message.
14890 (rmail-summary-goto-msg): Likewise.
14891
14892 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
14893 Doc fixes, rename args.
14894
14895 2013-05-05 Alan Mackenzie <acm@muc.de>
14896
14897 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
14898
14899 2013-05-05 Juri Linkov <juri@jurta.org>
14900
14901 * info.el (Info-read-subfile): Use (point-min) instead of (point)
14902 to not add the length of the summary segment to the return value.
14903 (Bug#14125)
14904
14905 2013-05-05 Leo Liu <sdl.web@gmail.com>
14906
14907 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
14908 (inferior-octave-output-filter): Remove.
14909 (octave-send-region, inferior-octave-startup): Fix callers.
14910 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
14911 (octave-binary-file-extensions): New user variable.
14912 (octave-find-definition): Confirm if opening binary files.
14913 (octave-help-file): Use octave-find-definition to get the binary
14914 confirmation.
14915 (octave-help): Adjust for octave-help-file change.
14916
14917 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14918
14919 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
14920 Merge the two entries that handle function definitions.
14921 (pascal--syntax-propertize): New const.
14922 (pascal-mode): Use it. Use setq-local.
14923
14924 2013-05-04 Glenn Morris <rgm@gnu.org>
14925
14926 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
14927 (diary-from-outlook): Respect diary-from-outlook-function.
14928
14929 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14930
14931 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
14932 Move the declaration from C.
14933 (read-minibuffer, eval-minibuffer): Move from C.
14934 (completion-setup-function): Avoid minibuffer-completion-contents.
14935
14936 2013-05-03 Leo Liu <sdl.web@gmail.com>
14937
14938 * progmodes/octave.el (octave-font-lock-keywords): Do not
14939 dehighlight 'end' in comments or strings.
14940 (octave-completing-read, octave-goto-function-definition):
14941 New helpers.
14942 (octave-help-buffer): New user variable.
14943 (octave-help-file, octave-help-function): New button types.
14944 (octave-help): New command and bind it to C-h ;.
14945 (octave-find-definition): New command and bind it to M-.
14946 (user-error): Alias to error if not defined.
14947
14948 2013-05-02 Leo Liu <sdl.web@gmail.com>
14949
14950 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
14951 for \. (bug#14332)
14952 (octave-font-lock-keywords): Include [ and {.
14953
14954 2013-05-02 Leo Liu <sdl.web@gmail.com>
14955
14956 * progmodes/octave.el (inferior-octave-startup-file): Change default.
14957 (inferior-octave): Remove calling comint-mode and return the buffer.
14958 (inferior-octave-startup): Cosmetic changes.
14959
14960 2013-05-02 Leo Liu <sdl.web@gmail.com>
14961
14962 * progmodes/octave.el (octave-syntax-propertize-function):
14963 Include the case when ' is at line beginning. (Bug#14336)
14964
14965 2013-05-02 Glenn Morris <rgm@gnu.org>
14966
14967 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
14968 * desktop.el (vc-dir-mode): Just autoload it here.
14969
14970 2013-05-02 Alan Mackenzie <acm@muc.de>
14971
14972 Eliminate variable c-standard-font-lock-fontify-region-function.
14973 * progmodes/cc-mode.el
14974 (c-standard-font-lock-fontify-region-function): Remove.
14975 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
14976
14977 2013-05-01 Leo Liu <sdl.web@gmail.com>
14978
14979 * progmodes/octave.el: Compatible with older emacs-24 releases.
14980 (inferior-octave-has-built-in-variables): Remove. Built-in
14981 variables were removed from Octave in 2007.
14982 (inferior-octave-startup): Fix uses.
14983 (comint-line-beginning-position): Remove compatibility code for
14984 emacs 21.
14985
14986 2013-05-01 Juri Linkov <juri@jurta.org>
14987
14988 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
14989
14990 2013-05-01 Juri Linkov <juri@jurta.org>
14991
14992 * comint.el (comint-previous-matching-input): Don't print message
14993 "History item: %d" when `isearch-mode' is active.
14994 (comint-history-isearch-message): Print message "History item: %d"
14995 when `comint-input-ring-index' is not empty and this function is
14996 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
14997
14998 2013-05-01 Leo Liu <sdl.web@gmail.com>
14999
15000 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
15001 definitions. Use completion-at-point to insert keywords.
15002 (octave-abbrev-start): Remove.
15003 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
15004
15005 2013-04-30 Leo Liu <sdl.web@gmail.com>
15006
15007 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
15008 change.
15009
15010 2013-04-30 Alan Mackenzie <acm@muc.de>
15011
15012 Handle arbitrarily long C++ member initialisation lists.
15013 * progmodes/cc-engine.el (c-back-over-member-initializers):
15014 new function.
15015 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
15016 (most) member init lists.
15017
15018 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
15019
15020 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
15021 variable.
15022
15023 2013-04-30 Leo Liu <sdl.web@gmail.com>
15024
15025 * progmodes/octave.el (octave-variables): Remove. No builtin
15026 variables any more. All converted to functions.
15027 (octave-font-lock-keywords, octave-completion-at-point-function):
15028 Fix uses.
15029 (octave-font-lock-texinfo-comment): New user variable.
15030 (octave-texinfo-font-lock-keywords): New variable for texinfo
15031 comment block.
15032 (octave-function-comment-block): New face.
15033 (octave-font-lock-texinfo-comment): New function.
15034 (octave-mode): Font lock texinfo comment block.
15035
15036 2013-04-29 Leo Liu <sdl.web@gmail.com>
15037
15038 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
15039 indexing expression.
15040 (octave-continuation-string): Do not use \.
15041 (inferior-octave-complete-impossible): Remove.
15042 (inferior-octave-completion-table)
15043 (inferior-octave-completion-at-point): Remove its uses.
15044 (inferior-octave-startup): completion_matches was introduced to
15045 Octave in 1996 so safe to assume it.
15046 (octave-function-file-comment): Improve to follow how Octave does it.
15047 (octave-update-function-file-comment): Tweak.
15048
15049 2013-04-29 Leo Liu <sdl.web@gmail.com>
15050
15051 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
15052 (inferior-octave-startup): Remove inferior-octave-startup-hook.
15053 (octave-function-file-comment): Fix typo.
15054 (octave-sync-function-file-names): Use read-char-choice.
15055
15056 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
15057
15058 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
15059 to t for the less important warnings.
15060
15061 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
15062
15063 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
15064
15065 2013-04-27 Glenn Morris <rgm@gnu.org>
15066
15067 * vc/log-view.el (log-view-current-entry):
15068 Treat "---" separator lines as part of the following rev. (Bug#14169)
15069
15070 2013-04-27 Juri Linkov <juri@jurta.org>
15071
15072 * subr.el (read-number): Doc fix about using it by interactive
15073 code letter `n'. (Bug#14254)
15074
15075 2013-04-27 Juri Linkov <juri@jurta.org>
15076
15077 * desktop.el (desktop-auto-save-timeout): New option.
15078 (desktop-file-checksum): New variable.
15079 (desktop-save): Add optional arg `auto-save' and don't auto-save
15080 if nothing changed.
15081 (desktop-auto-save-timer): New variable.
15082 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
15083 (after-init-hook): Call `desktop-auto-save-set-timer'.
15084 Suggested by Reuben Thomas <rrt@sc3d.org> in
15085 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
15086
15087 2013-04-27 Leo Liu <sdl.web@gmail.com>
15088
15089 * progmodes/octave.el (octave-function-file-p)
15090 (octave-skip-comment-forward, octave-function-file-comment)
15091 (octave-update-function-file-comment): New functions.
15092 (octave-mode-map): Bind C-c ; to
15093 octave-update-function-file-comment.
15094 (octave-mode-menu): Add octave-update-function-file-comment.
15095 (octave-mode, inferior-octave-mode): Fix doc-string.
15096 (octave-insert-defun): Conform to Octave's coding convention.
15097 (Bug#14285)
15098
15099 * files.el (basic-save-buffer): Don't let errors in
15100 before-save-hook prevent saving buffer.
15101
15102 2013-04-20 Roland Winkler <winkler@gnu.org>
15103
15104 * faces.el (read-face-name): Use completing-read if arg multiple
15105 is nil.
15106
15107 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
15108
15109 * ls-lisp.el (ls-lisp-insert-directory): If no files are
15110 displayed, move point to after the totals line.
15111 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
15112 for the details.
15113
15114 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15115
15116 * emacs-lisp/package.el (package-autoload-ensure-default-file):
15117 Add current dir to the load-path.
15118 (package-generate-autoloads): Don't rely on
15119 autoload-ensure-default-file.
15120
15121 2013-04-26 Reuben Thomas <rrt@sc3d.org>
15122
15123 * textmodes/remember.el (remember-store-in-files): Document that
15124 the file name format is passed to `format-time-string'.
15125
15126 2013-04-26 Leo Liu <sdl.web@gmail.com>
15127
15128 * progmodes/octave.el (octave-sync-function-file-names): New function.
15129 (octave-mode): Use it in before-save-hook.
15130
15131 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15132
15133 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
15134 (bug#14274).
15135
15136 * progmodes/octave.el (octave-smie-forward-token): Properly skip
15137 \n and comment, even if it's not an implicit ; (bug#14218).
15138
15139 2013-04-26 Glenn Morris <rgm@gnu.org>
15140
15141 * subr.el (read-number): Once more use `read' rather than
15142 `string-to-number', to trap non-numeric input. (Bug#14254)
15143
15144 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
15145
15146 * emacs-lisp/syntax.el (syntax-propertize-multiline):
15147 Use `syntax-multiline' text property consistently instead of
15148 `font-lock-multiline'. (Bug#14237)
15149
15150 2013-04-26 Glenn Morris <rgm@gnu.org>
15151
15152 * emacs-lisp/shadow.el (list-load-path-shadows):
15153 No longer necessary to check for duplicate simple.el, since
15154 2012-07-07 change to init_lread to not include installation lisp
15155 directories in load-path when running uninstalled. (Bug#14270)
15156
15157 2013-04-26 Leo Liu <sdl.web@gmail.com>
15158
15159 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
15160 (octave-mode, inferior-octave-mode): Use setq-local.
15161 (octave-not-in-string-or-comment-p): Rename to
15162 octave-in-string-or-comment-p.
15163 (octave-in-comment-p, octave-in-string-p)
15164 (octave-in-string-or-comment-p): Replace defsubst with defun.
15165
15166 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
15167
15168 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
15169
15170 2013-04-25 Bastien Guerry <bzg@gnu.org>
15171
15172 * textmodes/remember.el (remember-data-directory)
15173 (remember-directory-file-name-format): Fix custom types.
15174
15175 2013-04-25 Leo Liu <sdl.web@gmail.com>
15176
15177 * progmodes/octave.el (octave-completion-at-point-function):
15178 Make use of inferior octave process.
15179 (octave-initialize-completions): Remove.
15180 (inferior-octave-completion-table): New function.
15181 (inferior-octave-completion-at-point): Use it.
15182 (octave-completion-alist): Remove.
15183
15184 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15185
15186 * progmodes/opascal.el: Use font-lock and syntax-propertize.
15187 (opascal-mode-syntax-table): New var.
15188 (opascal-literal-kind, opascal-is-literal-end)
15189 (opascal-literal-token-at): Rewrite.
15190 (opascal--literal-start-re, opascal-font-lock-keywords)
15191 (opascal--syntax-propertize): New constants.
15192 (opascal-font-lock-defaults): Adjust.
15193 (opascal-mode): Use them. Set comment-<foo> variables as well.
15194 (delphi-comment-face, opascal-comment-face, delphi-string-face)
15195 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
15196 (delphi-other-face, opascal-other-face): Remove face variables.
15197 (opascal-save-state): Remove macro.
15198 (opascal-fontifying-progress-step): Remove constant.
15199 (opascal--ignore-changes): Remove var.
15200 (opascal-set-token-property, opascal-parse-next-literal)
15201 (opascal-is-stable-literal, opascal-complete-literal)
15202 (opascal-is-literal-start, opascal-face-of)
15203 (opascal-parse-region, opascal-parse-region-until-stable)
15204 (opascal-fontify-region, opascal-after-change)
15205 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
15206 (opascal-debug-parse-region, opascal-debug-parse-window)
15207 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
15208 (opascal-debug-fontify-buffer): Remove.
15209 (opascal-debug-mode-map): Adjust accordingly.
15210
15211 2013-04-25 Leo Liu <sdl.web@gmail.com>
15212
15213 Merge octave-mod.el and octave-inf.el into octave.el with some
15214 cleanups.
15215 * progmodes/octave.el: New file renamed from octave-mod.el.
15216 * progmodes/octave-inf.el: Merged into octave.el.
15217 * progmodes/octave-mod.el: Renamed to octave.el.
15218
15219 2013-04-25 Tassilo Horn <tsdh@gnu.org>
15220
15221 * textmodes/reftex-vars.el
15222 (reftex-label-ignored-macros-and-environments): New defcustom.
15223
15224 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
15225
15226 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15227
15228 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
15229 (smie-indent-keyword): Improve the check to ensure that the next
15230 comment is really on the same line.
15231 (smie-indent-comment): Don't align with a subsequent closer (or eob).
15232
15233 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
15234 semi-colons if the line is not otherwise empty (bug#14218).
15235
15236 2013-04-25 Glenn Morris <rgm@gnu.org>
15237
15238 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
15239
15240 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15241
15242 * progmodes/opascal.el (opascal-set-token-property): Rename from
15243 opascal-set-text-properties and only set `token' (bug#14134).
15244 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
15245 (opascal-literal-text-properties): Remove.
15246 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
15247 Adjust callers.
15248
15249 2013-04-24 Reuben Thomas <rrt@sc3d.org>
15250
15251 * textmodes/remember.el (remember-handler-functions): Add an
15252 option for a new handler `remember-store-in-files'.
15253 (remember-data-directory, remember-directory-file-name-format):
15254 New options.
15255 (remember-store-in-files): New function to store remember notes
15256 as separate files within a directory.
15257
15258 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
15259
15260 * progmodes/compile.el (compilation-next-error-function):
15261 Pass "formats" to compilation-find-file (bug#11777).
15262
15263 2013-04-24 Glenn Morris <rgm@gnu.org>
15264
15265 * vc/vc-bzr.el (vc-bzr-print-log):
15266 * vc/vc-hg.el (vc-hg-print-log):
15267 * vc/vc-svn.el (vc-svn-print-log):
15268 Fix START-REVISION with LIMIT != 1. (Bug#14168)
15269
15270 * vc/vc-bzr.el (vc-bzr-print-log):
15271 * vc/vc-cvs.el (vc-cvs-print-log):
15272 * vc/vc-git.el (vc-git-print-log):
15273 * vc/vc-hg.el (vc-hg-print-log):
15274 * vc/vc-mtn.el (vc-mtn-print-log):
15275 * vc/vc-rcs.el (vc-rcs-print-log):
15276 * vc/vc-sccs.el (vc-sccs-print-log):
15277 * vc/vc-svn.el (vc-svn-print-log):
15278 * vc/vc.el (vc-print-log-internal): Doc fixes.
15279
15280 2013-04-23 Glenn Morris <rgm@gnu.org>
15281
15282 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
15283 Remove venerable code attempting to avoid substitute-command-keys.
15284
15285 2013-04-23 Tassilo Horn <tsdh@gnu.org>
15286
15287 * textmodes/reftex-vars.el (reftex-label-regexps):
15288 Call `reftex-compile-variables' after changes to this variable.
15289
15290 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
15291
15292 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
15293 Use lexical-binding.
15294 (jit-lock-force-redisplay): Use markers, check buffer's continued
15295 existence and beware narrowed buffers.
15296 (jit-lock-fontify-now): Adjust call accordingly.
15297
15298 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
15299
15300 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
15301 to avoid misleading the user.
15302
15303 2013-04-22 Leo Liu <sdl.web@gmail.com>
15304
15305 * info-look.el: Prefer latex2e.info. (Bug#14240)
15306
15307 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
15308
15309 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
15310
15311 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
15312 * net/tramp.el (tramp-call-process): ... here.
15313 (tramp-set-completion-function, tramp-parse-putty):
15314 * net/tramp-adb.el (tramp-adb-execute-adb-command):
15315 * net/tramp-gvfs.el (tramp-gvfs-send-command):
15316 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
15317 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
15318 (tramp-call-local-coding-command): Use `tramp-call-process'
15319 instead of `tramp-compat-call-process'.
15320
15321 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
15322 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
15323 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
15324 (tramp-find-inline-compress): Improve traces.
15325 (tramp-maybe-send-script): Check for Perl binary.
15326 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
15327
15328 2013-04-22 Daiki Ueno <ueno@gnu.org>
15329
15330 * epg.el (epg-context-pinentry-mode): New function.
15331 (epg-context-set-pinentry-mode): New function.
15332 (epg--start): Pass --pinentry-mode option to gpg command.
15333
15334 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
15335
15336 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
15337 `comint-dynamic-complete' is obsolete since 24.1, replaced by
15338 `completion-at-point'. (Bug#13774)
15339
15340 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
15341 default key binding for `describe-distribution' has been moved to
15342 `C-h C-o'. (Bug#13970)
15343
15344 2013-04-21 Glenn Morris <rgm@gnu.org>
15345
15346 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
15347 Add doc strings.
15348 (vc-print-log): Clarify interactive prompt.
15349
15350 2013-04-20 Glenn Morris <rgm@gnu.org>
15351
15352 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15353 No longer include timestamp etc information.
15354
15355 2013-04-20 Roland Winkler <winkler@gnu.org>
15356
15357 * faces.el (read-face-name): Bug fix, return just one face if arg
15358 multiple is nil. (Bug#14209)
15359
15360 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15361
15362 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
15363 (remove-function): Autoload.
15364
15365 * comint.el (comint-redirect-original-filter-function): Remove.
15366 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
15367 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
15368 (vc-cvs-annotate-command):
15369 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
15370 * progmodes/prolog.el (prolog-consult-compile):
15371 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
15372 Use add/remove-function instead.
15373 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
15374 (gud-tooltip-process-output, gud-tooltip-tips):
15375 Use add/remove-function instead.
15376 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
15377 (scheme-interaction-mode, exit-scheme-interaction-mode):
15378 Use add/remove-function instead.
15379
15380 * vc/vc-dispatcher.el: Use lexical-binding.
15381 (vc--process-sentinel): Rename from vc-process-sentinel.
15382 Change last arg to be the code to run. Don't use vc-previous-sentinel
15383 and vc-sentinel-commands any more.
15384 (vc-exec-after): Allow code to be a function. Use add/remove-function.
15385 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
15386
15387 2013-04-19 Masatake YAMATO <yamato@redhat.com>
15388
15389 * progmodes/sh-script.el (sh-imenu-generic-expression):
15390 Handle function names with a single character. (Bug#14111)
15391
15392 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
15393
15394 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
15395 for subroutines defined in an eval (bug#14182).
15396
15397 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15398
15399 * bookmark.el (bookmark-completing-read): Improve handling of empty
15400 string (bug#14176).
15401
15402 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15403
15404 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
15405
15406 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
15407
15408 New faster Imenu implementation (bug#14058).
15409 * progmodes/python.el (python-imenu-prev-index-position)
15410 (python-imenu-format-item-label-function)
15411 (python-imenu-format-parent-item-label-function)
15412 (python-imenu-format-parent-item-jump-label-function):
15413 New vars.
15414 (python-imenu-format-item-label)
15415 (python-imenu-format-parent-item-label)
15416 (python-imenu-format-parent-item-jump-label)
15417 (python-imenu--put-parent, python-imenu--build-tree)
15418 (python-imenu-create-index, python-imenu-create-flat-index)
15419 (python-util-popn): New functions.
15420 (python-mode): Set imenu-create-index-function to
15421 python-imenu-create-index.
15422
15423 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15424
15425 * winner.el (winner-active-region): Use region-active-p, activate-mark
15426 and deactivate-mark (bug#14225).
15427
15428 * simple.el (deactivate-mark): Don't inline it.
15429
15430 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
15431
15432 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
15433
15434 2013-04-18 Tassilo Horn <tsdh@gnu.org>
15435
15436 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
15437 file extensions from the archive-mode entry in order to prefer
15438 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
15439
15440 2013-04-18 Leo Liu <sdl.web@gmail.com>
15441
15442 * bindings.el (help-event-list): Add ?\?.
15443
15444 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15445
15446 * subr.el (with-wrapper-hook): Declare obsolete.
15447 * simple.el (filter-buffer-substring-function): New hook.
15448 (filter-buffer-substring): Use it.
15449 (filter-buffer-substring-functions): Mark obsolete.
15450 * minibuffer.el (completion-in-region-function): New hook.
15451 (completion-in-region): Use it.
15452 (completion-in-region-functions): Mark obsolete.
15453 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
15454 * abbrev.el (abbrev-expand-function): New hook.
15455 (expand-abbrev): Use it.
15456 (abbrev-expand-functions): Mark obsolete.
15457 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
15458 and :filter-return.
15459
15460 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15461
15462 * progmodes/python.el (python-nav--syntactically): Fix cornercases
15463 and do not care about match data.
15464
15465 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
15466
15467 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
15468 completion tables when completing error conditions and
15469 `declare' arguments.
15470 (lisp-complete-symbol, field-complete): Mark as obsolete.
15471 (check-parens): Unmatched parens are user errors.
15472 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
15473
15474 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
15475
15476 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
15477 command changed buffer (ie. `flyspell-pre-buffer' is not current
15478 buffer), which prevents making decisions based on invalid value of
15479 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
15480 cause an error when `flyspell-pre-point' was nil after switching
15481 buffers.
15482 (flyspell-post-command-hook): No longer needs to change buffers when
15483 checking pre-word. While at it remove unnecessary progn.
15484
15485 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
15486
15487 * textmodes/ispell.el (ispell-add-per-file-word-list):
15488 Fix `flyspell-correct-word-before-point' error when accepting
15489 words and `coment-padding' is an integer by using
15490 `comment-normalize-vars' (Bug #14214).
15491
15492 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15493
15494 New defun movement commands.
15495 * progmodes/python.el (python-nav--syntactically)
15496 (python-nav--forward-defun, python-nav-backward-defun)
15497 (python-nav-forward-defun): New functions.
15498
15499 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15500
15501 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
15502 (python-syntax-context): Use named compiler-macro for backwards
15503 compatibility with Emacs 24.x.
15504
15505 2013-04-17 Leo Liu <sdl.web@gmail.com>
15506
15507 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
15508 octave-hide-process-buffer.
15509
15510 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
15511
15512 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
15513 (bug#14216).
15514
15515 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
15516
15517 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
15518 Fix adjustment of offset when receiving incomplete responses from GDB
15519 (bug#14129).
15520
15521 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15522
15523 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
15524 python-mode-abbrev-table.
15525 (python-skeleton-define): Adjust accordingly.
15526 (python-mode-abbrev-table): New table that inherits from it so that
15527 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
15528
15529 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
15530 (abbrev-symbol): Use it.
15531 (abbrev--before-point): Use it since we already handle inheritance.
15532
15533 2013-04-16 Leo Liu <sdl.web@gmail.com>
15534
15535 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
15536 binding to info-lookup-symbol.
15537
15538 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
15539
15540 * minibuffer.el (completion--twq-all):
15541 * term/ns-win.el (ns-initialize-window-system):
15542 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
15543
15544 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15545
15546 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
15547 global bindings.
15548
15549 * doc-view.el (doc-view-start-process): Handle url-handler directories.
15550
15551 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
15552
15553 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
15554 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
15555 to nil.
15556 (ruby-end-of-defun): Remove the unused arg, change the docstring
15557 to reflect that this function is only used as the value of
15558 `end-of-defun-function'.
15559 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
15560 to reflect an earlier change that beginning/end-of-defun functions
15561 jump between methods in a class definition, as well as top-level
15562 functions.
15563
15564 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15565
15566 * minibuffer.el (minibuffer-complete): Don't just scroll
15567 a *Completions* that's been iconified.
15568 (minibuffer-force-complete): Make sure repetitions do cycle when going
15569 through completion-in-region -> minibuffer-complete.
15570
15571 2013-04-15 Alan Mackenzie <acm@muc.de>
15572
15573 Correct the placement of c-cpp-delimiters when there're #s not at
15574 col 0.
15575
15576 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
15577 place a submatch around the #.
15578 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
15579 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
15580 on the #, not BOL.
15581
15582 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15583
15584 * emacs-lisp/nadvice.el: Properly test names when adding advice.
15585 (advice--member-p): New arg `name'.
15586 (advice--add-function, advice-member-p): Use it (bug#14202).
15587
15588 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
15589
15590 Reformulate java imenu-generic-expression.
15591 The old expression contained ill formed regexps.
15592
15593 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
15594 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
15595 (cc-imenu-java-method-arg-regexp): New defconsts.
15596 (cc-imenu-java-build-type-args-regex): New defun.
15597 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
15598 handling of spaces in the regexp.
15599
15600 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
15601
15602 * textmodes/ispell.el (ispell-command-loop): Remove
15603 flyspell highlight of a word when ispell accepts it (bug #14178).
15604
15605 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
15606
15607 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
15608 uses code from the previous `ange-ftp-run-real-handler'.
15609 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
15610 only in case that function exist. This is needed for proper
15611 unloading of Tramp.
15612
15613 2013-04-15 Tassilo Horn <tsdh@gnu.org>
15614
15615 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
15616
15617 * textmodes/reftex.el (reftex-compile-variables): Use it.
15618
15619 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15620
15621 * files.el (normal-mode): Only use default major-mode if no other mode
15622 was specified.
15623
15624 * emacs-lisp/trace.el (trace-values): New function.
15625
15626 * files.el: Allow : in local variables (bug#14089).
15627 (hack-local-variable-regexp): New var.
15628 (hack-local-variables-prop-line, hack-local-variables): Use it.
15629
15630 2013-04-13 Roland Winkler <winkler@gnu.org>
15631
15632 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
15633 data before it gets modified by bibtex-beginning-of-entry.
15634
15635 2013-04-13 Roland Winkler <winkler@gnu.org>
15636
15637 * textmodes/bibtex.el (bibtex-url): Doc fix.
15638
15639 2013-04-13 Roland Winkler <winkler@gnu.org>
15640
15641 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
15642 does not visit a BibTeX file, exclude it from the list of buffers
15643 returned by bibtex-initialize.
15644
15645 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
15646
15647 * window.el (split-window): Remove interactive form, since as a
15648 command this function is a special case of split-window-below.
15649 Correct doc string.
15650
15651 2013-04-12 Roland Winkler <winkler@gnu.org>
15652
15653 * faces.el (read-face-name): Do not override value of arg default.
15654 Allow single faces and strings as default values. Remove those
15655 elements from return value that are not faces.
15656 (describe-face): Simplify.
15657 (face-at-point): New optional args thing and multiple so that this
15658 function can provide the same functionality previously provided by
15659 read-face-name.
15660 (make-face-bold, make-face-unbold, make-face-italic)
15661 (make-face-unitalic, make-face-bold-italic, invert-face)
15662 (modify-face, read-face-and-attribute): Use face-at-point.
15663
15664 * cus-edit.el (customize-face, customize-face-other-window)
15665 * cus-theme.el (custom-theme-add-face)
15666 * face-remap.el (buffer-face-set)
15667 * facemenu.el (facemenu-set-face): Use face-at-point.
15668
15669 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
15670
15671 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
15672
15673 2013-04-10 Tassilo Horn <tsdh@gnu.org>
15674
15675 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
15676 off leading { and trailing } from field values.
15677
15678 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
15679
15680 * emacs-lisp/timer.el (timer--check): New function.
15681 (timer--time, timer-set-function, timer-event-handler): Use it.
15682 (timer-set-idle-time): Simplify.
15683 (timer--activate): CSE.
15684 (timer-event-handler): Give more info in error message.
15685 (internal-timer-start-idle): New function, moved from C.
15686
15687 * mpc.el (mpc-proc): Add `restart' argument.
15688 (mpc-proc-cmd): Use it.
15689 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
15690 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
15691 less often.
15692
15693 2013-04-10 Masatake YAMATO <yamato@redhat.com>
15694
15695 * progmodes/sh-script.el: Implement `sh-mode' own
15696 `add-log-current-defun-function' (bug#14112).
15697 (sh-current-defun-name): New function.
15698 (sh-mode): Use the function.
15699
15700 2013-04-09 Bastien Guerry <bzg@gnu.org>
15701
15702 * simple.el (choose-completion-string): Fix docstring (bug#14163).
15703
15704 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
15705
15706 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
15707
15708 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
15709 timer (bug#14156).
15710
15711 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
15712
15713 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
15714 declaration.
15715
15716 2013-04-07 Leo Liu <sdl.web@gmail.com>
15717
15718 * pcmpl-x.el: New file.
15719
15720 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
15721
15722 Do not set x-display-name until X connection is established.
15723 This is needed to prevent from weird situation described at
15724 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
15725 * frame.el (make-frame): Set x-display-name after call to
15726 window system initialization function, not before.
15727 * term/x-win.el (x-initialize-window-system): Add optional
15728 display argument and use it.
15729 * term/w32-win.el (w32-initialize-window-system):
15730 * term/ns-win.el (ns-initialize-window-system):
15731 * term/pc-win.el (msdos-initialize-window-system):
15732 Add compatible optional display argument.
15733
15734 2013-04-06 Eli Zaretskii <eliz@gnu.org>
15735
15736 * files.el (normal-backup-enable-predicate): On MS-Windows and
15737 MS-DOS compare truenames of temporary-file-directory and of the
15738 file, so that 8+3 aliases (usually found in $TEMP on Windows)
15739 don't fail comparison by compare-strings. Also, compare file
15740 names case-insensitively on MS-Windows and MS-DOS.
15741
15742 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
15743
15744 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
15745 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
15746
15747 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
15748
15749 * whitespace.el (whitespace-color-on, whitespace-color-off):
15750 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
15751
15752 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
15753
15754 * ispell.el (ispell-set-spellchecker-params):
15755 Really set `ispell-args' for all equivs.
15756
15757 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
15758
15759 * ido.el (ido-completions): Use extra elements of ido-decorations
15760 (bug#14143).
15761 (ido-decorations): Update docstring.
15762
15763 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
15764
15765 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
15766 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
15767 nil during initialization, in order not to miss changes since the
15768 file was opened. (Bug#14140)
15769
15770 2013-04-05 Leo Liu <sdl.web@gmail.com>
15771
15772 * kmacro.el (kmacro-call-macro): Fix bug#14135.
15773
15774 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
15775
15776 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
15777
15778 2013-04-04 Glenn Morris <rgm@gnu.org>
15779
15780 * electric.el (electric-pair-inhibit-predicate): Add :version.
15781
15782 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
15783
15784 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
15785 when a package is required several times (bug#14082).
15786
15787 2013-04-04 Roland Winkler <winkler@gnu.org>
15788
15789 * faces.el (read-face-name): Behave as promised by the docstring.
15790 Assume that arg default is a list of faces.
15791 (describe-face): Call read-face-name with list of default faces.
15792
15793 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15794
15795 * bookmark.el: Fix deletion of bookmarks (bug#13972).
15796 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
15797 (bookmark-bmenu-execute-deletions): Only skip first line if it's
15798 the header.
15799 (bookmark-exit-hook-internal): Save even if list is empty.
15800
15801 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
15802
15803 * emacs-lisp/package.el (package-pinned-packages): New var.
15804 (package--add-to-archive-contents): Obey it (bug#14118).
15805
15806 2013-04-03 Alan Mackenzie <acm@muc.de>
15807
15808 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
15809 Also adapt to the new values of element 7 of a parse state.
15810
15811 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
15812 parameter `not-in-delimiter'. Handle being inside comment opener.
15813 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
15814 character in case we're typing a '*' after a '/'.
15815 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
15816 instead by passing the parameter to c-state-pp-to-literal.
15817
15818 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
15819 for elt. 7 of a parse state.
15820
15821 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
15822
15823 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
15824 * international/latin1-disp.el, international/mule-util.el:
15825 * language/cyril-util.el, language/european.el, language/ind-util.el:
15826 * language/lao-util.el, language/thai.el, language/tibet-util.el:
15827 * language/tibetan.el, language/viet-util.el:
15828 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
15829
15830 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15831
15832 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
15833 (electric-pair-post-self-insert-function): Use it.
15834 (electric-pair-default-inhibit): New function, extracted from
15835 electric-pair-post-self-insert-function.
15836
15837 2013-03-31 Roland Winkler <winkler@gnu.org>
15838
15839 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
15840
15841 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15842
15843 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
15844
15845 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
15846
15847 Un-indent after "pass" and "return" statements (Bug#13888)
15848 * progmodes/python.el (python-indent-block-enders): New var.
15849 (python-indent-calculate-indentation): Use it.
15850
15851 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
15852
15853 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
15854 defun. Defining it as defalias could introduce too eager
15855 byte-compiler optimization. (Bug#14030)
15856
15857 2013-03-30 Chong Yidong <cyd@gnu.org>
15858
15859 * iswitchb.el (iswitchb-read-buffer): Fix typo.
15860
15861 2013-03-30 Leo Liu <sdl.web@gmail.com>
15862
15863 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
15864 (kmacro-execute-from-register): Pass the keyboard macro to
15865 kmacro-call-macro or repeating won't work correctly.
15866
15867 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
15868
15869 * progmodes/subword.el: Back to using `forward-symbol'.
15870
15871 * subr.el (forward-whitespace, forward-symbol)
15872 (forward-same-syntax): Move from thingatpt.el.
15873
15874 2013-03-29 Leo Liu <sdl.web@gmail.com>
15875
15876 * kmacro.el (kmacro-to-register): New command.
15877 (kmacro-execute-from-register): New function.
15878 (kmacro-keymap): Bind to 'x'. (Bug#14071)
15879
15880 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
15881
15882 * mpc.el: Use defvar-local and setq-local.
15883 (mpc--proc-connect): Connection failures are not bugs.
15884 (mpc-mode-map): `follow-link' only applies to the buffer's content.
15885 (mpc-volume-map): Bind to the up-events.
15886
15887 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
15888
15889 * progmodes/subword.el (superword-mode): Use `forward-sexp'
15890 instead of `forward-symbol'.
15891
15892 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
15893
15894 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
15895 (edebug--recursive-edit): Use it.
15896 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
15897 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
15898
15899 2013-03-28 Leo Liu <sdl.web@gmail.com>
15900
15901 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
15902
15903 2013-03-27 Eli Zaretskii <eliz@gnu.org>
15904
15905 * facemenu.el (list-colors-callback): New defvar.
15906 (list-colors-redisplay): New function.
15907 (list-colors-display): Install list-colors-redisplay as the
15908 revert-buffer-function. (Bug#14063)
15909
15910 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
15911
15912 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
15913 and suffixes don't overlap (bug#14061).
15914
15915 * case-table.el: Use lexical-binding.
15916 (case-table-get-table): New function.
15917 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
15918
15919 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
15920
15921 * progmodes/subword.el: Add `superword-mode' to do word motion
15922 over symbol_words (parallels and leverages `subword-mode' which
15923 does word motion inside MixedCaseWords).
15924
15925 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
15926
15927 * eshell/em-unix.el: Move su and sudo to...
15928 * eshell/em-tramp.el: ...Eshell tramp module.
15929
15930 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15931
15932 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
15933 Change return value to be a sexp. Delay `get-buffer' to after
15934 restoring the desktop (bug#13951).
15935
15936 2013-03-26 Leo Liu <sdl.web@gmail.com>
15937
15938 * register.el: Move semantic tag handling back to
15939 cedet/semantic/senator.el. (Bug#14052)
15940
15941 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15942
15943 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
15944 into the prompt either (bug#13963).
15945
15946 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
15947
15948 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
15949 part of "(error-foo)".
15950
15951 2013-03-24 Juri Linkov <juri@jurta.org>
15952
15953 * replace.el (list-matching-lines-prefix-face): New defcustom.
15954 (occur-1): Pass `list-matching-lines-prefix-face' to the function
15955 `occur-engine' if `face-differs-from-default-p' returns t.
15956 (occur-engine): Add `,' inside backquote construct to evaluate
15957 `prefix-face'. Propertize the prefix with the `prefix-face' face.
15958 Pass `prefix-face' to the functions `occur-context-lines' and
15959 `occur-engine-add-prefix'.
15960 (occur-engine-add-prefix, occur-context-lines): Add optional arg
15961 `prefix-face' and propertize the prefix with `prefix-face'.
15962 (Bug#14017)
15963
15964 2013-03-24 Leo Liu <sdl.web@gmail.com>
15965
15966 * nxml/rng-valid.el (rng-validate-while-idle)
15967 (rng-validate-quick-while-idle): Guard against deleted buffer.
15968 (Bug#13999)
15969
15970 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
15971 is the last entry in kill-buffer-hook.
15972
15973 * files.el (kill-buffer-hook): Doc fix.
15974
15975 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
15976
15977 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
15978 Make it safe-local.
15979
15980 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
15981
15982 2013-03-23 Leo Liu <sdl.web@gmail.com>
15983
15984 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
15985 Remove.
15986
15987 * nxml/rng-valid.el (rng-validate-mode)
15988 (rng-after-change-function, rng-do-some-validation):
15989 * nxml/rng-maint.el (rng-validate-buffer):
15990 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
15991 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
15992 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
15993 (nxml-extend-after-change-region): Use with-silent-modifications.
15994
15995 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
15996 timer-idle-list.
15997
15998 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
15999 (rng-next-error-1, rng-previous-error-1): Do not let-bind
16000 timer-idle-list. (Bug#13999)
16001
16002 2013-03-23 Juri Linkov <juri@jurta.org>
16003
16004 * info.el (info-index-match): New face.
16005 (Info-index, Info-apropos-matches): Add a nested subgroup to the
16006 main pattern and add text properties with the new face to matches
16007 in index entries relative to the beginning of the index entry.
16008 (Bug#14015)
16009
16010 2013-03-21 Eric Ludlam <zappo@gnu.org>
16011
16012 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
16013 Inhibit read only while inserting objects.
16014
16015 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
16016
16017 * progmodes/cfengine.el: Update docs to mention
16018 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
16019 symbol motion. Remove "_" from the word syntax.
16020
16021 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
16022
16023 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
16024 syntax for both `cfengine2-mode' and `cfengine3-mode'.
16025
16026 2013-03-20 Juri Linkov <juri@jurta.org>
16027
16028 * info.el (Info-next-reference-or-link)
16029 (Info-prev-reference-or-link): New functions.
16030 (Info-next-reference, Info-prev-reference): Use them.
16031 (Info-try-follow-nearest-node): Handle footnote navigation.
16032 (Info-fontify-node): Fontify footnotes. (Bug#13989)
16033
16034 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16035
16036 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
16037 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
16038
16039 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
16040
16041 Suppress unnecessary non-ASCII chatter during build process.
16042 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
16043 (batch-skkdic-convert): Suppress most of the chatter.
16044 It's not needed so much now that machines are faster,
16045 and its non-ASCII component was confusing; see Dmitry Gutov in
16046 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
16047
16048 2013-03-20 Leo Liu <sdl.web@gmail.com>
16049
16050 * ido.el (ido-chop): Fix bug#10994.
16051
16052 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16053
16054 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
16055 Remove vars.
16056 (whitespace-color-on, whitespace-color-off):
16057 Use `font-lock-fontify-buffer' (Bug#13817).
16058
16059 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16060
16061 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
16062 remapping in mode-line.
16063 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
16064
16065 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16066
16067 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
16068 value for `whitespace-line' face (Bug#13875).
16069 (whitespace-font-lock-keywords): Change description.
16070 (whitespace-color-on): Don't save `font-lock-keywords' value, save
16071 the constructed keywords instead.
16072 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
16073
16074 2013-03-19 Leo Liu <sdl.web@gmail.com>
16075
16076 * progmodes/compile.el (compilation-display-error): New command.
16077 (compilation-mode-map, compilation-minor-mode-map): Bind it to
16078 C-o. (Bug#13992)
16079
16080 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16081
16082 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
16083
16084 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
16085
16086 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
16087
16088 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
16089
16090 * net/tramp-compat.el (tramp-compat-user-error): New defun.
16091
16092 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16093 * net/tramp-gvfs.el (top):
16094 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
16095 (tramp-handle-shell-command): Use it.
16096 (tramp-dissect-file-name): Raise an error when hostname is a
16097 method name, and neither method nor user is specified.
16098
16099 * net/trampver.el: Update release number.
16100
16101 2013-03-18 Leo Liu <sdl.web@gmail.com>
16102
16103 Make sure eldoc can be turned off properly.
16104 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
16105 eldoc-mode.
16106 (eldoc-display-message-p): Revert last change.
16107 (eldoc-display-message-no-interference-p)
16108 (eldoc-print-current-symbol-info): Tweak.
16109
16110 2013-03-18 Tassilo Horn <tsdh@gnu.org>
16111
16112 * doc-view.el (doc-view-new-window-function): Check the new window
16113 overlay's display property instead the char property of the
16114 buffer's first char. Use `with-selected-window' instead of
16115 `save-window-excursion' with `select-window'.
16116 (doc-view-document->bitmap): Check the current doc-view overlay's
16117 display property instead the char property of the buffer's first char.
16118
16119 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16120
16121 Automate the build of ja-dic.el (Bug#13984).
16122 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
16123 from the input, rather than assume that it's been done for us by the
16124 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
16125 the current date into a ja-dic.el comment, as that complicates
16126 regression testing.
16127
16128 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16129
16130 * whitespace.el: Fix double evaluation.
16131 (whitespace-space, whitespace-hspace, whitespace-tab)
16132 (whitespace-newline, whitespace-trailing, whitespace-line)
16133 (whitespace-space-before-tab, whitespace-indentation)
16134 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
16135 obsolete defvars.
16136 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
16137 (whitespace-color-on): Use a single font-lock-add-keywords call.
16138 Fix double-evaluation of face variables.
16139
16140 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
16141
16142 * net/tramp-adb.el (tramp-adb-parse-device-names):
16143 Use `start-process' instead of `call-process'. Otherwise, the
16144 function might be blocked under MS Windows. (Bug#13299)
16145
16146 2013-03-17 Leo Liu <sdl.web@gmail.com>
16147
16148 Extend eldoc to display info in the mode-line. (Bug#13978)
16149 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
16150 (eldoc-mode-line-string): New variable.
16151 (eldoc-minibuffer-message): New function.
16152 (eldoc-message-function): New variable.
16153 (eldoc-message): Use it.
16154 (eldoc-display-message-p)
16155 (eldoc-display-message-no-interference-p):
16156 Support eldoc-post-insert-mode.
16157
16158 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
16159 (eval-expression): Run it.
16160
16161 2013-03-17 Roland Winkler <winkler@gnu.org>
16162
16163 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
16164 strings in the list of return values.
16165
16166 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16167
16168 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
16169 radix before checking for HMS forms.
16170
16171 2013-03-16 Leo Liu <sdl.web@gmail.com>
16172
16173 * progmodes/scheme.el: Add indentation and font-locking for λ.
16174 (Bug#13975)
16175
16176 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16177
16178 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
16179 token before point (bug#13942).
16180
16181 2013-03-16 Leo Liu <sdl.web@gmail.com>
16182
16183 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
16184
16185 2013-03-16 Eli Zaretskii <eliz@gnu.org>
16186
16187 * startup.el (command-line-normalize-file-name): Fix handling of
16188 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
16189 <xfq.free@gmail.com> in
16190 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
16191
16192 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
16193
16194 Sync with Tramp 2.2.7.
16195
16196 * net/trampver.el: Update release number.
16197
16198 2013-03-14 Tassilo Horn <tsdh@gnu.org>
16199
16200 * doc-view.el: Fix bug#13887.
16201 (doc-view-insert-image): Don't modify overlay associated to
16202 non-live windows, and implement horizontal centering of image in
16203 case it's smaller than the window.
16204 (doc-view-new-window-function): Force redisplay of new windows on
16205 doc-view buffers.
16206
16207 2013-03-13 Karl Fogel <kfogel@red-bean.com>
16208
16209 * saveplace.el (save-place-alist-to-file): Don't sort
16210 `save-place-alist', just pretty-print it (bug#13882).
16211
16212 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
16213
16214 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
16215 Check whether `default-file-name-coding-system' is bound.
16216 It isn't in XEmacs.
16217
16218 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
16219
16220 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
16221 backquotes for `obsolete' (bug#13929).
16222
16223 * international/mule.el (find-auto-coding): Include file name in
16224 obsolescence warning (bug#13922).
16225
16226 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
16227
16228 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
16229 for CFEngine 3-specific indentation.
16230 (cfengine3-indent-line): Use it. Fix up category regex.
16231 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
16232
16233 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16234
16235 * type-break.el (type-break-file-name):
16236 * textmodes/remember.el (remember-data-file):
16237 * strokes.el (strokes-file):
16238 * shadowfile.el (shadow-initialize):
16239 * saveplace.el (save-place-file):
16240 * ps-bdf.el (bdf-cache-file):
16241 * progmodes/idlwave.el (idlwave-config-directory):
16242 * net/quickurl.el (quickurl-url-file):
16243 * international/kkc.el (kkc-init-file-name):
16244 * ido.el (ido-save-directory-list-file):
16245 * emulation/viper.el (viper-custom-file-name):
16246 * emulation/vip.el (vip-startup-file):
16247 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
16248 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
16249
16250 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
16251
16252 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
16253 * language/thai-word.el: Switch to UTF-8.
16254
16255 See ChangeLog.16 for earlier changes.
16256
16257 ;; Local Variables:
16258 ;; coding: utf-8
16259 ;; End:
16260
16261 Copyright (C) 2011-2014 Free Software Foundation, Inc.
16262
16263 This file is part of GNU Emacs.
16264
16265 GNU Emacs is free software: you can redistribute it and/or modify
16266 it under the terms of the GNU General Public License as published by
16267 the Free Software Foundation, either version 3 of the License, or
16268 (at your option) any later version.
16269
16270 GNU Emacs is distributed in the hope that it will be useful,
16271 but WITHOUT ANY WARRANTY; without even the implied warranty of
16272 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16273 GNU General Public License for more details.
16274
16275 You should have received a copy of the GNU General Public License
16276 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.