]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
tildify.el: Fix end-regex building in `tildify-find-env'
[gnu-emacs] / lisp / ChangeLog
1 2014-06-05 Michal Nazarewicz <mina86@mina86.com>
2
3 * textmodes/tildify.el (tildify-find-env): Fix end-regex building
4 in `tildify-find-env'
5
6 The `tildify-ignored-environments-alist' allows the end-regex to
7 be provided not as a static string but mix of strings and indexes
8 of groups matched the begin-regex. For example, the “\verb!…!”
9 TeX-command (where “!” is an arbitrary character) is handled
10 using:
11
12 ("\\\\verb\\*?\\(.\\)" . (1))
13
14 In the same way, the following should be supported as well:
15
16 ("open-\\(.\\)" . ("end-" 1))
17
18 However the tildify-find-env function fails at
19
20 (concat result
21 (if (stringp (setq aux (car expression)))
22 expression ; BUG: expression is a list
23 (regexp-quote (match-string aux))))
24
25 where the string part is handled incorrectly.
26
27 The most trivial fix would be to replace `expression' in the
28 true-part of the if-statement with `aux', but instead, this commit
29 optimises `tildify-find-env' by changing it to use `mapconcat'
30 rather than open-coded while-loop.
31
32 2014-06-05 Mario Lang <mlang@delysid.org>
33
34 * woman.el (woman-mapcan): Remove.
35 (woman-parse-colon-path): Use cl-mapcan instead.
36
37 2014-06-03 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
38
39 * register.el: Add link to Emacs manual in Commentary.
40
41 2014-06-02 Sam Steingold <sds@gnu.org>
42
43 * menu-bar.el (lookup-key-ignore-too-long): Extract from...
44 (popup-menu): ...here.
45 (menu-bar-open): Use it to avoid an error when `lookup-key'
46 returns a number.
47
48 2014-06-02 Michael Albinus <michael.albinus@gmx.de>
49
50 * net/tramp.el (tramp-call-process): Add traces.
51 (tramp-handle-unhandled-file-name-directory): Return "/".
52
53 2014-06-02 Wilson Snyder <wsnyder@wsnyder.org>
54
55 Sync with upstream verilog-mode revision 3cd8144.
56 * progmodes/verilog-mode.el (verilog-mode-version): Bump.
57 (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
58 (verilog-type-font-keywords): Add nor.
59 (verilog-batch-execute-func): Force reading of Local Variables.
60 Fix printing "no changes to be saved" with verilog-batch.
61 (verilog-auto-arg-ports): Doc fix.
62 Add verilog-auto-arg-format to support newlines in AUTOARG.
63 (verilog-auto-arg): Doc fix.
64
65 2014-06-02 Glenn Morris <rgm@gnu.org>
66
67 * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
68 * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
69 * emulation/ws-mode.el: Move to obsolete/.
70 * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
71
72 2014-06-02 Eli Zaretskii <eliz@gnu.org>
73
74 * simple.el (keyboard-quit): Force update of mode lines, to remove
75 the "Def" indicator, if we were defining a macro. (Bug#17615)
76
77 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
78
79 * minibuffer.el (minibuffer-force-complete-and-exit):
80 Obey minibuffer-default (bug#17545).
81
82 * progmodes/js.el (js-indent-line): Don't mix columns and chars
83 (bug#17619).
84
85 * subr.el (set-transient-map): Don't wait for some "nested"
86 transient-map to finish if we're only supposed to be active for
87 the next command (bug#17642).
88
89 2014-06-02 Leo Liu <sdl.web@gmail.com>
90
91 * emacs-lisp/gv.el (window-buffer, window-display-table)
92 (window-dedicated-p, window-hscroll, window-point, window-start):
93 Fix gv-expander. (Bug#17630)
94
95 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
96
97 * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
98 clicks (bug#17633).
99
100 * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
101 for the single comma, since ", " is *very* common in normal French text
102 (bug#17643).
103
104 2014-06-02 Glenn Morris <rgm@gnu.org>
105
106 * emacs-lisp/package.el (package-check-signature)
107 (package-unsigned-archives): Fix :version.
108
109 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * subr.el (sit-for): Don't run input-methods (bug#15614).
112
113 2014-06-02 Glenn Morris <rgm@gnu.org>
114
115 * cus-start.el: Fix some :version numbers.
116
117 2014-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
118
119 * simple.el (deactivate-mark): Set mark-active to nil even if
120 deactivation is done via setting transient-mark-mode to nil,
121 since one is buffer-local and the other is global.
122
123 * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
124 there can't be more than 2 arguments (bug#17584).
125
126 2014-06-02 Glenn Morris <rgm@gnu.org>
127
128 * simple.el (filter-buffer-substring-functions)
129 (filter-buffer-substring-function, buffer-substring-filters)
130 (filter-buffer-substring, buffer-substring--filter): Doc fixes.
131
132 * minibuffer.el (completion-in-region-functions, completion-in-region)
133 (completion--in-region): Doc fixes.
134
135 * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
136 (expand-abbrev, abbrev--default-expand): Doc fixes.
137
138 2014-06-02 Paul Eggert <eggert@cs.ucla.edu>
139
140 Include sources used to create macuvs.h.
141 * international/README: Refer to the Unicode Terms of Use rather
142 than copying it bodily here, as that simplifies maintenance.
143
144 2014-06-01 Glenn Morris <rgm@gnu.org>
145
146 * loadup.el (load-prefer-newer): Set non-nil when dumping. (Bug#17629)
147
148 2014-05-31 Glenn Morris <rgm@gnu.org>
149
150 * files.el (locate-dominating-file): Expand file argument. (Bug#17641)
151
152 2014-05-30 Glenn Morris <rgm@gnu.org>
153
154 * loadup.el: Treat `command-line-args' more flexibly.
155
156 2014-05-30 Alan Mackenzie <acm@muc.de>
157
158 Guard (looking-at "\\s!") from XEmacs.
159 * progmodes/cc-engine.el (c-state-pp-to-literal): add guard form.
160
161 2014-05-30 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
162
163 * mail/rmail.el (rmail-delete-forward, rmail-delete-backward): The
164 argument COUNT is now optional, to be more backward-compatible.
165 Doc fix. (Bug#17560)
166
167 2014-05-29 Reuben Thomas <rrt@sc3d.org>
168
169 * whitespace.el (whitespace-report-region): Simplify
170 documentation.
171 (whitespace-report-region): Allow report-if-bogus to take the
172 value `never', for non-interactive use.
173 (whitespace-report): Refer to whitespace-report-region's
174 documentation.
175
176 2014-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
177
178 * whitespace.el: Use font-lock-flush. Minimize refontifications.
179 Side benefit: it works without jit-lock.
180 (whitespace-point--used): New buffer-local var.
181 (whitespace-color-on): Initialize it and flush it. Use font-lock-flush.
182 (whitespace-color-off): Use font-lock-flush.
183 (whitespace-point--used, whitespace-point--flush-used): New functions.
184 (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
185 (whitespace-empty-at-eob-regexp): Use them.
186 (whitespace-post-command-hook): Rewrite.
187
188 * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
189 (font-lock-fontify-buffer): Mark interactive-only.
190 (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
191 Make buffer-local.
192 (font-lock-specified-p): Remove redundant boundp check.
193 (font-lock-flush-function, font-lock-ensure-function): New vars.
194 (font-lock-turn-on-thing-lock): Set them.
195 (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
196 (font-lock-after-change-function): Make `old-len' optional.
197 (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
198 Call font-lock-flush, just in case.
199 * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
200 recent Emacsen.
201 * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
202 (vera-mode-map, vera-mode-menu): Remove bindings to it.
203 * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
204 and with-syntax-table.
205 * textmodes/conf-mode.el (conf-quote-normal):
206 * progmodes/sh-script.el (sh-set-shell):
207 * progmodes/prog-mode.el (prettify-symbols-mode):
208 * progmodes/f90.el (f90-font-lock-n):
209 * progmodes/cwarn.el (cwarn-mode):
210 * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
211 * progmodes/compile.el (compilation-setup, compilation--unsetup):
212 * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
213 (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
214 * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
215 font-lock-fontify-buffer-function and
216 font-lock-unfontify-buffer-function.
217 (rmail-unfontify-buffer-function, rmail-fontify-message):
218 Use with-silent-modifications.
219 * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
220 and font-lock-ensure.
221 * bs.el (bs-show-in-buffer): Use font-lock-ensure.
222
223 2014-05-28 Thien-Thi Nguyen <ttn@gnu.org>
224
225 * emacs-lisp/package.el (package-generate-autoloads):
226 Inhibit backup files.
227
228 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
229
230 * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
231 (bug#17608).
232
233 2014-05-21 Michal Nazarewicz <mina86@mina86.com>
234
235 * textmodes/tildify.el (tildify-buffer, tildify-region):
236 Add dont-ask option.
237
238 2014-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
239
240 * subr.el (zerop): Move from C. Add compiler-macro (bug#17475).
241 * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
242
243 * subr.el (internal--funcall-interactively): New.
244 (internal--call-interactively): Remove.
245 (called-interactively-p): Detect funcall-interactively instead of
246 call-interactively.
247 * simple.el (repeat-complex-command): Use funcall-interactively.
248 (repeat-complex-command--called-interactively-skip): Remove.
249
250 2014-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
251
252 * register.el (register-read-with-preview): Don't burp on
253 frame switches (e.g. due to the frame we just popped).
254
255 * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
256 (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
257
258 2014-05-26 Andreas Schwab <schwab@linux-m68k.org>
259
260 * cus-face.el (custom-face-attributes): Add :distant-foreground.
261
262 2014-05-26 Martin Rudalics <rudalics@gmx.at>
263
264 * window.el (window--dump-frame): Remove interactive specification.
265
266 2014-05-26 Glenn Morris <rgm@gnu.org>
267
268 * hippie-exp.el (he-line-search-regexp):
269 Handle comint-prompt-regexp containing subgroups. (Bug#17529)
270
271 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
272
273 * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
274 to avoid errors when trying to create or visit a file foo.todo
275 located outside to todo-directory, and to allow having such files
276 without them being tied to Todo mode (bug#17482).
277 (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
278 (todo-archive-done-item, todo-find-filtered-items-file)
279 (todo-filter-items, todo-find-item, todo-diary-goto-entry)
280 (todo-category-completions, todo-read-category): When visiting a
281 Todo file, make sure we're in the right mode and the buffer local
282 variables are set.
283 (todo-make-categories-list, todo-reset-nondiary-marker)
284 (todo-reset-done-string, todo-reset-comment-string):
285 After processing all Todo files, kill the buffers of those files that
286 weren't being visited before the processing.
287 (todo-display-as-todo-file, todo-add-to-buffer-list)
288 (todo-visit-files-commands): Comment out.
289 (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
290 (auto-mode-alist): Remove add-to-list calls making Todo file
291 extensions unrestrictedly tied to Todo modes.
292
293 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
294
295 * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
296 (advice-function-member-p): Tell it to check both names and functions
297 (bug#17531).
298 (advice--add-function): Adjust call accordingly.
299
300 2014-05-26 Stephen Berman <stephen.berman@gmx.net>
301
302 * calendar/todo-mode.el: Miscellaneous bug fixes.
303 (todo-delete-file): When deleting an archive but not its todo
304 file, make sure to update the todo file's category sexp.
305 (todo-move-category): Keep the moved category's name unless the
306 file moved to already has a category with that name. If the
307 numerically last category of the source file was moved, make the
308 first category current to avoid selecting a nonexisting category.
309 (todo-merge-category): Fix implementation to make merging to a
310 category in another file work as documented. Eliminate now
311 insufficient and unnecessary renaming of archive category, correct
312 document string accordingly, and clarify it. If the numerically
313 last category of the source file was merged, make the first
314 category current to avoid selecting a nonexisting category.
315 (todo-archive-done-item): When there are marked items and point
316 happens to be on an unmarked item, ignore the latter. Don't leave
317 point below last item after archiving marked items.
318 (todo-unarchive-items): Fix logic to ensure unarchiving an item
319 from an archive with only one category deletes the archive only
320 when the category is empty after unarchiving. Make sure the todo
321 file's category sexp is updated.
322 (todo-read-file-name): Allow an existing file name even when it is
323 not required (todo-move-category needs this to work as documented).
324 (todo-add-file): Call todo-validate-name to reject the name of an
325 existing todo file (needed due to fix in todo-read-file-name).
326 (todo-reset-nondiary-marker): Also reset in filtered items files.
327 (todo-reset-done-string, todo-reset-comment-string): Also reset in
328 regexp filtered items files.
329 (todo-reset-highlight-item): Also reset in filtered items files.
330 Fix incorrect variable reference in document string.
331
332 2014-05-26 Glenn Morris <rgm@gnu.org>
333
334 * window.el (window--dump-frame): Avoid error in --without-x builds.
335
336 2014-05-26 Glenn Morris <rgm@gnu.org>
337
338 * nxml/nxml-mode.el (xml-mode): Only define this alias once.
339
340 2014-05-26 Eli Zaretskii <eliz@gnu.org>
341
342 * frame.el (set-frame-font): Doc fix.
343
344 * menu-bar.el (menu-set-font): Doc fix. (Bug#17532)
345
346 2014-05-26 Dmitry Gutov <dgutov@yandex.ru>
347
348 * emacs-lisp/package.el (package--download-one-archive):
349 Use `write-region' instead of `save-buffer' to avoid running various
350 hooks. (Bug#17155)
351 (describe-package-1): Same. Insert newline at the end of the
352 buffer if appropriate.
353
354 2014-05-26 Juri Linkov <juri@jurta.org>
355
356 * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
357 (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
358 Add more modifiers: meta, control, shift, hyper, super, alt.
359 (Bug#17439)
360
361 * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
362 to allow changing its value with `set-variable'.
363
364 2014-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
365
366 * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
367 #; comments.
368 (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
369 New functions.
370 (scheme-mode-variables): Set syntax-propertize-function instead of
371 font-lock-syntactic-face-function.
372 (scheme-font-lock-syntactic-face-function): Delete.
373
374 * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
375
376 * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
377 (bug#17392).
378
379 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
380
381 * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
382 for a temporary file name.
383
384 2014-05-26 Eli Zaretskii <eliz@gnu.org>
385
386 * simple.el (line-move-ignore-invisible): Doc fix. (Bug#17511)
387
388 2014-05-26 Michael Albinus <michael.albinus@gmx.de>
389
390 * net/dbus.el (dbus-init-bus, dbus-call-method)
391 (dbus-call-method-asynchronously, dbus-send-signal)
392 (dbus-method-return-internal, dbus-method-error-internal):
393 Check, whether Emacs has been compiled with D-Bus support. (Bug#17508)
394
395 2014-05-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
396
397 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
398 methods which do not have a doc string. (Bug#17490)
399
400 2014-05-25 Tassilo Horn <tsdh@gnu.org>
401
402 * textmodes/reftex-ref.el (reftex-format-special): Make it work
403 also for AMS Math's \eqref macro.
404
405 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
406
407 Arrange to never byte-compile the generated -pkg.el file.
408
409 * emacs-lisp/package.el (package-generate-description-file):
410 Output first-line comment to set buffer-local var `no-byte-compile'.
411 Suggested by Dmitry Gutov:
412 <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
413
414 2014-05-25 Thien-Thi Nguyen <ttn@gnu.org>
415
416 Fix bug: Properly quote args to generated -pkg.el `define-package'.
417
418 * emacs-lisp/package.el (package-generate-description-file):
419 Inline `package--alist-to-plist'; rewrite to selectively
420 quote alist values that are not self-quoting.
421 (package--alist-to-plist): Delete func.
422
423 2014-05-25 Andreas Schwab <schwab@linux-m68k.org>
424
425 * term/xterm.el (xterm-function-map): Add mapping for shifted
426 keypad keys.
427
428 2014-05-24 Daniel Colascione <dancol@dancol.org>
429
430 * progmodes/subword.el (subword-find-word-boundary): Move point to
431 correct spot before search. (Bug#17580)
432
433 * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
434 breaking the build.
435
436 2014-05-24 Leo Liu <sdl.web@gmail.com>
437
438 * calc/calc.el (math-bignum): Handle most-negative-fixnum. (Bug#17556)
439
440 2014-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
441
442 * minibuffer.el (completion--sreverse): Remove.
443 (completion--common-suffix): Use `reverse' instead.
444 * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
445
446 2014-05-22 Glenn Morris <rgm@gnu.org>
447
448 * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
449
450 2014-05-21 Daniel Colascione <dancol@dancol.org>
451
452 * files.el (interpreter-mode-alist): Add mksh.
453
454 * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
455 derivative.
456 (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
457 mksh. Improve custom spec; allow regular expressions.
458 (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
459 (sh-after-hack-local-variables): New function.
460 (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
461 (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
462 the normalization.
463 (sh-canonicalize-shell): Rewrite to support regexes.
464
465 2014-05-21 Leo Liu <sdl.web@gmail.com>
466
467 * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
468
469 2014-05-19 Leo Liu <sdl.web@gmail.com>
470
471 * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
472
473 2014-05-18 Glenn Morris <rgm@gnu.org>
474
475 * loadup.el:
476 * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
477
478 2014-05-14 Sam Steingold <sds@gnu.org>
479
480 * progmodes/python.el (python-shell-get-or-create-process):
481 Do not bind `current-prefix-arg' so that C-c C-z does not talk
482 back unless requested.
483
484 2014-05-14 Glenn Morris <rgm@gnu.org>
485
486 * subr.el (with-file-modes): New macro.
487 * printing.el (pr-save-file-modes): Make obsolete.
488 * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
489 * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
490 Add with-file-modes.
491 * doc-view.el (doc-view-make-safe-dir):
492 * epg.el (epg--start):
493 * files.el (locate-user-emacs-file, make-temp-file)
494 (backup-buffer-copy, move-file-to-trash):
495 * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
496 * eshell/esh-util.el (eshell-with-private-file-modes)
497 (eshell-make-private-directory):
498 * net/browse-url.el (browse-url-mosaic):
499 * obsolete/mailpost.el (post-mail-send-it):
500 * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
501 * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
502 Use with-file-modes.
503
504 * vc/emerge.el (emerge-make-temp-file): Simplify.
505
506 2014-05-14 Stephen Berman <stephen.berman@gmx.net>
507 Stefan Monnier <monnier@iro.umontreal.ca>
508
509 * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
510 suffix (bug#15419).
511
512 2014-05-14 Glenn Morris <rgm@gnu.org>
513
514 * vc/emerge.el (emerge-temp-file-prefix):
515 Make pointless option obsolete.
516 (emerge-temp-file-mode): Make non-functional option obsolete.
517
518 2014-05-14 Michael Albinus <michael.albinus@gmx.de>
519
520 * net/browse-url.el (browse-url):
521 Use `unhandled-file-name-directory' when setting `default-directory',
522 in order to circumvent stalled remote connections. (Bug#17425)
523
524 2014-05-14 Glenn Morris <rgm@gnu.org>
525
526 * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
527 Optimize on Emacs, which has the relevant functions for ages.
528
529 2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
530
531 * simple.el (undo-make-selective-list): Obey undo-no-redo.
532
533 2014-05-12 Sam Steingold <sds@gnu.org>
534
535 * calendar/time-date.el (seconds-to-string): New function to
536 pretty print time delay in seconds.
537
538 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
539
540 * mpc.el (mpc-format): Trim Date to the year.
541 (mpc-songs-hashcons): Shorten the Date field.
542
543 * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
544 into autoloading just because of a silly indirection.
545
546 2014-05-12 Santiago Payà i Miralta <santiagopim@gmail.com> (tiny change)
547
548 * vc/vc-hg.el (vc-hg-unregister): New function. (Bug#17454)
549
550 2014-05-12 Glenn Morris <rgm@gnu.org>
551
552 * emacs-lisp/find-gc.el: Move to ../admin.
553
554 * printing.el (pr-version):
555 * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
556
557 * net/browse-url.el (browse-url-mosaic):
558 Create /tmp/Mosaic.PID as a private file.
559
560 2014-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
561
562 * emacs-lisp/nadvice.el: Support adding a given function multiple times.
563 (advice--member-p): If name is given, only compare the name.
564 (advice--remove-function): Don't stop at the first match.
565 (advice--normalize-place): New function.
566 (add-function, remove-function): Use it.
567 (advice--add-function): Pass the name, if any, to
568 advice--remove-function.
569
570 2014-05-12 Philipp Rumpf <prumpf@gmail.com> (tiny change)
571
572 * electric.el (electric-indent-post-self-insert-function): Don't use
573 `pos' after modifying the buffer (bug#17449).
574
575 2014-05-12 Stephen Berman <stephen.berman@gmx.net>
576
577 * calendar/todo-mode.el (todo-insert-item-from-calendar):
578 Correct argument list to conform to todo-insert-item--basic.
579
580 2014-05-12 Glenn Morris <rgm@gnu.org>
581
582 * files.el (cd-absolute): Test if directory is accessible
583 rather than executable. (Bug#17330)
584
585 * progmodes/compile.el (recompile):
586 Handle C-u M-x recompile from a non-compilation buffer. (Bug#17444)
587
588 * net/browse-url.el (browse-url-mosaic):
589 Be careful when writing /tmp/Mosaic.PID. (Bug#17428)
590 This is CVE-2014-3423.
591
592 2014-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
593
594 * mouse.el: Use the normal toplevel loop while dragging.
595 (mouse-set-point): Handle multi-clicks.
596 (mouse-set-region): Handle multi-clicks for drags.
597 (mouse-drag-region): Update call accordingly.
598 (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
599 Use the normal event loop instead of a local while/read-event loop.
600 (global-map): Remove redundant bindings for double/triple-mouse-1.
601 * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
602 Generate synthetic down events when the protocol only sends up events.
603 (xterm-mouse-last): Remove.
604 (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
605 terminal parameter instead.
606 (xterm-mouse--set-click-count): New function.
607 (xterm-mouse-event): Detect/generate double/triple clicks.
608 * reveal.el (reveal-close-old-overlays): Don't close while dragging.
609
610 * info.el (Info-quoted): New face.
611 (Info-mode-font-lock-keywords): New var.
612 (Info-mode): Use it.
613
614 * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
615 are a hindrance for C-x C-e.
616
617 2014-05-11 Leo Liu <sdl.web@gmail.com>
618
619 * net/rcirc.el (rcirc-sentinel): Fix last change.
620
621 2014-05-08 Sam Steingold <sds@gnu.org>
622
623 * net/rcirc.el (rcirc-reconnect-delay): New user option.
624 (rcirc-sentinel): Auto-reconnect to the server if
625 `rcirc-reconnect-delay' is non-0 (but not more often than its
626 value in case the host is off-line).
627
628 2014-05-09 Eli Zaretskii <eliz@gnu.org>
629
630 * progmodes/grep.el (lgrep): Fix a typo in last commit.
631
632 2014-05-09 Glenn Morris <rgm@gnu.org>
633
634 * files.el (file-expand-wildcards):
635 * man.el (Man-support-local-filenames):
636 * printing.el (pr-i-directory, pr-interface-directory):
637 * progmodes/grep.el (lgrep, rgrep):
638 * textmodes/ispell.el (ispell-call-process)
639 (ispell-call-process-region, ispell-start-process)
640 (ispell-init-process): Use file-accessible-directory-p.
641
642 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
643
644 * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
645 (xterm-mouse--read-event-sequence-1000): Return nil if something
646 looks fishy.
647 (xterm-mouse-event): Propagate it.
648 (xterm-mouse-translate-1): Handle it.
649
650 2014-05-08 Stephen Berman <stephen.berman@gmx.net>
651
652 * calendar/todo-mode.el (todo-insert-item--apply-args): When all
653 four slots of the parameter list are filled, make sure to pass it
654 to the argument list of todo-insert-item--basic.
655
656 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
657
658 * emacs-lisp/package.el (package-compute-transaction): Topological sort.
659 Add optional `seen' argument to detect and break infinite loops.
660
661 2014-05-08 Eli Zaretskii <eliz@gnu.org>
662
663 * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
664 (trace-unsafe, trace-use-tree): Make parentheses style be
665 according to Emacs style.
666
667 2014-05-08 Michael Albinus <michael.albinus@gmx.de>
668
669 * net/tramp-sh.el (tramp-remote-process-environment):
670 Remove HISTFILE and HISTSIZE; it's too late to set them here.
671 Add :version entry.
672 (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
673 Add "HISTSIZE=/dev/null" to the shell's env arguments. Do not send
674 extra "PSx=..." commands.
675 (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
676 (Bug#17295)
677
678 (tramp-uudecode): Replace the hard-coded temporary file name by a
679 format specifier.
680 (tramp-remote-coding-commands): Enhance docstring.
681 (tramp-find-inline-encoding): Replace "%t" by a temporary file
682 name. (Bug#17415)
683 This is CVE-2014-3424.
684
685 2014-05-08 Glenn Morris <rgm@gnu.org>
686
687 * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
688 (find-gc-source-files): Update some names.
689 (trace-call-tree): Simplify and update.
690 Avoid predictable temp-file names. (http://bugs.debian.org/747100)
691 This is CVE-2014-3422.
692
693 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
694
695 * minibuffer.el (completion--try-word-completion): Revert fix for
696 Bug#15980 (bug#17375).
697
698 * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
699 Always store button numbers in the same way in xterm-mouse-last;
700 Don't burp is xterm-mouse-last is not set as expected.
701 Never return negative indices.
702
703 2014-05-08 Dmitry Gutov <dgutov@yandex.ru>
704
705 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
706 Backtrack one char if the global/char-literal var matcher hits
707 inside a string. The next char could be the beginning of an
708 expression expansion.
709
710 2014-05-08 Glenn Morris <rgm@gnu.org>
711
712 * help-fns.el (describe-function-1): Test for an autoload before a
713 macro, since `macrop' works on autoloads. (Bug#17410)
714
715 2014-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
716
717 * electric.el (electric-indent-functions-without-reindent): Add yaml.
718
719 * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
720 Make sure the new point we return is within the new string (bug#17239).
721
722 2014-05-05 Daniel Colascione <dancol@dancol.org>
723
724 * progmodes/compile.el (compilation-error-regexp-alist-alist):
725 Port `gnu' pattern to rx.
726
727 2014-05-05 Jarek Czekalski <jarekczek@poczta.onet.pl>
728
729 Remove unneeded prompt when closing a buffer with active
730 emacsclient ("Buffer ... still has clients"), #16548.
731 * server.el (server-start): Remove the only call to:
732 (server-kill-buffer-query-function): Remove.
733
734 2014-05-04 Leo Liu <sdl.web@gmail.com>
735
736 * calendar/diary-lib.el (calendar-chinese-month-name-array):
737 Defvar to pacify compiler.
738
739 2014-05-04 Eli Zaretskii <eliz@gnu.org>
740
741 * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
742
743 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
744
745 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
746 Use nil rather than `default' for the "default" appearance (bug#17388).
747 * vc/ediff-util.el (ediff-inferior-compare-regions)
748 (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
749 a misleading `default' value when it's really a boolean.
750 * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
751 overlay is not visible.
752
753 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
754
755 * calendar/todo-mode.el (todo-edit-file): Use display-warning.
756 (todo-menu): Uncomment and update.
757
758 2014-05-04 Stephen Berman <stephen.berman@gmx.net>
759
760 * calendar/todo-mode.el: Reimplement item editing to have the same
761 basic user interface as item insertion, and make small UI and
762 larger internal improvements to the latter.
763 (todo-insert-item): Add reference to the Todo mode user manual to
764 the documentation string.
765 (todo-insert-item--basic): Rename from todo-basic-insert-item and
766 adjust all callers. Change signature to combine diary and
767 nonmarking arguments. Incorporate functionality of deleted item
768 copying command and add error checking. Remove detailed
769 descriptions of the arguments from the documentation string, since
770 this is treated in the Todo mode user manual.
771 (todo-copy-item, todo-edit-multiline-item)
772 (todo-edit-done-item-comment, todo-edit-item-header)
773 (todo-edit-item-time, todo-edit-item-date-from-calendar)
774 (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
775 (todo-edit-item-date-year, todo-edit-item-date-month)
776 (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
777 Remove.
778 (todo-edit-item): Reimplement as wrapper command for
779 todo-edit-item--next-key and make it distinguish done and not done
780 todo items.
781 (todo-edit-item--text): New function, replacing old command
782 todo-edit-item and incorporating deleted commands
783 todo-edit-multiline-item and todo-edit-done-item-comment.
784 (todo-edit-item--header): Rename from todo-basic-edit-item-header.
785 Use only numeric value of prefix argument. Remove detailed
786 descriptions of the arguments from the documentation string, since
787 this is treated in the Todo mode user manual.
788 (todo-edit-item--diary-inclusion): New function, replacing old
789 command todo-edit-item-diary-inclusion and incorporating and fixing
790 functionality of deleted command todo-edit-item-diary-nonmarking,
791 making sure to remove todo-nondiary-marker when adding
792 diary-nonmarking-symbol.
793 (todo-edit-category-diary-inclusion): Make sure to delete
794 diary-nonmarking-symbol when adding todo-nondiary-marker.
795 (todo-edit-category-diary-nonmarking): Fix indentation.
796 (todo-insert-item--parameters): Group diary and nonmarking
797 parameters together.
798 (todo-insert-item--apply-args): Adjust to signature of
799 todo-insert-item--basic and incorporate copy parameter.
800 Make small code improvements.
801 (todo-insert-item--next-param): Improve prompt and adjust it to
802 new parameter grouping. Remove obsolete code.
803 (todo-edit-item--param-key-alist)
804 (todo-edit-item--date-param-key-alist)
805 (todo-edit-done-item--param-key-alist): New defconsts.
806 (todo-edit-item--prompt): New variable.
807 (todo-edit-item--next-key): New function.
808 (todo-key-bindings-t): Bind "e" to todo-edit-item.
809 Remove bindings of deleted commands.
810
811 2014-05-04 Leo Liu <sdl.web@gmail.com>
812
813 * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
814
815 2014-05-04 Glenn Morris <rgm@gnu.org>
816
817 * allout-widgets.el (allout-widgets-tally)
818 (allout-decorate-item-guides):
819 * menu-bar.el (menu-bar-positive-p):
820 * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
821 * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
822 * progmodes/js.el (js--inside-param-list-p)
823 (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
824 * progmodes/prolog.el (region-exists-p):
825 * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
826 * textmodes/reftex-parse.el (reftex-using-biblatex-p):
827 Doc fixes (replace `iff').
828
829 2014-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
830
831 * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
832
833 2014-05-04 Leo Liu <sdl.web@gmail.com>
834
835 Support Chinese diary entries in calendar and diary. (Bug#17393)
836 * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
837 (calendar-chinese-from-absolute-for-diary)
838 (calendar-chinese-to-absolute-for-diary)
839 (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
840 (diary-chinese-list-entries): New functions to list and mark
841 Chinese diary entries in the calendar window.
842 (diary-chinese-anniversary)
843 (diary-chinese-insert-anniversary-entry)
844 (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
845 (diary-chinese-insert-yearly-entry): New commands to insert
846 Chinese diary entries.
847
848 * calendar/diary-lib.el (diary-font-lock-keywords):
849 Support font-locking Chinese dates.
850
851 * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
852 inserting Chinese diary entries.
853
854 * calendar/calendar.el (diary-chinese-entry-symbol):
855 New customizable variable.
856 (calendar-mode-map): Add bindings for inserting Chinese diary
857 entries.
858
859 2014-05-03 Juri Linkov <juri@jurta.org>
860
861 * dired.el (dired-check-switches, dired-switches-recursive-p):
862 New functions. (Bug#17218)
863 (dired-switches-escape-p, dired-move-to-end-of-filename):
864 Use `dired-check-switches'.
865 (dired-insert-old-subdirs, dired-build-subdir-alist)
866 (dired-sort-R-check): Use `dired-switches-recursive-p'.
867
868 2014-05-01 Barry O'Reilly <gundaetiapo@gmail.com>
869
870 * simple.el (undo-make-selective-list): New algorithm fixes
871 incorrectness of position adjustments when undoing in region.
872 (Bug#17235)
873 (undo-elt-crosses-region): Make obsolete.
874 (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
875 New functions to adjust positions using undo-deltas.
876
877 2014-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
878
879 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
880 the last consecutive closing paren (bug#17345).
881
882 2014-04-30 Reuben Thomas <rrt@sc3d.org>
883
884 * dired.el (dired-mode): make terminology for eXpunge command
885 consistent. (Bug#17276)
886
887 2014-04-30 Eli Zaretskii <eliz@gnu.org>
888
889 * dired.el (dired-initial-position-hook, dired-initial-position):
890 Doc string fixes.
891
892 2014-04-30 Glenn Morris <rgm@gnu.org>
893
894 * mail/rmail.el (rmail-quit): Handle killed summaries. (Bug#17283)
895
896 2014-04-30 Matthias Dahl <matthias.dahl@binary-island.eu>
897
898 * faces.el (face-spec-recalc): Apply X resources only after the
899 defface spec has been applied. Thus, X resources are no longer
900 overriden by the defface spec which also fixes issues on win32 where
901 the toolbar coloring was wrong because it is set through X resources
902 and was (wrongfully) overriden. (Bug#16694)
903
904 2014-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
905
906 * textmodes/rst.el (electric-pair-pairs): Declare.
907 (rst-mode): Set it (bug#17131).
908
909 2014-04-30 Juri Linkov <juri@jurta.org>
910
911 * desktop.el (desktop-value-to-string): Let-bind `print-length'
912 and `print-level' to nil. (Bug#17351)
913
914 2014-04-30 Nicolas Richard <theonewiththeevillook@yahoo.fr>
915
916 * battery.el (battery-update): Handle the case where battery
917 status is "N/A" (bug#17319).
918
919 2014-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
920
921 * progmodes/ps-mode.el: Use SMIE. Move string and comment recognition
922 to syntax-propertize.
923 (ps-mode-auto-indent): Mark as obsolete.
924 (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
925 (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
926 word regexp operators.
927 (ps-mode-map): Move initialization into declaration. Remove binding
928 for TAB, RET, >, ], and }.
929 (ps-mode-syntax-table): Move initialization into declaration.
930 Don't give word syntax to non-word chars.
931 (ps-run-mode-map): Move initialization into declaration.
932 (ps-mode-menu-main): Remove auto-indent entry.
933 (ps-mode-smie-rules): New function.
934 (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
935 (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
936 (ps-mode--string-syntax-table): New const.
937 (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
938 New functions.
939 (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
940 (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
941
942 2014-04-27 Daniel Colascione <dancol@dancol.org>
943
944 * term/xterm.el (xterm-paste): Use large finite timeout when
945 reading event to avoid putting keys in this-command-keys.
946
947 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
950 (perl-syntax-propertize-function): Use it. Extend handling of
951 here-docs to the unquoted case.
952
953 2014-04-25 Eli Zaretskii <eliz@gnu.org>
954
955 * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
956 Use equal-including-properties to compare help-echo strings (bug#17331).
957
958 2014-04-25 Leo Liu <sdl.web@gmail.com>
959
960 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
961 Fix syntax for @. (Bug#17325)
962
963 2014-04-25 Daniel Colascione <dancol@dancol.org>
964
965 * emacs-lisp/cl.el (gv): Require gv early to break eager
966 macro-expansion cycles.
967
968 2014-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * simple.el (region-active-p): Check there's a mark (bug#17324).
971
972 * simple.el (completion-list-mode-map): Use choose-completion for the
973 mouse binding as well (bug#17302).
974 (completion-list-mode, completion-setup-function): Adjust docstring and
975 echo area message accordingly.
976 * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
977 calling convention of choose-completion.
978 * comint.el (comint-dynamic-list-completions):
979 * term.el (term-dynamic-list-completions): Accept choose-completion.
980
981 * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
982 &, |, +, - and * can't be a division (bug#17317).
983
984 * term/xterm.el (xterm--version-handler): Don't use modern xterm
985 features on gnome-terminal (bug#16988).
986
987 2014-04-25 Thien-Thi Nguyen <ttn@gnu.org>
988
989 Improve Scheme font-locking for (define ((foo ...) ...) ...).
990
991 * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
992 the declared object, ignore zero or more parens, not zero or one.
993
994 2014-04-24 Leo Liu <sdl.web@gmail.com>
995
996 * progmodes/xscheme.el (xscheme-expressions-ring)
997 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
998 (xscheme-control-g-disabled-p, xscheme-process-filter-state)
999 (xscheme-allow-output-p, xscheme-prompt)
1000 (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
1001
1002 * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
1003 Comment out unused functions.
1004
1005 2014-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1006
1007 * info.el: Use lexical-binding and cl-lib.
1008 Use defvar-local and setq-local instead of make-local-variable.
1009 (Info-apropos-matches): Avoid add-to-list.
1010 (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
1011
1012 2014-04-24 Daniel Colascione <dancol@dancol.org>
1013
1014 * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
1015
1016 2014-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1017
1018 * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
1019
1020 2014-04-22 Michael Heerdegen <michael_heerdegen@web.de>
1021
1022 * dired.el (dired-insert-set-properties): Do not consider
1023 subdirectory headings and empty lines to be information that
1024 `dired-hide-details-mode' should hide. (Bug#17228)
1025
1026 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1027
1028 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1029 Remove test messages.
1030 (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
1031 and `target' twice.
1032
1033 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1034
1035 * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
1036 * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
1037
1038 * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
1039
1040 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1041
1042 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
1043 Set "IFS=" when using read builtin, in order to preserve spaces in
1044 the file name. Add test messages for hunting a bug on hydra.
1045 (tramp-get-ls-command): Undo using "-b" argument. It doesn't help.
1046
1047 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1048
1049 * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
1050 Don't prettify a word within a symbol.
1051
1052 2014-04-22 Michael Albinus <michael.albinus@gmx.de>
1053
1054 * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
1055 possible.
1056
1057 2014-04-22 Daniel Colascione <dancol@dancol.org>
1058
1059 * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
1060 use defun to define `function-put'.
1061
1062 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1063
1064 * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
1065 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
1066 (lisp-mode-variables): Set font-lock-extra-managed-props.
1067
1068 * emacs-lisp/byte-run.el (function-put): New function.
1069 (defun-declarations-alist): Use it. Add `pure' and `side-effect-free'.
1070 * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
1071 (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
1072 Use them.
1073
1074 2014-04-22 Daniel Colascione <dancol@dancol.org>
1075
1076 * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
1077 Add `full-p' parameter; when nil, call `macroexpand' instead of
1078 `macroexpand-all'.
1079
1080 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1081 Improve docstrings.
1082
1083 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1084 Use lambda function values, not quoted lambdas.
1085 (byte-compile-recurse-toplevel): Remove extraneous &optional.
1086
1087 * emacs-lisp/cl-macs.el
1088 (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
1089 (cl-struct-slot-value): Conditionally use aref or nth so that the
1090 compiler produces optimal code.
1091
1092 2014-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
1093
1094 * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
1095 (inline): Don't inline cl--set-elt.
1096 (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
1097 Define as inlinable instead.
1098 (cl-struct-set-slot-value): Remove.
1099
1100 * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
1101 * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
1102 Use setf instead.
1103
1104 2014-04-21 Daniel Colascione <dancol@dancol.org>
1105
1106 * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
1107 last two parameters after all.
1108 (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
1109 (cl--compiler-macro-assoc,cl-struct-slot-value)
1110 (cl-struct-set-slot-value): Stop using them.
1111
1112 (2014-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1113
1114 * image-mode.el (image-mode-window-put): Don't assume there's a `t'
1115 entry in image-mode-winprops-alist.
1116
1117 2014-04-21 Daniel Colascione <dancol@dancol.org>
1118
1119 * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
1120 (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
1121 (byte-compile-toplevel-file-form): Use it.
1122
1123 * emacs-lisp/cl-macs.el:
1124 (cl--loop-let): Properly destructure `while' clauses.
1125
1126 2014-04-20 Daniel Colascione <dancol@dancol.org>
1127
1128 * vc/vc.el (vc-root-dir): New public autoloaded function for
1129 generically finding the current VC root.
1130 * vc/vc-hooks.el (vc-not-supported): New error.
1131 (vc-call-backend): Signal `vc-not-supported' instead of generic error.
1132
1133 2014-04-20 Daniel Colascione <dancol@dancol.org>
1134
1135 * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
1136 argument.
1137 (cl--const-expr-val): cl--const-expr-val should macroexpand its
1138 argument in case we're inside a symbol-macrolet.
1139 (cl--do-arglist, cl--compiler-macro-typep)
1140 (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
1141 environment to `cl--const-expr-val'.
1142 (cl-struct-sequence-type,cl-struct-slot-info)
1143 (cl-struct-slot-offset, cl-struct-slot-value)
1144 (cl-struct-set-slot-value): New functions.
1145
1146 2014-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1147
1148 * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
1149 assignments such as "case=hello" (bug#17297).
1150
1151 2014-04-18 Michael Albinus <michael.albinus@gmx.de>
1152
1153 * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
1154 Do not autoload.
1155 (tramp-file-name-handler, tramp-completion-file-name-handler):
1156 Revert patch from 2014-04-10, it isn't necessary anymore.
1157 (tramp-autoload-file-name-handler)
1158 (tramp-register-autoload-file-name-handlers): New defuns.
1159 (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
1160 (tramp-register-file-name-handlers): Remove also
1161 `tramp-autoload-file-name-handler' from `file-name-handler-list'.
1162 Do not autoload its invocation, but eval it after loading of 'tramp.
1163
1164 * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
1165
1166 * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
1167
1168 2014-04-17 Daniel Colascione <dancol@dancol.org>
1169
1170 Add support for bracketed paste mode; add infrastructure for
1171 managing terminal mode enabling and disabling automatically.
1172
1173 * xt-mouse.el:
1174 (xterm-mouse-mode): Simplify.
1175 (xterm-mouse-tracking-enable-sequence)
1176 (xterm-mouse-tracking-disable-sequence): New constants.
1177 (turn-on-xterm-mouse-tracking-on-terminal)
1178 (turn-off-xterm-mouse-tracking-on-terminal):
1179 Use tty-mode-set-strings and tty-mode-reset-strings terminal
1180 parameters instead of random hooks.
1181 (turn-on-xterm-mouse-tracking)
1182 (turn-off-xterm-mouse-tracking): Delete.
1183
1184 * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
1185 (xterm-paste-ending-sequence): New constant.
1186 (xterm-paste): New command used for bracketed paste support.
1187
1188 (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
1189 (terminal-init-xterm-bracketed-paste-mode): New function.
1190 (terminal-init-xterm): Call it.
1191 (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
1192 and tty-mode-reset-strings instead of random hooks.
1193 (xterm-turn-on-modify-other-keys)
1194 (xterm-turn-off-modify-other-keys)
1195 (xterm-remove-modify-other-keys): Delete obsolete functions.
1196
1197 * term/screen.el: Rewrite to just use the xterm code.
1198 Add copyright notice. Mention tmux.
1199
1200 2014-04-17 Ian D <dunni@gnu.org> (tiny change)
1201
1202 * image-mode.el (image-mode-window-put): Also update the property of
1203 the "default window".
1204 * doc-view.el (doc-view-new-window-function): If no window
1205 exists, move to the last known page.
1206
1207 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1208
1209 * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
1210 here-documents (bug#17262).
1211
1212 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1213
1214 * term/pc-win.el (x-list-fonts, x-get-selection-value):
1215 Provide doc strings, as required by snarf-documentation.
1216
1217 2014-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1218
1219 * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
1220 arg of overlays-at. Use `invisible-p'.
1221
1222 * obsolete/lucid.el (extent-at):
1223 * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
1224 overlays-at.
1225 (hfy-fontify-buffer): Remove unused var `orig-ovls'.
1226
1227 2014-04-16 João Távora <joaotavora@gmail.com>
1228
1229 * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
1230 links. (Bug#17217).
1231
1232 2014-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1233
1234 * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
1235 Use mapc to loop over a vector. (Bug#17257).
1236
1237 2014-04-16 Michael Albinus <michael.albinus@gmx.de>
1238
1239 * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
1240 patch, there are new problems with file names containing spaces.
1241 Get rid of backticks. (Bug#17238)
1242
1243 2014-04-16 João Távora <joaotavora@gmail.com>
1244
1245 * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
1246 possible bug.
1247
1248 2014-04-16 Eli Zaretskii <eliz@gnu.org>
1249
1250 * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
1251 (blink-cursor-mode): Mention customization variables and the
1252 effect of 'blink-cursor-blinks'.
1253
1254 2014-04-16 Barry O'Reilly <gundaetiapo@gmail.com>
1255
1256 * simple.el (undo): Prevent insertion of identity mapping into
1257 undo-equiv-table so as undo-only does not inf loop in the presence
1258 of consecutive nils in undo list.
1259
1260 2014-04-16 Matthias Dahl <matthias.dahl@binary-island.eu>
1261
1262 * faces.el (make-face): Deprecate optional argument as it is no
1263 longer needed/used since the conditional X resources handling
1264 has been pushed down to make-face-x-resource-internal itself.
1265 (make-empty-face): Don't pass optional argument to make-face.
1266
1267 2014-04-16 Karl Fogel <kfogel@red-bean.com>
1268
1269 * savehist.el (savehist-save): Remove workaround for a read-passwd
1270 bug that was fixed before 24.3. Thanks to Juanma Barranquero for
1271 noticing that the shim was still present.
1272
1273 2014-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1274
1275 * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
1276
1277 2014-04-14 Juanma Barranquero <lekktu@gmail.com>
1278
1279 * faces.el (face-set-after-frame-default): Remove unused local variable.
1280
1281 2014-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1282
1283 * progmodes/grep.el: Use lexical-binding.
1284 (grep-expand-template): Pass explicit lexical env to `eval'.
1285 (zrgrep): Let-bind grep-find-template explicitly.
1286
1287 * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
1288 * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
1289
1290 2014-04-12 Eli Zaretskii <eliz@gnu.org>
1291
1292 * international/characters.el <standard-case-table>: Add entries
1293 for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
1294 Set category of Coptic characters be 'g' (Greek).
1295
1296 2014-04-12 Leo Liu <sdl.web@gmail.com>
1297
1298 * progmodes/octave.el (completion-table-with-cache):
1299 Define if not available.
1300 (octave-goto-function-definition, octave-sync-function-file-names)
1301 (octave-find-definition-default-filename):
1302 Backquote upattern for compatibility.
1303
1304 2014-04-12 Michael Albinus <michael.albinus@gmx.de>
1305
1306 * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
1307 name twice due to backticks. (Bug#17238)
1308
1309 2014-04-12 Glenn Morris <rgm@gnu.org>
1310
1311 * term/w32-win.el (x-win-suspend-error):
1312 * term/x-win.el (x-win-suspend-error): Sync docs.
1313
1314 2014-04-12 Matthias Dahl <matthias.dahl@binary-island.eu>
1315
1316 * faces.el (make-face): Remove deprecated optional argument.
1317 The conditional application of X resources is handled directly by
1318 make-face-x-resource-internal since Emacs 24.4.
1319 (make-empty-face): Don't pass optional argument to make-face.
1320
1321 2014-04-11 Glenn Morris <rgm@gnu.org>
1322
1323 * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport. (Bug#16429)
1324
1325 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1326
1327 Ediff's overlay priorities cause more trouble than they solve.
1328 * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
1329 (ediff-highest-priority): Remove function (bug#17234).
1330 * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
1331 * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
1332 (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
1333 overlay priorities.
1334
1335 2014-04-11 Feng Li <fengli@gmail.com> (tiny change)
1336
1337 * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
1338 entry; use symbol boundaries to avoid mis-matches.
1339
1340 2014-04-11 Michael Albinus <michael.albinus@gmx.de>
1341
1342 * net/tramp.el (tramp-file-name-handler)
1343 (tramp-completion-file-name-handler): Avoid recursive loading.
1344
1345 * net/tramp-sh.el (tramp-make-copy-program-file-name):
1346 Quote result also locally.
1347
1348 2014-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1349
1350 * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
1351 Remove left-over code.
1352
1353 * newcomment.el (comment-indent-new-line): Sink code where it's used.
1354 Reuse the previous comment's indentation unconditionally if it's on its
1355 own line.
1356
1357 2014-04-09 Daniel Colascione <dancol@dancol.org>
1358
1359 * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
1360 `no-syntax-crossing' arguments. Forward to `up-list'.
1361 (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
1362 Implement logic for escaping from strings. Use narrowing to deal
1363 with corner cases.
1364
1365 2014-04-09 Leo Liu <sdl.web@gmail.com>
1366
1367 * net/rcirc.el (rcirc-connection-info): New variable.
1368 (rcirc-connect): Use it to store connection info.
1369 (rcirc-buffer-process): Avoid get-buffer-process which returns nil
1370 for killed process.
1371 (rcirc-cmd-reconnect): New command. (Bug#17045)
1372 (rcirc-mode, set-rcirc-encode-coding-system)
1373 (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
1374
1375 2014-04-09 Daniel Colascione <dancol@dancol.org>
1376
1377 * emacs-lisp/cl-indent.el: Add comment claiming
1378 facility is also good for elisp.
1379 (lisp-indent-find-method): New function.
1380 (common-lisp-indent-function): Recognize cl-loop.
1381 (common-lisp-indent-function-1): Recognize cl constructs; use
1382 `lisp-indent-find-method' instead of `get' directly.
1383 (if): Use else-body style for elisp.
1384
1385 2014-04-09 Dmitry Gutov <dgutov@yandex.ru>
1386
1387 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
1388 Module methods. (Bug#17216)
1389
1390 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1391
1392 * help.el (describe-bindings): Fix buffer handling (bug#17210).
1393 (describe-bindings-internal): Mark obsolete.
1394
1395 2014-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1396
1397 * subr.el (with-silent-modifications): Don't bind deactivate-mark,
1398 buffer-file-name, and buffer-file-truename any more.
1399
1400 2014-04-08 Leo Liu <sdl.web@gmail.com>
1401
1402 Use lexical-binding and require cl-lib.
1403 * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
1404 (rcirc-handler-generic, rcirc-fill-paragraph)
1405 (rcirc-format-response-string, rcirc-target-buffer)
1406 (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
1407 (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
1408 (rcirc-ctcp-sender-PING, rcirc-browse-url)
1409 (rcirc-markup-timestamp, rcirc-markup-attributes)
1410 (rcirc-markup-my-nick, rcirc-markup-urls)
1411 (rcirc-markup-bright-nicks, rcirc-markup-fill)
1412 (rcirc-check-auth-status, rcirc-handler-WALLOPS)
1413 (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
1414 (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
1415 (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
1416 (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
1417 (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
1418 (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
1419 (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
1420 (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
1421 (rcirc-handler-CTCP-response): Fix unused arguments warnings and
1422 use cl-lib.
1423
1424 2014-04-07 João Távora <joaotavora@gmail.com>
1425
1426 * elec-pair.el (electric-pair--syntax-ppss):
1427 When inside comments parse from comment beginning.
1428 (electric-pair--balance-info): Fix typo in comment.
1429 (electric-pair--in-unterminated-string-p): Delete.
1430 (electric-pair--unbalanced-strings-p): New function.
1431 (electric-pair-string-bound-function): New var.
1432 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1433 according to `electric-pair--in-unterminated-string-p'
1434
1435 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1436 Inhibit quote pairing if point-max is inside an unterminated string.
1437 (electric-pair--looking-at-unterminated-string-p): Delete.
1438 (electric-pair--in-unterminated-string-p): New function.
1439
1440 2014-04-07 Glenn Morris <rgm@gnu.org>
1441
1442 * shell.el (shell-directory-tracker):
1443 Go back to just ignoring failures. (Bug#17159)
1444
1445 2014-04-07 João Távora <joaotavora@gmail.com>
1446
1447 Fix `electric-pair-delete-adjacent-pairs' in modes binding
1448 backspace. (bug#16981)
1449 * elec-pair.el (electric-pair-backward-delete-char): Delete.
1450 (electric-pair-backward-delete-char-untabify): Delete.
1451 (electric-pair-mode-map): Bind backspace to a menu item filtering
1452 a new `electric-pair-delete-pair' command.
1453 (electric-pair-delete-pair): New command.
1454
1455 * progmodes/python.el (python-electric-pair-string-delimiter):
1456 Fix triple-quoting electricity. (Bug#17192)
1457
1458 * elec-pair.el (electric-pair-post-self-insert-function):
1459 Don't skip whitespace when `electric-pair-text-pairs' and
1460 `electric-pair-pairs' were used. syntax to
1461 electric-pair--skip-whitespace. (Bug#17183)
1462
1463 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1464
1465 * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
1466 "<F>". (Bug#17199)
1467
1468 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1469
1470 * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
1471 (mpc--status-idle-timer-run): Use mpc--status-timer-run.
1472
1473 2014-04-07 Glenn Morris <rgm@gnu.org>
1474
1475 * help.el (view-lossage): Doc tweak.
1476
1477 2014-04-07 Matthias Dahl <ml_emacs-lists@binary-island.eu>
1478
1479 * faces.el (face-spec-recalc): Call make-face-x-resource-internal
1480 only when inhibit-x-resources is nil, and do that earlier in the
1481 function. Doc fix. (Bug#16694)
1482 (face-spec-choose): Accept additional optional argument, whose
1483 value is returned if no matching attributes are found.
1484 (face-spec-recalc): Use the new optional argument when calling
1485 face-spec-choose. (Bug#16378)
1486 (make-face-x-resource-internal): Do nothing when
1487 inhibit-x-resources is non-nil. Don't touch the default face if
1488 reversed video is given--as was done in previous versions of Emacs.
1489 (face-set-after-frame-default): Don't call
1490 make-face-x-resource-internal here. (Bug#16434)
1491
1492 2014-04-07 Tassilo Horn <tsdh@gnu.org>
1493
1494 * doc-view.el (doc-view-bookmark-jump):
1495 Use `bookmark-after-jump-hook' to jump to the right page after the
1496 buffer is shown in a window. (bug#16090)
1497
1498 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1499
1500 * international/characters.el (mirroring): Fix last change:
1501 instead of loading uni-mirrored.el explicitly, do that implicitly
1502 by creating the 'mirroring' uniprop table. This avoids announcing
1503 the loading of uni-mirrored.el.
1504
1505 2014-04-07 Glenn Morris <rgm@gnu.org>
1506
1507 * files.el (buffer-stale--default-function)
1508 (buffer-stale-function, revert-buffer--default):
1509 * autorevert.el (auto-revert-buffers): Doc tweaks.
1510
1511 2014-04-07 Eli Zaretskii <eliz@gnu.org>
1512
1513 * international/characters.el: Preload uni-mirrored.el. (Bug#17169)
1514
1515 2014-04-07 Glenn Morris <rgm@gnu.org>
1516
1517 * files.el (make-backup-file-name-function)
1518 (make-backup-file-name, make-backup-file-name--default-function)
1519 (make-backup-file-name-1, find-backup-file-name)
1520 (revert-buffer-function, revert-buffer-insert-file-contents-function)
1521 (buffer-stale--default-function, buffer-stale-function)
1522 (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
1523 (revert-buffer, revert-buffer--default)
1524 (revert-buffer-insert-file-contents--default-function):
1525 Doc fixes related to defaults no longer being nil.
1526 (make-backup-file-name-function): Bump :version.
1527 Restore nil as a valid but deprecated custom type.
1528
1529 2014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1530
1531 * progmodes/perl-mode.el (perl-syntax-propertize-function):
1532 Handle $' used as a variable (bug#17174).
1533
1534 * progmodes/perl-mode.el (perl-indent-new-calculate):
1535 Handle forward-sexp failure (bug#16985).
1536 (perl-syntax-propertize-function): Add "foreach" and "for" statement
1537 modifiers introducing expressions (bug#17116).
1538
1539 2014-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
1540
1541 * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
1542
1543 2014-04-05 Leo Liu <sdl.web@gmail.com>
1544
1545 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
1546 Add define-compilation-mode.
1547
1548 2014-04-04 João Távora <joaotavora@gmail.com>
1549
1550 * elec-pair.el (electric-pair--syntax-ppss): When inside comments
1551 parse from comment beginning.
1552 (electric-pair--balance-info): Fix typo in comment.
1553 (electric-pair--in-unterminated-string-p): Delete.
1554 (electric-pair--unbalanced-strings-p): New function.
1555 (electric-pair-string-bound-function): New var.
1556 (electric-pair-inhibit-if-helps-balance): Decide quote pairing
1557 according to `electric-pair--in-unterminated-string-p'.
1558
1559 2014-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1560
1561 * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
1562 Move declaration before first use.
1563 (reftex-move-to-next-arg): Silence compiler warning.
1564
1565 2014-04-04 Joost Kremers <joostkremers@fastmail.fm> (tiny change)
1566
1567 * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
1568 Use `window-total-width' instead of `window-width'.
1569
1570 2014-04-03 Daniel Colascione <dancol@dancol.org>
1571
1572 * subr.el (set-transient-map): Remove rms's workaround entirely;
1573 use new `suspicious-object' subr to mark our lambda for closer
1574 scrutiny during gc.
1575
1576 2014-04-02 Richard Stallman <rms@gnu.org>
1577
1578 * subr.el (set-transient-map): Comment out previous change.
1579
1580 2014-04-02 Glenn Morris <rgm@gnu.org>
1581
1582 * menu-bar.el (menu-bar-file-menu):
1583 * vc/ediff.el (ediff-current-file):
1584 Update for revert-buffer-function no longer being nil by default.
1585
1586 * simple.el (command-execute): Respect nil disabled-command-function.
1587
1588 2014-04-02 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1589
1590 * simple.el (command-execute): Do not execute the command when it
1591 is disabled; fixes thinko in 2013-02-20 conversion from C. (Bug#17151)
1592
1593 2014-04-02 Juri Linkov <juri@jurta.org>
1594
1595 * dired-aux.el (dired-compress-file): Don't use string-match-p
1596 because its match data is used afterwards.
1597
1598 2014-04-02 Stefan Monnier <monnier@iro.umontreal.ca>
1599
1600 * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
1601 0 like nil.
1602
1603 2014-04-02 João Távora <joaotavora@gmail.com>
1604
1605 * elec-pair.el (electric-pair-inhibit-if-helps-balance):
1606 Inhibit quote pairing if point-max is inside an unterminated string.
1607 (electric-pair--looking-at-unterminated-string-p):
1608 Delete.
1609 (electric-pair--in-unterminated-string-p): New function.
1610
1611 2014-04-01 Daniel Colascione <dancol@dancol.org>
1612
1613 * minibuffer.el (minibuffer-complete): Prevent assertion failure
1614 when trying to complete the prompt.
1615
1616 2014-03-31 Leo Liu <sdl.web@gmail.com>
1617
1618 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1619 Refactor out eldoc-documentation-function-default.
1620 (eldoc-documentation-function-default): New function.
1621 (eldoc-documentation-function): Change value.
1622
1623 2014-03-31 Glenn Morris <rgm@gnu.org>
1624
1625 * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
1626
1627 * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
1628 (vhdl-compose-components-package, vhdl-compose-configuration):
1629 Abbreviate default-directory (missing from some previous upstream sync).
1630
1631 2014-03-31 Reto Zimmermann <reto@gnu.org>
1632
1633 Sync with upstream vhdl mode v3.35.2.
1634 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
1635 (top-level): No longer require assoc.
1636 (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
1637 New functions. Use throughout to replace aget etc.
1638 (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
1639 (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
1640 (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
1641 (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
1642 (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
1643 except `vhdl-compiler'.
1644 (vhdl-error-regexp-add-emacs): Remove all other compilers,
1645 when appropriate.
1646
1647 2014-03-31 Glenn Morris <rgm@gnu.org>
1648
1649 * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
1650 Revert 2014-03-26 merge goof; go back to using defalias.
1651
1652 2014-03-30 Daniel Colascione <dancol@dancol.org>
1653
1654 * comint.el (comint-send-input):
1655 Deactivate completion-in-region-mode before we send comint input.
1656 (Bug#17139).
1657
1658 * simple.el (keyboard-quit): Deactivate completion-in-region-mode
1659 on keyboard-quit.
1660
1661 2014-03-29 Glenn Morris <rgm@gnu.org>
1662
1663 * textmodes/reftex.el: Manage most autoloads automatically.
1664 * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
1665 * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
1666 * textmodes/reftex-index.el, textmodes/reftex-parse.el:
1667 * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
1668 * textmodes/reftex-toc.el: Set generated-autoload-file,
1669 and add autoload cookies for reftex.el.
1670 * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
1671
1672 2014-03-28 Glenn Morris <rgm@gnu.org>
1673
1674 * cus-start.el (report-emacs-bug-address): Set custom properties.
1675 * mail/emacsbug.el (report-emacs-bug-address):
1676 Variable is now defined in emacs.c.
1677
1678 * mail/emacsbug.el (report-emacs-bug):
1679 Include system-configuration-features.
1680
1681 2014-03-28 Michal Nazarewicz <mina86@mina86.com>
1682
1683 * simple.el (cycle-spacing): Never delete spaces on first run by
1684 default, but do so in a new 'fast mode and if there are already
1685 N spaces (the previous behavior).
1686 Compare N with its value in previous invocation so that changing
1687 prefix argument restarts `cycle-spacing' sequence.
1688 The idea is that with this change, binding M-SPC to
1689 `cycle-spacing' should not introduce any changes in behavior of
1690 the binding so long as users do not type M-SPC twice in a raw with
1691 the same prefix argument or lack thereof.
1692
1693 2014-03-28 Glenn Morris <rgm@gnu.org>
1694
1695 * faces.el (term-file-aliases): New variable.
1696 (tty-run-terminal-initialization): Respect term-file-aliases.
1697 * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
1698 * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
1699 * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
1700
1701 2014-03-27 Glenn Morris <rgm@gnu.org>
1702
1703 * startup.el (inhibit-startup-hooks): Doc tweak.
1704 (normal-top-level): Simplify running of hooks.
1705 For window-setup-hook, respect inhibit-startup-hooks.
1706 (command-line-1): Don't set window-setup-hook to nil.
1707
1708 Allow selective autoloading from obsolete/ directory.
1709 * Makefile.in (obsolete-autoloads): New rule.
1710 (autoloads): Run obsolete-autoloads.
1711 * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
1712 * simple.el (iswitchb-mode): Remove hand-written autoloads.
1713
1714 2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
1715
1716 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
1717 Highlight special globals with font-lock-builtin-face. (Bug#17057)
1718
1719 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
1720 Don't propertize `?' or `!' as symbol constituent when after
1721 colon. (Bug#17097)
1722
1723 2014-03-27 Juanma Barranquero <lekktu@gmail.com>
1724
1725 * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
1726 which is no longer needed and causes trouble in GTK builds (bug#17046).
1727
1728 * emacs-lisp/package-x.el (package--archive-contents-from-url):
1729 Use url-insert-file-contents; package-handle-response no longer exists.
1730
1731 2014-03-26 Daniel Colascione <dancol@dancol.org>
1732
1733 * simple.el (process-menu-mode-map): New variable.
1734 (process-menu-delete-process): New command.
1735
1736 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
1737
1738 * emacs-lisp/package.el: Fix bug#16733 (again).
1739 (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
1740 (url-http-target-url): Remove unused declarations.
1741 (package-handle-response): Remove.
1742 (package--with-work-buffer): Use url-insert-file-contents and simplify.
1743 (package--download-one-archive): Use current-buffer instead of
1744 dynamic binding of `buffer'.
1745 (describe-package-1): Do not decode readme-string.
1746
1747 2014-03-26 Michael Albinus <michael.albinus@gmx.de>
1748
1749 * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
1750
1751 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
1752 from 2014-03-07, it decreases performance unnecessarily. Let-bind
1753 `remote-file-name-inhibit-cache' to nil in the second pass.
1754 (tramp-find-executable): Do not call "which" on SunOS.
1755 (tramp-send-command-and-check): Fix docstring.
1756 (tramp-do-copy-or-rename-file-directly): In the `rename' case,
1757 check whether source directory has set the sticky bit.
1758
1759 2014-03-26 Barry O'Reilly <gundaetiapo@gmail.com>
1760
1761 * simple.el (primitive-undo): Only process marker adjustments
1762 validated against their corresponding (TEXT . POS). Issue warning
1763 for lone marker adjustments in undo history. (Bug#16818)
1764 (undo-make-selective-list): Add marker adjustments to selective
1765 undo list based on whether their corresponding (TEXT . POS) is in
1766 the region. Remove variable adjusted-markers, which was unused
1767 and only non nil during undo-make-selective-list.
1768 (undo-elt-in-region): Return nil when passed a marker adjustment
1769 and explain in function doc.
1770
1771 2014-03-26 Nicolas Richard <theonewiththeevillook@yahoo.fr>
1772
1773 * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
1774
1775 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
1776
1777 * progmodes/ruby-mode.el (ruby-expression-expansion-re):
1778 Match special global variables without curlies, too.
1779 (ruby-font-lock-keywords): Simplify the matcher for special global
1780 variables. Don't require a non-word character after the variable.
1781 (Bug#17057)
1782
1783 2014-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
1784
1785 * simple.el (redisplay-highlight-region-function): Increase priority of
1786 overlay to make sure boundaries are visible (bug#15899).
1787
1788 2014-03-26 Juanma Barranquero <lekktu@gmail.com>
1789
1790 * frameset.el (frameset--initial-params): Fix typo in parameter name.
1791 (frameset-restore): Compare display strings with equal.
1792
1793 * frame.el (make-frame): Don't quote display name in error message,
1794 it is already a string.
1795
1796 2014-03-26 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1797
1798 * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
1799 the password.
1800
1801 2014-03-26 Dmitry Gutov <dgutov@yandex.ru>
1802
1803 * emacs-lisp/package.el (package--add-to-archive-contents):
1804 Include already installed and built-in packages in
1805 `package-archive-contents'.
1806 (package-install): Don't include already installed packages in the
1807 options during interactive invocation. (Bug#16762)
1808 (package-show-package-list): If the buffer is already displayed in
1809 another window, switch to that window.
1810
1811 2014-03-26 Reto Zimmermann <reto@gnu.org>
1812
1813 Sync with upstream vhdl mode v3.35.1.
1814 * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
1815 (vhdl-compiler-alist): Doc fix.
1816 (vhdl-goto-line): Remove.
1817 (vhdl-mode-abbrev-table-init): Add XEmacs compat.
1818 (vhdl-mode) <paragraph-start>: Fix value.
1819 (vhdl-fix-statement-region): Not `for' in wait-statement.
1820 (vhdl-beautify-region): Also (un)tabify.
1821 (vhdl-get-visible-signals):
1822 Scan declarative part of generate statements.
1823 (vhdl-template-record): Fix indentation for record type declaration.
1824 (vhdl-expand-abbrev, vhdl-expand-paren):
1825 Revert to using fset again rather than defalias.
1826 (vhdl-scan-directory-contents): Tweak.
1827 (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
1828 (vhdl-compose-components-package):
1829 Replace vhdl-goto-line with forward-line.
1830 (top-level): Tweak speedbar frame selection.
1831 (vhdl-generate-makefile-1): Support for compilers with no
1832 unit-to-file name mapping (create directory with dummy files).
1833
1834 2014-03-26 Wilson Snyder <wsnyder@wsnyder.org>
1835
1836 Sync with upstream verilog-mode revision 702457d.
1837 * progmodes/verilog-mode.el (verilog-mode-version): Update.
1838 (create-lockfiles): Declare.
1839 (verilog-read-decls): Fix module header imports, bug709.
1840 Reported by Victor Lau.
1841 Fix parsing 'var' in AUTOs, msg1294. Reported by Dominique Chen.
1842 (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
1843 interface-only modules, bug721. Reported by Dean Hoyt.
1844
1845 2014-03-26 Glenn Morris <rgm@gnu.org>
1846
1847 * obsolete/gulp.el: Move here from emacs-lisp/.
1848
1849 * files.el (lock-buffer, unlock-buffer, file-locked-p):
1850 Remove fallback aliases, since they are always defined now.
1851
1852 2014-03-24 Daniel Colascione <dancol@dancol.org>
1853
1854 * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
1855 instead of cl-loop search function.
1856
1857 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
1858
1859 * calendar/parse-time.el (parse-time-iso8601-regexp)
1860 (parse-iso8601-time-string): Copied from `url-dav' so that we can use
1861 it more generally.
1862
1863 2014-03-23 Lars Ingebrigtsen <larsi@gnus.org>
1864
1865 * net/dns.el (network-interface-list): Define for XEmacs.
1866
1867 2014-03-23 Magnus Henoch <magnus.henoch@gmail.com>
1868
1869 * net/dns.el (dns-servers-up-to-date-p): New function to see whether
1870 the network interfaces changed.
1871 (dns-query): Use it to flush the data.
1872
1873 2014-03-23 Juanma Barranquero <lekktu@gmail.com>
1874
1875 * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
1876
1877 2014-03-23 Daniel Colascione <dancol@dancol.org>
1878
1879 Change subword-mode to use `find-word-boundary-function-table' and
1880 replace `capitalized-words-mode'. Also, convert to lexical
1881 binding.
1882
1883 * progmodes/cap-words.el: Delete now-obsolete file.
1884 * progmodes/subword.el: Reimplement using
1885 `find-word-boundary-function-table'.
1886 (subword-mode-map): Hollow out.
1887 (capitalized-words-mode): Define as obsolete alias for
1888 `subword-mode'.
1889 (subword-mode, superword-mode): Tweak documentation to reflect new
1890 implementation; call `subword-setup-buffer'.
1891 (subword-forward, subword-capitalize): Add underscore to indicate
1892 unused variable.
1893 (subword-find-word-boundary-function-table): New constant.
1894 (subword-empty-char-table): New constant.
1895 (subword-setup-buffer): New function.
1896 (subword-find-word-boundary): New function.
1897
1898 2014-03-23 Daniel Colascione <dancol@dancol.org>
1899
1900 * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
1901 list to look for keyword arguments instead of `memq', fixing
1902 (Bug#3647) --- unfortunately, only for freshly-compiled code.
1903 Please make bootstrap.
1904
1905 2014-03-22 Glenn Morris <rgm@gnu.org>
1906
1907 * dired.el (dired-read-regexp): Make obsolete.
1908 (dired-mark-files-regexp, dired-mark-files-containing-regexp)
1909 (dired-flag-files-regexp):
1910 * dired-aux.el (dired-mark-read-regexp):
1911 * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
1912
1913 * startup.el (fancy-startup-text):
1914 * help.el (describe-gnu-project): Visit online info about GNU project.
1915
1916 * help-fns.el (help-fns--interactive-only): New function.
1917 (help-fns-describe-function-functions): Add the above function.
1918 * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
1919 (next-line, previous-line): Remove hand-written interactive-only
1920 information from doc strings, it is auto-generated now.
1921 * bookmark.el (bookmark-write):
1922 * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
1923 (epa-mail-import-keys): Mark interactive-only,
1924 and remove hand-written interactive-only information from doc strings.
1925 * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
1926 (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
1927 * files.el (not-modified):
1928 * simple.el (mark-whole-buffer): Mark interactive-only.
1929
1930 * emacs-lisp/byte-run.el (defun-declarations-alist):
1931 Add interactive-only. Doc tweak.
1932 (macro-declarations-alist): Doc tweak.
1933 * subr.el (declare): Doc tweak (add xref to manual).
1934 * comint.el (comint-run):
1935 * files.el (insert-file-literally, insert-file):
1936 * replace.el (replace-string, replace-regexp):
1937 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
1938 (delete-forward-char, goto-line, insert-buffer, next-line)
1939 (previous-line): Set interactive-only via declare.
1940
1941 2014-03-22 Dmitry Gutov <dgutov@yandex.ru>
1942
1943 * emacs-lisp/package.el (package-desc): Use the contents of the
1944 quoted form, not its cdr. (Bug#16873)
1945
1946 2014-03-22 Juanma Barranquero <lekktu@gmail.com>
1947
1948 * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
1949 benefit of doc.c; change parameter profile to match the X function.
1950
1951 2014-03-22 Leo Liu <sdl.web@gmail.com>
1952
1953 * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
1954 (temp-buffer-show-hook): Remove help-mode-finish. (Bug#16038)
1955
1956 2014-03-21 Richard Stallman <rms@gnu.org>
1957
1958 * battery.el (battery-linux-sysfs): Search for each field
1959 from the beginning of the buffer.
1960
1961 * subr.el (set-transient-map): Clear out function and value
1962 of the temporary symbol when we're done with it.
1963
1964 * mail/rmailsum.el (rmail-summary-delete-forward):
1965 Optimize case of reaching end and handling count.
1966 (rmail-summary-mark-deleted): Optimize when N is current msg.
1967 Don't create new summary line.
1968 (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
1969 (rmail-summary-undelete-many): Rewrite for speed.
1970 (rmail-summary-msg-number): New function.
1971
1972 * mail/rmail.el (rmail-delete-message): Update summary.
1973 (rmail-undelete-previous-message): Handle repeat count arg.
1974 (rmail-delete-backward, rmail-delete-forward): Likewise.
1975
1976 2014-03-21 Daniel Colascione <dancol@dancol.org>
1977
1978 * mail/emacsbug.el (report-emacs-bug): Include memory usage
1979 information in bug reports.
1980
1981 2014-03-21 Michael Albinus <michael.albinus@gmx.de>
1982
1983 * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
1984 and `tramp-copy-env'.
1985
1986 * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
1987 (tramp-maybe-open-connection): Handle `tramp-login-env'.
1988
1989 2014-03-21 Glenn Morris <rgm@gnu.org>
1990
1991 * electric.el (electric-indent-post-self-insert-function): Add doc.
1992
1993 2014-03-21 Dmitry Gutov <dgutov@yandex.ru>
1994
1995 * emacs-lisp/package.el (package-compute-transaction):
1996 Use `version-list-<=' to compare the requirement version against
1997 the version of package already to be installed. Update the error
1998 message. (Bug#16826)
1999
2000 * progmodes/ruby-mode.el (ruby-smie-rules):
2001 Add indentation rule for ` @ '. (Bug#17050)
2002
2003 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2004
2005 * align.el (align-regexp): Remove superfluous backslash.
2006
2007 * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
2008 (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
2009 (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
2010 Fix docstring typos.
2011 (ffap-next): Use C-u in docstring.
2012 (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
2013 (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
2014 Remove superfluous backslashes.
2015 (ffap-string-at-point): Reflow docstring.
2016
2017 * server.el (server-host): Reflow docstring.
2018 (server-unload-function): Fix docstring typo.
2019 (server-eval-at): Remove superfluous backslash.
2020
2021 * skeleton.el (skeleton-insert): Remove superfluous backslash.
2022 (skeleton-insert): Doc fix.
2023 (skeleton-insert): Reflow docstring.
2024
2025 * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
2026 (tty-color-approximate, tty-color-by-index, tty-color-values)
2027 (tty-color-desc): Remove superfluous backslashes.
2028
2029 2014-03-21 Glenn Morris <rgm@gnu.org>
2030
2031 * cus-start.el (history-length): Bump :version.
2032
2033 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
2034 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2035 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2036 Don't set `make-backup-files'.
2037
2038 * info.el (info--prettify-description): New function,
2039 to give info-finder descriptions consistent case, punctuation.
2040 (Info-finder-find-node): Use it. Sort packages.
2041 Refer to "description" rather than "commentary".
2042
2043 2014-03-21 Juanma Barranquero <lekktu@gmail.com>
2044
2045 * frameset.el (frameset--print-register): New function.
2046 (frameset-to-register): Use it.
2047
2048 2014-03-20 Juanma Barranquero <lekktu@gmail.com>
2049
2050 * progmodes/hideif.el (hif-string-to-number): New function.
2051 (hif-tokenize): Use it to understand non-decimal floats.
2052
2053 * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
2054
2055 * skeleton.el (skeleton-autowrap): Mark as obsolete. Doc fix.
2056
2057 2014-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2058
2059 * electric.el (electric-newline-and-maybe-indent): New command.
2060 Bind it globally to C-j.
2061 (electric-indent-mode): Don't mess with the global map any more.
2062 Don't drop the post-self-insert-hook is some buffer is still using it
2063 (bug#16770).
2064
2065 * bindings.el (global-map): Remove C-j binding.
2066
2067 * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
2068 the docstring of functions advised before dumping (bug#16993).
2069
2070 2014-03-19 Stefan-W. Hahn <stefan.hahn@s-hahn.de> (tiny change)
2071
2072 * ps-print.el (ps-generate-postscript-with-faces):
2073 Explicitly deactivate the mark (bug#16866).
2074 * simple.el (deactivate-mark): Update region highlight.
2075
2076 2014-03-19 Juanma Barranquero <lekktu@gmail.com>
2077
2078 * emacs-lisp/package.el (describe-package-1):
2079 Decode commentary (bug#16733).
2080
2081 2014-03-18 Juanma Barranquero <lekktu@gmail.com>
2082
2083 * custom.el (defcustom): Doc fix: recommend avoiding destructive
2084 modification of the value argument of :set (bug#16755).
2085
2086 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
2087
2088 * simple.el (newline-and-indent): Do autofill (bug#17031).
2089
2090 2014-03-18 Dmitry Gutov <dgutov@yandex.ru>
2091
2092 * newcomment.el (comment-normalize-vars): Only add escaping check
2093 to `comment-start-skip' if not `comment-use-syntax'. (Bug#16971)
2094 (comment-beginning): Use `narrow-to-region' instead of moving back
2095 one character.
2096 (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
2097 (comment-start-skip): Update the docstring.
2098
2099 2014-03-18 Richard Stallman <rms@gnu.org>
2100
2101 * dired.el (dired-display-file): Force use of other window.
2102
2103 2014-03-18 Daniel Colascione <dancol@dancol.org>
2104
2105 * startup.el (tty-handle-args): Remove debug message from 2007.
2106
2107 2014-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2108
2109 * emacs-lisp/nadvice.el (advice--interactive-form): New function.
2110 (advice--make-interactive-form): Use it to avoid (auto)loading function.
2111 (advice--make-1, advice-add, advice-remove):
2112 Remove braindead :advice-pending hack.
2113
2114 2014-03-17 Glenn Morris <rgm@gnu.org>
2115
2116 * calendar/calendar.el (calendar-generate-month): Apply weekend
2117 face to the right days; fixes 2013-08-06 change. (Bug#17028)
2118
2119 2014-03-17 Michael Albinus <michael.albinus@gmx.de>
2120
2121 * net/tramp.el (tramp-action-out-of-band): Read pending output.
2122 (tramp-call-process): Trace also DESTINATION.
2123
2124 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2125 Quote file names when they are local. Remove superfluous trace.
2126
2127 2014-03-17 Dmitry Gutov <dgutov@yandex.ru>
2128
2129 * newcomment.el (comment-beginning): If `comment-start-skip'
2130 doesn't match, move back one char and try again. (Bug#16971)
2131
2132 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2133 Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
2134 Set `comment-start-skip' to a simpler value that doesn't try to
2135 check if the semicolon is escaped (this is handled by
2136 `syntax-ppss' now). (Bug#16971)
2137
2138 * progmodes/scheme.el (scheme-mode-variables): Same.
2139
2140 2014-03-16 Martin Rudalics <rudalics@gmx.at>
2141
2142 Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
2143 * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
2144 current (Bug#16816, Bug#17007).
2145 (with-current-buffer-window): New macro doing the same as
2146 `with-temp-buffer-window' but with BUFFER-OR-NAME current.
2147 * help.el (help-print-return-message): Warn in doc-string to not
2148 use this in `with-help-window'.
2149 (describe-bindings-internal): Call `describe-buffer-bindings'
2150 from within help buffer. See Juanma's scenario in (Bug#16816).
2151 (with-help-window): Update doc-string.
2152 * dired.el (dired-mark-pop-up):
2153 * files.el (save-buffers-kill-emacs):
2154 * register.el (register-preview): Use `with-current-buffer-window'
2155 instead of `with-temp-buffer-window'.
2156
2157 2014-03-16 Juanma Barranquero <lekktu@gmail.com>
2158
2159 * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
2160 Implement inserting into current buffer, documented in their docstrings.
2161 (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
2162 (rst-section-tree-point, rst-forward-section, rst-indent)
2163 (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
2164 (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
2165 (rst-font-lock-handle-adornment-pre-match-form)
2166 (rst-repeat-last-character): Reflow docstrings.
2167 (rst-preferred-adornments, rst-update-section, rst-find-title-line)
2168 (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
2169 (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
2170 (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
2171 Fix docstring typos.
2172 (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
2173 (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
2174 (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
2175
2176 2014-03-15 Juanma Barranquero <lekktu@gmail.com>
2177
2178 * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
2179 for compatibility with other ports.
2180 (ns-initialize-window-system): Use it. It is set in term/common-win.el
2181 from the -xrm command line argument, but in the Nextstep port its value
2182 is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
2183
2184 * progmodes/python.el (defconst, python-syntax-count-quotes)
2185 (python-indent-region, python-indent-shift-right)
2186 (python-indent-dedent-line-backspace, python-nav-backward-sexp)
2187 (python-nav-backward-sexp-safe, python-nav-backward-up-list)
2188 (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
2189 (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
2190 (inferior-python-mode, python-shell-make-comint, run-python-internal)
2191 (python-shell-buffer-substring, python-shell-send-buffer)
2192 (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
2193 (python-completion-complete-at-point, python-fill-docstring-style)
2194 (python-eldoc-function, python-imenu-format-item-label)
2195 (python-imenu-format-parent-item-label)
2196 (python-imenu-format-parent-item-jump-label)
2197 (python-imenu--build-tree, python-imenu-create-index)
2198 (python-imenu-create-flat-index): Fix docstring typos.
2199 (python-indent-context, python-shell-prompt-regexp, run-python):
2200 Remove superfluous backslashes.
2201 (python-indent-line, python-nav-beginning-of-defun)
2202 (python-shell-get-buffer, python-shell-get-process)
2203 (python-info-current-defun, python-info-current-line-comment-p)
2204 (python-info-current-line-empty-p, python-util-popn): Doc fixes.
2205 (python-indent-post-self-insert-function, python-shell-send-file)
2206 (python-shell-completion-get-completions)
2207 (python-shell-completion-complete-or-indent)
2208 (python-eldoc--get-doc-at-point): Reflow docstrings.
2209
2210 2014-03-14 Glenn Morris <rgm@gnu.org>
2211
2212 * emacs-lisp/package.el (package-menu-mode-map):
2213 Replace use of obsolete function alias. Tweak menu item text.
2214
2215 * info.el (Info-finder-find-node):
2216 Ignore the `emacs' metapackage. (Bug#10813)
2217
2218 * finder.el (finder-list-matches): Include unversioned packages
2219 in the result of a keyword search.
2220
2221 * finder.el (finder--builtins-descriptions): New constant.
2222 (finder-compile-keywords): Use finder--builtins-descriptions.
2223
2224 2014-03-14 Dmitry Gutov <dgutov@yandex.ru>
2225
2226 * simple.el (blink-matching-paren): Describe the new value,
2227 `jump', enabling the old behavior.
2228 (blink-matching-open): Use that value. (Bug#17008)
2229
2230 2014-03-14 Glenn Morris <rgm@gnu.org>
2231
2232 * finder.el (finder-no-scan-regexp): Add leim-list.
2233 (finder-compile-keywords):
2234 Don't skip files with same basename. (Bug#14010)
2235 * Makefile.in (setwins_finder): New, excluding leim.
2236 (finder-data): Use setwins_finder.
2237
2238 * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
2239 (help-function-arglist, help-make-usage): Move from here...
2240 * help.el (help-split-fundoc, help-add-fundoc-usage)
2241 (help-function-arglist, help-make-usage): ... to here. (Bug#17001)
2242 * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
2243
2244 2014-03-14 Juanma Barranquero <lekktu@gmail.com>
2245
2246 * net/socks.el (socks, socks-override-functions)
2247 (socks-find-services-entry):
2248 * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
2249 (hif-find-ifdef-block):
2250 * progmodes/modula2.el (m2-indent): Fix docstring typos.
2251
2252 * net/tls.el (tls-program): Reflow docstring.
2253
2254 * progmodes/pascal.el (pascal-mode-abbrev-table)
2255 (pascal-imenu-generic-expression, pascal-auto-endcomments)
2256 (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
2257 (pascal-outline-mode): Fix docstring typos.
2258 (pascal-mode): Let define-derived-mode document mode hook.
2259 (pascal-uncomment-area): Reflow.
2260 (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
2261
2262 * progmodes/opascal.el (opascal-compound-block-indent)
2263 (opascal-case-label-indent): Fix docstring typos.
2264 (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
2265
2266 2014-03-13 Dmitry Gutov <dgutov@yandex.ru>
2267
2268 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2269 Fontify multiple adjacent negation chars. (Bug#17004)
2270
2271 2014-03-13 Tom Willemse <tom@ryuslash.org> (tiny change)
2272
2273 * emacs-lisp/package.el (package--prepare-dependencies):
2274 Accept requirements without explicit version (bug#14941).
2275
2276 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2277
2278 * register.el (register-separator, copy-to-register): Doc fixes.
2279 (register-preview-default): Remove unnecessary call to concat.
2280
2281 * frameset.el (frameset-restore): When checking for a visible frame,
2282 use the action map instead of calling visible-frame-list.
2283
2284 2014-03-12 Jonas Bernoulli <jonas@bernoul.li>
2285
2286 * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
2287
2288 2014-03-12 Martin Rudalics <rudalics@gmx.at>
2289
2290 * window.el (fit-frame-to-buffer): Get maximum width from
2291 display's width instead of height.
2292
2293 2014-03-12 Glenn Morris <rgm@gnu.org>
2294
2295 * desktop.el (desktop-restore-frames)
2296 (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
2297 (desktop-restore-reuses-frames): Doc tweaks.
2298
2299 * electric.el (electric-indent-mode): Doc fix.
2300
2301 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2302
2303 * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
2304 (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
2305 (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
2306 (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
2307 (cvs-dired-use-hook): Fix docstring typos.
2308 (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
2309 Doc fixes.
2310
2311 * vc/pcvs-defs.el (cvs-auto-remove-handled)
2312 (cvs-auto-remove-directories, cvs-default-ignore-marks)
2313 (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
2314 (cvs-execute-single-dir): Fix docstring typos.
2315
2316 * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
2317 (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
2318
2319 * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
2320
2321 * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
2322 Fix docstring typos.
2323
2324 2014-03-12 Juanma Barranquero <lekktu@gmail.com>
2325
2326 * frameset.el (frameset--jump-to-register): Add autoload; it could be
2327 called from jump-to-register after unloading the frameset package.
2328
2329 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2330
2331 * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
2332 (bug#16975). Deactivate the mark before setting it to nil.
2333 (activate-mark): Do nothing if region is already active.
2334
2335 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
2336
2337 * frameset.el (frameset--target-display): Remove definition; declare.
2338 (frameset-save, frameset-restore): Let-bind frameset--target-display.
2339
2340 2014-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2341
2342 * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
2343 (advice-add): Add a :advice--pending marker, so advice--make-1 knows
2344 when the advice is pending.
2345 (advice-remove): Remove this marker when not needed any more.
2346
2347 2014-03-11 Juanma Barranquero <lekktu@gmail.com>
2348
2349 * frameset.el: Separate options for reusing frames and cleaning up.
2350 (frameset--reuse-list): Remove definition; declare.
2351 (frameset--action-map): Declare.
2352 (frameset--find-frame-if): Doc fix.
2353 (frameset--restore-frame): Cache frame action.
2354 (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
2355 how to clean up the frame list after restoring. Remove cleaning
2356 options from REUSE-FRAMES. Change all keyword values to symbols.
2357 (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
2358
2359 * desktop.el (desktop-restore-forces-onscreen)
2360 (desktop-restore-reuses-frames): Use non-keyword values.
2361 (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
2362
2363 2014-03-10 Glenn Morris <rgm@gnu.org>
2364
2365 * files.el (find-file): Doc fix: update info node name.
2366
2367 * emacs-lisp/advice.el (ad-add-advice, defadvice):
2368 Doc fix: remove references to deleted info nodes.
2369
2370 2014-03-10 Michael Albinus <michael.albinus@gmx.de>
2371
2372 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
2373 Do not add `nil' to the environment, when there's no remote `locale'.
2374 (tramp-find-inline-encoding): Check, that the remote host has
2375 installed perl, before sending scripts.
2376
2377 2014-03-10 Leo Liu <sdl.web@gmail.com>
2378
2379 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
2380 Clear eldoc-last-message. (Bug#16920)
2381
2382 2014-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2383
2384 * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
2385 (bug#14430).
2386
2387 2014-03-09 Juri Linkov <juri@jurta.org>
2388
2389 * ansi-color.el (ansi-color-names-vector): Copy default colors
2390 from `xterm-standard-colors' that look well on the default white
2391 background (and also on the black background) to avoid illegible
2392 color combinations like yellow-on-white and white-on-white.
2393 http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
2394
2395 2014-03-08 Juanma Barranquero <lekktu@gmail.com>
2396
2397 * frameset.el (frameset-restore): When no frame is visible, do not
2398 generate a list of frames, just make visible the selected one.
2399
2400 2014-03-08 Dmitry Gutov <dgutov@yandex.ru>
2401
2402 * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
2403 it only contains the repository root. (Bug#16897)
2404
2405 2014-03-07 Michael Albinus <michael.albinus@gmx.de>
2406
2407 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
2408 only when `remote-file-name-inhibit-cache' is nil.
2409 (tramp-sh-file-name-handler): Use `tramp-error'. Simplify code.
2410
2411 2014-03-06 Martin Rudalics <rudalics@gmx.at>
2412
2413 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
2414 Fix doc-strings.
2415 (fit-frame-to-buffer): New argument ONLY. Remove dependency on
2416 fit-frame-to-buffer variable. Fix doc-string.
2417 (fit-window-to-buffer): Set ONLY argument in call of
2418 fit-frame-to-buffer. Fix doc-string.
2419
2420 2014-03-06 Michael Albinus <michael.albinus@gmx.de>
2421
2422 * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
2423 (tramp-action-password): Clear password cache if needed.
2424 (tramp-read-passwd): Do not clear password cache.
2425
2426 * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
2427 cache unless it is the first password request.
2428
2429 2014-03-06 Glenn Morris <rgm@gnu.org>
2430
2431 * simple.el (newline): Doc tweak.
2432
2433 * emacs-lisp/shadow.el (load-path-shadows-find):
2434 Ignore dir-locals. (Bug#12357)
2435
2436 2014-03-05 Glenn Morris <rgm@gnu.org>
2437
2438 * files.el (interpreter-mode-alist):
2439 * progmodes/sh-script.el (sh-ancestor-alist): Add dash. (Bug#16938)
2440
2441 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
2442
2443 * frameset.el (frameset--initial-params): Filter out null entries.
2444
2445 2014-03-05 Martin Rudalics <rudalics@gmx.at>
2446
2447 * window.el (window-min-height, window-min-width):
2448 Rewrite doc-strings.
2449 (window-body-size): Add PIXELWISE argument to make it consistent
2450 with its callees.
2451
2452 2014-03-05 Juanma Barranquero <lekktu@gmail.com>
2453
2454 * finder.el (finder-mode-map, finder-mode-syntax-table):
2455 Revert part of 2014-02-28 change.
2456
2457 2014-03-05 Lars Ingebrigtsen <larsi@gnus.org>
2458
2459 * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
2460 (eww-setup-buffer): Clear next/prev/etc more reliably.
2461 (eww-textarea-map): [tab] doesn't work on tty.
2462 Reported by Mario Lang.
2463
2464 * net/shr.el (shr-map): Ditto.
2465
2466 2014-03-04 Glenn Morris <rgm@gnu.org>
2467
2468 * minibuffer.el (completion-hilit-commonality):
2469 Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
2470
2471 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
2472
2473 * hilit-chg.el (hilit-chg-unload-function): New function.
2474 (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
2475 (hilit-chg-map-changes): Prefer cardinal number to digit.
2476 (hilit-chg-display-changes): Reflow docstring.
2477 (highlight-changes-rotate-faces): Remove superfluous backslash.
2478
2479 2014-03-04 Michael Albinus <michael.albinus@gmx.de>
2480
2481 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
2482 `tramp-send-command-and-check'.
2483
2484 2014-03-04 Juanma Barranquero <lekktu@gmail.com>
2485
2486 * hexl.el (hexl-address-region, hexl-ascii-region)
2487 (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
2488 (hexl-backward-short, hexl-forward-short, hexl-backward-word)
2489 (hexl-forward-word, hexl-previous-line, hexl-next-line):
2490 Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
2491 (hexl-mode): Doc fix.
2492 (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
2493 (hexl-mode-ruler): Fix typos in docstrings.
2494
2495 * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
2496 (strokes-character, strokes-get-grid-position, strokes-list-strokes):
2497 Remove superfluous backslashes.
2498 (strokes-last-stroke, strokes-global-map, strokes-mode):
2499 Reflow docstrings.
2500 (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
2501 (strokes-xpm-for-compressed-string): Use quotes with buffer name.
2502 (strokes-distance-squared, strokes-global-set-stroke)
2503 (strokes-global-set-stroke-string): Doc fixes.
2504 (strokes-help): Fix typos; reflow docstring.
2505
2506 2014-03-04 Martin Rudalics <rudalics@gmx.at>
2507
2508 * window.el (window-in-direction): Fix doc-string.
2509
2510 2014-03-04 Glenn Morris <rgm@gnu.org>
2511
2512 * emacs-lisp/smie.el (smie-config-guess): Doc fix.
2513 Explicit error if no grammar.
2514 (smie-config-save): Doc fix. Fix quote typo.
2515
2516 2014-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
2517
2518 * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
2519 electric-indent-mode-hook if we obey electric-indent-mode.
2520 (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
2521 decide whether we obey electric-indent-mode.
2522 (c-change-set-fl-decl-start, c-extend-after-change-region):
2523 Silence warnings.
2524 (c-electric-indent-mode-hook): Assume we do want to obey
2525 electric-indent-mode.
2526
2527 * electric.el (electric-indent-mode-has-been-called): Remove.
2528 (electric-indent-mode): Fix accordingly.
2529
2530 * files.el (hack-local-variables): Mention file name in warning.
2531
2532 * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
2533
2534 2014-03-04 Michal Nazarewicz <mina86@mina86.com>
2535
2536 * bindings.el: Add comment describing why C-d binds to `delete-char'.
2537 * simple.el (delete-forward-char): Mark as interactive-only.
2538
2539 2014-03-03 Juanma Barranquero <lekktu@gmail.com>
2540
2541 * icomplete.el (icomplete-completions):
2542 Follow-up to 2014-03-01 change.
2543
2544 * icomplete.el: Miscellaneous doc fixes.
2545 Use Icomplete everywhere instead of icomplete for consistency.
2546 (icomplete-max-delay-chars): Fix typo.
2547 (icomplete-mode): Use \[].
2548 (icomplete-tidy, icomplete-exhibit): Reflow.
2549 (icomplete-minibuffer-setup-hook, icomplete-completions):
2550 Remove superfluous backlashes.
2551
2552 * ido.el: Miscellaneous doc fixes.
2553 Use Ido everywhere instead of ido or `ido' for consistency.
2554 (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
2555 (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
2556 (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
2557 (ido-separator): Extract obsolescence info from docstring and declare
2558 with make-obsolete-variable.
2559 (ido-minibuffer-setup-hook): Simplify example.
2560 (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
2561 (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
2562 (ido-completion-help, ido-completing-read): Fix typos in docstrings.
2563 (ido-everywhere): Reflow docstring.
2564 (ido-toggle-vc): Doc fix.
2565 (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
2566 of long list of keybindings.
2567
2568 2014-03-03 Glenn Morris <rgm@gnu.org>
2569
2570 * frame.el (display-pixel-height, display-pixel-width)
2571 (display-mm-dimensions-alist, display-mm-height)
2572 (display-mm-width): Doc tweaks.
2573
2574 2014-03-02 Barry O'Reilly <gundaetiapo@gmail.com>
2575
2576 * simple.el (undo-elt-in-region): Fix buffer corruption for edge
2577 case of undo in region.
2578
2579 2014-03-02 Martin Rudalics <rudalics@gmx.at>
2580
2581 * window.el (fit-window-to-buffer): Fix argument in window-size
2582 call when window is horizontally combined.
2583
2584 2014-03-02 Juanma Barranquero <lekktu@gmail.com>
2585
2586 * icomplete.el (icomplete-completions): Use string-width.
2587 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2588
2589 2014-03-01 Dmitry Gutov <dgutov@yandex.ru>
2590
2591 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2592 Highlight regexp options. (Bug#16914)
2593
2594 2014-03-01 Martin Rudalics <rudalics@gmx.at>
2595
2596 * window.el (window--max-delta-1): Round down when calculating
2597 how many lines/columns we can get from a window.
2598
2599 2014-03-01 Glenn Morris <rgm@gnu.org>
2600
2601 * isearch.el (search-invisible): Doc fix.
2602
2603 * minibuffer.el (completion-hilit-commonality):
2604 Make `base-size' argument optional. Short-cut if `prefix-len' is 0.
2605 * comint.el (comint-dynamic-list-completions): Doc fix.
2606 * comint.el (comint-dynamic-list-completions):
2607 * filecache.el (file-cache-minibuffer-complete):
2608 * tempo.el (tempo-display-completions):
2609 * eshell/em-hist.el (eshell-list-history):
2610 Replace use of obsolete argument of display-completion-list.
2611
2612 2014-03-01 Juanma Barranquero <lekktu@gmail.com>
2613
2614 * icomplete.el (icomplete-completions):
2615 Revert back to using "..." when ?… cannot be displayed.
2616
2617 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
2618
2619 * finder.el (finder-unload-function): New function.
2620
2621 2014-02-28 Juanma Barranquero <lekktu@gmail.com>
2622
2623 * dframe.el (dframe-detach):
2624 * find-dired.el (find-dired, find-name-dired):
2625 * finder.el (finder-mode-map, finder-mode-syntax-table)
2626 (finder-headmark, finder-select, finder-mouse-select):
2627 Fix docstring typos.
2628
2629 2014-02-28 Martin Rudalics <rudalics@gmx.at>
2630
2631 Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
2632 * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
2633 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
2634 Fix doc-string based on a suggestion by Nicolas Richard
2635 <theonewiththeevillook@yahoo.fr>.
2636 * help.el (with-help-window): Fix doc-string.
2637
2638 2014-02-28 Ivan Kanis <ivan@kanis.fr>
2639
2640 * net/shr.el (shr-image-animate): New option.
2641 (shr-put-image): Respect shr-image-animate.
2642
2643 2014-02-28 Michael Albinus <michael.albinus@gmx.de>
2644
2645 * net/tramp-adb.el (tramp-adb-parse-device-names):
2646 Use `accept-process-output'.
2647 (tramp-adb-handle-file-truename): Cache the localname only.
2648 (tramp-adb-handle-make-directory)
2649 (tramp-adb-handle-delete-directory): Flush file properties correctly.
2650 (tramp-adb-handle-set-file-modes): Do not raise an error when file
2651 modes cannot be changed.
2652
2653 * net/tramp-cache.el (tramp-flush-directory-property): Remove also
2654 file properties of symlinks.
2655
2656 2014-02-28 Per Starbäck <starback@stp.lingfil.uu.se>
2657
2658 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
2659 required/optional fields to match development biblatex. (Bug#16781)
2660
2661 2014-02-28 Andy Sawyer <andy.sawyer@gmail.com> (tiny change)
2662
2663 * saveplace.el (toggle-save-place):
2664 Fix argument handling. (Bug#16673)
2665
2666 2014-02-28 Glenn Morris <rgm@gnu.org>
2667
2668 * minibuffer.el (completions-first-difference)
2669 (completions-common-part, completion-hilit-commonality): Doc fixes.
2670
2671 2014-02-28 Karl Berry <karl@gnu.org>
2672
2673 * info.el (Info-mode-map): Add H for describe-mode,
2674 to synchronize with standalone Info.
2675
2676 2014-02-28 Emilio C. Lopes <eclig@gmx.net>
2677
2678 * progmodes/sql.el (sql-interactive-mode):
2679 Avoid setting global comint-input-ring-separator. (Bug#16814)
2680
2681 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
2682
2683 * net/dbus.el (dbus--init-bus): Declare function.
2684 (dbus-path-local, dbus-interface-local): New defconst.
2685 (dbus-init-bus): Use them.
2686 (dbus-return-values-table): Extend doc.
2687 (dbus-handle-bus-disconnect): Extend error message.
2688
2689 2014-02-27 Juanma Barranquero <lekktu@gmail.com>
2690
2691 * subr.el (y-or-n-p): Fix double space issue in message.
2692
2693 2014-02-27 Michael Albinus <michael.albinus@gmx.de>
2694
2695 * net/tramp.el (tramp-call-process): Improve trace message.
2696 (tramp-handle-insert-file-contents): Trace error case.
2697
2698 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
2699 <insert-directory>: Use `tramp-handle-insert-directory'.
2700 (tramp-adb-handle-insert-directory): Remove function.
2701 (tramp-adb-send-command-and-check): New defun, replacing
2702 `tramp-adb-command-exit-status'. Change all callees.
2703 (tramp-adb-handle-file-attributes)
2704 (tramp-adb-handle-directory-files-and-attributes): Use it.
2705 (tramp-adb-ls-output-name-less-p):
2706 Use `directory-listing-before-filename-regexp'.
2707 (tramp-adb-handle-delete-directory): Flush also file properties of
2708 the truename of directory.
2709 (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
2710 (tramp-adb-handle-file-local-copy): Make the local copy readable.
2711 (tramp-adb-handle-write-region): Implement APPEND.
2712 (tramp-adb-handle-rename-file): Make it more robust. Flush file
2713 properties correctly.
2714 (tramp-adb-maybe-open-connection): Set `tramp-current-*'
2715 variables. Check for connected devices only when needed.
2716
2717 2014-02-27 Glenn Morris <rgm@gnu.org>
2718
2719 * minibuffer.el (completion-table-dynamic)
2720 (completion-table-with-cache): Doc fixes.
2721
2722 * emacs-lisp/crm.el (crm-default-separator, crm-separator)
2723 (completing-read-multiple): Doc fixes.
2724
2725 2014-02-27 Daniel Colascione <dancol@dancol.org>
2726
2727 * minibuffer.el (completion--nth-completion): Fix indentation.
2728
2729 * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
2730 explicit tramp path is empty.
2731
2732 2014-02-27 Glenn Morris <rgm@gnu.org>
2733
2734 * emacs-lisp/crm.el (completing-read-multiple):
2735 Empower help-enable-auto-load.
2736
2737 2014-02-26 Glenn Morris <rgm@gnu.org>
2738
2739 * startup.el (command-line): Don't init the tty in daemon mode.
2740
2741 Avoid calling tty-setup-hook twice, eg if a term file
2742 explicitly calls tty-run-terminal-initialization. (Bug#16859)
2743 * faces.el (tty-run-terminal-initialization): Add run-hook argument.
2744 (tty-create-frame-with-faces): Use it.
2745 * startup.el (command-line): Pass run-hook argument
2746 to tty-run-terminal-initialization.
2747
2748 * dired.el (dired-restore-desktop-buffer): Demote errors;
2749 eg in case a glob match fails. (Bug#16884)
2750
2751 2014-02-26 Dmitry Gutov <dgutov@yandex.ru>
2752
2753 * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
2754 error from `read-from-string'. (Bug#16850)
2755
2756 * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
2757 result of `completing-read' in the interactive form. (Bug#16854)
2758
2759 2014-02-25 Glenn Morris <rgm@gnu.org>
2760
2761 * image.el (image-animate, image-animate-timeout):
2762 Stop animating images in dead buffers. (Bug#16878)
2763
2764 * emacs-lisp/edebug.el (defmacro): Fix debug spec. (Bug#16868)
2765
2766 * faces.el (tty-setup-hook, tty-run-terminal-initialization):
2767 Doc fixes.
2768 * startup.el (term-setup-hook): Doc fix. Make obsolete.
2769 * term/sun.el (sun-raw-prefix-hooks):
2770 Use tty-setup-hook instead of term-setup-hook.
2771 (terminal-init-sun): Construct message from bytecomp plist.
2772 * term/wyse50.el (enable-arrow-keys): Doc fix.
2773
2774 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
2775
2776 * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
2777 Fix docstring typos.
2778
2779 2014-02-24 Michael Albinus <michael.albinus@gmx.de>
2780
2781 * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
2782
2783 2014-02-24 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2784
2785 * minibuffer.el (completion--try-word-completion):
2786 Fix error when completing M-x commands (bug#16808).
2787
2788 2014-02-24 Leo Liu <sdl.web@gmail.com>
2789
2790 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
2791
2792 2014-02-24 Juanma Barranquero <lekktu@gmail.com>
2793
2794 * apropos.el (apropos-print): Avoid formatting error when
2795 apropos-do-all and apropos-compact-layout are both t.
2796
2797 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
2798
2799 * apropos.el (apropos-property, apropos-all-words-regexp)
2800 (apropos-true-hit, apropos-variable, apropos-print):
2801 Fix docstring typos, and remove obsolete comment.
2802
2803 2014-02-23 Michael Albinus <michael.albinus@gmx.de>
2804
2805 * net/tramp-sh.el (tramp-sh-handle-file-truename):
2806 Preserve trailing "/". (Bug#16851)
2807
2808 2014-02-23 Dmitry Gutov <dgutov@yandex.ru>
2809
2810 * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
2811 after `=>' (bug#16811).
2812 (ruby-smie-rules): Handle the inconsistent second element of the
2813 list returned by `smie-indent--parent'.
2814 (ruby-font-lock-keywords): Disqualify any identifier before `=' as
2815 method call.
2816
2817 2014-02-23 Juanma Barranquero <lekktu@gmail.com>
2818
2819 * elec-pair.el (electric-pair-text-syntax-table)
2820 (electric-pair-syntax-info, electric-pair--syntax-ppss)
2821 (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
2822 (electric-pair--looking-at-unterminated-string-p): Doc fix.
2823 (electric-pair--inside-string-p): Doc fix. Use `let', not `let*'.
2824
2825 2014-02-22 Glenn Morris <rgm@gnu.org>
2826
2827 * imenu.el (imenu--generic-function): Doc fix.
2828
2829 * register.el (frame-configuration-to-register): Make obsolete.
2830
2831 2014-02-22 Juanma Barranquero <lekktu@gmail.com>
2832
2833 * desktop.el (desktop-save-buffer-p): Do not fail when
2834 desktop-files-not-to-save is nil. Return t for true result
2835 as the doc says.
2836
2837 2014-02-22 Daniel Colascione <dancol@dancol.org>
2838
2839 * net/secrets.el (secrets-create-item, secrets-search-items):
2840 Check that attribute values are strings, avoiding the construction
2841 of invalid dbus messages.
2842
2843 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2844
2845 * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
2846 defun-declarations-alist.
2847
2848 2014-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
2849
2850 * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
2851 (bug#16829).
2852
2853 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2854
2855 * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
2856 (whitespace-newline, whitespace-trailing, whitespace-line)
2857 (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
2858 (whitespace-space-after-tab): Fix typo in docstrings.
2859
2860 2014-02-21 Dmitry Gutov <dgutov@yandex.ru>
2861
2862 * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
2863
2864 * electric.el (electric-indent-functions-without-reindent):
2865 Add `yaml-indent-line'.
2866
2867 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2868
2869 * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
2870 It has done nothing for years; should be removed after the release.
2871
2872 * simple.el (choose-completion): Fix docstring typo.
2873 (read-quoted-char-radix): Remove unneeded * in docstring.
2874 (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
2875 Don't escape parentheses unnecessarily in docstrings.
2876
2877 2014-02-21 Martin Rudalics <rudalics@gmx.at>
2878
2879 Fix handling of window-min-height/-width (Bug#16738).
2880 * window.el (window--dump-window, window--dump-frame):
2881 New functions.
2882 (window--min-size-1): Account for window dividers.
2883 When window-resize-pixelwise is nil, delay rounding till after the
2884 sum of the window components has been calculated.
2885 (window--min-delta-1, window--max-delta-1): When PIXELWISE is
2886 nil make sure at least one text line and two text columns remain
2887 fully visible.
2888 (window-resize): Signal an error when window-resize-apply fails.
2889 (window--resize-child-windows): Fix calculation of by how many
2890 pixels a window can still be shrunk via window-new-normal.
2891 (adjust-window-trailing-edge): Call window--resizable with
2892 correct TRAIL argument.
2893
2894 (with-temp-buffer-window): Don't evaluate BODY within
2895 with-current-buffer (Bug#16816).
2896
2897 2014-02-21 Michael Albinus <michael.albinus@gmx.de>
2898
2899 * net/tramp.el (tramp-check-cached-permissions):
2900 Call `file-attributes' with `suffix' being a symbol but a string.
2901
2902 2014-02-21 Daniel Colascione <dancol@dancol.org>
2903
2904 * net/dbus.el (dbus-init-bus-1): Declare new subr.
2905 (dbus-init-bus): New function: call into dbus-init-bus-1
2906 and installs a handler for the disconnect signal.
2907 (dbus-call-method): Rewrite to look for result in cons.
2908 (dbus-call-method-handler): Store result in cons.
2909 (dbus-check-event): Recognize events with nil sender as valid.
2910 (dbus-handle-bus-disconnect): New function. React to bus
2911 disconnection signal by synthesizing dbus error for each
2912 pending synchronous or asynchronous call.
2913 (dbus-notice-synchronous-call-errors): New function.
2914 (dbus-handle-event): Raise errors directly only when `dbus-debug'
2915 is true, not all the time.
2916
2917 2014-02-21 Juanma Barranquero <lekktu@gmail.com>
2918
2919 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
2920 Remove obsolescence declarations, these variables do not exist anymore.
2921
2922 * savehist.el (savehist-save-minibuffer-history)
2923 (savehist-additional-variables, savehist-file, savehist-mode-hook)
2924 (savehist-save-hook, savehist-coding-system, savehist-loaded)
2925 (savehist-load, savehist-install, savehist-autosave): Fix typos;
2926 mostly, refer to "Savehist mode" when talking about the mode,
2927 and not the function.
2928
2929 * saveplace.el (save-place): Remove redundant info in docstring.
2930 (save-place-forget-unreadable-files, toggle-save-place)
2931 (save-place-forget-unreadable-files, save-place-dired-hook):
2932 Fix typos and remove unneeded backslashes.
2933
2934 2014-02-20 Michael Albinus <michael.albinus@gmx.de>
2935
2936 * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
2937 (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
2938
2939 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2940 <insert-directory>: Use `tramp-handle-insert-directory'.
2941 (tramp-gvfs-handle-insert-directory): Remove function.
2942
2943 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
2944 Call `tramp-handle-insert-directory'.
2945
2946 2014-02-20 Juanma Barranquero <lekktu@gmail.com>
2947
2948 * elec-pair.el (electric-pair-syntax-info): Do not check syntax
2949 before the start of buffer/region (bug#16799).
2950
2951 2014-02-20 Glenn Morris <rgm@gnu.org>
2952
2953 * isearch.el (search-invisible): Doc fix.
2954
2955 2014-02-20 W. Trevor King <wking@tremily.us> (tiny change)
2956
2957 * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
2958 (bug#16657).
2959
2960 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
2961
2962 * frameset.el (frameset-restore): Delay removing an old frame's
2963 duplicate id until the new frame has been correctly created.
2964
2965 2014-02-19 Michael Albinus <michael.albinus@gmx.de>
2966
2967 * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
2968 (tramp-check-cached-permissions): Call `file-attributes' if the
2969 cache is empty.
2970
2971 * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
2972 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
2973
2974 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2975 <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
2976 (tramp-gvfs-maybe-open-connection): Set always connection
2977 properties, even if target is mounted already.
2978
2979 * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
2980 Set tramp-autoload cookie.
2981 (tramp-get-remote-touch): New defun.
2982 (tramp-sh-handle-set-file-times): Use it.
2983 (tramp-sh-handle-directory-files-and-attributes):
2984 Use `tramp-handle-directory-files-and-attributes' if neither stat
2985 nor perl are available on the remote host.
2986
2987 * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
2988 "/". Write long listing only when "l" belongs to the switches.
2989
2990 * net/trampver.el: Update release number.
2991
2992 2014-02-19 Juanma Barranquero <lekktu@gmail.com>
2993
2994 * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
2995
2996 2014-02-19 Martin Rudalics <rudalics@gmx.at>
2997
2998 * window.el (window-state-put): Allow WINDOW to refer to an
2999 internal window (Bug#16793).
3000
3001 2014-02-19 Glenn Morris <rgm@gnu.org>
3002
3003 * textmodes/remember.el: Move provide statement to end.
3004 (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
3005 (remember-notes): Doc fixes.
3006
3007 2014-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
3008
3009 * delsel.el (delete-char): Restore incorrectly erased property
3010 (bug#16795).
3011
3012 2014-02-18 Juanma Barranquero <lekktu@gmail.com>
3013
3014 * frameset.el (frameset--restore-frame): When a frame is being reused
3015 and its root window is not alive, delete all the frame's windows before
3016 restoring the window state. This works around the issue in bug#16793.
3017
3018 2014-02-18 Glenn Morris <rgm@gnu.org>
3019
3020 * textmodes/remember.el (remember-data-directory)
3021 (remember-directory-file-name-format, remember-store-in-files)
3022 (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
3023 (remember-notes-save-and-bury-buffer)
3024 (remember-notes--kill-buffer-query): Doc fixes.
3025
3026 * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
3027
3028 2014-02-17 Alan Mackenzie <acm@muc.de>
3029
3030 Connect electric-indent-mode up with CC Mode. Bug #15478.
3031 * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
3032 to electric-indent-{,local-}-mode.
3033 (c-basic-common-init): Set electric-indent-inhibit.
3034 Initialise c-electric-flag from electric-indent-mode.
3035 (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
3036 New hook functions which propagate electric-indent-mode to CC mode.
3037
3038 * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
3039 hit, toggle electric-indent-local-mode.
3040
3041 * electric.el (electric-indent-mode-has-been-called):
3042 New variable.
3043
3044 2014-02-17 Juanma Barranquero <lekktu@gmail.com>
3045
3046 * frameset.el (frameset-cfg-id): New function.
3047 (frameset--reuse-frame, frameset-restore): Use it.
3048 (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
3049
3050 2014-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
3051
3052 * ido.el (ido-file-internal): Remove unused var `d'.
3053 Use \` for to match BoS. Fit within 80n columns.
3054
3055 2014-02-17 Daniel Colascione <dancol@dancol.org>
3056
3057 * net/dbus.el (dbus-call-method): Work around bug#16775 by having
3058 dbus-call-method check for completion using a busy-wait loop with
3059 gradual backoff.
3060
3061 2014-02-16 Michael Albinus <michael.albinus@gmx.de>
3062
3063 Sync with Tramp 2.2.9.
3064
3065 * net/trampver.el: Update release number.
3066
3067 2014-02-16 Dmitry Gutov <dgutov@yandex.ru>
3068
3069 * ido.el (ido-file-internal): Don't add the name of an existing
3070 directory twice. (Bug#16747)
3071
3072 2014-02-16 Glenn Morris <rgm@gnu.org>
3073
3074 * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
3075 Do not use ediff-defvar-local on pre-defined variables. (Bug#16744)
3076
3077 2014-02-15 Michael R. Mauger <michael@mauger.com>
3078
3079 * progmodes/sql.el: Version 3.4
3080 (sql-oracle-options): New default value ("-L").
3081 (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
3082 (sql-placeholders-filter): Correct placeholder pattern.
3083 (sql-read-table-name): Bug fix. Detect absence of SQLi process.
3084 (sql-login-delay): New variable.
3085 (sql-product-interactive): Use it.
3086
3087 2014-02-15 Juanma Barranquero <lekktu@gmail.com>
3088
3089 * frameset.el (frameset--jump-to-register): Check that buffer is live
3090 (bug#16749).
3091
3092 2014-02-15 Glenn Morris <rgm@gnu.org>
3093
3094 * info.el (info-initialize): Revert 2014-01-10 change.
3095
3096 2014-02-14 Glenn Morris <rgm@gnu.org>
3097
3098 * replace.el (map-query-replace-regexp)
3099 (read-regexp-defaults-function, read-regexp): Doc fixes.
3100
3101 * dired.el (dired-read-regexp):
3102 * faces.el (list-faces-display):
3103 * misearch.el (multi-isearch-read-matching-buffers)
3104 (multi-isearch-read-matching-files):
3105 * play/cookie1.el (cookie-apropos):
3106 * progmodes/grep.el (grep-read-regexp): Doc fixes.
3107
3108 * textmodes/remember.el (remember): Use frameset-to-register
3109 rather than frame-configuration-to-register.
3110
3111 2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
3112
3113 * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
3114 incorrect keybinding.
3115
3116 2014-02-13 Daniel Colascione <dancol@dancol.org>
3117
3118 * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
3119 when adding overlays so that line numbers from compiler match line
3120 numbers we use.
3121
3122 2014-02-13 Glenn Morris <rgm@gnu.org>
3123
3124 * mail/rmail.el (rmail-probe): Be less strict. (Bug#16743)
3125
3126 * jit-lock.el (jit-lock-mode): Doc fix.
3127
3128 2014-02-13 Juanma Barranquero <lekktu@gmail.com>
3129
3130 * apropos.el (apropos-read-pattern): When the user passes an empty
3131 string, give a more helpful error message than "Wrong type
3132 argument: stringp, nil".
3133
3134 2014-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
3135
3136 * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
3137
3138 2014-02-13 Glenn Morris <rgm@gnu.org>
3139
3140 * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
3141
3142 2014-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
3143
3144 * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
3145 shift-select commands.
3146
3147 2014-02-12 Dmitry Gutov <dgutov@yandex.ru>
3148
3149 * progmodes/js.el (js-indent-line): Don't widen.
3150 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
3151
3152 2014-02-12 Glenn Morris <rgm@gnu.org>
3153
3154 * icomplete.el (icomplete): Add info-link to defgroup.
3155 (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
3156 (icomplete-minibuffer-map, icomplete-mode)
3157 (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
3158
3159 * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
3160 (package-menu-filter): Rename from package-menu-filter-interactive.
3161 Doc fix.
3162
3163 2014-02-11 Juanma Barranquero <lekktu@gmail.com>
3164
3165 * frameset.el (frameset--jump-to-register): Select the required
3166 window and buffer before restoring position (bug#16696).
3167
3168 2014-02-11 Lars Ingebrigtsen <larsi@gnus.org>
3169
3170 * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
3171
3172 2014-02-10 Glenn Morris <rgm@gnu.org>
3173
3174 * jit-lock.el (jit-lock-force-redisplay): Doc fix. (Bug#14394)
3175
3176 2014-02-10 Eli Zaretskii <eliz@gnu.org>
3177
3178 * w32-common-fns.el (x-get-selection): Doc fix.
3179 * select.el (x-get-selection): Doc fix. (Bug#15109)
3180
3181 * face-remap.el (face-remap-add-relative)
3182 (face-remap-remove-relative, face-remap-reset-base)
3183 (face-remap-set-base): Call force-mode-line-update to redisplay
3184 the current buffer due to potential change in faces. (Bug#16709)
3185
3186 2014-02-10 Michael Albinus <michael.albinus@gmx.de>
3187
3188 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
3189 script more robustly.
3190
3191 2014-02-10 Lars Ingebrigtsen <larsi@gnus.org>
3192
3193 * dired.el (dired-get-marked-files): Doc fix (bug#11534).
3194
3195 * simple.el (choose-completion): Doc fix (bug#14160).
3196
3197 * subr.el (event-start): Say what a nil EVENT value means.
3198
3199 * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
3200 (bug#14197).
3201
3202 * progmodes/grep.el (find-program): Doc fix (bug#14289).
3203
3204 * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
3205
3206 * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
3207
3208 * files.el (confirm-kill-emacs): Allow specifying an arbitrary
3209 predicate function (bug#15455).
3210
3211 2014-02-10 Dmitry Gutov <dgutov@yandex.ru>
3212
3213 * ielm.el (inferior-emacs-lisp-mode): Instead of
3214 `comment-use-global-state', set `comment-use-syntax'.
3215
3216 2014-02-10 Glenn Morris <rgm@gnu.org>
3217
3218 * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
3219
3220 2014-02-09 Alan Mackenzie <acm@muc.de>
3221
3222 Fix c-invalidate-state-cache on narrowed buffers.
3223 * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
3224 Widen when setting and clearing the CPP delimiter properties.
3225
3226 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
3227
3228 * help.el (describe-bindings): Doc fix (bug#9888).
3229
3230 * files.el (save-buffer): Use ARG as the parameter name for
3231 consistency (bug#10346).
3232 (save-buffer): Clarify the 0 argument (bug#10346).
3233
3234 * cus-edit.el (customize-apropos): Fix error string.
3235 (custom-buffer-create): Doc fix (bug#11122).
3236 (custom-sort-items): Doc fix (bug#11121).
3237
3238 * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
3239
3240 * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
3241 (icomplete-simple-completing-p): Mention the previous variable.
3242
3243 * font-lock.el (font-lock-value-in-major-mode): Clarify the
3244 meaning of the parameter (bug#12282).
3245
3246 * files.el (find-file-noselect): Clarify prompt when changing
3247 readedness (bug#13261).
3248 (locate-file): Suffixes aren't returned, so don't say that they
3249 are (bug#12674).
3250 (backup-inhibited): Doc clarification (bug#12525).
3251
3252 * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
3253 before we actually start to delete things (bug#16331).
3254
3255 * subr.el (event-start): Doc fix (bug#14228).
3256 (event-end): Ditto.
3257
3258 2014-02-09 Glenn Morris <rgm@gnu.org>
3259
3260 * emacs-lisp/warnings.el (lwarn):
3261 Empower help-enable-auto-load. (Bug#15940)
3262
3263 2014-02-08 Andreas Schwab <schwab@linux-m68k.org>
3264
3265 * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
3266 (Bug#16690)
3267
3268 2014-02-08 Michael Albinus <michael.albinus@gmx.de>
3269
3270 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3271 Insert output at end of buffer. (Bug#16120)
3272
3273 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
3274
3275 * simple.el (choose-completion-string-functions): Document new
3276 calling convention (bug#14153).
3277 (execute-extended-command): Clarify doc string (bug#13373).
3278
3279 * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
3280
3281 * find-dired.el (find-name-dired): Doc fix (bug#14290).
3282 (find-grep-dired): Doc fix (bug#14288).
3283
3284 2014-02-08 Juri Linkov <juri@jurta.org>
3285
3286 * isearch.el (isearch-quote-char): Check character validity
3287 like in `quoted-insert' (bug#16677).
3288
3289 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
3290
3291 * files.el (find-file-visit-truename): Doc clarification (bug#14697).
3292
3293 * isearch.el (isearch-hide-immediately): Doc clarification
3294 (bug#14723).
3295
3296 * simple.el (line-move): Document utility function used many
3297 places in the Emacs sources (bug#14843).
3298
3299 * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
3300 (dired-prev-marked-file): Doc fix (bug#14855).
3301 (dired-up-directory): Doc fix (bug#14848).
3302
3303 * minibuffer.el (read-file-name): Doc clarification (bug#15096).
3304
3305 * files.el (file-relative-name): Doc fix (bug#15159).
3306
3307 * fringe.el (fringe-styles): Doc fix (bug#15239).
3308
3309 * isearch.el (isearch-filter-predicate): Documentation typo fix
3310 (bug#15474).
3311
3312 * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
3313
3314 * isearch.el (isearch-cmds): Doc clarification (bug#15547).
3315
3316 * replace.el (replace-match-maybe-edit): Doc clarification
3317 (bug#15632).
3318
3319 * subr.el (add-to-list): Refill the paragraphs (bug#15791).
3320
3321 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
3322
3323 2014-02-08 Glenn Morris <rgm@gnu.org>
3324
3325 * help-fns.el (describe-variable):
3326 Check {file,dir}-local-variables-alist, and buffer-file-name,
3327 in the correct buffer.
3328
3329 2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
3330
3331 * help-fns.el (describe-variable): Fix the case where
3332 a value is directory-local with no dir-locals file. (Bug#16635)
3333
3334 2014-02-08 Glenn Morris <rgm@gnu.org>
3335
3336 * abbrev.el (edit-abbrevs-mode):
3337 Derive from fundamental-mode. (Bug#16682)
3338
3339 2014-02-07 Juanma Barranquero <lekktu@gmail.com>
3340
3341 * simple.el (quoted-insert): Check character validity (bug#16677).
3342
3343 2014-02-07 Juri Linkov <juri@jurta.org>
3344
3345 * desktop.el (desktop-read): Claim the lock when the owner is not
3346 the current process. (Bug#16157)
3347
3348 2014-02-07 Juri Linkov <juri@jurta.org>
3349
3350 * desktop.el (desktop-buffers-not-to-save): Change default from nil
3351 to "\\` ". (Bug#16651)
3352
3353 2014-02-07 Juri Linkov <juri@jurta.org>
3354
3355 * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
3356 when enabling, and `desktop-auto-save-cancel-timer' when disabling.
3357 (desktop-auto-save-cancel-timer): New function with some code from
3358 `desktop-auto-save-set-timer'.
3359 (after-init-hook): Don't call `desktop-auto-save-set-timer'.
3360 Instead of setting `desktop-save-mode' to nil, call
3361 `desktop-save-mode' with arg 0. (Bug#16630)
3362
3363 2014-02-07 Glenn Morris <rgm@gnu.org>
3364
3365 * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
3366 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
3367 (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
3368
3369 * obsolete/iswitchb.el: Move to obsolete/.
3370 * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
3371 since obsolete/ is not scanned for autoloads.
3372 * emacs-lisp/authors.el (authors-valid-file-names):
3373 Add iswitchb.el.
3374
3375 * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
3376 Disable now non-functional find-file-hook.
3377
3378 2014-02-06 Michael Albinus <michael.albinus@gmx.de>
3379
3380 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
3381 instead of ";" in order to avoid additional prompts. Let heredoc
3382 scripts read from tty. (Bug#16582)
3383 (tramp-send-command): No special handling of heredocs, it isn't
3384 necessary anymore.
3385
3386 2014-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
3387
3388 * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
3389 with a space (bug#16664). Limit the symbols considered to the ones
3390 that are bound or fbound (bug#16646).
3391
3392 2014-02-06 Glenn Morris <rgm@gnu.org>
3393
3394 * epa.el (epa-mail-aliases): Doc fix.
3395
3396 2014-02-06 Dmitry Gutov <dgutov@yandex.ru>
3397
3398 * emacs-lisp/lisp.el (lisp-completion-at-point):
3399 Use `completion-table-merge' instead of `completion-table-in-turn'
3400 (bug#16604).
3401
3402 * minibuffer.el (completion-table-merge): New function.
3403
3404 2014-02-05 Michael Albinus <michael.albinus@gmx.de>
3405
3406 * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
3407 (tramp-sh-handle-set-file-acl)
3408 (tramp-sh-handle-start-file-process)
3409 (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
3410 (tramp-find-executable, tramp-send-command): Use it.
3411
3412 2014-02-05 Glenn Morris <rgm@gnu.org>
3413
3414 * epa.el (epa-mail-aliases): Fix custom type. Doc tweak.
3415
3416 2014-02-04 Fabián Ezequiel Gallina <fgallina@gnu.org>
3417
3418 * progmodes/python.el (python-shell-send-string)
3419 (python-shell-send-string-no-output): Fix docstring (Bug#16547).
3420
3421 2014-02-04 Anders Lindgren <andlind@gmail.com>
3422
3423 * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
3424 the names (bug#16620).
3425
3426 2014-02-03 Martin Rudalics <rudalics@gmx.at>
3427
3428 * faces.el (window-divider): New default value. Rewrite doc-string.
3429 (window-divider-first-pixel, window-divider-last-pixel): New faces.
3430
3431 2014-02-03 Dmitry Gutov <dgutov@yandex.ru>
3432
3433 * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
3434 `protected' and `public' can also be called without arguments.
3435
3436 2014-02-03 Glenn Morris <rgm@gnu.org>
3437
3438 * register.el (window-configuration-to-register)
3439 (frame-configuration-to-register): Unadvertise unused argument.
3440 * frameset.el (frameset-to-register): Remove unused argument.
3441
3442 * frameset.el (frameset-to-register):
3443 * kmacro.el (kmacro-to-register):
3444 * register.el (increment-register):
3445 * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
3446 (calc-append-to-register, calc-prepend-to-register):
3447 * play/gametree.el (gametree-layout-to-register)
3448 (gametree-apply-register-layout):
3449 * textmodes/picture.el (picture-clear-rectangle-to-register)
3450 (picture-yank-rectangle-from-register):
3451 * vc/emerge.el (emerge-combine-versions-register):
3452 Use register-read-with-preview to read registers.
3453
3454 2014-02-03 João Távora <joaotavora@gmail.com>
3455
3456 * elec-pair.el (electric-pair-backward-delete-char): Don't error
3457 when at beginning of (possibly narrowed) buffer.
3458
3459 2014-02-02 Daniel Colascione <dancol@dancol.org>
3460
3461 * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
3462 Also try to display local help from just before point.
3463
3464 2014-02-02 Alan Mackenzie <bug-cc-mode@gnu.org>
3465
3466 c-parse-state. Don't "append-lower-brace-pair" in certain
3467 circumstances. Also fix an obscure bug where "\\s!" shouldn't be
3468 recognised as a comment.
3469
3470 * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
3471 as well as normal comment starter.
3472 (c-parse-state-get-strategy): Extra return possibility
3473 'back-and-forward.
3474 (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
3475 return value list to indicate replacement of a brace-pair cons
3476 with its car.
3477 (c-parse-state-1): With 'back-and-forward, only call
3478 c-append-lower-brace-pair-to state-cache when cons-separated.
3479
3480 2014-02-02 Jan Djärv <jan.h.d@swipnet.se>
3481
3482 * term/ns-win.el (ns-suspend-error): New function.
3483 (ns-initialize-window-system): Add ns-suspend-error to
3484 suspend-hook (Bug#16612).
3485
3486 2014-02-02 Daniel Colascione <dancol@dancol.org>
3487
3488 * progmodes/cc-defs.el (c-find-assignment-for-mode):
3489 Make loading cc-mode silent.
3490
3491 2014-02-02 Daniel Colascione <dancol@dancol.org>
3492
3493 * comint.el (comint-prompt-read-only): Change doc to suggest
3494 remap keybinding.
3495
3496 2014-02-02 Glenn Morris <rgm@gnu.org>
3497
3498 * register.el (register-read-with-preview, point-to-register)
3499 (window-configuration-to-register, frame-configuration-to-register)
3500 (jump-to-register, number-to-register, view-register, insert-register)
3501 (copy-to-register, append-to-register, prepend-to-register)
3502 (copy-rectangle-to-register): Doc fixes.
3503
3504 2014-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
3505
3506 * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
3507 * emacs-lisp/find-func.el (find-function-C-source): Idem.
3508 * emacs-lisp/nadvice.el (advice--cd*r): New function.
3509 * help-fns.el (describe-function-1): Use it.
3510
3511 2014-02-02 Glenn Morris <rgm@gnu.org>
3512
3513 * register.el (register-preview-default): New function,
3514 split from register-preview.
3515 (register-preview-function): Rename from register-preview-functions,
3516 make it not a hook.
3517 (register-preview): Use register-preview-function.
3518 (register-read-with-preview): Error on non-character event. (Bug#16595)
3519
3520 2014-02-01 Dmitry Gutov <dgutov@yandex.ru>
3521
3522 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
3523 `:' before binary operators (bug#16609). Don't check for `:'
3524 before `[' and `(', or their syntax status. A percent literal
3525 can't end with either.
3526 (ruby-font-lock-keywords): For built-ins that require arguments,
3527 check that they're followed by something that looks like argument
3528 (bug#16610).
3529
3530 2014-02-01 Lars Ingebrigtsen <larsi@gnus.org>
3531
3532 * subr.el (butlast): Document what an omitted N means (bug#13437).
3533 (nbutlast): Ditto.
3534
3535 2014-01-31 Lars Ingebrigtsen <larsi@gnus.org>
3536
3537 * net/shr.el (shr-generic): Make into a defsubst to make the stack
3538 depth shallower (bug#16587).
3539 (shr-tag-svg): Respect `shr-inhibit-images'.
3540 (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
3541
3542 2014-01-31 Dmitry Gutov <dgutov@yandex.ru>
3543
3544 * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
3545 (ruby-smie-grammar): Make "." right-associative. Make its priority
3546 lower than the ternary and all binary operators.
3547 (ruby-smie-rules): Indent "(" relative to the first non-"."
3548 parent, or the first "." parent at indentation.
3549 Use `ruby-align-chained-calls' for indentation of "." tokens.
3550 (Bug#16593)
3551
3552 2014-01-31 Juri Linkov <juri@jurta.org>
3553
3554 * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
3555 from `make-hash-table'.
3556
3557 * textmodes/ispell.el (ispell-init-process): Change message format
3558 to be consistent with other messages.
3559
3560 2014-01-31 Glenn Morris <rgm@gnu.org>
3561
3562 * delsel.el (delete-selection-mode): Doc fix.
3563
3564 * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
3565 (trace-function-background): Doc fixes.
3566
3567 * ido.el (ido-use-virtual-buffers): Doc fix.
3568 Reset :version, since the default value has not changed.
3569
3570 * register.el (register-preview-delay, register-read-with-preview):
3571 Doc fixes.
3572
3573 * mail/reporter.el (reporter-dump-variable): In case of void-variable,
3574 do not mess with mail-buffer position (fixes 2009-11-03 change).
3575 * progmodes/cc-mode.el (c-submit-bug-report):
3576 Check auto-fill-mode is bound. (Bug#16592)
3577
3578 2014-01-31 Darren Hoo <darren.hoo@gmail.com>
3579
3580 * startup.el (fancy-splash-image-file): New function,
3581 split from fancy-splash-head.
3582 (fancy-splash-head, use-fancy-splash-screens-p): Use it,
3583 so that we are both using the same image. (Bug#16574)
3584
3585 2014-01-30 Glenn Morris <rgm@gnu.org>
3586
3587 * simple.el (eval-expression): Doc fix.
3588
3589 * hexl.el (hexl-mode-hook):
3590 * ielm.el (ielm-mode-hook):
3591 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
3592 (lisp-interaction-mode-hook):
3593 * progmodes/cfengine.el (cfengine3-documentation-function):
3594 Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
3595
3596 2014-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
3597
3598 * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
3599 is a symbol (bug#16584).
3600
3601 2014-01-30 Glenn Morris <rgm@gnu.org>
3602
3603 * help.el (help-for-help-internal): Add "P" to text.
3604
3605 2014-01-29 Glenn Morris <rgm@gnu.org>
3606
3607 * simple.el (just-one-space, cycle-spacing): Doc fixes.
3608
3609 2014-01-28 Martin Rudalics <rudalics@gmx.at>
3610
3611 * window.el (fit-frame-to-buffer): Fix calculations for margins and
3612 height constraints.
3613
3614 2014-01-28 Luke Lee <luke.yx.lee@gmail.com>
3615
3616 * progmodes/hideif.el: Extend to full CPP expression syntax.
3617 (hif-token-alist): Add missing tokens.
3618 (hif-token-regexp): Add support for float/octal/hex immediates.
3619 (hif-string-literal-regexp): New const.
3620 (hif-tokenize): Recognize strings and float/octal/hex immediates.
3621 (hif-exprlist): New function.
3622 (hif-parse-if-exp): Use it.
3623 (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
3624 (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
3625 (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
3626 (hif-logxor, hif-comma): New functions.
3627
3628 2014-01-28 Glenn Morris <rgm@gnu.org>
3629
3630 * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
3631
3632 * indent.el (tab-stop-list): Doc fix. Add :version.
3633
3634 * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
3635 (cvs-append-to-ignore): Add compatibility alias.
3636
3637 2014-01-27 Glenn Morris <rgm@gnu.org>
3638
3639 * dired.el (dired-hide-details-mode): Don't autoload it,
3640 since it cannot be used outside Dired buffers anyway.
3641
3642 * emulation/cua-base.el (cua-mode): Doc fix.
3643
3644 * dired.el (dired-hide-details-hide-symlink-targets)
3645 (dired-hide-details-hide-information-lines)
3646 (dired-hide-details-mode): Doc fixes.
3647
3648 * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
3649 * strokes.el (strokes-file): Doc fix. Bump :version.
3650 (strokes-help): Doc fix.
3651 * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
3652 * emulation/viper.el (viper): Doc fix for custom group.
3653 (top-level): Remove oh-so-no-longer-relevant text about vip.
3654 * obsolete/otodo-mode.el (todo-prefix): Doc fix.
3655
3656 * ido.el (ido-save-directory-list-file):
3657 * saveplace.el (save-place-file):
3658 * calendar/timeclock.el (timeclock-file):
3659 * net/quickurl.el (quickurl-url-file):
3660 * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
3661 * progmodes/idlwave.el (idlwave-config-directory):
3662 * textmodes/remember.el (remember-data-file):
3663 Bump :version.
3664
3665 2014-01-26 Glenn Morris <rgm@gnu.org>
3666
3667 * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
3668 Doc fix. Make obsolete.
3669 (opascal-mode): No longer mention opascal-tab-always-indents in doc.
3670
3671 * sort.el (delete-duplicate-lines): Doc fix.
3672
3673 2014-01-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3674
3675 * progmodes/ada-mode.el (ada):
3676 * woman.el (woman): Link to info manual and Commentary section.
3677
3678 * progmodes/flymake.el (flymake):
3679 * nxml/nxml-mode.el (nxml):
3680 * net/eww.el (eww):
3681 * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
3682 * htmlfontify.el (htmlfontify):
3683 * ses.el (ses):
3684 * epa.el (epa):
3685 * ido.el (ido): Link to info manual.
3686
3687 2014-01-25 Leo Liu <sdl.web@gmail.com>
3688
3689 * progmodes/flymake.el (flymake-make-overlay): No rear advance.
3690
3691 2014-01-25 Adam Sjøgren <asjo@koldfront.dk>
3692
3693 * net/shr.el (shr-tag-img): Prefer the title over the alt text
3694 (bug#16537).
3695
3696 2014-01-24 Juanma Barranquero <lekktu@gmail.com>
3697
3698 * net/eww.el (eww-download-callback):
3699 Fix reference to eww-download-directory.
3700
3701 * emacs-lisp/bytecomp.el (byte-compile-file):
3702 Remove unused local variable `file-name'.
3703
3704 2014-01-24 Glenn Morris <rgm@gnu.org>
3705
3706 * woman.el (woman-default-faces, woman-monochrome-faces):
3707 Fix obsolescence specification.
3708
3709 * subr.el (with-demoted-errors): Doc fix.
3710
3711 2014-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
3712
3713 * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
3714 (cl--macroexp-fboundp): New function.
3715 (cl--make-type-test): Use it.
3716
3717 2014-01-23 Glenn Morris <rgm@gnu.org>
3718
3719 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
3720 * simple.el (eval-expression): Doc fixes.
3721
3722 2014-01-22 Glenn Morris <rgm@gnu.org>
3723
3724 * emacs-lisp/authors.el (authors-fixed-entries): Addition.
3725
3726 2014-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
3727
3728 * emacs-lisp/package.el: Write files silently.
3729 (package-autoload-ensure-default-file, package--write-file-no-coding)
3730 (package-generate-description-file, package--download-one-archive)
3731 (package-install-from-archive): Tell `write-region' to stay quiet.
3732 (package-menu-mode, package-menu--print-info): Omit the Archive column
3733 if there's only one archive.
3734 (package-all-keywords, package--has-keyword-p): Remove dead code.
3735
3736 2014-01-22 Glenn Morris <rgm@gnu.org>
3737
3738 * version.el (emacs-bzr-version-bzr): Fix typo.
3739
3740 * version.el (emacs-repository-get-version):
3741 Check either .bzr or .git, but not both.
3742 Make the git case actually use the DIR argument, and return nil
3743 rather than the empty string.
3744 Avoid error if .git exists but the git executable is not found.
3745
3746 2014-01-22 Martin Rudalics <rudalics@gmx.at>
3747
3748 Fixes in window size functions around Bug#16430 and Bug#16470.
3749 * window.el (window-total-size, window-size): New argument ROUND.
3750 (window--min-delta-1, window-min-delta, window--max-delta-1):
3751 Be more conservative when calculating the numbers of lines or
3752 columns a window can shrink (Bug#16430).
3753 (fit-window-to-buffer): Simplify code.
3754 * term.el (term-window-width): Call window-body-width again.
3755
3756 2014-01-22 Glenn Morris <rgm@gnu.org>
3757
3758 * image.el (image-format-suffixes): Doc fix.
3759
3760 * international/quail.el (quail-define-package): Doc fix.
3761
3762 * emacs-lisp/authors.el (authors-valid-file-names)
3763 (authors-renamed-files-alist): Additions.
3764
3765 * vc/vc-git.el (vc-git-print-log): Remove --follow;
3766 reverts 2014-01-09 change. (Bug#16422)
3767
3768 * calc/calc-embed.el (thing-at-point-looking-at):
3769 * emacs-lisp/map-ynp.el (x-popup-dialog):
3770 * obsolete/lmenu.el (x-popup-dialog):
3771 * emacs-lisp/package.el (url-recreate-url):
3772 * mail/mailclient.el (clipboard-kill-ring-save):
3773 * subr.el (x-popup-dialog): Update declaration.
3774 * mail/rmail.el (rmail-mime-message-p):
3775 * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
3776
3777 2014-01-21 Daniel Colascione <dancol@dancol.org>
3778
3779 * progmodes/sh-script.el (sh--inside-noncommand-expression):
3780 Correctly detect when we're inside an arithmetic expansion form
3781 containing nested parenthesis.
3782 (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
3783 to detect cases where we shouldn't expand "<<" to a heredoc
3784 skeleton.
3785
3786 2014-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
3787
3788 * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
3789 (eldoc--message-command-p): New function.
3790 (eldoc-display-message-p): Use it.
3791 (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
3792 message is not automatically erased for us.
3793 (eldoc-print-current-symbol-info): Erase previous message, if any.
3794
3795 2014-01-21 Tassilo Horn <tsdh@gnu.org>
3796
3797 * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
3798 specify it's an interactive function.
3799
3800 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
3801 Fix regex used for scanning for citation keys which failed for
3802 citations with optional arguments.
3803
3804 2014-01-21 Leo Liu <sdl.web@gmail.com>
3805
3806 * simple.el (read--expression): Don't enable eldoc-mode.
3807
3808 2014-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
3809
3810 * simple.el (move-beginning-of-line): Make sure we don't move forward
3811 (bug#16497).
3812
3813 2014-01-20 Juri Linkov <juri@jurta.org>
3814
3815 * saveplace.el (toggle-save-place, save-place-to-alist)
3816 (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
3817 'dired-mode) before checking for dired-directory. (Bug#16477)
3818
3819 2014-01-20 Juri Linkov <juri@jurta.org>
3820
3821 * indent.el (indent-line-to): Use backward-to-indentation
3822 instead of back-to-indentation. (Bug#16461)
3823
3824 2014-01-20 Paul Eggert <eggert@cs.ucla.edu>
3825
3826 Revert some of the CANNOT_DUMP fix (Bug#16494).
3827 Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
3828 but fixing this can wait until after the next release.
3829 * Makefile.in (emacs): Keep EMACSLOADPATH empty.
3830
3831 2014-01-19 Michael Albinus <michael.albinus@gmx.de>
3832
3833 * eshell/esh-mode.el (eshell-password-prompt-regexp):
3834 Use `password-word-equivalents'.
3835 (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
3836 to t. (Bug#5664, Bug#13124)
3837
3838 2014-01-19 Alan Mackenzie <acm@muc.de>
3839
3840 Bind open-paren-in-column-0-is-defun-start to nil at some entry
3841 points.
3842 * progmodes/cc-engine.el (c-invalidate-state-cache-1)
3843 (c-parse-state-1, c-guess-basic-syntax): Bind it here.
3844 * progmodes/cc-mode.el (c-before-change, c-after-change)
3845 (c-font-lock-fontify-region): Bind it here.
3846
3847 2014-01-19 Martin Rudalics <rudalics@gmx.at>
3848
3849 * term.el (term-window-width): Call window-text-width instead of
3850 window-width (Bug#16470).
3851
3852 2014-01-18 Paul Eggert <eggert@cs.ucla.edu>
3853
3854 * simple.el (password-word-equivalents): Remove duplicates.
3855 Sort, to make this easier next time.
3856 Downcase. Omit ": " after "jelszó".
3857
3858 2014-01-18 Jan Djärv <jan.h.d@swipnet.se>
3859
3860 * term/common-win.el (saved-region-selection): Defvar it.
3861 (x-select-text): Set saved-region-selection (Bug#16382).
3862
3863 2014-01-18 Glenn Morris <rgm@gnu.org>
3864
3865 * emacs-lisp/authors.el (authors-aliases)
3866 (authors-renamed-files-alist): Add some entries.
3867
3868 2014-01-17 Michael Albinus <michael.albinus@gmx.de>
3869
3870 * net/tramp.el (tramp-password-prompt-regexp):
3871 Use `password-word-equivalents' if available.
3872 (tramp-action-password, tramp-process-one-action)
3873 (tramp-read-passwd): Let-bind `case-fold-search' to t. (Bug#13124)
3874
3875 2014-01-17 Chong Yidong <cyd@gnu.org>
3876
3877 * simple.el (password-word-equivalents): New defcustom.
3878 * comint.el (comint-password-prompt-regexp): Use it. Bump version
3879 to 24.4.
3880 (comint-watch-for-password-prompt): Let-bind `case-fold-search'
3881 to t. (Bug#13124)
3882
3883 2014-01-17 Dmitry Gutov <dgutov@yandex.ru>
3884
3885 * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
3886 (ruby-align-to-stmt-keywords): Change the default value.
3887 Use `ruby-alignable-keywords' to generate the possible customization
3888 choices.
3889 (ruby-smie-rules): Instead of using a hardcoded list of alignable
3890 keywords, check against the value of `ruby-alignable-keywords'
3891 (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
3892
3893 2014-01-17 Glenn Morris <rgm@gnu.org>
3894
3895 * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
3896
3897 Make M-x authors return zero *Authors Errors* from current logs.
3898 * emacs-lisp/authors.el (authors-obsolete-files-regexps)
3899 (authors-ignored-files): Add some entries, remove others.
3900 (authors-ambiguous-files, authors-valid-file-names):
3901 Add some entries.
3902 (authors-renamed-files-alist): Add, remove, and adjust entries.
3903 (authors-renamed-files-regexps): Add some entries.
3904 Remove some very broad ones. Make some entries `lax'.
3905 (authors-lax-changelogs): New constant.
3906 (authors-disambiguate-file-name): Treat top-level specially.
3907 (authors-lax-changelog-p): New function.
3908 (authors-canonical-file-name): Check file as written against
3909 authors-valid-file-names. Do not special-case etc/.
3910 Handle `lax' logs and authors-renamed-files-regexps elements.
3911
3912 2014-01-16 Dmitry Gutov <dgutov@yandex.ru>
3913
3914 * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
3915 `assoc'. Use `nth' instead of `cdr'. Make private. Update all
3916 callers.
3917
3918 2014-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3919
3920 * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
3921 Assume we're already in the proper buffer.
3922 Inspired by Anders Lindgren <andlind@gmail.com>.
3923 (follow-post-command-hook): Call it from the right buffer.
3924 (follow-comint-scroll-to-bottom): Adjust call.
3925 (follow-all-followers): Use get-buffer-window-list.
3926
3927 2014-01-15 Daniel Colascione <dancol@dancol.org>
3928
3929 * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
3930 `buffer-file-name' in interactive-form so that we don't leave
3931 pathless file names in `file-name-history'.
3932
3933 2014-01-15 Juri Linkov <juri@jurta.org>
3934
3935 * indent.el (indent-rigidly): Set deactivate-mark to nil
3936 in transient indentation mode. (Bug#16438)
3937
3938 2014-01-15 Dmitry Gutov <dgutov@yandex.ru>
3939
3940 * emacs-lisp/package.el (package-desc-keywords): New function
3941 (Bug#16222).
3942 (describe-package-1, package-all-keywords)
3943 (package--has-keyword-p): Use it.
3944
3945 2014-01-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
3946
3947 * simple.el (define-alternatives): When creating the
3948 COMMAND-alternatives variable, assign COMMAND as its definition
3949 name so that `describe-variable' can relocate it.
3950
3951 2014-01-14 Matthew Leach <matthew@mattleach.net> (tiny change)
3952
3953 * font-lock.el (font-lock-keywords): Fix typo in docstring
3954 (bug#16307).
3955
3956 2014-01-14 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3957
3958 * ispell.el (ispell-region): Reset `in-comment' for new line
3959 instead of wrongly reset `add-coment' (bug#13577).
3960
3961 2014-01-14 Daiki Ueno <ueno@gnu.org>
3962
3963 * epa-file.el (epa-file-write-region): Encode the region according
3964 to `buffer-file-format'. Problem reported at:
3965 <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
3966
3967 2014-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
3968
3969 * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
3970 so it applies in the right buffer (bug#16410).
3971
3972 2014-01-13 Daniel Colascione <dancol@dancol.org>
3973
3974 * textmodes/rst.el (rst-define-key): Provide deprecated
3975 keybindings through named functions instead of anonymous ones so
3976 that "??" doesn't appear in describe-mode output.
3977
3978 2014-01-13 Bastien Guerry <bzg@gnu.org>
3979
3980 * simple.el (define-alternatives): Call the selected command
3981 interactively. When setting `COMMAND--implementation' for the
3982 first time, tell the user how to chose another implementation.
3983 Enhance the docstring.
3984
3985 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
3986
3987 * vc/log-edit.el: Fix highlighting of summary when it's the first line.
3988 (log-edit--match-first-line): New function.
3989 (log-edit-font-lock-keywords): Use it.
3990 (log-edit-mode): Make jit-lock-defer-multiline work.
3991
3992 2014-01-13 Bastien Guerry <bzg@gnu.org>
3993
3994 * rect.el (rectangle-mark-mode): When the region is not active,
3995 display a message saying that the mark as been set and that
3996 rectangle mode is in use.
3997 (rectangle--highlight-for-redisplay): Only put an overlay with a
3998 visible vertical bar when (display-graphic-p) is non-nil.
3999 This partially fixes Bug#16403.
4000
4001 2014-01-13 Juri Linkov <juri@jurta.org>
4002
4003 * info.el (Info-find-file): Go to DIR before displaying the error
4004 about a nonexistent file if no previous Info file is visited.
4005 Use `user-error' instead of `error' for "Info file %s does not exist".
4006 (Info-find-node-2): In case of a nonexistent node in unwind forms
4007 go to the Top node if there is no previous node to revert to.
4008 (Bug#16405)
4009
4010 2014-01-13 Martin Rudalics <rudalics@gmx.at>
4011
4012 fit-frame/window-to-buffer code fixes including one for Bug#14096.
4013 * window.el (fit-frame-to-buffer): Fix doc-string.
4014 Respect window-min-height/-width. Fit pixelwise when
4015 frame-resize-pixelwise is non-nil. Adjust right/bottom edge
4016 when avoiding that frame goes partially off-screen.
4017 (fit-window-to-buffer): Respect window-min-height/-width
4018 (Bug#14096).
4019
4020 2014-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
4021
4022 * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
4023 after an empty line.
4024
4025 2014-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
4026
4027 * net/shr.el (shr-render-region): Autoload.
4028
4029 2014-01-12 Xue Fuqiao <xfq.free@gmail.com>
4030
4031 * net/eww.el (eww-download-directory): Rename from
4032 `eww-download-path' (Bug#16419).
4033
4034 2014-01-12 Leo Liu <sdl.web@gmail.com>
4035
4036 * dired-x.el (dired-mode-map): Fix last change.
4037
4038 * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
4039
4040 2014-01-12 Paul Eggert <eggert@cs.ucla.edu>
4041
4042 Spelling fixes.
4043 * emacs-lisp/generic.el (generic--normalize-comments):
4044 Rename from generic--normalise-comments. All uses changed.
4045 * play/bubbles.el (bubbles--neighborhood-score)
4046 (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
4047 (bubbles--neighborhood-available)
4048 (bubbles--update-neighborhood-score):
4049 Rename from names with 'neighbourhood'. All uses changed.
4050
4051 2014-01-12 Leo Liu <sdl.web@gmail.com>
4052
4053 Re-implement the feature of showing eldoc info after editing.
4054 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
4055 (eldoc-edit-message-commands): New function.
4056 (eldoc-print-after-edit): New variable.
4057 (eldoc-pre-command-refresh-echo-area): Emit message only by
4058 eldoc-message-commands.
4059 (eldoc-mode): Restrict eldoc-message-commands to editing commands
4060 if eldoc-print-after-edit is set. (Bug#16346)
4061 * simple.el (read--expression): Enable eldoc-mode.
4062 * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
4063
4064 2014-01-11 Dani Moncayo <dmoncayo@gmail.com>
4065 Eric S. Raymond <esr@thyrsus.com>
4066
4067 * version.el (emacs-repository-get-version): Enhance so the
4068 function works correctly in either a Bazaar or Git repo.
4069
4070 2014-01-11 Eric S. Raymond <esr@thyrsus.com>
4071
4072 * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
4073 Goes with removal of the joke manpages from /etc.
4074
4075 2014-01-10 Kenichi Handa <handa@gnu.org>
4076
4077 * mail/rmail.el (rmail-get-coding-system):
4078 Check rmail-get-coding-function before "funcall"ing it.
4079
4080 2014-01-10 Glenn Morris <rgm@gnu.org>
4081
4082 * emacs-lisp/authors.el (authors-fixed-entries):
4083 Update for files that no longer exist.
4084
4085 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
4086
4087 * version.el (emacs-bzr-get-version): Restore compatibilty with
4088 24.3 (Tested).
4089
4090 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>
4091
4092 * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
4093 and Podfile.
4094
4095 2014-01-10 Eli Zaretskii <eliz@gnu.org>
4096
4097 * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
4098
4099 2014-01-10 Chong Yidong <cyd@gnu.org>
4100
4101 * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
4102
4103 2014-01-10 Anders Lindgren <andlind@gmail.com>
4104
4105 * follow.el (follow-cache-command-list): Include right-char and
4106 left-char.
4107
4108 2014-01-10 Paul Eggert <eggert@cs.ucla.edu>
4109
4110 Spelling fixes.
4111 * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
4112 * woman.el (woman-mark-horizontal-position):
4113 Rename from woman-mark-horizonal-position. Use changed.
4114
4115 2014-01-10 Glenn Morris <rgm@gnu.org>
4116
4117 * info.el (info-initialize): If running uninstalled, ensure our
4118 own info files are always found first, even if INFOPATH is set.
4119
4120 * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
4121
4122 2014-01-09 David Engster <deng@randomsample.de>
4123
4124 * emacs-lisp/eieio-custom.el:
4125 * emacs-lisp/eieio-opt.el: Set generated autoload file to
4126 'eieio.el'. This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
4127 * emacs-lisp/eieio.el: Regenerate autoloads.
4128
4129 2014-01-09 Eric S. Raymond <esr@thyrsus.com>
4130
4131 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
4132 following renames. (Bug#8756)
4133
4134 2014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
4135
4136 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
4137 (bug#16382).
4138 (activate-mark): Add `no-tmm' argument.
4139 (set-mark, push-mark-command): Use it instead of running
4140 activate-mark-hook by hand.
4141
4142 2014-01-08 Eric S. Raymond <esr@thyrsus.com>
4143
4144 In preparation for the move to git, sanitize out some
4145 Bazaar-specific names.
4146
4147 * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
4148
4149 * version.el (emacs-bzr-version): Name changed to
4150 emacs-repository-version. Obsolete-variable alias made.
4151 * loadup.el: Follow through on this name change.
4152 * mail/emacsbug.el (report-emacs-bug): Factor out any
4153 assumption about the version control system in use.
4154
4155 2014-01-08 David Engster <deng@randomsample.de>
4156
4157 * help-fns.el (help-fns-describe-function-functions):
4158 New variable to call functions for augmenting help buffers.
4159 (describe-function-1): Remove explicit calls to
4160 `help-fns--compiler-macro', `help-fns--parent-mode' and
4161 `help-fns--obsolete'. Put them in above new variable instead, and
4162 call them through `run-hook-with-args'.
4163 * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
4164 `eieio-describe-class'. Not meant for interactive use anymore,
4165 but to augment existing help buffers. Remove optional second
4166 argument. Create proper button for file location.
4167 Rewrite function to use `insert' instead of `princ' and `prin1' where
4168 possible.
4169 (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
4170 (eieio-method-def, eieio-class-def): Move further up.
4171 (describe-method, describe-generic, eieio-describe-method):
4172 Remove aliases.
4173 (eieio-help-constructor, eieio-help-generic): Rename from
4174 `eieio-describe-constructor' and `eieio-describe-generic', resp.
4175 Rewrite to use `insert' in the current buffer and use proper help
4176 buttons.
4177 (eieio-help-find-method-definition)
4178 (eieio-help-find-class-definition): Also accept symbols as
4179 arguments.
4180 (eieio-help-mode-augmentation-maybee): Remove.
4181 (eieio-describe-class-sb): Use `describe-function'.
4182 * emacs-lisp/eieio.el (help-fns-describe-function-functions):
4183 Add `eieio-help-generic' and `eieio-help-constructor'.
4184
4185 2014-01-08 Paul Eggert <eggert@cs.ucla.edu>
4186
4187 Spelling fixes.
4188 * language/china-util.el (hz-ascii-designation):
4189 Rename from hz-ascii-designnation.
4190 (hz-ascii-designation): Rename from hz-ascii-designnation.
4191 All uses changed.
4192
4193 2014-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
4194
4195 * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
4196 package-alist.
4197
4198 2014-01-08 Bastien Guerry <bzg@gnu.org>
4199
4200 * emacs-lisp/package.el (package-delete):
4201 Correctly delete the package from package-alist.
4202
4203 2014-01-08 Daiki Ueno <ueno@gnu.org>
4204
4205 * emacs-lisp/package.el (url-recreate-url): Declare.
4206 (url-http-target-url): Declare.
4207 (package-handle-response): Include requested URL in the error message.
4208 (package--check-signature): Don't re-signal errors from
4209 package--with-work-buffer. Suggested by Stefan Monnier.
4210
4211 2014-01-07 Bastien Guerry <bzg@gnu.org>
4212
4213 * minibuffer.el (completion--try-word-completion): When both a
4214 hyphen and a space are possible candidates for the character
4215 following a word, display both candidates. (Bug#15980)
4216
4217 2014-01-07 Martin Rudalics <rudalics@gmx.at>
4218
4219 * window.el (balance-windows-2): While rounding don't give a
4220 window more than the remainder. Bug#16351, bug#16383.
4221
4222 2014-01-07 Glenn Morris <rgm@gnu.org>
4223
4224 * menu-bar.el (menu-bar-help-extra-packages): Remove.
4225 (menu-bar-help-menu): Use view-external-packages instead.
4226
4227 2014-01-07 Bastien Guerry <bzg@gnu.org>
4228
4229 * emacs-lisp/package.el (package-delete): Also delete the package
4230 name from `package-alist', not its description only.
4231
4232 2014-01-07 Glenn Morris <rgm@gnu.org>
4233
4234 * help.el (view-external-packages):
4235 * menu-bar.el (menu-bar-help-extra-packages):
4236 Visit efaq.info rather than etc/MORE.STUFF.
4237
4238 2014-01-07 Juri Linkov <juri@jurta.org>
4239
4240 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
4241 isearch-exit and isearch-delete-char resp. (Bug#16342, bug#16035)
4242
4243 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
4244 that shadows RET. (Bug#16342)
4245
4246 2014-01-07 Chong Yidong <cyd@gnu.org>
4247
4248 * isearch.el (isearch-yank-char, isearch-yank-word)
4249 (isearch-yank-line): Doc fix.
4250
4251 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
4252
4253 * abbrev.el (define-abbrev): Beware new meaning of fboundp.
4254 * emacs-lisp/elint.el (elint-find-builtins):
4255 * emacs-lisp/eldoc.el (eldoc-symbol-function):
4256 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
4257 (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
4258 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4259 * apropos.el (apropos-safe-documentation):
4260 * subr.el (symbol-file): Remove redundant fboundp.
4261 * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
4262
4263 2014-01-06 Bastien Guerry <bzg@gnu.org>
4264
4265 * hl-line.el (global-hl-line-overlay): Make a local variable.
4266 (global-hl-line-overlays): New variable to store all overlays.
4267 (global-hl-line-mode): Don't delete overlays from the current
4268 buffer when `global-hl-line-sticky-flag' is non-nil.
4269 (global-hl-line-highlight): Add new overlays to
4270 `global-hl-line-overlays'.
4271 (global-hl-line-unhighlight-all): New function to delete all
4272 overlays when turning off `global-hl-line-mode'.
4273 This fixes Bug#16183.
4274
4275 2014-01-06 Stefan Monnier <monnier@iro.umontreal.ca>
4276
4277 * subr.el (set-transient-map): Fix nested case and docstring.
4278
4279 2014-01-06 Tassilo Horn <tsdh@gnu.org>
4280
4281 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
4282 `Texinfo' entry.
4283
4284 2014-01-06 Daniel Colascione <dancol@dancol.org>
4285
4286 Fix defun navigation in vc log view.
4287
4288 * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
4289 like `beginning-of-defun'.
4290 (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
4291 log-view-end-of-defun to log-view-end-of-defun-1. Replace
4292 log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
4293 (log-view-extract-comment): Call `log-view-current-entry' directly
4294 instead of relying on broken `log-view-beginning-of-defun' behavior.
4295
4296 2014-01-06 Paul Eggert <eggert@cs.ucla.edu>
4297
4298 Spelling fixes.
4299 * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
4300 * emacs-lisp/debug.el (cancel-debug-on-entry):
4301 * epg.el (epg-error-to-string):
4302 * files.el (recover-file):
4303 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4304 * mail/emacsbug.el (report-emacs-bug-hook):
4305 * mail/sendmail.el (mail-recover):
4306 * ses.el (ses-yank-resize):
4307 * term/ns-win.el (ns-print-buffer):
4308 Spelling fixes in diagnostics, mostly for "canceled" with one L.
4309 * epg.el (epg-key-capability-alist): Rename from misspelled version.
4310 All uses changed.
4311 * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
4312
4313 2014-01-06 Leo Liu <sdl.web@gmail.com>
4314
4315 * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
4316 to avoid shadowing global key. (Bug#16354)
4317
4318 2014-01-06 Daniel Colascione <dancol@dancol.org>
4319
4320 * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
4321 rst-mode.
4322
4323 2014-01-05 Martin Rudalics <rudalics@gmx.at>
4324
4325 * window.el (balance-windows): Add mising t to fix Bug#16351.
4326
4327 2014-01-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4328
4329 * net/shr.el (shr-descend): Don't bug out if the anchor is empty
4330 (bug#16285).
4331 (shr-insert): If we have a word that's longer than `shr-width',
4332 break after it anyway. Otherwise we'll do no breaking once we get
4333 such a long word.
4334
4335 2014-01-05 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4336
4337 * net/eww.el (eww): Support single/double quote for search.
4338 * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
4339 (eww-history-quit): Delete and use quit-window.
4340 (eww-history-kill): Delete, because it doesn't work well and
4341 not necessary.
4342 (eww-history-mode-map): Delete some keys and add easy-menu.
4343
4344 2014-01-05 Paul Eggert <eggert@cs.ucla.edu>
4345
4346 Fix misspelling of 'chinese' in rx (Bug#16237).
4347 * emacs-lisp/rx.el (rx-categories): Correct spelling of
4348 chinese-two-byte.
4349
4350 Change subword regexps back to vars (Bug#16296).
4351 * progmodes/subword.el (subword-forward-regexp)
4352 (subword-backward-regexp): Change these back to variables.
4353
4354 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4355
4356 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
4357 syntax-begin-function (bug#16247).
4358
4359 2014-01-03 Chong Yidong <cyd@gnu.org>
4360
4361 * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
4362 (advice--docstring): Delete variable.
4363 (advice--make-1): Leave the docstring empty.
4364 (advice-add): Use function-documentation for advised docstring.
4365
4366 * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
4367 Ignore function-documentation property when getting documentation.
4368 (ad-activate-advised-definition): Use function-documentation
4369 generate the docstring.
4370 (ad-make-advised-definition): Don't call
4371 ad-make-advised-definition-docstring.
4372 (ad-make-advised-definition-docstring, ad-advised-definition-p):
4373 Delete functions.
4374
4375 * progmodes/sql.el (sql-help): Use function-documentation instead
4376 of dynamic-docstring-function property. No need to autoload now.
4377 (sql--help-docstring): New variable.
4378 (sql--make-help-docstring): Use it.
4379
4380 2014-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
4381
4382 * ielm.el (ielm-tab): Retarget.
4383 (ielm-map): Use ielm-tab for tab.
4384 (ielm-complete-filename): Use comint-filename-completion.
4385 (ielm-complete-symbol): Remove.
4386 (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
4387 remove ielm-tab from completion-at-point-functions (bug#16224).
4388
4389 * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
4390 Beware signals raised by predicates (bug#16201).
4391
4392 2014-01-02 Richard Stallman <rms@gnu.org>
4393
4394 * dired-aux.el (dired-do-print): Handle printer-name.
4395
4396 * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
4397 * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
4398 (rmail-epa-decrypt): Turn off mime processing.
4399
4400 * mail/rmail.el (rmail-make-in-reply-to-field):
4401 Add parens in message-id.
4402
4403 * mail/rmail.el (rmail-get-coding-function): Variable.
4404 (rmail-get-coding-system): Use it.
4405
4406 2013-12-31 Eli Zaretskii <eliz@gnu.org>
4407
4408 * international/mule-conf.el: Unify the charset indian-is13194.
4409 (indian-is13194): Specify unify-map.
4410
4411 2013-12-31 Leo Liu <sdl.web@gmail.com>
4412
4413 * subr.el (set-temporary-overlay-map): Obsolete alias. (Bug#16305)
4414
4415 2013-12-30 Daniel Colascione <dancol@dancol.org>
4416
4417 * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
4418 of printing a useless when we resume from sleep.
4419
4420 * progmodes/sh-script.el
4421 (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
4422 in indentation code. (Bug#16233)
4423
4424 2013-12-28 João Távora <joaotavora@gmail.com>
4425
4426 * elec-pair.el (electric-pair-post-self-insert-function):
4427 Don't open extra newlines at beginning of buffer. (Bug#16272)
4428
4429 2013-12-28 Eli Zaretskii <eliz@gnu.org>
4430
4431 * frame.el (window-system-for-display): Don't allow to create a
4432 GUI frame from a -nw session on MS-Windows. (Bug#14739)
4433
4434 2013-12-28 Glenn Morris <rgm@gnu.org>
4435
4436 * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
4437 Update callers.
4438
4439 * apropos.el (apropos-match-face):
4440 * calculator.el (calculator-displayer):
4441 * dabbrev.el (dabbrev-search-these-buffers-only):
4442 * face-remap.el (buffer-face-mode-face):
4443 * simple.el (yank-handled-properties):
4444 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
4445 * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
4446 * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
4447 (hashcash-double-spend-database):
4448 * progmodes/ruby-mode.el (ruby-deep-indent-paren)
4449 (ruby-deep-indent-paren-style):
4450 * textmodes/flyspell.el (flyspell-auto-correct-binding):
4451 * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
4452 (rst-toc-insert-number-separator, rst-toc-insert-max-level):
4453 * vc/pcvs-defs.el (cvs-minor-mode-prefix):
4454 Specify custom types.
4455
4456 * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
4457 * bookmark.el (bookmark-bmenu-use-header-line):
4458 * doc-view.el (doc-view-scale-internally):
4459 * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
4460 * register.el (register-preview-delay):
4461 * net/shr.el (shr-bullet):
4462 * progmodes/cfengine.el (cfengine-cf-promises)
4463 (cfengine-parameters-indent):
4464 * progmodes/octave.el (inferior-octave-error-regexp-alist):
4465 * textmodes/reftex-vars.el (reftex-label-regexps):
4466 * vc/log-edit.el (log-edit-setup-add-author): Add version.
4467
4468 * net/tls.el (tls-certtool-program): Fix default value.
4469
4470 * desktop.el (desktop-restore-in-current-display):
4471 * newcomment.el (comment-empty-lines):
4472 * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
4473 (idlwave-pad-keyword):
4474 * progmodes/tcl.el (tcl-tab-always-indent):
4475 * textmodes/reftex-vars.el (reftex-index-default-tag):
4476 * elec-pair.el (electric-pair-skip-whitespace):
4477 * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
4478
4479 * emacs-lisp/authors.el (authors-ignored-files)
4480 (authors-valid-file-names, authors-renamed-files-alist): Additions.
4481
4482 2013-12-27 Jarek Czekalski <jarekczek@poczta.onet.pl>
4483
4484 * shell.el (shell-dynamic-complete-command): Doc fix.
4485 (shell--command-completion-data): Shell completion now matches
4486 executable filenames from the current buffer's directory, on
4487 systems in which this behavior is the default (windows-nt, ms-dos).
4488
4489 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
4490
4491 * net/shr.el (shr-insert): Don't infloop if the width is zero.
4492
4493 2013-12-27 Stefan Monnier <monnier@iro.umontreal.ca>
4494
4495 * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
4496 (bug#16251).
4497
4498 * electric.el: Move all electric-pair-* to elec-pair.el.
4499 * elec-pair.el: New file, split from electric.el.
4500
4501 2013-12-27 Lars Ingebrigtsen <larsi@gnus.org>
4502
4503 * net/shr.el (shr-find-fill-point): Don't try to fill if the
4504 indentation level is larger than the width, because that will
4505 infloop.
4506 (shr-insert): Fill repeatedly long texts, so that Japanese is
4507 formatted correctly (bug#16263).
4508 (shr-find-fill-point): Off by one error in comparison with the
4509 indentation.
4510
4511 2013-12-26 João Távora <joaotavora@gmail.com>
4512
4513 * electric.el (electric-pair-mode): More flexible engine for skip-
4514 and inhibit predicates, new options for pairing-related functionality.
4515 (electric-pair-preserve-balance): Pair/skip parentheses and quotes
4516 if that keeps or improves their balance in buffers.
4517 (electric-pair-delete-adjacent-pairs): Delete the pair when
4518 backspacing over adjacent matched delimiters.
4519 (electric-pair-open-extra-newline): Open extra newline when
4520 inserting newlines between adjacent matched delimiters.
4521 (electric--sort-post-self-insertion-hook):
4522 Sort post-self-insert-hook according to priority values when
4523 minor-modes are activated.
4524 * simple.el (newline-and-indent): Call newline with interactive
4525 set to t.
4526 (blink-paren-post-self-insert-function): Set priority to 100.
4527 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4528 Use electric-pair-text-pairs to pair backtick-and-quote in strings and
4529 comments. Locally set electric-pair-skip-whitespace to 'chomp and
4530 electric-pair-open-newline-between-pairs to nil.
4531
4532 2013-12-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
4533
4534 * progmodes/python.el: Use lexical-binding.
4535 (python-nav-beginning-of-defun): Stop searching ASAP.
4536
4537 2013-12-25 Xue Fuqiao <xfq.free@gmail.com>
4538
4539 * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
4540 Fix interactive spec. Doc fix. (Bug#15754)
4541
4542 2013-12-25 Katsumi Yamaoka <yamaoka@jpl.org>
4543
4544 * emacs-lisp/byte-run.el (eval-when-compile):
4545 * progmodes/cc-defs.el (cc-eval-when-compile):
4546 Fix edebug spec (bug#16184).
4547
4548 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
4549
4550 * net/shr.el (shr-visit-file): Remove debugging function.
4551 (shr-insert): Don't infloop if we can't find a good place to break
4552 the line (bug#16256).
4553
4554 2013-12-25 Fabián Ezequiel Gallina <fgallina@gnu.org>
4555
4556 * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
4557 (python-nav--lisp-forward-sexp-safe): Use it. Rename from
4558 python-nav-lisp-forward-sexp-safe.
4559 (python-nav--forward-sexp): New argument SAFE allows switching
4560 forward sexp movement behavior for parens.
4561 (python-nav-forward-sexp): Throw errors on unterminated parens
4562 (Bug#16191).
4563 (python-nav-backward-sexp, python-nav-forward-sexp-safe)
4564 (python-nav-backward-sexp-safe): New functions.
4565 (python-shell-buffer-substring):
4566 Use `python-nav-forward-sexp-safe'.
4567
4568 2013-12-25 Lars Ingebrigtsen <larsi@gnus.org>
4569
4570 * net/shr.el (shr-find-fill-point): Don't break lines before a
4571 quotation mark.
4572 (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
4573 (shr-find-fill-point): Remove the special checks for the quotation
4574 mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
4575
4576 2013-12-25 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4577
4578 * net/eww.el (eww-form-textarea): Use a different face for
4579 textareas than text input since they have different keymaps
4580 (bug#16142).
4581
4582 2013-12-24 Fabián Ezequiel Gallina <fgallina@gnu.org>
4583
4584 * progmodes/python.el (python-nav-beginning-of-statement):
4585 Speed up (Bug#15295).
4586
4587 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
4588
4589 * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
4590 the window configuration.
4591
4592 2013-12-24 Eli Zaretskii <eliz@gnu.org>
4593
4594 * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
4595 we run on MS-Windows or MS-DOS.
4596
4597 2013-12-24 Martin Rudalics <rudalics@gmx.at>
4598
4599 * window.el (balance-windows-area): Call window-size instead of
4600 window-height and window-width. Bug#16241.
4601
4602 2013-12-24 Lars Ingebrigtsen <larsi@gnus.org>
4603
4604 * net/eww.el (eww-bookmark-quit): Remove.
4605 (eww-bookmark-browse): Restore the window configuration when you
4606 choose a bookmark (bug#16144).
4607
4608 2013-12-24 Daniel Colascione <dancol@dancol.org>
4609
4610 * icomplete.el: Remove redundant :group arguments to `defcustom'
4611 throughout.
4612 (icomplete-show-matches-on-no-input): New customizable variable.
4613 (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
4614 we have something to show.
4615 (icomplete-exhibit): Compute completions even if we have no user input.
4616
4617 2013-12-23 Daniel Colascione <dancol@dancol.org>
4618
4619 * icomplete.el: Move `provide' to end of file.
4620
4621 2013-12-23 Teodor Zlatanov <tzz@lifelogs.com>
4622
4623 * net/gnutls.el (gnutls-verify-error): Add version tag.
4624
4625 2013-12-23 Chong Yidong <cyd@gnu.org>
4626
4627 * subr.el (set-transient-map): Rename from
4628 set-temporary-overlay-map. Doc fix.
4629
4630 * face-remap.el (text-scale-adjust):
4631 * indent.el (indent-rigidly):
4632 * kmacro.el (kmacro-call-macro):
4633 * minibuffer.el (minibuffer-force-complete):
4634 * repeat.el (repeat):
4635 * simple.el (universal-argument--mode):
4636 * calendar/todo-mode.el (todo-insert-item--next-param):
4637 * progmodes/f90.el (f90-abbrev-start): Callers changed.
4638
4639 * indent.el (indent-rigidly): Use substitute-command-keys.
4640
4641 2013-12-22 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4642
4643 * net/eww.el (eww-tag-select): Add text-property to jump to next
4644 select field.
4645 (eww): Add non-supported ftp error.
4646
4647 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4648
4649 * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
4650 comments. Handle electric indent after typing `?' and `!'.
4651
4652 2013-12-22 Chong Yidong <cyd@gnu.org>
4653
4654 * faces.el (face-spec-recalc): If the theme specs are not
4655 applicable to a frame, fall back on the defface spec.
4656 This prevents themes from obliterating faces on low-color terminals.
4657
4658 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4659
4660 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
4661 after `{'. We need it after block openers, and it doesn't seem
4662 to hurt after hash openers.
4663
4664 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4665
4666 * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
4667 extracted from `ruby-smie-rules'.
4668 (ruby--electric-indent-chars): New variable.
4669 (ruby--electric-indent-p): New function.
4670 (ruby-mode): Use `electric-indent-functions' instead of
4671 `electric-indent-chars'.
4672
4673 2013-12-22 Dmitry Gutov <dgutov@yandex.ru>
4674
4675 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
4676 docstring.
4677 (ruby-smie-rules): Indent plus one level after `=>'.
4678
4679 2013-12-21 Richard Stallman <rms@gnu.org>
4680
4681 * simple.el (newline): Doc fix.
4682
4683 2013-12-21 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
4684
4685 * net/eww.el (eww-list-histories, eww-list-histories)
4686 (eww-history-browse, eww-history-quit, eww-history-kill)
4687 (eww-history-mode-map, eww-history-mode): New command and
4688 functions to list browser histories.
4689 (eww-form-text): Support text form with disabled
4690 and readonly attributes.
4691 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
4692
4693 2013-12-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4694
4695 * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
4696 (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
4697 (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
4698 (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
4699 Use `user-error'.
4700 (eww-bookmark-mode-map): Add menu.
4701 (eww-render, eww-mode): Use `setq-local'.
4702 (eww-tool-bar-map): New variable.
4703 (eww-mode): Set `tool-bar-map'.
4704 (eww-view-source): Check for `html-mode' with `fboundp'.
4705
4706 2013-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4707
4708 * net/shr.el (shr--extract-best-source): Don't bug out on audio
4709 elements with text inside. Also remove debugging.
4710
4711 2013-12-21 Jan Djärv <jan.h.d@swipnet.se>
4712
4713 * cus-start.el (all): Add ns-use-srgb-colorspace.
4714
4715 2013-12-21 Chong Yidong <cyd@gnu.org>
4716
4717 * custom.el (custom-theme-recalc-face): Do nothing if the face is
4718 undefined. Thus, theme settings for undefined faces do not take
4719 effect until the faces are defined with defface, the same as with
4720 theme variables.
4721
4722 * faces.el (face-spec-set): Use face-spec-recalc in all cases.
4723 (face-spec-reset-face): Don't assign extra properties in temacs.
4724 (face-spec-recalc): Apply X resources too.
4725
4726 2013-12-21 Chong Yidong <cyd@gnu.org>
4727
4728 * faces.el (face-spec-set):
4729 * cus-face.el (custom-theme-set-faces, custom-set-faces):
4730 * custom.el (defface): Doc fixes (Bug#16203).
4731
4732 * indent.el (indent-rigidly-map): Add docstring, and move commands
4733 into named functions.
4734 (indent-rigidly-left, indent-rigidly-right)
4735 (indent-rigidly-left-to-tab-stop)
4736 (indent-rigidly-right-to-tab-stop): New functions. Decide on
4737 indentation direction based on bidi direction, and accumulate
4738 sequential commands in a single undo boundary.
4739 (indent-rigidly--pop-undo): New utility function.
4740
4741 2013-12-20 Juanma Barranquero <lekktu@gmail.com>
4742
4743 * faces.el (read-face-name): Require crm.el when using crm-separator.
4744
4745 2013-12-20 Daniel Colascione <dancol@dancol.org>
4746
4747 * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
4748 so that we don't reflow comments into the shebang line.
4749
4750 2013-12-20 Juri Linkov <juri@jurta.org>
4751
4752 * saveplace.el (save-place-to-alist): Add `dired-filename' as
4753 a position when `dired-directory' is non-nil. Check integer
4754 positions with `integerp'.
4755 (toggle-save-place, save-places-to-alist): Add check for
4756 `dired-directory'.
4757 (save-place-find-file-hook): Check integer positions with
4758 `integerp'.
4759 (save-place-dired-hook): Use `dired-goto-file' when
4760 `dired-filename' is found in the assoc list. Check integer
4761 positions with `integerp'.
4762 (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
4763
4764 * dired.el (dired-initial-position-hook): Rename back from
4765 `dired-initial-point-hook'.
4766 (dired-initial-position): Rename `dired-initial-point-hook' to
4767 `dired-initial-position-hook'.
4768 (dired-file-name-at-point): Doc fix. (Bug#15329)
4769
4770 2013-12-20 Juri Linkov <juri@jurta.org>
4771
4772 * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
4773 (read-regexp-suggestions): New function.
4774 (read-regexp): Use `read-regexp-defaults-function' to get default values.
4775 Use `read-regexp-suggestions'. Add non-empty default to history
4776 for empty input.
4777 (occur-read-regexp-defaults-function): Remove function.
4778 (occur-read-primary-args): Use `regexp-history-last' instead of
4779 `occur-read-regexp-defaults-function'.
4780
4781 * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
4782 (hi-lock-line-face-buffer, hi-lock-face-buffer)
4783 (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
4784 `hi-lock-read-regexp-defaults-function'. Doc fix.
4785 (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
4786 with `find-tag-default-as-symbol-regexp'. Doc fix.
4787 (hi-lock-read-regexp-defaults): Remove function.
4788 (hi-lock-regexp-okay): Add check for null.
4789
4790 * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
4791 the arg DEFAULTS. Move formatting of the prompt to `read-regexp'.
4792
4793 * subr.el (find-tag-default-as-symbol-regexp): New function.
4794 (find-tag-default-as-regexp): Move symbol regexp formatting to
4795 `find-tag-default-as-symbol-regexp'.
4796
4797 2013-12-20 E Sabof <esabof@gmail.com> (tiny change)
4798
4799 * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
4800 (Bug#14179)
4801
4802 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
4803
4804 * calendar/todo-mode.el: New implementation of item insertion
4805 commands and key bindings.
4806 (todo-key-prompt): New face.
4807 (todo-insert-item): New command.
4808 (todo-insert-item--parameters): New defconst, replacing defvar
4809 todo-insertion-commands-args-genlist.
4810 (todo-insert-item--param-key-alist): New defconst, replacing
4811 defvar todo-insertion-commands-arg-key-list.
4812 (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
4813 (todo-insert-item--argsleft, todo-insert-item--apply-args)
4814 (todo-insert-item--next-param): New functions.
4815 (todo-insert-item--args, todo-insert-item--argleft)
4816 (todo-insert-item--argsleft, todo-insert-item--newargsleft):
4817 New variables.
4818 (todo-key-bindings-t): Change binding of "i" from
4819 todo-insertion-map to todo-insert-item.
4820 (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
4821 (todo-insertion-command-name, todo-insertion-commands-names)
4822 (todo-define-insertion-command, todo-insertion-commands)
4823 (todo-insertion-key-bindings, todo-insertion-map): Remove.
4824
4825 2013-12-20 Stephen Berman <stephen.berman@gmx.net>
4826
4827 * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
4828 (todo-toggle-item-highlighting): Use eval-and-compile instead of
4829 eval-when-compile.
4830 (todo-move-category): Allow choosing a non-existing todo file to
4831 move the category to, and create that file.
4832 (todo-default-priority): New user option.
4833 (todo-set-item-priority): Use it.
4834 (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
4835 (desktop-restore-file-buffer): Declare.
4836 (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
4837 (todo-modes-set-2): Locally set desktop-save-buffer to
4838 todo-desktop-save-buffer.
4839 (todo-mode, todo-archive-mode, todo-filtered-items-mode)
4840 (auto-mode-alist): Add autoload cookie.
4841
4842 2013-12-20 Bozhidar Batsov <bozhidar@batsov.com>
4843
4844 * emacs-lisp/subr-x.el: Renamed from helpers.el.
4845 helpers.el was a poor choice of name.
4846 (string-remove-prefix): New function.
4847 (string-remove-suffix): New function.
4848
4849 2013-12-20 Martin Rudalics <rudalics@gmx.at>
4850
4851 Fix assignment for new window total sizes.
4852 * window.el (window--pixel-to-size): Remove function.
4853 (window--pixel-to-total-1, window--pixel-to-total):
4854 Fix calculation of new total sizes.
4855
4856 2013-12-20 Vitalie Spinu <spinuvit@gmail.com>
4857
4858 * comint.el (comint-output-filter): Fix rear-nonsticky property
4859 placement (Bug#16010).
4860
4861 2013-12-20 Chong Yidong <cyd@gnu.org>
4862
4863 * faces.el (read-color): Minor fix for completion function.
4864
4865 2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
4866
4867 * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
4868 New option. (Bug#16182)
4869 (ruby-smie--indent-to-stmt-p): Use it.
4870 (ruby-smie-rules): Revert the logic in the handling of `when'.
4871 Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
4872 (ruby-deep-arglist, ruby-deep-indent-paren)
4873 (ruby-deep-indent-paren-style): Update docstrings to note that the
4874 vars don't have any effect with SMIE.
4875
4876 2013-12-20 Jay Belanger <jay.p.belanger@gmail.com>
4877
4878 * calc/calc.el (calc-enter, calc-pop): Use the variable
4879 `calc-context-sensitive-enter'.
4880
4881 2013-12-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
4882
4883 * net/shr.el (shr-insert): Protect against infloops in degenerate
4884 tables.
4885
4886 2013-12-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4887
4888 * progmodes/octave.el (octave): Add link to manual and octave
4889 homepage.
4890 (octave-mode-menu): Link to octave-mode manual.
4891
4892 2013-12-20 Leo Liu <sdl.web@gmail.com>
4893
4894 * skeleton.el (skeleton-pair-insert-maybe): Disable newline
4895 insertion using skeleton-end-newline. (Bug#16138)
4896
4897 2013-12-20 Juri Linkov <juri@jurta.org>
4898
4899 * replace.el (occur-engine): Use `add-face-text-property'
4900 to add the face property to matches and titles. (Bug#14645)
4901
4902 * hi-lock.el (hi-green): Use lighter color "light green" closer to
4903 the palette of other hi-lock colors.
4904 (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
4905
4906 2013-12-19 Juri Linkov <juri@jurta.org>
4907
4908 * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
4909 Put :advertised-binding on `M-s c', `M-s r', `M-s e'. (Bug#16035)
4910 (minibuffer-history-symbol): Move variable declaration closer to
4911 its usage.
4912
4913 * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
4914 (Bug#14785)
4915
4916 2013-12-19 Juri Linkov <juri@jurta.org>
4917
4918 * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
4919 New function.
4920 (log-edit-hook): Add it to :options. (Bug#16170)
4921
4922 2013-12-19 Juri Linkov <juri@jurta.org>
4923
4924 * simple.el (eval-expression-print-format): Don't check for
4925 command names and the last command. Always display additional
4926 formats of the integer result in the echo area, and insert them
4927 to the current buffer only with a zero prefix arg.
4928 Display character when char-displayable-p is non-nil.
4929 (eval-expression): With a zero prefix arg, set `print-length' and
4930 `print-level' to nil, and insert the integer values from
4931 `eval-expression-print-format' at the end. Doc fix. (Bug#12985)
4932
4933 * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
4934 `eval-last-sexp-arg-internal'. Doc fix.
4935 (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
4936 `eval-last-sexp-print-value'. Doc fix.
4937 (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
4938 Set `print-length' and `print-level' to nil when arg is zero.
4939 (eval-last-sexp): Doc fix.
4940 (eval-defun-2): Print the integer values from
4941 `eval-expression-print-format' at the end.
4942
4943 * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
4944 values from `eval-expression-print-format' at the end.
4945
4946 * ielm.el (ielm-eval-input): Print the integer
4947 values from `eval-expression-print-format' at the end.
4948
4949 2013-12-19 Teodor Zlatanov <tzz@lifelogs.com>
4950
4951 * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
4952 2013-12-11T19:01:44Z!tzz@lifelogs.com.
4953
4954 2013-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
4955
4956 * hl-line.el (hl-line-make-overlay): New fun. Set priority (bug#16192).
4957 (hl-line-highlight, global-hl-line-highlight): Use it.
4958 (hl-line-overlay): Use defvar-local.
4959
4960 2013-12-19 Jan Djärv <jan.h.d@swipnet.se>
4961
4962 * term/ns-win.el: Require dnd.
4963 (global-map): Remove drag items.
4964 (ns-insert-text, ns-set-foreground-at-mouse)
4965 (ns-set-background-at-mouse):
4966 Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
4967 (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
4968 New functions.
4969
4970 2013-12-19 Glenn Morris <rgm@gnu.org>
4971
4972 * emacs-lisp/ert.el (ert-select-tests):
4973 Fix string/symbol mixup. (Bug#16121)
4974
4975 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
4976
4977 * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
4978 keywords to their parent.
4979
4980 2013-12-19 Dmitry Gutov <dgutov@yandex.ru>
4981
4982 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
4983 first arg to be a string (fixed dead code), or an operator symbol.
4984 (ruby-smie--forward-token): Tokenize ` @ ' before strings and
4985 operator symbols.
4986 (ruby-smie-rules): Remove parent token check in the `.' clause, it
4987 did nothing. Don't respond to `(:after ".")', it will be called
4988 with :before anyway. Remove the ` @ ' rule, it didn't seem to
4989 change anything. Only return indentation for binary operators
4990 when they are hanging. De-dent opening paren when its parent is
4991 `.', otherwise it looks bad when the dot is not at bol or eol
4992 (bug#16182).
4993
4994 2013-12-19 Juri Linkov <juri@jurta.org>
4995
4996 * replace.el (query-replace-read-args): Split a non-negative arg
4997 and a negative arg into separate elements.
4998 (query-replace, query-replace-regexp, replace-string)
4999 (replace-regexp): Add arg `backward'. Doc fix.
5000 (replace-match-maybe-edit): When new arg `backward' is non-nil,
5001 move point to the beginning of the match.
5002 (replace-search, replace-highlight): Use new arg `backward'
5003 to set the value of `isearch-forward'.
5004 (perform-replace): Add arg `backward' and use it to perform
5005 replacement backward. (Bug#14979)
5006
5007 * isearch.el (isearch-query-replace): Use a negative prefix arg
5008 to call `perform-replace' with a non-nil arg `backward'.
5009
5010 2013-12-18 Juri Linkov <juri@jurta.org>
5011
5012 * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
5013 to the default list. Move `log-edit-show-files' to the end.
5014 Add more available functions to options.
5015 (log-edit): Move default specific settings to
5016 `log-edit-insert-message-template'. Don't move point.
5017 (log-edit-insert-message-template): New function.
5018 (log-edit-insert-changelog): Add `save-excursion' and don't move point.
5019 (Bug#16170)
5020
5021 2013-12-18 Juri Linkov <juri@jurta.org>
5022
5023 * help-mode.el (help-mode-map): Bind "l" to help-go-back,
5024 and "r" to help-go-forward for compatibity with Info. (Bug#16178)
5025
5026 2013-12-18 Leo Liu <sdl.web@gmail.com>
5027
5028 * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
5029 (Bug#16186)
5030
5031 2013-12-18 Eli Zaretskii <eliz@gnu.org>
5032
5033 * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
5034 formats for displaying file sizes when the -s switch is given.
5035 Instead, compute a separate format for displaying the size in
5036 blocks, which is displayed in addition to the "regular" size.
5037 When -h is given in addition to -s, produce size in blocks in
5038 human-readable form as well. (Bug#16179)
5039
5040 2013-12-18 Tassilo Horn <tsdh@gnu.org>
5041
5042 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
5043 Reference tables with ~\ref{...} instead of only \ref{...}.
5044
5045 2013-12-18 Chong Yidong <cyd@gnu.org>
5046
5047 * cus-edit.el (custom-magic-alist): Fix "themed" description
5048 (Bug#14348).
5049
5050 * custom.el (custom-push-theme): If custom--inhibit-theme-enable
5051 is non-nil, do not create a new entry in the symbol's theme-value
5052 or theme-face property; update theme-settings only (Bug#14664).
5053 (custom-available-themes): Doc fix.
5054
5055 * cus-theme.el (custom-new-theme-mode-map): Add bindings
5056 (Bug#15674).
5057
5058 * replace.el (occur-engine): Avoid infloop (Bug#7593).
5059
5060 2013-12-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5061
5062 * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
5063 (Bug#13914).
5064
5065 2013-12-18 Shigeru Fukaya <shigeru.fukaya@gmail.com>
5066
5067 * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
5068
5069 2013-12-18 Glenn Morris <rgm@gnu.org>
5070
5071 * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
5072 * cus-start.el (load-prefer-newer): New option.
5073
5074 2013-12-18 Le Wang <l26wang@gmail.com>
5075
5076 * comint.el (comint-previous-matching-input-from-input):
5077 Retain point (Bug#13404).
5078
5079 2013-12-18 Chong Yidong <cyd@gnu.org>
5080
5081 * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
5082
5083 2013-12-18 Glenn Morris <rgm@gnu.org>
5084
5085 * mail/emacsbug.el (report-emacs-bug):
5086 Only mention enable-multibyte-characters if non-standard.
5087
5088 2013-12-17 Juri Linkov <juri@jurta.org>
5089
5090 * arc-mode.el (archive-extract-by-file): Check if directory exists
5091 before deletion to not show irrelevant errors if it doesn't exist.
5092
5093 2013-12-17 Juri Linkov <juri@jurta.org>
5094
5095 * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
5096 (Bug#14751)
5097
5098 * net/eww.el (browse-web): Add alias to `eww'.
5099 (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
5100 Bind "S-SPC" to `scroll-down-command'. (Bug#16178)
5101
5102 * net/browse-url.el (browse-url-browser-function): Move `eww'
5103 closer to similar functions.
5104
5105 * startup.el (fancy-startup-screen, fancy-about-screen):
5106 Set browse-url-browser-function to eww-browse-url locally.
5107 (Bug#14751)
5108
5109 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5110
5111 * window.el (window--pixel-to-total): Remove unused `mini' var.
5112 (maximize-window, minimize-window): Remove unused `pixelwise' arg.
5113 (split-window): Remove unused `new' var.
5114 (window--display-buffer): Remove unused `frame' and `delta' vars.
5115 (fit-window-to-buffer): Remove unused vars `frame', `display-height',
5116 and display-width'.
5117
5118 2013-12-17 Martin Rudalics <rudalics@gmx.at>
5119
5120 * dired.el (dired-mark-pop-up):
5121 * register.el (register-preview): Don't bind
5122 split-height-threshold here since it's now done in
5123 display-buffer-below-selected.
5124
5125 2013-12-17 oblique <psyberbits@gmail.com> (tiny change)
5126
5127 * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
5128 xterm-rgb-convert-to-16bit.
5129 (rxvt-register-default-colors): Standardize with
5130 xterm-register-default-colors (Bug#14078).
5131
5132 2013-12-17 Dima Kogan <dima@secretsauce.net> (tiny change)
5133
5134 * simple.el (kill-region): Pass mark first, then point, so that
5135 kill-append works right (Bug#12819).
5136 (copy-region-as-kill, kill-ring-save): Likewise.
5137
5138 2013-12-17 Leo Liu <sdl.web@gmail.com>
5139
5140 * net/rcirc.el (rcirc-add-face):
5141 * eshell/em-prompt.el (eshell-emit-prompt):
5142 * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
5143 (Bug#16167)
5144
5145 2013-12-17 Chong Yidong <cyd@gnu.org>
5146
5147 * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
5148 Suggested by Xue Fuqiao.
5149
5150 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5151
5152 * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
5153
5154 2013-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
5155
5156 * net/shr.el (shr-insert-document): Remove unused var
5157 `shr-preliminary-table-render'.
5158 (shr-rescale-image): Remove unused arg `force'.
5159 (shr-put-image): Update calls accordingly.
5160 (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
5161
5162 2013-12-17 Dmitry Gutov <dgutov@yandex.ru>
5163
5164 * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
5165 (smie-indent-close): Call `smie-indent--rule-1' with METHOD
5166 :close-all, to see which indentation method to use (Bug#16116).
5167 (smie-rules-function): Document the method :close-all.
5168
5169 2013-12-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
5170
5171 * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
5172
5173 * net/eww.el (eww-display-html): If we can't find the anchor we're
5174 looking for, then go to point-min.
5175
5176 2013-12-16 Paul Eggert <eggert@cs.ucla.edu>
5177
5178 Fix problems with CANNOT_DUMP and EMACSLOADPATH.
5179 * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
5180 * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
5181 Expand dir too, in case it's relative.
5182
5183 2013-12-16 Juri Linkov <juri@jurta.org>
5184
5185 * desktop.el (desktop-auto-save-timeout): Change default to
5186 `auto-save-timeout'. Doc fix.
5187 (desktop-save): Skip the timestamp in desktop-saved-frameset
5188 when checking for auto-save changes.
5189 (desktop-auto-save): Don't call desktop-auto-save-set-timer since
5190 `desktop-auto-save' is called repeatedly by the idle timer.
5191 (desktop-auto-save-set-timer): Replace `run-with-timer' with
5192 `run-with-idle-timer' and a non-nil arg REPEAT. Doc fix.
5193 (Bug#15331)
5194
5195 2013-12-16 Juri Linkov <juri@jurta.org>
5196
5197 * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
5198 (Bug#16035)
5199 (isearch-pre-command-hook): Check `this-command' for symbolp.
5200
5201 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5202
5203 * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
5204
5205 2013-12-16 Teodor Zlatanov <tzz@lifelogs.com>
5206
5207 * progmodes/cfengine.el (cfengine3--current-word): Remove.
5208 (cfengine3--current-function): Bring in the current-function
5209 functionality from `cfengine3--current-word'.
5210 (cfengine3-completion-function): Bring in the
5211 bounds-of-current-word functionality from
5212 `cfengine3--current-word'.
5213
5214 2013-12-16 Martin Rudalics <rudalics@gmx.at>
5215
5216 * window.el (display-buffer-below-selected):
5217 Bind split-height-threshold to 0 as suggested by Juri Linkov.
5218
5219 2013-12-16 Leo Liu <sdl.web@gmail.com>
5220
5221 * progmodes/compile.el (compile-goto-error): Do not push-mark.
5222 Remove NOMSG arg and all uses changed.
5223
5224 2013-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
5225
5226 * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
5227 (cua--deactivate-rectangle): Don't deactivate the mark.
5228 (cua-set-rectangle-mark): Don't set mark-active since
5229 cua--activate-rectangle already does it for us.
5230 (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
5231 non-rectangular region.
5232
5233 * emulation/cua-base.el (cua-repeat-replace-region):
5234 Use with-current-buffer.
5235
5236 * net/gnutls.el: Use cl-lib.
5237 (gnutls-negotiate): `mapcan' -> cl-mapcan.
5238
5239 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5240
5241 * emacs-lisp/package.el (package-built-in-p): Support both
5242 built-in and the package.el converted package descriptions.
5243 (package-show-package-list): Allow keywords.
5244 (package-keyword-button-action): Use it instead of
5245 `finder-list-matches'.
5246 (package-menu-filter-interactive): Interactive filtering (by
5247 keyword) function.
5248 (package-menu--generate): Support keywords and change keymappings
5249 and headers when they are given.
5250 (package--has-keyword-p): Helper function.
5251 (package-menu--refresh): Use it.
5252 (package--mapc): Helper function.
5253 (package-all-keywords): Use it.
5254 (package-menu-mode-map): Set up menu items and keybindings to
5255 provide a filtering UI.
5256
5257 2013-12-14 Teodor Zlatanov <tzz@lifelogs.com>
5258
5259 * net/gnutls.el (gnutls-verify-error): New defcustom to control
5260 the behavior when a certificate fails validation. Defaults to
5261 old behavior: never abort, just warn.
5262 (gnutls-negotiate): Use it.
5263
5264 2013-12-14 Martin Rudalics <rudalics@gmx.at>
5265
5266 * window.el (display-buffer-below-selected): Never split window
5267 horizontally. Suggested by Juri Linkov <juri@jurta.org>.
5268
5269 2013-12-14 Tom Willemse <tom@ryuslash.org> (tiny change)
5270
5271 * emacs-lisp/package.el (package--prepare-dependencies): New function.
5272 (package-buffer-info): Use it (bug#15108).
5273
5274 2013-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
5275
5276 * icomplete.el (icomplete-completions): Make sure the prefix is already
5277 displayed elsewhere before hiding it (bug#16219).
5278
5279 2013-12-14 Dmitry Gutov <dgutov@yandex.ru>
5280
5281 * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
5282 open-paren tokens when preceded by a open-paren, too.
5283 (ruby-smie-rules): Handle virtual indentation after open-paren
5284 tokens specially. If there is code between it and eol, return the
5285 column where is starts (Bug#16118).
5286
5287 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
5288
5289 * progmodes/cfengine.el: Fix `add-hook' doc.
5290 (cfengine-mode-syntax-functions-regex): Initialize sensibly.
5291 (cfengine3--current-word): Fix parameters.
5292 (cfengine3-make-syntax-cache): Simplify further.
5293 (cfengine3-completion-function, cfengine3--current-function):
5294 Use `assq' for symbols.
5295 (cfengine3--current-function): Fix `cfengine3--current-word' call.
5296
5297 2013-12-13 Glenn Morris <rgm@gnu.org>
5298
5299 * loadup.el (load-path): Warn if site-load or site-init changes it.
5300 No more need to reset it when bootstrapping.
5301
5302 2013-12-13 Teodor Zlatanov <tzz@lifelogs.com>
5303
5304 * progmodes/cfengine.el (cfengine-cf-promises): Add more default
5305 locations for cf-promises.
5306 (cfengine-mode-syntax-functions-regex): New caching variable.
5307 (cfengine3-fallback-syntax): Fallback syntax for cases where
5308 cf-promises doesn't run.
5309 (cfengine3--current-word): Reimplement using
5310 `cfengine-mode-syntax-functions-regex'.
5311 (cfengine3-completion-function, cfengine3--current-function):
5312 Use `cfengine3-make-syntax-cache' directly.
5313 (cfengine3-clear-syntax-cache): New function.
5314 (cfengine3-make-syntax-cache): Simplify and create
5315 `cfengine-mode-syntax-functions-regex' on demand.
5316 (cfengine3-format-function-docstring): Don't call
5317 `cfengine3-make-syntax-cache' explicitly.
5318
5319 2013-12-13 Martin Rudalics <rudalics@gmx.at>
5320
5321 Fix windmove-find-other-window broken after pixelwise resizing
5322 (Bug#16017).
5323 * windmove.el (windmove-other-window-loc): Revert change from
5324 2013-12-04.
5325 (windmove-find-other-window): Call window-in-direction.
5326 * window.el (window-in-direction): New arguments SIGN, WRAP and
5327 MINI to emulate original windmove-find-other-window behavior.
5328
5329 2013-12-13 Dmitry Gutov <dgutov@yandex.ru>
5330
5331 * simple.el (blink-matching--overlay): New variable.
5332 (blink-matching-open): Instead of moving point, highlight the
5333 matching paren with an overlay
5334 (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
5335
5336 * faces.el (paren-showing-faces, show-paren-match)
5337 (show-paren-mismatch): Move from paren.el.
5338
5339 2013-12-13 Leo Liu <sdl.web@gmail.com>
5340
5341 * indent.el (indent-region): Disable progress reporter in
5342 minibuffer. (Bug#16108)
5343
5344 * bindings.el (visual-order-cursor-movement): Fix version.
5345
5346 2013-12-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
5347
5348 * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
5349 Also match after beginning of line.
5350 (python-pdbtrack-set-tracked-buffer): Fix logic for remote
5351 files. Thanks to Russell Sim. (Bug#15378)
5352
5353 2013-12-13 Juri Linkov <juri@jurta.org>
5354
5355 * simple.el <Keypad support>: Remove key bindings duplicated
5356 with bindings.el. (Bug#14397)
5357
5358 2013-12-13 Juri Linkov <juri@jurta.org>
5359
5360 * comint.el (comint-mode-map): Replace `delete-char' with
5361 `delete-forward-char'. (Bug#16109)
5362
5363 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
5364
5365 * progmodes/python.el (python-indent-calculate-indentation):
5366 Fix de-denters cornercase. (Bug#15731)
5367
5368 2013-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
5369
5370 * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
5371 (advice--make): Pay attention to `depth'.
5372 (advice--make-1): Don't autoload commands eagerly.
5373 * emacs-lisp/elp.el (elp-instrument-function):
5374 * emacs-lisp/trace.el (trace-function-internal):
5375 * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
5376
5377 * iswitchb.el (iswitchb-mode): Don't belittle ido.
5378
5379 2013-12-12 Eli Zaretskii <eliz@gnu.org>
5380
5381 * term/w32-win.el (w32-handle-dropped-file):
5382 * startup.el (normal-top-level):
5383 * net/browse-url.el (browse-url-file-url):
5384 * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
5385 decode file names using 'utf-8' rather than
5386 file-name-coding-system.
5387
5388 2013-12-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
5389
5390 * progmodes/python.el (python-indent-context)
5391 (python-indent-calculate-indentation): Fix auto-identation
5392 behavior for comment blocks. (Bug#15916)
5393
5394 2013-12-12 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
5395
5396 * progmodes/python.el (python-indent-calculate-indentation):
5397 When determining indentation, don't treat "return", "pass", etc., as
5398 operators when they are just string constituents. (Bug#15812)
5399
5400 2013-12-12 Juri Linkov <juri@jurta.org>
5401
5402 * uniquify.el (uniquify-buffer-name-style): Change default to
5403 `post-forward-angle-brackets'.
5404
5405 * menu-bar.el (menu-bar-options-menu): Don't require preloaded
5406 `uniquify'. Change default to `post-forward-angle-brackets'.
5407
5408 2013-12-11 Glenn Morris <rgm@gnu.org>
5409
5410 * emacs-lisp/package.el (finder-list-matches):
5411 Autoload rather than falsely declaring.
5412
5413 2013-12-11 Teodor Zlatanov <tzz@lifelogs.com>
5414
5415 * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
5416 (eww-mode-map): Use them.
5417
5418 2013-12-11 Martin Rudalics <rudalics@gmx.at>
5419
5420 * window.el (display-buffer-in-side-window): Fix doc-string
5421 (Bug#16115).
5422
5423 2013-12-11 Juanma Barranquero <lekktu@gmail.com>
5424
5425 * vc/vc-git.el: Silence byte-compiler warnings.
5426 (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
5427 (log-edit-set-header): Declare.
5428
5429 2013-12-11 Eli Zaretskii <eliz@gnu.org>
5430
5431 * Makefile.in (custom-deps, finder-data): Run output file names
5432 through unmsys--file-name. (Bug#16099)
5433
5434 2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
5435
5436 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
5437 comment-start-skip, which fails when that uses submatch 1 (bug#16041).
5438
5439 * emulation/cua-base.el (cua-paste): Add `delete-selection' property
5440 instead of deleting the selection "by hand" (bug#16098).
5441 Rely on insert-for-yank to yank rectangles.
5442 (cua-highlight-region-shift-only): Mark obsolete.
5443 (cua-mode): Don't enable/disable transient-mark-mode,
5444 shift-select-mode (cua-mode works both with and without them), and
5445 pc-selection-mode (obsolete).
5446 * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
5447 (cua--deactivate-rectangle): Deactivate it.
5448
5449 * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
5450 (delete-selection-helper): Make sure yank starts at the top of the
5451 deleted region.
5452 (minibuffer-keyboard-quit): Use region-active-p.
5453
5454 * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
5455
5456 * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
5457 to `delete' (bug#16109).
5458
5459 2013-12-11 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5460
5461 * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
5462 info manual and show keybindings and set `:group' keyword.
5463
5464 2013-12-11 Juri Linkov <juri@jurta.org>
5465
5466 * delsel.el (delete-active-region): Let-bind `this-command'
5467 to prevent `kill-region' from changing its original value.
5468 (delete-selection-helper): Handle `overwrite-mode' for the type
5469 `kill' exactly the same way as for the type `t'.
5470 (insert-char, quoted-insert, reindent-then-newline-and-indent):
5471 Support more commands. (Bug#13312)
5472
5473 2013-12-11 Juri Linkov <juri@jurta.org>
5474
5475 * bindings.el: Map kp keys to non-kp keys systematically
5476 with basic modifiers control, meta and shift. (Bug#14397)
5477
5478 2013-12-11 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5479
5480 * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
5481 "Close browser" menu items. Fix wrong function of "List
5482 bookmarks".
5483
5484 2013-12-11 Juri Linkov <juri@jurta.org>
5485
5486 * misearch.el (multi-isearch-buffers): Set the value of
5487 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
5488 arg of isearch-forward to t.
5489 (multi-isearch-buffers-regexp): Set the value of
5490 `multi-isearch-buffer-list' globally. Set NO-RECURSIVE-EDIT
5491 arg of isearch-forward-regexp to t.
5492 (multi-isearch-files): Set the value of
5493 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
5494 arg of isearch-forward to t.
5495 (multi-isearch-files-regexp): Set the value of
5496 `multi-isearch-file-list' globally. Set NO-RECURSIVE-EDIT
5497 arg of isearch-forward-regexp to t. (Bug#16035)
5498
5499 * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
5500 arg of isearch-forward to t.
5501 (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
5502 arg of isearch-forward-regexp to t.
5503 (dired-isearch-filter-filenames): Remove unnecessary check for
5504 `dired-isearch-filenames'.
5505
5506 * comint.el (comint-history-isearch-backward):
5507 Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
5508 (comint-history-isearch-backward-regexp):
5509 Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
5510
5511 2013-12-10 Eli Zaretskii <eliz@gnu.org>
5512
5513 * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
5514 unmsys--file-name. (Bug#16099)
5515
5516 2013-12-10 Teodor Zlatanov <tzz@lifelogs.com>
5517
5518 * emacs-lisp/package.el (package-keyword-button-action):
5519 Remove finder.el require dependency.
5520
5521 2013-12-09 Teodor Zlatanov <tzz@lifelogs.com>
5522
5523 * emacs-lisp/package.el: Require finder.el.
5524 (describe-package-1): Add keyword buttons.
5525 (package-make-button): New convenience function.
5526 (package-keyword-button-action): Keyword button action using
5527 `finder-list-matches'.
5528
5529 2013-12-09 Eli Zaretskii <eliz@gnu.org>
5530
5531 * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
5532 last commit.
5533
5534 2013-12-09 Michael Albinus <michael.albinus@gmx.de>
5535
5536 * autorevert.el (auto-revert-notify-add-watch): Do not handle
5537 symlinked files.
5538
5539 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
5540
5541 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
5542 after the end of a percent literal.
5543
5544 2013-12-09 Cameron Desautels <camdez@gmail.com> (tiny change)
5545
5546 * progmodes/ruby-mode.el (ruby-forward-string): Document.
5547 Handle caret-delimited strings (Bug#16079).
5548
5549 2013-12-09 Dmitry Gutov <dgutov@yandex.ru>
5550
5551 * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
5552 When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
5553 `ruby-parse-partial' (Bug#16078).
5554
5555 2013-12-09 Leo Liu <sdl.web@gmail.com>
5556
5557 * subr.el (read-passwd): Disable show-paren-mode. (Bug#16091)
5558
5559 2013-12-08 Dmitry Gutov <dgutov@yandex.ru>
5560
5561 * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
5562 (js-switch-indent-offset): New option.
5563 (js--proper-indentation): Use it. And handle the case when
5564 "default" is actually a key in an object literal.
5565 (js--same-line): New function.
5566 (js--multi-line-declaration-indentation): Use it.
5567 (js--indent-in-array-comp, js--array-comp-indentation):
5568 New functions.
5569 (js--proper-indentation): Use them, to handle array comprehension
5570 continuations.
5571
5572 2013-12-08 Leo Liu <sdl.web@gmail.com>
5573
5574 * progmodes/flymake.el (flymake-highlight-line): Re-write.
5575 (flymake-make-overlay): Remove arg MOUSE-FACE.
5576 (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
5577
5578 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5579
5580 * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
5581 New function.
5582 (redisplay-highlight-region-function): Use it.
5583
5584 * emulation/cua-base.el (cua--explicit-region-start)
5585 (cua--last-region-shifted): Remove.
5586 (cua--deactivate): Use deactivate-mark.
5587 (cua--pre-command-handler-1): Don't handle shift-selection.
5588 (cua--post-command-handler-1): Don't change transient-mark-mode.
5589 (cua--select-keymaps): Use region-active-p rather than
5590 cua--explicit-region-start or cua--last-region-shifted.
5591 (cua-mode): Enable shift-select-mode.
5592
5593 2013-12-08 Leo Liu <sdl.web@gmail.com>
5594
5595 * progmodes/flymake.el (flymake-popup-current-error-menu):
5596 Rename from flymake-display-err-menu-for-current-line. Reimplement.
5597 (flymake-posn-at-point-as-event, flymake-popup-menu)
5598 (flymake-make-emacs-menu): Remove. (Bug#16077)
5599
5600 2013-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5601
5602 * rect.el (rectangle-mark-mode): Activate mark even if
5603 transient-mark-mode is off (bug#16066).
5604 (rectangle--highlight-for-redisplay): Fix boundary condition when point
5605 is > mark and at bolp.
5606
5607 * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
5608 (region-extract-function): Use it.
5609 (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
5610 (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
5611 Delete functions.
5612 (cua--init-rectangles): Don't re-remap copy-region-as-kill,
5613 kill-ring-save, kill-region, delete-char, delete-forward-char.
5614 Ignore self-insert-iso.
5615
5616 * emulation/cua-gmrk.el (cua--init-global-mark):
5617 Ignore `self-insert-iso'.
5618
5619 * emulation/cua-base.el (cua--prefix-copy-handler)
5620 (cua--prefix-cut-handler): Rely on region-extract-function rather than
5621 checking cua--rectangle.
5622 (cua-delete-region): Use region-extract-function.
5623 (cua-replace-region): Delete function.
5624 (cua-copy-region, cua-cut-region): Obey region-extract-function.
5625 (cua--pre-command-handler-1): Don't do the delete-selection thing.
5626 (cua--self-insert-char-p): Ignore `self-insert-iso'.
5627 (cua--init-keymaps): Don't remap delete-selection commands.
5628 (cua-mode): Use delete-selection-mode instead of rolling our own
5629 (bug#16085).
5630
5631 * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
5632 Obey region-extract-function.
5633
5634 Make registers and delete-selection-mode work on rectangles.
5635 * register.el (describe-register-1): Don't modify the register's value.
5636 (copy-to-register): Obey region-extract-function.
5637 * delsel.el (delete-active-region): Obey region-extract-function.
5638
5639 2013-12-08 Leo Liu <sdl.web@gmail.com>
5640
5641 * progmodes/flymake.el (flymake, flymake-error-bitmap)
5642 (flymake-warning-bitmap, flymake-fringe-indicator-position)
5643 (flymake-compilation-prevents-syntax-check)
5644 (flymake-start-syntax-check-on-newline)
5645 (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
5646 (flymake-start-syntax-check-on-find-file, flymake-log-level)
5647 (flymake-xml-program, flymake-master-file-dirs)
5648 (flymake-master-file-count-limit)
5649 (flymake-allowed-file-name-masks): Relocate.
5650 (flymake-makehash, flymake-float-time)
5651 (flymake-replace-regexp-in-string, flymake-split-string)
5652 (flymake-get-temp-dir): Remove.
5653 (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
5654 (flymake-current-row, flymake-selected-frame)
5655 (flymake-get-point-pixel-pos): Remove xemacs compatibity and
5656 related functions. (Bug#16077)
5657
5658 2013-12-07 Bozhidar Batsov <bozhidar@batsov.com>
5659
5660 * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
5661
5662 2013-12-07 Tassilo Horn <tsdh@gnu.org>
5663
5664 * help-fns.el (describe-function-1): Use new advice-* functions
5665 rather than old ad-* functions. Fix function type description and
5666 source links for advised functions and subrs.
5667
5668 2013-12-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
5669
5670 * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
5671
5672 2013-12-06 Michael Albinus <michael.albinus@gmx.de>
5673
5674 * progmodes/compile.el (compilation-start):
5675 * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
5676
5677 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5678 Handle long command lines, lasting from "sh -c ...". (Bug#16045)
5679
5680 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5681
5682 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
5683 Touch up the last change.
5684
5685 2013-12-06 Leo Liu <sdl.web@gmail.com>
5686
5687 * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
5688 (inferior-octave-startup): Always use "octave> " for prompt.
5689 (octave-goto-function-definition)
5690 (octave-sync-function-file-names)
5691 (octave-find-definition-default-filename): Remove redundant backquotes.
5692
5693 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5694
5695 * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
5696 syntax for `?'.
5697 (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
5698 where appropriate already.
5699 (ruby-syntax-propertize-function): Propertize `?' and `!' at the
5700 end of method names (Bug#15874).
5701
5702 2013-12-06 Juri Linkov <juri@jurta.org>
5703
5704 * isearch.el (isearch--saved-overriding-local-map):
5705 New internal variable.
5706 (isearch-mode): Set it to the initial value of
5707 `overriding-terminal-local-map'.
5708 (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
5709 with `isearch--saved-overriding-local-map'. (Bug#16035)
5710
5711 2013-12-06 Dmitry Gutov <dgutov@yandex.ru>
5712
5713 * progmodes/octave.el (inferior-octave-completion-table):
5714 Turn back into function, use `completion-table-with-cache'
5715 (Bug#11906). Update all references.
5716
5717 * minibuffer.el (completion-table-with-cache): New function.
5718
5719 2013-12-05 Cameron Desautels <camdez@gmail.com> (tiny change)
5720
5721 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
5722
5723 2013-12-05 Teodor Zlatanov <tzz@lifelogs.com>
5724
5725 * net/eww.el (eww-current-source): New variable to store page
5726 source.
5727 (eww-display-html, eww-mode, eww-save-history)
5728 (eww-restore-history): Use it.
5729 (eww-view-source): New command to view page source.
5730 Opportunistically uses `html-mode' to highlight the buffer.
5731 (eww-mode-map): Install it.
5732
5733 2013-12-05 Michael Albinus <michael.albinus@gmx.de>
5734
5735 * net/dbus.el (dbus-unregister-service)
5736 (dbus-escape-as-identifier, dbus-unescape-from-identifier):
5737 Fix docstring.
5738 (dbus-unregister-service): Skip :serial entries in
5739 `dbus-registered-objects-table'.
5740 (dbus-byte-array-to-string): New optional arg MULTIBYTE.
5741
5742 2013-12-04 Teodor Zlatanov <tzz@lifelogs.com>
5743
5744 * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
5745 around keywords with extra `split-string' argument.
5746
5747 2013-12-04 Martin Rudalics <rudalics@gmx.at>
5748
5749 * windmove.el (windmove-other-window-loc): Handle navigation
5750 between windows (excluding the minibuffer window - Bug#16017).
5751
5752 2013-12-04 Michael Albinus <michael.albinus@gmx.de>
5753
5754 * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
5755 in D-Bus type syntax.
5756 (dbus-unescape-from-identifier): Use `byte-to-string' in order to
5757 preserve unibyte strings. (Bug#16048)
5758
5759 2013-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
5760
5761 * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
5762 Call force-mode-line-update is the proper buffer (bug#16042).
5763
5764 2013-12-04 Dmitry Gutov <dgutov@yandex.ru>
5765
5766 * vc/log-edit.el (log-edit-add-new-comment): Rename to
5767 `log-edit-remember-comment', make argument optional. Adjust all
5768 callers.
5769 (log-edit-mode): Add `log-edit-remember-comment' to
5770 `kill-buffer-hook' locally.
5771 (log-edit-kill-buffer): Don't remember comment explicitly since
5772 the buffer is killed anyway.
5773
5774 2013-12-04 Juri Linkov <juri@jurta.org>
5775
5776 * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
5777 add-hook and remove-hook for multi-buffer search. (Bug#16035)
5778
5779 2013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
5780
5781 * notifications.el (notifications-close-notification): Call the
5782 D-Bus method with ID being a `:uint32'. (Bug#16030)
5783
5784 2013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
5785
5786 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
5787
5788 2013-12-03 Juri Linkov <juri@jurta.org>
5789
5790 * progmodes/compile.el (compilation-start): Rename window alist
5791 entry `no-display-ok' to `allow-no-window'.
5792
5793 * simple.el (shell-command): Add window alist entry
5794 `allow-no-window' to `display-buffer'.
5795 (async-shell-command): Doc fix.
5796
5797 * window.el (display-buffer-no-window): New action function.
5798 (display-buffer-alist, display-buffer): Doc fix. (Bug#13594)
5799
5800 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5801
5802 * vc/log-edit.el (log-edit-set-header): Extract from
5803 `log-edit-toggle-header'.
5804 (log-edit-extract-headers): Separate the summary, when extracted
5805 from header, from the rest of the message with an empty line.
5806
5807 * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
5808 line, if present, to the Summary header.
5809
5810 2013-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5811
5812 * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
5813 in current-buffer (bug#16029).
5814
5815 2013-12-02 Helmut Eller <eller.helmut@gmail.com>
5816
5817 * emacs-lisp/debug.el (debugger-toggle-locals): New command.
5818 (debugger-mode-map): Bind it.
5819 (debugger--backtrace-base): New function.
5820 (debugger-eval-expression): Use it.
5821 (debugger-frame-number): Skip local vars when present.
5822 (debugger--locals-visible-p, debugger--insert-locals)
5823 (debugger--show-locals, debugger--hide-locals): New functions.
5824
5825 2013-12-02 Michael Albinus <michael.albinus@gmx.de>
5826
5827 * net/tramp-sh.el (tramp-remote-process-environment): Do not set
5828 "LC_ALL".
5829 (tramp-get-remote-locale): New defun.
5830 (tramp-open-connection-setup-interactive-shell): Use it.
5831
5832 2013-12-02 Leo Liu <sdl.web@gmail.com>
5833
5834 * subr.el (process-live-p): Return nil for non-process. (Bug#16023)
5835
5836 * progmodes/sh-script.el (sh-shell-process):
5837 * progmodes/octave.el (inferior-octave-process-live-p):
5838 * progmodes/gdb-mi.el (gdb-delchar-or-quit)
5839 (gdb-inferior-io-sentinel):
5840 * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
5841
5842 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5843
5844 * vc/log-edit.el (log-edit-kill-buffer): Move the use of
5845 `save-selected-window' to `log-edit-hide-buf'. This makes
5846 `log-edit-show-files' idempotent.
5847 (log-edit-show-files): Mark the new window as dedicated.
5848
5849 2013-12-02 Dmitry Gutov <dgutov@yandex.ru>
5850
5851 * vc/log-edit.el (log-edit-mode-map): Add binding for
5852 `log-edit-kill-biffer'.
5853 (log-edit-hide-buf): Add a FIXME comment.
5854 (log-edit-add-new-comment): New function, extracted from
5855 `log-edit-done'.
5856 (log-edit-done, log-edit-add-to-changelog): Use it.
5857 (log-edit-kill-buffer): New command.
5858
5859 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5860
5861 * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
5862 instead of killing the buffer.
5863
5864 2013-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5865
5866 * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
5867
5868 2013-12-01 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5869
5870 * net/eww.el (eww-form-checkbox-selected-symbol)
5871 (eww-form-checkbox-symbol): New customizable variable.
5872 (eww-form-checkbox, eww-toggle-checkbox):
5873 Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
5874
5875 * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
5876 (shr--get-media-pref, shr--extract-best-source): New function.
5877 (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
5878 no :src tag was specified.
5879
5880 * net/eww.el (eww-use-external-browser-for-content-type): New variable.
5881 (eww-render): Handle `eww-use-external-browser-for-content-type'.
5882 Use \\` to match beginning of string instead of ^.
5883 (eww-browse-with-external-browser): Provide optional URL parameter.
5884 (eww-render): Set `eww-current-title' back to "".
5885
5886 * net/shr.el (shr-tag-video): Display content for video if no
5887 poster is available.
5888 (shr-tag-audio): Add support for <audio> tag.
5889
5890 * net/eww.el (eww-text-input-types): New const.
5891 (eww-process-text-input): Treat input types in
5892 `eww-text-input-types' as text.
5893
5894 * net/shr.el (shr-tag-table): Fix comment typo.
5895
5896 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5897
5898 * net/eww.el (eww-follow-link): New command to avoid reloading
5899 pages when we follow #target links (bug#15243).
5900 (eww-quit): Special mode buffers shouldn't query before exiting.
5901
5902 2013-12-01 Kenjiro NAKAYAMA <nakayamakenjiro@gmail.com>
5903
5904 * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
5905 forms.
5906
5907 2013-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
5908
5909 * net/eww.el (eww-restore-history): Update the window title after
5910 moving in the history.
5911 (eww-current-dom): New variable used to save the current DOM.
5912
5913 2013-12-01 Dmitry Gutov <dgutov@yandex.ru>
5914
5915 * vc/log-edit.el (log-edit-mode-map): Add binding for
5916 `log-edit-beginning-of-line'.
5917 (log-edit-setup-add-author): New user option.
5918 (log-edit-beginning-of-line): New command.
5919 (log-edit): Move major mode call above the contents setup so that
5920 the local variable values are already applied.
5921 (log-edit): Only insert "Author: " when
5922 `log-edit-setup-add-author' is non-nil.
5923 (log-edit): When SETUP is non-nil, position point after ": "
5924 instead of point-min.
5925
5926 2013-12-01 Glenn Morris <rgm@gnu.org>
5927
5928 * startup.el (command-line): Warn if ~/emacs.d is in load-path.
5929
5930 2013-11-30 Eli Zaretskii <eliz@gnu.org>
5931
5932 * startup.el (fancy-splash-frame): On MS-Windows, trigger
5933 redisplay to make sure the initial frame gets a chance to become
5934 visible. (Bug#16014)
5935
5936 2013-11-30 Martin Rudalics <rudalics@gmx.at>
5937
5938 Support resizing frames and windows pixelwise.
5939 * cus-start.el (frame-resize-pixelwise)
5940 (window-resize-pixelwise): New entries.
5941 * emacs-lisp/debug.el (debug): Use window-total-height instead
5942 of window-total-size.
5943 * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
5944 * help.el (describe-bindings-internal): Use help-buffer as
5945 argument for with-help-window.
5946 (temp-buffer-max-width): New option.
5947 (resize-temp-buffer-window, help-window-setup)
5948 (with-help-window): Rewrite.
5949 * mouse.el (mouse-drag-line): Rewrite. Add key bindings for
5950 dragging dividers.
5951 * window.el (frame-char-size, window-min-pixel-height)
5952 (window-safe-min-pixel-height, window-safe-min-pixel-width)
5953 (window-min-pixel-width, window-safe-min-pixel-size)
5954 (window-combination-p, window-safe-min-size)
5955 (window-resizable-p, window--size-to-pixel)
5956 (window--pixel-to-size, window--resize-apply-p): New functions.
5957 (window-safe-min-height): Fix doc-string.
5958 (window-size, window-min-size, window--min-size-1)
5959 (window-sizable, window-sizable-p, window--min-delta-1)
5960 (window-min-delta, window--max-delta-1, window-max-delta)
5961 (window--resizable, window--resizable-p, window-resizable)
5962 (window-full-height-p, window-full-width-p, window-at-side-p)
5963 (window--in-direction-2, window-in-direction)
5964 (window--resize-reset-1, window--resize-mini-window)
5965 (window-resize, window-resize-no-error)
5966 (window--resize-child-windows-normal)
5967 (window--resize-child-windows, window--resize-siblings)
5968 (window--resize-this-window, window--resize-root-window)
5969 (window--resize-root-window-vertically)
5970 (adjust-window-trailing-edge, enlarge-window, shrink-window)
5971 (maximize-window, minimize-window, delete-window)
5972 (quit-restore-window, window-split-min-size, split-window)
5973 (balance-windows-2, balance-windows)
5974 (balance-windows-area-adjust, balance-windows-area)
5975 (window--state-get-1, window-state-get, window--state-put-1)
5976 (window--state-put-2, window-state-put)
5977 (display-buffer-record-window, window--display-buffer):
5978 Make functions handle pixelwise sizing of windows.
5979 (display-buffer--action-function-custom-type)
5980 (display-buffer-fallback-action):
5981 Add display-buffer-in-previous-window.
5982 (display-buffer-use-some-window): Resize window to height it had
5983 before.
5984 (fit-window-to-buffer-horizontally): New option.
5985 (fit-frame-to-buffer): Describe new values.
5986 (fit-frame-to-buffer-bottom-margin): Replace with
5987 fit-frame-to-buffer-margins.
5988 (window--sanitize-margin): New function.
5989 (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
5990 using window-text-pixel-size.
5991
5992 2013-11-30 Glenn Morris <rgm@gnu.org>
5993
5994 * emacs-lisp/bytecomp.el (byte-compile-form):
5995 Make the `interactive-only' warning like the `obsolete' one.
5996 * comint.el (comint-run):
5997 * files.el (insert-file-literally, insert-file):
5998 * replace.el (replace-string, replace-regexp):
5999 * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
6000 (goto-line, insert-buffer, next-line, previous-line):
6001 Tweak `interactive-only' spec.
6002
6003 Stop keeping (most) generated cedet grammar files in the repository.
6004 * Makefile.in (semantic): New.
6005 (compile-main): Depend on semantic.
6006
6007 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6008
6009 * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
6010 available. Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
6011
6012 * uniquify.el (uniquify-buffer-name-style): Change default.
6013
6014 * loadup.el: Preload "uniquify".
6015
6016 * time.el (display-time-update): Update all mode lines (bug#15999).
6017
6018 * electric.el (electric-indent-mode): Enable by default.
6019 * loadup.el: Preload "electric".
6020
6021 2013-11-29 Bozhidar Batsov <bozhidar@batsov.com>
6022
6023 * emacs-lisp/helpers.el (string-empty-p): New function.
6024 (string-blank-p): New function.
6025
6026 2013-11-29 Andreas Politz <politza@hochschule-trier.de>
6027
6028 * imenu.el (imenu--index-alist): Add missing dot to the docstring
6029 (Bug#14029).
6030
6031 2013-11-29 Andreas Politz <politza@fh-trier.de>
6032 * imenu.el (imenu--subalist-p): Don't error on non-conses and
6033 allow non-lambda lists as functions.
6034 (imenu--in-alist): Don't recurse into non-subalists.
6035 (imenu): Don't pass function itself as an argument (Bug#14029).
6036
6037 2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6038
6039 * progmodes/python.el (python-mode-map): Remove binding for ":".
6040 (python-indent-electric-colon): Remove command.
6041 (python-indent-post-self-insert-function): Integrate the previous code
6042 of python-indent-electric-colon. Make it conditional on
6043 electric-indent-mode.
6044 (python-mode): Add ?: to electric-indent-chars.
6045 Move python-indent-post-self-insert-function to the end of
6046 post-self-insert-hook.
6047
6048 2013-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6049
6050 * doc-view.el (doc-view-goto-page): Update mode-line.
6051
6052 * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
6053
6054 2013-11-27 Glenn Morris <rgm@gnu.org>
6055
6056 * international/charprop.el, international/uni-bidi.el:
6057 * international/uni-category.el, international/uni-combining.el:
6058 * international/uni-comment.el, international/uni-decimal.el:
6059 * international/uni-decomposition.el, international/uni-digit.el:
6060 * international/uni-lowercase.el, international/uni-mirrored.el:
6061 * international/uni-name.el, international/uni-numeric.el:
6062 * international/uni-old-name.el, international/uni-titlecase.el:
6063 * international/uni-uppercase.el:
6064 Remove generated files from VCS repository.
6065
6066 2013-11-27 Eli Zaretskii <eliz@gnu.org>
6067
6068 * filenotify.el (file-notify-add-watch): Don't special-case
6069 w32notify when computing the directory to watch.
6070
6071 2013-11-27 Glenn Morris <rgm@gnu.org>
6072
6073 Make bootstrap without generated uni-*.el files possible again.
6074 * loadup.el: Update command-line-args checking for unidata-gen.
6075 Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
6076 * composite.el, international/characters.el:
6077 Handle unicode tables being undefined.
6078
6079 Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
6080 * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
6081 (compile-main): Depend on leim rule.
6082 (leim): New rule.
6083 * loadup.el: Move leim-list.el to leim/ subdirectory.
6084 * startup.el (normal-top-level): No more leim directory.
6085 * international/ja-dic-cnv.el (skkdic-convert):
6086 Disable version-control and autoloads in output files.
6087 * international/titdic-cnv.el (titdic-convert, miscdic-convert):
6088 Disable version-control and autoloads in output files.
6089 * leim/quail: Move here from ../leim.
6090 * leim/quail/hangul.el (hangul-input-method-activate):
6091 Add autoload cookie.
6092 (generated-autoload-load-name): Set file-local value.
6093 * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
6094 (generated-autoload-load-name): Set file-local value.
6095
6096 2013-11-26 Kenjiro NAKAYAMA <knakayam@redhat.com>
6097
6098 * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
6099 (eww-add-bookmark): Ask confirmation when add to bookmarks.
6100 (eww-quit): Ask confirmation before quitting eww.
6101
6102 2013-11-26 Eli Zaretskii <eliz@gnu.org>
6103
6104 * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
6105 reading output from Diff on MS-Windows and MS-DOS.
6106
6107 2013-11-26 Bozhidar Batsov <bozhidar@batsov.com>
6108
6109 * emacs-lisp/helpers.el (string-reverse): New function.
6110
6111 2013-11-26 Michael Albinus <michael.albinus@gmx.de>
6112
6113 * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
6114 names on MS Windows, like "/[::1]:".
6115
6116 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
6117 SWITCHES.
6118
6119 2013-11-26 Glenn Morris <rgm@gnu.org>
6120
6121 * progmodes/python.el (python-indent-guess-indent-offset):
6122 Avoid corner-case error. (Bug#15975)
6123
6124 Preload leim-list.el. (Bug#4789)
6125 * loadup.el: Load leim-list.el when found.
6126 * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
6127
6128 2013-11-25 Bozhidar Batsov <bozhidar@batsov.com>
6129
6130 * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
6131
6132 * emacs-lisp/helpers.el (string-join): New function.
6133
6134 2013-11-25 Sebastian Wiesner <lunaryorn@gmail.com> (tiny change)
6135
6136 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6137 Mark as obsolete and replace it with a symbol property.
6138 (byte-compile-form): Use new 'interactive-only property.
6139 * comint.el, files.el, replace.el, simple.el:
6140 Apply new 'interactive-only properly.
6141
6142 2013-11-25 Martin Rudalics <rudalics@gmx.at>
6143
6144 * window.el (display-buffer-at-bottom): Make sure that
6145 split-window-sensibly creates the new window on bottom
6146 (Bug#15961).
6147
6148 2013-11-23 David Kastrup <dak@gnu.org>
6149
6150 * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
6151 on the conflict markers when available.
6152 (smerge--get-marker): New function.
6153 (smerge-end-re, smerge-base-re): Add subgroup.
6154
6155 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6156
6157 * frame.el (handle-focus-in, handle-focus-out): Add missing
6158 interactive spec.
6159
6160 2013-11-25 Michael Albinus <michael.albinus@gmx.de>
6161
6162 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6163 `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
6164
6165 2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
6166
6167 * play/gomoku.el: Don't use intangible property. Use lexical-binding.
6168 (gomoku--last-pos): New var.
6169 (gomoku--intangible-chars): New const.
6170 (gomoku--intangible): New function.
6171 (gomoku-mode): Use it. Derive from special-mode.
6172 (gomoku-move-up): Adjust line count.
6173 (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
6174 (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
6175 Simplify accordingly.
6176
6177 * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
6178 Remove blink-cursor code.
6179 (blink-cursor-timer-function, blink-cursor-suspend):
6180 Don't special-case GUIs.
6181 (blink-cursor-mode): Use focus-in/out-hook.
6182
6183 2013-11-25 Dmitry Gutov <dgutov@yandex.ru>
6184
6185 * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
6186 work when annotation is invisible (Bug#13886).
6187
6188 2013-11-24 Simon Schubert <2@0x2c.org> (tiny change)
6189
6190 * json.el (json-alist-p): Only return non-nil if the alist has
6191 simple keys (Bug#13518).
6192
6193 2013-11-24 Mihir Rege <mihirrege@gmail.com> (tiny change)
6194
6195 * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
6196 when control-statement is the first statement in a buffer (Bug#15956).
6197
6198 2013-11-24 Dmitry Gutov <dgutov@yandex.ru>
6199
6200 * imenu.el (imenu-generic-skip-comments-and-strings):
6201 New option (Bug#15560).
6202 (imenu--generic-function): Use it.
6203
6204 2013-11-24 Jorgen Schaefer <contact@jorgenschaefer.de>
6205
6206 * minibuffer.el (completion--in-region-1): Scroll the correct window.
6207 (Bug#13898)
6208
6209 2013-11-24 Bozhidar Batsov <bozhidar@batsov.com>
6210
6211 * emacs-lisp/helpers.el: Add some string helpers.
6212 (string-trim-left): Removes leading whitespace.
6213 (string-trim-right): Removes trailing whitespace.
6214 (string-trim): Removes leading and trailing whitespace.
6215
6216 * subr.el (string-suffix-p): New function.
6217
6218 2013-11-23 Glenn Morris <rgm@gnu.org>
6219
6220 * progmodes/python.el (python-shell-send-file):
6221 Add option to delete file when done. (Bug#15647)
6222 (python-shell-send-string, python-shell-send-region): Use it.
6223
6224 2013-11-23 Ivan Shmakov <ivan@siamics.net> (tiny change)
6225
6226 * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
6227 to set buffer-read-only to t, never to nil. (Bug#15938)
6228
6229 * textmodes/tex-mode.el (latex-noindent-environments):
6230 Add safe-local-variable property. (Bug#15936)
6231
6232 2013-11-23 Glenn Morris <rgm@gnu.org>
6233
6234 * textmodes/enriched.el (enriched-mode): Doc fix.
6235 * emacs-lisp/authors.el (authors-renamed-files-alist):
6236 Add enriched.doc -> enriched.txt.
6237
6238 * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
6239
6240 2013-11-22 Leo Liu <sdl.web@gmail.com>
6241
6242 * progmodes/octave.el (inferior-octave-startup): Spit out error
6243 message.
6244
6245 2013-11-22 Bozhidar Batsov <bozhidar@batsov.com>
6246
6247 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
6248 Improve docstring.
6249 Add :version.
6250 (ruby-encoding-magic-comment-style): Add :version.
6251
6252 2013-11-22 Leo Liu <sdl.web@gmail.com>
6253
6254 * progmodes/octave.el (octave-operator-regexp): Exclude newline.
6255 (Bug#15076)
6256 (octave-help-mode): Adapt to change to help-mode-finish to use
6257 derived-mode-p on 2013-09-17.
6258 (inferior-octave-prompt): Also match octave-gui.
6259 (octave-kill-process): Don't ask twice. (Bug#10564)
6260
6261 2013-11-22 Leo Liu <sdl.web@gmail.com>
6262
6263 * progmodes/octave.el (inferior-octave-process-live-p): New helper.
6264 (inferior-octave-startup, inferior-octave-check-process)
6265 (inferior-octave-track-window-width-change)
6266 (octave-completion-at-point, octave-eldoc-function): Use it.
6267 (octave-kill-process): Provide confirmation. (Bug#10564)
6268
6269 2013-11-21 Leo Liu <sdl.web@gmail.com>
6270
6271 * progmodes/octave.el (octave-mode, inferior-octave-mode):
6272 Fix obsolete variable comment-use-global-state.
6273
6274 2013-11-21 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6275
6276 * progmodes/octave.el (octave-mode-map, octave-mode-menu):
6277 Add `octave-source-file'.
6278 (octave-source-file): New function. (Bug#15935)
6279
6280 2013-11-21 Kenjiro Nakayama <nakayamakenjiro@gmail.com>
6281
6282 * net/eww.el (eww-local-regex): New variable.
6283 (eww): Use it to detect localhost and similar.
6284
6285 2013-11-21 Leo Liu <sdl.web@gmail.com>
6286
6287 Add completion for command `ag'.
6288 * pcmpl-x.el (pcmpl-x-ag-options): New variable.
6289 (pcomplete/ag): New function.
6290 (pcmpl-x-ag-options): New function. Handle `[no]' in long options.
6291
6292 2013-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6293
6294 * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
6295 (bug#14646).
6296 (make-obsolete): Remove interactive spec.
6297
6298 2013-11-21 Glenn Morris <rgm@gnu.org>
6299
6300 * startup.el (command-line-1): Use path-separator with -L.
6301
6302 2013-11-20 Teodor Zlatanov <tzz@lifelogs.com>
6303
6304 * emacs-lisp/package.el (describe-package-1): Add package archive
6305 to shown fields.
6306
6307 2013-11-20 Bozhidar Batsov <bozhidar@batsov.com>
6308
6309 * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
6310 Change default to "# encoding: %s" to differentiate it from the
6311 default Ruby encoding comment template.
6312
6313 2013-11-20 era eriksson <era+emacsbugs@iki.fi>
6314
6315 * ses.el (ses-mode): Doc fix. (Bug#14748)
6316
6317 2013-11-20 Leo Liu <sdl.web@gmail.com>
6318
6319 * window.el (display-buffer-alist): Doc fix. (Bug#13594)
6320
6321 2013-11-19 Dan Nicolaescu <dann@gnu.org>
6322
6323 * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
6324 when rebase or bisect are in progress.
6325
6326 2013-11-19 Xue Fuqiao <xfq.free@gmail.com>
6327
6328 * filenotify.el (file-notify-add-watch): Doc fix.
6329
6330 2013-11-19 Leo Liu <sdl.web@gmail.com>
6331
6332 * obsolete/rcompile.el: Mark obsolete.
6333
6334 * progmodes/compile.el (compilation-start)
6335 (compilation-goto-locus, compilation-find-file):
6336 Pass no-display-ok and handle nil value from display-buffer.
6337 (Bug#13594)
6338
6339 * window.el (display-buffer-alist, display-buffer): Document the
6340 new parameter no-display-ok. Return either a window or nil
6341 but never a non-window value.
6342
6343 2013-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
6344
6345 * electric.el (electric-indent-mode-map): Remove.
6346 (electric-indent-mode): Change the global-map instead (bug#15915).
6347
6348 * textmodes/text-mode.el (paragraph-indent-minor-mode):
6349 Use add-function.
6350
6351 2013-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
6352
6353 * emacs-lisp/nadvice.el (remove-function): Align with
6354 add-function's behavior.
6355
6356 * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
6357 (gdb--string-regexp): New constant.
6358 (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
6359 (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
6360 (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
6361 submatch 1.
6362 (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
6363 Adjust use accordingly.
6364 (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
6365
6366 2013-11-17 Adam Sokolnicki <adam.sokolnicki@gmail.com> (tiny change)
6367
6368 * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
6369 interpolation curlies (Bug#15914).
6370
6371 2013-11-17 Jay Belanger <jay.p.belanger@gmail.com>
6372
6373 * calc/calc.el (calc-context-sensitive-enter): New variable.
6374 (calc-enter): Use `calc-context-sensitive-enter'.
6375
6376 2013-11-16 Teodor Zlatanov <tzz@lifelogs.com>
6377
6378 * progmodes/cfengine.el: Version bump.
6379 (cfengine-cf-promises): New defcustom to locate cf-promises.
6380 (cfengine3-vartypes): Add new "data" type.
6381 (cfengine3--current-word): New function to get current name-like
6382 word or its bounds.
6383 (cfengine3--current-function): New function to look up a CFEngine
6384 function's definition.
6385 (cfengine3-format-function-docstring): New function.
6386 (cfengine3-make-syntax-cache): New function.
6387 (cfengine3-documentation-function): New function: ElDoc glue.
6388 (cfengine3-completion-function): New function: completion glue.
6389 (cfengine3-mode): Set `compile-command',
6390 `eldoc-documentation-function', and add to
6391 `completion-at-point-functions'.
6392
6393 2013-11-16 Michael Albinus <michael.albinus@gmx.de>
6394
6395 * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
6396 `tramp-current-connection'.
6397
6398 2013-11-15 Dmitry Gutov <dgutov@yandex.ru>
6399
6400 * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
6401 nil/self/true/false with "end of symbol".
6402
6403 2013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
6404
6405 * subr.el (version-regexp-alist): Fix a typo.
6406
6407 2013-11-15 Michael Albinus <michael.albinus@gmx.de>
6408
6409 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
6410 "en_US.utf8" and "LC_CTYPE" to "".
6411 (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
6412 (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
6413
6414 2013-11-15 Leo Liu <sdl.web@gmail.com>
6415
6416 * loadhist.el (read-feature): Get rid of fake feature nil. (Bug#15889)
6417
6418 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6419
6420 * progmodes/gud.el (ctl-x-map):
6421 Remove C-x SPC binding. (Bug#12342)
6422 (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
6423
6424 2013-11-14 Bozhidar Batsov <bozhidar@batsov.com>
6425
6426 * subr.el (version-regexp-alist):
6427 Recognize hg, svn and darcs versions as snapshot versions.
6428
6429 * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
6430 'always-utf8 value of `ruby-insert-encoding-magic-comment'.
6431 (ruby--encoding-comment-required-p): Extract from
6432 `ruby-mode-set-encoding'.
6433 (ruby-mode-set-encoding): Add the ability to always insert an
6434 utf-8 encoding comment. Fix and simplify coding comment update
6435 logic.
6436
6437 2013-11-14 Michael Albinus <michael.albinus@gmx.de>
6438
6439 * net/tramp-gvfs.el (top): Run init code only when
6440 `tramp-gvfs-enabled' is not nil.
6441 (tramp-gvfs-enabled): Check also :system bus.
6442
6443 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6444
6445 Sync with upstream verilog-mode revision 78e66ba.
6446 * progmodes/verilog-mode.el (verilog-end-of-defun)
6447 (verilog-type-completion, verilog-get-list): Remove unused funcs.
6448 (verilog-get-end-of-defun): Remove unused argument.
6449 (verilog-comment-depth): Remove unused local `e'.
6450 (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
6451 Don't pass arg to verilog-get-end-of-defun.
6452
6453 2013-11-14 Glenn Morris <rgm@gnu.org>
6454
6455 * obsolete/assoc.el (aget): Prefix dynamic variable.
6456
6457 * allout-widgets.el (allout-widgets): No need to autoload defgroup.
6458
6459 2013-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
6460
6461 * widget.el, hfy-cmap.el: Remove bogus package version number.
6462
6463 2013-11-13 Glenn Morris <rgm@gnu.org>
6464
6465 * replace.el (replace-eval-replacement):
6466 Try to give more helpful error message. (Bug#15836)
6467
6468 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6469 (archive-7z-update): Avoid custom type mismatches.
6470
6471 * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
6472
6473 2013-11-13 Michael Albinus <michael.albinus@gmx.de>
6474
6475 * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
6476 address can be empty.
6477
6478 * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
6479 Accept nil SWITCHES.
6480 (tramp-gvfs-handle-write-region): Implement APPEND.
6481
6482 2013-11-12 Dmitry Gutov <dgutov@yandex.ru>
6483
6484 * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
6485 binary "|" operator and closing block args delimiter.
6486 Remove FIXME comment referring to Ruby 1.8-only syntax.
6487 (ruby-smie--implicit-semi-p): Not after "|" operator.
6488 (ruby-smie--closing-pipe-p): New function.
6489 (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
6490 (ruby-smie-rules): Indent after "|".
6491
6492 2013-11-12 Glenn Morris <rgm@gnu.org>
6493
6494 * ps-print.el (ps-face-attribute-list):
6495 Handle anonymous faces. (Bug#15827)
6496
6497 2013-11-12 Martin Rudalics <rudalics@gmx.at>
6498
6499 * window.el (display-buffer-other-frame): Fix doc-string.
6500 (Bug#15868)
6501
6502 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6503
6504 * subr.el (force-mode-line-update): Delete, move to buffer.c.
6505
6506 2013-11-11 Michael Albinus <michael.albinus@gmx.de>
6507
6508 * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
6509 (tramp-sh-handle-file-local-copy): Don't write a message when
6510 saving temporary files.
6511
6512 * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
6513 both directories are remote.
6514 (tramp-smb-handle-directory-files): Do not return double entries.
6515 Do not expand full file names.
6516 (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
6517 (tramp-smb-handle-write-region): Implement APPEND.
6518 (tramp-smb-get-stat-capability): Fix a stupid bug.
6519
6520 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6521
6522 * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
6523
6524 2013-11-11 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6525
6526 * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
6527 throwing error over malformed let/let* (bug#15814).
6528
6529 2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
6530
6531 * iswitchb.el (iswitchb-mode): Mark obsolete.
6532
6533 2013-11-11 Glenn Morris <rgm@gnu.org>
6534
6535 * international/uni-bidi.el, international/uni-category.el:
6536 * international/uni-name.el, international/uni-numeric.el:
6537 Regenerate for Unicode 6.3.0.
6538
6539 2013-11-10 Michael Albinus <michael.albinus@gmx.de>
6540
6541 * net/tramp.el (tramp-methods):
6542 * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
6543 2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
6544
6545 2013-11-09 Andreas Schwab <schwab@linux-m68k.org>
6546
6547 * progmodes/sh-script.el (sh-font-lock-keywords-var):
6548 Force highlighting text after Summary keyword in doc face for rpm.
6549
6550 2013-11-09 Dmitry Gutov <dgutov@yandex.ru>
6551
6552 * textmodes/ispell.el (ispell-lookup-words): When `look' is not
6553 available and the word has no wildcards, append one to the grep pattern.
6554 http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
6555 (ispell-complete-word): Call `ispell-lookup-words' with the value
6556 independent of `ispell-look-p'.
6557
6558 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6559
6560 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
6561 Not after "||".
6562 (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
6563 their parent.
6564
6565 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6566
6567 * progmodes/ruby-mode.el: Don't require cl any more. Use pcase instead.
6568 (ruby-font-lock-keywords): Use backquote.
6569
6570 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6571
6572 * progmodes/ruby-mode.el (ruby-smie--forward-token)
6573 (ruby-smie--backward-token): Only consider full-string matches.
6574
6575 2013-11-08 Jan Djärv <jan.h.d@swipnet.se>
6576
6577 * faces.el (describe-face): Add distant-foreground.
6578
6579 2013-11-08 Bozhidar Batsov <bozhidar@batsov.com>
6580
6581 * progmodes/ruby-mode.el: Improve encoding comment handling.
6582 (ruby-encoding-magic-comment-style): New option.
6583 (ruby-custom-encoding-magic-comment-template): New option.
6584 (ruby--insert-coding-comment, ruby--detect-encoding):
6585 New functions extracted from `ruby-mode-set-encoding'.
6586 (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
6587 to control the style of the auto-inserted encoding comment.
6588
6589 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6590
6591 * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
6592 Use `smie-backward-sexp' with token argument.
6593
6594 2013-11-08 Michael Albinus <michael.albinus@gmx.de>
6595
6596 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
6597 Remove instrumentation code.
6598
6599 2013-11-08 Glenn Morris <rgm@gnu.org>
6600
6601 * progmodes/autoconf.el (autoconf-mode):
6602 Tweak comment-start-skip. (Bug#15822)
6603
6604 2013-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
6605
6606 * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
6607 at bobp (bug#15826).
6608 (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
6609
6610 2013-11-08 Darren Hoo <darren.hoo@gmail.com>
6611
6612 * man.el (Man-start-calling): New macro, extracted from
6613 Man-getpage-in-background.
6614 (Man-getpage-in-background): Use it.
6615 (Man-update-manpage): New command.
6616 (Man-mode-map): Bind it.
6617
6618 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
6619
6620 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
6621 of "and", "or", "&&" and "||".
6622 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
6623 argument. Prohibit opening curly brace because it could only be a
6624 block opener in that position.
6625 (ruby-smie--forward-token, ruby-smie--backward-token):
6626 Separate "|" from "&" or "*" going after it. That can happen in block
6627 arguments.
6628 (ruby-smie--indent-to-stmt): New function, seeks the end of
6629 previous statement or beginning of buffer.
6630 (ruby-smie-rules): Use it.
6631 (ruby-smie-rules): Check if there's a ":" before a curly block
6632 opener candidate; if there is, it's a hash.
6633
6634 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
6635
6636 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
6637 (cl--block-wrapper): Fix last accidental change.
6638
6639 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
6640
6641 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
6642 Instrument, in order to hunt failure on hydra.
6643
6644 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6645
6646 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
6647 malformed bindings form (bug#15814).
6648
6649 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
6650
6651 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
6652 "." compared to " @ ". This incidentally fixes some indentation
6653 examples with "do".
6654 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
6655 (ruby-smie-grammar): New tokens: "and" and "or".
6656 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
6657 Exclude "and" and "or". Remove "do" in order to work around token
6658 priorities.
6659 (ruby-smie-rules): Add all infix tokens. Handle the case of
6660 beginning-of-buffer.
6661
6662 2013-11-06 Glenn Morris <rgm@gnu.org>
6663
6664 * Makefile.in (setwins_almost, setwins_for_subdirs):
6665 Avoid accidental matches.
6666
6667 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
6668
6669 * menu-bar.el (popup-menu): Use key-binding.
6670
6671 2013-11-06 Eli Zaretskii <eliz@gnu.org>
6672
6673 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
6674 menus, support also the menus produced by minor modes.
6675 (Bug#15817)
6676
6677 2013-11-06 Leo Liu <sdl.web@gmail.com>
6678
6679 * thingatpt.el (thing-at-point-looking-at): Add optional arg
6680 DISTANCE to bound the search. All uses changed. (Bug#15808)
6681
6682 2013-11-06 Glenn Morris <rgm@gnu.org>
6683
6684 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
6685 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
6686 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
6687
6688 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
6689
6690 * electric.el (electric-indent-just-newline): New command.
6691 (electric-indent-mode-map): New keymap.
6692 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
6693 Re-add :group which weren't redundant.
6694
6695 * electric.el (electric-indent-local-mode): New minor mode.
6696 (electric-indent-functions-without-reindent): New var.
6697 (electric-indent-post-self-insert-function): Use it.
6698 * emacs-lisp/gv.el (buffer-local-value): Add setter.
6699
6700 2013-11-05 Eli Zaretskii <eliz@gnu.org>
6701
6702 * international/quail.el (quail-help): Be more explicit about the
6703 meaning of the labels shown on the keys. (Bug#15800)
6704
6705 * startup.el (normal-top-level): Load the subdirs.el files before
6706 setting the locale environment. (Bug#15805)
6707
6708 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
6709
6710 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
6711 via arguments so as to get the right ones (bug#15418).
6712
6713 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
6714
6715 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
6716
6717 Fix problems found while writing a test suite.
6718
6719 * net/tramp-compat.el (tramp-compat-load): New defun.
6720 * net/tramp.el (tramp-handle-load): Use it.
6721
6722 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
6723 "(numberp ok-if-already-exists)" correctly.
6724
6725 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
6726
6727 * international/characters.el (glyphless-char-display-control):
6728 Add usage note.
6729
6730 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
6731
6732 * progmodes/python.el (python-mode):
6733 * progmodes/scheme.el (scheme-mode):
6734 * progmodes/prolog.el (prolog-mode):
6735 * progmodes/ruby-mode.el (ruby-mode):
6736 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
6737 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
6738
6739 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6740
6741 * rect.el (rectangle--highlight-for-redisplay):
6742 * emacs-lisp/smie.el (smie--next-indent-change):
6743 Use buffer-chars-modified-tick.
6744
6745 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
6746
6747 * electric.el (electric-indent-post-self-insert-function):
6748 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
6749
6750 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
6751
6752 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
6753
6754 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6755
6756 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
6757 (bug#15786).
6758
6759 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6760
6761 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
6762
6763 * progmodes/python.el: Fix up last change.
6764 (python-shell--save-temp-file): New function.
6765 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
6766 `string' comes from the current buffer.
6767 (python-shell-send-string-no-output): Remove `msg' arg.
6768 (python--use-fake-loc): New var.
6769 (python-shell-buffer-substring): Obey it. Try to compensate for the
6770 extra coding line added by python-shell--save-temp-file.
6771 (python-shell-send-region): Use python-shell--save-temp-file and
6772 python-shell-send-file directly. Add `nomain' argument.
6773 (python-shell-send-buffer): Use python-shell-send-region.
6774 (python-electric-pair-string-delimiter): New function.
6775 (python-mode): Use it.
6776
6777 2013-11-04 Eli Zaretskii <eliz@gnu.org>
6778
6779 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
6780 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
6781 environment and decoding all of the default-directory's to here
6782 from command-line.
6783 (command-line): Decode also argv[0].
6784
6785 * loadup.el: Error out if default-directory is a multibyte string
6786 when we are dumping.
6787
6788 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
6789
6790 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
6791
6792 * emacs-lisp/package.el (package-menu-mode)
6793 (package-menu--print-info, package-menu--archive-predicate):
6794 Add Archive column to package list.
6795
6796 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
6797
6798 Fix problems found while writing a test suite.
6799
6800 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
6801 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
6802 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
6803 to nil when running original file name handler. Otherwise,
6804 there are problems with constructs like "$$FOO".
6805
6806 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
6807 for `localname'.
6808
6809 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
6810
6811 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
6812
6813 * subr.el (version<, version<=, version=):
6814 Update docstrings with information for snapshot versions.
6815
6816 * helpers.el: New library for misc helper functions.
6817 (hash-table-keys): New function returning a list of hash keys.
6818 (hash-table-values): New function returning a list of hash values.
6819
6820 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
6821
6822 * progmodes/ruby-mode.el (ruby-smie--forward-token)
6823 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
6824
6825 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
6826
6827 * textmodes/fill.el (fill-single-char-nobreak-p): New function
6828 checking whether point is after a 1-letter word.
6829
6830 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
6831
6832 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
6833 Don't infloop when expanding region over `multiline' syntax-type that
6834 begins a line (bug#15778).
6835
6836 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6837
6838 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
6839 Make it into a proper minor mode.
6840 (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
6841 (rectangle-mark-mode-map): New keymap.
6842 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
6843
6844 2013-11-04 Glenn Morris <rgm@gnu.org>
6845
6846 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
6847
6848 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
6849
6850 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
6851 (ruby-smie-rules): Use smie-rule-parent instead.
6852
6853 * emacs-lisp/smie.el (smie-rule-parent): Always call
6854 smie-indent-virtual rather than only for hanging tokens.
6855 (smie--next-indent-change): New helper command.
6856
6857 2013-11-03 Glenn Morris <rgm@gnu.org>
6858
6859 * Makefile.in (abs_srcdir): Remove.
6860 (emacs): Unset EMACSLOADPATH.
6861
6862 2013-11-02 Glenn Morris <rgm@gnu.org>
6863
6864 * Makefile.in (EMACS): Use a relative filename.
6865 (abs_top_builddir): Remove.
6866 (custom-deps, finder-data, autoloads): Use --chdir.
6867
6868 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
6869
6870 Use relative filenames in TAGS files.
6871 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
6872 (lisptagsfiles4, TAGS): Use relative file names.
6873 (TAGS-LISP): Remove.
6874 (maintainer-clean): No more TAGS-LISP file.
6875
6876 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
6877 (lisptagsfiles4): Use absolute filenames again.
6878 (TAGS, TAGS-LISP): Not everything needs to run in one line.
6879 Remove all *loaddefs files, not just the first. Remove esh-groups.
6880 (maintainer-clean): Delete TAGS, TAGS-LISP.
6881
6882 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6883
6884 * emacs-lisp/package.el (package-version-join):
6885 Recognize snapshot versions.
6886
6887 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6888
6889 * subr.el (version-regexp-alist): Add support for snapshot versions.
6890
6891 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
6892
6893 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
6894 New function, replacement for `smie-rule-parent' for when we want to
6895 skip over our direct parent if it's an assignment token..
6896 (ruby-smie-rules): Use it.
6897
6898 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
6899
6900 * progmodes/ruby-mode.el: Use `syntax-propertize-function'
6901 unconditionally. Remove now unnecessary forward declarations.
6902 Remove XEmacs-specific setup.
6903 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
6904 (ruby-font-lock-syntactic-keywords)
6905 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
6906 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
6907 (ruby-here-doc-end-syntax): Remove.
6908 (ruby-mode): Don't check whether `syntax-propertize-rules' is
6909 defined as function.
6910
6911 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
6912
6913 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
6914
6915 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
6916
6917 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
6918 table and abbrev table, `define-derived-mode' does that for us
6919 anyway.
6920
6921 2013-11-01 Glenn Morris <rgm@gnu.org>
6922
6923 * Makefile.in: Remove manual mh-e dependencies (writing .elc
6924 files is atomic for some time, so no parallel compilation issues).
6925
6926 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
6927
6928 * faces.el (face-x-resources): Add :distant-foreground.
6929 (region): Use :distant-foreground for gtk and ns.
6930
6931 2013-11-01 Tassilo Horn <tsdh@gnu.org>
6932
6933 Allow multiple bibliographies when BibLaTeX is used rather than
6934 BibTeX.
6935 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
6936 (reftex-locate-bibliography-files): Us it.
6937
6938 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
6939
6940 * image.el (image-type-header-regexps): Fix the 'pbm' part to
6941 allow comments in pbm files.
6942
6943 * term/w32-win.el (dynamic-library-alist): Support newer versions
6944 of libjpeg starting with v7: look only for the DLL from the
6945 version against which Emacs was built.
6946 Support versions of libpng beyond 1.4.x.
6947 Support libtiff v4.x.
6948
6949 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
6950
6951 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
6952 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
6953 Add property :safe.
6954 (ruby-deep-arglist): Add property :type.
6955
6956 2013-10-31 Glenn Morris <rgm@gnu.org>
6957
6958 * Makefile.in (custom-deps, finder-data): No need to setq the target
6959 variables, we are in the right directory and the defaults work fine.
6960
6961 2013-10-30 Glenn Morris <rgm@gnu.org>
6962
6963 * Makefile.in (autoloads): Do not use abs_lisp.
6964
6965 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6966 `newline' does not respect `standard-output', so use `princ'.
6967
6968 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
6969
6970 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
6971 * buff-menu.el (Buffer-menu--unmark): New function.
6972 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
6973
6974 2013-10-30 Glenn Morris <rgm@gnu.org>
6975
6976 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
6977
6978 * emacs-lisp/package.el (lm-homepage): Declare.
6979
6980 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
6981 Fix doc typos.
6982
6983 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
6984
6985 * Makefile.in (finder-data, autoloads, update-subdirs)
6986 (compile-main, compile-clean, compile-always, bootstrap-clean):
6987 Check return value of cd.
6988 (compile-calc): Remove.
6989
6990 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6991
6992 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
6993
6994 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
6995 (byte-compile-and-folded): New function.
6996 (=, <, >, <=, >=): Use it.
6997
6998 * dos-w32.el (minibuffer-history-case-insensitive-variables)
6999 (path-separator, null-device, buffer-file-coding-system)
7000 (lpr-headers-switches): Check system-type before modifying them.
7001 (find-buffer-file-type-coding-system): Mark obsolete.
7002 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
7003 find-file-not-found-set-buffer-file-coding-system.
7004 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
7005 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
7006 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
7007 (w32-direct-print-region-helper, w32-direct-print-region-function)
7008 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
7009 * startup.el (normal-top-level-add-subdirs-to-load-path):
7010 * ps-print.el (ps-print-region-function):
7011 * lpr.el (print-region-function): Use new name.
7012
7013 * subr.el (custom-declare-variable-early): Remove function.
7014 (custom-declare-variable-list): Remove var.
7015 (error, user-error): Remove `while' loop.
7016 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
7017 (user-emacs-directory-warning, locate-user-emacs-file):
7018 Move to files.el.
7019 * simple.el (read-quoted-char-radix, read-quoted-char):
7020 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
7021 Move from subr.el.
7022 * custom.el (custom-declare-variable-list): Don't process
7023 custom-declare-variable-list.
7024
7025 * progmodes/python.el (python-shell-get-buffer): New function.
7026 (python-shell-get-process): Use it.
7027 (python-shell-send-string): Always use utf-8 and add a cookie to tell
7028 Python which encoding was used. Don't split-string since we only care
7029 about the first line. Return the temp-file, if applicable.
7030 (python-shell-send-region): Tell compile.el how to turn locations in
7031 the temp-file into locations in the source buffer.
7032
7033 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
7034
7035 * subr.el (undefined): Add missing behavior from the C code for
7036 unbound keys.
7037
7038 * rect.el: Use lexical-binding. Add new rectangular region support.
7039 (rectangle-mark): New command.
7040 (rectangle--region): New var.
7041 (deactivate-mark-hook): Reset rectangle--region.
7042 (rectangle--extract-region, rectangle--insert-for-yank)
7043 (rectangle--highlight-for-redisplay)
7044 (rectangle--unhighlight-for-redisplay): New functions.
7045 (region-extract-function, redisplay-unhighlight-region-function)
7046 (redisplay-highlight-region-function): Use them to handle
7047 rectangular region.
7048 * simple.el (region-extract-function): New var.
7049 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
7050 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
7051 (kill-region): Replace obsolete `yank-handler' arg with `region'.
7052 (copy-region-as-kill, kill-ring-save): Add `region' argument.
7053 (redisplay-unhighlight-region-function)
7054 (redisplay-highlight-region-function): New vars.
7055 (redisplay--update-region-highlight): New function.
7056 (pre-redisplay-function): Use it.
7057 (exchange-point-and-mark): Don't deactivate the mark before
7058 reactivate-it anyway.
7059 * comint.el (comint-kill-region): Remove yank-handler argument.
7060 * delsel.el (delete-backward-char, backward-delete-char-untabify)
7061 (delete-char): Remove property, since it's now part of their
7062 default behavior.
7063 (self-insert-iso): Remove property since this command doesn't exist.
7064
7065 * emacs-lisp/package.el (package--download-one-archive)
7066 (describe-package-1): Don't query the user about final newline.
7067
7068 2013-10-29 Daniel Colascione <dancol@dancol.org>
7069
7070 * net/tramp.el (tramp-methods): Document new functionality.
7071 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
7072 tramp-hostname-checker if method provides one instead of scanning
7073 argument list for "%h" to decide hostname acceptability.
7074
7075 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
7076
7077 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
7078 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
7079 Handle COPY-CONTENTS. (Bug#15737)
7080
7081 2013-10-28 Daiki Ueno <ueno@gnu.org>
7082
7083 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7084 Document that this option has no effect with GnuPG 2.0 (bug#15552).
7085
7086 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
7087
7088 * image.el (defimage, image-load-path): Doc fixes.
7089
7090 2013-10-27 Alan Mackenzie <acm@muc.de>
7091
7092 Indent statements in macros following "##" correctly.
7093 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7094 Modify the "#" arm of a cond form to handle "#" and "##" operators.
7095
7096 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
7097
7098 * linum.el (linum-update-window): Fix boundary test (bug#13446).
7099
7100 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
7101
7102 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
7103 after `=' is probably a new expression.
7104
7105 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7106
7107 * man.el (man-imenu-title): New option.
7108 (Man-mode-map): Add menu. (Bug#15722)
7109 (Man-mode): Add imenu to menu.
7110
7111 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
7112
7113 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
7114 specific in what the first arg can be: a non-keyword word,
7115 string/regexp/percent literal opener, opening paren, or unary
7116 operator followed directly by word.
7117
7118 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7119
7120 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
7121 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
7122 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
7123 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
7124 Remove vars, they do not apply any more.
7125 (prolog-mode-abbrev-table): Remove redundant declaration.
7126 (prolog-upper-case-string, prolog-lower-case-string): Remove.
7127 (prolog-use-smie): Remove.
7128 (prolog-smie-rules): Add indentation rule for the if-then-else layout
7129 supported by prolog-electric-if-then-else-flag.
7130 (prolog-mode-variables, prolog-menu): Use setq-local.
7131 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
7132 Remove binding to `Backspace' since this key doesn't exist anyway.
7133 Remove bindings for electric self-inserting keys.
7134 (prog-mode): Assume it's defined.
7135 (prolog-post-self-insert): New function.
7136 (prolog-mode): Use it.
7137 (prolog-indent-line, prolog-indent-level)
7138 (prolog-find-indent-of-matching-paren)
7139 (prolog-indentation-level-of-line, prolog-goto-comment-column)
7140 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
7141 (prolog-goto-next-paren, prolog-in-string-or-comment)
7142 (prolog-tokenize, prolog-inside-mline-comment)
7143 (prolog-find-start-of-mline-comment): Remove functions.
7144 (prolog-find-unmatched-paren, prolog-clause-end)
7145 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
7146 (prolog-electric--if-then-else): Rename from
7147 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
7148 (prolog-tokenize-searchkey): Remove const.
7149 (prolog-clause-info): Use forward-sexp.
7150 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
7151 (prolog-electric-if-then-else): Remove commands.
7152 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
7153 for use in post-self-insert-hook.
7154 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
7155 for use in post-self-insert-hook.
7156 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
7157 for use in post-self-insert-hook.
7158 (prolog-electric--underscore): Rename from prolog-electric--underscore;
7159 adapt it for use in post-self-insert-hook.
7160
7161 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
7162
7163 * emacs-lisp/ert.el (ert-run-tests-interactively):
7164 Use `completing-read'. (Bug#9756)
7165
7166 2013-10-25 Eli Zaretskii <eliz@gnu.org>
7167
7168 * simple.el (line-move): Call line-move-1 instead of
7169 line-move-visual when the current window hscroll is zero, but
7170 temporary-goal-column indicates we will need to hscroll as result
7171 of the movement. (Bug#15712)
7172
7173 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
7174
7175 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
7176 capitalization. Use :visible instead of :active.
7177 Fix `ruby-indent-exp' reference. Add menu items for the generic
7178 commands that are used with SMIE.
7179 (ruby-do-end-to-brace): Insert space after `{'.
7180
7181 2013-10-25 John Anthony <john@jo.hnanthony.com>
7182
7183 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
7184
7185 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
7186
7187 2013-10-25 Glenn Morris <rgm@gnu.org>
7188
7189 * vc/vc.el (vc-print-log): Don't use a working revision unless
7190 one was explicitly specified. (Bug#15322)
7191
7192 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7193
7194 * subr.el (add-to-list): Preserve return value in compiler-macro
7195 (bug#15692).
7196
7197 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7198
7199 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
7200 result. Ask user to retry using '-all' flag. (Bug#15701)
7201
7202 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7203
7204 * emacs-lisp/smie.el: New smie-config system.
7205 (smie-config): New defcustom.
7206 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
7207 (smie-config-guess, smie-config-save): New commands.
7208 (smie-config--mode-local, smie-config--buffer-local)
7209 (smie-config--trace, smie-config--modefuns): New vars.
7210 (smie-config--advice, smie-config--mode-hook)
7211 (smie-config--setter, smie-config-local, smie-config--get-trace)
7212 (smie-config--guess-value, smie-config--guess): New functions.
7213 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
7214 text properties. Treat "string fence" syntax like string syntax.
7215
7216 * progmodes/sh-script.el (sh-use-smie): Change default.
7217 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
7218 (sh-var-value): Simplify by CSE.
7219 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
7220 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
7221 is used.
7222 (sh-guess-basic-offset): Use cl-incf.
7223 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
7224
7225 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
7226
7227 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
7228 (bug#15699).
7229
7230 2013-10-24 Glenn Morris <rgm@gnu.org>
7231
7232 * Makefile.in (abs_top_srcdir): Remove.
7233 (update-subdirs): Use relative path to update-subdirs.
7234
7235 2013-10-24 Eli Zaretskii <eliz@gnu.org>
7236
7237 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
7238 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
7239 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
7240 Call unmsys--file-name before expand-file-name, not after it.
7241
7242 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
7243
7244 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
7245 (ert-test-skipped): New error.
7246 (ert-skip, ert-stats-skipped): New defuns.
7247 (ert--skip-unless): New macro.
7248 (ert-test-skipped): New struct.
7249 (ert--run-test-debugger, ert-test-result-type-p)
7250 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
7251 (ert--stats-set-test-and-result, ert-char-for-test-result)
7252 (ert-string-for-test-result, ert-run-tests-batch)
7253 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
7254 Handle skipped tests. (Bug#9803)
7255
7256 2013-10-24 Glenn Morris <rgm@gnu.org>
7257
7258 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
7259
7260 * Makefile.in (abs_top_srcdir): New, set by configure.
7261 (update-subdirs): Correct build-aux location.
7262
7263 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
7264
7265 * vc/vc.el (vc-print-root-log): Always set `default-directory'
7266 value, whether we could auto-deduce `backend', or not.
7267
7268 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
7269 with parameters" example. Simplify the "is it block or is it
7270 hash" check, but also make it more thorough.
7271
7272 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
7273
7274 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
7275
7276 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
7277
7278 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
7279 { if it is hanging.
7280
7281 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
7282 :before ";".
7283
7284 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
7285
7286 * progmodes/compile.el (compilation-directory-matcher)
7287 (compilation-page-delimiter):
7288 Support GNU Make-4.0 directory quoting. (Bug#15678)
7289
7290 2013-10-23 Leo Liu <sdl.web@gmail.com>
7291
7292 * ido.el (ido-tidy): Handle read-only text.
7293
7294 2013-10-23 Glenn Morris <rgm@gnu.org>
7295
7296 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
7297 (emacs, compile, compile-always):
7298 Quote entities that might contain whitespace.
7299 (custom-deps, finder-data, autoloads): Use abs_lisp.
7300 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7301 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7302 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
7303
7304 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
7305
7306 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
7307 Use `following-char'.
7308
7309 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
7310
7311 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
7312 * progmodes/ruby-mode.el (ruby-smie-rules):
7313 Remove corresponding workaround. Fix indentation rule of ";" so it
7314 also applies when ";" is the parent.
7315
7316 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
7317
7318 * frame.el (display-screens, display-pixel-height)
7319 (display-pixel-width, display-mm-width, display-backing-store)
7320 (display-save-under, display-planes, display-color-cells)
7321 (display-visual-class, display-monitor-attributes-list):
7322 Mention the optional ‘display’ argument in doc strings.
7323
7324 2013-10-22 Michael Gauland <mikelygee@amuri.net>
7325
7326 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
7327 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
7328
7329 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
7330
7331 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
7332 TODO. Add "." after " @ ".
7333 (ruby-smie--at-dot-call): New function. Checks if point at method
7334 call with explicit target.
7335 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
7336 to the method name tokens when it precedes them.
7337 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
7338 (ruby-smie-rules): Add rule for indentation before and after "."
7339 token.
7340
7341 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
7342
7343 * textmodes/remember.el (remember-diary-extract-entries):
7344 Avoid add-to-list.
7345
7346 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
7347 an instruction.
7348
7349 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
7350
7351 * progmodes/ruby-mode.el (ruby-smie-grammar):
7352 Add (almost) all infix operators.
7353 (ruby-smie--implicit-semi-p): Add new operator chars.
7354
7355 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
7356 `smie-down-list'.
7357 (ruby-smie--args-separator-p): Check that there's no newline
7358 between method call and its arguments.
7359
7360 2013-10-20 Alan Mackenzie <acm@muc.de>
7361
7362 Allow comma separated lists after Java "implements".
7363
7364 * progmodes/cc-engine.el (c-backward-over-enum-header):
7365 Parse commas.
7366 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
7367 from a "disallowed" list in enum fontification.
7368
7369 2013-10-20 Johan Bockgård <bojohan@gnu.org>
7370
7371 * startup.el (default-frame-background-mode): Remove unused defvar.
7372
7373 * progmodes/verilog-mode.el (verilog-mode): Don't set
7374 comment-indent-function globally.
7375
7376 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
7377
7378 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
7379 Move Info menu item creation to ns-win.el.
7380
7381 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
7382 in menu bar.
7383
7384 * menu-bar.el: Move GNUstep specific menus...
7385
7386 * term/ns-win.el (ns-initialize-window-system): ... to here.
7387
7388 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7389
7390 * simple.el (newline): Only run post-self-insert-hook when
7391 called interactively.
7392
7393 2013-10-19 Johan Bockgård <bojohan@gnu.org>
7394
7395 * icomplete.el (icomplete-with-completion-tables): Add :version.
7396
7397 2013-10-19 Alan Mackenzie <acm@muc.de>
7398
7399 Fix fontification bugs with constructors and const.
7400
7401 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
7402 CASE 2) Remove the check for the absence of a suffix construct
7403 after a function declaration with only types (no identifiers) in
7404 the parentheses. Also, accept a function declaration with just a
7405 type inside the parentheses, if this type can be positively
7406 recognised as such, or if a prefix keyword like "explicit" nails
7407 down the construct as a declaration.
7408
7409 2013-10-19 Eli Zaretskii <eliz@gnu.org>
7410
7411 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
7412 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
7413 the problem whereby selecting a menu item that leads to a
7414 minibuffer prompt moves the cursor out of the minibuffer window,
7415 making it hard to type at the prompt. Suggested by Stefan Monnier
7416 <monnier@iro.umontreal.ca>.
7417
7418 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
7419
7420 * menu-bar.el: Don't make Services menu.
7421
7422 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7423
7424 * ffap.el: Handle "/usr/include/c++/<version>" directories.
7425 (ffap-alist): Use ffap-c++-mode for c++-mode.
7426 (ffap-c++-path): New variable.
7427 (ffap-c++-mode): New function.
7428
7429 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
7430
7431 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
7432
7433 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
7434
7435 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
7436 introduced on 2013-09-08, which results in an infinite loop
7437 requesting a password.
7438
7439 2013-10-18 Glenn Morris <rgm@gnu.org>
7440
7441 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
7442
7443 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
7444
7445 Sync with upstream verilog-mode revision 1a6ecec7.
7446 * progmodes/verilog-mode.el (verilog-mode-version): Update.
7447 (verilog-mode-release-date): Remove.
7448 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
7449 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
7450 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
7451 (verilog-auto-tieoff-ignore-regexp)
7452 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
7453 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
7454 (verilog-signals-with, verilog-dir-cache-preserving)
7455 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
7456 Doc fixes.
7457 (verilog-case-fold): New option, to control case folding in
7458 regexp searches, bug597.
7459 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
7460 (verilog-string-match-fold, verilog-in-paren-count)
7461 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
7462 (verilog-at-close-struct-p): New functions.
7463 (verilog-beg-block-re-ordered, verilog-extended-case-re)
7464 (verilog-forward-sexp, verilog-set-auto-endcomments)
7465 (verilog-leap-to-case-head): Handle "unique0" case.
7466 (verilog-in-constraint-re): New constant.
7467 (verilog-keywords, verilog-type-font-keywords):
7468 Add some SystemVerilog 1800-2012 keywords.
7469 (verilog-label-be): Remove unimplemented argument, bug669.
7470 (verilog-batch-execute-func): When batch expanding clear
7471 create-lockfiles to prevent spurious user locks when a file ends
7472 up not changing.
7473 (verilog-calculate-indent, verilog-calc-1)
7474 (verilog-at-close-constraint-p, verilog-at-constraint-p)
7475 (verilog-do-indent): Fix indentation of nested constraints
7476 and structures.
7477 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
7478 (verilog-auto-inst-param): Use verilog-string-match-fold.
7479 (verilog-read-inst-module-matcher):
7480 Fix AUTOINST on gate primitives with #1.
7481 (verilog-read-decls): Fix double-declaring user-defined typed signals.
7482 Reads all user-defined typed variables.
7483 (verilog-read-defines): Fix reading definitions inside comments, bug647.
7484 (verilog-signals-matching-regexp)
7485 (verilog-signals-not-matching-regexp, verilog-auto):
7486 Respect verilog-case-fold.
7487 (verilog-diff-report): Fix line count.
7488 (verilog-auto-assign-modport): Remove unused local `modi'.
7489 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
7490 better handle multidimensional arrays.
7491 Fix packed array ports misadding bit index in AUTOINST, bug637.
7492 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
7493 to not double-declare existing outputs and inputs, respectively.
7494 (verilog-template-map): Bind U to verilog-sk-uvm-component.
7495 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
7496 (verilog-sk-uvm-component): New skeleton.
7497 (verilog-submit-bug-report): Add verilog-case-fold,
7498 remove verilog-mode-release-date.
7499
7500 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
7501
7502 * subr.el (sit-for): Call (input-pending-p t) so as to behave
7503 as before.
7504
7505 2013-10-18 Reuben Thomas <rrt@sc3d.org>
7506
7507 * textmodes/remember.el (remember): Set buffer-offer-save in
7508 remember buffers (bug#13566).
7509
7510 2013-10-18 Daniel Colascione <dancol@dancol.org>
7511
7512 When evaluating forms in ielm, direct standard output to ielm
7513 buffer. Add new ielm-return-for-effect command. Remove trailing
7514 whitespace throughout.
7515
7516 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
7517 (ielm-return-for-effect): New command.
7518 (ielm-send-input): Accept optional `for-effect' parameter.
7519 (ielm-eval-input): Accept optional `for-effect' parameter.
7520 Bind `standard-output' to stream we create using
7521 `ielm-standard-output-impl'. Suppress printing result when
7522 `for-effect'.
7523 (ielm-standard-output-impl): New function.
7524 (inferior-emacs-lisp-mode): Explain new features in documentation.
7525
7526 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
7527
7528 Code cleanup.
7529
7530 * net/tramp.el (tramp-debug-message): Do not check for connection
7531 buffer.
7532 (tramp-message): Use "vector" connection property.
7533
7534 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
7535 (tramp-equal-remote, tramp-eshell-directory-change)
7536 * net/tramp-adb.el (tramp-adb-handle-copy-file)
7537 (tramp-adb-handle-rename-file)
7538 * net/tramp-cmds.el (tramp-list-remote-buffers)
7539 (tramp-cleanup-connection, tramp-cleanup-this-connection)
7540 * net/tramp-compat.el (tramp-compat-process-running-p)
7541 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
7542 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
7543 (tramp-gvfs-handle-rename-file)
7544 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
7545 (tramp-set-file-uid-gid)
7546 * net/tramp-smb.el (tramp-smb-handle-copy-file)
7547 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
7548 of `file-remote-p'.
7549
7550 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
7551 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
7552 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
7553 (tramp-gw-open-network-stream): Suppress unrelated traces.
7554
7555 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
7556 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
7557 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7558 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
7559 connection property.
7560
7561 * net/tramp-cache.el (top): Suppress traces when reading
7562 persistency file.
7563
7564 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
7565 Refactor common code. Improve debug message.
7566 (tramp-maybe-open-connection)
7567 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
7568 connection buffer too early.
7569
7570 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
7571 from `tramp-smb-actions-with-acl'.
7572 (tramp-smb-actions-set-acl): New defconst.
7573 (tramp-smb-handle-copy-directory)
7574 (tramp-smb-action-get-acl): New defun, renamed from
7575 `tramp-smb-action-with-acl'.
7576 (tramp-smb-action-set-acl): New defun.
7577 (tramp-smb-handle-set-file-acl): Rewrite.
7578
7579 2013-10-17 Glenn Morris <rgm@gnu.org>
7580
7581 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
7582
7583 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
7584
7585 * skeleton.el (skeleton-newline): Remove.
7586 (skeleton-internal-1): Use (insert "\n") instead.
7587
7588 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
7589 let-bindings.
7590
7591 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
7592 forward-sexp-function while we redo its job (bug#15613).
7593
7594 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
7595
7596 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
7597 represented by lists.
7598
7599 2013-10-16 Glenn Morris <rgm@gnu.org>
7600
7601 * tmm.el (tmm--history): New dynamic variable.
7602 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
7603
7604 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
7605
7606 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
7607 (tramp-smb-errors): Add error messages.
7608 (tramp-smb-actions-with-acl): New defconst.
7609 (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
7610 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
7611 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
7612 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
7613 (tramp-smb-get-stat-capability): Fix tests.
7614
7615 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
7616
7617 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
7618 (bug#15580).
7619
7620 2013-10-16 Glenn Morris <rgm@gnu.org>
7621
7622 * ansi-color.el (ansi-color-drop-regexp):
7623 Add 1J, 1K, 2K. (Bug#15617)
7624
7625 * files.el (hack-local-variables--warned-lexical): New.
7626 (hack-local-variables):
7627 Warn about misplaced lexical-binding. (Bug#15616)
7628
7629 * net/eww.el (eww-render): Always set eww-current-url,
7630 and update header line. (Bug#15622)
7631 (eww-display-html): ... Rather than just doing it here.
7632
7633 2013-10-15 Eli Zaretskii <eliz@gnu.org>
7634
7635 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
7636 menu navigations commands.
7637
7638 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
7639
7640 * progmodes/subword.el (subword-capitalize): Be careful when
7641 the search for [[:alpha:]] fails (bug#15580).
7642
7643 2013-10-14 Eli Zaretskii <eliz@gnu.org>
7644
7645 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
7646 to commands that scroll the menu.
7647
7648 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
7649
7650 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
7651 Handle methods ending with `?' and `!'.
7652
7653 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
7654
7655 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
7656 `japanese-cp932' to `cp932' to fix the problem where saving a
7657 source file written in Shift_JIS twice would end up having
7658 `coding: japanese-cp932' which Ruby could not recognize.
7659 (ruby-mode-set-encoding): Add support for encodings mapped to nil
7660 in `ruby-encoding-map'.
7661 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
7662 doesn't need to be explicitly declared in magic comment.
7663 (ruby-encoding-map): Add type declaration for better customize UI.
7664
7665 2013-10-13 Glenn Morris <rgm@gnu.org>
7666
7667 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
7668 Occur buffers are read-only. http://bugs.debian.org/720775
7669
7670 * emacs-lisp/authors.el (authors-fixed-entries):
7671 Comment out old alpha stuff.
7672
7673 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
7674
7675 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
7676 to `after-save-hook' instead of `before-save-hook'.
7677 (ruby-mode-set-encoding): Use the value of coding system used to
7678 write the file. Call `basic-save-buffer-1' after modifying the
7679 buffer.
7680
7681 2013-10-13 Alan Mackenzie <acm@muc.de>
7682
7683 Fix indentation/fontification of Java enum with
7684 "implements"/generic.
7685
7686 * progmodes/cc-engine.el (c-backward-over-enum-header):
7687 Extracted from the three other places and enhanced to handle generics.
7688 (c-inside-bracelist-p): Uses new function above.
7689 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
7690 function above.
7691 (c-font-lock-enum-tail): Uses new function above.
7692
7693 2013-10-13 Kenichi Handa <handa@gnu.org>
7694
7695 * international/mule-cmds.el (select-safe-coding-system): Remove a
7696 superfluous condition in chekcing whether a coding system is safe
7697 or not.
7698
7699 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
7700
7701 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
7702
7703 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
7704
7705 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
7706
7707 2013-10-13 Glenn Morris <rgm@gnu.org>
7708
7709 * menu-bar.el (menu-bar-update-buffers):
7710 Unify Buffers menu prompt string. (Bug#15576)
7711
7712 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
7713
7714 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
7715 Add some entries.
7716 (authors-fixed-entries): Use accented form of name.
7717
7718 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
7719
7720 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
7721 method calls (bug#15594).
7722 (ruby-smie--args-separator-p): New function.
7723 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
7724 recognize paren-free method calls.
7725
7726 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
7727 internals of universal-argument.
7728
7729 2013-10-11 Eli Zaretskii <eliz@gnu.org>
7730
7731 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
7732 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
7733 dropped menu on second mouse click on the menu bar.
7734
7735 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
7736
7737 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
7738 (explicit-shell-file-name): Declare.
7739 (sh--vars-before-point, sh--cmd-completion-table): New functions.
7740 (sh-completion-at-point-function): New function.
7741 (sh-mode): Use it.
7742 (sh-smie--keyword-p): Remove unused argument.
7743 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
7744 vars.
7745 (sh-set-shell): Always setup SMIE, even if we use the
7746 old indentation code.
7747
7748 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
7749
7750 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
7751 cases of ? and =.
7752 (ruby-smie-rules): Simplify the "do" rule. The cases when the
7753 predicate would return nil are almost non-existent.
7754 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
7755
7756 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
7757 cache also after commands that modify the buffer but don't move
7758 point.
7759
7760 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7761
7762 * env.el (substitute-env-in-file-name): New function.
7763 (substitute-env-vars): Extend the meaning of the optional arg.
7764
7765 2013-10-10 Eli Zaretskii <eliz@gnu.org>
7766
7767 * term/w32-win.el (dynamic-library-alist): Define separate lists
7768 of GIF DLLs for versions before and after 5.0.0 of giflib.
7769 (Bug#15531)
7770
7771 2013-10-10 João Távora <joaotavora@gmail.com>
7772
7773 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
7774 not locked, use last revision and current source as
7775 defaults. (Bug#15569)
7776
7777 2013-10-10 Masatake YAMATO <yamato@redhat.com>
7778
7779 * menu-bar.el (menu-bar-open): Don't use popup-menu if
7780 menu-bar is hidden.
7781
7782 2013-10-10 Martin Rudalics <rudalics@gmx.at>
7783
7784 * window.el (pop-to-buffer-same-window): Fix doc-string.
7785 (Bug#15492)
7786
7787 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
7788
7789 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
7790
7791 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
7792
7793 * calendar/icalendar.el (icalendar-import-file):
7794 Fix interactive spec. (Bug#15482)
7795
7796 2013-10-10 Glenn Morris <rgm@gnu.org>
7797
7798 * desktop.el (desktop-save): Default to saving in .emacs.d,
7799 since PWD is no longer in desktop-path by default. (Bug#15319)
7800
7801 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
7802 now that text mode has a menu with the same entry.
7803 (menu-bar-text-mode-auto-fill): Remove now unused func.
7804 * textmodes/text-mode.el (text-mode-map):
7805 Use auto-fill help text from menu-bar.el.
7806
7807 2013-10-10 John Anthony <john@jo.hnanthony.com>
7808
7809 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
7810
7811 2013-10-09 Juri Linkov <juri@jurta.org>
7812
7813 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
7814 instead of this-command-keys. Add universal-argument-more and
7815 universal-argument-minus to the list of prefix commands. (Bug#15568)
7816
7817 2013-10-09 Glenn Morris <rgm@gnu.org>
7818
7819 * vc/vc-svn.el (vc-svn-create-repo):
7820 Expand paths in file://... url. (Bug#15446)
7821
7822 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
7823 Add some entries.
7824 (authors): Remove unused local variables.
7825
7826 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
7827
7828 * profiler.el: Create a more coherent calltree from partial backtraces.
7829 (profiler-format): Hide the tail with `invisible' so that C-s can still
7830 find the hidden elements.
7831 (profiler-calltree-depth): Don't recurse so enthusiastically.
7832 (profiler-function-equal): New hash-table-test.
7833 (profiler-calltree-build-unified): New function.
7834 (profiler-calltree-build): Use it.
7835 (profiler-report-make-name-part): Indent the calltree less.
7836 (profiler-report-mode): Add visibility specs for profiler-format.
7837 (profiler-report-expand-entry, profiler-report-toggle-entry):
7838 Expand the whole subtree when provided with a prefix arg.
7839
7840 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
7841
7842 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
7843 iuwu-mod token.
7844 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
7845 hanging iuwu-mod token.
7846 (ruby-smie--forward-token): Do not include a dot after a token in
7847 that token.
7848 (ruby-smie--backward-token): Likewise.
7849
7850 2013-10-08 Juri Linkov <juri@jurta.org>
7851
7852 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
7853 to isearch-other-control-char.
7854 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
7855 and isearch-post-command-hook to post-command-hook.
7856 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
7857 and isearch-post-command-hook from post-command-hook.
7858 (isearch-unread-key-sequence)
7859 (isearch-reread-key-sequence-naturally)
7860 (isearch-lookup-scroll-key, isearch-other-control-char)
7861 (isearch-other-meta-char): Remove functions.
7862 (isearch-pre-command-hook, isearch-post-command-hook):
7863 New functions based on isearch-other-meta-char rewritten
7864 relying on the new behavior of overriding-terminal-local-map
7865 that does not replace the local keymaps any more. (Bug#15200)
7866
7867 2013-10-08 Eli Zaretskii <eliz@gnu.org>
7868
7869 Support menus on text-mode terminals.
7870 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
7871 functionality.
7872
7873 * tooltip.el (tooltip-mode): Don't error out on TTYs.
7874
7875 * menu-bar.el (popup-menu, popup-menu-normalize-position):
7876 Move here from mouse.el.
7877 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
7878 and arrow keys.
7879 (tty-menu-navigation-map): New map for TTY menu navigation.
7880
7881 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
7882
7883 * frame.el (display-mouse-p): Report text-mode mouse as available
7884 on w32.
7885 (display-popup-menus-p): Report availability if mouse is
7886 available; don't condition on window-system.
7887
7888 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
7889 (tty-menu-selected-face): New faces.
7890
7891 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
7892
7893 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
7894 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
7895 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
7896 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
7897 New constants.
7898 (lisp-mode-variables): New `elisp' argument.
7899 (emacs-lisp-mode): Use it.
7900 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
7901 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
7902
7903 * indent.el: Use lexical-binding.
7904 (indent-region): Add progress reporter.
7905 (tab-stop-list): Make it implicitly extend to infinity by repeating the
7906 last step.
7907 (indent--next-tab-stop): New function to implement this behavior.
7908 (tab-to-tab-stop, move-to-tab-stop): Use it.
7909
7910 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
7911
7912 * indent.el (indent-rigidly--current-indentation): New function.
7913 (indent-rigidly-map): New var.
7914 (indent-rigidly): Use it to provide interactive mode (bug#8196).
7915
7916 2013-10-08 Bastien Guerry <bzg@gnu.org>
7917
7918 * register.el (insert-register): Fix 2013-10-07 change.
7919
7920 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
7921
7922 * progmodes/perl-mode.el: Use lexical-binding.
7923 Remove redundant :group args.
7924 (perl-nochange): Change default to be closer to other major modes's
7925 standard behavior.
7926 (perl-indent-line): Don't consider text on current line as a
7927 valid beginning of function from which to indent.
7928
7929 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
7930 with more than one argument (bug#15538).
7931
7932 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
7933
7934 * vc/pcvs.el: Use lexical-binding.
7935 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
7936 environment of `eval'.
7937 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
7938 than a list of expressions. Adjust callers.
7939 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
7940
7941 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
7942
7943 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
7944 case of the dot in a chained method call being on the following line.
7945
7946 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7947
7948 * electric.el (electric-indent-inhibit): New var.
7949 (electric-indent-post-self-insert-function): Use it.
7950 * progmodes/python.el (python-mode): Set it.
7951
7952 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
7953 open braces.
7954
7955 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
7956
7957 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
7958 (css-mode): Use electric-indent-chars.
7959
7960 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
7961 (font-lock-beg, font-lock-end): Move before first use.
7962 (nxml-mode): Use syntax-propertize-function.
7963 (nxml-after-change, nxml-after-change1): Adjust accordingly.
7964 (nxml-extend-after-change-region): Remove.
7965 * nxml/xmltok.el: Use lexical-binding.
7966 (xmltok-save): Use `declare'.
7967 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
7968 * nxml/nxml-util.el: Use lexical-binding.
7969 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
7970 Use `declare'.
7971 * nxml/nxml-ns.el: Use lexical-binding.
7972 (nxml-ns-save): Use `declare'.
7973 (nxml-ns-prefixes-for): Avoid add-to-list.
7974 * nxml/rng-match.el: Use lexical-binding.
7975 (rng--ipattern): Use cl-defstruct.
7976 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
7977 (rng-cons-group-after, rng-subst-group-after)
7978 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
7979 Use closures instead of `(lambda...).
7980
7981 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
7982
7983 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
7984 of BEG and END.
7985
7986 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7987 Use `tramp-handle-insert-file-contents'.
7988 (tramp-gvfs-handle-insert-file-contents): Remove function.
7989
7990 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
7991 Use `save-restriction' in order to keep markers.
7992
7993 * net/trampver.el: Update release number.
7994
7995 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
7996
7997 * progmodes/compile.el (compilation-parse-errors):
7998 Use compilation--put-prop.
7999 (compilation--ensure-parse): Check compilation-multiline.
8000
8001 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
8002
8003 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
8004 lexical-binding.
8005
8006 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
8007
8008 * progmodes/ruby-mode.el: Fix recently added tests.
8009 (ruby-smie-grammar): Add - and +.
8010 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
8011 (ruby-smie--backward-id): New functions.
8012 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
8013 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
8014 any more.
8015
8016 2013-10-07 Leo Liu <sdl.web@gmail.com>
8017
8018 * register.el (register-preview-delay)
8019 (register-preview-functions): New variables.
8020 (register-read-with-preview, register-preview)
8021 (register-describe-oneline): New functions.
8022 (point-to-register, window-configuration-to-register)
8023 (frame-configuration-to-register, jump-to-register)
8024 (number-to-register, view-register, insert-register)
8025 (copy-to-register, append-to-register, prepend-to-register)
8026 (copy-rectangle-to-register): Use register-read-with-preview to
8027 read register. (Bug#15525)
8028
8029 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
8030
8031 * net/network-stream.el (network-stream-open-starttls): Don't add
8032 --insecure if it's already present, because that gnutls-cli
8033 rejects getting that parameter twice.
8034
8035 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
8036
8037 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
8038 keyword, too.
8039
8040 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
8041
8042 * newcomment.el (comment-use-global-state): Change default value
8043 to t, mark obsolete (Bug#15251).
8044 (comment-beginning): In addition to `comment-to-syntax', check the
8045 value of `comment-use-global-state'.
8046
8047 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8048
8049 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
8050 (ruby-comment-column): Follow the global default, by default.
8051 (ruby-smie-grammar): Add assignment syntax.
8052 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
8053 open-paren, a comma, or a \.
8054 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
8055 and line continuations.
8056 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
8057 followed by implicit semi-colons. Add rule for string concatenation
8058 and for indentation at BOB.
8059 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
8060
8061 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
8062 calling next-sexp, since next-token may have skipped chars which
8063 next-sexp doesn't know should be skipped!
8064
8065 2013-10-05 Leo Liu <sdl.web@gmail.com>
8066
8067 * progmodes/octave.el (octave-send-region):
8068 Call compilation-forget-errors.
8069
8070 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8071
8072 * vc/vc-svn.el (vc-svn-find-admin-dir):
8073 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
8074 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
8075 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
8076 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
8077
8078 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8079
8080 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
8081
8082 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8083
8084 * subr.el (read-passwd): Hide chars even when called within a context
8085 where after-change-functions is disabled (bug#15501).
8086 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
8087 until we removed ourself from overriding-terminal-local-map.
8088
8089 2013-10-04 Leo Liu <sdl.web@gmail.com>
8090
8091 * progmodes/octave.el (inferior-octave-mode):
8092 Call compilation-forget-errors.
8093
8094 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
8095
8096 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
8097
8098 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
8099
8100 * net/secrets.el (secrets-create-collection): Add optional
8101 argument ALIAS. Use proper Label keyword. Append ALIAS as
8102 dbus-call-method argument. (Bug#15516)
8103
8104 2013-10-04 Leo Liu <sdl.web@gmail.com>
8105
8106 * progmodes/octave.el (inferior-octave-error-regexp-alist)
8107 (inferior-octave-compilation-font-lock-keywords): New variables.
8108 (compilation-error-regexp-alist)
8109 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
8110 (inferior-octave-mode): Use compilation-shell-minor-mode.
8111
8112 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
8113
8114 * minibuffer.el (completion--replace): Be careful that `end' might be
8115 a marker.
8116
8117 2013-10-03 Daiki Ueno <ueno@gnu.org>
8118
8119 Add support for package signature checking.
8120 * emacs-lisp/package.el (url-http-file-exists-p)
8121 (epg-make-context, epg-context-set-home-directory)
8122 (epg-verify-string, epg-context-result-for)
8123 (epg-signature-status, epg-signature-to-string)
8124 (epg-check-configuration, epg-configuration)
8125 (epg-import-keys-from-file): Declare.
8126 (package-check-signature): New user option.
8127 (package-unsigned-archives): New user option.
8128 (package-desc): Add `signed' field.
8129 (package-load-descriptor): Set `signed' field if .signed file exists.
8130 (package--archive-file-exists-p): New function.
8131 (package--check-signature): New function.
8132 (package-install-from-archive): Check package signature.
8133 (package--download-one-archive): Check archive signature.
8134 (package-delete): Remove .signed file.
8135 (package-import-keyring): New command.
8136 (package-refresh-contents): Import default keyring.
8137 (package-desc-status): Add "unsigned" status.
8138 (describe-package-1, package-menu--print-info)
8139 (package-menu-mark-delete, package-menu--find-upgrades)
8140 (package-menu--status-predicate): Support "unsigned" status.
8141
8142 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8143
8144 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
8145 the new compilation scheme using the new byte-codes.
8146
8147 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
8148 (byte-pophandler): New byte codes.
8149 (byte-goto-ops): Adjust accordingly.
8150 (byte-compile--use-old-handlers): New var.
8151 (byte-compile-catch): Use new byte codes depending on
8152 byte-compile--use-old-handlers.
8153 (byte-compile-condition-case--old): Rename from
8154 byte-compile-condition-case.
8155 (byte-compile-condition-case--new): New function.
8156 (byte-compile-condition-case): New function that dispatches depending
8157 on byte-compile--use-old-handlers.
8158 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
8159 when we can.
8160
8161 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
8162 Optimize under `condition-case' and `catch' if
8163 byte-compile--use-old-handlers is nil.
8164 (disassemble-offset): Handle new bytecodes.
8165
8166 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8167
8168 * subr.el (error): Use `declare'.
8169 (decode-char, encode-char): Use advertised-calling-convention instead
8170 of the docstring to discourage use of the `restriction' arg.
8171
8172 2013-10-03 Daiki Ueno <ueno@gnu.org>
8173
8174 * epg.el (epg-verify-file): Add a comment saying that it does not
8175 notify verification error as a return value nor a signal.
8176 (epg-verify-string): Ditto.
8177
8178 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
8179
8180 * progmodes/compile.el (compilation-start): Try globbing the arg to
8181 `cd' (bug#15417).
8182
8183 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
8184
8185 Sync with Tramp 2.2.8.
8186
8187 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
8188 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
8189 * net/trampver.el: Update release number.
8190
8191 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
8192
8193 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8194 and default-process-coding-system for darwin only.
8195
8196 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8197
8198 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
8199
8200 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
8201
8202 * vc/vc-git.el (vc-git-grep): Disable pager.
8203
8204 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
8205
8206 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
8207 Use :url instead of :homepage, as per
8208 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
8209
8210 * newcomment.el (comment-beginning): When `comment-use-syntax' is
8211 non-nil, use `syntax-ppss' (Bug#15251).
8212
8213 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8214
8215 * progmodes/octave.el (inferior-octave-startup-file):
8216 Prefer ~/.emacs.d/init_octave.m.
8217
8218 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
8219
8220 * emacs-lisp/package.el (package-desc-from-define):
8221 Accept additional arguments as plist, convert them to an alist and store
8222 them in the `extras' slot.
8223 (package-generate-description-file): Convert extras alist back to
8224 plist and append to the `define-package' form arguments.
8225 (package--alist-to-plist): New function.
8226 (package--ac-desc): Add `extras' slot.
8227 (package--add-to-archive-contents): Check if the archive-contents
8228 vector is long enough, and if it is, pass its `extras' slot value
8229 to `package-desc-create'.
8230 (package-buffer-info): Call `lm-homepage', pass the returned value
8231 to `package-desc-from-define'.
8232 (describe-package-1): Render the homepage button (Bug#13291).
8233
8234 * emacs-lisp/package-x.el (package-upload-buffer-internal):
8235 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
8236
8237 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
8238
8239 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
8240 and default-process-coding-system to utf-8-unix (Bug#15402).
8241
8242 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
8243
8244 * subr.el (looking-back): Do not recommend using looking-back.
8245
8246 2013-09-28 Alan Mackenzie <acm@muc.de>
8247
8248 Fix indentation/fontification of Java enum with "implements".
8249
8250 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
8251 regexp which matches "implements", etc., in Java.
8252 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
8253 specifier clauses coming after "enum".
8254 * progmodes/cc-fonts.el (c-font-lock-declarations)
8255 (c-font-lock-enum-tail): Check for extra specifier clauses coming
8256 after "enum".
8257
8258 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
8259
8260 * faces.el (region): Change ns_selection_color to
8261 ns_selection_fg_color, add ns_selection_bg_color.
8262
8263 2013-09-28 Leo Liu <sdl.web@gmail.com>
8264
8265 * progmodes/octave.el (inferior-octave-completion-table)
8266 (inferior-octave-completion-at-point): Minor tweaks.
8267
8268 * textmodes/ispell.el (ispell-lookup-words): Rename from
8269 lookup-words. (Bug#15460)
8270 (lookup-words): Obsolete.
8271 (ispell-complete-word, ispell-command-loop): All uses changed.
8272
8273 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8274
8275 * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
8276 (octave-mode-menu): Add octave-send-buffer.
8277 (octave-send-buffer): New function.
8278
8279 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8280
8281 * progmodes/octave.el (octave-mode-map): Add key binding for
8282 octave-lookfor.
8283 (octave-mode-menu): Add octave-lookfor.
8284 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
8285 octave-lookfor.
8286 (octave-lookfor): New function.
8287
8288 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8289
8290 * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
8291 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
8292 its convention.
8293 (cl--loop-set-iterator-function): New function.
8294 (cl-loop): Adjust accordingly, so as not to use cl-subst.
8295 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
8296 Bind `it' with `let' instead of substituting it with `cl-subst'.
8297 (cl--unused-var-p): New function.
8298 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
8299 Eliminate some unused variable warnings (bug#15326).
8300
8301 2013-09-27 Tassilo Horn <tsdh@gnu.org>
8302
8303 * doc-view.el (doc-view-scale-reset): Rename from
8304 `doc-view-reset-zoom-level'.
8305 (doc-view-scale-adjust): New command.
8306 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
8307 `doc-view-scale-adjust'.
8308
8309 2013-09-26 Tassilo Horn <tsdh@gnu.org>
8310
8311 * doc-view.el (doc-view-reset-zoom-level): New command.
8312 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
8313 zoom commands (bug#15466).
8314
8315 2013-09-26 Kenichi Handa <handa@gnu.org>
8316
8317 * international/quail.el (quail-help): Make it not a command.
8318
8319 2013-09-26 Leo Liu <sdl.web@gmail.com>
8320
8321 * minibuffer.el (completion-all-sorted-completions): Make args
8322 optional as they are.
8323
8324 2013-09-25 Daniel Colascione <dancol@dancol.org>
8325
8326 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
8327 specs are and that they're not evaluated.
8328
8329 2013-09-24 Sam Steingold <sds@gnu.org>
8330
8331 * midnight.el (clean-buffer-list-kill-regexps)
8332 (clean-buffer-list-kill-buffer-names): Update for the new Man
8333 buffer naming which includes the object name.
8334
8335 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8336
8337 * eshell/esh-cmd.el (eshell--sep-terms): New var.
8338 (eshell-parse-command, eshell-parse-pipeline): Use it since
8339 eshell-separate-commands requires a dynamic scoped var.
8340 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
8341
8342 2013-09-23 Leo Liu <sdl.web@gmail.com>
8343
8344 * autoinsert.el (auto-insert-alist): Make the value of
8345 lexical-binding match its file setting.
8346
8347 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
8348
8349 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
8350
8351 * autoarg.el (autoarg-kp-digit-argument):
8352 * electric.el (Electric-command-loop):
8353 * kmacro.el (kmacro-step-edit-insert):
8354 Do not set universal-argument-num-events.
8355
8356 2013-09-22 Leo Liu <sdl.web@gmail.com>
8357
8358 * files.el (interpreter-mode-alist): Add octave.
8359
8360 2013-09-21 Alan Mackenzie <acm@muc.de>
8361
8362 C++: fontify identifier in declaration following "public:" correctly.
8363 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
8364 to match "public", etc.
8365 (c-decl-prefix-re): Add ":" into the C++ value.
8366 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
8367 bit. Add a check for a ":" preceded by "public", etc.
8368
8369 2013-09-21 Eli Zaretskii <eliz@gnu.org>
8370
8371 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
8372 recognized by GDB 7.5 and later.
8373
8374 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
8375
8376 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
8377
8378 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8379
8380 * subr.el (internal--call-interactively): New const.
8381 (called-interactively-p): Use it (bug#3984).
8382
8383 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
8384
8385 * vc/pcvs.el (cvs-mode-ignore):
8386 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
8387 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
8388
8389 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8390
8391 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
8392 (eshell-ls-orig-insert-directory): Remove.
8393 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
8394 (eshell-ls-use-in-dired): Use advice-add/remove.
8395 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
8396 Add `orig-fun' arg for use in :around advice.
8397 Make it check (redundantly) eshell-ls-use-in-dired.
8398
8399 2013-09-19 Glenn Morris <rgm@gnu.org>
8400
8401 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
8402
8403 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
8404
8405 * emacs-lisp/eieio.el (class-parent): Undo previous change.
8406
8407 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
8408
8409 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
8410 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
8411 (tramp-get-remote-python): New defuns.
8412 (tramp-get-remote-uid-with-perl)
8413 (tramp-get-remote-gid-with-perl): New defuns. Perl code
8414 contributed by yary <not.com@gmail.com> (tiny change).
8415 (tramp-get-remote-uid-with-python)
8416 (tramp-get-remote-gid-with-python): New defuns. Python code
8417 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
8418 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
8419
8420 2013-09-19 Glenn Morris <rgm@gnu.org>
8421
8422 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
8423
8424 * eshell/em-unix.el (eshell-remove-entries):
8425 Rename argument to avoid name-clash with global `top-level'.
8426
8427 * eshell/esh-proc.el (eshell-kill-process-function):
8428 Remove eshell-reset-after-proc from eshell-kill-hook if present.
8429 (eshell-reset-after-proc): Remove unused arg `proc'.
8430
8431 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
8432 (directory-files-and-attributes): Mark unused arg.
8433
8434 * eshell/em-unix.el (eshell-remove-entries):
8435 Remove unused arg `path'. Update callers.
8436
8437 * eshell/em-hist.el (eshell-hist-parse-arguments):
8438 Remove unused arg `silent'. Update callers.
8439
8440 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
8441 Fix (f)boundp mix-up.
8442
8443 * eshell/em-smart.el (eshell-smart-scroll-window)
8444 (eshell-disable-after-change):
8445 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
8446
8447 2013-09-18 Alan Mackenzie <acm@muc.de>
8448
8449 Fix fontification of type when followed by "const".
8450 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
8451 "known" types from fontification.
8452
8453 2013-09-18 Glenn Morris <rgm@gnu.org>
8454
8455 * emacs-lisp/chart.el (x-display-color-cells): Declare.
8456 (chart-face-list): Drop Emacsen without display-color-p.
8457
8458 * net/eww.el (libxml-parse-html-region): Declare.
8459 (eww-display-html): Explicit error if no libxml2 support.
8460
8461 * doc-view.el (doc-view-mode): Silence --without-x compilation.
8462
8463 * image.el (image-type-from-buffer, image-multi-frame-p):
8464 Remove --without-x warning/error.
8465
8466 * mouse.el (mouse-yank-primary):
8467 * term.el (term-mouse-paste):
8468 Reorder to silence --without-x compilation.
8469
8470 * mpc.el (doc-view-mode): Silence --without-x compilation.
8471
8472 * mail/rmailmm.el (rmail-mime-set-bulk-data):
8473 Silence --without-x compilation.
8474
8475 * progmodes/gud.el (gud-find-file, gud-mode):
8476 Silence --without-x compilation.
8477 (tooltip-mode): Declare.
8478
8479 * wdired.el (dired-backup-overwrite): Remove declaration.
8480 (wdired-mode-map): Add doc string.
8481
8482 * custom.el (x-get-resource): Declare.
8483
8484 * eshell/em-glob.el (ange-cache):
8485 * eshell/em-unix.el (ange-cache): Declare.
8486
8487 * faces.el (x-display-list, x-open-connection, x-get-resource):
8488 Declare.
8489
8490 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
8491 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
8492 Declare.
8493
8494 * frame.el (x-display-grayscale-p, x-display-name): Declare.
8495
8496 * net/gnutls.el (gnutls-log-level): Declare.
8497
8498 * net/shr.el (image-size, image-animate): Declare.
8499
8500 * simple.el (font-info): Declare.
8501
8502 * subr.el (x-popup-dialog): Declare.
8503
8504 * term/common-win.el (x-select-enable-primary)
8505 (x-last-selected-text-primary, x-last-selected-text-clipboard):
8506 Declare.
8507
8508 * term/ns-win.el (x-handle-args): Declare.
8509
8510 * term/x-win.el (x-select-enable-clipboard): Declare.
8511
8512 * term/w32-win.el (create-default-fontset): Declare.
8513
8514 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
8515 Declare.
8516
8517 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
8518 (fit-frame-to-buffer): Explicit error if --without-x.
8519 (mouse-autoselect-window-select): Silence compiler.
8520
8521 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
8522
8523 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
8524 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
8525 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
8526 * eshell/esh-util.el (eshell-sublist):
8527 Remove unused local variables.
8528
8529 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
8530
8531 * textmodes/two-column.el: Make 2C-split work for --without-x.
8532 (scroll-bar-columns): Autoload.
8533 (top-level): Require fringe when compiling.
8534
8535 2013-09-18 Leo Liu <sdl.web@gmail.com>
8536
8537 * subr.el (add-hook): Robustify to handle closure as well.
8538
8539 2013-09-17 Glenn Morris <rgm@gnu.org>
8540
8541 * simple.el (messages-buffer-mode-map): Unbind "g".
8542
8543 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8544
8545 * help-mode.el (help-mode-finish): Use derived-mode-p.
8546 Remove obsolete highlighting.
8547
8548 * play/life.el (life-mode): Use define-derived-mode. Derive from
8549 special-mode.
8550 (life): Let-bind inhibit-read-only.
8551 (life-setup): Avoid `setq'. Use `life-mode'.
8552
8553 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
8554 which should not be needed any more.
8555 (package-menu-refresh, package-menu-describe-package): Use user-error.
8556
8557 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
8558 (eshell-post-rewrite-command-hook): Make obsolete.
8559 (eshell-parse-command): Simplify.
8560 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
8561 (eshell--cmd): Declare.
8562 (eshell-parse-pipeline): Remove unused var `final-p'.
8563 Pass a dynvar to eshell-post-rewrite-command-hook.
8564 Implement the new eshell-post-rewrite-command-function.
8565 (eshell-invoke-directly): Remove unused arg `input'.
8566 * eshell/esh-io.el (eshell-io-initialize):
8567 Use eshell-post-rewrite-command-function (bug#15399).
8568 (eshell--apply-redirections): Rename from eshell-apply-redirections;
8569 adjust to new calling convention.
8570 (eshell-create-handles): Rename args to avoid clashing with dynvar
8571 `standard-output'.
8572
8573 2013-09-17 Glenn Morris <rgm@gnu.org>
8574
8575 * simple.el (messages-buffer-mode): New major mode.
8576 (messages-buffer): New function.
8577 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
8578 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
8579 (ert-run-test): Use `messages-buffer' function.
8580 (ert--force-message-log-buffer-truncation): Ignore read-only.
8581 * help.el (view-echo-area-messages): Use `messages-buffer' function.
8582 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
8583
8584 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
8585
8586 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
8587
8588 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
8589
8590 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8591
8592 * icomplete.el (icomplete-in-buffer): New var.
8593 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
8594 vars and replace them with functions.
8595 (icomplete-minibuffer-setup): Adjust accordingly.
8596 (icomplete--completion-table, icomplete--completion-predicate)
8597 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
8598 New functions.
8599 (icomplete-forward-completions, icomplete-backward-completions)
8600 (icomplete-simple-completing-p, icomplete-exhibit)
8601 (icomplete-completions): Use them.
8602 (icomplete--in-region-buffer): New var.
8603 (icomplete--in-region-setup): New function.
8604 (icomplete-mode): Use it.
8605
8606 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
8607 (bug#15379).
8608 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
8609 return args and options.
8610 (eshell-eval-using-options): Use the new return value of
8611 eshell--do-opts to set the options's vars in their scope.
8612 (eshell--set-option): Rename from eshell-set-option.
8613 Add arg `opt-vals'.
8614 (eshell--process-option): Rename from eshell-process-option.
8615 Add arg `opt-vals'.
8616 (eshell--process-args): Use an `opt-vals' alist to store the options's
8617 values during their processing and return them additionally to the
8618 remaining args.
8619
8620 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
8621
8622 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
8623 continuation character an operator, as far as indentation is
8624 concerned (Bug#15369).
8625
8626 2013-09-15 Martin Rudalics <rudalics@gmx.at>
8627
8628 * window.el (window--state-put-2): Don't process buffer state
8629 when buffer doesn't exist any more (Bug#15382).
8630
8631 2013-09-15 Glenn Morris <rgm@gnu.org>
8632
8633 * eshell/em-unix.el (eshell/rm):
8634 Make -f ignore missing files. (Bug#15373)
8635
8636 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
8637 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
8638 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
8639
8640 2013-09-14 Glenn Morris <rgm@gnu.org>
8641
8642 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
8643
8644 2013-09-13 Glenn Morris <rgm@gnu.org>
8645
8646 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
8647 (dired-guess-default): Make `file' available in the env. (Bug#15363)
8648
8649 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
8650
8651 * frame.el (x-focus-frame): Mark as declared in frame.c.
8652
8653 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
8654
8655 * ls-lisp.el: Use advice-add.
8656 (original-insert-directory): Remove.
8657 (ls-lisp--insert-directory): Rename from insert-directory; add
8658 `orig-fun' argument.
8659 (insert-directory): Advise.
8660
8661 2013-09-13 Eli Zaretskii <eliz@gnu.org>
8662
8663 * term.el (term-emulate-terminal): Decode the command string
8664 before passing it to term-command-hook. (Bug#15337)
8665
8666 2013-09-13 Glenn Morris <rgm@gnu.org>
8667
8668 * eshell/esh-util.el (ange-cache): Move declaration earlier.
8669
8670 * eshell/esh-ext.el (eshell-search-path): Declare.
8671
8672 * eshell/em-prompt.el (eshell/pwd): Autoload it.
8673 Otherwise an error occurs if eshell-dirs module not loaded.
8674
8675 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
8676
8677 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
8678
8679 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
8680 `tramp-check-proper-host'. Check for a valid method name.
8681
8682 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
8683 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
8684 * net/tramp-sh.el (tramp-maybe-open-connection):
8685 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
8686
8687 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
8688 also for hash values.
8689
8690 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8691
8692 * term/ns-win.el (parameters): Don't declare as dynamic.
8693 (before-make-frame-hook): Don't add ineffective function.
8694
8695 * eshell/*.el: Use lexical-binding (bug#15231).
8696
8697 2013-09-12 Kenichi Handa <handa@gnu.org>
8698
8699 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
8700
8701 2013-09-12 Glenn Morris <rgm@gnu.org>
8702
8703 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
8704 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
8705
8706 * subr.el (do-after-load-evaluation): Also give compiler warnings
8707 when obsolete files are used (except by obsolete files).
8708
8709 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
8710 in the status output, assume `filename' is the first. (Bug#15322)
8711
8712 * vc/vc.el (vc-deduce-fileset): Doc fix.
8713
8714 * calc/calc-help.el (Info-goto-node):
8715 * progmodes/cperl-mode.el (Info-find-node):
8716 * vc/ediff.el (Info-goto-node): Update declarations.
8717
8718 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
8719
8720 * vc/vc-bzr.el (vc-compilation-mode): Declare.
8721 (vc-bzr-pull): Require vc-dispatcher.
8722 * vc/vc-git.el (vc-compilation-mode): Declare.
8723 (vc-git-pull): Require vc-dispatcher.
8724
8725 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
8726
8727 * progmodes/octave.el (help-button-action): Declare.
8728
8729 * shell.el (shell-directory-tracker): Output error as a message
8730 rather than just returning it as a string.
8731 (shell-process-pushd): Remove useless use of message.
8732
8733 * dframe.el (dframe-timer-fn):
8734 * files.el (dir-locals-read-from-file):
8735 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
8736 (mpc-format):
8737 * reveal.el (reveal-post-command):
8738 * saveplace.el (load-save-place-alist-from-file):
8739 * shell.el (shell-resync-dirs):
8740 * w32-common-fns.el (x-get-selection-value):
8741 * emacs-lisp/copyright.el (copyright-find-copyright):
8742 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
8743 * emulation/tpu-edt.el (tpu-copy-keyfile):
8744 * play/bubbles.el (bubbles--mark-neighbourhood):
8745 * progmodes/executable.el
8746 (executable-make-buffer-file-executable-if-script-p):
8747 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
8748
8749 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8750
8751 Cleanup Eshell to rely less on dynamic scoping.
8752 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
8753 last-value, and ext-command here. Bind `args' closer to `body'.
8754 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
8755 (eshell--args): Declare new dynamic var.
8756 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
8757 last-value, and ext-command. Pass `args' to `body'.
8758 (eshell-process-args): Bind eshell--args.
8759 (eshell-set-option): Use eshell--args.
8760 * eshell/eshell.el (eshell): Use derived-mode-p.
8761 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
8762 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
8763 (eshell-glob-function): Declare.
8764 * eshell/esh-util.el: Require cl-lib.
8765 (eshell-read-hosts-file): Avoid add-to-list.
8766 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
8767 `err'.
8768 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
8769 Declare.
8770 (eshell/diff): Remove unused var `err'.
8771 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
8772 `killflag'.
8773 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
8774 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
8775 first use.
8776 * eshell/em-glob.el (eshell-glob-matches, message-shown):
8777 Move declaration before first use.
8778 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
8779 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
8780 rely on cl-return.
8781
8782 2013-09-12 Glenn Morris <rgm@gnu.org>
8783
8784 * term/ns-win.el (global-map): Remove binding for ispell-next,
8785 deleted 1999-05-29. (Bug#15357)
8786
8787 2013-09-11 Glenn Morris <rgm@gnu.org>
8788
8789 * echistory.el (electric-command-history): Remove call to deleted func.
8790
8791 * play/landmark.el (landmark-mode): Fix typos.
8792
8793 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
8794 Check cvs-sort-ignore-file is bound.
8795
8796 * savehist.el: No need for cl when compiling on Emacs.
8797
8798 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8799
8800 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
8801 (bug#15338).
8802 (eshell-self-insert-command, eshell-send-invisible):
8803 Remove unused argument.
8804 (eshell-handle-control-codes): Remove unused var `orig'.
8805 Avoid delete-backward-char.
8806
8807 * files.el (set-auto-mode): Simplify a bit further.
8808
8809 2013-09-11 Glenn Morris <rgm@gnu.org>
8810
8811 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
8812 (set-auto-mode): Don't regexp-quote elements.
8813 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
8814 * progmodes/cc-mode.el (interpreter-mode-alist):
8815 * progmodes/ruby-mode.el (interpreter-mode-alist):
8816 Revert previous change.
8817
8818 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
8819
8820 * play/snake.el (snake-mode):
8821 * play/mpuz.el (mpuz-mode):
8822 * play/landmark.el (lm-mode):
8823 * play/blackbox.el (blackbox-mode):
8824 * play/5x5.el (5x5-mode):
8825 * obsolete/options.el (Edit-options-mode):
8826 * net/quickurl.el (quickurl-list-mode):
8827 * net/newst-treeview.el (newsticker-treeview-mode):
8828 * mail/rmailsum.el (rmail-summary-mode):
8829 * mail/mspools.el (mspools-mode):
8830 * locate.el (locate-mode):
8831 * ibuffer.el (ibuffer-mode):
8832 * emulation/ws-mode.el (wordstar-mode):
8833 * emacs-lisp/debug.el (debugger-mode):
8834 * array.el (array-mode):
8835 * net/eudc.el (eudc-mode): Use define-derived-mode.
8836 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
8837 Move initialization into declaration.
8838 (mairix-searches-mode): Use define-derived-mode.
8839 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
8840 (eudc-edit-hotlist): Use dolist.
8841 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
8842 (Man-mode): Use define-derived-mode.
8843 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
8844 (Info-edit-mode): Use define-derived-mode.
8845 (Info-cease-edit): Use Info-mode.
8846 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
8847 into declaration.
8848 (eshell-mode): Use define-derived-mode.
8849 * chistory.el (command-history-mode-map): Rename from
8850 command-history-map.
8851 (command-history-mode): Use define-derived-mode.
8852 (Command-history-setup): Remove function.
8853 * calc/calc.el (calc-trail-mode-map): New var.
8854 (calc-trail-mode): Use define-derived-mode.
8855 (calc-trail-buffer): Set calc-main-buffer manually.
8856 * bookmark.el (bookmark-insert-annotation): New function.
8857 (bookmark-edit-annotation): Use it.
8858 (bookmark-edit-annotation-mode): Make it a proper major mode.
8859 (bookmark-send-edited-annotation): Use derived-mode-p.
8860 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
8861 closer to its ideal place. Use \' to match EOS.
8862
8863 * profiler.el (profiler-calltree-find): Use function-equal.
8864
8865 2013-09-10 Glenn Morris <rgm@gnu.org>
8866
8867 * files.el (interpreter-mode-alist): Convert to regexps.
8868 (set-auto-mode): Adapt for this. (Bug#15306)
8869 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
8870 Comment out unused variable.
8871 * progmodes/cc-mode.el (interpreter-mode-alist):
8872 * progmodes/python.el (interpreter-mode-alist):
8873 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
8874 * progmodes/sh-script.el (sh-set-shell):
8875 No longer use interpreter-mode-alist to get list of shells.
8876
8877 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
8878
8879 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
8880
8881 * simple.el: Use set-temporary-overlay-map for universal-argument.
8882 (universal-argument-map): Don't use default-bindings (bug#15317).
8883 Bind switch-frame explicitly. Replace universal-argument-minus with
8884 a conditional binding.
8885 (universal-argument-num-events, saved-overriding-map): Remove.
8886 (restore-overriding-map): Remove.
8887 (universal-argument--mode): Rename from save&set-overriding-map,
8888 and rewrite.
8889 (universal-argument, universal-argument-more, negative-argument)
8890 (digit-argument): Adjust accordingly.
8891 (universal-argument-minus): Remove.
8892 (universal-argument-other-key): Remove.
8893
8894 * subr.el (with-demoted-errors): Add `format' argument.
8895
8896 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
8897
8898 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
8899 `tramp-cleanup-connection'.
8900
8901 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
8902 parameters KEEP-DEBUG and KEEP-PASSWORD.
8903
8904 * net/tramp.el (tramp-file-name-handler):
8905 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
8906 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
8907 (tramp-maybe-open-connection):
8908 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8909 Use `tramp-cleanup-connection'.
8910
8911 * net/tramp-sh.el (tramp-maybe-open-connection):
8912 Catch 'uname-changed inside the progress reporter.
8913
8914 2013-09-10 Glenn Morris <rgm@gnu.org>
8915
8916 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
8917
8918 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
8919 returns "alternate access method" in mode (eg "-rw-r--r--.").
8920
8921 2013-09-08 Glenn Morris <rgm@gnu.org>
8922
8923 * saveplace.el (load-save-place-alist-from-file):
8924 Demote errors. (Bug#15305)
8925
8926 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
8927
8928 Improve compatibility with older Emacsen, and XEmacs.
8929
8930 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
8931 only if it is bound. It isn't for XEmacs.
8932 (with-tramp-progress-reporter): Do not let-bind `result'.
8933 This yields to scoping errors in XEmacs.
8934 (tramp-handle-make-auto-save-file-name): New function, moved from
8935 tramp-sh.el.
8936
8937 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
8938 for `make-auto-save-file-name'.
8939 (tramp-adb--gnu-switches-to-ash):
8940 Use `tramp-compat-replace-regexp-in-string'.
8941
8942 * net/tramp-cache.el (tramp-cache-print): Call
8943 `substring-no-properties' only if it is bound. It isn't for XEmacs.
8944
8945 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
8946 bound. It isn't for XEmacs.
8947
8948 * net/tramp-compat.el (tramp-compat-copy-file):
8949 Catch `wrong-number-of-arguments' error.
8950 (tramp-compat-replace-regexp-in-string): New defun.
8951
8952 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
8953 for `make-auto-save-file-name'.
8954 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
8955 `copy-file'.
8956 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
8957 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
8958 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
8959
8960 * net/tramp-gw.el (tramp-gw-open-network-stream):
8961 Use `tramp-compat-replace-regexp-in-string'.
8962
8963 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
8964 Call `tramp-handle-make-auto-save-file-name'.
8965 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
8966 (tramp-sh-file-gvfs-monitor-dir-process-filter)
8967 (tramp-sh-file-inotifywait-process-filter):
8968 Use `tramp-compat-replace-regexp-in-string'.
8969 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
8970
8971 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
8972 for `make-auto-save-file-name'.
8973 (tramp-smb-handle-copy-directory):
8974 Call `tramp-compat-replace-regexp-in-string'.
8975 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
8976 (tramp-smb-handle-copy-file): Improve error message.
8977 (tramp-smb-handle-rename-file): Rename directly only in case
8978 `newname' does not exist yet. This is a restriction of smbclient.
8979 (tramp-smb-maybe-open-connection): Rerun the function only when
8980 `auth-sources' is non-nil.
8981
8982 2013-09-08 Kenichi Handa <handa@gnu.org>
8983
8984 * international/characters.el: Set category "^" (Combining) for
8985 more characters.
8986
8987 2013-09-07 Alan Mackenzie <acm@muc.de>
8988
8989 Correctly fontify Java class constructors.
8990 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
8991 in Java Mode.
8992 (c-recognize-typeless-decls): Set the Java value to t.
8993 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
8994 While handling a "(", add a check for, effectively, Java, and handle a
8995 "typeless" declaration there.
8996
8997 2013-09-07 Roland Winkler <winkler@gnu.org>
8998
8999 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
9000 field subtitle for entry type book.
9001
9002 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9003
9004 * minibuffer.el: Make minibuffer-complete call completion-in-region
9005 rather than other way around.
9006 (completion--some, completion-pcm--find-all-completions):
9007 Don't delay signals when debugging.
9008 (minibuffer-completion-contents): Beware fields within the
9009 minibuffer contents.
9010 (completion-all-sorted-completions): Use defvar-local.
9011 (completion--do-completion, completion--cache-all-sorted-completions)
9012 (completion-all-sorted-completions, minibuffer-force-complete):
9013 Add args `beg' and `end'.
9014 (completion--in-region-1): New fun, extracted from minibuffer-complete.
9015 (minibuffer-complete): Use completion-in-region.
9016 (completion-complete-and-exit): New fun, extracted from
9017 minibuffer-complete-and-exit.
9018 (minibuffer-complete-and-exit): Use it.
9019 (completion--complete-and-exit): Rename from
9020 minibuffer--complete-and-exit.
9021 (completion-in-region--single-word): New function, extracted from
9022 minibuffer-complete-word.
9023 (minibuffer-complete-word): Use it.
9024 (display-completion-list): Make `common-substring' argument obsolete.
9025 (completion--in-region): Call completion--in-region-1 instead of
9026 minibuffer-complete.
9027 (completion-help-at-point): Pass boundaries to
9028 minibuffer-completion-help as args rather than via an overlay.
9029 (completion-pcm--string->pattern): Use `any-delim'.
9030 (completion-pcm--optimize-pattern): New function.
9031 (completion-pcm--pattern->regex): Handle `any-delim'.
9032 * icomplete.el (icomplete-forward-completions)
9033 (icomplete-backward-completions, icomplete-completions):
9034 Adjust calls to completion-all-sorted-completions and
9035 completion--cache-all-sorted-completions.
9036 (icomplete-with-completion-tables): Default to t.
9037 * emacs-lisp/crm.el (crm--current-element): Rename from
9038 crm--select-current-element. Don't put an overlay but return the
9039 boundaries instead.
9040 (crm--completion-command): Take two new args to bind to the boundaries.
9041 (crm-completion-help): Adjust accordingly.
9042 (crm-complete): Use completion-in-region.
9043 (crm-complete-word): Use completion-in-region--single-word.
9044 (crm-complete-and-exit): Use completion-complete-and-exit.
9045
9046 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9047
9048 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
9049 than dynamically.
9050
9051 2013-09-06 Juri Linkov <juri@jurta.org>
9052
9053 * info.el (Info-display-images-node): When image file doesn't exist
9054 display text version of the image if it's provided in the Info file.
9055 Otherwise, display the location of missing image from SRC attribute.
9056 Add help-echo text property from ALT attribute. (Bug#15279)
9057
9058 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9059
9060 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
9061 (edit-abbrevs-mode): Use define-derived-mode.
9062
9063 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
9064 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
9065 that it's defined.
9066 (epa-key-list-mode, epa-key-mode, epa-info-mode):
9067 Use define-derived-mode.
9068
9069 * epg.el (epg-start-encrypt): Minor CSE simplification.
9070
9071 2013-09-06 William Xu <william.xwl@gmail.com>
9072
9073 * arc-mode.el: Add support for 7za (bug#15264).
9074 (archive-7z-program): New var.
9075 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
9076 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
9077 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
9078
9079 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
9080
9081 Remove URL syntax.
9082
9083 * net/tramp.el (tramp-syntax, tramp-prefix-format)
9084 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
9085 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
9086 (tramp-postfix-host-format, tramp-file-name-regexp)
9087 (tramp-completion-file-name-regexp)
9088 (tramp-completion-dissect-file-name)
9089 (tramp-handle-substitute-in-file-name): Remove 'url case.
9090 (tramp-file-name-regexp-url)
9091 (tramp-completion-file-name-regexp-url): Remove constants.
9092
9093 2013-09-06 Glenn Morris <rgm@gnu.org>
9094
9095 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
9096
9097 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
9098
9099 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
9100 keywords" below "here-doc beginnings" (Bug#15270).
9101
9102 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9103
9104 * subr.el (pop): Use `car-safe'.
9105 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
9106 to detect unused `pop' return value.
9107
9108 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
9109 var `block-regexp'.
9110 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
9111 (python-fill-string): Remove unused var `marker'.
9112 (python-skeleton-add-menu-items): Remove unused var `items'.
9113
9114 * international/mule-cmds.el: Require CL.
9115 (find-coding-systems-for-charsets): Avoid add-to-list.
9116 (sanitize-coding-system-list): New function, extracted from
9117 select-safe-coding-system-interactively.
9118 (select-safe-coding-system-interactively): Use it.
9119 (read-input-method-name): Accept symbols for `default'.
9120
9121 * emacs-lisp/advice.el (defadvice): Add indent rule.
9122
9123 2013-09-05 Daniel Hackney <dan@haxney.org>
9124
9125 * dired-x.el:
9126 * net/ange-ftp.el:
9127 * net/browse-url.el:
9128 * net/dbus.el:
9129 * net/eudc.el:
9130 * net/eudcb-ldap.el:
9131 * net/eww.el:
9132 * net/imap.el:
9133 * printing.el:
9134 * vc/ediff-diff.el:
9135 * vc/ediff-init.el:
9136 * vc/ediff-merg.el:
9137 * vc/ediff-mult.el:
9138 * vc/ediff-util.el:
9139 * vc/ediff-wind.el:
9140 * vc/ediff.el:
9141 * vc/emerge.el:
9142 * vc/pcvs.el:
9143 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
9144 byte compiler. Remove some unused let-bound variables.
9145
9146 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
9147
9148 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
9149 a "ref-cell", since it gets better optimized (bug#14883).
9150
9151 2013-09-05 Glenn Morris <rgm@gnu.org>
9152
9153 * progmodes/cc-awk.el (c-forward-sws): Declare.
9154
9155 2013-09-04 Glenn Morris <rgm@gnu.org>
9156
9157 * generic-x.el [rul-generic-mode]: Require cc-mode.
9158 (c++-mode-syntax-table): Declare.
9159 (rul-generic-mode-syntax-table): Init in the defvar.
9160
9161 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
9162
9163 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
9164 (vc-do-command, vc-set-async-update):
9165 * vc/vc-mtn.el (vc-mtn-dir-status):
9166 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
9167 (vc-hg-pull, vc-hg-merge-branch):
9168 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
9169 (vc-git-merge-branch):
9170 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
9171 (vc-cvs-dir-status-files):
9172 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
9173 (vc-bzr-dir-status-files):
9174 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
9175 * vc/vc-annotate.el: Use lexical-binding.
9176 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
9177 (vc-sentinel-movepoint): Declare.
9178 (vc-annotate): Don't use `goto-line'.
9179 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
9180 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
9181 (vc-sentinel-movepoint): Declare.
9182 * vc/vc-svn.el: Use lexical-binding.
9183 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
9184 * vc/vc-sccs.el:
9185 * vc/vc-rcs.el: Use lexical-binding.
9186
9187 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
9188 `deleted'. Don't drop errors silently.
9189
9190 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
9191
9192 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
9193
9194 * vc/vc.el (vc-ignore): Rewrite.
9195 (vc-default-ignore): New function.
9196 (vc-default-ignore-completion-table): Use find-ignore-file.
9197
9198 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
9199 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
9200 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
9201 Remove. Most code moved to vc.el.
9202
9203 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
9204
9205 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
9206 * net/tramp-smb.el (tramp-smb-get-file-entries):
9207 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
9208 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
9209
9210 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
9211 Update call to it.
9212 (eww-change-select): Remove unused var `properties'.
9213 (eww-make-unique-file-name): Remove unused var `base'.
9214
9215 * finder.el (finder-compile-keywords): Don't mess with windows.
9216
9217 * calculator.el (calculator-funcall): Fix typo in last change.
9218
9219 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
9220
9221 * emacs-lisp/package.el (package-activate-1): Don't let a missing
9222 <pkg>-autoloads.el file stop us.
9223
9224 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
9225 warnings, and factor out common code.
9226
9227 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
9228
9229 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
9230 two-character operators and whether the character preceding them
9231 changes their meaning (Bug#15208).
9232
9233 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9234
9235 Format code sent to Python shell for robustness.
9236 * progmodes/python.el (python-shell-buffer-substring):
9237 New function.
9238 (python-shell-send-region, python-shell-send-buffer): Use it.
9239
9240 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
9241
9242 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
9243 * net/tramp.el (tramp-user-error): ... here.
9244 (tramp-find-method, tramp-check-proper-host)
9245 (tramp-dissect-file-name, tramp-debug-message)
9246 (tramp-handle-shell-command):
9247 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9248 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
9249
9250 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
9251
9252 2013-09-02 Martin Rudalics <rudalics@gmx.at>
9253
9254 * avoid.el (mouse-avoidance-point-position)
9255 (mouse-avoidance-too-close-p): Handle case where posn-at-point
9256 returns nil.
9257
9258 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
9259
9260 * progmodes/python.el (python-shell-completion-get-completions):
9261 Drop use of deleted `comint-last-prompt-overlay'.
9262 (python-nav-if-name-main): New command.
9263
9264 2013-09-01 Glenn Morris <rgm@gnu.org>
9265
9266 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
9267 Avoid leading space in $wins. Otherwise the sed command used by
9268 eg compile-main ends up containing "/*.el". (Bug#15170)
9269
9270 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
9271
9272 2013-08-30 Glenn Morris <rgm@gnu.org>
9273
9274 * emacs-lisp/bytecomp.el (byte-recompile-directory):
9275 Fix is-this-a-directory logic. (Bug#15220)
9276
9277 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9278
9279 * textmodes/css-mode.el: Use SMIE.
9280 (css-smie-grammar): New var.
9281 (css-smie--forward-token, css-smie--backward-token)
9282 (css-smie-rules): New functions.
9283 (css-mode): Use them.
9284 (css-navigation-syntax-table): Remove var.
9285 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
9286 (css-indent-calculate, css-indent-line): Remove functions.
9287
9288 Misc changes to reduce use of `(lambda...); and other cleanups.
9289 * cus-edit.el: Use lexical-binding.
9290 (customize-push-and-save, customize-apropos)
9291 (custom-buffer-create-internal): Use closures.
9292 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
9293 * progmodes/ada-xref.el: Use setq.
9294 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
9295 * dframe.el: Use lexical-binding.
9296 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
9297 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
9298 * descr-text.el: Use lexical-binding.
9299 (describe-text-widget, describe-text-sexp, describe-property-list):
9300 Use closures.
9301 * comint.el (comint-history-isearch-push-state): Use a closure.
9302 * calculator.el: Use lexical-binding.
9303 (calculator-number-to-string): Make it work with lexical-binding.
9304 (calculator-funcall): Same and use cl-letf.
9305
9306 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
9307 (lisp--company-doc-string, lisp--company-location): New functions.
9308 (lisp-completion-at-point): Use them to improve Company support.
9309
9310 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
9311 params of lambda expressions.
9312 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
9313 (ruby-smie--opening-pipe-p): New function.
9314 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
9315 symbols and matched |...| for formal params.
9316 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
9317 from being treated as hanging. Handle "rescue".
9318
9319 2013-08-29 Glenn Morris <rgm@gnu.org>
9320
9321 * progmodes/cc-engine.el (c-pull-open-brace):
9322 Move definition before use.
9323
9324 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9325
9326 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
9327 are immutable. Don't use `unsafe' any more.
9328 (cl--defsubst-expand): Don't substitute at the same time as keeping
9329 a residual unused let-binding. Don't use `unsafe' any more.
9330
9331 2013-08-29 Glenn Morris <rgm@gnu.org>
9332
9333 * calendar/cal-china.el (calendar-chinese-year-cache):
9334 Recenter on 2015.
9335
9336 * nxml/nxml-util.el (nxml-debug-clear-inside):
9337 Use cl-loop rather than loop.
9338
9339 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
9340
9341 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
9342
9343 2013-08-28 Glenn Morris <rgm@gnu.org>
9344
9345 * progmodes/antlr-mode.el: No need to require cc-mode twice.
9346
9347 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
9348
9349 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
9350
9351 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9352
9353 * simple.el (repeat-complex-command--called-interactively-skip):
9354 New function.
9355 (repeat-complex-command): Use it (bug#14136).
9356
9357 * progmodes/cc-mode.el: Minor cleanup of var declarations.
9358 (c-define-abbrev-table): Add `doc' argument.
9359 (c-mode-abbrev-table, c++-mode-abbrev-table)
9360 (objc-mode-abbrev-table, java-mode-abbrev-table)
9361 (idl-mode-abbrev-table, pike-mode-abbrev-table)
9362 (awk-mode-abbrev-table): Use it.
9363 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
9364 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
9365 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
9366 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
9367 Move initialization into the declaration; and remove any
9368 autoload cookie.
9369
9370 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
9371 and dynamic let binding.
9372
9373 * vc/smerge-mode.el: Remove redundant :group args.
9374
9375 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
9376 to load-path.
9377
9378 2013-08-28 Juri Linkov <juri@jurta.org>
9379
9380 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
9381 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
9382 (isearch-other-meta-char): Handle an undefined shifted printing
9383 character by downshifting it. (Bug#15200)
9384
9385 2013-08-28 Juri Linkov <juri@jurta.org>
9386
9387 * isearch.el (isearch-search): Change regexp error message for
9388 non-regexp searches. (Bug#15166)
9389
9390 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
9391
9392 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
9393 for portability to hosts where /bin/sh has problems.
9394
9395 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9396
9397 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
9398
9399 2013-08-27 Juri Linkov <juri@jurta.org>
9400
9401 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
9402 in the keyboard macro. (Bug#15126)
9403
9404 2013-08-27 Juri Linkov <juri@jurta.org>
9405
9406 * isearch.el (isearch-quote-char): Comment out converting unibyte
9407 to multibyte, thus syncing with its `quoted-insert' counterpart.
9408 (Bug#15166)
9409
9410 2013-08-27 Martin Rudalics <rudalics@gmx.at>
9411
9412 * window.el (display-buffer-use-some-window): Add missing
9413 argument in call of get-largest-window (Bug#15185).
9414 Reported by Stephen Leake.
9415
9416 2013-08-27 Glenn Morris <rgm@gnu.org>
9417
9418 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
9419
9420 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
9421
9422 * progmodes/python.el (python-font-lock-keywords): Don't return nil
9423 from a matcher-function unless there's no more matches (bug#15161).
9424
9425 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
9426
9427 * minibuffer.el: Revert change from 2013-08-20.
9428
9429 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
9430 with text property `tramp-default', if appropriate.
9431 (tramp-check-proper-host): New defun.
9432 (tramp-dissect-file-name): Do not check hostname. Revert change
9433 of 2013-03-18.
9434 (tramp-backtrace): Make VEC-OR-PROC optional.
9435
9436 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
9437 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
9438 * net/tramp-sh.el (tramp-maybe-open-connection):
9439 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
9440 Apply `tramp-check-proper-host'.
9441
9442 2013-08-26 Tassilo Horn <tsdh@gnu.org>
9443
9444 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
9445 lambda expression in order to have `describe-variable' display it.
9446
9447 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
9448
9449 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
9450 BUF can be optional. (Bug#15186)
9451
9452 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
9453
9454 * progmodes/flymake.el (flymake-get-real-file-name-function):
9455 Fix broken customization. (Bug#15184)
9456
9457 2013-08-25 Alan Mackenzie <acm@muc.de>
9458
9459 Improve indentation of bracelists defined by macros (without "=").
9460
9461 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
9462 expansion begins with "{", regard it as bracelist when it doesn't
9463 contain a ";".
9464
9465 Parse C++ inher-intro when there's a template split over 2 lines.
9466
9467 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
9468 rigorously the search for "class" etc. followed by ":".
9469
9470 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
9471 random languages a regexp which never matches rather than nil.
9472
9473 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
9474
9475 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
9476 (c-awk-regexp-one-line-possibly-open-char-list-re)
9477 (c-awk-one-line-possibly-open-regexp-re)
9478 (c-awk-one-line-non-syn-ws*-re): Remove.
9479 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
9480 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
9481 (c-awk-space*-unclosed-regexp-/-re): New constants.
9482 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
9483 aren't regexp delimiters.
9484
9485 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
9486 handling for a rare situation in AWK Mode involving unterminated
9487 strings/regexps.
9488
9489 2013-08-23 Glenn Morris <rgm@gnu.org>
9490
9491 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
9492
9493 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
9494
9495 * files.el (create-file-buffer): If the result would begin with
9496 spaces, prepend a "|" instead of removing them. (Bug#15162)
9497
9498 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9499
9500 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
9501 text-properties (bug#15155).
9502
9503 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
9504 exist any more.
9505 (calc-keypad-redraw): Remove unused var `pad'.
9506 (calc-keypad-press): Remove unused var `menu'.
9507
9508 2013-08-23 Martin Rudalics <rudalics@gmx.at>
9509
9510 * window.el (display-buffer-pop-up-frame):
9511 Call pop-up-frame-function with BUFFER current so `make-frame' will
9512 use it as the new frame's buffer (Bug#15133).
9513
9514 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9515
9516 * calendar/timeclock.el: Minor cleanups.
9517 (timeclock-ask-before-exiting, timeclock-use-display-time):
9518 Use `symbol'.
9519 (timeclock-modeline-display): Define as alias before the
9520 actual definition.
9521 (timeclock-mode-line-display): Use define-minor-mode.
9522 (timeclock-day-list-template): Make it a function, add an argument.
9523 (timeclock-day-list-required, timeclock-day-list-length)
9524 (timeclock-day-list-debt, timeclock-day-list-span)
9525 (timeclock-day-list-break): Adjust calls accordingly.
9526
9527 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
9528
9529 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
9530 Use read--expression so that completion works again.
9531
9532 2013-08-21 Sam Steingold <sds@gnu.org>
9533
9534 Add rudimentary inferior shell interaction
9535 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
9536 (sh-set-shell): Reset it.
9537 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
9538 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
9539
9540 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
9541
9542 * align.el: Use lexical-binding.
9543 (align-region): Simplify accordingly.
9544
9545 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
9546
9547 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
9548
9549 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
9550 `non-essential' up.
9551
9552 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
9553
9554 * net/tramp.el:
9555 * net/tramp-adb.el:
9556 * net/tramp-cmds.el:
9557 * net/tramp-ftp.el:
9558 * net/tramp-gvfs.el:
9559 * net/tramp-gw.el:
9560 * net/tramp-sh.el: Don't wrap external variable declarations by
9561 `eval-when-compile'.
9562
9563 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
9564
9565 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
9566 now that Emacs supports ImageMagick animations.
9567
9568 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
9569
9570 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
9571 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
9572
9573 2013-08-16 Martin Rudalics <rudalics@gmx.at>
9574
9575 * window.el (mouse-autoselect-window-select): Do autoselect when
9576 mouse pointer is on margin.
9577
9578 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
9579
9580 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
9581
9582 2013-08-16 Glenn Morris <rgm@gnu.org>
9583
9584 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
9585 Handle "Remote Directory" response of some clients. (Bug#15058)
9586
9587 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
9588 Tweak warning. (Bug#14926)
9589
9590 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
9591 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
9592
9593 * image-mode.el (image-mode-map): Add menu items to reverse,
9594 increase, decrease, reset animation speed.
9595 (image--set-speed, image-increase-speed, image-decrease-speed)
9596 (image-reverse-speed, image-reset-speed): New functions.
9597 (image-mode-map): Add bindings for speed commands.
9598
9599 * image.el (image-animate-get-speed, image-animate-set-speed):
9600 New functions.
9601 (image-animate-timeout): Respect image :speed property.
9602
9603 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9604
9605 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
9606 previous line (bug#15101).
9607 (debugger-eval-expression, debugger-record-expression):
9608 Use read--expression (bug#15102).
9609
9610 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
9611
9612 Remove byte compiler warnings, visible when compiling with
9613 `byte-compile-force-lexical-warnings' set to t.
9614
9615 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
9616 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
9617 (tramp-handle-unhandled-file-name-directory)
9618 (tramp-handle-file-notify-add-watch, tramp-action-login)
9619 (tramp-action-succeed, tramp-action-permission-denied)
9620 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
9621 arguments with "_".
9622
9623 * net/tramp-adb.el (tramp-adb-parse-device-names)
9624 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
9625 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
9626 (tramp-adb-handle-file-truename): Remove unused arguments.
9627
9628 * net/tramp-cache.el (tramp-flush-directory-property)
9629 (tramp-flush-connection-property, tramp-list-connections)
9630 (tramp-parse-connection-properties): Prefix unused arguments with "_".
9631
9632 * net/tramp-compat.el (tramp-compat-make-temp-file):
9633 Rename FILENAME to F.
9634
9635 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
9636 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
9637 (tramp-zeroconf-parse-workstation-device-names)
9638 (tramp-zeroconf-parse-webdav-device-names)
9639 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
9640
9641 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
9642 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
9643
9644 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
9645 arguments.
9646 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
9647 (tramp-sh-handle-insert-file-contents-literally)
9648 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
9649 with "_".
9650 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
9651 Remove unused variables.
9652
9653 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
9654 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
9655 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
9656
9657 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
9658 Make them a defconst.
9659 (tramp-uuencode-region): Remove unused variable.
9660
9661 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
9662
9663 * frameset.el (frameset--prop-setter): New function.
9664 (frameset-prop): Add gv-setter declaration.
9665 (frameset-filter-minibuffer): Deal with the case that the minibuffer
9666 parameter was already set in FILTERED. Doc fix.
9667 (frameset--record-minibuffer-relationships): Allow saving a
9668 minibufferless frame without its corresponding minibuffer frame.
9669 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
9670 frame, if the frame id matches.
9671 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
9672 frames before orphaned ones.
9673 (frameset-restore): Warn about orphaned windows, instead of error out.
9674
9675 2013-08-14 Martin Rudalics <rudalics@gmx.at>
9676
9677 * window.el (window-make-atom): Don't overwrite parameter
9678 already present.
9679 (display-buffer-in-atom-window): Handle special case where we
9680 split an already atomic window.
9681 (window--major-non-side-window, display-buffer-in-side-window)
9682 (window--side-check): Ignore minibuffer window when walking
9683 window tree.
9684 (window-deletable-p): Return 'frame only if no other frame uses
9685 our minibuffer window.
9686 (record-window-buffer): Run buffer-list-update-hook.
9687 (split-window): Make sure window--check-frame won't destroy an
9688 existing atomic window in case the new window gets nested
9689 inside.
9690 (display-buffer-at-bottom): Ignore minibuffer window when
9691 walking window tree. Don't split a side window.
9692 (pop-to-buffer): Don't set-buffer here, the select-window call
9693 should do that.
9694 (mouse-autoselect-window-select): Autoselect only if we are in the
9695 text portion of the window.
9696
9697 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
9698
9699 * net/shr.el (shr-parse-image-data): New function to grab both the
9700 data itself and the Content-Type.
9701 (shr-put-image): Use it.
9702
9703 * net/eww.el (eww-display-image): Ditto.
9704
9705 * image.el (image-content-type-suffixes): New variable.
9706
9707 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
9708
9709 * progmodes/python.el (python-imenu--build-tree)
9710 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
9711
9712 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
9713
9714 * simple.el (backward-word): Mention the optional argument.
9715
9716 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
9717
9718 * frameset.el (frameset--make): Rename constructor from make-frameset.
9719 (frameset-p, frameset-valid-p): Don't autoload.
9720 (frameset-valid-p): Use normal accessors.
9721
9722 2013-08-13 Glenn Morris <rgm@gnu.org>
9723
9724 * progmodes/compile.el (compile-command): Tweak example in doc.
9725 * obsolete/scribe.el (scribe-mode):
9726 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
9727
9728 * mail/feedmail.el (feedmail-confirm-outgoing)
9729 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
9730
9731 * cus-start.el (truncate-partial-width-windows): Fix type.
9732
9733 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
9734
9735 * net/shr.el (shr-table-horizontal-line): Fix custom type.
9736
9737 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
9738
9739 * emacs-lisp/timer.el (timer--time-setter): New function.
9740 (timer--time): Use it as gv-setter.
9741
9742 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
9743 setter is not a symbol.
9744
9745 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
9746
9747 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
9748 if sending fails. This makes debugging easier.
9749
9750 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
9751
9752 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
9753 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
9754 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
9755
9756 2013-08-12 Eli Zaretskii <eliz@gnu.org>
9757
9758 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
9759
9760 2013-08-12 Glenn Morris <rgm@gnu.org>
9761
9762 * format.el (format-annotate-function):
9763 Handle read-only text properties in the source. (Bug#14887)
9764
9765 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9766
9767 * net/eww.el (eww-display-html): Ignore coding system errors.
9768 One web site uses "utf-8lias" as the coding system.
9769
9770 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
9771
9772 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
9773
9774 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
9775
9776 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
9777 (tutorial--detailed-help): Remove unused local variables.
9778 (tutorial--save-tutorial-to): Use ignore-errors.
9779 (help-with-tutorial): Use looking-at-p.
9780
9781 * view.el (view-buffer-other-window, view-buffer-other-frame):
9782 Mark unused arguments.
9783
9784 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
9785 (woman-select-symbol-fonts, woman, woman-find-file)
9786 (woman-insert-file-contents, woman-non-underline-faces):
9787 Use string-match-p.
9788 (woman1-unquote): Move declaration.
9789
9790 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
9791 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
9792 argument. Remove unused local variable.
9793 (xml-parse-elem-type): Use string-match-p.
9794 (xml-substitute-numeric-entities): Use ignore-errors.
9795
9796 * calculator.el (calculator): Mark unused argument.
9797 (calculator-paste, calculator-quit, calculator-integer-p):
9798 Use ignore-errors.
9799 (calculator-string-to-number, calculator-decimal, calculator-exp)
9800 (calculator-op-or-exp): Use string-match-p.
9801
9802 * dired.el (dired-buffer-more-recently-used-p): Declare.
9803 (dired-insert-set-properties, dired-insert-old-subdirs):
9804 Use ignore-errors.
9805
9806 * dired-aux.el (dired-compress): Use ignore-errors.
9807 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
9808 (dired-do-async-shell-command, dired-do-shell-command)
9809 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
9810 (dired-insert-subdir-validate): Use string-match-p.
9811 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
9812 (dired-add-entry): Use string-match-p, looking-at-p.
9813 (dired-insert-subdir-newpos): Remove unused local variable.
9814
9815 * filenotify.el (file-notify-callback): Remove unused local variable.
9816
9817 * filesets.el (filesets-error): Mark unused argument.
9818 (filesets-which-command-p, filesets-filter-dir-names)
9819 (filesets-directory-files, filesets-get-external-viewer)
9820 (filesets-ingroup-get-data): Use string-match-p.
9821
9822 * find-file.el (ff-other-file-name, ff-other-file-name)
9823 (ff-find-the-other-file, ff-cc-hh-converter):
9824 Remove unused local variables.
9825 (ff-get-file-name): Use string-match-p.
9826 (ff-all-dirs-under): Use ignore-errors.
9827
9828 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
9829 (follow-select-if-visible): Remove unused local variable.
9830
9831 * forms.el (read-file-filter): Move declaration.
9832 (forms--make-format, forms--make-parser, forms-insert-record):
9833 Quote function with #'.
9834 (forms--update): Use string-match-p. Quote function with #'.
9835
9836 * help-mode.el (help-dir-local-var-def): Mark unused argument.
9837 (help-make-xrefs): Use looking-at-p.
9838 (help-xref-on-pp): Use looking-at-p, ignore-errors.
9839
9840 * ibuffer.el (ibuffer-ext-visible-p): Declare.
9841 (ibuffer-confirm-operation-on): Use string-match-p.
9842
9843 * msb.el (msb-item-handler, msb-dired-item-handler):
9844 Mark unused arguments.
9845
9846 * ses.el (ses-decode-cell-symbol)
9847 (ses-kill-override): Remove unused local variable.
9848 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
9849 (ses-load): Use ignore-errors, looking-at-p.
9850 (ses-jump-safe): Use ignore-errors.
9851 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
9852
9853 * tabify.el (untabify, tabify): Mark unused arguments.
9854
9855 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
9856 Mark unused argument.
9857 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
9858 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
9859
9860 * emacs-lisp/timer.el (timer--time): Define setter with
9861 gv-define-setter to avoid deprecation warning.
9862
9863 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
9864 (*record-cmpl-statistics-p*): Remove (was commented out).
9865 (cmpl-statistics-block): Remove (body was commented out).
9866 All callers changed.
9867 (add-completions-from-buffer, load-completions-from-file):
9868 Remove unused variables.
9869
9870 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
9871
9872 * filecache.el (file-cache-delete-file-list):
9873 Print message only when told so.
9874 (file-cache-files-matching): Use #' in mapconcat argument.
9875
9876 * ffap.el (ffap-url-at-point): Fix reference to variable
9877 thing-at-point-default-mail-uri-scheme.
9878
9879 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
9880
9881 * subr.el (define-error): New function.
9882 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
9883 error-file-not-found and define with define-error.
9884 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
9885 and define with define-error.
9886 * userlock.el (file-locked, file-supersession):
9887 * simple.el (mark-inactive):
9888 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
9889 * progmodes/ada-mode.el (ada-mode-errors):
9890 * play/life.el (life-extinct):
9891 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
9892 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
9893 * nxml/rng-util.el (rng-error):
9894 * nxml/rng-uri.el (rng-uri-error):
9895 * nxml/rng-match.el (rng-compile-error):
9896 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
9897 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
9898 * nxml/nxml-rap.el (nxml-scan-error):
9899 * nxml/nxml-outln.el (nxml-outline-error):
9900 * net/soap-client.el (soap-error):
9901 * net/gnutls.el (gnutls-error):
9902 * net/ange-ftp.el (ftp-error):
9903 * mpc.el (mpc-proc-error):
9904 * json.el (json-error, json-readtable-error, json-unknown-keyword)
9905 (json-number-format, json-string-escape, json-string-format)
9906 (json-key-format, json-object-format):
9907 * jka-compr.el (compression-error):
9908 * international/quail.el (quail-error):
9909 * international/kkc.el (kkc-error):
9910 * emacs-lisp/ert.el (ert-test-failed):
9911 * calc/calc.el (calc-error, inexact-result, math-overflow)
9912 (math-underflow):
9913 * bookmark.el (bookmark-error-no-filename):
9914 * epg.el (epg-error): Define with define-error.
9915
9916 * time.el (display-time-event-handler)
9917 (display-time-next-load-average): Don't call sit-for since it seems
9918 unnecessary (bug#15045).
9919
9920 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
9921 Use #' instead of ' to quote functions.
9922 (checkdoc-output-mode): Use setq-local.
9923 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
9924 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
9925 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
9926 (checkdoc-ispell, checkdoc-ispell-current-buffer)
9927 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
9928 (checkdoc-ispell-message-text, checkdoc-ispell-start)
9929 (checkdoc-ispell-continue, checkdoc-ispell-comments)
9930 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
9931
9932 * ido.el (ido-completion-help): Fix up compiler warning.
9933
9934 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
9935
9936 * frameset.el (frameset-p): Add autoload cookie.
9937 (frameset--jump-to-register): New function, based on code moved from
9938 register.el.
9939 (frameset-to-register): Move from register.el. Adapt to `registerv'.
9940
9941 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
9942 (frameset-restore, frameset-save, frameset-session-filter-alist):
9943 Remove declarations.
9944 (register-alist): Doc fix.
9945 (frameset-to-register): Move to frameset.el.
9946 (jump-to-register, describe-register-1): Remove frameset-specific code.
9947
9948 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
9949
9950 * allout-widgets.el (allout-widgets-pre-command-business)
9951 (allout-widgets-post-command-business)
9952 (allout-widgets-after-change-handler)
9953 (allout-decorate-item-and-context, allout-set-boundary-marker)
9954 (allout-body-modification-handler)
9955 (allout-graphics-modification-handler): Mark ignored arguments.
9956 (allout-widgets-post-command-business)
9957 (allout-widgets-exposure-change-processor)
9958 (allout-widgets-exposure-undo-processor)
9959 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
9960 (allout-parse-item-at-point, allout-decorate-item-guides)
9961 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
9962 * allout.el (epa-passphrase-callback-function): Declare.
9963 (allout-overlay-insert-in-front-handler)
9964 (allout-overlay-interior-modification-handler)
9965 (allout-isearch-end-handler, allout-chart-siblings)
9966 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
9967 (allout-yank-processing, allout-process-exposed)
9968 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
9969 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
9970 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
9971 (lisp-indent-defform): Mark ignored arguments.
9972 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
9973 (calculate-lisp-indent): Remove unused variables.
9974 * international/characters.el (indian-2-column, arabic-2-column)
9975 (tibetan): Mark ignored arguments.
9976 (use-cjk-char-width-table): Mark ignored arguments.
9977 Remove unused variables.
9978 * international/fontset.el (build-default-fontset-data)
9979 (x-compose-font-name, create-fontset-from-fontset-spec):
9980 Mark ignored arguments.
9981 (fontset-plain-name): Remove unused variables.
9982 * international/mule.el (charset-id, charset-bytes, generic-char-p)
9983 (keyboard-coding-system): Mark ignored arguments.
9984 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
9985 * help.el (resize-temp-buffer-window):
9986 * window.el (display-buffer-in-major-side-window)
9987 (display-buffer-in-side-window, display-buffer-in-previous-window):
9988 Remove unused variables.
9989 * isearch.el (isearch-forward-symbol):
9990 * version.el (emacs-bzr-version-bzr):
9991 * international/mule-cmds.el (current-language-environment):
9992 * term/common-win.el (x-handle-iconic, x-handle-geometry)
9993 (x-handle-display):
9994 * term/pc-win.el (x-list-fonts, x-display-planes)
9995 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
9996 (x-server-version, x-display-screens, x-display-mm-height)
9997 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
9998 (x-selection-owner-p, x-own-selection-internal)
9999 (x-disown-selection-internal, x-get-selection-internal)
10000 (msdos-initialize-window-system):
10001 * term/tty-colors.el (tty-color-alist, tty-color-clear):
10002 * term/x-win.el (x-handle-no-bitmap-icon):
10003 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
10004 (vc-default-find-file-hook, vc-default-extra-menu):
10005 Mark ignored arguments.
10006
10007 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10008
10009 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
10010 break-condition in the context of the debugged code (bug#12685).
10011
10012 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
10013
10014 * comint.el:
10015 Do not use an overlay to highlight the last prompt. (Bug#14744)
10016 (comint-mode): Make comint-last-prompt buffer local.
10017 (comint-last-prompt): New variable.
10018 (comint-last-prompt-overlay): Remove. Superseded by
10019 comint-last-prompt.
10020 (comint-snapshot-last-prompt, comint-output-filter):
10021 Use comint-last-prompt.
10022
10023 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10024
10025 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
10026 (frameset-save): Check validity of the resulting frameset.
10027
10028 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
10029
10030 * ido.el (ido-record-command): Add doc string.
10031
10032 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10033
10034 * frameset.el (frameset): Do not disable creation of the default
10035 frameset-p predicate. Doc fix.
10036 (frameset-valid-p): New function, copied from the old predicate-p.
10037 Add additional checks.
10038 (frameset-restore): Check with frameset-valid-p.
10039 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
10040 (frameset-name, frameset-description, frameset-properties)
10041 (frameset-states): Add docstring.
10042 (frameset-session-filter-alist, frameset-persistent-filter-alist)
10043 (frameset-filter-alist): Doc fixes.
10044
10045 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10046
10047 * frameset.el (frameset-p, frameset-prop): Doc fixes.
10048
10049 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
10050
10051 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
10052 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
10053 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
10054 (byte-compile-normal-call): Remove obsolescence check.
10055
10056 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
10057
10058 * frameset.el (frameset-restore): Doc fix.
10059
10060 * register.el (frameset-frame-id, frameset-frame-with-id)
10061 (frameset-p, frameset-restore, frameset-save): Declare.
10062 (register-alist): Document framesets.
10063 (frameset-session-filter-alist): Declare.
10064 (frameset-to-register): New function.
10065 (jump-to-register): Implement jumping to framesets. Doc fix.
10066 (describe-register-1): Describe framesets.
10067
10068 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
10069
10070 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
10071
10072 * desktop.el (desktop-save-frameset): Use new frameset-save args.
10073 Use lexical-binding.
10074
10075 * frameset.el (frameset): Use type vector, not list (incompatible
10076 change). Do not declare a new constructor, use the default one.
10077 Upgrade suggested properties `app', `name' and `desc' to slots `app',
10078 `name' and `description', respectively, and add read-only slot
10079 `timestamp'. Doc fixes.
10080 (frameset-copy, frameset-persistent-filter-alist)
10081 (frameset-filter-alist, frameset-switch-to-gui-p)
10082 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
10083 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
10084 (frameset-filter-iconified, frameset-keep-original-display-p):
10085 Doc fixes.
10086 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
10087 Rename from frameset-filter-(save|restore)-param. All callers changed.
10088 Doc fix.
10089 (frameset-p): Adapt to change to vector and be more thorough.
10090 Change arg name to OBJECT. Doc fix.
10091 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
10092 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
10093 All callers changed.
10094 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
10095 All callers changed.
10096 (frameset--record-minibuffer-relationships): Rename from
10097 frameset--process-minibuffer-frames. All callers changed.
10098 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
10099 Use new default constructor (again). Doc fix.
10100 (frameset--find-frame-if): Rename from `frameset--find-frame'.
10101 All callers changed.
10102 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
10103 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
10104 Doc fix.
10105 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
10106 PARAMETERS and WINDOW-STATE, respectively.
10107 (frameset-restore): Add new keyword argument PREDICATE.
10108 Reset frameset--target-display to nil. Doc fix.
10109
10110 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10111
10112 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
10113 (bat-mode): Use it.
10114 (bat-mode-syntax-table): Mark \n as end-of-comment.
10115 (bat-font-lock-keywords): Remove comment rule.
10116
10117 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
10118 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
10119
10120 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
10121 (byte-compile-callargs-warn): Use `push'.
10122 (byte-compile-arglist-warn): Ignore higher-order "calls".
10123 (byte-compile-file-form-autoload): Use `pcase'.
10124 (byte-compile-function-form): If quoting a symbol, check that it exists.
10125
10126 2013-08-07 Eli Zaretskii <eliz@gnu.org>
10127
10128 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
10129 and add a few popular commands found in batch files.
10130 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
10131 (dos-mode): Doc fixes.
10132
10133 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
10134
10135 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
10136 (dos-mode): Use setq-local. Add space after "rem".
10137 (dos-mode-syntax-table): Don't use "w" for symbol chars.
10138 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
10139
10140 2013-08-07 Arni Magnusson <arnima@hafro.is>
10141
10142 * progmodes/dos.el: New file.
10143 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
10144 dos-mode.
10145
10146 2013-08-06 Glenn Morris <rgm@gnu.org>
10147
10148 * calendar/calendar.el: Add new faces, and day-header-array.
10149 (calendar-weekday-header, calendar-weekend-header)
10150 (calendar-month-header): New faces.
10151 (calendar-day-header-construct): New function.
10152 (calendar-day-header-width): Also :set calendar-day-header-array.
10153 (calendar-american-month-header, calendar-european-month-header)
10154 (calendar-iso-month-header): Use calendar- faces.
10155 (calendar-generate-month):
10156 Use calendar-day-header-array for day headers; apply faces to them.
10157 (calendar-mode): Check calendar-font-lock-keywords non-nil.
10158 (calendar-abbrev-construct): Add optional maxlen argument.
10159 (calendar-day-name-array): Doc fix.
10160 (calendar-day-name-array, calendar-abbrev-length)
10161 (calendar-day-abbrev-array):
10162 Also :set calendar-day-header-array, and maybe redraw.
10163 (calendar-day-header-array): New option. (Bug#15007)
10164 (calendar-font-lock-keywords): Set to nil and make obsolete.
10165 (calendar-day-name): Add option to use header array.
10166
10167 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10168
10169 * net/shr.el (shr-render-td): Remove debugging.
10170 (shr-render-td): Make width computation consistent by defaulting
10171 all zero-width columns to 10 characters. This may not be optimal,
10172 but it's at least consistent.
10173 (shr-make-table-1): Redo last change to fix the real problem in
10174 colspan handling.
10175
10176 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10177
10178 * files.el (cache-long-line-scans):
10179 Make obsolete alias to `cache-long-scans'.
10180
10181 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10182
10183 * frameset.el (frameset, frameset-filter-alist)
10184 (frameset-filter-params, frameset-save, frameset--reuse-frame)
10185 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
10186 (frameset-compute-pos): Rename from frameset--compute-pos,
10187 and add docstring.
10188 (frameset-move-onscreen): Use frameset-compute-pos.
10189 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10190
10191 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
10192 Fix typos in docstrings.
10193
10194 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
10195
10196 * frame.el (get-other-frame): Tiny cleanup.
10197
10198 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
10199
10200 * vc/vc.el (vc-default-ignore-completion-table):
10201 Silence byte-compiler warning.
10202
10203 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
10204 slot, which can indeed be nil.
10205 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10206 Move entry for `left' from persistent to live filter alist.
10207 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
10208 Doc fixes.
10209 (frameset-filter-params): When restoring a frame, copy items added to
10210 `filtered', to avoid unwittingly modifying the original parameters.
10211 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
10212 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
10213
10214 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
10215 to use looking-at-p instead of looking-at. (Bug#15028)
10216
10217 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10218
10219 Revert introduction of isearch-filter-predicates (bug#14714).
10220 Rely on add-function instead.
10221 * isearch.el (isearch-filter-predicates): Rename it back to
10222 isearch-filter-predicate.
10223 (isearch-message-prefix): Use advice-function-mapc and advice
10224 properties to get the isearch-message-prefix.
10225 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
10226 instead of run-hook-with-args-until-failure.
10227 (isearch-filter-visible): Not obsolete any more.
10228 * loadup.el: Preload nadvice.
10229 * replace.el (perform-replace): Revert to funcall
10230 instead of run-hook-with-args-until-failure.
10231 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
10232 * dired-aux.el (dired-isearch-filenames-mode): Rename from
10233 dired-isearch-filenames-toggle; make it into a proper minor mode.
10234 Use add/remove-function.
10235 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
10236 Call the minor-mode rather than add/remove-hook.
10237 (dired-isearch-filter-filenames):
10238 Remove isearch-message-prefix property.
10239 * info.el (Info--search-loop): New function, extracted from Info-search.
10240 Funcall isearch-filter-predicate instead of
10241 run-hook-with-args-until-failure isearch-filter-predicates.
10242 (Info-search): Use it.
10243 (Info-mode): Use isearch-filter-predicate instead of
10244 isearch-filter-predicates.
10245
10246 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
10247
10248 Do not call to `selected-window' where it is assumed by default.
10249 Affected functions are `window-minibuffer-p', `window-dedicated-p',
10250 `window-hscroll', `window-width', `window-height', `window-buffer',
10251 `window-frame', `window-start', `window-point', `next-window'
10252 and `window-display-table'.
10253 * abbrev.el (abbrev--default-expand):
10254 * bs.el (bs--show-with-configuration):
10255 * buff-menu.el (Buffer-menu-mouse-select):
10256 * calc/calc.el (calc):
10257 * calendar/calendar.el (calendar-generate-window):
10258 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
10259 (diary-make-entry):
10260 * comint.el (send-invisible, comint-dynamic-complete-filename)
10261 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
10262 * completion.el (complete):
10263 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
10264 * disp-table.el (describe-current-display-table):
10265 * doc-view.el (doc-view-insert-image):
10266 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
10267 * ehelp.el (with-electric-help):
10268 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
10269 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
10270 * emacs-lisp/helper.el (Helper-help-scroller):
10271 * emulation/cua-base.el (cua--post-command-handler-1):
10272 * eshell/esh-mode.el (eshell-output-filter):
10273 * ffap.el (ffap-gnus-wrapper):
10274 * help-macro.el (make-help-screen):
10275 * hilit-chg.el (highlight-compare-buffers):
10276 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
10277 * hl-line.el (global-hl-line-highlight):
10278 * icomplete.el (icomplete-simple-completing-p):
10279 * isearch.el (isearch-done):
10280 * jit-lock.el (jit-lock-stealth-fontify):
10281 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
10282 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
10283 * mpc.el (mpc-tagbrowser, mpc):
10284 * net/rcirc.el (rcirc-any-buffer):
10285 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
10286 * play/landmark.el (landmark-max-width, landmark-max-height):
10287 * play/zone.el (zone):
10288 * progmodes/compile.el (compilation-goto-locus):
10289 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
10290 * progmodes/etags.el (find-tag-other-window):
10291 * progmodes/fortran.el (fortran-column-ruler):
10292 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10293 * progmodes/verilog-mode.el (verilog-point-text):
10294 * reposition.el (reposition-window):
10295 * rot13.el (toggle-rot13-mode):
10296 * server.el (server-switch-buffer):
10297 * shell.el (shell-dynamic-complete-command)
10298 (shell-dynamic-complete-environment-variable):
10299 * simple.el (insert-buffer, set-selective-display)
10300 (delete-completion-window):
10301 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
10302 (speedbar-recenter):
10303 * startup.el (fancy-splash-head):
10304 * textmodes/ispell.el (ispell-command-loop):
10305 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
10306 * tutorial.el (help-with-tutorial):
10307 * vc/add-log.el (add-change-log-entry):
10308 * vc/compare-w.el (compare-windows):
10309 * vc/ediff-help.el (ediff-indent-help-message):
10310 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
10311 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
10312 (ediff-setup-control-frame):
10313 * vc/emerge.el (emerge-position-region):
10314 * vc/pcvs-util.el (cvs-bury-buffer):
10315 * window.el (walk-windows, mouse-autoselect-window-select):
10316 * winner.el (winner-set-conf, winner-undo): Related users changed.
10317
10318 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
10319
10320 * frameset.el (frameset--set-id): Doc fix.
10321 (frameset-frame-id, frameset-frame-id-equal-p)
10322 (frameset-locate-frame-id): New functions.
10323 (frameset--process-minibuffer-frames, frameset--reuse-frame)
10324 (frameset-restore): Use them.
10325
10326 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
10327
10328 Do not call to `selected-frame' where it is assumed by default.
10329 Affected functions are `raise-frame', `redraw-frame',
10330 `frame-first-window', `frame-terminal' and `delete-frame'.
10331 * calendar/appt.el (appt-disp-window):
10332 * epg.el (epg-wait-for-completion):
10333 * follow.el (follow-delete-other-windows-and-split)
10334 (follow-avoid-tail-recenter):
10335 * international/mule.el (set-terminal-coding-system):
10336 * mail/rmail.el (rmail-mail-return):
10337 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
10338 * progmodes/f90.el (f90-add-imenu-menu):
10339 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
10340 * server.el (server-switch-buffer):
10341 * simple.el (delete-completion-window):
10342 * talk.el (talk):
10343 * term/xterm.el (terminal-init-xterm-modify-other-keys)
10344 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
10345 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
10346 * vc/ediff.el (ediff-documentation): Related users changed.
10347 * frame.el (selected-terminal): Remove the leftover.
10348
10349 2013-08-05 Glenn Morris <rgm@gnu.org>
10350
10351 * calendar/calendar.el (calendar-generate-month):
10352 Fix for calendar-column-width != 1 + calendar-day-digit-width.
10353 (calendar-generate-month, calendar-font-lock-keywords):
10354 Fix for calendar-day-header-width > length of any day name.
10355
10356 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
10357
10358 * desktop.el (desktop-clear): Use new name of sort predicate.
10359
10360 * frameset.el (frameset): Add docstring. Move :version property to its
10361 own `version' slot.
10362 (frameset-copy): Rename from copy-frameset.
10363 (frameset-p): Check more thoroughly.
10364 (frameset-prop): Do not check for :version, which is no longer a prop.
10365 (frameset-live-filter-alist, frameset-persistent-filter-alist):
10366 Use new :never value instead of t.
10367 (frameset-filter-alist): Expand and clarify docstring.
10368 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
10369 (frameset-filter-minibuffer, frameset-filter-save-param)
10370 (frameset-filter-restore-param, frameset-filter-iconified):
10371 Add pointer to docstring of frameset-filter-alist.
10372 (frameset-filter-params): Rename filter values to be more meaningful:
10373 :never instead of t, and reverse the meanings of :save and :restore.
10374 (frameset--process-minibuffer-frames): Clarify error message.
10375 (frameset-save): Avoid unnecessary and confusing call to framep.
10376 Use new BOA constructor for framesets.
10377 (frameset--reuse-list): Doc fix.
10378 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
10379 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
10380 (frameset-minibufferless-first-p): Doc fix.
10381 Rename from frameset-sort-frames-for-deletion.
10382 (frameset-restore): Doc fixes. Use new function names.
10383 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
10384
10385 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
10386
10387 * desktop.el (desktop-restore-forces-onscreen)
10388 (desktop-restore-reuses-frames): Document :keyword constant values.
10389 (desktop-filter-parameters-alist): Remove, now identical to
10390 frameset-filter-alist.
10391 (desktop--filter-tty*): Remove, moved to frameset.el.
10392 (desktop-save-frameset, desktop-restore-frameset):
10393 Do not pass :filters argument.
10394
10395 * frameset.el (frameset-live-filter-alist)
10396 (frameset-persistent-filter-alist): New variables.
10397 (frameset-filter-alist): Use them. Add autoload cookie.
10398 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
10399 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
10400 `frameset--id' (it's supposed to be internal to frameset.el).
10401 (frameset--process-minibuffer-frames): Ditto. Doc fix.
10402 (frameset--initial-params): New function.
10403 (frameset--get-frame): Use it. Doc fix.
10404 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
10405 Accept :all, not 'all.
10406 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
10407 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
10408 with fbound symbols. Fix frame id matching, and remove matching ids if
10409 the frame being restored is deleted. Obey :delete.
10410
10411 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
10412
10413 * subr.el (macrop): New function.
10414 (text-clone--maintaining): New var.
10415 (text-clone--maintain): Rename from text-clone-maintain. Use it
10416 instead of inhibit-modification-hooks.
10417
10418 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
10419 a proxy, so as handle autoloads and redefinitions of the target.
10420 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
10421
10422 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
10423 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
10424 (pcase--mutually-exclusive-p): New function.
10425 (pcase--split-consp): Use it.
10426 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
10427 mutually exclusive with the current predicate.
10428
10429 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
10430 (edebug-macrop): Remove. Use `macrop' instead.
10431 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
10432 (ad-macro-p):
10433 * eshell/esh-cmd.el (eshell-macrop):
10434 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
10435
10436 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
10437
10438 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
10439 (advice-mapc): New function, using it.
10440 (advice-function-member-p): New function.
10441 (advice--normalize): Store the cdr in advice--saved-rewrite since
10442 that's the part that will be changed.
10443 (advice--symbol-function): New function.
10444 (advice-remove): Handle removal before the function is defined.
10445 Adjust to new advice--saved-rewrite.
10446 (advice-member-p): Use advice-function-member-p and
10447 advice--symbol-function.
10448
10449 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
10450
10451 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
10452 (frameset-filter-minibuffer): Doc fix.
10453 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
10454 (frameset--set-id, frameset--process-minibuffer-frames)
10455 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
10456 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
10457
10458 * desktop.el (desktop-clear): Only delete frames when called
10459 interactively and desktop-restore-frames is non-nil. Doc fix.
10460 (desktop-read): Set desktop-saved-frameset to nil.
10461
10462 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
10463
10464 * vc/vc.el (vc-ignore): Rewrite.
10465 (vc-default-ignore-completion-table, vc--read-lines)
10466 (vc--add-line, vc--remove-regexp): New functions.
10467
10468 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
10469 (vc-svn-ignore-completion-table): New function.
10470
10471 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
10472 (vc-hg-ignore-completion-table)
10473 (vc-hg-find-ignore-file): New functions.
10474
10475 * vc/vc-git.el (vc-git-ignore): Rewrite.
10476 (vc-git-ignore-completion-table)
10477 (vc-git-find-ignore-file): New functions.
10478
10479 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
10480
10481 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
10482 (vc-bzr-ignore-completion-table)
10483 (vc-bzr-find-ignore-file): New functions.
10484
10485 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
10486
10487 * frameset.el (frameset-prop): New function and setter.
10488 (frameset-save): Do not modify frame list passed by the caller.
10489
10490 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10491
10492 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
10493
10494 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
10495
10496 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
10497 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
10498
10499 * custom.el (custom-initialize-default, custom-initialize-set)
10500 (custom-initialize-reset, custom-initialize-changed): Affect the
10501 toplevel-default-value (bug#6275, bug#14586).
10502 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
10503 for bug#6275.
10504
10505 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
10506
10507 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
10508 Add cl-def* expressions.
10509
10510 * frameset.el (frameset-filter-params): Fix order of arguments.
10511
10512 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
10513
10514 Move code related to saving frames to frameset.el.
10515 * desktop.el: Require frameset.
10516 (desktop-restore-frames): Doc fix.
10517 (desktop-restore-reuses-frames): Rename from
10518 desktop-restoring-reuses-frames.
10519 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
10520 (desktop-clear): Clear frames too.
10521 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
10522 (desktop--filter-tty*, desktop-save, desktop-read):
10523 Use frameset functions.
10524 (desktop-before-saving-frames-functions, desktop--filter-*-color)
10525 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
10526 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
10527 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
10528 (desktop--process-minibuffer-frames, desktop-save-frames)
10529 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
10530 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
10531 (desktop--sort-states, desktop-restoring-frames-p)
10532 (desktop-restore-frames): Remove. Most code moved to frameset.el.
10533 (desktop-restoring-frameset-p, desktop-restore-frameset)
10534 (desktop--check-dont-save, desktop-save-frameset): New functions.
10535 (desktop--app-id): New constant.
10536 (desktop-first-buffer, desktop-buffer-ok-count)
10537 (desktop-buffer-fail-count): Move before first use.
10538 * frameset.el: New file.
10539
10540 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10541
10542 * files.el: Use lexical-binding.
10543 (dir-locals-read-from-file): Remove unused `err' variable.
10544 (hack-dir-local-variables--warned-coding): New var.
10545 (hack-dir-local-variables): Use it to avoid repeated warnings.
10546 (make-backup-file-name--default-function): New function.
10547 (make-backup-file-name-function): Use it as default.
10548 (buffer-stale--default-function): New function.
10549 (buffer-stale-function): Use it as default.
10550 (revert-buffer-insert-file-contents--default-function): New function.
10551 (revert-buffer-insert-file-contents-function): Use it as default.
10552 (insert-directory): Avoid add-to-list.
10553
10554 * autorevert.el (auto-revert-handler): Simplify.
10555 Use buffer-stale--default-function.
10556
10557 2013-08-01 Tassilo Horn <tsdh@gnu.org>
10558
10559 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
10560
10561 * whitespace.el (whitespace-ensure-local-variables): New function.
10562 (whitespace-cleanup-region): Call it.
10563 (whitespace-turn-on): Call it.
10564
10565 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
10566
10567 Complete file name handlers.
10568
10569 * net/tramp.el (tramp-handle-set-visited-file-modtime)
10570 (tramp-handle-verify-visited-file-modtime)
10571 (tramp-handle-file-notify-rm-watch): New functions.
10572 (tramp-call-process): Do not bind `default-directory'.
10573
10574 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10575 Order alphabetically.
10576 <access-file, add-name-to-file, dired-call-process>:
10577 <dired-compress-file, file-acl, file-notify-rm-watch>:
10578 <file-ownership-preserved-p, file-selinux-context>:
10579 <make-directory-internal, make-symbolic-link, set-file-acl>:
10580 <set-file-selinux-context, set-visited-file-modtime>:
10581 <verify-visited-file-modtime>: Add handler.
10582 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
10583
10584 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
10585 <file-notify-add-watch, file-notify-rm-watch>:
10586 <set-file-times, set-visited-file-modtime>:
10587 <verify-visited-file-modtime>: Add handler.
10588 (with-tramp-gvfs-error-message)
10589 (tramp-gvfs-handle-set-visited-file-modtime)
10590 (tramp-gvfs-fuse-file-name): Remove.
10591 (tramp-gvfs-handle-file-notify-add-watch)
10592 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
10593 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
10594
10595 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10596 Order alphabetically.
10597 <file-notify-rm-watch>: Use default Tramp handler.
10598 <executable-find>: Remove private handler.
10599 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
10600 `default-directory'.
10601 (tramp-sh-handle-executable-find)
10602 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
10603 (tramp-sh-file-gvfs-monitor-dir-process-filter)
10604 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
10605 Do not use `format' in `tramp-message'.
10606
10607 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
10608 <file-notify-rm-watch, set-visited-file-modtime>:
10609 <verify-visited-file-modtime>: Add handler.
10610 (tramp-smb-call-winexe): Do not bind `default-directory'.
10611
10612 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
10613
10614 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
10615
10616 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
10617
10618 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
10619 use it.
10620 (log-view-diff-changeset): Same.
10621 (log-view-diff-common): Call backend command `previous-revision'
10622 to find out the previous revision, in both cases. Swap the
10623 variables `to' and `fr', so that `fr' usually refers to the
10624 earlier revision (Bug#14989).
10625
10626 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
10627
10628 * ibuf-ext.el (ibuffer-filter-by-filename):
10629 Make it work with dired buffers too.
10630
10631 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
10632
10633 * emacs-lisp/re-builder.el (reb-color-display-p):
10634 * files.el (save-buffers-kill-terminal):
10635 * net/browse-url.el (browse-url):
10636 * server.el (server-save-buffers-kill-terminal):
10637 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
10638 Prefer nil to selected-frame for the first arg of frame-parameter.
10639
10640 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
10641
10642 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
10643
10644 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
10645
10646 * minibuffer.el (completion--twq-all): Try and preserve each
10647 completion's case choice (bug#14907).
10648
10649 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
10650
10651 * net/network-stream.el (open-network-stream): Mention the new
10652 :nogreeting parameter.
10653 (network-stream-open-starttls): Use the :nogreeting parameter
10654 (bug#14938).
10655
10656 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
10657
10658 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
10659 more natural than popping.
10660
10661 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
10662 (shr-urlify): Highlight under mouse.
10663
10664 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
10665
10666 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
10667
10668 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
10669
10670 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
10671 buffer for output.
10672
10673 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
10674 point-min==1. Fix search string. Fix parentheses missing.
10675
10676 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
10677 assume point-min==1. Fix search string. Fix parentheses missing.
10678
10679 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
10680
10681 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
10682 buffer for output.
10683
10684 2013-07-29 Eli Zaretskii <eliz@gnu.org>
10685
10686 * frame.el (frame-notice-user-settings): Avoid inflooping when the
10687 initial frame is minibuffer-less. (Bug#14841)
10688
10689 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
10690
10691 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
10692 option.
10693
10694 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
10695 (tramp-maybe-open-connection): Use it.
10696
10697 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
10698
10699 * desktop.el (desktop--make-frame): Include `minibuffer' in the
10700 minimal set of parameters passed when creating a frame, because
10701 the minibuffer status of a frame cannot be changed later.
10702
10703 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
10704
10705 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
10706 replace-regexp-in-string and inadvertent omissions in previous change.
10707 (todo-filter-items): Ensure only file names are comma-separated in
10708 name of filtered items buffer.
10709
10710 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
10711
10712 * desktop.el: Optionally force offscreen frames back onscreen.
10713 (desktop-restoring-reuses-frames): New option.
10714 (desktop--compute-pos, desktop--move-onscreen): New functions.
10715 (desktop--make-frame): Use desktop--move-onscreen.
10716
10717 2013-07-27 Alan Mackenzie <acm@muc.de>
10718
10719 Fontify a Java generic method as a function.
10720 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
10721 value to t.
10722
10723 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
10724
10725 * calendar/todo-mode.el: Add command to rename todo files.
10726 (todo-rename-file): New command.
10727 (todo-key-bindings-t): Add key binding for it. Change the
10728 bindings of todo-filter-regexp-items(-multifile) to use `x'
10729 instead of `r', since the latter is better suited to the new
10730 renaming command.
10731
10732 2013-07-27 Alan Mackenzie <acm@muc.de>
10733
10734 Make Java try-with-resources statement parse properly.
10735 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
10736 (c-block-stmt-1-2-key): New language constants/variables.
10737 * progmodes/cc-engine.el (c-beginning-of-statement-1)
10738 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
10739 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
10740 with c-block-stmt-1-2-key.
10741
10742 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
10743
10744 * desktop.el (desktop--make-frame): Apply most frame parameters after
10745 creating the frame to force (partially or totally) offscreen frames to
10746 be restored as such.
10747
10748 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
10749
10750 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
10751 (Bug#14948)
10752
10753 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10754
10755 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
10756 `base' arg of backtrace-frame.
10757
10758 2013-07-26 Eli Zaretskii <eliz@gnu.org>
10759
10760 * simple.el (list-processes): Doc fix.
10761
10762 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
10763
10764 * desktop.el (desktop--select-frame):
10765 Try harder to reuse existing frames.
10766
10767 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10768
10769 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
10770 (edebug-eval): Use backtrace-eval.
10771 (edebug--display, edebug--recursive-edit): Don't let-bind the
10772 edebug-outer-* vars that keep track of variables we locally let-bind.
10773 (edebug-outside-excursion): Don't restore outside values of locally
10774 let-bound vars.
10775 (edebug--display): Use user-error.
10776 (cl-lexical-debug, cl-debug-env): Remove.
10777
10778 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
10779
10780 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
10781 are restored to be sure that they are visible before deleting any
10782 remaining ones.
10783
10784 2013-07-26 Matthias Meulien <orontee@gmail.com>
10785
10786 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
10787 vc-print-root-log. (Bug#14948)
10788
10789 2013-07-26 Richard Stallman <rms@gnu.org>
10790
10791 Add aliases for encrypting mail.
10792 * epa.el (epa-mail-aliases): New option.
10793 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
10794 Bind inhibit-read-only so read-only text doesn't ruin everything.
10795 (epa-mail-default-recipients): New subroutine broken out.
10796 Handle epa-mail-aliases.
10797
10798 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10799
10800 Add support for lexical variables to the debugger's `e' command.
10801 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
10802 vars, except for debugger-outer-match-data.
10803 (debugger-frame-number): Move check for "on a function call" from
10804 callers into it. Add `skip-base' argument.
10805 (debugger-frame, debugger-frame-clear): Simplify accordingly.
10806 (debugger-env-macro): Only reset the state stored in non-variables,
10807 i.e. current-buffer and match-data.
10808 (debugger-eval-expression): Rewrite using backtrace-eval.
10809 * subr.el (internal--called-interactively-p--get-frame): Remove.
10810 (called-interactively-p):
10811 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
10812 `base' arg of backtrace-frame instead.
10813
10814 2013-07-26 Glenn Morris <rgm@gnu.org>
10815
10816 * align.el (align-regexp): Doc fix. (Bug#14857)
10817 (align-region): Explicit error if subexpression missing/does not match.
10818
10819 * simple.el (global-visual-line-mode):
10820 Do not duplicate the mode lighter. (Bug#14858)
10821
10822 2013-07-25 Martin Rudalics <rudalics@gmx.at>
10823
10824 * window.el (display-buffer): In display-buffer bind
10825 split-window-keep-point to t, bug#14829.
10826
10827 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
10828
10829 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
10830 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
10831 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
10832 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
10833 Change accordingly.
10834 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
10835 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
10836
10837 2013-07-25 Glenn Morris <rgm@gnu.org>
10838
10839 * dired-x.el (dired-mark-extension): Convert comment to doc string.
10840
10841 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
10842
10843 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
10844 parameter to modify-frame-parameters if the value has not changed;
10845 this is a workaround for bug#14949.
10846 (desktop--make-frame): On cl-delete-if call, check parameter name,
10847 not full parameter.
10848
10849 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
10850
10851 * vc/vc.el (vc-ignore): New function.
10852
10853 * vc/vc-svn.el (vc-svn-ignore): New function.
10854
10855 * vc/vc-hg.el (vc-hg-ignore): New function.
10856
10857 * vc/vc-git.el (vc-git-ignore): New function.
10858
10859 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
10860 (vc-dir-ignore): New function.
10861
10862 * vc/vc-cvs.el (vc-cvs-ignore): New function.
10863 (cvs-append-to-ignore): Move here from pcvs.el.
10864
10865 * vc/vc-bzr.el (vc-bzr-ignore): New function.
10866
10867 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
10868
10869 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
10870
10871 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
10872 (desktop-restore-frames): Warn when deleting an existing frame failed.
10873
10874 2013-07-24 Glenn Morris <rgm@gnu.org>
10875
10876 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
10877
10878 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
10879
10880 * filenotify.el (file-notify-supported-p):
10881 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
10882 Remove functions.
10883
10884 * autorevert.el (auto-revert-use-notify)
10885 (auto-revert-notify-add-watch):
10886 * net/tramp.el (tramp-file-name-for-operation):
10887 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10888 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10889 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
10890 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
10891 Remove `file-notify-supported-p' entry.
10892
10893 2013-07-24 Glenn Morris <rgm@gnu.org>
10894
10895 * printing.el: Replace all uses of deleted ps-windows-system,
10896 ps-lp-system, ps-flatten-list with lpr- versions.
10897
10898 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10899
10900 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
10901 checked with memq (bug#14935).
10902
10903 * files.el (revert-buffer-function): Use a non-nil default.
10904 (revert-buffer-preserve-modes): Declare var to
10905 provide access to the `preserve-modes' argument.
10906 (revert-buffer): Let-bind it.
10907 (revert-buffer--default): New function, extracted from revert-buffer.
10908
10909 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
10910
10911 * lpr.el: Signal print errors more prominently.
10912 (print-region-function): Don't default to nil.
10913 (lpr-print-region): New function, extracted from print-region-1.
10914 Check lpr's return value and signal an error in case of problem.
10915 (print-region-1): Use it.
10916 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
10917 versions instead.
10918 (ps-printer-name): Default to nil.
10919 (ps-printer-name-option): Default to lpr-printer-switch.
10920 (ps-print-region-function): Don't default to nil.
10921 (ps-postscript-code-directory): Simplify default.
10922 (ps-do-despool): Use lpr-print-region to properly check the outcome.
10923 (ps-string-list, ps-eval-switch, ps-flatten-list)
10924 (ps-flatten-list-1): Remove.
10925 (ps-multibyte-buffer): Avoid setq.
10926 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
10927 (print-region-function, ps-print-region-function): Don't set them here.
10928
10929 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
10930
10931 * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
10932 (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
10933 (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
10934 (ido-decorations): Doc fix.
10935
10936 * ansi-color.el: Fix old URL.
10937
10938 2013-07-23 Michael R. Mauger <michael@mauger.com>
10939
10940 * progmodes/sql.el: Version 3.3
10941 (sql-product-alist): Improve oracle :prompt-cont-regexp.
10942 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
10943 (sql-interactive-remove-continuation-prompt): Rewrite, use
10944 functions above. Fix continuation prompt and complete output line
10945 handling.
10946 (sql-redirect-one, sql-execute): Use `read-only-mode' on
10947 redirected output buffer.
10948 (sql-mode): Restore deleted code (Bug#13591).
10949
10950 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
10951
10952 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
10953
10954 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
10955
10956 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
10957
10958 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
10959 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10960 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
10961
10962 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
10963
10964 * desktop.el (desktop-clear): Simplify; remove useless checks
10965 against invalid buffer names.
10966 (desktop-list*): Use cl-list*.
10967 (desktop-buffer-info, desktop-create-buffer): Simplify.
10968
10969 2013-07-23 Leo Liu <sdl.web@gmail.com>
10970
10971 * bookmark.el (bookmark-make-record): Restore NAME as a default
10972 value. (Bug#14933)
10973
10974 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
10975
10976 * emacs-lisp/autoload.el (autoload--setup-output): New function,
10977 extracted from autoload--insert-text.
10978 (autoload--insert-text): Remove.
10979 (autoload--print-cookie-text): New function, extracted from
10980 autoload--insert-cookie-text.
10981 (autoload--insert-cookie-text): Remove.
10982 (autoload-generate-file-autoloads): Adjust calls accordingly.
10983
10984 * winner.el (winner-hook-installed-p): Remove.
10985 (winner-mode): Simplify accordingly.
10986
10987 * subr.el (add-to-list): Fix compiler-macro when `append' is
10988 not constant. Don't use `cl-member' for the base case.
10989
10990 * progmodes/subword.el: Fix boundary case (bug#13758).
10991 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
10992 own group.
10993 (subword-backward-regexp): Make it a constant.
10994 (subword-forward-internal): Don't treat a trailing capital as the
10995 beginning of a word.
10996
10997 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
10998
10999 * emacs-lisp/package.el (package-menu-mode): Don't modify the
11000 global value of tabulated-list-revert-hook (bug#14930).
11001
11002 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
11003
11004 * desktop.el: Require 'cl-lib.
11005 (desktop-before-saving-frames-functions): New hook.
11006 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
11007 for frames being saved. Rename from desktop--save-minibuffer-frames.
11008 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
11009 Do not save frames with non-nil `desktop-dont-save' parameter.
11010 Filter out deleted frames.
11011 (desktop--find-frame): Use cl-find-if.
11012 (desktop--select-frame): Use cl-(first|second|third) to access values
11013 of desktop-mini.
11014 (desktop--make-frame): Use cl-delete-if.
11015 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
11016 (desktop-restore-frames): Use cl-(first|second|third) to access values
11017 of desktop-mini. Look for visible frame at the end, not while
11018 restoring frames.
11019
11020 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
11021 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
11022 Use string-match-p, looking-at-p (bug#14927).
11023
11024 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
11025
11026 * desktop.el (desktop-saved-frame-states):
11027 Rename from desktop--saved-states; all users changed.
11028 (desktop-save-frames): Rename from desktop--save-frames.
11029 Do not save state to desktop file.
11030 (desktop-save): Save desktop-saved-frame-states to desktop file
11031 and reset to nil.
11032 (desktop-restoring-frames-p): New function.
11033 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
11034 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
11035 buffer-lists when restoring frames. Suggested by Martin Rudalics.
11036
11037 * desktop.el: Correctly restore iconified frames.
11038 (desktop--filter-iconified-position): New function.
11039 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
11040
11041 2013-07-20 Glenn Morris <rgm@gnu.org>
11042
11043 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
11044 Let `message' do the formatting.
11045 (def-gdb-preempt-display-buffer): Add explicit format.
11046
11047 * image-dired.el (image-dired-track-original-file):
11048 Use with-current-buffer.
11049 (image-dired-track-thumbnail): Use with-current-buffer.
11050 Avoid changing point of wrong window.
11051
11052 * image-dired.el (image-dired-track-original-file):
11053 Avoid changing point of wrong window. (Bug#14909)
11054
11055 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
11056
11057 * progmodes/gdb-mi.el (gdb-done-or-error):
11058 Guard against "%" in gdb output. (Bug#14127)
11059
11060 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
11061
11062 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
11063 (Bug#14826)
11064
11065 * international/mule.el (coding-system-iso-2022-flags): Fix last
11066 change.
11067
11068 2013-07-20 Kenichi Handa <handa@gnu.org>
11069
11070 * international/mule.el (coding-system-iso-2022-flags):
11071 Add `8-bit-level-4'. (Bug#8522)
11072
11073 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11074
11075 * net/shr.el (shr-mouse-browse-url): New command and keystroke
11076 (bug#14815).
11077
11078 * net/eww.el (eww-process-text-input): Allow inputting when the
11079 point is at the start of the line, as the properties aren't
11080 front-sticky.
11081
11082 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
11083 degenerate widths.
11084
11085 2013-07-19 Richard Stallman <rms@gnu.org>
11086
11087 * epa.el (epa-popup-info-window): Doc fix.
11088
11089 * subr.el (split-string): New arg TRIM.
11090
11091 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
11092
11093 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
11094 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
11095
11096 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
11097
11098 * filenotify.el (file-notify--library): Rename from
11099 `file-notify-support'. Do not autoload. Adapt all uses.
11100 (file-notify-supported-p): New defun.
11101
11102 * autorevert.el (auto-revert-use-notify):
11103 Use `file-notify-supported-p' instead of `file-notify-support'.
11104 Adapt docstring.
11105 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
11106
11107 * net/tramp.el (tramp-file-name-for-operation):
11108 Add `file-notify-supported-p'.
11109
11110 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
11111 New defun.
11112 (tramp-sh-file-name-handler-alist): Add it as handler for
11113 `file-notify-supported-p '.
11114
11115 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
11116 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11117 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11118 Add `ignore' as handler for `file-notify-*' functions.
11119
11120 2013-07-17 Eli Zaretskii <eliz@gnu.org>
11121
11122 * simple.el (line-move-partial, line-move): Don't start vscroll or
11123 scroll-up if the current line is not taller than the window.
11124 (Bug#14881)
11125
11126 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
11127
11128 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
11129 highlight question marks in the method names as strings.
11130 (ruby-block-beg-keywords): Inline.
11131 (ruby-font-lock-keyword-beg-re): Extract from
11132 `ruby-font-lock-keywords'.
11133
11134 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
11135
11136 * frame.el (blink-cursor-blinks): New defcustom.
11137 (blink-cursor-blinks-done): New defvar.
11138 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
11139 (blink-cursor-timer-function): Check if number of blinks has been
11140 done on X and NS.
11141 (blink-cursor-suspend, blink-cursor-check): New defuns.
11142
11143 2013-07-15 Glenn Morris <rgm@gnu.org>
11144
11145 * edmacro.el (edmacro-format-keys): Fix previous change.
11146
11147 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
11148
11149 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
11150 The hack didn't work outside English locales anyway.
11151
11152 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
11153
11154 * simple.el (define-alternatives): Rename from alternatives-define,
11155 per RMS' suggestion.
11156
11157 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
11158
11159 * desktop.el (desktop-restore-frames): Change default to t.
11160 (desktop-restore-in-current-display): Now offer more options.
11161 (desktop-restoring-reuses-frames): New customization option.
11162 (desktop--saved-states): Doc fix.
11163 (desktop-filter-parameters-alist): New variable, renamed and expanded
11164 from desktop--excluded-frame-parameters.
11165 (desktop--target-display): New variable.
11166 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
11167 (desktop--filter-tty*, desktop--filter-*-color)
11168 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
11169 (desktop--filter-save-desktop-parm)
11170 (desktop-restore-in-original-display-p): New functions.
11171 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
11172 (desktop--save-minibuffer-frames): New function, inspired by a similar
11173 function from Martin Rudalics.
11174 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
11175 (desktop--restore-in-this-display-p): Remove.
11176 (desktop--find-frame): Rename from desktop--find-frame-in-display
11177 and add predicate argument.
11178 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
11179 (desktop--reuse-list): New variable.
11180 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
11181 New functions.
11182 (desktop--restore-frames): Add support for "minibuffer-special" frames.
11183
11184 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
11185
11186 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
11187
11188 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
11189
11190 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11191 Highlight conversion methods on Kernel.
11192
11193 2013-07-13 Alan Mackenzie <acm@muc.de>
11194
11195 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
11196 and comment it out. This out-commenting enables certain C++
11197 declarations to be parsed correctly.
11198
11199 2013-07-13 Eli Zaretskii <eliz@gnu.org>
11200
11201 * international/mule.el (define-coding-system): Doc fix.
11202
11203 * simple.el (default-font-height): Don't call font-info if the
11204 frame's default font didn't change since the frame was created.
11205 (Bug#14838)
11206
11207 2013-07-13 Leo Liu <sdl.web@gmail.com>
11208
11209 * ido.el (ido-read-file-name): Guard against non-symbol value.
11210
11211 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
11212
11213 * progmodes/python.el (python-imenu--build-tree): Fix corner case
11214 in nested defuns.
11215
11216 2013-07-13 Leo Liu <sdl.web@gmail.com>
11217
11218 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
11219 ido-set-matches call. (Bug#6852)
11220
11221 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
11222
11223 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
11224 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
11225 Ruby 2.0.
11226 (ruby-font-lock-keywords): Distinguish calls to functions with
11227 module-like names from module references. Highlight character
11228 literals.
11229
11230 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
11231
11232 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
11233 (gdb-send): Handle continued commands. (Bug#14847)
11234
11235 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11236
11237 * desktop.el (desktop--v2s): Remove unused local variable.
11238 (desktop-save-buffer): Make defvar-local; adjust docstring.
11239 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
11240 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
11241
11242 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
11243
11244 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
11245
11246 2013-07-12 Eli Zaretskii <eliz@gnu.org>
11247
11248 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
11249 (Bug#14842)
11250
11251 2013-07-12 Glenn Morris <rgm@gnu.org>
11252
11253 * doc-view.el: Require cl-lib at runtime too.
11254 (doc-view-remove-if): Remove.
11255 (doc-view-search-next-match, doc-view-search-previous-match):
11256 Use cl-remove-if.
11257
11258 * edmacro.el: Require cl-lib at runtime too.
11259 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
11260 (edmacro-mismatch, edmacro-subseq): Remove.
11261
11262 * shadowfile.el: Require cl-lib.
11263 (shadow-remove-if): Remove.
11264 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
11265 Use cl-remove-if.
11266
11267 * wid-edit.el: Require cl-lib.
11268 (widget-choose): Use cl-remove-if.
11269 (widget-remove-if): Remove.
11270
11271 * progmodes/ebrowse.el: Require cl-lib at runtime too.
11272 (ebrowse-delete-if-not): Remove.
11273 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
11274 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
11275 Use cl-delete-if-not.
11276
11277 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
11278
11279 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
11280 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
11281
11282 2013-07-12 Leo Liu <sdl.web@gmail.com>
11283
11284 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
11285
11286 2013-07-11 Glenn Morris <rgm@gnu.org>
11287
11288 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
11289 (edebug-gensym-index, edebug-gensym):
11290 Remove reimplementation of cl-gensym.
11291 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
11292
11293 * thumbs.el: Require cl-lib at run-time too.
11294 (thumbs-gensym-counter, thumbs-gensym):
11295 Remove reimplementation of cl-gensym.
11296 (thumbs-temp-file): Use cl-gensym.
11297
11298 * emacs-lisp/ert.el: Require cl-lib at runtime too.
11299 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
11300 (ert--intersection, ert--set-difference, ert--set-difference-eq)
11301 (ert--union, ert--gensym-counter, ert--gensym-counter)
11302 (ert--coerce-to-vector, ert--remove*, ert--string-position)
11303 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
11304 (ert-make-test-unbound, ert--expand-should-1)
11305 (ert--expand-should, ert--should-error-handle-error)
11306 (should-error, ert--explain-equal-rec)
11307 (ert--plist-difference-explanation, ert-select-tests)
11308 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
11309 Use cl-lib functions rather than reimplementations.
11310
11311 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
11312
11313 * net/tramp.el (tramp-methods): Extend docstring.
11314 (tramp-connection-timeout): New defcustom.
11315 (tramp-error-with-buffer): Reset timestamp only when appropriate.
11316 (with-tramp-progress-reporter): Simplify.
11317 (tramp-process-actions): Improve messages.
11318
11319 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
11320 * net/tramp-sh.el (tramp-maybe-open-connection):
11321 Use `tramp-connection-timeout'.
11322 (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
11323 (Bug#14808)
11324
11325 2013-07-11 Leo Liu <sdl.web@gmail.com>
11326
11327 * ido.el (ido-read-file-name): Conform to the requirements of
11328 read-file-name. (Bug#11861)
11329 (ido-read-directory-name): Conform to the requirements of
11330 read-directory-name.
11331
11332 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
11333
11334 * subr.el (delay-warning): New function.
11335
11336 2013-07-10 Eli Zaretskii <eliz@gnu.org>
11337
11338 * simple.el (default-line-height): New function.
11339 (line-move-partial, line-move): Use it instead of computing the
11340 line height inline.
11341 (line-move-partial): Always compute ROWH. If the last line is
11342 partially-visible, but its text is completely visible, allow
11343 cursor to enter such a partially-visible line.
11344
11345 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
11346
11347 Improve error messages. (Bug#14808)
11348
11349 * net/tramp.el (tramp-current-connection): New defvar, moved from
11350 tramp-sh.el.
11351 (tramp-message-show-progress-reporter-message): Remove, not
11352 needed anymore.
11353 (tramp-error-with-buffer): Show message in minibuffer.
11354 Discard input before waiting. Reset connection timestamp.
11355 (with-tramp-progress-reporter): Improve messages.
11356 (tramp-process-actions): Use progress reporter. Delete process in
11357 case of error. Improve messages.
11358
11359 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
11360 Call `tramp-error-with-buffer' with vector and buffer.
11361 (tramp-current-connection): Remove.
11362 (tramp-maybe-open-connection): The car of
11363 `tramp-current-connection' are the first 3 slots of the vector.
11364
11365 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
11366
11367 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
11368 inside continued strings.
11369
11370 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
11371
11372 Timestamp fixes for undo (Bug#14824).
11373 * files.el (clear-visited-file-modtime): Move here from fileio.c.
11374
11375 2013-07-10 Leo Liu <sdl.web@gmail.com>
11376
11377 * files.el (require-final-newline): Allow safe local value.
11378 (Bug#14834)
11379
11380 2013-07-09 Leo Liu <sdl.web@gmail.com>
11381
11382 * ido.el (ido-read-directory-name): Handle fallback.
11383 (ido-read-file-name): Update DIR to ido-current-directory.
11384 (Bug#1516)
11385 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
11386
11387 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
11388
11389 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
11390 "autoload". Remove "warn lower camel case" section, previously
11391 commented out. Highlight negation char. Do not highlight the
11392 target in singleton method definitions.
11393
11394 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11395
11396 * faces.el (tty-setup-hook): Declare the hook.
11397
11398 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
11399 and detect when a guard/pred depends on local vars (bug#14773).
11400 (pcase--u1): Adjust caller.
11401
11402 2013-07-08 Eli Zaretskii <eliz@gnu.org>
11403
11404 * simple.el (line-move-partial, line-move): Account for
11405 line-spacing.
11406 (line-move-partial): Avoid setting vscroll when the last
11407 partially-visible line in window is of default height.
11408
11409 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11410
11411 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
11412 been used a while.
11413
11414 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
11415
11416 * subr.el (read-quoted-char): Remove unused local variable `char'.
11417
11418 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
11419
11420 * ediff.el (ediff-version): Version update.
11421 (ediff-files-command, ediff3-files-command, ediff-merge-command)
11422 (ediff-merge-with-ancestor-command, ediff-directories-command)
11423 (ediff-directories3-command, ediff-merge-directories-command)
11424 (ediff-merge-directories-with-ancestor-command): New functions.
11425 All are command-line interfaces to ediff: to facilitate calling
11426 Emacs with the appropriate ediff functions invoked.
11427
11428 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
11429 (viper-save-kill-buffer): Check if buffer is modified.
11430
11431 * viper.el (viper-version): Version update.
11432 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
11433
11434 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
11435
11436 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
11437 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
11438 (viper-intercept-ESC-key): Simplify.
11439 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
11440 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
11441 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
11442 (viper-setup-ESC-to-escape): New functions.
11443 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
11444 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
11445
11446 2013-07-07 Eli Zaretskii <eliz@gnu.org>
11447
11448 * simple.el (default-font-height, window-screen-lines):
11449 New functions.
11450 (line-move, line-move-partial): Use them instead of
11451 frame-char-height and window-text-height. This makes scrolling
11452 text smoother when the buffer's default face uses a font that is
11453 different from the frame's default font.
11454
11455 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
11456
11457 * files.el (write-file): Do not display confirm dialog for NS,
11458 it does its own dialog, which can't be canceled (Bug#14578).
11459
11460 2013-07-06 Eli Zaretskii <eliz@gnu.org>
11461
11462 * simple.el (line-move-partial): Adjust the row returned by
11463 posn-at-point for the current window-vscroll. (Bug#14567)
11464
11465 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
11466
11467 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
11468 (tramp-sh-file-inotifywait-process-filter): Handle file names with
11469 spaces.
11470
11471 2013-07-06 Martin Rudalics <rudalics@gmx.at>
11472
11473 * window.el (window-state-put-stale-windows): New variable.
11474 (window--state-put-2): Save list of windows without matching buffer.
11475 (window-state-put): Remove "bufferless" windows if possible.
11476
11477 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
11478
11479 * simple.el (alternatives-define): Remove leftover :group keyword.
11480 Tweak docstring.
11481
11482 2013-07-06 Leo Liu <sdl.web@gmail.com>
11483
11484 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
11485 (ido-enable-virtual-buffers): New variable.
11486 (ido-buffer-internal, ido-toggle-virtual-buffers)
11487 (ido-make-buffer-list): Use it.
11488 (ido-exhibit): Support turning on and off virtual buffers
11489 automatically.
11490
11491 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
11492
11493 * simple.el (alternatives-define): New macro.
11494
11495 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
11496
11497 * subr.el (read-quoted-char): Use read-key.
11498 (sit-for): Let read-event decode tty input (bug#14782).
11499
11500 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
11501
11502 * calendar/todo-mode.el: Add handling of file deletion, both by
11503 mode command and externally. Fix various related bugs.
11504 Clarify Commentary and improve some documentation strings and code.
11505 (todo-delete-file): New command.
11506 (todo-check-file): New function.
11507 (todo-show): Handle external deletion of the file we're trying to
11508 show (bug#14688). Replace called-interactively-p by an optional
11509 prefix argument to avoid problematic interaction with catch form
11510 when byte compiled (bug#14702).
11511 (todo-quit): Handle external deletion of the archive's todo file.
11512 Make sure the buffer that was visiting the archive file is still
11513 live before trying to bury it.
11514 (todo-category-completions): Handle external deletion of any
11515 category completion files.
11516 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
11517 of todo files, in case of external deletion.
11518 (todo-add-file): Replace unnecessary setq by let-binding.
11519 (todo-find-archive): Check whether there are any archives.
11520 Replace unnecessary setq by let-binding.
11521 (todo-archive-done-item): Use find-file-noselect to get the
11522 archive buffer whether or not the archive already exists.
11523 Remove superfluous code. Use file size instead of buffer-file-name to
11524 check if the archive is new; if it is, update list of archives.
11525 (todo-default-todo-file): Allow nil to be a valid value for when
11526 there are no todo files.
11527 (todo-reevaluate-default-file-defcustom): Use corrected definition
11528 of todo-default-todo-file.
11529 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
11530 (todo-delete-category, todo-show-categories-table)
11531 (todo-category-number): Clarify comment.
11532 (todo-filter-items): Clarify documentation string.
11533 (todo-show-current-file, todo-display-as-todo-file)
11534 (todo-reset-and-enable-done-separator): Tweak documentation string.
11535 (todo-done-separator): Make separator length window-width, since
11536 bug#2749 is now fixed.
11537
11538 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
11539
11540 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
11541 Support both "gvfs-monitor-dir" and "inotifywait".
11542 (tramp-sh-file-inotifywait-process-filter): Rename from
11543 `tramp-sh-file-notify-process-filter'.
11544 (tramp-sh-file-gvfs-monitor-dir-process-filter)
11545 (tramp-get-remote-gvfs-monitor-dir): New defuns.
11546
11547 2013-07-05 Leo Liu <sdl.web@gmail.com>
11548
11549 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
11550
11551 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11552
11553 * frame.el (display-pixel-height, display-pixel-width)
11554 (display-mm-height, display-mm-width): Mention behavior on
11555 multi-monitor setups in docstrings.
11556 (w32-display-monitor-attributes-list): Declare function.
11557 (display-monitor-attributes-list): Use it.
11558
11559 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
11560
11561 * filenotify.el: New package.
11562
11563 * autorevert.el (top): Require filenotify.el.
11564 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
11565 instead.
11566 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
11567 (auto-revert-notify-handler): Use `file-notify-*' functions.
11568
11569 * subr.el (file-notify-handle-event): Move function to filenotify.el.
11570
11571 * net/tramp.el (tramp-file-name-for-operation):
11572 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
11573
11574 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
11575 for `file-notify-add-watch' and `file-notify-rm-watch'.
11576 (tramp-process-sentinel): Improve trace.
11577 (tramp-sh-handle-file-notify-add-watch)
11578 (tramp-sh-file-notify-process-filter)
11579 (tramp-sh-handle-file-notify-rm-watch)
11580 (tramp-get-remote-inotifywait): New defuns.
11581
11582 2013-07-03 Juri Linkov <juri@jurta.org>
11583
11584 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
11585 call of `occur-read-primary-args' to interactive spec.
11586
11587 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
11588 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
11589
11590 2013-07-03 Matthias Meulien <orontee@gmail.com>
11591
11592 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
11593 `Buffer-menu-multi-occur'. Add it to the menu.
11594 (Buffer-menu-mode): Document it in docstring.
11595 (Buffer-menu-multi-occur): New command. (Bug#14673)
11596
11597 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
11598
11599 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
11600 keywords and built-ins.
11601
11602 2013-07-03 Glenn Morris <rgm@gnu.org>
11603
11604 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
11605
11606 Make info-xref checks case-sensitive by default
11607 * info.el (Info-find-node, Info-find-in-tag-table)
11608 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
11609 Add option for exact case matching of nodes.
11610 * info-xref.el (info-xref): New custom group.
11611 (info-xref-case-fold): New option.
11612 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
11613
11614 2013-07-03 Leo Liu <sdl.web@gmail.com>
11615
11616 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
11617
11618 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
11619
11620 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
11621 middle of block statement initially, lower the depth. Remove
11622 FIXME comment, not longer valid. Remove middle of block statement
11623 detection, no need to do that anymore since we've been using
11624 `ruby-parse-region' here.
11625
11626 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
11627
11628 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
11629
11630 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
11631
11632 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
11633
11634 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
11635
11636 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
11637 (desktop-restore-in-current-display): New customization option.
11638 (desktop--excluded-frame-parameters): Add `font'.
11639 (desktop--save-frames): Rename from desktop--save-windows.
11640 (desktop--restore-in-this-display-p): New function.
11641 (desktop--make-full-frame): Remove unwanted width/height from
11642 full(width|height) frames.
11643 (desktop--restore-frames): Rename from desktop--restore-windows.
11644 Obey desktop-restore-current-display. Do not delete old frames or
11645 select a new frame unless we were able to restore at least one frame.
11646
11647 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
11648
11649 * files.el (find-file-noselect): Simplify conditional expression.
11650
11651 * textmodes/remember.el (remember-append-to-file):
11652 Don't mix `find-buffer-visiting' and `get-file-buffer'.
11653
11654 Add `remember-notes' function to store random notes across Emacs
11655 restarts.
11656 * textmodes/remember.el (remember-data-file): Add :set callback to
11657 affect notes buffer (if any).
11658 (remember-notes): New command.
11659 (remember-notes-buffer-name, bury-remember-notes-on-kill):
11660 New defcustoms for the `remember-notes' function.
11661 (remember-notes-save-and-bury-buffer): New command.
11662 (remember-notes-mode-map): New variable.
11663 (remember-mode): New minor mode.
11664 (remember-notes--kill-buffer-query): New function.
11665 * startup.el (initial-buffer-choice): Add notes to custom type.
11666
11667 2013-06-30 Eli Zaretskii <eliz@gnu.org>
11668
11669 * bindings.el (right-char, left-char): Don't call sit-for, this is
11670 no longer needed. Use arithmetic comparison only for numerical
11671 arguments.
11672
11673 * international/mule-cmds.el (select-safe-coding-system):
11674 Handle the case of FROM being a string correctly. (Bug#14755)
11675
11676 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11677
11678 * net/shr.el (shr-make-table-1): Add a sanity check that allows
11679 progression on degenerate tables.
11680 (shr-rescale-image): ImageMagick animated images currently don't work.
11681
11682 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
11683
11684 Some fixes and improvements for desktop frame restoration.
11685 It is still experimental and disabled by default.
11686 * desktop.el (desktop--save-windows): Put the selected frame at
11687 the head of the list.
11688 (desktop--make-full-frame): New function.
11689 (desktop--restore-windows): Try to re-select the frame that was
11690 selected upon saving. Do not abort if some frames fail to restore,
11691 just show an error message and continue. Set up maximized frames
11692 so they have default non-maximized dimensions.
11693
11694 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
11695
11696 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
11697 Don't start heredoc inside a string or comment.
11698
11699 2013-06-29 Eli Zaretskii <eliz@gnu.org>
11700
11701 * bindings.el (visual-order-cursor-movement): New defcustom.
11702 (right-char, left-char): Provide visual-order cursor motion by
11703 calling move-point-visually. Update the doc strings.
11704
11705 2013-06-28 Kenichi Handa <handa@gnu.org>
11706
11707 * international/mule.el (define-coding-system): New coding system
11708 properties :inhibit-null-byte-detection,
11709 :inhibit-iso-escape-detection, and :prefer-utf-8.
11710 (set-buffer-file-coding-system): If :charset-list property of
11711 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
11712 appropriate for setting.
11713
11714 * international/mule-cmds.el (select-safe-coding-system):
11715 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
11716 multibyte characters, return utf-8 (or one of its siblings).
11717
11718 * international/mule-conf.el (prefer-utf-8): New coding system.
11719 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
11720 files.
11721
11722 2013-06-28 Ivan Kanis <ivan@kanis.fr>
11723
11724 * net/shr.el (shr-render-region): New function.
11725
11726 * net/eww.el: Autoload `eww-browse-url'.
11727
11728 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
11729
11730 * emacs-lisp/package-x.el (package-upload-buffer-internal):
11731 Adapt to `package-desc-version' being a list.
11732 Use `package--ac-desc-version' to retrieve version from a package
11733 archive element.
11734
11735 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
11736
11737 New experimental feature to save&restore window and frame setup.
11738 * desktop.el (desktop-save-windows): New defcustom.
11739 (desktop--saved-states): New var.
11740 (desktop--excluded-frame-parameters): New defconst.
11741 (desktop--filter-frame-parms, desktop--find-frame-in-display)
11742 (desktop--restore-windows, desktop--save-windows): New functions.
11743 (desktop-save): Call `desktop--save-windows'.
11744 (desktop-read): Call `desktop--restore-windows'.
11745
11746 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11747
11748 * net/shr.el (add-face-text-property): Remove compat definition.
11749
11750 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
11751
11752 * info.el (Info-try-follow-nearest-node): Move search for footnote
11753 above search for node name to prevent missing a footnote (bug#14717).
11754
11755 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
11756
11757 * obsolete/otodo-mode.el: Add obsolescence info to file header.
11758
11759 2013-06-27 Leo Liu <sdl.web@gmail.com>
11760
11761 * net/eww.el (eww-read-bookmarks): Check file size.
11762
11763 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11764
11765 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
11766 advice--pending if newdef is nil or an autoload (bug#13820).
11767 (advice-mapc): New function.
11768
11769 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11770
11771 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
11772 probably.
11773 (eww-mode-map): Add a menu bar.
11774 (eww-add-bookmark): New command.
11775 (eww-bookmark-mode): New mode and commands.
11776 (eww-add-bookmark): Remove newlines from the title.
11777 (eww-bookmark-browse): Don't bug out if it's the only window.
11778
11779 2013-06-26 Glenn Morris <rgm@gnu.org>
11780
11781 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
11782 (hfy-size): Handle ttys. (Bug#14668)
11783
11784 * info-xref.el: Update for Texinfo 5 change in *note format.
11785 (info-xref-node-re, info-xref-note-re): New constants.
11786 (info-xref-check-buffer): Use info-xref-note-re.
11787
11788 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11789
11790 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
11791
11792 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
11793 nil terminate the loop (bug#14718).
11794
11795 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11796
11797 * net/eww.el: Rework history traversal. When going forward/back,
11798 put these actions into the history, too, so that they can be
11799 replayed.
11800 (eww-render): Move the history reset to the correct buffer.
11801
11802 2013-06-25 Juri Linkov <juri@jurta.org>
11803
11804 * files-x.el (modify-dir-local-variable): Change the header comment
11805 in the file with directory local variables. (Bug#14692)
11806
11807 * files-x.el (read-file-local-variable-value): Add `default'.
11808 (Bug#14710)
11809
11810 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11811
11812 * net/eww.el (eww-make-unique-file-name): Create a unique file
11813 name before saving to entering `y' accidentally asynchronously.
11814
11815 2013-06-25 Ivan Kanis <ivan@kanis.fr>
11816
11817 * net/eww.el (eww-download): New command and keystroke.
11818
11819 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11820
11821 * net/eww.el (eww-copy-page-url): Change name of command.
11822
11823 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
11824 be more consistent with Info and dired.
11825
11826 * net/eww.el (eww-mode-map): Ditto.
11827
11828 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11829
11830 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
11831 packages from archives.
11832 (package-archive-contents): Change format; include obsolete packages.
11833 (package-desc): Use `dir' to mark builtin packages.
11834 (package--from-builtin): Set the `dir' field to `builtin'.
11835 (generated-autoload-file, version-control): Declare.
11836 (package-compute-transaction): Change first arg and return value to be
11837 lists of package-descs. Adjust to new package-archive-contents format.
11838 (package--add-to-archive-contents): Adjust to new
11839 package-archive-contents format.
11840 (package-download-transaction): Arg is now a list of package-descs.
11841 (package-install): If `pkg' is a package name, pass it as
11842 a requirement, so it is subject to the usual (e.g. disabled) checks.
11843 (describe-package): Accept package-desc as well.
11844 (describe-package-1): Describe a specific package-desc. Add links to
11845 other package-descs for the same package name.
11846 (package-menu-describe-package): Pass the actual package-desc.
11847 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
11848 works correctly.
11849 (package-desc-status): New function.
11850 (package-menu--refresh): New function, extracted
11851 from package-menu--generate.
11852 (package-menu--generate): Use it.
11853 (package-delete): Update package-alist.
11854 (package-menu-execute): Don't call package-initialize.
11855
11856 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
11857 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
11858 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
11859 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
11860 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
11861 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
11862
11863 2013-06-25 Martin Rudalics <rudalics@gmx.at>
11864
11865 * window.el (window--state-get-1): Workaround for bug#14527.
11866 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
11867
11868 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
11869
11870 * net/eww.el (eww-back-url): Implement the history by stashing all
11871 the data into a list.
11872 (eww-forward-url): Allow going forward in the history, too.
11873
11874 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
11877 for values and use read--expression for expressions (bug#14710).
11878 (read-file-local-variable): Avoid setq.
11879 (read-file-local-variable-mode): Use minor-mode-list.
11880
11881 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11882
11883 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
11884 for DOI URLs.
11885
11886 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
11887
11888 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
11889 Update imenu-support when dialect changes.
11890
11891 2013-06-25 Leo Liu <sdl.web@gmail.com>
11892
11893 * ido.el (ido-read-internal): Allow forward slash on windows.
11894
11895 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
11896
11897 * net/eww.el (eww): Start of strings is \\`, not ^.
11898
11899 2013-06-24 Ivan Kanis <ivan@kanis.fr>
11900
11901 * net/shr.el (shr-browse-url): Fix interactive spec.
11902
11903 * net/eww.el (eww): Add a trailing slash to domain names.
11904
11905 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
11906
11907 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
11908
11909 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
11910
11911 * net/shr.el (shr-browse-url): Use an external browser if given a
11912 prefix.
11913
11914 * net/eww.el (eww-external-browser): Move to shr.
11915
11916 2013-06-24 Ivan Kanis <ivan@kanis.fr>
11917
11918 * net/eww.el (eww): Work more correctly for file: URLs.
11919 (eww-detect-charset): Allow quoted charsets.
11920 (eww-yank-page-url): New command and keystroke.
11921
11922 2013-06-24 Daiki Ueno <ueno@gnu.org>
11923
11924 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
11925 file name of gpg executable.
11926 (epg-context-program): New function.
11927 (epg-context-home-directory): New function.
11928 (epg-context-set-program): New function.
11929 (epg-context-set-home-directory): New function.
11930 (epg--start): Use `epg-context-program' instead of
11931 'epg-gpg-program'.
11932 (epg--list-keys-1): Likewise.
11933
11934 2013-06-24 Leo Liu <sdl.web@gmail.com>
11935
11936 * ido.el (ido-read-internal): Fix bug#14620.
11937
11938 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
11939
11940 * faces.el (face-documentation): Simplify.
11941 (read-face-attribute, tty-find-type, x-resolve-font-name):
11942 Use `string-match-p'.
11943 (list-faces-display): Use `string-match-p'. Simplify.
11944 (face-spec-recalc): Check face to avoid face alias loops.
11945 (read-color): Use `string-match-p' and non-capturing parenthesis.
11946
11947 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
11948
11949 * net/shr.el (shr-rescale-image): Use the new
11950 :max-width/:max-height functionality.
11951
11952 2013-06-23 Ivan Kanis <ivan@kanis.fr>
11953
11954 * net/eww.el (eww-search-prefix): New variable.
11955 (eww): Use it.
11956 (eww-external-browser): New variable.
11957 (eww-mode-map): New keystroke.
11958 (eww-browse-with-external-browser): New command.
11959
11960 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
11961
11962 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
11963
11964 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
11965 Don't skip aligning the next header field when padding is 0;
11966 otherwise, field width is not respected unless the title is as
11967 wide as the field.
11968
11969 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
11970
11971 * emacs-lisp/package.el (package-el-version): Remove.
11972 (package-process-define-package): Fix inf-loop.
11973 (package-install): Allow symbols as arguments again.
11974
11975 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
11976
11977 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
11978 add some more keyword-like methods.
11979 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
11980
11981 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
11982
11983 * bs.el (bs-buffer-show-mark): Make defvar-local.
11984 (bs-mode): Use setq-local.
11985
11986 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
11987 (emacs-lock--try-unlocking): Make defvar-local.
11988
11989 2013-06-22 Glenn Morris <rgm@gnu.org>
11990
11991 * play/cookie1.el (cookie-apropos): Minor simplification.
11992
11993 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
11994
11995 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
11996
11997 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
11998 `regexp-opt', it breaks the build during dumping.
11999
12000 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
12001
12002 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
12003 Highlight keyword-like methods on Kernel and Module with
12004 font-lock-builtin-face.
12005 (auto-mode-alist): Consolidate different entries into one regexp
12006 and add more *file-s.
12007
12008 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
12009
12010 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
12011
12012 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
12013 (diary-entry): Use it in the action of this button type instead of
12014 diary-goto-entry.
12015
12016 * calendar/todo-mode.el: New version.
12017 (todo-add-category): Append new category to end of file and give
12018 it the highest number, instead of putting it at the beginning and
12019 giving it 0. Incorporate noninteractive functionality.
12020 (todo-forward-category): Adapt to 1-based category numbering.
12021 Allow skipping over archived categories.
12022 (todo-backward-category): Derive from todo-forward-category.
12023 (todo-backward-item, todo-forward-item): Make noninteractive and
12024 delegate interactive part to new commands. Make sensitive to done items.
12025 (todo-categories): Make value an alist of category names and
12026 vectors of item counts.
12027 (todo-category-beg): Make a defconst.
12028 (todo-category-number): Use 1 instead of 0 as initial value.
12029 (todo-category-select): Make sensitive to overlays, optional item
12030 highlighting and done items.
12031 (todo-delete-item): Make sensitive to overlays and marked and done items.
12032 (todo-edit-item): Make sensitive to overlays and editing of
12033 date/time header optional. Add format checks.
12034 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
12035 no-op if point is not on an item. Advertise using todo-edit-quit.
12036 (todo-edit-mode): Make sensitive to new format, font-locking, and
12037 multiple todo files.
12038 (todo-insert-item, todo-insert-item-here): Derive from
12039 todo-basic-insert-item and extend functionality.
12040 (todo-item-end, todo-item-start): Make sensitive to done items.
12041 (todo-item-string): Don't return text properties. Restore point.
12042 (todo-jump-to-category): Make sensitive to multiple todo files and
12043 todo archives. Use extended category completion.
12044 (todo-lower-item, todo-raise-item): Rename to *-priority and
12045 derive from todo-set-item-priority.
12046 (todo-mode): Derive from special-mode. Make sensitive to new
12047 format, font-locking and multiple todo files. Make read-only.
12048 (todo-mode-map): Don't suppress digit keys, so they can supply
12049 prefix arguments. Add many new key bindings.
12050 (todo-prefix): Insert as an overlay instead of file text.
12051 Change semantics from diary date expression to purely visual mark.
12052 (todo-print): Rename to todo-print-buffer. Make buffer display
12053 features printable. Remove option to restrict number of items
12054 printed. Add option to print to file.
12055 (todo-print-function): Rename to todo-print-buffer-function.
12056 (todo-quit): Extend to handle exiting new todo modes.
12057 (todo-remove-item): Make sensitive to overlays.
12058 (todo-save): Extend to buffers of filtered items.
12059 (todo-show): Make sensitive to done items, multiple todo files and
12060 new todo modes. Offer to convert legacy todo file before creating
12061 first new todo file.
12062 (todo-show-priorities): Rename to todo-top-priorities.
12063 Change semantics of value 0.
12064 (todo-top-priorities): Rename to todo-filter-top-priorities,
12065 derive from todo-filter-items and extend functionality.
12066 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
12067 and extend functionality to other types of filtered items.
12068 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
12069 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
12070 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
12071 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
12072 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
12073 (todo-edit-mode-hook, todo-entry-prefix-function)
12074 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
12075 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
12076 (todo-initials, todo-insert-threshold, todo-item-string-start)
12077 (todo-line-string, todo-menu, todo-mode-hook)
12078 (todo-more-important-p, todo-previous-answer, todo-previous-line)
12079 (todo-print-priorities, todo-remove-separator)
12080 (todo-save-top-priorities-too, todo-string-count-lines)
12081 (todo-string-multiline-p, todo-time-string-format)
12082 (todo-tmp-buffer-name): Remove.
12083 (todo-add-file, todo-archive-done-item, todo-choose-archive)
12084 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
12085 (todo-edit-category-diary-inclusion)
12086 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
12087 (todo-edit-file, todo-edit-item-date-day)
12088 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
12089 (todo-edit-item-date-month, todo-edit-item-date-to-today)
12090 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
12091 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
12092 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
12093 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
12094 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
12095 (todo-filter-top-priorities-multifile, todo-find-archive)
12096 (todo-find-filtered-items-file, todo-go-to-source-item)
12097 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
12098 (todo-jump-to-archive-category, todo-lower-category)
12099 (todo-mark-category, todo-marked-item-p, todo-merge-category)
12100 (todo-move-category, todo-move-item, todo-next-button)
12101 (todo-next-item, todo-padded-string, todo-powerset)
12102 (todo-previous-button, todo-previous-item)
12103 (todo-print-buffer-to-file, todo-raise-category)
12104 (todo-rename-category, todo-repair-categories-sexp, todo-search)
12105 (todo-set-category-number, todo-set-item-priority)
12106 (todo-set-top-priorities-in-category)
12107 (todo-set-top-priorities-in-file, todo-show-categories-table)
12108 (todo-sort-categories-alphabetically-or-numerically)
12109 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
12110 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
12111 (todo-toggle-item-header, todo-toggle-item-highlighting)
12112 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
12113 (todo-toggle-view-done-items, todo-toggle-view-done-only)
12114 (todo-unarchive-items, todo-unmark-category): New commands.
12115 (todo-absolute-file-name, todo-add-to-buffer-list)
12116 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
12117 (todo-basic-insert-item, todo-category-completions)
12118 (todo-category-number, todo-category-string-matcher-1)
12119 (todo-category-string-matcher-2, todo-check-filtered-items-file)
12120 (todo-check-format, todo-clear-matches)
12121 (todo-comment-string-matcher, todo-convert-legacy-date-time)
12122 (todo-current-category, todo-date-string-matcher)
12123 (todo-define-insertion-command, todo-diary-expired-matcher)
12124 (todo-diary-goto-entry, todo-diary-item-p)
12125 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
12126 (todo-display-categories, todo-display-sorted, todo-done-item-p)
12127 (todo-done-item-section-p, todo-done-separator)
12128 (todo-done-string-matcher, todo-files, todo-filter-items)
12129 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
12130 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
12131 (todo-insert-category-line, todo-insert-item-from-calendar)
12132 (todo-insert-sort-button, todo-insert-with-overlays)
12133 (todo-insertion-command-name, todo-insertion-key-bindings)
12134 (todo-label-to-key, todo-longest-category-name-length)
12135 (todo-make-categories-list, todo-mode-external-set)
12136 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
12137 (todo-modes-set-3, todo-multiple-filter-files)
12138 (todo-nondiary-marker-matcher, todo-prefix-overlays)
12139 (todo-read-category, todo-read-date, todo-read-dayname)
12140 (todo-read-file-name, todo-read-time)
12141 (todo-reevaluate-category-completions-files-defcustom)
12142 (todo-reevaluate-default-file-defcustom)
12143 (todo-reevaluate-filelist-defcustoms)
12144 (todo-reevaluate-filter-files-defcustom)
12145 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
12146 (todo-reset-done-separator, todo-reset-done-separator-string)
12147 (todo-reset-done-string, todo-reset-global-current-todo-file)
12148 (todo-reset-highlight-item, todo-reset-nondiary-marker)
12149 (todo-reset-prefix, todo-set-categories)
12150 (todo-set-date-from-calendar, todo-set-show-current-file)
12151 (todo-set-top-priorities, todo-short-file-name)
12152 (todo-show-current-file, todo-sort, todo-time-string-matcher)
12153 (todo-total-item-counts, todo-update-buffer-list)
12154 (todo-update-categories-display, todo-update-categories-sexp)
12155 (todo-update-count, todo-validate-name, todo-y-or-n-p):
12156 New functions.
12157 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
12158 New major modes.
12159 (todo-categories, todo-display, todo-edit, todo-faces)
12160 (todo-filtered): New defgroups.
12161 (todo-archived-only, todo-button, todo-category-string, todo-date)
12162 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
12163 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
12164 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
12165 (todo-add-item-if-new-category, todo-always-add-time-string)
12166 (todo-categories-align, todo-categories-archived-label)
12167 (todo-categories-category-label, todo-categories-diary-label)
12168 (todo-categories-done-label, todo-categories-number-separator)
12169 (todo-categories-todo-label, todo-categories-totals-label)
12170 (todo-category-completions-files, todo-completion-ignore-case)
12171 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
12172 (todo-done-separator-string, todo-done-string)
12173 (todo-files-function, todo-filter-done-items, todo-filter-files)
12174 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
12175 (todo-initial-category, todo-initial-file, todo-item-mark)
12176 (todo-legacy-date-time-regexp, todo-mode-line-function)
12177 (todo-nondiary-marker, todo-number-prefix)
12178 (todo-print-buffer-function, todo-show-current-file)
12179 (todo-show-done-only, todo-show-first, todo-show-with-done)
12180 (todo-skip-archived-categories, todo-top-priorities-overrides)
12181 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
12182 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
12183 New defcustoms.
12184 (todo-category-done, todo-date-pattern, todo-date-string-start)
12185 (todo-diary-items-buffer, todo-done-string-start)
12186 (todo-filtered-items-buffer, todo-item-start)
12187 (todo-month-abbrev-array, todo-month-name-array)
12188 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
12189 (todo-top-priorities-buffer): New defconsts.
12190 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
12191 (todo-categories-with-marks, todo-category-string-face)
12192 (todo-comment-face, todo-comment-string, todo-current-todo-file)
12193 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
12194 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
12195 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
12196 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
12197 (todo-font-lock-keywords, todo-global-current-todo-file)
12198 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
12199 (todo-insertion-commands-args)
12200 (todo-insertion-commands-args-genlist)
12201 (todo-insertion-commands-names, todo-insertion-map)
12202 (todo-key-bindings-t, todo-key-bindings-t+a)
12203 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
12204 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
12205 (todo-nondiary-face, todo-print-buffer, todo-time-face)
12206 (todo-visited): New variables.
12207
12208 2013-06-21 Glenn Morris <rgm@gnu.org>
12209
12210 * play/cookie1.el (cookie-apropos): Add optional display argument.
12211 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
12212 (psychoanalyze-pinhead): Use cookie-doctor.
12213
12214 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12215
12216 * emacs-lisp/package.el (tar-get-file-descriptor)
12217 (tar--extract): Declare.
12218
12219 2013-06-21 Eduard Wiebe <usenet@pusto.de>
12220
12221 Extend flymake's warning predicate to be a function (bug#14217).
12222 * progmodes/flymake.el (flymake-warning-predicate): New.
12223 (flymake-parse-line): Use it.
12224 (flymake-warning-re): Make obsolete alias to
12225 `flymake-warning-predicate'.
12226
12227 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12228
12229 * emacs-lisp/package.el (package-alist): Include obsolete packages.
12230 (package-obsolete-list): Remove.
12231 (package-activate): Remove min-version argument. Add `force' argument.
12232 Adjust to new package-alist format.
12233 (package-mark-obsolete): Remove.
12234 (package-unpack): Force reload of the package's autoloads.
12235 (package-installed-p): Check builtins if the installed package is not
12236 recent enough.
12237 (package-initialize): Don't reset package-obsolete-list.
12238 Don't specify which package version to activate.
12239 (package-process-define-package, describe-package-1)
12240 (package-menu--generate): Adjust to new package-alist format.
12241
12242 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12243
12244 * allout-widgets.el (allout-widgets-mode-off)
12245 (allout-widgets-mode-on, allout-widgets-pre-command-business)
12246 (allout-widgets-post-command-business)
12247 (allout-widgets-after-copy-or-kill-function)
12248 (allout-widgets-after-undo-function, allout-test-range-overlaps)
12249 (allout-decorate-item-and-context)
12250 (allout-graphics-modification-handler): Fix typos in docstrings.
12251 (allout-get-or-create-parent-widget): Use `looking-at-p'.
12252
12253 * cmuscheme.el (scheme-start-file): Doc fix.
12254 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
12255 (scheme-input-filter): Use `string-match-p'.
12256
12257 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
12258
12259 * dired-x.el: Use Dired consistently in docstrings.
12260
12261 * dired.el: Use Dired consistently in docstrings.
12262 (dired-readin, dired-mode): Use `setq-local'.
12263 (dired-switches-alist): Make defvar-local.
12264 (dired-buffers-for-dir): Use `zerop'.
12265 (dired-safe-switches-p, dired-switches-escape-p)
12266 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
12267 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
12268 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
12269 (dired-goto-next-nontrivial-file): Use `string-match-p'.
12270 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
12271 (dired-toggle-marks, dired-mark-files-containing-regexp)
12272 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
12273 (dired-flag-auto-save-files, dired-flag-backup-files):
12274 Use `looking-at-p'.
12275 (dired-mark-files-regexp, dired-build-subdir-alist):
12276 Use `string-match-p', `looking-at-p'.
12277
12278 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
12279 (direct-print-region-helper): Use `string-match-p'.
12280
12281 2013-06-21 Leo Liu <sdl.web@gmail.com>
12282
12283 * comint.el (comint-redirect-results-list-from-process):
12284 Fix infinite loop.
12285
12286 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12287
12288 * net/eww.el (eww-update-header-line-format): Quote % characters.
12289
12290 2013-06-21 Glenn Morris <rgm@gnu.org>
12291
12292 * play/cookie1.el (cookie): New custom group.
12293 (cookie-file): New option.
12294 (cookie-check-file): New function.
12295 (cookie): Make it interactive. Make start and end messages optional.
12296 Interactively, display the result. Default to cookie-file.
12297 (cookie-insert): Default to cookie-file.
12298 (cookie-snarf): Make start and end messages optional.
12299 Default to cookie-file. Use with-temp-buffer.
12300 (cookie-read): Rename from read-cookie.
12301 Make start and end messages optional. Default to cookie-file.
12302 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
12303 Do not autoload it.
12304 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
12305 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
12306
12307 2013-06-21 Leo Liu <sdl.web@gmail.com>
12308
12309 * progmodes/octave.el (octave-mode): Backward compatibility fix.
12310
12311 2013-06-21 Glenn Morris <rgm@gnu.org>
12312
12313 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
12314
12315 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12316 Daniel Hackney <dan@haxney.org>
12317
12318 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
12319 Consolidate the single-file vs tarball code.
12320 (package-desc-suffix): New function.
12321 (package-desc-full-name): Don't bother inlining it.
12322 (package-load-descriptor): Return the new package-desc.
12323 (package-mark-obsolete): Remove unused arg `package'.
12324 (package-unpack): Make it work for single files as well.
12325 Make it update package-alist.
12326 (package--make-autoloads-and-stuff): Rename from
12327 package--make-autoloads-and-compile. Don't compile any more.
12328 (package--compile): New function.
12329 (package-generate-description-file): New function, extracted from
12330 package-unpack-single.
12331 (package-unpack-single): Remove.
12332 (package--with-work-buffer): Add indentation and debugging info.
12333 (package-download-single): Remove.
12334 (package-install-from-archive): Rename from package-download-tar, make
12335 it take a pkg-desc, and make it work for single files as well.
12336 (package-download-transaction): Simplify.
12337 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
12338 external tar program.
12339 (package-install-from-buffer): Remove `pkg-desc' argument.
12340 Use package-tar-file-info for tar-mode buffers.
12341 (package-install-file): Simplify accordingly.
12342 (package-archive-base): Change to take a pkg-desc.
12343 * tar-mode.el (tar--check-descriptor): New function, extracted from
12344 tar-get-descriptor.
12345 (tar-get-descriptor): Use it.
12346 (tar-get-file-descriptor): New function.
12347 (tar--extract): New function, extracted from tar-extract.
12348 (tar--extract): Use it.
12349 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
12350 case the summary uses non-ascii. Adjust to new calling convention of
12351 package-tar-file-info.
12352
12353 2013-06-21 Leo Liu <sdl.web@gmail.com>
12354
12355 * comint.el (comint-redirect-results-list-from-process):
12356 Fix random delay. (Bug#14681)
12357
12358 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
12359
12360 * profiler.el (profiler-format-number): Use log, not log10.
12361
12362 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12363
12364 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
12365
12366 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12367
12368 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
12369 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
12370 yet available.
12371 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
12372 (AUTOGENEL): ... here.
12373 * emacs-lisp/cl-macs.el (cl--sublis): New function.
12374 (cl--defsubst-expand): Use it.
12375
12376 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
12377
12378 * subr.el (log10): Move here from C code, and declare as obsolete.
12379 All uses of (log10 X) replaced with (log X 10).
12380
12381 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12382
12383 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
12384 Declare with `defvar-local'.
12385 (tabulated-list-use-header-line, tabulated-list-entries)
12386 (tabulated-list-padding, tabulated-list-printer)
12387 (tabulated-list-sort-key): Declare with `defvar-local'.
12388 (tabulated-list-init-header, tabulated-list-print-fake-header):
12389 Use `setq-local'.
12390
12391 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
12392
12393 * arc-mode.el (archive-mode): Add `archive-write-file' to
12394 `write-contents-functions' also for remote files. (Bug#14652)
12395
12396 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
12397
12398 * cus-edit.el (custom-commands): Fix typos.
12399 (custom-display): Fix tooltip text.
12400 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
12401 Fix typos in docstrings.
12402 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
12403 (custom-unlispify-menu-entry, custom-magic-value-create)
12404 (custom-add-see-also, custom-group-value-create): Use ?\s.
12405 (custom-guess-type, customize-apropos, editable-field)
12406 (custom-face-value-create): Use `string-match-p'.
12407 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
12408
12409 * custom.el (custom-load-symbol): Use `string-match-p'.
12410
12411 * ansi-color.el: Convert to lexical binding.
12412 (ansi-colors): Fix URL.
12413 (ansi-color-context, ansi-color-context-region): Use defvar-local.
12414 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
12415 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
12416
12417 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12418
12419 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
12420
12421 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
12422
12423 2013-06-19 Tom Tromey <tromey@redhat.com>
12424
12425 * net/eww.el (eww-top-url): Remove.
12426 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
12427 (eww-render): Set new variables. Don't set eww-top-url.
12428 (eww-handle-link): Handle "prev", "home", and "contents".
12429 Downcase the rel text.
12430 (eww-top-url): Choose best top URL.
12431
12432 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12433
12434 * net/eww.el: Rewrite to implement form elements "by hand" instead of
12435 relying in widget.el. Using widget.el leads to too many
12436 user interface inconsistencies.
12437 (eww-self-insert): Implement entering commands in text fields.
12438 (eww-process-text-input): New function to make text input field editing
12439 work.
12440 (eww-submit): Rewrite to use the new-style form methods.
12441 (eww-select-display): Display the correct selected item.
12442 (eww-change-select): Implement changing the select value.
12443 (eww-toggle-checkbox): Implement radio/checkboxes.
12444 (eww-update-field): Fix compilation error.
12445 (eww-tag-textarea): Implement <textarea>.
12446
12447 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
12448 we don't shadow mode-specific bindings.
12449
12450 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
12451 nothing to push.
12452
12453 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
12454
12455 2013-06-19 Glenn Morris <rgm@gnu.org>
12456
12457 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
12458
12459 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
12460
12461 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
12462 not needed.
12463
12464 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
12465
12466 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12467
12468 * net/browse-url.el (browse-url-browser-function):
12469 `eww-browse-url' has the right calling signature, `eww' does not.
12470
12471 2013-06-19 Glenn Morris <rgm@gnu.org>
12472
12473 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12474 Only eval autoloaded macros.
12475 (byte-compile-autoload): Only give the macro warning for macros.
12476
12477 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
12478 (ps-underlined-faces): Declare.
12479
12480 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
12481 (speedbar-add-supported-extension): Declare.
12482
12483 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
12484 Don't include a date stamp in the header of the generated file;
12485 it leads to needless differences between output files.
12486
12487 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
12488
12489 * net/secrets.el (secrets-struct-secret-content-type):
12490 Replace check of introspection data by a test call of "CreateItem".
12491 Some servers do not offer introspection.
12492
12493 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
12494
12495 * electric.el (electric-pair-mode): Improve interaction with
12496 electric-layout-mode.
12497 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
12498 (electric-pair-syntax): Use text-mode-syntax-table in comments
12499 and strings.
12500 (electric-pair--insert): New function.
12501 (electric-pair-post-self-insert-function): Use it and
12502 electric--after-char-pos.
12503
12504 2013-06-19 Leo Liu <sdl.web@gmail.com>
12505
12506 * progmodes/octave.el (octave-help): Fix regexp.
12507
12508 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
12509
12510 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
12511 (shr-table-horizontal-line): Allow nil as a value, and change the
12512 default.
12513 (shr-insert-table-ruler): Respect the nil value.
12514
12515 2013-06-18 Tom Tromey <tromey@barimba>
12516
12517 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
12518 New defvars.
12519 (eww-open-file): New defun.
12520 (eww-render): Initialize new variables.
12521 (eww-display-html): Handle "link" and "a".
12522 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
12523 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
12524 (eww-back-url): Rename from eww-previous-url.
12525 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
12526 New defuns.
12527
12528 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
12529
12530 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
12531 Distinguish ternary operator tokens from slash symbol and slash
12532 char literal.
12533
12534 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
12535
12536 Convert symbol prettification into minor mode and global minor mode.
12537
12538 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
12539 `prog-prettify-symbols', and make a local defvar instead of defcustom.
12540 (prettify-symbols--keywords): Rename from
12541 `prog-prettify-symbols-alist' and make a local defvar.
12542 (prettify-symbols--compose-symbol): Rename from
12543 `prog--prettify-font-lock-compose-symbol'.
12544 (prettify-symbols--make-keywords): Rename from
12545 `prog-prettify-font-lock-symbols-keywords' and simplify.
12546 (prog-prettify-install): Remove.
12547 (prettify-symbols-mode): New minor mode, based on
12548 `prog-prettify-install'.
12549 (turn-on-prettify-symbols-mode): New function.
12550 (global-prettify-symbols-mode): New globalized minor mode.
12551
12552 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12553 * progmodes/cfengine.el (cfengine3-mode):
12554 * progmodes/perl-mode.el (perl-mode): Don't call
12555 `prog-prettify-install'; set `prettify-symbols-alist' instead.
12556
12557 2013-06-18 Juri Linkov <juri@jurta.org>
12558
12559 * files-x.el (modify-file-local-variable-message): New function.
12560 (modify-file-local-variable)
12561 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
12562 and call `modify-file-local-variable-message' when it's non-nil.
12563 (add-file-local-variable, delete-file-local-variable)
12564 (add-file-local-variable-prop-line)
12565 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
12566 and use it. (Bug#9820)
12567
12568 2013-06-18 Juri Linkov <juri@jurta.org>
12569
12570 * emulation/vi.el (vi-shell-op):
12571 * emulation/vip.el (vip-execute-com, ex-command):
12572 * emulation/viper-cmd.el (viper-exec-bang):
12573 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
12574 the call of `shell-command-on-region'. (Bug#14637)
12575
12576 * simple.el (shell-command-on-region): Doc fix.
12577
12578 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12579
12580 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
12581 (bug#14633).
12582
12583 2013-06-18 Glenn Morris <rgm@gnu.org>
12584
12585 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
12586
12587 * newcomment.el (comment-search-forward, comment-search-backward):
12588 Doc fix. (Bug#14376)
12589
12590 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
12591
12592 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
12593 (buffer-face-mode-invoke): Doc fix.
12594
12595 2013-06-18 Matthias Meulien <orontee@gmail.com>
12596
12597 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
12598 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
12599
12600 2013-06-18 Glenn Morris <rgm@gnu.org>
12601
12602 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
12603 Replace obsolete function generic-make-keywords with its expansion.
12604
12605 * progmodes/python.el (ffap-alist): Declare.
12606
12607 * textmodes/reftex.el (bibtex-mode-map): Declare.
12608
12609 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12610
12611 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
12612 (package-unpack, package-unpack-single): Return the pkg-dir.
12613 (package-download-transaction): Use it to update package-alist.
12614
12615 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
12616
12617 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
12618 possible choice.
12619
12620 2013-06-17 Juri Linkov <juri@jurta.org>
12621
12622 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
12623
12624 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
12625
12626 * emacs-lisp/package.el (package-load-descriptor):
12627 Remove `with-syntax-table' call, `read' doesn't need it.
12628 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
12629
12630 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
12631
12632 * startup.el (command-line): Expand package name returned by
12633 `package--description-file' (bug#14639).
12634
12635 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
12636
12637 * emacs-lisp/package.el (package-load-descriptor): Do not call
12638 `emacs-lisp-mode', just use its syntax table.
12639
12640 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
12641
12642 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
12643 `font-lock-extra-managed-props' if any prettifying keyword is added.
12644 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
12645 (prog-mode): Use `setq-local'.
12646
12647 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12648
12649 * international/characters.el (standard-case-table): Set syntax of ?»
12650 and ?« to punctuation.
12651
12652 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
12653
12654 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
12655 Save relevant match data before calling `syntax-ppss' (bug#14595).
12656
12657 2013-06-15 Juri Linkov <juri@jurta.org>
12658
12659 * files-x.el (modify-file-local-variable-prop-line): Add local
12660 variables to the end of the existing comment on the first line.
12661 Use `file-auto-mode-skip' to skip interpreter magic line,
12662 and also skip XML declaration.
12663
12664 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12665
12666 * startup.el (package--builtin-versions): New var.
12667 (package-subdirectory-regexp): Remove.
12668 (package--description-file): Hard code its value instead.
12669
12670 * emacs-lisp/package.el: Don't activate packages older than builtin.
12671 (package-obsolete-list): Rename from package-obsolete-alist, and make
12672 it into a simple list of package-desc.
12673 (package-strip-version): Remove.
12674 (package-built-in-p): Use package--builtin-versions.
12675 (package-mark-obsolete): Simplify.
12676 (package-process-define-package): Mark it obsolete if older than the
12677 builtin version.
12678 (package-handle-response): Use line-end-position.
12679 (package-read-archive-contents, package--download-one-archive):
12680 Simplify.
12681 (package--add-to-archive-contents): Skip if older than the builtin or
12682 installed version.
12683 (package-menu-describe-package): Fix last change.
12684 (package-list-unversioned): New var.
12685 (package-menu--generate): Use it.
12686
12687 * emacs-lisp/autoload.el: Manage package--builtin-versions.
12688 (autoload--insert-text, autoload--insert-cookie-text): New functions.
12689 (autoload-builtin-package-versions): New variable.
12690 (autoload-generate-file-autoloads): Use them.
12691 Remove the list of autoloaded functions/macros from the
12692 (autoload...) comments.
12693
12694 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
12695
12696 2013-06-15 Eli Zaretskii <eliz@gnu.org>
12697
12698 * simple.el (line-move-partial): Don't jump to the next screen
12699 line as soon as it becomes visible. Instead, continue enlarging
12700 the vscroll until the portion of a tall screen line that's left on
12701 display is about the height of the frame's default font.
12702 (Bug#14567)
12703
12704 2013-06-15 Glenn Morris <rgm@gnu.org>
12705
12706 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
12707 compilation-error-regexp-alist void, or local while let-bound.
12708
12709 * progmodes/make-mode.el (makefile-mode-syntax-table):
12710 Treat "=" as punctuation. (Bug#14614)
12711
12712 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
12713
12714 * help-fns.el (describe-variable):
12715 Add extra line for permanent-local variables.
12716
12717 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
12718
12719 * progmodes/scheme.el (scheme-font-lock-keywords-2):
12720 Add export, import, library. (Bug#9164)
12721 (library): Set indent function.
12722
12723 2013-06-14 Glenn Morris <rgm@gnu.org>
12724
12725 * term/xterm.el (xterm--query):
12726 Stop after first matching handler. (Bug#14615)
12727
12728 2013-06-14 Ivan Kanis <ivan@kanis.fr>
12729
12730 Add support for dired in saveplace.
12731 * dired.el (dired-initial-position-hook): New variable.
12732 (dired-initial-position): Call hook to place cursor position.
12733 * saveplace.el (save-place-to-alist): Add dired position.
12734 (save-place-dired-hook): New function.
12735
12736 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
12737
12738 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
12739 through a symbol rather than letrec.
12740
12741 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
12742 (package-desc): Add `dir' field.
12743 (package-desc-full-name): New function.
12744 (package-load-descriptor): Combine the two arguments. Don't use `load'.
12745 (package-maybe-load-descriptor): Remove.
12746 (package-load-all-descriptors): Just call package-load-descriptor.
12747 (package--disabled-p): New function.
12748 (package-desc-vers, package-desc-doc): Remove aliases.
12749 (package--dir): Remove function.
12750 (package-activate): Check if a package is disabled.
12751 (package-process-define-package): New function, extracted from
12752 define-package.
12753 (define-package): Turn into a place holder.
12754 (package-unpack-single, package-tar-file-info):
12755 Use package--description-file.
12756 (package-compute-transaction): Use package--disabled-p.
12757 (package-download-transaction): Don't call
12758 package-maybe-load-descriptor since they're all loaded anyway.
12759 (package-install): Change argument to be a pkg-desc.
12760 (package-delete): Use a single pkg-desc argument.
12761 (describe-package-1): Use package-desc-dir instead of package--dir.
12762 Use package-desc property instead of package-symbol.
12763 (package-install-button-action): Adjust accordingly.
12764 (package--push): Rewrite.
12765 (package-menu--print-info): Adjust accordingly. Change the ID format
12766 to be a pkg-desc.
12767 (package-menu-describe-package, package-menu-get-status)
12768 (package-menu--find-upgrades, package-menu-mark-upgrades)
12769 (package-menu-execute, package-menu--name-predicate):
12770 Adjust accordingly.
12771 * startup.el (package--description-file): New function.
12772 (command-line): Use it.
12773 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12774 Use package-desc-version.
12775
12776 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
12777 (byte-compile-preprocess): Use it.
12778 (byte-compile-file-form-defalias): Try a bit harder to use macros we
12779 can't quite recognize.
12780 (byte-compile-add-to-list): Remove.
12781 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
12782 (cconv-closure-convert): Add assertion.
12783
12784 * emacs-lisp/map-ynp.el: Use lexical-binding.
12785 (map-y-or-n-p): Remove unused vars `tail' and `object'.
12786 Factor out some repeated code.
12787
12788 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12789
12790 * subr.el (with-eval-after-load): New macro.
12791 (eval-after-load): Allow form to be a function.
12792 take advantage of lexical-binding.
12793 (do-after-load-evaluation): Use dolist and adjust to new format.
12794 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
12795
12796 2013-06-13 Juri Linkov <juri@jurta.org>
12797
12798 * replace.el (perform-replace): Display "symbol " and other search
12799 modes from `isearch-message-prefix' in the *Help* buffer.
12800
12801 * isearch.el (isearch-query-replace): Add " symbol" and other
12802 possible search modes from `isearch-message-prefix' to the prompt.
12803 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
12804 when reading a regexp to collect.
12805
12806 2013-06-13 Juri Linkov <juri@jurta.org>
12807
12808 * isearch.el (word-search-regexp): Match whitespace if the search
12809 string begins or ends in whitespace. The LAX arg is applied to
12810 both ends of the search string. Use `regexp-quote' and explicit
12811 \< and \> instead of \b. Use \` and \' instead of ^ and $.
12812 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
12813 boundaries are replaced with symbol boundaries, and characters
12814 between symbols match non-word non-symbol syntax. (Bug#14602)
12815
12816 2013-06-13 Juri Linkov <juri@jurta.org>
12817
12818 * isearch.el (isearch-del-char): Don't exceed the length of
12819 `isearch-string' by the prefix arg. (Bug#14563)
12820
12821 2013-06-13 Juri Linkov <juri@jurta.org>
12822
12823 * isearch.el (isearch-yank-word, isearch-yank-line)
12824 (isearch-char-by-name, isearch-quote-char)
12825 (isearch-printing-char, isearch-process-search-char):
12826 Add optional count prefix arg. (Bug#14563)
12827
12828 * international/isearch-x.el
12829 (isearch-process-search-multibyte-characters):
12830 Add optional count prefix arg.
12831
12832 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
12833
12834 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
12835 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
12836 lexical-binding.
12837
12838 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
12839
12840 * subr.el (set-temporary-overlay-map): Add on-exit argument.
12841
12842 2013-06-13 Glenn Morris <rgm@gnu.org>
12843
12844 * startup.el (tty-handle-args):
12845 Don't just discard "--" and anything after. (Bug#14608)
12846
12847 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
12848
12849 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
12850
12851 Implement changes in Secret Service API. Make it backward compatible.
12852 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
12853 (secrets-create-item): Use it. Prefix properties with interface.
12854
12855 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
12856
12857 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
12858 (term-emulate-terminal): Respect term-suppress-hard-newline.
12859
12860 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
12861
12862 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
12863 Only remove a `thumb-file' overlay. (Bug#14548)
12864
12865 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
12866
12867 * mail/reporter.el (reporter-submit-bug-report):
12868 Handle missing package-name. (Bug#14600)
12869
12870 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
12871
12872 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
12873 (reftex-citation-prompt, reftex-default-bibliography)
12874 (reftex-bib-or-thebib, reftex-get-bibfile-list)
12875 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
12876 (reftex-bib-sort-author, reftex-bib-sort-year)
12877 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
12878 (reftex-extract-bib-entries-from-thebibliography)
12879 (reftex-get-bibkey-default, reftex-get-bib-names)
12880 (reftex-parse-bibtex-entry, reftex-get-bib-field)
12881 (reftex-format-bib-entry, reftex-parse-bibitem)
12882 (reftex-format-bibitem, reftex-do-citation)
12883 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
12884 (reftex-restrict-bib-matches, reftex-extract-bib-file)
12885 (reftex-insert-bib-matches, reftex-format-citation)
12886 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
12887 (reftex-create-bibtex-file): Add docstrings, mostly by converting
12888 existing comments into docstrings.
12889
12890 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
12891
12892 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
12893
12894 2013-06-12 Andreas Schwab <schwab@suse.de>
12895
12896 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
12897 for auto-save files.
12898
12899 2013-06-12 Glenn Morris <rgm@gnu.org>
12900
12901 * ido.el (ido-delete-ignored-files): Remove.
12902 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
12903 Go back to calling ido-ignore-item-p directly.
12904
12905 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
12906
12907 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
12908
12909 * ido.el (ido-delete-ignored-files): New function,
12910 split from ido-make-file-list-1.
12911 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
12912 (ido-make-file-list-1): Use ido-delete-ignored-files.
12913
12914 2013-06-12 Leo Liu <sdl.web@gmail.com>
12915
12916 * progmodes/octave.el (inferior-octave-startup)
12917 (inferior-octave-completion-table)
12918 (inferior-octave-track-window-width-change)
12919 (octave-eldoc-function-signatures, octave-help)
12920 (octave-find-definition): Use single quoted strings.
12921 (inferior-octave-startup-args): Change default value.
12922 (inferior-octave-startup): Do not hard code "-i" and
12923 "--no-line-editing".
12924 (inferior-octave-resync-dirs): Add optional arg NOERROR.
12925 (inferior-octave-directory-tracker): Use it.
12926 (octave-goto-function-definition): Robustify.
12927 (octave-help): Support highlighting operators in 'See also'.
12928 (octave-find-definition): Find subfunctions only in Octave mode.
12929
12930 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12931
12932 * help-fns.el (help-fns--compiler-macro): If the handler function is
12933 named, then put a link to it.
12934 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
12935 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
12936 (cl-typep): Use it.
12937 (cl-eval-when): Simplify debug spec.
12938 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
12939 compiler-macro function instead of setting `compiler-macro-file'.
12940
12941 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
12942
12943 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
12944 * vc/vc-hooks.el (vc-stay-local): Doc fix.
12945
12946 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
12947 Daniel Hackney <dan@haxney.org>
12948
12949 First part of Daniel Hackney's patch to package.el.
12950 * emacs-lisp/package.el: Use defstruct.
12951 (package-desc): New, main struct.
12952 (package--bi-desc, package--ac-desc): New structs, used to describe the
12953 format in external files.
12954 (package-desc-vers): Replace with package-desc-version accessor.
12955 (package-desc-doc): Replace with package-desc-summary accessor.
12956 (package-activate-1): Remove `package' arg since the pkg-vec now
12957 includes the name.
12958 (define-package): Use package-desc-from-define.
12959 (package-unpack-single): Change file-name arg to be a symbol.
12960 (package--add-to-archive-contents): Use package-desc-create and new
12961 accessor functions to package--ac-desc.
12962 (package-buffer-info, package-tar-file-info): Return a package-desc.
12963 (package-install-from-buffer): Remove `type' argument. Change pkg-info
12964 arg to be a package-desc.
12965 (package-install-file): Adjust accordingly. Use \' to match EOS.
12966 (package--from-builtin): New function.
12967 (describe-package-1, package-menu--generate): Use it.
12968 (package--make-autoloads-and-compile): Change name arg to be a symbol.
12969 (package-generate-autoloads): Idem and return the name of the file.
12970 * emacs-lisp/package-x.el (package-upload-buffer-internal):
12971 Change pkg-info arg to be a package-desc.
12972 Use package-make-ac-desc.
12973 (package-upload-file): Use \' to match EOS.
12974 * finder.el (finder-compile-keywords): Use package-make-builtin.
12975
12976 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12977
12978 * vc/vc.el (vc-deduce-fileset): Change error message.
12979 (vc-read-backend): New function.
12980 (vc-next-action): Use it.
12981
12982 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
12983
12984 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
12985 (prolog-font-lock-keywords): Use regexp-opt instead.
12986 Don't manually highlight strings.
12987 (prolog-mode-variables): Simplify comment-start-skip.
12988 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
12989
12990 * emacs-lisp/generic.el (generic--normalise-comments)
12991 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
12992 (generic-mode-set-comments): Use them.
12993 (generic-bracket-support): Use setq-local.
12994 (generic-make-keywords-list): Declare obsolete.
12995
12996 2013-06-11 Glenn Morris <rgm@gnu.org>
12997
12998 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12999 Prettify after setting font-lock-defaults. (Bug#14574)
13000
13001 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
13002
13003 * replace.el (query-replace, occur-read-regexp-defaults-function)
13004 (replace-search):
13005 * subr.el (declare-function, number-sequence, local-set-key)
13006 (substitute-key-definition, locate-user-emacs-file)
13007 (with-silent-modifications, split-string, eval-after-load):
13008 Fix typos, remove unneeded backslashes and reflow some docstrings.
13009
13010 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13011
13012 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
13013 default for Elisp files.
13014
13015 2013-06-11 Glenn Morris <rgm@gnu.org>
13016
13017 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
13018 although define-derived-mode was doing this anyway. (Bug#14583)
13019
13020 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
13021
13022 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13023 Fix make-variable-buffer-local call to refer to the correct variable.
13024
13025 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
13026
13027 * eshell/em-term.el (eshell-visual-commands)
13028 (eshell-visual-subcommands, eshell-visual-options):
13029 Add summary line to docstrings. Add cross-references.
13030
13031 2013-06-10 Glenn Morris <rgm@gnu.org>
13032
13033 * epa.el (epa-read-file-name): New function. (Bug#14510)
13034 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
13035
13036 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13037
13038 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
13039 output redirection to be ignored with visual commands.
13040
13041 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
13042
13043 * eshell/em-term.el (eshell-visual-command-p): New function.
13044 (eshell-term-initialize): Move long lambda to separate function
13045 eshell-visual-command-p.
13046 * eshell/em-dirs.el (eshell-dirs-initialize):
13047 * eshell/em-script.el (eshell-script-initialize):
13048 Add missing #' to lambda.
13049
13050 2013-06-08 Leo Liu <sdl.web@gmail.com>
13051
13052 * progmodes/octave.el (octave-add-log-current-defun): New function.
13053 (octave-mode): Set add-log-current-defun-function.
13054 (octave-goto-function-definition): Do not move point if not found.
13055 (octave-find-definition): Enhance to try subfunctions first.
13056
13057 2013-06-08 Glenn Morris <rgm@gnu.org>
13058
13059 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13060 (byte-compile-backward-char, byte-compile-backward-word):
13061 Improve previous change, to handle non-explicit nil.
13062
13063 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
13064
13065 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
13066 (smie--opener/closer-at-point): New function.
13067 (smie--matching-block-data): Use it. Don't match from right after an
13068 opener or right before a closer. Obey smie-blink-matching-inners.
13069 Don't signal a mismatch for repeated inners like "switch..case..case".
13070
13071 2013-06-07 Leo Liu <sdl.web@gmail.com>
13072
13073 * progmodes/octave.el (octave-mode): Set comment-use-global-state
13074 to t. (Bug#14303)
13075 (octave-function-header-regexp): Fix. (Bug#14570)
13076 (octave-help-mode-finish-hook, octave-help-mode-finish):
13077 Remove. Just use temp-buffer-show-hook.
13078
13079 * newcomment.el (comment-search-backward): Revert last change.
13080 (Bug#14434)
13081
13082 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
13083
13084 2013-06-07 Eli Zaretskii <eliz@gnu.org>
13085
13086 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
13087 through xargs, to avoid failure due to MS-Windows limitations on
13088 command-line length.
13089
13090 2013-06-06 Glenn Morris <rgm@gnu.org>
13091
13092 * font-lock.el (lisp-font-lock-keywords-2):
13093 Treat user-error like error.
13094
13095 * emacs-lisp/bytecomp.el (byte-compile-char-before)
13096 (byte-compile-backward-char, byte-compile-backward-word):
13097 Handle explicit nil arguments. (Bug#14565)
13098
13099 2013-06-05 Alan Mackenzie <acm@muc.de>
13100
13101 * isearch.el (isearch-allow-prefix): New user option.
13102 (isearch-other-meta-char): Don't exit isearch when a prefix
13103 argument is typed whilst `isearch-allow-prefix' is non-nil.
13104 (Bug#9706)
13105
13106 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13107
13108 * autorevert.el (auto-revert-notify-handler): Use memq.
13109 Hide assertion failure.
13110
13111 * skeleton.el: Use cl-lib.
13112 (skeleton-further-elements): Use defvar-local.
13113 (skeleton-insert): Use cl-progv.
13114
13115 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13116
13117 * progmodes/prog-mode.el (prog-prettify-symbols)
13118 (prog-prettify-install): Update docstrings.
13119
13120 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13121
13122 * simple.el: Move all the prog-mode code to prog-mode.el.
13123 * progmodes/prog-mode.el: New file.
13124 * loadup.el: Add prog-mode.el.
13125
13126 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13127
13128 * simple.el (prog-prettify-symbols): Add version.
13129 (prog-prettify-install): Add convenience function to prettify symbols.
13130
13131 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
13132 (perl--augmented-font-lock-keywords-1)
13133 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
13134 variables and use it.
13135
13136 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13137 (cfengine3-mode): Remove unneeded variable and use it.
13138
13139 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13140 (lisp--augmented-font-lock-keywords-1)
13141 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
13142 Remove unneeded variables and use it.
13143
13144 2013-06-05 João Távora <joaotavora@gmail.com>
13145
13146 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
13147 to point when opening the connection. (Bug#14380)
13148
13149 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13150
13151 * subr.el (load-history-regexp, load-history-filename-element)
13152 (eval-after-load, after-load-functions, do-after-load-evaluation)
13153 (eval-next-after-load, display-delayed-warnings)
13154 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
13155 definition of save-match-data.
13156 (overriding-local-map): Remove accidental obsolescence declaration.
13157
13158 * emacs-lisp/edebug.el (edebug-result): Move before first use.
13159
13160 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
13161
13162 Generalize symbol prettify support to prog-mode and implement it
13163 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
13164 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
13165 (prog--prettify-font-lock-compose-symbol)
13166 (prog-prettify-font-lock-symbols-keywords): New variables and
13167 functions to support symbol prettification.
13168 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
13169 (lisp--augmented-font-lock-keywords-1)
13170 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
13171 (lisp--prettify-symbols-alist): Implement prettify of lambda.
13172 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
13173 (cfengine3--prettify-symbols-alist, cfengine3-mode):
13174 Implement prettify of -> => :: strings.
13175 * progmodes/perl-mode.el (perl-prettify-symbols)
13176 (perl--font-lock-compose-symbol)
13177 (perl--font-lock-symbols-keywords): Move to prog-mode.
13178 (perl--prettify-symbols-alist): Prettify -> => :: strings.
13179 (perl-font-lock-keywords-1)
13180 (perl-font-lock-keywords-2): Remove explicit prettify support.
13181 (perl--augmented-font-lock-keywords)
13182 (perl--augmented-font-lock-keywords-1)
13183 (perl--augmented-font-lock-keywords-2, perl-mode):
13184 Implement prettify support.
13185
13186 2013-06-05 Leo Liu <sdl.web@gmail.com>
13187
13188 Re-implement SMIE matching block highlight using
13189 show-paren-data-function. (Bug#14395)
13190 * emacs-lisp/smie.el (smie-matching-block-highlight)
13191 (smie--highlight-matching-block-overlay)
13192 (smie--highlight-matching-block-lastpos)
13193 (smie-highlight-matching-block)
13194 (smie-highlight-matching-block-mode): Remove.
13195 (smie--matching-block-data-cache): New variable.
13196 (smie--matching-block-data): New function.
13197 (smie-setup): Use smie--matching-block-data for
13198 show-paren-data-function.
13199
13200 * progmodes/octave.el (octave-mode-menu): Fix.
13201 (octave-find-definition): Skip garbage lines.
13202
13203 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13204
13205 Fix compilation error with simultaneous dynamic+lexical scoping.
13206 Add warning when a defvar appears after the first let-binding.
13207 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
13208 (byte-compile-close-variables): Initialize it.
13209 (byte-compile--declare-var): New function.
13210 (byte-compile-file-form-defvar)
13211 (byte-compile-file-form-define-abbrev-table)
13212 (byte-compile-file-form-custom-declare-variable): Use it.
13213 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
13214 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
13215 (byte-compile-bind): Handle dynamic bindings that shadow
13216 lexical bindings.
13217 (byte-compile-unbind): Make arg non-optional.
13218 (byte-compile-let): Simplify.
13219 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
13220 (cconv--analyse-function, cconv-analyse-form): Populate it.
13221 Protect byte-compile-bound-variables to limit the scope of defvars.
13222 (cconv-analyse-form): Add missing rule for (defvar <foo>).
13223 Remove unneeded rule for `declare'.
13224
13225 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
13226 so as to avoid depending on cl-adjoin at run-time.
13227 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
13228
13229 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
13230 (macroexp--warn-and-return): Use it.
13231
13232 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
13233
13234 * subr.el: Convert to lexical binding.
13235 (overriding-local-map): Make obsolete.
13236 (add-to-list): Doc fix. Add compiler macro.
13237 (read-key): Swap values of local maps.
13238
13239 2013-06-05 Leo Liu <sdl.web@gmail.com>
13240
13241 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
13242
13243 2013-06-04 Leo Liu <sdl.web@gmail.com>
13244
13245 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
13246 (compilation-auto-jump): Suppress the "Mark set" message to give
13247 way to exit message.
13248
13249 2013-06-04 Alan Mackenzie <acm@muc.de>
13250
13251 Remove faulty optimisation from indentation calculation.
13252 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
13253 search limit based on 2000 characters back from indent-point.
13254
13255 2013-06-03 Tassilo Horn <tsdh@gnu.org>
13256
13257 * eshell/em-term.el (cl-lib): Require `cl-lib'.
13258
13259 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
13260
13261 * emacs-lisp/lisp.el: Use lexical-binding.
13262 (lisp--local-variables-1, lisp--local-variables): New functions.
13263 (lisp--local-variables-completion-table): New var.
13264 (lisp-completion-at-point): Use it complete let-bound vars.
13265
13266 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
13267 eagerly (bug#14422).
13268
13269 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
13270
13271 * autorevert.el (auto-revert-notify-enabled)
13272 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
13273 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
13274 (auto-revert-notify-handler): Handle also gfilenotify.
13275
13276 * subr.el (file-notify-handle-event): New defun. Replacing ...
13277 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
13278 Remove.
13279
13280 2013-06-03 Juri Linkov <juri@jurta.org>
13281
13282 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
13283 `M-s h .'. (Bug#14427)
13284
13285 * hi-lock.el (highlight-symbol-at-point): New alias for the new
13286 command `hi-lock-face-symbol-at-point'.
13287 (hi-lock-face-symbol-at-point): New command.
13288 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
13289 (hi-lock-menu): Add `highlight-symbol-at-point'.
13290 (hi-lock-mode): Doc fix.
13291
13292 * isearch.el (isearch-forward-symbol-at-point): New command.
13293 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
13294 (isearch-highlight-regexp): Add a regexp which matches
13295 words/symbols for word/symbol mode.
13296
13297 * subr.el (find-tag-default-bounds): New function with the body
13298 mostly moved from `find-tag-default'.
13299 (find-tag-default): Move most code to `find-tag-default-bounds',
13300 call it and apply `buffer-substring-no-properties' afterwards.
13301
13302 2013-06-03 Tassilo Horn <tsdh@gnu.org>
13303
13304 * eshell/em-term.el (eshell-term-initialize):
13305 Use `cl-intersection' rather than `intersection'.
13306
13307 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
13308
13309 * vc/log-view.el: Doc fix.
13310 (log-view-mode-map): Copy keymap from `special-mode-map'.
13311
13312 2013-06-02 Eric Ludlam <zappo@gnu.org>
13313
13314 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
13315 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
13316 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
13317 (eieio-unbound, eieio-default-superclass)
13318 (eieio--define-field-accessors, method-static, method-before)
13319 (method-primary, method-after, method-num-lists)
13320 (method-generic-before, method-generic-primary)
13321 (method-generic-after, method-num-slots)
13322 (eieio-specialized-key-to-generic-key)
13323 (eieio--check-type, class-v, class-p)
13324 (eieio-class-name, define-obsolete-function-alias)
13325 (eieio-class-parents-fast, eieio-class-children-fast)
13326 (same-class-fast-p, class-constructor, generic-p)
13327 (generic-primary-only-p, generic-primary-only-one-p)
13328 (class-option-assoc, class-option, eieio-object-p)
13329 (class-abstract-p, class-method-invocation-order)
13330 (eieio-defclass-autoload-map, eieio-defclass-autoload)
13331 (eieio-class-un-autoload, eieio-defclass)
13332 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
13333 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
13334 (eieio--defgeneric-init-form, eieio-defgeneric-form)
13335 (eieio-defgeneric-reset-generic-form)
13336 (eieio-defgeneric-form-primary-only)
13337 (eieio-defgeneric-reset-generic-form-primary-only)
13338 (eieio-defgeneric-form-primary-only-one)
13339 (eieio-defgeneric-reset-generic-form-primary-only-one)
13340 (eieio-unbind-method-implementations)
13341 (eieio--defmethod, eieio--typep)
13342 (eieio-perform-slot-validation, eieio-validate-slot-value)
13343 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
13344 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
13345 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
13346 (eieio-slot-name-index, eieio-class-slot-name-index)
13347 (eieio-set-defaults, eieio-initarg-to-attribute)
13348 (eieio-attribute-to-initarg, eieio-c3-candidate)
13349 (eieio-c3-merge-lists, eieio-class-precedence-c3)
13350 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
13351 (eieio-class-precedence-list, eieio-generic-call-methodname)
13352 (eieio-generic-call-arglst, eieio-generic-call-key)
13353 (eieio-generic-call-next-method-list)
13354 (eieio-pre-method-execution-functions, eieio-generic-call)
13355 (eieio-generic-call-primary-only, eieiomt-method-list)
13356 (eieiomt-optimizing-obarray, eieiomt-install)
13357 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
13358 (eieio-generic-form, eieio-defmethod, make-obsolete)
13359 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
13360 (defclass): Remove `eval-and-compile' from macro.
13361 (call-next-method, shared-initialize): Instead of using
13362 `scoped-class' variable, use new eieio--scoped-class, and
13363 eieio--with-scoped-class.
13364 (initialize-instance): Rename local variable 'scoped-class' to
13365 'this-class' to remove ambiguitity from old global.
13366
13367 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
13368 eieio.el.
13369 (eieio--scoped-class-stack): New variable.
13370 (eieio--scoped-class): New fcn.
13371 (eieio--with-scoped-class): New scoping macro.
13372 (eieio-defclass): Use pushnew instead of add-to-list.
13373 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
13374 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
13375 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
13376 `scoped-class' variable, use new eieio--scoped-class, and
13377 eieio--with-scoped-class.
13378
13379 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
13380
13381 2013-06-02 Tassilo Horn <tsdh@gnu.org>
13382
13383 * eshell/esh-ext.el (eshell-external-command): Pass args to
13384 `eshell-find-interpreter'.
13385 (eshell-find-interpreter): Add new second parameter ARGS.
13386
13387 * eshell/em-script.el (eshell-script-initialize): Add second arg
13388 to the function added as MATCH to `eshell-interpreter-alist'.
13389
13390 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
13391 the function added as MATCH to `eshell-interpreter-alist'.
13392
13393 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
13394 (eshell-visual-options): New defcustom.
13395 (eshell-escape-control-x): Adapt docstring.
13396 (eshell-term-initialize): Test `eshell-visual-subcommands' and
13397 `eshell-visual-options' in addition to `eshell-visual-commands'.
13398 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
13399
13400 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
13401
13402 * progmodes/python.el (python-indent-block-enders): Add break,
13403 continue and raise keywords.
13404
13405 2013-06-01 Glenn Morris <rgm@gnu.org>
13406
13407 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
13408
13409 Plain (f)boundp silences compilation warnings since Emacs 22.1.
13410 * progmodes/cc-cmds.el (delete-forward-p):
13411 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
13412 * progmodes/cc-engine.el (buffer-syntactic-context):
13413 * progmodes/cc-fonts.el (face-property-instance):
13414 * progmodes/cc-mode.el (set-keymap-parents):
13415 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
13416 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
13417 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
13418 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
13419 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
13420
13421 * progmodes/cc-vars.el (other): Emacs has this widget since
13422 at least 21.1, so don't (re)define it.
13423
13424 * eshell/em-cmpl.el (eshell-cmpl-initialize):
13425 Replace the obsolete alias pcomplete-arg-quote-list.
13426
13427 2013-06-01 Leo Liu <sdl.web@gmail.com>
13428
13429 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
13430 punctuation syntax.
13431 (inferior-octave-minimal-columns)
13432 (inferior-octave-last-column-width): New variables.
13433 (inferior-octave-track-window-width-change): New function.
13434 (inferior-octave-mode): Adjust column width so that Octave output,
13435 for example from 'ls', can fit into the window nicely.
13436
13437 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
13438
13439 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
13440 Highlight expansions inside regexp literals.
13441
13442 2013-05-31 Glenn Morris <rgm@gnu.org>
13443
13444 * obsolete/sym-comp.el (symbol-complete):
13445 Replace obsolete completion-annotate-function.
13446
13447 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
13448
13449 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
13450
13451 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
13452 New function, checks if point is inside a literal that allows
13453 expression expansion.
13454 (ruby-syntax-propertize-expansion): Use it.
13455 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
13456 around the body.
13457
13458 2013-05-30 Juri Linkov <juri@jurta.org>
13459
13460 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
13461 to "\M-si".
13462 (isearch-invisible): New variable.
13463 (isearch-forward): Doc fix.
13464 (isearch-mode): Set `isearch-invisible'
13465 to the value of `search-invisible'.
13466 (isearch-toggle-case-fold): Doc fix.
13467 (isearch-toggle-invisible): New command.
13468 (isearch-query-replace): Let-bind `search-invisible'
13469 to the value of `isearch-invisible'.
13470 (isearch-search): Use `isearch-invisible' instead of
13471 `search-invisible'. Let-bind `search-invisible'
13472 to the value of `isearch-invisible'. (Bug#11378)
13473
13474 2013-05-30 Juri Linkov <juri@jurta.org>
13475
13476 * replace.el (perform-replace): Avoid `isearch-range-invisible'
13477 call when `query-flag' is nil and `search-invisible' is non-nil.
13478 (Bug#11746)
13479
13480 2013-05-30 Glenn Morris <rgm@gnu.org>
13481
13482 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
13483
13484 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
13485 (cc-require): Suppress spurious "noruntime" warnings.
13486 (cc-require-when-compile): Use fboundp, for sake of compiler.
13487
13488 * progmodes/cc-mode.el: Move load of cc-vars before that of
13489 cc-langs (which in turn loads cc-vars), to quieten compiler.
13490
13491 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13492
13493 * paren.el: Simplify the code.
13494 (show-paren-mode): Always start the timer.
13495 (show-paren--idle-timer): Rename from show-paren-idle-timer.
13496 (show-paren--overlay, show-paren--overlay-1): Rename from
13497 show-paren-overlay and show-paren-overlay-1, and initialize to an
13498 overlay rather than to nil.
13499 (show-paren-function): Misc cleanup and simplifications.
13500
13501 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13502
13503 * paren.el (show-paren-data-function): New hook.
13504 (show-paren--default): New function, extracted from show-paren-function.
13505 (show-paren-function): Use show-paren-data-function.
13506
13507 2013-05-30 Glenn Morris <rgm@gnu.org>
13508
13509 * ielm.el (ielm-map, ielm-complete-symbol):
13510 Use completion-at-point rather than obsolete functions.
13511 (inferior-emacs-lisp-mode): Doc fix.
13512 Set completion-at-point-functions, rather than
13513 comint-dynamic-complete-functions.
13514
13515 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
13516 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
13517 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
13518
13519 * image.el (image-animated-p): Tweak definition.
13520
13521 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
13522 (rlogin-process-connection-type): Tweak default. Add set-after.
13523 (rlogin-host): Doc fix.
13524 (rlogin): Tweak prompt.
13525 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
13526
13527 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
13528 * progmodes/tcl.el (inferior-tcl-mode-map):
13529 Use completion-at-point rather than obsolete alias.
13530
13531 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
13532
13533 * minibuffer.el (read-file-name-completion-ignore-case):
13534 Move before completion--in-region, for eager macro expansion.
13535
13536 2013-05-29 Juri Linkov <juri@jurta.org>
13537
13538 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
13539 for total count of matching lines. Add `global-matches' for total
13540 count of matches. Rename `matches' to `lines' for count of
13541 matching lines. Add `matches' for count of matches.
13542 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
13543 to `prev-line' for line number of prev match endpt.
13544 Increment `matches' for every match. Print the number of
13545 matching lines in the header.
13546 (occur-context-lines): Rename `lines' to `curr-line'.
13547 Rename `prev-lines' to `prev-line'. (Bug#14017)
13548
13549 2013-05-29 Juri Linkov <juri@jurta.org>
13550
13551 * replace.el (perform-replace): Add `skip-read-only-count',
13552 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
13553 Increment them for corresponding conditions and report the number
13554 of skipped occurrences in the final message. (Bug#11746)
13555 (query-replace, query-replace-regexp, query-replace-regexp-eval)
13556 (replace-string, replace-regexp): Doc fix.
13557
13558 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
13559
13560 * emacs-lisp/trace.el (trace--read-args): Provide a default.
13561
13562 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
13563 prog-mode-map (bug#14504).
13564
13565 2013-05-29 Leo Liu <sdl.web@gmail.com>
13566
13567 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
13568 (octave-help): Small simplification.
13569
13570 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
13571 off the highlight first.
13572
13573 2013-05-29 Glenn Morris <rgm@gnu.org>
13574
13575 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
13576 Handle idlwave-last-system-routine-info-cons-cell being nil.
13577
13578 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
13579 (idlwave-write-paths): Simplify via with-temp-buffer.
13580
13581 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
13582 * emulation/cua-rect.el: Also load cua-base at run time.
13583
13584 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
13585 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
13586 (cperl-imenu-on-info): Require imenu.
13587
13588 2013-05-28 Alan Mackenzie <acm@muc.de>
13589
13590 Handle "capitalised keywords" correctly.
13591 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
13592
13593 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
13594
13595 * eshell/em-unix.el: Add -r option to cp.
13596
13597 2013-05-28 Glenn Morris <rgm@gnu.org>
13598
13599 * vc/vc-arch.el (vc-exec-after): Declare.
13600 (vc-switches): Autoload.
13601 * vc/vc-bzr.el: No need to require vc when compiling.
13602 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
13603 (vc-resynch-buffer, vc-dir-refresh): Declare.
13604 (vc-setup-buffer, vc-switches): Autoload.
13605 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
13606 (vc-resynch-buffer): Declare.
13607 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
13608 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
13609 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
13610 (grep-read-regexp, grep-read-files, grep-expand-template)
13611 (vc-dir-refresh): Declare.
13612 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
13613 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
13614 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
13615 * vc/vc-mtn.el (vc-exec-after): Declare.
13616 (vc-switches): Autoload.
13617 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
13618 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
13619 (vc-file-tree-walk): Declare.
13620 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
13621 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
13622 (vc-tag-precondition, vc-rename-master): Autoload.
13623 * vc/vc-svn.el (vc-exec-after): Declare.
13624 (vc-switches, vc-setup-buffer): Autoload.
13625 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
13626 Autoload.
13627 (vc-resynch-buffer): Declare.
13628
13629 * obsolete/fast-lock.el (byte-compile-warnings):
13630 Don't warn about obsolete features in this obsolete file.
13631
13632 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
13633 Move definition before use.
13634
13635 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
13636 (dun-unix-verbs): Remove dun-zippy.
13637 (dun-zippy): Remove function.
13638
13639 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
13640
13641 2013-05-27 Juri Linkov <juri@jurta.org>
13642
13643 * replace.el (replace-search): New function with code moved out
13644 from `perform-replace'.
13645 (replace-highlight, replace-dehighlight): Move function definitions
13646 up closer to `replace-search'. (Bug#11746)
13647
13648 2013-05-27 Juri Linkov <juri@jurta.org>
13649
13650 * replace.el (perform-replace): Ignore invisible matches.
13651 In addition to checking `query-replace-skip-read-only', also
13652 filter out matches by calling `run-hook-with-args-until-failure'
13653 on `isearch-filter-predicates', and also check `search-invisible'
13654 for t or call `isearch-range-invisible'.
13655 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
13656
13657 2013-05-27 Juri Linkov <juri@jurta.org>
13658
13659 * isearch.el (isearch-filter-predicates): Rename from
13660 `isearch-filter-predicate'. Doc fix. (Bug#11378)
13661 (isearch-message-prefix): Display text from the property
13662 `isearch-message-prefix' of the currently active filters.
13663 (isearch-search): Don't compare `isearch-filter-predicate' with
13664 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
13665 on `isearch-filter-predicates'. Also check `search-invisible' for t
13666 or call `isearch-range-invisible'.
13667 (isearch-filter-visible): Make obsolete.
13668 (isearch-lazy-highlight-search):
13669 Call `run-hook-with-args-until-failure' on
13670 `isearch-filter-predicates' and use `isearch-range-invisible'.
13671
13672 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
13673 `isearch-filter-predicates' instead of `funcall'ing
13674 `isearch-filter-predicate'.
13675 (Info-mode): Set `Info-isearch-filter' to
13676 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
13677
13678 * dired-aux.el (dired-isearch-filter-predicate-orig):
13679 Remove variable.
13680 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
13681 (dired-isearch-filenames-end): Add and remove
13682 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
13683 instead of changing the value of `isearch-filter-predicate'.
13684 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
13685 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
13686 Put property `isearch-message-prefix' to "filename " on
13687 `dired-isearch-filter-filenames'.
13688
13689 * wdired.el (wdired-change-to-wdired-mode):
13690 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
13691 locally instead of changing `isearch-filter-predicate'.
13692 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
13693
13694 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
13695
13696 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
13697 return the commit hash (Bug#14459). Also set the
13698 `vc-git-detached' property.
13699 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
13700 (vc-git-mode-line-string): Use the same help-echo format whether
13701 in detached mode or not, because we know the actual revision now.
13702 When in detached mode, shorten the revision to 7 chars.
13703
13704 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13705
13706 * emacs-lisp/easy-mmode.el (define-minor-mode):
13707 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
13708 mode hook and provide a docstring.
13709
13710 2013-05-27 Alan Mackenzie <acm@muc.de>
13711
13712 Remove spurious syntax-table text properties inserted by C-y.
13713 * progmodes/cc-mode.el (c-after-change): Also clear hard
13714 syntax-table property with value nil.
13715
13716 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
13717
13718 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
13719 when reading the events; the buffer layout shall not be changed.
13720
13721 2013-05-27 Leo Liu <sdl.web@gmail.com>
13722
13723 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
13724 New variable.
13725 (inferior-octave-directory-tracker): Automatically re-sync
13726 default-directory.
13727 (octave-help): Improve handling of 'See also'.
13728
13729 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13730
13731 * doc-view.el: Minor naming convention tweaks.
13732 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
13733
13734 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
13735 even if there's no `display' property yet (bug#14435).
13736
13737 2013-05-25 Eli Zaretskii <eliz@gnu.org>
13738
13739 * subr.el (unmsys--file-name): Rename from reveal-filename.
13740
13741 * Makefile.in (custom-deps, finder-data, autoloads)
13742 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
13743 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
13744 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
13745
13746 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13747
13748 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
13749 error-completion on the first 2 args of condition-case (bug#14446).
13750 Don't burp at EOB.
13751
13752 2013-05-25 Leo Liu <sdl.web@gmail.com>
13753
13754 * comint.el (comint-previous-matching-input): Do not flood the
13755 *Messages* buffer with trivial messages.
13756
13757 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13758
13759 * progmodes/flymake.el (flymake-nop): Don't return a string.
13760 (flymake-set-at): Fix typo.
13761
13762 * simple.el (read--expression): New function, extracted from
13763 eval-expression. Set completion-at-point-functions (bug#14465).
13764 (eval-expression, eval-minibuffer): Use it.
13765
13766 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
13767
13768 * progmodes/flymake.el (flymake-save-buffer-in-file)
13769 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
13770 (flymake-selected-frame, flymake-log, flymake-ins-after)
13771 (flymake-set-at, flymake-get-buildfile-from-cache)
13772 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
13773 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
13774 Refine the doc string.
13775 (flymake-get-file-name-mode-and-masks): Reformat.
13776 (flymake-get-real-file-name-function): Fix a minor bug.
13777
13778 2013-05-24 Juri Linkov <juri@jurta.org>
13779
13780 * progmodes/grep.el (grep-mode-font-lock-keywords):
13781 Support =linenumber= format used by git-grep for lines with
13782 function names. (Bug#13549)
13783
13784 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13785
13786 * progmodes/octave.el (octave-smie-rules): Return nil rather than
13787 0 after a semi-colon; it works better for smie-auto-fill.
13788 (octave--indent-new-comment-line): New function.
13789 (octave-indent-new-comment-line): Use it (indirectly).
13790 (octave-mode): Don't disable smie-auto-fill. Use add-function to
13791 modify comment-line-break-function.
13792
13793 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
13794 (smie-setup): Use add-function to set it.
13795
13796 2013-05-24 Sam Steingold <sds@gnu.org>
13797
13798 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
13799 argument (before the `interactive' argument).
13800
13801 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13802
13803 * image-mode.el (image-mode-winprops): Add winprops to
13804 image-mode-winprops-alist before running
13805 image-mode-new-window-functions.
13806 * doc-view.el (doc-view-new-window-function): Don't delay
13807 doc-view-goto-page via timers (bug#14435).
13808
13809 2013-05-24 Tassilo Horn <tsdh@gnu.org>
13810
13811 * doc-view.el: Integrate with desktop.el. (Bug#14435)
13812 (doc-view-desktop-save-buffer): New function.
13813 (doc-view-restore-desktop-buffer): New function.
13814 (desktop-buffer-mode-handlers):
13815 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
13816 handler.
13817 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
13818 `desktop-save-buffer' function.
13819
13820 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
13821
13822 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
13823 (tramp-gvfs-file-name-handler): Raise a user error when
13824 `tramp-gvfs-enabled' is nil.
13825 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
13826 Do not raise a user error when loading package. (Bug#14447)
13827
13828 * net/xesam.el: Move to obsolete/.
13829
13830 2013-05-24 Glenn Morris <rgm@gnu.org>
13831
13832 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
13833
13834 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
13835
13836 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
13837 (Info-find-node, Man-getpage-in-background): Declare.
13838
13839 * mail/unrmail.el (unrmail):
13840 Replace obsolete detect-coding-with-priority.
13841
13842 * net/socks.el (socks-split-string): Use this rather than split-string.
13843 (socks-nslookup-host): Update for above change.
13844 (dynamic-choice, s5-dynamic-choice-match)
13845 (s5-dynamic-choice-match-inline, s5-widget-value-create):
13846 Comment out unused code.
13847
13848 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
13849 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
13850 (gud-tooltip-echo-area): Make obsolete.
13851 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
13852
13853 * progmodes/js.el (js--optimize-arglist): Declare.
13854
13855 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
13856
13857 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
13858 (ediff-window-C): Declare.
13859
13860 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
13861 Tweak requires to silence compiler.
13862
13863 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
13864 (he-search-string, he-tried-table, he-expand-list)
13865 (he-init-string, he-string-member, he-substitute-string)
13866 (he-reset-string): Declare.
13867
13868 * obsolete/options.el (list-options): Use custom-variable-p,
13869 rather than obsolete alias.
13870
13871 2013-05-23 Sam Steingold <sds@gnu.org>
13872
13873 * simple.el (shell-command-on-region): Pass the `replace' argument
13874 down to `call-process-region' to comply with the doc as reported on
13875 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
13876
13877 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13878
13879 * emacs-lisp/smie.el (smie-indent-forward-token)
13880 (smie-indent-backward-token): Handle string tokens (bug#14381).
13881
13882 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13883
13884 * ielm.el (ielm-menu): New menu.
13885 (inferior-emacs-lisp-mode): Set comment-start.
13886
13887 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
13888
13889 * textmodes/reftex.el (reftex-ref-style-toggle):
13890 Fix deactivate action.
13891
13892 * textmodes/reftex-vars.el (reftex-ref-style-alist):
13893 Add cleveref macros.
13894
13895 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
13896 Accept options for bibliography commands.
13897 * textmodes/reftex-vars.el (reftex-bibliography-commands):
13898 Add addbibresource. Basic Biblatex support.
13899
13900 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
13901
13902 * net/tramp-gvfs.el (top):
13903 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
13904 when loading package. (Bug#14447)
13905
13906 2013-05-23 Glenn Morris <rgm@gnu.org>
13907
13908 * progmodes/js.el: No need to load comint when compiling.
13909 (ring-insert, comint-send-string, comint-send-input)
13910 (comint-last-input-end, ido-chop): Declare.
13911
13912 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
13913 * vc/ediff-mult.el: Adjust requires.
13914 (ediff-directories-internal, ediff-directory-revisions-internal)
13915 (ediff-patch-file-internal): Declare.
13916 * vc/ediff-ptch.el: Adjust requires.
13917 (ediff-use-last-dir, ediff-buffers-internal): Declare.
13918 (ediff-find-file): Autoload.
13919 * vc/ediff-util.el: No need to load ediff when compiling.
13920 (ediff-regions-internal): Declare.
13921 * vc/ediff-wind.el: Adjust requires.
13922 (ediff-compute-toolbar-width): Define when compiling.
13923 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
13924 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
13925 (dired-get-filename, dired-get-marked-files)
13926 (ediff-last-dir-patch, ediff-patch-default-directory)
13927 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
13928 (ediff-patch-buffer-internal): Declare.
13929
13930 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
13931 (ispell-process, ispell-buffer-local-words, lm-summary)
13932 (lm-section-start, lm-section-end): Declare.
13933 (checkdoc-ispell-init): Simplify.
13934
13935 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
13936 (he-string-member, he-reset-string, he-substitute-string): Declare.
13937
13938 * eshell/em-ls.el: Adjust requires.
13939 (eshell-glob-regexp): Declare.
13940 * eshell/em-tramp.el: Adjust requires.
13941 (eshell-parse-command): Autoload.
13942 * eshell/em-xtra.el: Adjust requires.
13943 (eshell-parse-command): Autoload.
13944 * eshell/esh-ext.el: Adjust requires.
13945 (eshell-parse-command, eshell-close-handles): Autoload.
13946 * eshell/esh-io.el: Adjust requires.
13947 (eshell-output-filter): Autoload.
13948 * eshell/esh-util.el: No need to load tramp when compiling.
13949 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
13950 Declare.
13951 (eshell-parse-ange-ls): Require ange-ftp and tramp.
13952 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
13953 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
13954 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
13955 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
13956 * eshell/esh-opt.el, eshell/esh-proc.el:
13957 * eshell/esh-var.el: Adjust requires.
13958 * eshell/eshell.el: Do not require esh-util twice.
13959 (eshell-add-input-to-history): Declare.
13960 (eshell-command): Check history module is active before using it.
13961
13962 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
13963
13964 2013-05-22 Leo Liu <sdl.web@gmail.com>
13965
13966 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
13967
13968 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
13969
13970 * autorevert.el (auto-revert-notify-add-watch)
13971 (auto-revert-notify-handler): Add `attrib' for the inotify case,
13972 it indicates changes in file modification time.
13973
13974 2013-05-22 Glenn Morris <rgm@gnu.org>
13975
13976 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
13977 Always delete the autoloaded function from the noruntime and
13978 unresolved functions lists.
13979
13980 * allout.el: No need to load epa, epg, overlay when compiling.
13981 (epg-context-set-passphrase-callback, epg-list-keys)
13982 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
13983 (epg-key-user-id-list): Declare.
13984
13985 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13986 (viper-set-parsing-style-toggling-macro)
13987 (viper-set-emacs-state-searchstyle-macros):
13988 Use called-interactively-p on Emacs.
13989 (viper-looking-back): Make it an obsolete alias. Update callers.
13990 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
13991 Use looking-back rather than viper-looking-back.
13992 (viper-tmp-insert-at-eob, viper-enlarge-region)
13993 (viper-read-string-with-history, viper-register-to-point)
13994 (viper-append-to-register, viper-change-state-to-vi)
13995 (viper-backward-char-carefully, viper-forward-char-carefully)
13996 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
13997 (viper-change-state-to-emacs): Declare.
13998 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
13999 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
14000 * emulation/viper-mous.el: Do not load viper-cmd.
14001 (viper-backward-char-carefully, viper-forward-char-carefully)
14002 (viper-forward-word, viper-adjust-window): Declare.
14003
14004 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
14005
14006 * progmodes/idlw-help.el (idlwave-help-fontify):
14007 Use called-interactively-p.
14008
14009 * term/w32console.el (w32-get-console-codepage)
14010 (w32-get-console-output-codepage): Declare.
14011
14012 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
14013 Remove unnecessary declarations.
14014 (dframe-message): Doc fix.
14015
14016 * info.el (dframe-select-attached-frame, dframe-current-frame):
14017 Declare.
14018
14019 * speedbar.el (speedbar-message): Make it an obsolete alias.
14020 Update all callers.
14021 (speedbar-with-attached-buffer)
14022 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
14023 (speedbar-with-writable): Use backquote.
14024 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
14025 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
14026 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
14027 rather than speedbar- aliases.
14028 * mail/rmail.el: Load dframe rather than speedbar when compiling.
14029 (speedbar-make-specialized-keymap, speedbar-insert-button)
14030 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
14031 (speedbar-do-function-pointer): Declare.
14032 (rmail-speedbar-button, rmail-speedbar-find-file)
14033 (rmail-speedbar-move-message):
14034 Use dframe-with-attached-buffer rather than speedbar- alias.
14035 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
14036 (dframe-message, speedbar-make-specialized-keymap)
14037 (speedbar-add-expansion-list, speedbar-mode-functions-list)
14038 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
14039 (speedbar-insert-button, dframe-select-attached-frame)
14040 (dframe-maybee-jump-to-attached-frame)
14041 (speedbar-change-initial-expansion-list)
14042 (speedbar-previously-used-expansion-list-name): Declare.
14043 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
14044 Use dframe-message, dframe-with-attached-buffer rather than
14045 speedbar- aliases.
14046 (gud-sentinel): Silence compiler.
14047 * progmodes/vhdl-mode.el (speedbar-refresh)
14048 (speedbar-do-function-pointer, speedbar-add-supported-extension)
14049 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
14050 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
14051 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
14052 (speedbar-file-lists, speedbar-make-tag-line)
14053 (speedbar-line-directory, speedbar-goto-this-file)
14054 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
14055 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
14056 (speedbar-make-button, speedbar-reset-scanners)
14057 (speedbar-files-item-info, speedbar-line-text)
14058 (speedbar-find-file-in-frame, speedbar-set-timer)
14059 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
14060 (speedbar-with-writable): Do not (re)define it.
14061 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
14062 rather than speedbar- alias.
14063
14064 2013-05-21 Leo Liu <sdl.web@gmail.com>
14065
14066 * progmodes/octave.el (octave-mode-menu): Update and re-organize
14067 menu items.
14068 (octave-mode): Tweak fill-nobreak-predicate.
14069 (inferior-octave-startup): Check process to avoid infinite loop.
14070 (inferior-octave): Pop to buffer first to show abornmal process
14071 exit information.
14072
14073 2013-05-21 Glenn Morris <rgm@gnu.org>
14074
14075 * printing.el (pr-menu-bar): Define when compiling.
14076
14077 2013-05-21 Leo Liu <sdl.web@gmail.com>
14078
14079 * progmodes/octave.el (octave-auto-fill): Remove.
14080 (octave-indent-new-comment-line): Improve.
14081 (octave-mode): Use auto fill mode through
14082 comment-line-break-function and fill-nobreak-predicate.
14083 (octave-goto-function-definition): Support DEFUN_DLD.
14084 (octave-beginning-of-defun): Small tweak.
14085 (octave-help): Show parent directory.
14086
14087 2013-05-21 Glenn Morris <rgm@gnu.org>
14088
14089 * files.el (dired-unmark):
14090 * progmodes/gud.el (gdb-input): Update declarations.
14091
14092 * calculator.el (electric, ehelp): No need to load when compiling.
14093 (Electric-command-loop, electric-describe-mode): Declare.
14094
14095 * doc-view.el (doc-view-current-converter-processes): Move before use.
14096
14097 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
14098 Move MODE-set-explicitly definition before use.
14099
14100 * international/mule-diag.el (mule-diag):
14101 Don't use obsolete window-system-version.
14102
14103 * mail/feedmail.el (smtpmail): No need to load when compiling.
14104 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
14105
14106 * mail/mail-utils.el (rfc822): No need to load when compiling.
14107 (rfc822-addresses): Autoload it.
14108 (mail-strip-quoted-names): Trivial simplification.
14109
14110 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
14111 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
14112
14113 * net/snmp-mode.el (tempo): Don't duplicate requires.
14114
14115 * progmodes/prolog.el (info): No need to load when compiling.
14116 (comint): Require before shell requires it.
14117 (Info-goto-node): Autoload it.
14118 (Info-follow-nearest-node): Declare.
14119 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
14120
14121 * textmodes/artist.el (picture-mode-exit): Declare.
14122
14123 * textmodes/reftex-parse.el (reftex-parse-from-file):
14124 Trivial rewrite so the compiler can parse it better.
14125
14126 2013-05-20 Leo Liu <sdl.web@gmail.com>
14127
14128 * progmodes/octave.el (octave-help-mode-map)
14129 (octave-help-mode-finish-hook): New variables.
14130 (octave-help-mode, octave-help-mode-finish): New functions.
14131 (octave-help): Use octave-help-mode.
14132
14133 2013-05-20 Glenn Morris <rgm@gnu.org>
14134
14135 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
14136
14137 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
14138
14139 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
14140 start at point, so that expansion starting right after opening
14141 slash in a regexp is recognized.
14142 (ruby-syntax-before-regexp-re): New defvar, extracted from
14143 ruby-syntax-propertize-function. Since the value of this regexp
14144 is looked up at runtime now, we should be able to turn
14145 `ruby-syntax-methods-before-regexp' into a defcustom later.
14146 (ruby-syntax-propertize-function): Split regexp matching into two
14147 parts, for opening and closing slashes. That allows us to skip
14148 over string interpolations and support multiline regexps.
14149 Don't call `ruby-syntax-propertize-expansions', instead use another rule
14150 for them, which calls `ruby-syntax-propertize-expansion'.
14151 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
14152 call to `ruby-syntax-propertize-function'.
14153 (ruby-syntax-propertize-expansion): Extracted from
14154 `ruby-syntax-propertize-expansions'. Handles one expansion.
14155 (ruby-syntax-propertize-percent-literal): Leave point right after
14156 the percent symbol, so that the expression expansion rule can
14157 propertize the contents.
14158 (ruby-syntax-propertize-heredoc): Leave point at bol following the
14159 heredoc openers.
14160 (ruby-syntax-propertize-expansions): Remove.
14161
14162 2013-05-18 Juri Linkov <juri@jurta.org>
14163
14164 * man.el (Man-default-man-entry): Remove `-' from the end
14165 of the default value. (Bug#14400)
14166
14167 2013-05-18 Glenn Morris <rgm@gnu.org>
14168
14169 * comint.el (comint-password-prompt-regexp):
14170 Allow "password for XXX" where XXX contains colons (eg https://...).
14171
14172 2013-05-18 Leo Liu <sdl.web@gmail.com>
14173
14174 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
14175 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
14176 (octave-source-directories): Don't check process.
14177 (octave-source-directories, octave-find-definition): Doc fix.
14178
14179 2013-05-18 Glenn Morris <rgm@gnu.org>
14180
14181 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
14182 Remove backspace/delete bindings. (Bug#14392)
14183
14184 * cus-dep.el (custom-make-dependencies): Sort the output.
14185 (custom-versions-load-alist): Convert comment to doc.
14186
14187 2013-05-17 Leo Liu <sdl.web@gmail.com>
14188
14189 * newcomment.el (comment-search-backward): Stricter in finding
14190 comment start. (Bug#14303)
14191
14192 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
14193 (octave-comment-start-skip): Properly anchored.
14194
14195 2013-05-17 Leo Liu <sdl.web@gmail.com>
14196
14197 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
14198 Clean up when turned off. (Bug#14395)
14199 (smie--highlight-matching-block-overlay): No longer buffer-local.
14200 (smie-highlight-matching-block): Adjust.
14201
14202 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
14203
14204 Doc string fix for "nanoseconds" (Bug#14406).
14205 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
14206 Fix doc string typo that had "nanoseconds" instead of "microseconds".
14207
14208 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
14209
14210 * calc/calc-units.el (math-extract-units): Preserve powers
14211 of units.
14212
14213 2013-05-17 Leo Liu <sdl.web@gmail.com>
14214
14215 * subr.el (delete-consecutive-dups): New function.
14216 * ido.el (ido-set-matches-1): Use it.
14217 * progmodes/octave.el (inferior-octave-completion-table): Use it.
14218 * ido.el (ido-remove-consecutive-dups): Remove.
14219
14220 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14221
14222 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
14223 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
14224 regexp-opt's `words'.
14225
14226 2013-05-16 Leo Liu <sdl.web@gmail.com>
14227
14228 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
14229 (smie--highlight-matching-block-overlay)
14230 (smie--highlight-matching-block-lastpos)
14231 (smie--highlight-matching-block-timer): New variables.
14232 (smie-highlight-matching-block): New function.
14233 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
14234 (smie-setup): Conditionally enable smie-blink-matching-open.
14235
14236 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
14237
14238 Sync with upstream verilog-mode r840.
14239 * progmodes/verilog-mode.el (verilog-mode-version)
14240 (verilog-mode-release-date): Update.
14241 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
14242 (verilog-sig-tieoff): Fix string error on
14243 AUTORESET with colon define, bug594. Reported by Andrew Hou.
14244 (verilog-read-decls): Fix parameters confusing
14245 AUTOINST interfaces, bug565. Reported by Leith Johnson.
14246
14247 2013-05-16 Eli Zaretskii <eliz@gnu.org>
14248
14249 * subr.el (reveal-filename): New function.
14250
14251 * loadup.el: Compute Emacs executable versions on MS-Windows,
14252 where executables have the .exe extension. Add a hard link
14253 emacs-XX.YY.ZZ.exe on MS-Windows.
14254
14255 * Makefile.in (XARGS_LIMIT): New variable.
14256 (custom-deps, finder-data, autoloads)
14257 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
14258 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
14259 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
14260 (compile-main): Limit xargs according to $(XARGS_LIMIT).
14261
14262 2013-05-16 Leo Liu <sdl.web@gmail.com>
14263
14264 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
14265 (octave-mode-menu, octave-mode-map): Remove its uses.
14266
14267 2013-05-16 Reto Zimmermann <reto@gnu.org>
14268
14269 Sync with upstream vhdl mode v3.34.2.
14270 * progmodes/vhdl-mode.el: Use `push' throughout.
14271 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
14272 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
14273 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
14274 (vhdl-actual-generic-name): New option to derive actual generic name.
14275 (vhdl-port-paste-signals): Replace formal by actual generics.
14276 (vhdl-beautify): New name for old group vhdl-align. Update users.
14277 (vhdl-beautify-options): New option.
14278 (vhdl-last-input-event): New compat alias. Use throughout.
14279 (vhdl-goto-line): Replace user level function `goto-line'.
14280 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
14281 vhdl-fix-statement-buffer.
14282 (vhdl-create-mode-menu): Add some entries.
14283 (vhdl-align-region-groups): Respect vhdl-beautify-options.
14284 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
14285 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
14286 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
14287 to force statements on one line.
14288 (vhdl-remove-trailing-spaces-region):
14289 New, split from vhdl-remove-trailing-spaces.
14290 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
14291 Respect vhdl-beautify-options.
14292 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
14293 (vhdl-update-sensitivity-list): Not add with index if exists without.
14294 Not include array index with signal. Ignore keywords in comments.
14295 (vhdl-get-visible-signals): Regexp tweaks.
14296 (vhdl-template-component-inst): Handle empty library.
14297 (vhdl-template-type): Add template for 'enum' type.
14298 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
14299 Use vhdl-replace-string.
14300 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
14301 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
14302 (vhdl-speedbar-initialize): Update for above name change.
14303 (vhdl-compose-wire-components): Fix in handling of constants.
14304 (vhdl-error-regexp-emacs-alist): New variable.
14305 (vhdl-error-regexp-add-emacs): New function;
14306 adds support for new compile.el (Emacs 22+)
14307 (vhdl-generate-makefile-1): Change target order for single lib. units.
14308 Allow use of absolute file names.
14309
14310 2013-05-16 Leo Liu <sdl.web@gmail.com>
14311
14312 * simple.el (prog-indent-sexp): Indent enclosing defun.
14313
14314 2013-05-15 Glenn Morris <rgm@gnu.org>
14315
14316 * cus-start.el (show-trailing-whitespace): Move to editing basics.
14317 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
14318 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
14319 (whitespace-highlight): Move to whitespace group.
14320
14321 * comint.el (comint-source):
14322 * pcmpl-linux.el (pcmpl-linux):
14323 * shell.el (shell-faces):
14324 * eshell/esh-opt.el (eshell-opt):
14325 * international/ccl.el (ccl): Remove empty custom groups.
14326
14327 * completion.el (dynamic-completion-mode):
14328 * jit-lock.el (jit-lock-debug-mode):
14329 * minibuffer.el (completion-in-region-mode):
14330 * type-break.el (type-break-mode-line-message-mode)
14331 (type-break-query-mode):
14332 * emulation/tpu-edt.el (tpu-edt-mode):
14333 * progmodes/subword.el (global-subword-mode, global-superword-mode):
14334 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
14335 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
14336
14337 * term/xterm.el (xterm): Change parent group to terminals.
14338
14339 * master.el (master): Remove empty custom group.
14340 (master-mode): Remove unused :group argument.
14341 * textmodes/refill.el (refill): Remove empty custom group.
14342 (refill-mode): Remove unused :group argument.
14343
14344 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
14345
14346 * cus-dep.el: Provide a feature.
14347 (custom-make-dependencies): Ignore dotfiles (dir-locals).
14348 Don't mistakenly ignore files whose basenames match a basename
14349 from preloaded-file-list (eg cedet/ede/simple.el).
14350 Add a fallback method for getting :group.
14351
14352 2013-05-15 Juri Linkov <juri@jurta.org>
14353
14354 * isearch.el (isearch-char-by-name): Rename from
14355 `isearch-insert-char-by-name'. Doc fix.
14356 (isearch-forward): Mention `isearch-char-by-name' in
14357 the docstring. (Bug#13348)
14358
14359 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
14360 `exit-minibuffer' instead of
14361 `isearch-nonincremental-exit-minibuffer'.
14362 (isearch-edit-string): Remove mention of
14363 `isearch-nonincremental-exit-minibuffer' from docstring.
14364 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
14365 (isearch-forward-exit-minibuffer)
14366 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
14367
14368 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14369
14370 * loadup.el: Just use unversioned DOC.
14371
14372 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
14373 literals as extending to EOB.
14374 (nxml-last-fontify-end): Remove unused variable.
14375 (nxml-after-change1): Use with-silent-modifications.
14376 (nxml-extend-after-change-region): Simplify.
14377 (nxml-extend-after-change-region1): Remove function.
14378 (nxml-after-change1): Don't adjust for dependent regions.
14379 (nxml-fontify-matcher): Simplify.
14380 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
14381 (xmltok-add-dependent): Remove function.
14382 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
14383 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
14384 (xmltok-scan-prolog-after-processing-instruction-open): Treat
14385 unclosed <[[, <?, comment, and other literals as extending to EOB.
14386 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
14387 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
14388 Remove functions.
14389 (rng-do-some-validation-1): Don't mark dependent regions.
14390 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
14391 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
14392 (nxml-clear-dependent-regions): Remove functions.
14393 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
14394 (nxml-ensure-scan-up-to-date):
14395 Don't clear&mark dependent regions.
14396
14397 2013-05-15 Leo Liu <sdl.web@gmail.com>
14398
14399 * progmodes/octave.el (octave-goto-function-definition):
14400 Improve and fix callers.
14401
14402 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14403
14404 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
14405 the setter (bug#14387).
14406
14407 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
14408 surrounding group (bug#14402).
14409
14410 2013-05-14 Juri Linkov <juri@jurta.org>
14411
14412 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
14413 (Bug#14390)
14414
14415 2013-05-14 Glenn Morris <rgm@gnu.org>
14416
14417 * progmodes/f90.el (f90-imenu-generic-expression):
14418 Fix typo in 2013-05-08 change. (Bug#14402)
14419
14420 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14421
14422 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
14423 Remove signals for which replies are never received.
14424
14425 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14426
14427 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
14428 (gdb-handler-alist, gdb-handler-number): Remove variables.
14429 (gdb-handler-list): New variable.
14430 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
14431 (gdb-pending-handler-p, gdb-handle-reply)
14432 (gdb-remove-all-pending-triggers): New functions.
14433 (gdb-discard-unordered-replies): New defcustom.
14434 (gdb-handler): New defstruct.
14435 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
14436 instead of gdb-pending-triggers. Update docstring.
14437 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
14438 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
14439 (gdb-var-update-handler, def-gdb-auto-update-trigger)
14440 (def-gdb-auto-update-handler, gdb-get-changed-registers)
14441 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
14442 (gdb-frame-handler): Pending triggers are now automatically managed.
14443 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
14444 Remove argument.
14445 (gdb-input): Automatically handles pending triggers. Update docstring.
14446 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
14447 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
14448 Update comments.
14449 (gdb-done-or-error): Now use gdb-handle-reply.
14450
14451 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
14452
14453 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
14454 gdb-debug-log.
14455
14456 2013-05-14 Glenn Morris <rgm@gnu.org>
14457
14458 * subr.el (user-emacs-directory-warning): New option.
14459 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
14460
14461 2013-05-14 Leo Liu <sdl.web@gmail.com>
14462
14463 * progmodes/octave.el (octave-font-lock-keywords): Fix error
14464 during redisplay.
14465 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
14466 (octave-font-lock-texinfo-comment): Fix invalid search bound
14467 error: wrong side of point.
14468
14469 2013-05-14 Glenn Morris <rgm@gnu.org>
14470
14471 * progmodes/flymake.el (flymake-xml-program): New option.
14472 (flymake-xml-init): Use it.
14473
14474 * term/xterm.el: Provide a feature.
14475
14476 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
14477
14478 2013-05-13 Glenn Morris <rgm@gnu.org>
14479
14480 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
14481 Add compat aliases as a hack workaround. (Bug#14384)
14482
14483 2013-05-13 Leo Liu <sdl.web@gmail.com>
14484
14485 * progmodes/octave.el (octave-indent-comment): Fix indentation for
14486 ###, and %!.
14487 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
14488 C-M-q.
14489 (octave-comment-start-skip): Include %!.
14490 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
14491
14492 2013-05-12 Leo Liu <sdl.web@gmail.com>
14493
14494 * progmodes/octave.el (inferior-octave-startup): Store the value
14495 of __octave_srcdir__ for octave-source-directories.
14496 (inferior-octave-check-process): New function refactored out of
14497 inferior-octave-send-list-and-digest.
14498 (octave-source-directories)
14499 (octave-find-definition-filename-function): New variables.
14500 (octave-source-directories)
14501 (octave-find-definition-default-filename): New functions.
14502 (octave-find-definition): Improve to find functions implemented in C++.
14503
14504 2013-05-12 Glenn Morris <rgm@gnu.org>
14505
14506 * calendar/diary-lib.el (diary-outlook-format-1):
14507 Don't include dayname in the output. (Bug#14349)
14508
14509 2013-05-11 Glenn Morris <rgm@gnu.org>
14510
14511 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
14512
14513 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
14514 Treat cc-provide like provide.
14515
14516 2013-05-11 Kevin Ryde <user42@zip.com.au>
14517
14518 * cus-dep.el (custom-make-dependencies):
14519 Use generated-autoload-load-name for the sake of files such
14520 such cedet/semantic/bovine/c.el, where the base file name
14521 is not in load-path. (Bug#5277)
14522
14523 2013-05-11 Glenn Morris <rgm@gnu.org>
14524
14525 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
14526 Provide features.
14527
14528 2013-05-11 Leo Liu <sdl.web@gmail.com>
14529
14530 * progmodes/octave.el (octave-indent-comment): Improve.
14531 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
14532 (octave-eldoc-function-signatures, octave-eldoc-function):
14533 New functions.
14534 (octave-mode, inferior-octave-mode): Add eldoc support.
14535
14536 2013-05-11 Richard Stallman <rms@gnu.org>
14537
14538 * epa.el (epa-decrypt-file): Take output file name as argument
14539 and read it using `interactive'.
14540
14541 2013-05-11 Leo Liu <sdl.web@gmail.com>
14542
14543 * progmodes/octave.el (octave-beginning-of-line)
14544 (octave-end-of-line): Check before using up-list because it jumps
14545 out of more syntactic contructs since moving to smie.
14546 (octave-indent-comment): New function.
14547 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
14548 (octave-begin-keywords, octave-end-keywords)
14549 (octave-reserved-words, octave-smie-bnf-table)
14550 (octave-smie-rules): Add new keywords from Octave 3.6.4.
14551
14552 2013-05-11 Glenn Morris <rgm@gnu.org>
14553
14554 * faces.el (internal-face-x-get-resource):
14555 * frame.el (ns-display-monitor-attributes-list):
14556 * calc/calc-aent.el (math-to-radians-2):
14557 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
14558 Fix declarations.
14559
14560 * calc/calc-menu.el: Make it loadable in isolation.
14561
14562 * net/eudcb-bbdb.el: Make it loadable without bbdb.
14563 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
14564 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
14565 (eudc-bbdb-query-internal): Require 'bbdb.
14566
14567 * lpr.el (lpr-headers-switches):
14568 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
14569
14570 * progmodes/sql.el (sql-login-params): Fix and improve :type.
14571
14572 * emulation/edt-mapper.el: In batch mode, error rather than hang.
14573
14574 * term.el (term-set-escape-char): Make it idempotent.
14575
14576 2013-05-10 Leo Liu <sdl.web@gmail.com>
14577
14578 * progmodes/octave.el (inferior-octave-completion-table):
14579 No longer a function and all uses changed. Use cache to speed up
14580 completion due to bug#11906.
14581 (octave-beginning-of-defun): Re-write to be more general.
14582
14583 2013-05-10 Glenn Morris <rgm@gnu.org>
14584
14585 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
14586
14587 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
14588
14589 * comint.el (comint-redirect-send-command-to-process): Use :around
14590 rather than :override for comint-redirect-filter.
14591 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
14592 Call it instead of comint-redirect-original-filter-function (which
14593 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
14594
14595 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
14596
14597 * frame.el (display-monitor-attributes-list): Add NS case.
14598 (ns-display-monitor-attributes-list): Declare.
14599
14600 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
14601
14602 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
14603
14604 2013-05-09 Glenn Morris <rgm@gnu.org>
14605
14606 * international/fontset.el (vertical-centering-font-regexp):
14607 Set standard-value.
14608
14609 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
14610
14611 * bookmark.el (bookmark-search-delay):
14612 * cus-start.el (vertical-centering-font-regexp):
14613 * ps-mule.el (ps-mule-font-info-database-default):
14614 * ps-print.el (ps-default-fg, ps-default-bg):
14615 * type-break.el (type-break-good-break-interval):
14616 * whitespace.el (whitespace-indentation-regexp)
14617 (whitespace-space-after-tab-regexp):
14618 * emacs-lisp/testcover.el (testcover-1value-functions)
14619 (testcover-noreturn-functions, testcover-progn-functions)
14620 (testcover-prog1-functions):
14621 * emulation/viper-init.el (viper-emacs-state-cursor-color):
14622 * eshell/em-glob.el (eshell-glob-translate-alist):
14623 * play/tetris.el (tetris-tty-colors):
14624 * progmodes/cpp.el (cpp-face-default-list):
14625 * progmodes/flymake.el (flymake-allowed-file-name-masks):
14626 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
14627 (idlwave-help-browser-generic-args):
14628 * progmodes/make-mode.el (makefile-special-targets-list):
14629 * progmodes/python.el (python-shell-virtualenv-path):
14630 * progmodes/verilog-mode.el (verilog-active-low-regexp)
14631 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
14632 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
14633 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
14634 * textmodes/reftex-vars.el (reftex-format-label-function):
14635 * textmodes/remember.el (remember-diary-file): Fix custom types.
14636
14637 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
14638 Add :version.
14639
14640 2013-05-09 Leo Liu <sdl.web@gmail.com>
14641
14642 * progmodes/octave.el (inferior-octave-completion-at-point):
14643 Restore file completion. (Bug#14300)
14644 (inferior-octave-startup): Fix incorrect highlighting for the
14645 first prompt.
14646
14647 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14648
14649 * progmodes/ruby-mode.el: First cut at SMIE support.
14650 (ruby-use-smie): New var.
14651 (ruby-smie-grammar): New constant.
14652 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
14653 (ruby-smie--forward-token, ruby-smie--backward-token)
14654 (ruby-smie-rules): New functions.
14655 (ruby-mode-variables): Setup SMIE if applicable.
14656
14657 2013-05-08 Eli Zaretskii <eliz@gnu.org>
14658
14659 * simple.el (line-move-visual): Signal beginning/end of buffer
14660 only if vertical-motion moved less than it was requested. Avoids
14661 silly incorrect error messages when there are display strings with
14662 multiple newlines at EOL.
14663
14664 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14665
14666 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
14667 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
14668 (prolog-char-quote-workaround):
14669 * progmodes/cperl-mode.el (cperl-under-as-char):
14670 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
14671 Mark as obsolete.
14672 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
14673 their declaration.
14674 (vhdl-mode-syntax-table-init): Remove.
14675
14676 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
14677 last change.
14678
14679 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
14680 syntax for "_".
14681 (ld-script-font-lock-keywords):
14682 Change regexps to use things like \_< and \_>.
14683
14684 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
14685 Change all regexps to use things like \_< and \_>.
14686
14687 * progmodes/autoconf.el (autoconf-definition-regexp)
14688 (autoconf-font-lock-keywords, autoconf-current-defun-function):
14689 Handle a _ with symbol syntax.
14690 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
14691
14692 * progmodes/ada-mode.el (ada-mode-abbrev-table):
14693 Consolidate declaration.
14694 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
14695 the declaration.
14696 (ada-create-syntax-table): Remove.
14697 (ada-capitalize-word): Don't mess with the syntax of "_" since it
14698 already has the right syntax nowadays.
14699 (ada-goto-next-word): Don't change the syntax of "_".
14700
14701 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
14702 with-wrapper-hook.
14703
14704 2013-05-08 Sam Steingold <sds@gnu.org>
14705
14706 * thingatpt.el (thing-at-point): Accept optional second argument
14707 NO-PROPERTIES to strip the text properties from the return value.
14708 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
14709 to `thing-at-point' instead of stripping the properties ourselves.
14710 Also, when `thing-at-point' fails to find a url, prepend "http://"
14711 to the filename at point on the assumption that the user is
14712 pointing at something like gnu.org/gnu.
14713
14714 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
14715
14716 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
14717 * faces.el (crm-separator):
14718 Silence byte-compiler.
14719
14720 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
14721 (tool-bar-map): Remove unneeded defvars.
14722
14723 2013-05-08 Leo Liu <sdl.web@gmail.com>
14724
14725 Re-work a fix for bug#10994 based on Le Wang's patch.
14726 * ido.el (ido-remove-consecutive-dups): New helper.
14727 (ido-completing-read): Use it.
14728 (ido-chop): Revert fix for bug#10994.
14729
14730 2013-05-08 Adam Spiers <emacs@adamspiers.org>
14731
14732 * cus-edit.el (custom-save-variables):
14733 Pretty-print long values. (Bug#14187)
14734
14735 2013-05-08 Glenn Morris <rgm@gnu.org>
14736
14737 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
14738 (m4-mode-syntax-table): Init in the defvar.
14739 (m4-mode-abbrev-table): Let define-derived-mode define it.
14740
14741 2013-05-08 Tom Tromey <tromey@redhat.com>
14742
14743 * progmodes/m4-mode.el (m4-mode-syntax-table):
14744 Do not treat "_" as word constituent. (Bug#14167)
14745
14746 2013-05-07 Glenn Morris <rgm@gnu.org>
14747
14748 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
14749 Remove explicit eshell-isearch-cancel-map.
14750
14751 * progmodes/f90.el (f90-smart-end-names): New option.
14752 (f90-smart-end): Doc fix.
14753 (f90-end-block-optional-name): New constant.
14754 (f90-block-match): Respect f90-smart-end-names.
14755
14756 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14757
14758 * progmodes/octave.el (octave-smie-forward-token): Be more careful
14759 about implicit semi-colons (bug#14218).
14760
14761 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14762
14763 * frame.el (display-monitor-attributes-list)
14764 (frame-monitor-attributes): New functions.
14765
14766 2013-05-06 Leo Liu <sdl.web@gmail.com>
14767
14768 * progmodes/octave.el (octave-syntax-propertize-function): Change
14769 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
14770 (octave-font-lock-keywords): Use octave-operator-regexp.
14771 (octave-completion-at-point): Rename from
14772 octave-completion-at-point-function.
14773 (inferior-octave-directory-tracker): Robustify.
14774 (octave-text-functions): Remove and fix its uses. No such things
14775 any more.
14776
14777 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14778
14779 * emacs-lisp/trace.el (trace--display-buffer): New function.
14780 (trace-make-advice): Use it.
14781
14782 2013-05-06 Juri Linkov <juri@jurta.org>
14783
14784 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
14785 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
14786 Doc fix.
14787 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
14788 in the help string. (Bug#12985)
14789
14790 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
14791
14792 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
14793
14794 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14795
14796 * progmodes/perl-mode.el: Add support for here documents.
14797 (perl-syntax-propertize-function): Match here-doc markers.
14798 (perl-syntax-propertize-special-constructs): Find their end.
14799 (perl-imenu-generic-expression): Use [:alnum:].
14800
14801 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
14802 (advice--add-function): Refresh the advice if already present
14803 (bug#14317).
14804
14805 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
14806
14807 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
14808
14809 2013-05-06 Glenn Morris <rgm@gnu.org>
14810
14811 * w32-fns.el (w32-charset-info-alist): Declare.
14812
14813 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
14814 of its defcustom properties.
14815 (eshell-cmpl-initialize): No need to load pcomplete.
14816
14817 * generic-x.el: No need to require comint when compiling.
14818
14819 * net/eudc-export.el: Make it loadable without bbdb.
14820 (top-level): Use require rather than load-library.
14821 (eudc-create-bbdb-record, eudc-bbdbify-phone)
14822 (eudc-batch-export-records-to-bbdb)
14823 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
14824 Require bbdb.
14825
14826 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14827
14828 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
14829 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
14830 some tweaks, instead.
14831
14832 2013-05-05 Leo Liu <sdl.web@gmail.com>
14833
14834 * progmodes/octave.el (octave-font-lock-keywords)
14835 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
14836 (inferior-octave-send-list-and-digest): Improve error message.
14837 (octave-mode, inferior-octave-mode): Use setq-local.
14838 (octave-help): Set info-lookup-mode.
14839
14840 2013-05-05 Richard Stallman <rms@gnu.org>
14841
14842 * vc/compare-w.el (compare-windows-whitespace):
14843 Treat no-break space as whitespace.
14844
14845 * mail/rmailsum.el (rmail-summary-rmail-update):
14846 Detect empty summary and don't change selected message.
14847 (rmail-summary-goto-msg): Likewise.
14848
14849 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
14850 Doc fixes, rename args.
14851
14852 2013-05-05 Alan Mackenzie <acm@muc.de>
14853
14854 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
14855
14856 2013-05-05 Juri Linkov <juri@jurta.org>
14857
14858 * info.el (Info-read-subfile): Use (point-min) instead of (point)
14859 to not add the length of the summary segment to the return value.
14860 (Bug#14125)
14861
14862 2013-05-05 Leo Liu <sdl.web@gmail.com>
14863
14864 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
14865 (inferior-octave-output-filter): Remove.
14866 (octave-send-region, inferior-octave-startup): Fix callers.
14867 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
14868 (octave-binary-file-extensions): New user variable.
14869 (octave-find-definition): Confirm if opening binary files.
14870 (octave-help-file): Use octave-find-definition to get the binary
14871 confirmation.
14872 (octave-help): Adjust for octave-help-file change.
14873
14874 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14875
14876 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
14877 Merge the two entries that handle function definitions.
14878 (pascal--syntax-propertize): New const.
14879 (pascal-mode): Use it. Use setq-local.
14880
14881 2013-05-04 Glenn Morris <rgm@gnu.org>
14882
14883 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
14884 (diary-from-outlook): Respect diary-from-outlook-function.
14885
14886 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14887
14888 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
14889 Move the declaration from C.
14890 (read-minibuffer, eval-minibuffer): Move from C.
14891 (completion-setup-function): Avoid minibuffer-completion-contents.
14892
14893 2013-05-03 Leo Liu <sdl.web@gmail.com>
14894
14895 * progmodes/octave.el (octave-font-lock-keywords): Do not
14896 dehighlight 'end' in comments or strings.
14897 (octave-completing-read, octave-goto-function-definition):
14898 New helpers.
14899 (octave-help-buffer): New user variable.
14900 (octave-help-file, octave-help-function): New button types.
14901 (octave-help): New command and bind it to C-h ;.
14902 (octave-find-definition): New command and bind it to M-.
14903 (user-error): Alias to error if not defined.
14904
14905 2013-05-02 Leo Liu <sdl.web@gmail.com>
14906
14907 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
14908 for \. (bug#14332)
14909 (octave-font-lock-keywords): Include [ and {.
14910
14911 2013-05-02 Leo Liu <sdl.web@gmail.com>
14912
14913 * progmodes/octave.el (inferior-octave-startup-file): Change default.
14914 (inferior-octave): Remove calling comint-mode and return the buffer.
14915 (inferior-octave-startup): Cosmetic changes.
14916
14917 2013-05-02 Leo Liu <sdl.web@gmail.com>
14918
14919 * progmodes/octave.el (octave-syntax-propertize-function):
14920 Include the case when ' is at line beginning. (Bug#14336)
14921
14922 2013-05-02 Glenn Morris <rgm@gnu.org>
14923
14924 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
14925 * desktop.el (vc-dir-mode): Just autoload it here.
14926
14927 2013-05-02 Alan Mackenzie <acm@muc.de>
14928
14929 Eliminate variable c-standard-font-lock-fontify-region-function.
14930 * progmodes/cc-mode.el
14931 (c-standard-font-lock-fontify-region-function): Remove.
14932 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
14933
14934 2013-05-01 Leo Liu <sdl.web@gmail.com>
14935
14936 * progmodes/octave.el: Compatible with older emacs-24 releases.
14937 (inferior-octave-has-built-in-variables): Remove. Built-in
14938 variables were removed from Octave in 2007.
14939 (inferior-octave-startup): Fix uses.
14940 (comint-line-beginning-position): Remove compatibility code for
14941 emacs 21.
14942
14943 2013-05-01 Juri Linkov <juri@jurta.org>
14944
14945 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
14946
14947 2013-05-01 Juri Linkov <juri@jurta.org>
14948
14949 * comint.el (comint-previous-matching-input): Don't print message
14950 "History item: %d" when `isearch-mode' is active.
14951 (comint-history-isearch-message): Print message "History item: %d"
14952 when `comint-input-ring-index' is not empty and this function is
14953 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
14954
14955 2013-05-01 Leo Liu <sdl.web@gmail.com>
14956
14957 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
14958 definitions. Use completion-at-point to insert keywords.
14959 (octave-abbrev-start): Remove.
14960 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
14961
14962 2013-04-30 Leo Liu <sdl.web@gmail.com>
14963
14964 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
14965 change.
14966
14967 2013-04-30 Alan Mackenzie <acm@muc.de>
14968
14969 Handle arbitrarily long C++ member initialisation lists.
14970 * progmodes/cc-engine.el (c-back-over-member-initializers):
14971 new function.
14972 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
14973 (most) member init lists.
14974
14975 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14976
14977 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
14978 variable.
14979
14980 2013-04-30 Leo Liu <sdl.web@gmail.com>
14981
14982 * progmodes/octave.el (octave-variables): Remove. No builtin
14983 variables any more. All converted to functions.
14984 (octave-font-lock-keywords, octave-completion-at-point-function):
14985 Fix uses.
14986 (octave-font-lock-texinfo-comment): New user variable.
14987 (octave-texinfo-font-lock-keywords): New variable for texinfo
14988 comment block.
14989 (octave-function-comment-block): New face.
14990 (octave-font-lock-texinfo-comment): New function.
14991 (octave-mode): Font lock texinfo comment block.
14992
14993 2013-04-29 Leo Liu <sdl.web@gmail.com>
14994
14995 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
14996 indexing expression.
14997 (octave-continuation-string): Do not use \.
14998 (inferior-octave-complete-impossible): Remove.
14999 (inferior-octave-completion-table)
15000 (inferior-octave-completion-at-point): Remove its uses.
15001 (inferior-octave-startup): completion_matches was introduced to
15002 Octave in 1996 so safe to assume it.
15003 (octave-function-file-comment): Improve to follow how Octave does it.
15004 (octave-update-function-file-comment): Tweak.
15005
15006 2013-04-29 Leo Liu <sdl.web@gmail.com>
15007
15008 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
15009 (inferior-octave-startup): Remove inferior-octave-startup-hook.
15010 (octave-function-file-comment): Fix typo.
15011 (octave-sync-function-file-names): Use read-char-choice.
15012
15013 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
15014
15015 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
15016 to t for the less important warnings.
15017
15018 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
15019
15020 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
15021
15022 2013-04-27 Glenn Morris <rgm@gnu.org>
15023
15024 * vc/log-view.el (log-view-current-entry):
15025 Treat "---" separator lines as part of the following rev. (Bug#14169)
15026
15027 2013-04-27 Juri Linkov <juri@jurta.org>
15028
15029 * subr.el (read-number): Doc fix about using it by interactive
15030 code letter `n'. (Bug#14254)
15031
15032 2013-04-27 Juri Linkov <juri@jurta.org>
15033
15034 * desktop.el (desktop-auto-save-timeout): New option.
15035 (desktop-file-checksum): New variable.
15036 (desktop-save): Add optional arg `auto-save' and don't auto-save
15037 if nothing changed.
15038 (desktop-auto-save-timer): New variable.
15039 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
15040 (after-init-hook): Call `desktop-auto-save-set-timer'.
15041 Suggested by Reuben Thomas <rrt@sc3d.org> in
15042 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
15043
15044 2013-04-27 Leo Liu <sdl.web@gmail.com>
15045
15046 * progmodes/octave.el (octave-function-file-p)
15047 (octave-skip-comment-forward, octave-function-file-comment)
15048 (octave-update-function-file-comment): New functions.
15049 (octave-mode-map): Bind C-c ; to
15050 octave-update-function-file-comment.
15051 (octave-mode-menu): Add octave-update-function-file-comment.
15052 (octave-mode, inferior-octave-mode): Fix doc-string.
15053 (octave-insert-defun): Conform to Octave's coding convention.
15054 (Bug#14285)
15055
15056 * files.el (basic-save-buffer): Don't let errors in
15057 before-save-hook prevent saving buffer.
15058
15059 2013-04-20 Roland Winkler <winkler@gnu.org>
15060
15061 * faces.el (read-face-name): Use completing-read if arg multiple
15062 is nil.
15063
15064 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
15065
15066 * ls-lisp.el (ls-lisp-insert-directory): If no files are
15067 displayed, move point to after the totals line.
15068 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
15069 for the details.
15070
15071 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15072
15073 * emacs-lisp/package.el (package-autoload-ensure-default-file):
15074 Add current dir to the load-path.
15075 (package-generate-autoloads): Don't rely on
15076 autoload-ensure-default-file.
15077
15078 2013-04-26 Reuben Thomas <rrt@sc3d.org>
15079
15080 * textmodes/remember.el (remember-store-in-files): Document that
15081 the file name format is passed to `format-time-string'.
15082
15083 2013-04-26 Leo Liu <sdl.web@gmail.com>
15084
15085 * progmodes/octave.el (octave-sync-function-file-names): New function.
15086 (octave-mode): Use it in before-save-hook.
15087
15088 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15089
15090 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
15091 (bug#14274).
15092
15093 * progmodes/octave.el (octave-smie-forward-token): Properly skip
15094 \n and comment, even if it's not an implicit ; (bug#14218).
15095
15096 2013-04-26 Glenn Morris <rgm@gnu.org>
15097
15098 * subr.el (read-number): Once more use `read' rather than
15099 `string-to-number', to trap non-numeric input. (Bug#14254)
15100
15101 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
15102
15103 * emacs-lisp/syntax.el (syntax-propertize-multiline):
15104 Use `syntax-multiline' text property consistently instead of
15105 `font-lock-multiline'. (Bug#14237)
15106
15107 2013-04-26 Glenn Morris <rgm@gnu.org>
15108
15109 * emacs-lisp/shadow.el (list-load-path-shadows):
15110 No longer necessary to check for duplicate simple.el, since
15111 2012-07-07 change to init_lread to not include installation lisp
15112 directories in load-path when running uninstalled. (Bug#14270)
15113
15114 2013-04-26 Leo Liu <sdl.web@gmail.com>
15115
15116 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
15117 (octave-mode, inferior-octave-mode): Use setq-local.
15118 (octave-not-in-string-or-comment-p): Rename to
15119 octave-in-string-or-comment-p.
15120 (octave-in-comment-p, octave-in-string-p)
15121 (octave-in-string-or-comment-p): Replace defsubst with defun.
15122
15123 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
15124
15125 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
15126
15127 2013-04-25 Bastien Guerry <bzg@gnu.org>
15128
15129 * textmodes/remember.el (remember-data-directory)
15130 (remember-directory-file-name-format): Fix custom types.
15131
15132 2013-04-25 Leo Liu <sdl.web@gmail.com>
15133
15134 * progmodes/octave.el (octave-completion-at-point-function):
15135 Make use of inferior octave process.
15136 (octave-initialize-completions): Remove.
15137 (inferior-octave-completion-table): New function.
15138 (inferior-octave-completion-at-point): Use it.
15139 (octave-completion-alist): Remove.
15140
15141 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15142
15143 * progmodes/opascal.el: Use font-lock and syntax-propertize.
15144 (opascal-mode-syntax-table): New var.
15145 (opascal-literal-kind, opascal-is-literal-end)
15146 (opascal-literal-token-at): Rewrite.
15147 (opascal--literal-start-re, opascal-font-lock-keywords)
15148 (opascal--syntax-propertize): New constants.
15149 (opascal-font-lock-defaults): Adjust.
15150 (opascal-mode): Use them. Set comment-<foo> variables as well.
15151 (delphi-comment-face, opascal-comment-face, delphi-string-face)
15152 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
15153 (delphi-other-face, opascal-other-face): Remove face variables.
15154 (opascal-save-state): Remove macro.
15155 (opascal-fontifying-progress-step): Remove constant.
15156 (opascal--ignore-changes): Remove var.
15157 (opascal-set-token-property, opascal-parse-next-literal)
15158 (opascal-is-stable-literal, opascal-complete-literal)
15159 (opascal-is-literal-start, opascal-face-of)
15160 (opascal-parse-region, opascal-parse-region-until-stable)
15161 (opascal-fontify-region, opascal-after-change)
15162 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
15163 (opascal-debug-parse-region, opascal-debug-parse-window)
15164 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
15165 (opascal-debug-fontify-buffer): Remove.
15166 (opascal-debug-mode-map): Adjust accordingly.
15167
15168 2013-04-25 Leo Liu <sdl.web@gmail.com>
15169
15170 Merge octave-mod.el and octave-inf.el into octave.el with some
15171 cleanups.
15172 * progmodes/octave.el: New file renamed from octave-mod.el.
15173 * progmodes/octave-inf.el: Merged into octave.el.
15174 * progmodes/octave-mod.el: Renamed to octave.el.
15175
15176 2013-04-25 Tassilo Horn <tsdh@gnu.org>
15177
15178 * textmodes/reftex-vars.el
15179 (reftex-label-ignored-macros-and-environments): New defcustom.
15180
15181 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
15182
15183 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15184
15185 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
15186 (smie-indent-keyword): Improve the check to ensure that the next
15187 comment is really on the same line.
15188 (smie-indent-comment): Don't align with a subsequent closer (or eob).
15189
15190 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
15191 semi-colons if the line is not otherwise empty (bug#14218).
15192
15193 2013-04-25 Glenn Morris <rgm@gnu.org>
15194
15195 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
15196
15197 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15198
15199 * progmodes/opascal.el (opascal-set-token-property): Rename from
15200 opascal-set-text-properties and only set `token' (bug#14134).
15201 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
15202 (opascal-literal-text-properties): Remove.
15203 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
15204 Adjust callers.
15205
15206 2013-04-24 Reuben Thomas <rrt@sc3d.org>
15207
15208 * textmodes/remember.el (remember-handler-functions): Add an
15209 option for a new handler `remember-store-in-files'.
15210 (remember-data-directory, remember-directory-file-name-format):
15211 New options.
15212 (remember-store-in-files): New function to store remember notes
15213 as separate files within a directory.
15214
15215 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
15216
15217 * progmodes/compile.el (compilation-next-error-function):
15218 Pass "formats" to compilation-find-file (bug#11777).
15219
15220 2013-04-24 Glenn Morris <rgm@gnu.org>
15221
15222 * vc/vc-bzr.el (vc-bzr-print-log):
15223 * vc/vc-hg.el (vc-hg-print-log):
15224 * vc/vc-svn.el (vc-svn-print-log):
15225 Fix START-REVISION with LIMIT != 1. (Bug#14168)
15226
15227 * vc/vc-bzr.el (vc-bzr-print-log):
15228 * vc/vc-cvs.el (vc-cvs-print-log):
15229 * vc/vc-git.el (vc-git-print-log):
15230 * vc/vc-hg.el (vc-hg-print-log):
15231 * vc/vc-mtn.el (vc-mtn-print-log):
15232 * vc/vc-rcs.el (vc-rcs-print-log):
15233 * vc/vc-sccs.el (vc-sccs-print-log):
15234 * vc/vc-svn.el (vc-svn-print-log):
15235 * vc/vc.el (vc-print-log-internal): Doc fixes.
15236
15237 2013-04-23 Glenn Morris <rgm@gnu.org>
15238
15239 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
15240 Remove venerable code attempting to avoid substitute-command-keys.
15241
15242 2013-04-23 Tassilo Horn <tsdh@gnu.org>
15243
15244 * textmodes/reftex-vars.el (reftex-label-regexps):
15245 Call `reftex-compile-variables' after changes to this variable.
15246
15247 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
15248
15249 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
15250 Use lexical-binding.
15251 (jit-lock-force-redisplay): Use markers, check buffer's continued
15252 existence and beware narrowed buffers.
15253 (jit-lock-fontify-now): Adjust call accordingly.
15254
15255 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
15256
15257 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
15258 to avoid misleading the user.
15259
15260 2013-04-22 Leo Liu <sdl.web@gmail.com>
15261
15262 * info-look.el: Prefer latex2e.info. (Bug#14240)
15263
15264 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
15265
15266 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
15267
15268 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
15269 * net/tramp.el (tramp-call-process): ... here.
15270 (tramp-set-completion-function, tramp-parse-putty):
15271 * net/tramp-adb.el (tramp-adb-execute-adb-command):
15272 * net/tramp-gvfs.el (tramp-gvfs-send-command):
15273 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
15274 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
15275 (tramp-call-local-coding-command): Use `tramp-call-process'
15276 instead of `tramp-compat-call-process'.
15277
15278 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
15279 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
15280 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
15281 (tramp-find-inline-compress): Improve traces.
15282 (tramp-maybe-send-script): Check for Perl binary.
15283 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
15284
15285 2013-04-22 Daiki Ueno <ueno@gnu.org>
15286
15287 * epg.el (epg-context-pinentry-mode): New function.
15288 (epg-context-set-pinentry-mode): New function.
15289 (epg--start): Pass --pinentry-mode option to gpg command.
15290
15291 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
15292
15293 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
15294 `comint-dynamic-complete' is obsolete since 24.1, replaced by
15295 `completion-at-point'. (Bug#13774)
15296
15297 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
15298 default key binding for `describe-distribution' has been moved to
15299 `C-h C-o'. (Bug#13970)
15300
15301 2013-04-21 Glenn Morris <rgm@gnu.org>
15302
15303 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
15304 Add doc strings.
15305 (vc-print-log): Clarify interactive prompt.
15306
15307 2013-04-20 Glenn Morris <rgm@gnu.org>
15308
15309 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
15310 No longer include timestamp etc information.
15311
15312 2013-04-20 Roland Winkler <winkler@gnu.org>
15313
15314 * faces.el (read-face-name): Bug fix, return just one face if arg
15315 multiple is nil. (Bug#14209)
15316
15317 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15318
15319 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
15320 (remove-function): Autoload.
15321
15322 * comint.el (comint-redirect-original-filter-function): Remove.
15323 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
15324 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
15325 (vc-cvs-annotate-command):
15326 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
15327 * progmodes/prolog.el (prolog-consult-compile):
15328 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
15329 Use add/remove-function instead.
15330 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
15331 (gud-tooltip-process-output, gud-tooltip-tips):
15332 Use add/remove-function instead.
15333 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
15334 (scheme-interaction-mode, exit-scheme-interaction-mode):
15335 Use add/remove-function instead.
15336
15337 * vc/vc-dispatcher.el: Use lexical-binding.
15338 (vc--process-sentinel): Rename from vc-process-sentinel.
15339 Change last arg to be the code to run. Don't use vc-previous-sentinel
15340 and vc-sentinel-commands any more.
15341 (vc-exec-after): Allow code to be a function. Use add/remove-function.
15342 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
15343
15344 2013-04-19 Masatake YAMATO <yamato@redhat.com>
15345
15346 * progmodes/sh-script.el (sh-imenu-generic-expression):
15347 Handle function names with a single character. (Bug#14111)
15348
15349 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
15350
15351 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
15352 for subroutines defined in an eval (bug#14182).
15353
15354 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15355
15356 * bookmark.el (bookmark-completing-read): Improve handling of empty
15357 string (bug#14176).
15358
15359 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15360
15361 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
15362
15363 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
15364
15365 New faster Imenu implementation (bug#14058).
15366 * progmodes/python.el (python-imenu-prev-index-position)
15367 (python-imenu-format-item-label-function)
15368 (python-imenu-format-parent-item-label-function)
15369 (python-imenu-format-parent-item-jump-label-function):
15370 New vars.
15371 (python-imenu-format-item-label)
15372 (python-imenu-format-parent-item-label)
15373 (python-imenu-format-parent-item-jump-label)
15374 (python-imenu--put-parent, python-imenu--build-tree)
15375 (python-imenu-create-index, python-imenu-create-flat-index)
15376 (python-util-popn): New functions.
15377 (python-mode): Set imenu-create-index-function to
15378 python-imenu-create-index.
15379
15380 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15381
15382 * winner.el (winner-active-region): Use region-active-p, activate-mark
15383 and deactivate-mark (bug#14225).
15384
15385 * simple.el (deactivate-mark): Don't inline it.
15386
15387 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
15388
15389 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
15390
15391 2013-04-18 Tassilo Horn <tsdh@gnu.org>
15392
15393 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
15394 file extensions from the archive-mode entry in order to prefer
15395 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
15396
15397 2013-04-18 Leo Liu <sdl.web@gmail.com>
15398
15399 * bindings.el (help-event-list): Add ?\?.
15400
15401 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
15402
15403 * subr.el (with-wrapper-hook): Declare obsolete.
15404 * simple.el (filter-buffer-substring-function): New hook.
15405 (filter-buffer-substring): Use it.
15406 (filter-buffer-substring-functions): Mark obsolete.
15407 * minibuffer.el (completion-in-region-function): New hook.
15408 (completion-in-region): Use it.
15409 (completion-in-region-functions): Mark obsolete.
15410 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
15411 * abbrev.el (abbrev-expand-function): New hook.
15412 (expand-abbrev): Use it.
15413 (abbrev-expand-functions): Mark obsolete.
15414 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
15415 and :filter-return.
15416
15417 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15418
15419 * progmodes/python.el (python-nav--syntactically): Fix cornercases
15420 and do not care about match data.
15421
15422 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
15423
15424 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
15425 completion tables when completing error conditions and
15426 `declare' arguments.
15427 (lisp-complete-symbol, field-complete): Mark as obsolete.
15428 (check-parens): Unmatched parens are user errors.
15429 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
15430
15431 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
15432
15433 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
15434 command changed buffer (ie. `flyspell-pre-buffer' is not current
15435 buffer), which prevents making decisions based on invalid value of
15436 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
15437 cause an error when `flyspell-pre-point' was nil after switching
15438 buffers.
15439 (flyspell-post-command-hook): No longer needs to change buffers when
15440 checking pre-word. While at it remove unnecessary progn.
15441
15442 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
15443
15444 * textmodes/ispell.el (ispell-add-per-file-word-list):
15445 Fix `flyspell-correct-word-before-point' error when accepting
15446 words and `coment-padding' is an integer by using
15447 `comment-normalize-vars' (Bug #14214).
15448
15449 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15450
15451 New defun movement commands.
15452 * progmodes/python.el (python-nav--syntactically)
15453 (python-nav--forward-defun, python-nav-backward-defun)
15454 (python-nav-forward-defun): New functions.
15455
15456 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
15457
15458 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
15459 (python-syntax-context): Use named compiler-macro for backwards
15460 compatibility with Emacs 24.x.
15461
15462 2013-04-17 Leo Liu <sdl.web@gmail.com>
15463
15464 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
15465 octave-hide-process-buffer.
15466
15467 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
15468
15469 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
15470 (bug#14216).
15471
15472 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
15473
15474 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
15475 Fix adjustment of offset when receiving incomplete responses from GDB
15476 (bug#14129).
15477
15478 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15479
15480 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
15481 python-mode-abbrev-table.
15482 (python-skeleton-define): Adjust accordingly.
15483 (python-mode-abbrev-table): New table that inherits from it so that
15484 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
15485
15486 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
15487 (abbrev-symbol): Use it.
15488 (abbrev--before-point): Use it since we already handle inheritance.
15489
15490 2013-04-16 Leo Liu <sdl.web@gmail.com>
15491
15492 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
15493 binding to info-lookup-symbol.
15494
15495 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
15496
15497 * minibuffer.el (completion--twq-all):
15498 * term/ns-win.el (ns-initialize-window-system):
15499 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
15500
15501 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15502
15503 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
15504 global bindings.
15505
15506 * doc-view.el (doc-view-start-process): Handle url-handler directories.
15507
15508 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
15509
15510 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
15511 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
15512 to nil.
15513 (ruby-end-of-defun): Remove the unused arg, change the docstring
15514 to reflect that this function is only used as the value of
15515 `end-of-defun-function'.
15516 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
15517 to reflect an earlier change that beginning/end-of-defun functions
15518 jump between methods in a class definition, as well as top-level
15519 functions.
15520
15521 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15522
15523 * minibuffer.el (minibuffer-complete): Don't just scroll
15524 a *Completions* that's been iconified.
15525 (minibuffer-force-complete): Make sure repetitions do cycle when going
15526 through completion-in-region -> minibuffer-complete.
15527
15528 2013-04-15 Alan Mackenzie <acm@muc.de>
15529
15530 Correct the placement of c-cpp-delimiters when there're #s not at
15531 col 0.
15532
15533 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
15534 place a submatch around the #.
15535 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
15536 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
15537 on the #, not BOL.
15538
15539 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15540
15541 * emacs-lisp/nadvice.el: Properly test names when adding advice.
15542 (advice--member-p): New arg `name'.
15543 (advice--add-function, advice-member-p): Use it (bug#14202).
15544
15545 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
15546
15547 Reformulate java imenu-generic-expression.
15548 The old expression contained ill formed regexps.
15549
15550 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
15551 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
15552 (cc-imenu-java-method-arg-regexp): New defconsts.
15553 (cc-imenu-java-build-type-args-regex): New defun.
15554 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
15555 handling of spaces in the regexp.
15556
15557 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
15558
15559 * textmodes/ispell.el (ispell-command-loop): Remove
15560 flyspell highlight of a word when ispell accepts it (bug #14178).
15561
15562 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
15563
15564 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
15565 uses code from the previous `ange-ftp-run-real-handler'.
15566 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
15567 only in case that function exist. This is needed for proper
15568 unloading of Tramp.
15569
15570 2013-04-15 Tassilo Horn <tsdh@gnu.org>
15571
15572 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
15573
15574 * textmodes/reftex.el (reftex-compile-variables): Use it.
15575
15576 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15577
15578 * files.el (normal-mode): Only use default major-mode if no other mode
15579 was specified.
15580
15581 * emacs-lisp/trace.el (trace-values): New function.
15582
15583 * files.el: Allow : in local variables (bug#14089).
15584 (hack-local-variable-regexp): New var.
15585 (hack-local-variables-prop-line, hack-local-variables): Use it.
15586
15587 2013-04-13 Roland Winkler <winkler@gnu.org>
15588
15589 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
15590 data before it gets modified by bibtex-beginning-of-entry.
15591
15592 2013-04-13 Roland Winkler <winkler@gnu.org>
15593
15594 * textmodes/bibtex.el (bibtex-url): Doc fix.
15595
15596 2013-04-13 Roland Winkler <winkler@gnu.org>
15597
15598 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
15599 does not visit a BibTeX file, exclude it from the list of buffers
15600 returned by bibtex-initialize.
15601
15602 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
15603
15604 * window.el (split-window): Remove interactive form, since as a
15605 command this function is a special case of split-window-below.
15606 Correct doc string.
15607
15608 2013-04-12 Roland Winkler <winkler@gnu.org>
15609
15610 * faces.el (read-face-name): Do not override value of arg default.
15611 Allow single faces and strings as default values. Remove those
15612 elements from return value that are not faces.
15613 (describe-face): Simplify.
15614 (face-at-point): New optional args thing and multiple so that this
15615 function can provide the same functionality previously provided by
15616 read-face-name.
15617 (make-face-bold, make-face-unbold, make-face-italic)
15618 (make-face-unitalic, make-face-bold-italic, invert-face)
15619 (modify-face, read-face-and-attribute): Use face-at-point.
15620
15621 * cus-edit.el (customize-face, customize-face-other-window)
15622 * cus-theme.el (custom-theme-add-face)
15623 * face-remap.el (buffer-face-set)
15624 * facemenu.el (facemenu-set-face): Use face-at-point.
15625
15626 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
15627
15628 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
15629
15630 2013-04-10 Tassilo Horn <tsdh@gnu.org>
15631
15632 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
15633 off leading { and trailing } from field values.
15634
15635 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
15636
15637 * emacs-lisp/timer.el (timer--check): New function.
15638 (timer--time, timer-set-function, timer-event-handler): Use it.
15639 (timer-set-idle-time): Simplify.
15640 (timer--activate): CSE.
15641 (timer-event-handler): Give more info in error message.
15642 (internal-timer-start-idle): New function, moved from C.
15643
15644 * mpc.el (mpc-proc): Add `restart' argument.
15645 (mpc-proc-cmd): Use it.
15646 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
15647 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
15648 less often.
15649
15650 2013-04-10 Masatake YAMATO <yamato@redhat.com>
15651
15652 * progmodes/sh-script.el: Implement `sh-mode' own
15653 `add-log-current-defun-function' (bug#14112).
15654 (sh-current-defun-name): New function.
15655 (sh-mode): Use the function.
15656
15657 2013-04-09 Bastien Guerry <bzg@gnu.org>
15658
15659 * simple.el (choose-completion-string): Fix docstring (bug#14163).
15660
15661 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
15662
15663 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
15664
15665 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
15666 timer (bug#14156).
15667
15668 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
15669
15670 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
15671 declaration.
15672
15673 2013-04-07 Leo Liu <sdl.web@gmail.com>
15674
15675 * pcmpl-x.el: New file.
15676
15677 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
15678
15679 Do not set x-display-name until X connection is established.
15680 This is needed to prevent from weird situation described at
15681 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
15682 * frame.el (make-frame): Set x-display-name after call to
15683 window system initialization function, not before.
15684 * term/x-win.el (x-initialize-window-system): Add optional
15685 display argument and use it.
15686 * term/w32-win.el (w32-initialize-window-system):
15687 * term/ns-win.el (ns-initialize-window-system):
15688 * term/pc-win.el (msdos-initialize-window-system):
15689 Add compatible optional display argument.
15690
15691 2013-04-06 Eli Zaretskii <eliz@gnu.org>
15692
15693 * files.el (normal-backup-enable-predicate): On MS-Windows and
15694 MS-DOS compare truenames of temporary-file-directory and of the
15695 file, so that 8+3 aliases (usually found in $TEMP on Windows)
15696 don't fail comparison by compare-strings. Also, compare file
15697 names case-insensitively on MS-Windows and MS-DOS.
15698
15699 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
15700
15701 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
15702 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
15703
15704 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
15705
15706 * whitespace.el (whitespace-color-on, whitespace-color-off):
15707 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
15708
15709 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
15710
15711 * ispell.el (ispell-set-spellchecker-params):
15712 Really set `ispell-args' for all equivs.
15713
15714 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
15715
15716 * ido.el (ido-completions): Use extra elements of ido-decorations
15717 (bug#14143).
15718 (ido-decorations): Update docstring.
15719
15720 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
15721
15722 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
15723 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
15724 nil during initialization, in order not to miss changes since the
15725 file was opened. (Bug#14140)
15726
15727 2013-04-05 Leo Liu <sdl.web@gmail.com>
15728
15729 * kmacro.el (kmacro-call-macro): Fix bug#14135.
15730
15731 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
15732
15733 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
15734
15735 2013-04-04 Glenn Morris <rgm@gnu.org>
15736
15737 * electric.el (electric-pair-inhibit-predicate): Add :version.
15738
15739 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
15740
15741 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
15742 when a package is required several times (bug#14082).
15743
15744 2013-04-04 Roland Winkler <winkler@gnu.org>
15745
15746 * faces.el (read-face-name): Behave as promised by the docstring.
15747 Assume that arg default is a list of faces.
15748 (describe-face): Call read-face-name with list of default faces.
15749
15750 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15751
15752 * bookmark.el: Fix deletion of bookmarks (bug#13972).
15753 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
15754 (bookmark-bmenu-execute-deletions): Only skip first line if it's
15755 the header.
15756 (bookmark-exit-hook-internal): Save even if list is empty.
15757
15758 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
15759
15760 * emacs-lisp/package.el (package-pinned-packages): New var.
15761 (package--add-to-archive-contents): Obey it (bug#14118).
15762
15763 2013-04-03 Alan Mackenzie <acm@muc.de>
15764
15765 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
15766 Also adapt to the new values of element 7 of a parse state.
15767
15768 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
15769 parameter `not-in-delimiter'. Handle being inside comment opener.
15770 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
15771 character in case we're typing a '*' after a '/'.
15772 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
15773 instead by passing the parameter to c-state-pp-to-literal.
15774
15775 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
15776 for elt. 7 of a parse state.
15777
15778 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
15779
15780 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
15781 * international/latin1-disp.el, international/mule-util.el:
15782 * language/cyril-util.el, language/european.el, language/ind-util.el:
15783 * language/lao-util.el, language/thai.el, language/tibet-util.el:
15784 * language/tibetan.el, language/viet-util.el:
15785 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
15786
15787 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15788
15789 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
15790 (electric-pair-post-self-insert-function): Use it.
15791 (electric-pair-default-inhibit): New function, extracted from
15792 electric-pair-post-self-insert-function.
15793
15794 2013-03-31 Roland Winkler <winkler@gnu.org>
15795
15796 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
15797
15798 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15799
15800 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
15801
15802 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
15803
15804 Un-indent after "pass" and "return" statements (Bug#13888)
15805 * progmodes/python.el (python-indent-block-enders): New var.
15806 (python-indent-calculate-indentation): Use it.
15807
15808 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
15809
15810 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
15811 defun. Defining it as defalias could introduce too eager
15812 byte-compiler optimization. (Bug#14030)
15813
15814 2013-03-30 Chong Yidong <cyd@gnu.org>
15815
15816 * iswitchb.el (iswitchb-read-buffer): Fix typo.
15817
15818 2013-03-30 Leo Liu <sdl.web@gmail.com>
15819
15820 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
15821 (kmacro-execute-from-register): Pass the keyboard macro to
15822 kmacro-call-macro or repeating won't work correctly.
15823
15824 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
15825
15826 * progmodes/subword.el: Back to using `forward-symbol'.
15827
15828 * subr.el (forward-whitespace, forward-symbol)
15829 (forward-same-syntax): Move from thingatpt.el.
15830
15831 2013-03-29 Leo Liu <sdl.web@gmail.com>
15832
15833 * kmacro.el (kmacro-to-register): New command.
15834 (kmacro-execute-from-register): New function.
15835 (kmacro-keymap): Bind to 'x'. (Bug#14071)
15836
15837 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
15838
15839 * mpc.el: Use defvar-local and setq-local.
15840 (mpc--proc-connect): Connection failures are not bugs.
15841 (mpc-mode-map): `follow-link' only applies to the buffer's content.
15842 (mpc-volume-map): Bind to the up-events.
15843
15844 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
15845
15846 * progmodes/subword.el (superword-mode): Use `forward-sexp'
15847 instead of `forward-symbol'.
15848
15849 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
15850
15851 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
15852 (edebug--recursive-edit): Use it.
15853 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
15854 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
15855
15856 2013-03-28 Leo Liu <sdl.web@gmail.com>
15857
15858 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
15859
15860 2013-03-27 Eli Zaretskii <eliz@gnu.org>
15861
15862 * facemenu.el (list-colors-callback): New defvar.
15863 (list-colors-redisplay): New function.
15864 (list-colors-display): Install list-colors-redisplay as the
15865 revert-buffer-function. (Bug#14063)
15866
15867 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
15868
15869 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
15870 and suffixes don't overlap (bug#14061).
15871
15872 * case-table.el: Use lexical-binding.
15873 (case-table-get-table): New function.
15874 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
15875
15876 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
15877
15878 * progmodes/subword.el: Add `superword-mode' to do word motion
15879 over symbol_words (parallels and leverages `subword-mode' which
15880 does word motion inside MixedCaseWords).
15881
15882 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
15883
15884 * eshell/em-unix.el: Move su and sudo to...
15885 * eshell/em-tramp.el: ...Eshell tramp module.
15886
15887 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15888
15889 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
15890 Change return value to be a sexp. Delay `get-buffer' to after
15891 restoring the desktop (bug#13951).
15892
15893 2013-03-26 Leo Liu <sdl.web@gmail.com>
15894
15895 * register.el: Move semantic tag handling back to
15896 cedet/semantic/senator.el. (Bug#14052)
15897
15898 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
15899
15900 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
15901 into the prompt either (bug#13963).
15902
15903 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
15904
15905 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
15906 part of "(error-foo)".
15907
15908 2013-03-24 Juri Linkov <juri@jurta.org>
15909
15910 * replace.el (list-matching-lines-prefix-face): New defcustom.
15911 (occur-1): Pass `list-matching-lines-prefix-face' to the function
15912 `occur-engine' if `face-differs-from-default-p' returns t.
15913 (occur-engine): Add `,' inside backquote construct to evaluate
15914 `prefix-face'. Propertize the prefix with the `prefix-face' face.
15915 Pass `prefix-face' to the functions `occur-context-lines' and
15916 `occur-engine-add-prefix'.
15917 (occur-engine-add-prefix, occur-context-lines): Add optional arg
15918 `prefix-face' and propertize the prefix with `prefix-face'.
15919 (Bug#14017)
15920
15921 2013-03-24 Leo Liu <sdl.web@gmail.com>
15922
15923 * nxml/rng-valid.el (rng-validate-while-idle)
15924 (rng-validate-quick-while-idle): Guard against deleted buffer.
15925 (Bug#13999)
15926
15927 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
15928 is the last entry in kill-buffer-hook.
15929
15930 * files.el (kill-buffer-hook): Doc fix.
15931
15932 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
15933
15934 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
15935 Make it safe-local.
15936
15937 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
15938
15939 2013-03-23 Leo Liu <sdl.web@gmail.com>
15940
15941 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
15942 Remove.
15943
15944 * nxml/rng-valid.el (rng-validate-mode)
15945 (rng-after-change-function, rng-do-some-validation):
15946 * nxml/rng-maint.el (rng-validate-buffer):
15947 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
15948 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
15949 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
15950 (nxml-extend-after-change-region): Use with-silent-modifications.
15951
15952 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
15953 timer-idle-list.
15954
15955 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
15956 (rng-next-error-1, rng-previous-error-1): Do not let-bind
15957 timer-idle-list. (Bug#13999)
15958
15959 2013-03-23 Juri Linkov <juri@jurta.org>
15960
15961 * info.el (info-index-match): New face.
15962 (Info-index, Info-apropos-matches): Add a nested subgroup to the
15963 main pattern and add text properties with the new face to matches
15964 in index entries relative to the beginning of the index entry.
15965 (Bug#14015)
15966
15967 2013-03-21 Eric Ludlam <zappo@gnu.org>
15968
15969 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
15970 Inhibit read only while inserting objects.
15971
15972 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
15973
15974 * progmodes/cfengine.el: Update docs to mention
15975 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
15976 symbol motion. Remove "_" from the word syntax.
15977
15978 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
15979
15980 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
15981 syntax for both `cfengine2-mode' and `cfengine3-mode'.
15982
15983 2013-03-20 Juri Linkov <juri@jurta.org>
15984
15985 * info.el (Info-next-reference-or-link)
15986 (Info-prev-reference-or-link): New functions.
15987 (Info-next-reference, Info-prev-reference): Use them.
15988 (Info-try-follow-nearest-node): Handle footnote navigation.
15989 (Info-fontify-node): Fontify footnotes. (Bug#13989)
15990
15991 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
15992
15993 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
15994 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
15995
15996 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
15997
15998 Suppress unnecessary non-ASCII chatter during build process.
15999 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
16000 (batch-skkdic-convert): Suppress most of the chatter.
16001 It's not needed so much now that machines are faster,
16002 and its non-ASCII component was confusing; see Dmitry Gutov in
16003 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
16004
16005 2013-03-20 Leo Liu <sdl.web@gmail.com>
16006
16007 * ido.el (ido-chop): Fix bug#10994.
16008
16009 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16010
16011 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
16012 Remove vars.
16013 (whitespace-color-on, whitespace-color-off):
16014 Use `font-lock-fontify-buffer' (Bug#13817).
16015
16016 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
16017
16018 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
16019 remapping in mode-line.
16020 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
16021
16022 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
16023
16024 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
16025 value for `whitespace-line' face (Bug#13875).
16026 (whitespace-font-lock-keywords): Change description.
16027 (whitespace-color-on): Don't save `font-lock-keywords' value, save
16028 the constructed keywords instead.
16029 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
16030
16031 2013-03-19 Leo Liu <sdl.web@gmail.com>
16032
16033 * progmodes/compile.el (compilation-display-error): New command.
16034 (compilation-mode-map, compilation-minor-mode-map): Bind it to
16035 C-o. (Bug#13992)
16036
16037 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16038
16039 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
16040
16041 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
16042
16043 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
16044
16045 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
16046
16047 * net/tramp-compat.el (tramp-compat-user-error): New defun.
16048
16049 * net/tramp-adb.el (tramp-adb-handle-shell-command):
16050 * net/tramp-gvfs.el (top):
16051 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
16052 (tramp-handle-shell-command): Use it.
16053 (tramp-dissect-file-name): Raise an error when hostname is a
16054 method name, and neither method nor user is specified.
16055
16056 * net/trampver.el: Update release number.
16057
16058 2013-03-18 Leo Liu <sdl.web@gmail.com>
16059
16060 Make sure eldoc can be turned off properly.
16061 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
16062 eldoc-mode.
16063 (eldoc-display-message-p): Revert last change.
16064 (eldoc-display-message-no-interference-p)
16065 (eldoc-print-current-symbol-info): Tweak.
16066
16067 2013-03-18 Tassilo Horn <tsdh@gnu.org>
16068
16069 * doc-view.el (doc-view-new-window-function): Check the new window
16070 overlay's display property instead the char property of the
16071 buffer's first char. Use `with-selected-window' instead of
16072 `save-window-excursion' with `select-window'.
16073 (doc-view-document->bitmap): Check the current doc-view overlay's
16074 display property instead the char property of the buffer's first char.
16075
16076 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
16077
16078 Automate the build of ja-dic.el (Bug#13984).
16079 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
16080 from the input, rather than assume that it's been done for us by the
16081 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
16082 the current date into a ja-dic.el comment, as that complicates
16083 regression testing.
16084
16085 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16086
16087 * whitespace.el: Fix double evaluation.
16088 (whitespace-space, whitespace-hspace, whitespace-tab)
16089 (whitespace-newline, whitespace-trailing, whitespace-line)
16090 (whitespace-space-before-tab, whitespace-indentation)
16091 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
16092 obsolete defvars.
16093 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
16094 (whitespace-color-on): Use a single font-lock-add-keywords call.
16095 Fix double-evaluation of face variables.
16096
16097 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
16098
16099 * net/tramp-adb.el (tramp-adb-parse-device-names):
16100 Use `start-process' instead of `call-process'. Otherwise, the
16101 function might be blocked under MS Windows. (Bug#13299)
16102
16103 2013-03-17 Leo Liu <sdl.web@gmail.com>
16104
16105 Extend eldoc to display info in the mode-line. (Bug#13978)
16106 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
16107 (eldoc-mode-line-string): New variable.
16108 (eldoc-minibuffer-message): New function.
16109 (eldoc-message-function): New variable.
16110 (eldoc-message): Use it.
16111 (eldoc-display-message-p)
16112 (eldoc-display-message-no-interference-p):
16113 Support eldoc-post-insert-mode.
16114
16115 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
16116 (eval-expression): Run it.
16117
16118 2013-03-17 Roland Winkler <winkler@gnu.org>
16119
16120 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
16121 strings in the list of return values.
16122
16123 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16124
16125 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
16126 radix before checking for HMS forms.
16127
16128 2013-03-16 Leo Liu <sdl.web@gmail.com>
16129
16130 * progmodes/scheme.el: Add indentation and font-locking for λ.
16131 (Bug#13975)
16132
16133 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16134
16135 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
16136 token before point (bug#13942).
16137
16138 2013-03-16 Leo Liu <sdl.web@gmail.com>
16139
16140 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
16141
16142 2013-03-16 Eli Zaretskii <eliz@gnu.org>
16143
16144 * startup.el (command-line-normalize-file-name): Fix handling of
16145 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
16146 <xfq.free@gmail.com> in
16147 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
16148
16149 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
16150
16151 Sync with Tramp 2.2.7.
16152
16153 * net/trampver.el: Update release number.
16154
16155 2013-03-14 Tassilo Horn <tsdh@gnu.org>
16156
16157 * doc-view.el: Fix bug#13887.
16158 (doc-view-insert-image): Don't modify overlay associated to
16159 non-live windows, and implement horizontal centering of image in
16160 case it's smaller than the window.
16161 (doc-view-new-window-function): Force redisplay of new windows on
16162 doc-view buffers.
16163
16164 2013-03-13 Karl Fogel <kfogel@red-bean.com>
16165
16166 * saveplace.el (save-place-alist-to-file): Don't sort
16167 `save-place-alist', just pretty-print it (bug#13882).
16168
16169 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
16170
16171 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
16172 Check whether `default-file-name-coding-system' is bound.
16173 It isn't in XEmacs.
16174
16175 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
16176
16177 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
16178 backquotes for `obsolete' (bug#13929).
16179
16180 * international/mule.el (find-auto-coding): Include file name in
16181 obsolescence warning (bug#13922).
16182
16183 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
16184
16185 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
16186 for CFEngine 3-specific indentation.
16187 (cfengine3-indent-line): Use it. Fix up category regex.
16188 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
16189
16190 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16191
16192 * type-break.el (type-break-file-name):
16193 * textmodes/remember.el (remember-data-file):
16194 * strokes.el (strokes-file):
16195 * shadowfile.el (shadow-initialize):
16196 * saveplace.el (save-place-file):
16197 * ps-bdf.el (bdf-cache-file):
16198 * progmodes/idlwave.el (idlwave-config-directory):
16199 * net/quickurl.el (quickurl-url-file):
16200 * international/kkc.el (kkc-init-file-name):
16201 * ido.el (ido-save-directory-list-file):
16202 * emulation/viper.el (viper-custom-file-name):
16203 * emulation/vip.el (vip-startup-file):
16204 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
16205 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
16206
16207 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
16208
16209 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
16210 * language/thai-word.el: Switch to UTF-8.
16211
16212 See ChangeLog.16 for earlier changes.
16213
16214 ;; Local Variables:
16215 ;; coding: utf-8
16216 ;; End:
16217
16218 Copyright (C) 2011-2014 Free Software Foundation, Inc.
16219
16220 This file is part of GNU Emacs.
16221
16222 GNU Emacs is free software: you can redistribute it and/or modify
16223 it under the terms of the GNU General Public License as published by
16224 the Free Software Foundation, either version 3 of the License, or
16225 (at your option) any later version.
16226
16227 GNU Emacs is distributed in the hope that it will be useful,
16228 but WITHOUT ANY WARRANTY; without even the implied warranty of
16229 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16230 GNU General Public License for more details.
16231
16232 You should have received a copy of the GNU General Public License
16233 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.