]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
aa17b9328c42fc6396ec0239a62d26cd6bb28f1d
[gnu-emacs] / lisp / ChangeLog
1 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2
3 * frame.el (x-focus-frame): Mark as declared in frame.c.
4
5 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
6
7 * ls-lisp.el: Use advice-add.
8 (original-insert-directory): Remove.
9 (ls-lisp--insert-directory): Rename from insert-directory; add
10 `orig-fun' argument.
11 (insert-directory): Advise.
12
13 2013-09-13 Eli Zaretskii <eliz@gnu.org>
14
15 * term.el (term-emulate-terminal): Decode the command string
16 before passing it to term-command-hook. (Bug#15337)
17
18 2013-09-13 Glenn Morris <rgm@gnu.org>
19
20 * eshell/esh-util.el (ange-cache): Move declaration earlier.
21
22 * eshell/esh-ext.el (eshell-search-path): Declare.
23
24 * eshell/em-prompt.el (eshell/pwd): Autoload it.
25 Otherwise an error occurs if eshell-dirs module not loaded.
26
27 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
28
29 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
30
31 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
32 `tramp-check-proper-host'. Check for a valid method name.
33
34 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
35 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
36 * net/tramp-sh.el (tramp-maybe-open-connection):
37 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
38
39 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
40 also for hash values.
41
42 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
43
44 * term/ns-win.el (parameters): Don't declare as dynamic.
45 (before-make-frame-hook): Don't add ineffective function.
46
47 * eshell/*.el: Use lexical-binding (bug#15231).
48
49 2013-09-12 Kenichi Handa <handa@gnu.org>
50
51 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
52
53 2013-09-12 Glenn Morris <rgm@gnu.org>
54
55 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
56 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
57
58 * subr.el (do-after-load-evaluation): Also give compiler warnings
59 when obsolete files are used (except by obsolete files).
60
61 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
62 in the status output, assume `filename' is the first. (Bug#15322)
63
64 * vc/vc.el (vc-deduce-fileset): Doc fix.
65
66 * calc/calc-help.el (Info-goto-node):
67 * progmodes/cperl-mode.el (Info-find-node):
68 * vc/ediff.el (Info-goto-node): Update declarations.
69
70 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
71
72 * vc/vc-bzr.el (vc-compilation-mode): Declare.
73 (vc-bzr-pull): Require vc-dispatcher.
74 * vc/vc-git.el (vc-compilation-mode): Declare.
75 (vc-git-pull): Require vc-dispatcher.
76
77 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
78
79 * progmodes/octave.el (help-button-action): Declare.
80
81 * shell.el (shell-directory-tracker): Output error as a message
82 rather than just returning it as a string.
83 (shell-process-pushd): Remove useless use of message.
84
85 * dframe.el (dframe-timer-fn):
86 * files.el (dir-locals-read-from-file):
87 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
88 (mpc-format):
89 * reveal.el (reveal-post-command):
90 * saveplace.el (load-save-place-alist-from-file):
91 * shell.el (shell-resync-dirs):
92 * w32-common-fns.el (x-get-selection-value):
93 * emacs-lisp/copyright.el (copyright-find-copyright):
94 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
95 * emulation/tpu-edt.el (tpu-copy-keyfile):
96 * play/bubbles.el (bubbles--mark-neighbourhood):
97 * progmodes/executable.el
98 (executable-make-buffer-file-executable-if-script-p):
99 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
100
101 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
102
103 Cleanup Eshell to rely less on dynamic scoping.
104 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
105 last-value, and ext-command here. Bind `args' closer to `body'.
106 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
107 (eshell--args): Declare new dynamic var.
108 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
109 last-value, and ext-command. Pass `args' to `body'.
110 (eshell-process-args): Bind eshell--args.
111 (eshell-set-option): Use eshell--args.
112 * eshell/eshell.el (eshell): Use derived-mode-p.
113 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
114 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
115 (eshell-glob-function): Declare.
116 * eshell/esh-util.el: Require cl-lib.
117 (eshell-read-hosts-file): Avoid add-to-list.
118 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
119 `err'.
120 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
121 Declare.
122 (eshell/diff): Remove unused var `err'.
123 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
124 `killflag'.
125 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
126 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
127 first use.
128 * eshell/em-glob.el (eshell-glob-matches, message-shown):
129 Move declaration before first use.
130 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
131 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
132 rely on cl-return.
133
134 2013-09-12 Glenn Morris <rgm@gnu.org>
135
136 * term/ns-win.el (global-map): Remove binding for ispell-next,
137 deleted 1999-05-29. (Bug#15357)
138
139 2013-09-11 Glenn Morris <rgm@gnu.org>
140
141 * echistory.el (electric-command-history): Remove call to deleted func.
142
143 * play/landmark.el (landmark-mode): Fix typos.
144
145 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
146 Check cvs-sort-ignore-file is bound.
147
148 * savehist.el: No need for cl when compiling on Emacs.
149
150 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
151
152 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
153 (bug#15338).
154 (eshell-self-insert-command, eshell-send-invisible):
155 Remove unused argument.
156 (eshell-handle-control-codes): Remove unused var `orig'.
157 Avoid delete-backward-char.
158
159 * files.el (set-auto-mode): Simplify a bit further.
160
161 2013-09-11 Glenn Morris <rgm@gnu.org>
162
163 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
164 (set-auto-mode): Don't regexp-quote elements.
165 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
166 * progmodes/cc-mode.el (interpreter-mode-alist):
167 * progmodes/ruby-mode.el (interpreter-mode-alist):
168 Revert previous change.
169
170 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
171
172 * play/snake.el (snake-mode):
173 * play/mpuz.el (mpuz-mode):
174 * play/landmark.el (lm-mode):
175 * play/blackbox.el (blackbox-mode):
176 * play/5x5.el (5x5-mode):
177 * obsolete/options.el (Edit-options-mode):
178 * net/quickurl.el (quickurl-list-mode):
179 * net/newst-treeview.el (newsticker-treeview-mode):
180 * mail/rmailsum.el (rmail-summary-mode):
181 * mail/mspools.el (mspools-mode):
182 * locate.el (locate-mode):
183 * ibuffer.el (ibuffer-mode):
184 * emulation/ws-mode.el (wordstar-mode):
185 * emacs-lisp/debug.el (debugger-mode):
186 * array.el (array-mode):
187 * net/eudc.el (eudc-mode): Use define-derived-mode.
188 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
189 Move initialization into declaration.
190 (mairix-searches-mode): Use define-derived-mode.
191 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
192 (eudc-edit-hotlist): Use dolist.
193 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
194 (Man-mode): Use define-derived-mode.
195 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
196 (Info-edit-mode): Use define-derived-mode.
197 (Info-cease-edit): Use Info-mode.
198 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
199 into declaration.
200 (eshell-mode): Use define-derived-mode.
201 * chistory.el (command-history-mode-map): Rename from
202 command-history-map.
203 (command-history-mode): Use define-derived-mode.
204 (Command-history-setup): Remove function.
205 * calc/calc.el (calc-trail-mode-map): New var.
206 (calc-trail-mode): Use define-derived-mode.
207 (calc-trail-buffer): Set calc-main-buffer manually.
208 * bookmark.el (bookmark-insert-annotation): New function.
209 (bookmark-edit-annotation): Use it.
210 (bookmark-edit-annotation-mode): Make it a proper major mode.
211 (bookmark-send-edited-annotation): Use derived-mode-p.
212 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
213 closer to its ideal place. Use \' to match EOS.
214
215 * profiler.el (profiler-calltree-find): Use function-equal.
216
217 2013-09-10 Glenn Morris <rgm@gnu.org>
218
219 * files.el (interpreter-mode-alist): Convert to regexps.
220 (set-auto-mode): Adapt for this. (Bug#15306)
221 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
222 Comment out unused variable.
223 * progmodes/cc-mode.el (interpreter-mode-alist):
224 * progmodes/python.el (interpreter-mode-alist):
225 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
226 * progmodes/sh-script.el (sh-set-shell):
227 No longer use interpreter-mode-alist to get list of shells.
228
229 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
230
231 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
232
233 * simple.el: Use set-temporary-overlay-map for universal-argument.
234 (universal-argument-map): Don't use default-bindings (bug#15317).
235 Bind switch-frame explicitly. Replace universal-argument-minus with
236 a conditional binding.
237 (universal-argument-num-events, saved-overriding-map): Remove.
238 (restore-overriding-map): Remove.
239 (universal-argument--mode): Rename from save&set-overriding-map,
240 and rewrite.
241 (universal-argument, universal-argument-more, negative-argument)
242 (digit-argument): Adjust accordingly.
243 (universal-argument-minus): Remove.
244 (universal-argument-other-key): Remove.
245
246 * subr.el (with-demoted-errors): Add `format' argument.
247
248 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
249
250 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
251 `tramp-cleanup-connection'.
252
253 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
254 parameters KEEP-DEBUG and KEEP-PASSWORD.
255
256 * net/tramp.el (tramp-file-name-handler):
257 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
258 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
259 (tramp-maybe-open-connection):
260 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
261 Use `tramp-cleanup-connection'.
262
263 * net/tramp-sh.el (tramp-maybe-open-connection):
264 Catch 'uname-changed inside the progress reporter.
265
266 2013-09-10 Glenn Morris <rgm@gnu.org>
267
268 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
269
270 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
271 returns "alternate access method" in mode (eg "-rw-r--r--.").
272
273 2013-09-08 Glenn Morris <rgm@gnu.org>
274
275 * saveplace.el (load-save-place-alist-from-file):
276 Demote errors. (Bug#15305)
277
278 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
279
280 Improve compatibility with older Emacsen, and XEmacs.
281
282 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
283 only if it is bound. It isn't for XEmacs.
284 (with-tramp-progress-reporter): Do not let-bind `result'.
285 This yields to scoping errors in XEmacs.
286 (tramp-handle-make-auto-save-file-name): New function, moved from
287 tramp-sh.el.
288
289 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
290 for `make-auto-save-file-name'.
291 (tramp-adb--gnu-switches-to-ash):
292 Use `tramp-compat-replace-regexp-in-string'.
293
294 * net/tramp-cache.el (tramp-cache-print): Call
295 `substring-no-properties' only if it is bound. It isn't for XEmacs.
296
297 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
298 bound. It isn't for XEmacs.
299
300 * net/tramp-compat.el (tramp-compat-copy-file):
301 Catch `wrong-number-of-arguments' error.
302 (tramp-compat-replace-regexp-in-string): New defun.
303
304 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
305 for `make-auto-save-file-name'.
306 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
307 `copy-file'.
308 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
309 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
310 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
311
312 * net/tramp-gw.el (tramp-gw-open-network-stream):
313 Use `tramp-compat-replace-regexp-in-string'.
314
315 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
316 Call `tramp-handle-make-auto-save-file-name'.
317 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
318 (tramp-sh-file-gvfs-monitor-dir-process-filter)
319 (tramp-sh-file-inotifywait-process-filter):
320 Use `tramp-compat-replace-regexp-in-string'.
321 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
322
323 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
324 for `make-auto-save-file-name'.
325 (tramp-smb-handle-copy-directory):
326 Call `tramp-compat-replace-regexp-in-string'.
327 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
328 (tramp-smb-handle-copy-file): Improve error message.
329 (tramp-smb-handle-rename-file): Rename directly only in case
330 `newname' does not exist yet. This is a restriction of smbclient.
331 (tramp-smb-maybe-open-connection): Rerun the function only when
332 `auth-sources' is non-nil.
333
334 2013-09-08 Kenichi Handa <handa@gnu.org>
335
336 * international/characters.el: Set category "^" (Combining) for
337 more characters.
338
339 2013-09-07 Alan Mackenzie <acm@muc.de>
340
341 Correctly fontify Java class constructors.
342 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
343 in Java Mode.
344 (c-recognize-typeless-decls): Set the Java value to t.
345 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
346 While handling a "(", add a check for, effectively, Java, and handle a
347 "typeless" declaration there.
348
349 2013-09-07 Roland Winkler <winkler@gnu.org>
350
351 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
352 field subtitle for entry type book.
353
354 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
355
356 * minibuffer.el: Make minibuffer-complete call completion-in-region
357 rather than other way around.
358 (completion--some, completion-pcm--find-all-completions):
359 Don't delay signals when debugging.
360 (minibuffer-completion-contents): Beware fields within the
361 minibuffer contents.
362 (completion-all-sorted-completions): Use defvar-local.
363 (completion--do-completion, completion--cache-all-sorted-completions)
364 (completion-all-sorted-completions, minibuffer-force-complete):
365 Add args `beg' and `end'.
366 (completion--in-region-1): New fun, extracted from minibuffer-complete.
367 (minibuffer-complete): Use completion-in-region.
368 (completion-complete-and-exit): New fun, extracted from
369 minibuffer-complete-and-exit.
370 (minibuffer-complete-and-exit): Use it.
371 (completion--complete-and-exit): Rename from
372 minibuffer--complete-and-exit.
373 (completion-in-region--single-word): New function, extracted from
374 minibuffer-complete-word.
375 (minibuffer-complete-word): Use it.
376 (display-completion-list): Make `common-substring' argument obsolete.
377 (completion--in-region): Call completion--in-region-1 instead of
378 minibuffer-complete.
379 (completion-help-at-point): Pass boundaries to
380 minibuffer-completion-help as args rather than via an overlay.
381 (completion-pcm--string->pattern): Use `any-delim'.
382 (completion-pcm--optimize-pattern): New function.
383 (completion-pcm--pattern->regex): Handle `any-delim'.
384 * icomplete.el (icomplete-forward-completions)
385 (icomplete-backward-completions, icomplete-completions):
386 Adjust calls to completion-all-sorted-completions and
387 completion--cache-all-sorted-completions.
388 (icomplete-with-completion-tables): Default to t.
389 * emacs-lisp/crm.el (crm--current-element): Rename from
390 crm--select-current-element. Don't put an overlay but return the
391 boundaries instead.
392 (crm--completion-command): Take two new args to bind to the boundaries.
393 (crm-completion-help): Adjust accordingly.
394 (crm-complete): Use completion-in-region.
395 (crm-complete-word): Use completion-in-region--single-word.
396 (crm-complete-and-exit): Use completion-complete-and-exit.
397
398 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
399
400 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
401 than dynamically.
402
403 2013-09-06 Juri Linkov <juri@jurta.org>
404
405 * info.el (Info-display-images-node): When image file doesn't exist
406 display text version of the image if it's provided in the Info file.
407 Otherwise, display the location of missing image from SRC attribute.
408 Add help-echo text property from ALT attribute. (Bug#15279)
409
410 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
411
412 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
413 (edit-abbrevs-mode): Use define-derived-mode.
414
415 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
416 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
417 that it's defined.
418 (epa-key-list-mode, epa-key-mode, epa-info-mode):
419 Use define-derived-mode.
420
421 * epg.el (epg-start-encrypt): Minor CSE simplification.
422
423 2013-09-06 William Xu <william.xwl@gmail.com>
424
425 * arc-mode.el: Add support for 7za (bug#15264).
426 (archive-7z-program): New var.
427 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
428 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
429 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
430
431 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
432
433 Remove URL syntax.
434
435 * net/tramp.el (tramp-syntax, tramp-prefix-format)
436 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
437 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
438 (tramp-postfix-host-format, tramp-file-name-regexp)
439 (tramp-completion-file-name-regexp)
440 (tramp-completion-dissect-file-name)
441 (tramp-handle-substitute-in-file-name): Remove 'url case.
442 (tramp-file-name-regexp-url)
443 (tramp-completion-file-name-regexp-url): Remove constants.
444
445 2013-09-06 Glenn Morris <rgm@gnu.org>
446
447 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
448
449 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
450
451 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
452 keywords" below "here-doc beginnings" (Bug#15270).
453
454 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
455
456 * subr.el (pop): Use `car-safe'.
457 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
458 to detect unused `pop' return value.
459
460 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
461 var `block-regexp'.
462 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
463 (python-fill-string): Remove unused var `marker'.
464 (python-skeleton-add-menu-items): Remove unused var `items'.
465
466 * international/mule-cmds.el: Require CL.
467 (find-coding-systems-for-charsets): Avoid add-to-list.
468 (sanitize-coding-system-list): New function, extracted from
469 select-safe-coding-system-interactively.
470 (select-safe-coding-system-interactively): Use it.
471 (read-input-method-name): Accept symbols for `default'.
472
473 * emacs-lisp/advice.el (defadvice): Add indent rule.
474
475 2013-09-05 Daniel Hackney <dan@haxney.org>
476
477 * dired-x.el:
478 * net/ange-ftp.el:
479 * net/browse-url.el:
480 * net/dbus.el:
481 * net/eudc.el:
482 * net/eudcb-ldap.el:
483 * net/eww.el:
484 * net/imap.el:
485 * printing.el:
486 * vc/ediff-diff.el:
487 * vc/ediff-init.el:
488 * vc/ediff-merg.el:
489 * vc/ediff-mult.el:
490 * vc/ediff-util.el:
491 * vc/ediff-wind.el:
492 * vc/ediff.el:
493 * vc/emerge.el:
494 * vc/pcvs.el:
495 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
496 byte compiler. Remove some unused let-bound variables.
497
498 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
499
500 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
501 a "ref-cell", since it gets better optimized (bug#14883).
502
503 2013-09-05 Glenn Morris <rgm@gnu.org>
504
505 * progmodes/cc-awk.el (c-forward-sws): Declare.
506
507 2013-09-04 Glenn Morris <rgm@gnu.org>
508
509 * generic-x.el [rul-generic-mode]: Require cc-mode.
510 (c++-mode-syntax-table): Declare.
511 (rul-generic-mode-syntax-table): Init in the defvar.
512
513 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
514
515 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
516 (vc-do-command, vc-set-async-update):
517 * vc/vc-mtn.el (vc-mtn-dir-status):
518 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
519 (vc-hg-pull, vc-hg-merge-branch):
520 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
521 (vc-git-merge-branch):
522 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
523 (vc-cvs-dir-status-files):
524 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
525 (vc-bzr-dir-status-files):
526 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
527 * vc/vc-annotate.el: Use lexical-binding.
528 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
529 (vc-sentinel-movepoint): Declare.
530 (vc-annotate): Don't use `goto-line'.
531 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
532 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
533 (vc-sentinel-movepoint): Declare.
534 * vc/vc-svn.el: Use lexical-binding.
535 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
536 * vc/vc-sccs.el:
537 * vc/vc-rcs.el: Use lexical-binding.
538
539 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
540 `deleted'. Don't drop errors silently.
541
542 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
543
544 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
545
546 * vc/vc.el (vc-ignore): Rewrite.
547 (vc-default-ignore): New function.
548 (vc-default-ignore-completion-table): Use find-ignore-file.
549
550 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
551 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
552 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
553 Remove. Most code moved to vc.el.
554
555 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
556
557 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
558 * net/tramp-smb.el (tramp-smb-get-file-entries):
559 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
560 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
561
562 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
563 Update call to it.
564 (eww-change-select): Remove unused var `properties'.
565 (eww-make-unique-file-name): Remove unused var `base'.
566
567 * finder.el (finder-compile-keywords): Don't mess with windows.
568
569 * calculator.el (calculator-funcall): Fix typo in last change.
570
571 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
572
573 * emacs-lisp/package.el (package-activate-1): Don't let a missing
574 <pkg>-autoloads.el file stop us.
575
576 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
577 warnings, and factor out common code.
578
579 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
580
581 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
582 two-character operators and whether the character preceding them
583 changes their meaning (Bug#15208).
584
585 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
586
587 Format code sent to Python shell for robustness.
588 * progmodes/python.el (python-shell-buffer-substring):
589 New function.
590 (python-shell-send-region, python-shell-send-buffer): Use it.
591
592 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
593
594 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
595 * net/tramp.el (tramp-user-error): ... here.
596 (tramp-find-method, tramp-check-proper-host)
597 (tramp-dissect-file-name, tramp-debug-message)
598 (tramp-handle-shell-command):
599 * net/tramp-adb.el (tramp-adb-handle-shell-command):
600 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
601
602 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
603
604 2013-09-02 Martin Rudalics <rudalics@gmx.at>
605
606 * avoid.el (mouse-avoidance-point-position)
607 (mouse-avoidance-too-close-p): Handle case where posn-at-point
608 returns nil.
609
610 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
611
612 * progmodes/python.el (python-shell-completion-get-completions):
613 Drop use of deleted `comint-last-prompt-overlay'.
614 (python-nav-if-name-main): New command.
615
616 2013-09-01 Glenn Morris <rgm@gnu.org>
617
618 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
619 Avoid leading space in $wins. Otherwise the sed command used by
620 eg compile-main ends up containing "/*.el". (Bug#15170)
621
622 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
623
624 2013-08-30 Glenn Morris <rgm@gnu.org>
625
626 * emacs-lisp/bytecomp.el (byte-recompile-directory):
627 Fix is-this-a-directory logic. (Bug#15220)
628
629 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
630
631 * textmodes/css-mode.el: Use SMIE.
632 (css-smie-grammar): New var.
633 (css-smie--forward-token, css-smie--backward-token)
634 (css-smie-rules): New functions.
635 (css-mode): Use them.
636 (css-navigation-syntax-table): Remove var.
637 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
638 (css-indent-calculate, css-indent-line): Remove functions.
639
640 Misc changes to reduce use of `(lambda...); and other cleanups.
641 * cus-edit.el: Use lexical-binding.
642 (customize-push-and-save, customize-apropos)
643 (custom-buffer-create-internal): Use closures.
644 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
645 * progmodes/ada-xref.el: Use setq.
646 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
647 * dframe.el: Use lexical-binding.
648 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
649 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
650 * descr-text.el: Use lexical-binding.
651 (describe-text-widget, describe-text-sexp, describe-property-list):
652 Use closures.
653 * comint.el (comint-history-isearch-push-state): Use a closure.
654 * calculator.el: Use lexical-binding.
655 (calculator-number-to-string): Make it work with lexical-binding.
656 (calculator-funcall): Same and use cl-letf.
657
658 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
659 (lisp--company-doc-string, lisp--company-location): New functions.
660 (lisp-completion-at-point): Use them to improve Company support.
661
662 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
663 params of lambda expressions.
664 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
665 (ruby-smie--opening-pipe-p): New function.
666 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
667 symbols and matched |...| for formal params.
668 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
669 from being treated as hanging. Handle "rescue".
670
671 2013-08-29 Glenn Morris <rgm@gnu.org>
672
673 * progmodes/cc-engine.el (c-pull-open-brace):
674 Move definition before use.
675
676 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
677
678 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
679 are immutable. Don't use `unsafe' any more.
680 (cl--defsubst-expand): Don't substitute at the same time as keeping
681 a residual unused let-binding. Don't use `unsafe' any more.
682
683 2013-08-29 Glenn Morris <rgm@gnu.org>
684
685 * calendar/cal-china.el (calendar-chinese-year-cache):
686 Recenter on 2015.
687
688 * nxml/nxml-util.el (nxml-debug-clear-inside):
689 Use cl-loop rather than loop.
690
691 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
692
693 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
694
695 2013-08-28 Glenn Morris <rgm@gnu.org>
696
697 * progmodes/antlr-mode.el: No need to require cc-mode twice.
698
699 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
700
701 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
702
703 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
704
705 * simple.el (repeat-complex-command--called-interactively-skip):
706 New function.
707 (repeat-complex-command): Use it (bug#14136).
708
709 * progmodes/cc-mode.el: Minor cleanup of var declarations.
710 (c-define-abbrev-table): Add `doc' argument.
711 (c-mode-abbrev-table, c++-mode-abbrev-table)
712 (objc-mode-abbrev-table, java-mode-abbrev-table)
713 (idl-mode-abbrev-table, pike-mode-abbrev-table)
714 (awk-mode-abbrev-table): Use it.
715 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
716 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
717 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
718 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
719 Move initialization into the declaration; and remove any
720 autoload cookie.
721
722 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
723 and dynamic let binding.
724
725 * vc/smerge-mode.el: Remove redundant :group args.
726
727 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
728 to load-path.
729
730 2013-08-28 Juri Linkov <juri@jurta.org>
731
732 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
733 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
734 (isearch-other-meta-char): Handle an undefined shifted printing
735 character by downshifting it. (Bug#15200)
736
737 2013-08-28 Juri Linkov <juri@jurta.org>
738
739 * isearch.el (isearch-search): Change regexp error message for
740 non-regexp searches. (Bug#15166)
741
742 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
743
744 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
745 for portability to hosts where /bin/sh has problems.
746
747 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
748
749 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
750
751 2013-08-27 Juri Linkov <juri@jurta.org>
752
753 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
754 in the keyboard macro. (Bug#15126)
755
756 2013-08-27 Juri Linkov <juri@jurta.org>
757
758 * isearch.el (isearch-quote-char): Comment out converting unibyte
759 to multibyte, thus syncing with its `quoted-insert' counterpart.
760 (Bug#15166)
761
762 2013-08-27 Martin Rudalics <rudalics@gmx.at>
763
764 * window.el (display-buffer-use-some-window): Add missing
765 argument in call of get-largest-window (Bug#15185).
766 Reported by Stephen Leake.
767
768 2013-08-27 Glenn Morris <rgm@gnu.org>
769
770 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
771
772 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
773
774 * progmodes/python.el (python-font-lock-keywords): Don't return nil
775 from a matcher-function unless there's no more matches (bug#15161).
776
777 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
778
779 * minibuffer.el: Revert change from 2013-08-20.
780
781 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
782 with text property `tramp-default', if appropriate.
783 (tramp-check-proper-host): New defun.
784 (tramp-dissect-file-name): Do not check hostname. Revert change
785 of 2013-03-18.
786 (tramp-backtrace): Make VEC-OR-PROC optional.
787
788 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
789 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
790 * net/tramp-sh.el (tramp-maybe-open-connection):
791 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
792 Apply `tramp-check-proper-host'.
793
794 2013-08-26 Tassilo Horn <tsdh@gnu.org>
795
796 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
797 lambda expression in order to have `describe-variable' display it.
798
799 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
800
801 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
802 BUF can be optional. (Bug#15186)
803
804 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
805
806 * progmodes/flymake.el (flymake-get-real-file-name-function):
807 Fix broken customization. (Bug#15184)
808
809 2013-08-25 Alan Mackenzie <acm@muc.de>
810
811 Improve indentation of bracelists defined by macros (without "=").
812
813 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
814 expansion begins with "{", regard it as bracelist when it doesn't
815 contain a ";".
816
817 Parse C++ inher-intro when there's a template split over 2 lines.
818
819 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
820 rigorously the search for "class" etc. followed by ":".
821
822 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
823 random languages a regexp which never matches rather than nil.
824
825 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
826
827 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
828 (c-awk-regexp-one-line-possibly-open-char-list-re)
829 (c-awk-one-line-possibly-open-regexp-re)
830 (c-awk-one-line-non-syn-ws*-re): Remove.
831 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
832 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
833 (c-awk-space*-unclosed-regexp-/-re): New constants.
834 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
835 aren't regexp delimiters.
836
837 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
838 handling for a rare situation in AWK Mode involving unterminated
839 strings/regexps.
840
841 2013-08-23 Glenn Morris <rgm@gnu.org>
842
843 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
844
845 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
846
847 * files.el (create-file-buffer): If the result would begin with
848 spaces, prepend a "|" instead of removing them. (Bug#15162)
849
850 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
851
852 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
853 text-properties (bug#15155).
854
855 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
856 exist any more.
857 (calc-keypad-redraw): Remove unused var `pad'.
858 (calc-keypad-press): Remove unused var `menu'.
859
860 2013-08-23 Martin Rudalics <rudalics@gmx.at>
861
862 * window.el (display-buffer-pop-up-frame):
863 Call pop-up-frame-function with BUFFER current so `make-frame' will
864 use it as the new frame's buffer (Bug#15133).
865
866 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
867
868 * calendar/timeclock.el: Minor cleanups.
869 (timeclock-ask-before-exiting, timeclock-use-display-time):
870 Use `symbol'.
871 (timeclock-modeline-display): Define as alias before the
872 actual definition.
873 (timeclock-mode-line-display): Use define-minor-mode.
874 (timeclock-day-list-template): Make it a function, add an argument.
875 (timeclock-day-list-required, timeclock-day-list-length)
876 (timeclock-day-list-debt, timeclock-day-list-span)
877 (timeclock-day-list-break): Adjust calls accordingly.
878
879 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
880
881 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
882 Use read--expression so that completion works again.
883
884 2013-08-21 Sam Steingold <sds@gnu.org>
885
886 Add rudimentary inferior shell interaction
887 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
888 (sh-set-shell): Reset it.
889 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
890 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
891
892 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
893
894 * align.el: Use lexical-binding.
895 (align-region): Simplify accordingly.
896
897 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
898
899 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
900
901 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
902 `non-essential' up.
903
904 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
905
906 * net/tramp.el:
907 * net/tramp-adb.el:
908 * net/tramp-cmds.el:
909 * net/tramp-ftp.el:
910 * net/tramp-gvfs.el:
911 * net/tramp-gw.el:
912 * net/tramp-sh.el: Don't wrap external variable declarations by
913 `eval-when-compile'.
914
915 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
916
917 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
918 now that Emacs supports ImageMagick animations.
919
920 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
921
922 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
923 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
924
925 2013-08-16 Martin Rudalics <rudalics@gmx.at>
926
927 * window.el (mouse-autoselect-window-select): Do autoselect when
928 mouse pointer is on margin.
929
930 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
931
932 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
933
934 2013-08-16 Glenn Morris <rgm@gnu.org>
935
936 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
937 Handle "Remote Directory" response of some clients. (Bug#15058)
938
939 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
940 Tweak warning. (Bug#14926)
941
942 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
943 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
944
945 * image-mode.el (image-mode-map): Add menu items to reverse,
946 increase, decrease, reset animation speed.
947 (image--set-speed, image-increase-speed, image-decrease-speed)
948 (image-reverse-speed, image-reset-speed): New functions.
949 (image-mode-map): Add bindings for speed commands.
950
951 * image.el (image-animate-get-speed, image-animate-set-speed):
952 New functions.
953 (image-animate-timeout): Respect image :speed property.
954
955 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
956
957 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
958 previous line (bug#15101).
959 (debugger-eval-expression, debugger-record-expression):
960 Use read--expression (bug#15102).
961
962 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
963
964 Remove byte compiler warnings, visible when compiling with
965 `byte-compile-force-lexical-warnings' set to t.
966
967 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
968 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
969 (tramp-handle-unhandled-file-name-directory)
970 (tramp-handle-file-notify-add-watch, tramp-action-login)
971 (tramp-action-succeed, tramp-action-permission-denied)
972 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
973 arguments with "_".
974
975 * net/tramp-adb.el (tramp-adb-parse-device-names)
976 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
977 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
978 (tramp-adb-handle-file-truename): Remove unused arguments.
979
980 * net/tramp-cache.el (tramp-flush-directory-property)
981 (tramp-flush-connection-property, tramp-list-connections)
982 (tramp-parse-connection-properties): Prefix unused arguments with "_".
983
984 * net/tramp-compat.el (tramp-compat-make-temp-file):
985 Rename FILENAME to F.
986
987 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
988 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
989 (tramp-zeroconf-parse-workstation-device-names)
990 (tramp-zeroconf-parse-webdav-device-names)
991 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
992
993 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
994 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
995
996 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
997 arguments.
998 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
999 (tramp-sh-handle-insert-file-contents-literally)
1000 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
1001 with "_".
1002 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
1003 Remove unused variables.
1004
1005 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
1006 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
1007 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
1008
1009 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
1010 Make them a defconst.
1011 (tramp-uuencode-region): Remove unused variable.
1012
1013 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
1014
1015 * frameset.el (frameset--prop-setter): New function.
1016 (frameset-prop): Add gv-setter declaration.
1017 (frameset-filter-minibuffer): Deal with the case that the minibuffer
1018 parameter was already set in FILTERED. Doc fix.
1019 (frameset--record-minibuffer-relationships): Allow saving a
1020 minibufferless frame without its corresponding minibuffer frame.
1021 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
1022 frame, if the frame id matches.
1023 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
1024 frames before orphaned ones.
1025 (frameset-restore): Warn about orphaned windows, instead of error out.
1026
1027 2013-08-14 Martin Rudalics <rudalics@gmx.at>
1028
1029 * window.el (window-make-atom): Don't overwrite parameter
1030 already present.
1031 (display-buffer-in-atom-window): Handle special case where we
1032 split an already atomic window.
1033 (window--major-non-side-window, display-buffer-in-side-window)
1034 (window--side-check): Ignore minibuffer window when walking
1035 window tree.
1036 (window-deletable-p): Return 'frame only if no other frame uses
1037 our minibuffer window.
1038 (record-window-buffer): Run buffer-list-update-hook.
1039 (split-window): Make sure window--check-frame won't destroy an
1040 existing atomic window in case the new window gets nested
1041 inside.
1042 (display-buffer-at-bottom): Ignore minibuffer window when
1043 walking window tree. Don't split a side window.
1044 (pop-to-buffer): Don't set-buffer here, the select-window call
1045 should do that.
1046 (mouse-autoselect-window-select): Autoselect only if we are in the
1047 text portion of the window.
1048
1049 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1050
1051 * net/shr.el (shr-parse-image-data): New function to grab both the
1052 data itself and the Content-Type.
1053 (shr-put-image): Use it.
1054
1055 * net/eww.el (eww-display-image): Ditto.
1056
1057 * image.el (image-content-type-suffixes): New variable.
1058
1059 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
1060
1061 * progmodes/python.el (python-imenu--build-tree)
1062 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
1063
1064 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
1065
1066 * simple.el (backward-word): Mention the optional argument.
1067
1068 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
1069
1070 * frameset.el (frameset--make): Rename constructor from make-frameset.
1071 (frameset-p, frameset-valid-p): Don't autoload.
1072 (frameset-valid-p): Use normal accessors.
1073
1074 2013-08-13 Glenn Morris <rgm@gnu.org>
1075
1076 * progmodes/compile.el (compile-command): Tweak example in doc.
1077 * obsolete/scribe.el (scribe-mode):
1078 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
1079
1080 * mail/feedmail.el (feedmail-confirm-outgoing)
1081 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
1082
1083 * cus-start.el (truncate-partial-width-windows): Fix type.
1084
1085 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
1086
1087 * net/shr.el (shr-table-horizontal-line): Fix custom type.
1088
1089 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
1090
1091 * emacs-lisp/timer.el (timer--time-setter): New function.
1092 (timer--time): Use it as gv-setter.
1093
1094 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
1095 setter is not a symbol.
1096
1097 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
1098
1099 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
1100 if sending fails. This makes debugging easier.
1101
1102 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
1103
1104 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
1105 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
1106 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
1107
1108 2013-08-12 Eli Zaretskii <eliz@gnu.org>
1109
1110 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
1111
1112 2013-08-12 Glenn Morris <rgm@gnu.org>
1113
1114 * format.el (format-annotate-function):
1115 Handle read-only text properties in the source. (Bug#14887)
1116
1117 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1118
1119 * net/eww.el (eww-display-html): Ignore coding system errors.
1120 One web site uses "utf-8lias" as the coding system.
1121
1122 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
1123
1124 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
1125
1126 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
1127
1128 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
1129 (tutorial--detailed-help): Remove unused local variables.
1130 (tutorial--save-tutorial-to): Use ignore-errors.
1131 (help-with-tutorial): Use looking-at-p.
1132
1133 * view.el (view-buffer-other-window, view-buffer-other-frame):
1134 Mark unused arguments.
1135
1136 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
1137 (woman-select-symbol-fonts, woman, woman-find-file)
1138 (woman-insert-file-contents, woman-non-underline-faces):
1139 Use string-match-p.
1140 (woman1-unquote): Move declaration.
1141
1142 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
1143 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
1144 argument. Remove unused local variable.
1145 (xml-parse-elem-type): Use string-match-p.
1146 (xml-substitute-numeric-entities): Use ignore-errors.
1147
1148 * calculator.el (calculator): Mark unused argument.
1149 (calculator-paste, calculator-quit, calculator-integer-p):
1150 Use ignore-errors.
1151 (calculator-string-to-number, calculator-decimal, calculator-exp)
1152 (calculator-op-or-exp): Use string-match-p.
1153
1154 * dired.el (dired-buffer-more-recently-used-p): Declare.
1155 (dired-insert-set-properties, dired-insert-old-subdirs):
1156 Use ignore-errors.
1157
1158 * dired-aux.el (dired-compress): Use ignore-errors.
1159 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
1160 (dired-do-async-shell-command, dired-do-shell-command)
1161 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
1162 (dired-insert-subdir-validate): Use string-match-p.
1163 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
1164 (dired-add-entry): Use string-match-p, looking-at-p.
1165 (dired-insert-subdir-newpos): Remove unused local variable.
1166
1167 * filenotify.el (file-notify-callback): Remove unused local variable.
1168
1169 * filesets.el (filesets-error): Mark unused argument.
1170 (filesets-which-command-p, filesets-filter-dir-names)
1171 (filesets-directory-files, filesets-get-external-viewer)
1172 (filesets-ingroup-get-data): Use string-match-p.
1173
1174 * find-file.el (ff-other-file-name, ff-other-file-name)
1175 (ff-find-the-other-file, ff-cc-hh-converter):
1176 Remove unused local variables.
1177 (ff-get-file-name): Use string-match-p.
1178 (ff-all-dirs-under): Use ignore-errors.
1179
1180 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
1181 (follow-select-if-visible): Remove unused local variable.
1182
1183 * forms.el (read-file-filter): Move declaration.
1184 (forms--make-format, forms--make-parser, forms-insert-record):
1185 Quote function with #'.
1186 (forms--update): Use string-match-p. Quote function with #'.
1187
1188 * help-mode.el (help-dir-local-var-def): Mark unused argument.
1189 (help-make-xrefs): Use looking-at-p.
1190 (help-xref-on-pp): Use looking-at-p, ignore-errors.
1191
1192 * ibuffer.el (ibuffer-ext-visible-p): Declare.
1193 (ibuffer-confirm-operation-on): Use string-match-p.
1194
1195 * msb.el (msb-item-handler, msb-dired-item-handler):
1196 Mark unused arguments.
1197
1198 * ses.el (ses-decode-cell-symbol)
1199 (ses-kill-override): Remove unused local variable.
1200 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
1201 (ses-load): Use ignore-errors, looking-at-p.
1202 (ses-jump-safe): Use ignore-errors.
1203 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
1204
1205 * tabify.el (untabify, tabify): Mark unused arguments.
1206
1207 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
1208 Mark unused argument.
1209 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
1210 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
1211
1212 * emacs-lisp/timer.el (timer--time): Define setter with
1213 gv-define-setter to avoid deprecation warning.
1214
1215 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
1216 (*record-cmpl-statistics-p*): Remove (was commented out).
1217 (cmpl-statistics-block): Remove (body was commented out).
1218 All callers changed.
1219 (add-completions-from-buffer, load-completions-from-file):
1220 Remove unused variables.
1221
1222 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
1223
1224 * filecache.el (file-cache-delete-file-list):
1225 Print message only when told so.
1226 (file-cache-files-matching): Use #' in mapconcat argument.
1227
1228 * ffap.el (ffap-url-at-point): Fix reference to variable
1229 thing-at-point-default-mail-uri-scheme.
1230
1231 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
1232
1233 * subr.el (define-error): New function.
1234 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
1235 error-file-not-found and define with define-error.
1236 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
1237 and define with define-error.
1238 * userlock.el (file-locked, file-supersession):
1239 * simple.el (mark-inactive):
1240 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
1241 * progmodes/ada-mode.el (ada-mode-errors):
1242 * play/life.el (life-extinct):
1243 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
1244 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
1245 * nxml/rng-util.el (rng-error):
1246 * nxml/rng-uri.el (rng-uri-error):
1247 * nxml/rng-match.el (rng-compile-error):
1248 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
1249 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
1250 * nxml/nxml-rap.el (nxml-scan-error):
1251 * nxml/nxml-outln.el (nxml-outline-error):
1252 * net/soap-client.el (soap-error):
1253 * net/gnutls.el (gnutls-error):
1254 * net/ange-ftp.el (ftp-error):
1255 * mpc.el (mpc-proc-error):
1256 * json.el (json-error, json-readtable-error, json-unknown-keyword)
1257 (json-number-format, json-string-escape, json-string-format)
1258 (json-key-format, json-object-format):
1259 * jka-compr.el (compression-error):
1260 * international/quail.el (quail-error):
1261 * international/kkc.el (kkc-error):
1262 * emacs-lisp/ert.el (ert-test-failed):
1263 * calc/calc.el (calc-error, inexact-result, math-overflow)
1264 (math-underflow):
1265 * bookmark.el (bookmark-error-no-filename):
1266 * epg.el (epg-error): Define with define-error.
1267
1268 * time.el (display-time-event-handler)
1269 (display-time-next-load-average): Don't call sit-for since it seems
1270 unnecessary (bug#15045).
1271
1272 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
1273 Use #' instead of ' to quote functions.
1274 (checkdoc-output-mode): Use setq-local.
1275 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
1276 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
1277 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
1278 (checkdoc-ispell, checkdoc-ispell-current-buffer)
1279 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
1280 (checkdoc-ispell-message-text, checkdoc-ispell-start)
1281 (checkdoc-ispell-continue, checkdoc-ispell-comments)
1282 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
1283
1284 * ido.el (ido-completion-help): Fix up compiler warning.
1285
1286 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
1287
1288 * frameset.el (frameset-p): Add autoload cookie.
1289 (frameset--jump-to-register): New function, based on code moved from
1290 register.el.
1291 (frameset-to-register): Move from register.el. Adapt to `registerv'.
1292
1293 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
1294 (frameset-restore, frameset-save, frameset-session-filter-alist):
1295 Remove declarations.
1296 (register-alist): Doc fix.
1297 (frameset-to-register): Move to frameset.el.
1298 (jump-to-register, describe-register-1): Remove frameset-specific code.
1299
1300 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
1301
1302 * allout-widgets.el (allout-widgets-pre-command-business)
1303 (allout-widgets-post-command-business)
1304 (allout-widgets-after-change-handler)
1305 (allout-decorate-item-and-context, allout-set-boundary-marker)
1306 (allout-body-modification-handler)
1307 (allout-graphics-modification-handler): Mark ignored arguments.
1308 (allout-widgets-post-command-business)
1309 (allout-widgets-exposure-change-processor)
1310 (allout-widgets-exposure-undo-processor)
1311 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
1312 (allout-parse-item-at-point, allout-decorate-item-guides)
1313 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
1314 * allout.el (epa-passphrase-callback-function): Declare.
1315 (allout-overlay-insert-in-front-handler)
1316 (allout-overlay-interior-modification-handler)
1317 (allout-isearch-end-handler, allout-chart-siblings)
1318 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
1319 (allout-yank-processing, allout-process-exposed)
1320 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
1321 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
1322 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
1323 (lisp-indent-defform): Mark ignored arguments.
1324 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
1325 (calculate-lisp-indent): Remove unused variables.
1326 * international/characters.el (indian-2-column, arabic-2-column)
1327 (tibetan): Mark ignored arguments.
1328 (use-cjk-char-width-table): Mark ignored arguments.
1329 Remove unused variables.
1330 * international/fontset.el (build-default-fontset-data)
1331 (x-compose-font-name, create-fontset-from-fontset-spec):
1332 Mark ignored arguments.
1333 (fontset-plain-name): Remove unused variables.
1334 * international/mule.el (charset-id, charset-bytes, generic-char-p)
1335 (keyboard-coding-system): Mark ignored arguments.
1336 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
1337 * help.el (resize-temp-buffer-window):
1338 * window.el (display-buffer-in-major-side-window)
1339 (display-buffer-in-side-window, display-buffer-in-previous-window):
1340 Remove unused variables.
1341 * isearch.el (isearch-forward-symbol):
1342 * version.el (emacs-bzr-version-bzr):
1343 * international/mule-cmds.el (current-language-environment):
1344 * term/common-win.el (x-handle-iconic, x-handle-geometry)
1345 (x-handle-display):
1346 * term/pc-win.el (x-list-fonts, x-display-planes)
1347 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
1348 (x-server-version, x-display-screens, x-display-mm-height)
1349 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
1350 (x-selection-owner-p, x-own-selection-internal)
1351 (x-disown-selection-internal, x-get-selection-internal)
1352 (msdos-initialize-window-system):
1353 * term/tty-colors.el (tty-color-alist, tty-color-clear):
1354 * term/x-win.el (x-handle-no-bitmap-icon):
1355 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
1356 (vc-default-find-file-hook, vc-default-extra-menu):
1357 Mark ignored arguments.
1358
1359 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1360
1361 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
1362 break-condition in the context of the debugged code (bug#12685).
1363
1364 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
1365
1366 * comint.el:
1367 Do not use an overlay to highlight the last prompt. (Bug#14744)
1368 (comint-mode): Make comint-last-prompt buffer local.
1369 (comint-last-prompt): New variable.
1370 (comint-last-prompt-overlay): Remove. Superseded by
1371 comint-last-prompt.
1372 (comint-snapshot-last-prompt, comint-output-filter):
1373 Use comint-last-prompt.
1374
1375 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
1376
1377 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
1378 (frameset-save): Check validity of the resulting frameset.
1379
1380 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
1381
1382 * ido.el (ido-record-command): Add doc string.
1383
1384 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
1385
1386 * frameset.el (frameset): Do not disable creation of the default
1387 frameset-p predicate. Doc fix.
1388 (frameset-valid-p): New function, copied from the old predicate-p.
1389 Add additional checks.
1390 (frameset-restore): Check with frameset-valid-p.
1391 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
1392 (frameset-name, frameset-description, frameset-properties)
1393 (frameset-states): Add docstring.
1394 (frameset-session-filter-alist, frameset-persistent-filter-alist)
1395 (frameset-filter-alist): Doc fixes.
1396
1397 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
1398
1399 * frameset.el (frameset-p, frameset-prop): Doc fixes.
1400
1401 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1402
1403 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
1404 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
1405 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
1406 (byte-compile-normal-call): Remove obsolescence check.
1407
1408 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
1409
1410 * frameset.el (frameset-restore): Doc fix.
1411
1412 * register.el (frameset-frame-id, frameset-frame-with-id)
1413 (frameset-p, frameset-restore, frameset-save): Declare.
1414 (register-alist): Document framesets.
1415 (frameset-session-filter-alist): Declare.
1416 (frameset-to-register): New function.
1417 (jump-to-register): Implement jumping to framesets. Doc fix.
1418 (describe-register-1): Describe framesets.
1419
1420 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
1421
1422 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
1423
1424 * desktop.el (desktop-save-frameset): Use new frameset-save args.
1425 Use lexical-binding.
1426
1427 * frameset.el (frameset): Use type vector, not list (incompatible
1428 change). Do not declare a new constructor, use the default one.
1429 Upgrade suggested properties `app', `name' and `desc' to slots `app',
1430 `name' and `description', respectively, and add read-only slot
1431 `timestamp'. Doc fixes.
1432 (frameset-copy, frameset-persistent-filter-alist)
1433 (frameset-filter-alist, frameset-switch-to-gui-p)
1434 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
1435 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
1436 (frameset-filter-iconified, frameset-keep-original-display-p):
1437 Doc fixes.
1438 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
1439 Rename from frameset-filter-(save|restore)-param. All callers changed.
1440 Doc fix.
1441 (frameset-p): Adapt to change to vector and be more thorough.
1442 Change arg name to OBJECT. Doc fix.
1443 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
1444 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
1445 All callers changed.
1446 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
1447 All callers changed.
1448 (frameset--record-minibuffer-relationships): Rename from
1449 frameset--process-minibuffer-frames. All callers changed.
1450 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
1451 Use new default constructor (again). Doc fix.
1452 (frameset--find-frame-if): Rename from `frameset--find-frame.
1453 All callers changed.
1454 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
1455 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
1456 Doc fix.
1457 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
1458 PARAMETERS and WINDOW-STATE, respectively.
1459 (frameset-restore): Add new keyword argument PREDICATE.
1460 Reset frameset--target-display to nil. Doc fix.
1461
1462 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
1463
1464 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
1465 (bat-mode): Use it.
1466 (bat-mode-syntax-table): Mark \n as end-of-comment.
1467 (bat-font-lock-keywords): Remove comment rule.
1468
1469 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
1470 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
1471
1472 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
1473 (byte-compile-callargs-warn): Use `push'.
1474 (byte-compile-arglist-warn): Ignore higher-order "calls".
1475 (byte-compile-file-form-autoload): Use `pcase'.
1476 (byte-compile-function-form): If quoting a symbol, check that it exists.
1477
1478 2013-08-07 Eli Zaretskii <eliz@gnu.org>
1479
1480 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
1481 and add a few popular commands found in batch files.
1482 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
1483 (dos-mode): Doc fixes.
1484
1485 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
1486
1487 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
1488 (dos-mode): Use setq-local. Add space after "rem".
1489 (dos-mode-syntax-table): Don't use "w" for symbol chars.
1490 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
1491
1492 2013-08-07 Arni Magnusson <arnima@hafro.is>
1493
1494 * progmodes/dos.el: New file.
1495 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
1496 dos-mode.
1497
1498 2013-08-06 Glenn Morris <rgm@gnu.org>
1499
1500 * calendar/calendar.el: Add new faces, and day-header-array.
1501 (calendar-weekday-header, calendar-weekend-header)
1502 (calendar-month-header): New faces.
1503 (calendar-day-header-construct): New function.
1504 (calendar-day-header-width): Also :set calendar-day-header-array.
1505 (calendar-american-month-header, calendar-european-month-header)
1506 (calendar-iso-month-header): Use calendar- faces.
1507 (calendar-generate-month):
1508 Use calendar-day-header-array for day headers; apply faces to them.
1509 (calendar-mode): Check calendar-font-lock-keywords non-nil.
1510 (calendar-abbrev-construct): Add optional maxlen argument.
1511 (calendar-day-name-array): Doc fix.
1512 (calendar-day-name-array, calendar-abbrev-length)
1513 (calendar-day-abbrev-array):
1514 Also :set calendar-day-header-array, and maybe redraw.
1515 (calendar-day-header-array): New option. (Bug#15007)
1516 (calendar-font-lock-keywords): Set to nil and make obsolete.
1517 (calendar-day-name): Add option to use header array.
1518
1519 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1520
1521 * net/shr.el (shr-render-td): Remove debugging.
1522 (shr-render-td): Make width computation consistent by defaulting
1523 all zero-width columns to 10 characters. This may not be optimal,
1524 but it's at least consistent.
1525 (shr-make-table-1): Redo last change to fix the real problem in
1526 colspan handling.
1527
1528 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1529
1530 * files.el (cache-long-line-scans):
1531 Make obsolete alias to `cache-long-scans'.
1532
1533 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
1534
1535 * frameset.el (frameset, frameset-filter-alist)
1536 (frameset-filter-params, frameset-save, frameset--reuse-frame)
1537 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
1538 (frameset-compute-pos): Rename from frameset--compute-pos,
1539 and add docstring.
1540 (frameset-move-onscreen): Use frameset-compute-pos.
1541 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
1542
1543 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
1544 Fix typos in docstrings.
1545
1546 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1547
1548 * frame.el (get-other-frame): Tiny cleanup.
1549
1550 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
1551
1552 * vc/vc.el (vc-default-ignore-completion-table):
1553 Silence byte-compiler warning.
1554
1555 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
1556 slot , which can indeed be nil.
1557 (frameset-live-filter-alist, frameset-persistent-filter-alist):
1558 Move entry for `left' from persistent to live filter alist.
1559 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
1560 Doc fixes.
1561 (frameset-filter-params): When restoring a frame, copy items added to
1562 `filtered', to avoid unwittingly modifying the original parameters.
1563 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
1564 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
1565
1566 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
1567 to use looking-at-p instead of looking-at. (Bug#15028)
1568
1569 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
1570
1571 Revert introduction of isearch-filter-predicates (bug#14714).
1572 Rely on add-function instead.
1573 * isearch.el (isearch-filter-predicates): Rename it back to
1574 isearch-filter-predicate.
1575 (isearch-message-prefix): Use advice-function-mapc and advice
1576 properties to get the isearch-message-prefix.
1577 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
1578 instead of run-hook-with-args-until-failure.
1579 (isearch-filter-visible): Not obsolete any more.
1580 * loadup.el: Preload nadvice.
1581 * replace.el (perform-replace): Revert to funcall
1582 instead of run-hook-with-args-until-failure.
1583 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
1584 * dired-aux.el (dired-isearch-filenames-mode): Rename from
1585 dired-isearch-filenames-toggle; make it into a proper minor mode.
1586 Use add/remove-function.
1587 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
1588 Call the minor-mode rather than add/remove-hook.
1589 (dired-isearch-filter-filenames):
1590 Remove isearch-message-prefix property.
1591 * info.el (Info--search-loop): New function, extracted from Info-search.
1592 Funcall isearch-filter-predicate instead of
1593 run-hook-with-args-until-failure isearch-filter-predicates.
1594 (Info-search): Use it.
1595 (Info-mode): Use isearch-filter-predicate instead of
1596 isearch-filter-predicates.
1597
1598 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
1599
1600 Do not call to `selected-window' where it is assumed by default.
1601 Affected functions are `window-minibuffer-p', `window-dedicated-p',
1602 `window-hscroll', `window-width', `window-height', `window-buffer',
1603 `window-frame', `window-start', `window-point', `next-window'
1604 and `window-display-table'.
1605 * abbrev.el (abbrev--default-expand):
1606 * bs.el (bs--show-with-configuration):
1607 * buff-menu.el (Buffer-menu-mouse-select):
1608 * calc/calc.el (calc):
1609 * calendar/calendar.el (calendar-generate-window):
1610 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
1611 (diary-make-entry):
1612 * comint.el (send-invisible, comint-dynamic-complete-filename)
1613 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
1614 * completion.el (complete):
1615 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
1616 * disp-table.el (describe-current-display-table):
1617 * doc-view.el (doc-view-insert-image):
1618 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
1619 * ehelp.el (with-electric-help):
1620 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
1621 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
1622 * emacs-lisp/helper.el (Helper-help-scroller):
1623 * emulation/cua-base.el (cua--post-command-handler-1):
1624 * eshell/esh-mode.el (eshell-output-filter):
1625 * ffap.el (ffap-gnus-wrapper):
1626 * help-macro.el (make-help-screen):
1627 * hilit-chg.el (highlight-compare-buffers):
1628 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
1629 * hl-line.el (global-hl-line-highlight):
1630 * icomplete.el (icomplete-simple-completing-p):
1631 * isearch.el (isearch-done):
1632 * jit-lock.el (jit-lock-stealth-fontify):
1633 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
1634 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
1635 * mpc.el (mpc-tagbrowser, mpc):
1636 * net/rcirc.el (rcirc-any-buffer):
1637 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
1638 * play/landmark.el (landmark-max-width, landmark-max-height):
1639 * play/zone.el (zone):
1640 * progmodes/compile.el (compilation-goto-locus):
1641 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
1642 * progmodes/etags.el (find-tag-other-window):
1643 * progmodes/fortran.el (fortran-column-ruler):
1644 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
1645 * progmodes/verilog-mode.el (verilog-point-text):
1646 * reposition.el (reposition-window):
1647 * rot13.el (toggle-rot13-mode):
1648 * server.el (server-switch-buffer):
1649 * shell.el (shell-dynamic-complete-command)
1650 (shell-dynamic-complete-environment-variable):
1651 * simple.el (insert-buffer, set-selective-display)
1652 (delete-completion-window):
1653 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
1654 (speedbar-recenter):
1655 * startup.el (fancy-splash-head):
1656 * textmodes/ispell.el (ispell-command-loop):
1657 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
1658 * tutorial.el (help-with-tutorial):
1659 * vc/add-log.el (add-change-log-entry):
1660 * vc/compare-w.el (compare-windows):
1661 * vc/ediff-help.el (ediff-indent-help-message):
1662 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
1663 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
1664 (ediff-setup-control-frame):
1665 * vc/emerge.el (emerge-position-region):
1666 * vc/pcvs-util.el (cvs-bury-buffer):
1667 * window.el (walk-windows, mouse-autoselect-window-select):
1668 * winner.el (winner-set-conf, winner-undo): Related users changed.
1669
1670 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
1671
1672 * frameset.el (frameset--set-id): Doc fix.
1673 (frameset-frame-id, frameset-frame-id-equal-p)
1674 (frameset-locate-frame-id): New functions.
1675 (frameset--process-minibuffer-frames, frameset--reuse-frame)
1676 (frameset-restore): Use them.
1677
1678 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
1679
1680 Do not call to `selected-frame' where it is assumed by default.
1681 Affected functions are `raise-frame', `redraw-frame',
1682 `frame-first-window', `frame-terminal' and `delete-frame'.
1683 * calendar/appt.el (appt-disp-window):
1684 * epg.el (epg-wait-for-completion):
1685 * follow.el (follow-delete-other-windows-and-split)
1686 (follow-avoid-tail-recenter):
1687 * international/mule.el (set-terminal-coding-system):
1688 * mail/rmail.el (rmail-mail-return):
1689 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
1690 * progmodes/f90.el (f90-add-imenu-menu):
1691 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
1692 * server.el (server-switch-buffer):
1693 * simple.el (delete-completion-window):
1694 * talk.el (talk):
1695 * term/xterm.el (terminal-init-xterm-modify-other-keys)
1696 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
1697 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
1698 * vc/ediff.el (ediff-documentation): Related users changed.
1699 * frame.el (selected-terminal): Remove the leftover.
1700
1701 2013-08-05 Glenn Morris <rgm@gnu.org>
1702
1703 * calendar/calendar.el (calendar-generate-month):
1704 Fix for calendar-column-width != 1 + calendar-day-digit-width.
1705 (calendar-generate-month, calendar-font-lock-keywords):
1706 Fix for calendar-day-header-width > length of any day name.
1707
1708 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
1709
1710 * desktop.el (desktop-clear): Use new name of sort predicate.
1711
1712 * frameset.el (frameset): Add docstring. Move :version property to its
1713 own `version' slot.
1714 (frameset-copy): Rename from copy-frameset.
1715 (frameset-p): Check more thoroughly.
1716 (frameset-prop): Do not check for :version, which is no longer a prop.
1717 (frameset-live-filter-alist, frameset-persistent-filter-alist):
1718 Use new :never value instead of t.
1719 (frameset-filter-alist): Expand and clarify docstring.
1720 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
1721 (frameset-filter-minibuffer, frameset-filter-save-param)
1722 (frameset-filter-restore-param, frameset-filter-iconified):
1723 Add pointer to docstring of frameset-filter-alist.
1724 (frameset-filter-params): Rename filter values to be more meaningful:
1725 :never instead of t, and reverse the meanings of :save and :restore.
1726 (frameset--process-minibuffer-frames): Clarify error message.
1727 (frameset-save): Avoid unnecessary and confusing call to framep.
1728 Use new BOA constructor for framesets.
1729 (frameset--reuse-list): Doc fix.
1730 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
1731 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
1732 (frameset-minibufferless-first-p): Doc fix.
1733 Rename from frameset-sort-frames-for-deletion.
1734 (frameset-restore): Doc fixes. Use new function names.
1735 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
1736
1737 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
1738
1739 * desktop.el (desktop-restore-forces-onscreen)
1740 (desktop-restore-reuses-frames): Document :keyword constant values.
1741 (desktop-filter-parameters-alist): Remove, now identical to
1742 frameset-filter-alist.
1743 (desktop--filter-tty*): Remove, moved to frameset.el.
1744 (desktop-save-frameset, desktop-restore-frameset):
1745 Do not pass :filters argument.
1746
1747 * frameset.el (frameset-live-filter-alist)
1748 (frameset-persistent-filter-alist): New variables.
1749 (frameset-filter-alist): Use them. Add autoload cookie.
1750 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
1751 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
1752 `frameset--id' (it's supposed to be internal to frameset.el).
1753 (frameset--process-minibuffer-frames): Ditto. Doc fix.
1754 (frameset--initial-params): New function.
1755 (frameset--get-frame): Use it. Doc fix.
1756 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
1757 Accept :all, not 'all.
1758 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
1759 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
1760 with fbound symbols. Fix frame id matching, and remove matching ids if
1761 the frame being restored is deleted. Obey :delete.
1762
1763 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
1764
1765 * subr.el (macrop): New function.
1766 (text-clone--maintaining): New var.
1767 (text-clone--maintain): Rename from text-clone-maintain. Use it
1768 instead of inhibit-modification-hooks.
1769
1770 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
1771 a proxy, so as handle autoloads and redefinitions of the target.
1772 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
1773
1774 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
1775 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
1776 (pcase--mutually-exclusive-p): New function.
1777 (pcase--split-consp): Use it.
1778 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
1779 mutually exclusive with the current predicate.
1780
1781 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
1782 (edebug-macrop): Remove. Use `macrop' instead.
1783 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
1784 (ad-macro-p):
1785 * eshell/esh-cmd.el (eshell-macrop):
1786 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
1787
1788 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
1789
1790 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
1791 (advice-mapc): New function, using it.
1792 (advice-function-member-p): New function.
1793 (advice--normalize): Store the cdr in advice--saved-rewrite since
1794 that's the part that will be changed.
1795 (advice--symbol-function): New function.
1796 (advice-remove): Handle removal before the function is defined.
1797 Adjust to new advice--saved-rewrite.
1798 (advice-member-p): Use advice-function-member-p and
1799 advice--symbol-function.
1800
1801 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
1802
1803 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
1804 (frameset-filter-minibuffer): Doc fix.
1805 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
1806 (frameset--set-id, frameset--process-minibuffer-frames)
1807 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
1808 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
1809
1810 * desktop.el (desktop-clear): Only delete frames when called
1811 interactively and desktop-restore-frames is non-nil. Doc fix.
1812 (desktop-read): Set desktop-saved-frameset to nil.
1813
1814 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
1815
1816 * vc/vc.el (vc-ignore): Rewrite.
1817 (vc-default-ignore-completion-table):
1818 (vc--read-lines):
1819 (vc--add-line, vc--remove-regexp): New functions.
1820
1821 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
1822 (vc-svn-ignore-completion-table): New function.
1823
1824 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
1825 (vc-hg-ignore-completion-table):
1826 (vc-hg-find-ignore-file): New functions.
1827
1828 * vc/vc-git.el (vc-git-ignore): Rewrite.
1829 (vc-git-ignore-completion-table):
1830 (vc-git-find-ignore-file): New functions.
1831
1832 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
1833
1834 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
1835 (vc-bzr-ignore-completion-table):
1836 (vc-bzr-find-ignore-file): New functions.
1837
1838 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
1839
1840 * frameset.el (frameset-prop): New function and setter.
1841 (frameset-save): Do not modify frame list passed by the caller.
1842
1843 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
1844
1845 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
1846
1847 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
1848
1849 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
1850 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
1851
1852 * custom.el (custom-initialize-default, custom-initialize-set)
1853 (custom-initialize-reset, custom-initialize-changed): Affect the
1854 toplevel-default-value (bug#6275, bug#14586).
1855 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
1856 for bug#6275.
1857
1858 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
1859
1860 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
1861 Add cl-def* expressions.
1862
1863 * frameset.el (frameset-filter-params): Fix order of arguments.
1864
1865 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
1866
1867 Move code related to saving frames to frameset.el.
1868 * desktop.el: Require frameset.
1869 (desktop-restore-frames): Doc fix.
1870 (desktop-restore-reuses-frames): Rename from
1871 desktop-restoring-reuses-frames.
1872 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
1873 (desktop-clear): Clear frames too.
1874 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
1875 (desktop--filter-tty*, desktop-save, desktop-read):
1876 Use frameset functions.
1877 (desktop-before-saving-frames-functions, desktop--filter-*-color)
1878 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
1879 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
1880 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
1881 (desktop--process-minibuffer-frames, desktop-save-frames)
1882 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
1883 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
1884 (desktop--sort-states, desktop-restoring-frames-p)
1885 (desktop-restore-frames): Remove. Most code moved to frameset.el.
1886 (desktop-restoring-frameset-p, desktop-restore-frameset)
1887 (desktop--check-dont-save, desktop-save-frameset): New functions.
1888 (desktop--app-id): New constant.
1889 (desktop-first-buffer, desktop-buffer-ok-count)
1890 (desktop-buffer-fail-count): Move before first use.
1891 * frameset.el: New file.
1892
1893 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
1894
1895 * files.el: Use lexical-binding.
1896 (dir-locals-read-from-file): Remove unused `err' variable.
1897 (hack-dir-local-variables--warned-coding): New var.
1898 (hack-dir-local-variables): Use it to avoid repeated warnings.
1899 (make-backup-file-name--default-function): New function.
1900 (make-backup-file-name-function): Use it as default.
1901 (buffer-stale--default-function): New function.
1902 (buffer-stale-function): Use it as default.
1903 (revert-buffer-insert-file-contents--default-function): New function.
1904 (revert-buffer-insert-file-contents-function): Use it as default.
1905 (insert-directory): Avoid add-to-list.
1906
1907 * autorevert.el (auto-revert-handler): Simplify.
1908 Use buffer-stale--default-function.
1909
1910 2013-08-01 Tassilo Horn <tsdh@gnu.org>
1911
1912 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
1913
1914 * whitespace.el (whitespace-ensure-local-variables): New function.
1915 (whitespace-cleanup-region): Call it.
1916 (whitespace-turn-on): Call it.
1917
1918 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
1919
1920 Complete file name handlers.
1921
1922 * net/tramp.el (tramp-handle-set-visited-file-modtime)
1923 (tramp-handle-verify-visited-file-modtime)
1924 (tramp-handle-file-notify-rm-watch): New functions.
1925 (tramp-call-process): Do not bind `default-directory'.
1926
1927 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
1928 Order alphabetically.
1929 [access-file, add-name-to-file, dired-call-process]:
1930 [dired-compress-file, file-acl, file-notify-rm-watch]:
1931 [file-ownership-preserved-p, file-selinux-context]:
1932 [make-directory-internal, make-symbolic-link, set-file-acl]:
1933 [set-file-selinux-context, set-visited-file-modtime]:
1934 [verify-visited-file-modtime]: Add handler.
1935 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
1936
1937 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
1938 [file-notify-add-watch, file-notify-rm-watch]:
1939 [set-file-times, set-visited-file-modtime]:
1940 [verify-visited-file-modtime]: Add handler.
1941 (with-tramp-gvfs-error-message)
1942 (tramp-gvfs-handle-set-visited-file-modtime)
1943 (tramp-gvfs-fuse-file-name): Remove.
1944 (tramp-gvfs-handle-file-notify-add-watch)
1945 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
1946 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
1947
1948 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1949 Order alphabetically.
1950 [file-notify-rm-watch ]: Use default Tramp handler.
1951 [executable-find]: Remove private handler.
1952 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
1953 `default-directory'.
1954 (tramp-sh-handle-executable-find)
1955 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
1956 (tramp-sh-file-gvfs-monitor-dir-process-filter)
1957 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
1958 Do not use `format' in `tramp-message'.
1959
1960 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
1961 [file-notify-rm-watch, set-visited-file-modtime]:
1962 [verify-visited-file-modtime]: Add handler.
1963 (tramp-smb-call-winexe): Do not bind `default-directory'.
1964
1965 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
1966
1967 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
1968
1969 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
1970
1971 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
1972 use it.
1973 (log-view-diff-changeset): Same.
1974 (log-view-diff-common): Call backend command `previous-revision'
1975 to find out the previous revision, in both cases. Swap the
1976 variables `to' and `fr', so that `fr' usually refers to the
1977 earlier revision (Bug#14989).
1978
1979 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
1980
1981 * ibuf-ext.el (ibuffer-filter-by-filename):
1982 Make it work with dired buffers too.
1983
1984 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
1985
1986 * emacs-lisp/re-builder.el (reb-color-display-p):
1987 * files.el (save-buffers-kill-terminal):
1988 * net/browse-url.el (browse-url):
1989 * server.el (server-save-buffers-kill-terminal):
1990 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
1991 Prefer nil to selected-frame for the first arg of frame-parameter.
1992
1993 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
1994
1995 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
1996
1997 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
1998
1999 * minibuffer.el (completion--twq-all): Try and preserve each
2000 completion's case choice (bug#14907).
2001
2002 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2003
2004 * net/network-stream.el (open-network-stream): Mention the new
2005 :nogreeting parameter.
2006 (network-stream-open-starttls): Use the :nogreeting parameter
2007 (bug#14938).
2008
2009 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
2010
2011 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
2012 more natural than popping.
2013
2014 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
2015 (shr-urlify): Highlight under mouse.
2016
2017 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
2018
2019 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
2020
2021 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
2022
2023 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
2024 buffer for output.
2025
2026 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
2027 point-min==1. Fix search string. Fix parentheses missing.
2028
2029 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
2030 assume point-min==1. Fix search string. Fix parentheses missing.
2031
2032 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
2033
2034 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
2035 buffer for output.
2036
2037 2013-07-29 Eli Zaretskii <eliz@gnu.org>
2038
2039 * frame.el (frame-notice-user-settings): Avoid inflooping when the
2040 initial frame is minibuffer-less. (Bug#14841)
2041
2042 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
2043
2044 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
2045 option.
2046
2047 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2048 (tramp-maybe-open-connection): Use it.
2049
2050 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
2051
2052 * desktop.el (desktop--make-frame): Include `minibuffer' in the
2053 minimal set of parameters passed when creating a frame, because
2054 the minibuffer status of a frame cannot be changed later.
2055
2056 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
2057
2058 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
2059 replace-regexp-in-string and inadvertent omissions in previous change.
2060 (todo-filter-items): Ensure only file names are comma-separated in
2061 name of filtered items buffer.
2062
2063 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
2064
2065 * desktop.el: Optionally force offscreen frames back onscreen.
2066 (desktop-restoring-reuses-frames): New option.
2067 (desktop--compute-pos, desktop--move-onscreen): New functions.
2068 (desktop--make-frame): Use desktop--move-onscreen.
2069
2070 2013-07-27 Alan Mackenzie <acm@muc.de>
2071
2072 Fontify a Java generic method as a function.
2073 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
2074 value to t.
2075
2076 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
2077
2078 * calendar/todo-mode.el: Add command to rename todo files.
2079 (todo-rename-file): New command.
2080 (todo-key-bindings-t): Add key binding for it. Change the
2081 bindings of todo-filter-regexp-items(-multifile) to use `x'
2082 instead of `r', since the latter is better suited to the new
2083 renaming command.
2084
2085 2013-07-27 Alan Mackenzie <acm@muc.de>
2086
2087 Make Java try-with-resources statement parse properly.
2088 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
2089 (c-block-stmt-1-2-key): New language constants/variables.
2090 * progmodes/cc-engine.el (c-beginning-of-statement-1)
2091 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
2092 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
2093 with c-block-stmt-1-2-key.
2094
2095 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
2096
2097 * desktop.el (desktop--make-frame): Apply most frame parameters after
2098 creating the frame to force (partially or totally) offscreen frames to
2099 be restored as such.
2100
2101 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
2102
2103 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
2104 (Bug#14948)
2105
2106 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2107
2108 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
2109 `base' arg of backtrace-frame.
2110
2111 2013-07-26 Eli Zaretskii <eliz@gnu.org>
2112
2113 * simple.el (list-processes): Doc fix.
2114
2115 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
2116
2117 * desktop.el (desktop--select-frame):
2118 Try harder to reuse existing frames.
2119
2120 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2121
2122 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
2123 (edebug-eval): Use backtrace-eval.
2124 (edebug--display, edebug--recursive-edit): Don't let-bind the
2125 edebug-outer-* vars that keep track of variables we locally let-bind.
2126 (edebug-outside-excursion): Don't restore outside values of locally
2127 let-bound vars.
2128 (edebug--display): Use user-error.
2129 (cl-lexical-debug, cl-debug-env): Remove.
2130
2131 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
2132
2133 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
2134 are restored to be sure that they are visible before deleting any
2135 remaining ones.
2136
2137 2013-07-26 Matthias Meulien <orontee@gmail.com>
2138
2139 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
2140 vc-print-root-log. (Bug#14948)
2141
2142 2013-07-26 Richard Stallman <rms@gnu.org>
2143
2144 Add aliases for encrypting mail.
2145 * epa.el (epa-mail-aliases): New option.
2146 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
2147 Bind inhibit-read-only so read-only text doesn't ruin everything.
2148 (epa-mail-default-recipients): New subroutine broken out.
2149 Handle epa-mail-aliases.
2150
2151 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2152
2153 Add support for lexical variables to the debugger's `e' command.
2154 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
2155 vars, except for debugger-outer-match-data.
2156 (debugger-frame-number): Move check for "on a function call" from
2157 callers into it. Add `skip-base' argument.
2158 (debugger-frame, debugger-frame-clear): Simplify accordingly.
2159 (debugger-env-macro): Only reset the state stored in non-variables,
2160 i.e. current-buffer and match-data.
2161 (debugger-eval-expression): Rewrite using backtrace-eval.
2162 * subr.el (internal--called-interactively-p--get-frame): Remove.
2163 (called-interactively-p):
2164 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
2165 `base' arg of backtrace-frame instead.
2166
2167 2013-07-26 Glenn Morris <rgm@gnu.org>
2168
2169 * align.el (align-regexp): Doc fix. (Bug#14857)
2170 (align-region): Explicit error if subexpression missing/does not match.
2171
2172 * simple.el (global-visual-line-mode):
2173 Do not duplicate the mode lighter. (Bug#14858)
2174
2175 2013-07-25 Martin Rudalics <rudalics@gmx.at>
2176
2177 * window.el (display-buffer): In display-buffer bind
2178 split-window-keep-point to t, bug#14829.
2179
2180 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
2181
2182 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
2183 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
2184 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
2185 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
2186 Change accordingly.
2187 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
2188 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
2189
2190 2013-07-25 Glenn Morris <rgm@gnu.org>
2191
2192 * dired-x.el (dired-mark-extension): Convert comment to doc string.
2193
2194 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
2195
2196 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
2197 parameter to modify-frame-parameters if the value has not changed;
2198 this is a workaround for bug#14949.
2199 (desktop--make-frame): On cl-delete-if call, check parameter name,
2200 not full parameter.
2201
2202 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
2203
2204 * vc/vc.el (vc-ignore): New function.
2205
2206 * vc/vc-svn.el (vc-svn-ignore): New function.
2207
2208 * vc/vc-hg.el (vc-hg-ignore): New function.
2209
2210 * vc/vc-git.el (vc-git-ignore): New function.
2211
2212 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
2213 (vc-dir-ignore): New function.
2214
2215 * vc/vc-cvs.el (vc-cvs-ignore): New function.
2216 (cvs-append-to-ignore): Move here from pcvs.el.
2217
2218 * vc/vc-bzr.el (vc-bzr-ignore): New function.
2219
2220 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
2221
2222 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
2223
2224 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
2225 (desktop-restore-frames): Warn when deleting an existing frame failed.
2226
2227 2013-07-24 Glenn Morris <rgm@gnu.org>
2228
2229 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
2230
2231 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
2232
2233 * filenotify.el (file-notify-supported-p):
2234 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
2235 Remove functions.
2236
2237 * autorevert.el (auto-revert-use-notify):
2238 (auto-revert-notify-add-watch):
2239 * net/tramp.el (tramp-file-name-for-operation):
2240 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2241 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2242 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2243 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2244 Remove `file-notify-supported-p' entry.
2245
2246 2013-07-24 Glenn Morris <rgm@gnu.org>
2247
2248 * printing.el: Replace all uses of deleted ps-windows-system,
2249 ps-lp-system, ps-flatten-list with lpr- versions.
2250
2251 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2252
2253 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
2254 checked with memq (bug#14935).
2255
2256 * files.el (revert-buffer-function): Use a non-nil default.
2257 (revert-buffer-preserve-modes): Declare var to
2258 provide access to the `preserve-modes' argument.
2259 (revert-buffer): Let-bind it.
2260 (revert-buffer--default): New function, extracted from revert-buffer.
2261
2262 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2263
2264 * lpr.el: Signal print errors more prominently.
2265 (print-region-function): Don't default to nil.
2266 (lpr-print-region): New function, extracted from print-region-1.
2267 Check lpr's return value and signal an error in case of problem.
2268 (print-region-1): Use it.
2269 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
2270 versions instead.
2271 (ps-printer-name): Default to nil.
2272 (ps-printer-name-option): Default to lpr-printer-switch.
2273 (ps-print-region-function): Don't default to nil.
2274 (ps-postscript-code-directory): Simplify default.
2275 (ps-do-despool): Use lpr-print-region to properly check the outcome.
2276 (ps-string-list, ps-eval-switch, ps-flatten-list)
2277 (ps-flatten-list-1): Remove.
2278 (ps-multibyte-buffer): Avoid setq.
2279 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
2280 (print-region-function, ps-print-region-function): Don't set them here.
2281
2282 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
2283
2284 * ido.el (ido-fractionp):
2285 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
2286 (ido-max-file-prompt-width, ido-unc-hosts-cache)
2287 (ido-max-directory-size, ido-max-dir-file-cache)
2288 (ido-decorations): Doc fix.
2289
2290 * ansi-color.el: Fix old URL.
2291
2292 2013-07-23 Michael R. Mauger <michael@mauger.com>
2293
2294 * progmodes/sql.el Version 3.3
2295 (sql-product-alist): Improve oracle :prompt-cont-regexp.
2296 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
2297 (sql-interactive-remove-continuation-prompt): Rewrite, use
2298 functions above. Fix continuation prompt and complete output line
2299 handling.
2300 (sql-redirect-one, sql-execute): Use `read-only-mode' on
2301 redirected output buffer.
2302 (sql-mode): Restore deleted code (Bug#13591).
2303
2304 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
2305
2306 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
2307
2308 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
2309
2310 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
2311
2312 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2313 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2314 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
2315
2316 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
2317
2318 * desktop.el (desktop-clear): Simplify; remove useless checks
2319 against invalid buffer names.
2320 (desktop-list*): Use cl-list*.
2321 (desktop-buffer-info, desktop-create-buffer): Simplify.
2322
2323 2013-07-23 Leo Liu <sdl.web@gmail.com>
2324
2325 * bookmark.el (bookmark-make-record): Restore NAME as a default
2326 value. (Bug#14933)
2327
2328 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
2329
2330 * emacs-lisp/autoload.el (autoload--setup-output): New function,
2331 extracted from autoload--insert-text.
2332 (autoload--insert-text): Remove.
2333 (autoload--print-cookie-text): New function, extracted from
2334 autoload--insert-cookie-text.
2335 (autoload--insert-cookie-text): Remove.
2336 (autoload-generate-file-autoloads): Adjust calls accordingly.
2337
2338 * winner.el (winner-hook-installed-p): Remove.
2339 (winner-mode): Simplify accordingly.
2340
2341 * subr.el (add-to-list): Fix compiler-macro when `append' is
2342 not constant. Don't use `cl-member' for the base case.
2343
2344 * progmodes/subword.el: Fix boundary case (bug#13758).
2345 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
2346 own group.
2347 (subword-backward-regexp): Make it a constant.
2348 (subword-forward-internal): Don't treat a trailing capital as the
2349 beginning of a word.
2350
2351 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
2352
2353 * emacs-lisp/package.el (package-menu-mode): Don't modify the
2354 global value of tabulated-list-revert-hook (bug#14930).
2355
2356 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
2357
2358 * desktop.el: Require 'cl-lib.
2359 (desktop-before-saving-frames-functions): New hook.
2360 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
2361 for frames being saved. Rename from desktop--save-minibuffer-frames.
2362 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
2363 Do not save frames with non-nil `desktop-dont-save' parameter.
2364 Filter out deleted frames.
2365 (desktop--find-frame): Use cl-find-if.
2366 (desktop--select-frame): Use cl-(first|second|third) to access values
2367 of desktop-mini.
2368 (desktop--make-frame): Use cl-delete-if.
2369 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
2370 (desktop-restore-frames): Use cl-(first|second|third) to access values
2371 of desktop-mini. Look for visible frame at the end, not while
2372 restoring frames.
2373
2374 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
2375 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
2376 Use string-match-p, looking-at-p (bug#14927).
2377
2378 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
2379
2380 * desktop.el (desktop-saved-frame-states):
2381 Rename from desktop--saved-states; all users changed.
2382 (desktop-save-frames): Rename from desktop--save-frames.
2383 Do not save state to desktop file.
2384 (desktop-save): Save desktop-saved-frame-states to desktop file
2385 and reset to nil.
2386 (desktop-restoring-frames-p): New function.
2387 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
2388 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
2389 buffer-lists when restoring frames. Suggested by Martin Rudalics.
2390
2391 * desktop.el: Correctly restore iconified frames.
2392 (desktop--filter-iconified-position): New function.
2393 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
2394
2395 2013-07-20 Glenn Morris <rgm@gnu.org>
2396
2397 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
2398 Let `message' do the formatting.
2399 (def-gdb-preempt-display-buffer): Add explicit format.
2400
2401 * image-dired.el (image-dired-track-original-file):
2402 Use with-current-buffer.
2403 (image-dired-track-thumbnail): Use with-current-buffer.
2404 Avoid changing point of wrong window.
2405
2406 * image-dired.el (image-dired-track-original-file):
2407 Avoid changing point of wrong window. (Bug#14909)
2408
2409 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
2410
2411 * progmodes/gdb-mi.el (gdb-done-or-error):
2412 Guard against "%" in gdb output. (Bug#14127)
2413
2414 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
2415
2416 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
2417 (Bug#14826)
2418
2419 * international/mule.el (coding-system-iso-2022-flags): Fix last
2420 change.
2421
2422 2013-07-20 Kenichi Handa <handa@gnu.org>
2423
2424 * international/mule.el (coding-system-iso-2022-flags):
2425 Add `8-bit-level-4'. (Bug#8522)
2426
2427 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2428
2429 * net/shr.el (shr-mouse-browse-url): New command and keystroke
2430 (bug#14815).
2431
2432 * net/eww.el (eww-process-text-input): Allow inputting when the
2433 point is at the start of the line, as the properties aren't
2434 front-sticky.
2435
2436 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
2437 degenerate widths.
2438
2439 2013-07-19 Richard Stallman <rms@gnu.org>
2440
2441 * epa.el (epa-popup-info-window): Doc fix.
2442
2443 * subr.el (split-string): New arg TRIM.
2444
2445 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
2446
2447 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
2448 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
2449
2450 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
2451
2452 * filenotify.el (file-notify--library): Rename from
2453 `file-notify-support'. Do not autoload. Adapt all uses.
2454 (file-notify-supported-p): New defun.
2455
2456 * autorevert.el (auto-revert-use-notify):
2457 Use `file-notify-supported-p' instead of `file-notify-support'.
2458 Adapt docstring.
2459 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
2460
2461 * net/tramp.el (tramp-file-name-for-operation):
2462 Add `file-notify-supported-p'.
2463
2464 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
2465 New defun.
2466 (tramp-sh-file-name-handler-alist): Add it as handler for
2467 `file-notify-supported-p '.
2468
2469 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2470 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2471 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2472 Add `ignore' as handler for `file-notify-*' functions.
2473
2474 2013-07-17 Eli Zaretskii <eliz@gnu.org>
2475
2476 * simple.el (line-move-partial, line-move): Don't start vscroll or
2477 scroll-up if the current line is not taller than the window.
2478 (Bug#14881)
2479
2480 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
2481
2482 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
2483 highlight question marks in the method names as strings.
2484 (ruby-block-beg-keywords): Inline.
2485 (ruby-font-lock-keyword-beg-re): Extract from
2486 `ruby-font-lock-keywords'.
2487
2488 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
2489
2490 * frame.el (blink-cursor-blinks): New defcustom.
2491 (blink-cursor-blinks-done): New defvar.
2492 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
2493 (blink-cursor-timer-function): Check if number of blinks has been
2494 done on X and NS.
2495 (blink-cursor-suspend, blink-cursor-check): New defuns.
2496
2497 2013-07-15 Glenn Morris <rgm@gnu.org>
2498
2499 * edmacro.el (edmacro-format-keys): Fix previous change.
2500
2501 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
2502
2503 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
2504 The hack didn't work outside English locales anyway.
2505
2506 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
2507
2508 * simple.el (define-alternatives): Rename from alternatives-define,
2509 per RMS' suggestion.
2510
2511 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
2512
2513 * desktop.el (desktop-restore-frames): Change default to t.
2514 (desktop-restore-in-current-display): Now offer more options.
2515 (desktop-restoring-reuses-frames): New customization option.
2516 (desktop--saved-states): Doc fix.
2517 (desktop-filter-parameters-alist): New variable, renamed and expanded
2518 from desktop--excluded-frame-parameters.
2519 (desktop--target-display): New variable.
2520 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
2521 (desktop--filter-tty*, desktop--filter-*-color)
2522 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
2523 (desktop--filter-save-desktop-parm)
2524 (desktop-restore-in-original-display-p): New functions.
2525 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
2526 (desktop--save-minibuffer-frames): New function, inspired by a similar
2527 function from Martin Rudalics.
2528 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
2529 (desktop--restore-in-this-display-p): Remove.
2530 (desktop--find-frame): Rename from desktop--find-frame-in-display
2531 and add predicate argument.
2532 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
2533 (desktop--reuse-list): New variable.
2534 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
2535 New functions.
2536 (desktop--restore-frames): Add support for "minibuffer-special" frames.
2537
2538 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
2539
2540 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
2541
2542 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
2543
2544 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2545 Highlight conversion methods on Kernel.
2546
2547 2013-07-13 Alan Mackenzie <acm@muc.de>
2548
2549 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
2550 and comment it out. This out-commenting enables certain C++
2551 declarations to be parsed correctly.
2552
2553 2013-07-13 Eli Zaretskii <eliz@gnu.org>
2554
2555 * international/mule.el (define-coding-system): Doc fix.
2556
2557 * simple.el (default-font-height): Don't call font-info if the
2558 frame's default font didn't change since the frame was created.
2559 (Bug#14838)
2560
2561 2013-07-13 Leo Liu <sdl.web@gmail.com>
2562
2563 * ido.el (ido-read-file-name): Guard against non-symbol value.
2564
2565 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2566
2567 * progmodes/python.el (python-imenu--build-tree): Fix corner case
2568 in nested defuns.
2569
2570 2013-07-13 Leo Liu <sdl.web@gmail.com>
2571
2572 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
2573 ido-set-matches call. (Bug#6852)
2574
2575 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
2576
2577 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
2578 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
2579 Ruby 2.0.
2580 (ruby-font-lock-keywords): Distinguish calls to functions with
2581 module-like names from module references. Highlight character
2582 literals.
2583
2584 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
2585
2586 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
2587 (gdb-send): Handle continued commands. (Bug#14847)
2588
2589 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
2590
2591 * desktop.el (desktop--v2s): Remove unused local variable.
2592 (desktop-save-buffer): Make defvar-local; adjust docstring.
2593 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
2594 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
2595
2596 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
2597
2598 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
2599
2600 2013-07-12 Eli Zaretskii <eliz@gnu.org>
2601
2602 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
2603 (Bug#14842)
2604
2605 2013-07-12 Glenn Morris <rgm@gnu.org>
2606
2607 * doc-view.el: Require cl-lib at runtime too.
2608 (doc-view-remove-if): Remove.
2609 (doc-view-search-next-match, doc-view-search-previous-match):
2610 Use cl-remove-if.
2611
2612 * edmacro.el: Require cl-lib at runtime too.
2613 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
2614 (edmacro-mismatch, edmacro-subseq): Remove.
2615
2616 * shadowfile.el: Require cl-lib.
2617 (shadow-remove-if): Remove.
2618 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
2619 Use cl-remove-if.
2620
2621 * wid-edit.el: Require cl-lib.
2622 (widget-choose): Use cl-remove-if.
2623 (widget-remove-if): Remove.
2624
2625 * progmodes/ebrowse.el: Require cl-lib at runtime too.
2626 (ebrowse-delete-if-not): Remove.
2627 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
2628 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
2629 Use cl-delete-if-not.
2630
2631 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
2632
2633 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
2634 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
2635
2636 2013-07-12 Leo Liu <sdl.web@gmail.com>
2637
2638 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
2639
2640 2013-07-11 Glenn Morris <rgm@gnu.org>
2641
2642 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
2643 (edebug-gensym-index, edebug-gensym):
2644 Remove reimplementation of cl-gensym.
2645 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
2646
2647 * thumbs.el: Require cl-lib at run-time too.
2648 (thumbs-gensym-counter, thumbs-gensym):
2649 Remove reimplementation of cl-gensym.
2650 (thumbs-temp-file): Use cl-gensym.
2651
2652 * emacs-lisp/ert.el: Require cl-lib at runtime too.
2653 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
2654 (ert--intersection, ert--set-difference, ert--set-difference-eq)
2655 (ert--union, ert--gensym-counter, ert--gensym-counter)
2656 (ert--coerce-to-vector, ert--remove*, ert--string-position)
2657 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
2658 (ert-make-test-unbound, ert--expand-should-1)
2659 (ert--expand-should, ert--should-error-handle-error)
2660 (should-error, ert--explain-equal-rec)
2661 (ert--plist-difference-explanation, ert-select-tests)
2662 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
2663 Use cl-lib functions rather than reimplementations.
2664
2665 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
2666
2667 * net/tramp.el (tramp-methods): Extend docstring.
2668 (tramp-connection-timeout): New defcustom.
2669 (tramp-error-with-buffer): Reset timestamp only when appropriate.
2670 (with-tramp-progress-reporter): Simplify.
2671 (tramp-process-actions): Improve messages.
2672
2673 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2674 * net/tramp-sh.el (tramp-maybe-open-connection):
2675 Use `tramp-connection-timeout'.
2676 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
2677 (Bug#14808)
2678
2679 2013-07-11 Leo Liu <sdl.web@gmail.com>
2680
2681 * ido.el (ido-read-file-name): Conform to the requirements of
2682 read-file-name. (Bug#11861)
2683 (ido-read-directory-name): Conform to the requirements of
2684 read-directory-name.
2685
2686 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
2687
2688 * subr.el (delay-warning): New function.
2689
2690 2013-07-10 Eli Zaretskii <eliz@gnu.org>
2691
2692 * simple.el (default-line-height): New function.
2693 (line-move-partial, line-move): Use it instead of computing the
2694 line height inline.
2695 (line-move-partial): Always compute ROWH. If the last line is
2696 partially-visible, but its text is completely visible, allow
2697 cursor to enter such a partially-visible line.
2698
2699 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
2700
2701 Improve error messages. (Bug#14808)
2702
2703 * net/tramp.el (tramp-current-connection): New defvar, moved from
2704 tramp-sh.el.
2705 (tramp-message-show-progress-reporter-message): Remove, not
2706 needed anymore.
2707 (tramp-error-with-buffer): Show message in minibuffer.
2708 Discard input before waiting. Reset connection timestamp.
2709 (with-tramp-progress-reporter): Improve messages.
2710 (tramp-process-actions): Use progress reporter. Delete process in
2711 case of error. Improve messages.
2712
2713 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
2714 Call `tramp-error-with-buffer' with vector and buffer.
2715 (tramp-current-connection): Remove.
2716 (tramp-maybe-open-connection): The car of
2717 `tramp-current-connection' are the first 3 slots of the vector.
2718
2719 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
2720
2721 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
2722 inside continued strings.
2723
2724 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
2725
2726 Timestamp fixes for undo (Bug#14824).
2727 * files.el (clear-visited-file-modtime): Move here from fileio.c.
2728
2729 2013-07-10 Leo Liu <sdl.web@gmail.com>
2730
2731 * files.el (require-final-newline): Allow safe local value.
2732 (Bug#14834)
2733
2734 2013-07-09 Leo Liu <sdl.web@gmail.com>
2735
2736 * ido.el (ido-read-directory-name): Handle fallback.
2737 (ido-read-file-name): Update DIR to ido-current-directory.
2738 (Bug#1516)
2739 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
2740
2741 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
2742
2743 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
2744 "autoload". Remove "warn lower camel case" section, previously
2745 commented out. Highlight negation char. Do not highlight the
2746 target in singleton method definitions.
2747
2748 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
2749
2750 * faces.el (tty-setup-hook): Declare the hook.
2751
2752 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
2753 and detect when a guard/pred depends on local vars (bug#14773).
2754 (pcase--u1): Adjust caller.
2755
2756 2013-07-08 Eli Zaretskii <eliz@gnu.org>
2757
2758 * simple.el (line-move-partial, line-move): Account for
2759 line-spacing.
2760 (line-move-partial): Avoid setting vscroll when the last
2761 partially-visible line in window is of default height.
2762
2763 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2764
2765 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
2766 been used a while.
2767
2768 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
2769
2770 * subr.el (read-quoted-char): Remove unused local variable `char'.
2771
2772 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
2773
2774 * ediff.el (ediff-version): Version update.
2775 (ediff-files-command, ediff3-files-command, ediff-merge-command)
2776 (ediff-merge-with-ancestor-command, ediff-directories-command)
2777 (ediff-directories3-command, ediff-merge-directories-command)
2778 (ediff-merge-directories-with-ancestor-command): New functions.
2779 All are command-line interfaces to ediff: to facilitate calling
2780 Emacs with the appropriate ediff functions invoked.
2781
2782 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
2783 (viper-save-kill-buffer): Check if buffer is modified.
2784
2785 * viper.el (viper-version): Version update.
2786 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
2787
2788 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
2789
2790 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
2791 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
2792 (viper-intercept-ESC-key): Simplify.
2793 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
2794 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
2795 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
2796 (viper-setup-ESC-to-escape): New functions.
2797 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
2798 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
2799
2800 2013-07-07 Eli Zaretskii <eliz@gnu.org>
2801
2802 * simple.el (default-font-height, window-screen-lines):
2803 New functions.
2804 (line-move, line-move-partial): Use them instead of
2805 frame-char-height and window-text-height. This makes scrolling
2806 text smoother when the buffer's default face uses a font that is
2807 different from the frame's default font.
2808
2809 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
2810
2811 * files.el (write-file): Do not display confirm dialog for NS,
2812 it does its own dialog, which can't be cancelled (Bug#14578).
2813
2814 2013-07-06 Eli Zaretskii <eliz@gnu.org>
2815
2816 * simple.el (line-move-partial): Adjust the row returned by
2817 posn-at-point for the current window-vscroll. (Bug#14567)
2818
2819 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
2820
2821 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
2822 (tramp-sh-file-inotifywait-process-filter): Handle file names with
2823 spaces.
2824
2825 2013-07-06 Martin Rudalics <rudalics@gmx.at>
2826
2827 * window.el (window-state-put-stale-windows): New variable.
2828 (window--state-put-2): Save list of windows without matching buffer.
2829 (window-state-put): Remove "bufferless" windows if possible.
2830
2831 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
2832
2833 * simple.el (alternatives-define): Remove leftover :group keyword.
2834 Tweak docstring.
2835
2836 2013-07-06 Leo Liu <sdl.web@gmail.com>
2837
2838 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
2839 (ido-enable-virtual-buffers): New variable.
2840 (ido-buffer-internal, ido-toggle-virtual-buffers)
2841 (ido-make-buffer-list): Use it.
2842 (ido-exhibit): Support turning on and off virtual buffers
2843 automatically.
2844
2845 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
2846
2847 * simple.el (alternatives-define): New macro.
2848
2849 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
2850
2851 * subr.el (read-quoted-char): Use read-key.
2852 (sit-for): Let read-event decode tty input (bug#14782).
2853
2854 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
2855
2856 * calendar/todo-mode.el: Add handling of file deletion, both by
2857 mode command and externally. Fix various related bugs.
2858 Clarify Commentary and improve some documentation strings and code.
2859 (todo-delete-file): New command.
2860 (todo-check-file): New function.
2861 (todo-show): Handle external deletion of the file we're trying to
2862 show (bug#14688). Replace called-interactively-p by an optional
2863 prefix argument to avoid problematic interaction with catch form
2864 when byte compiled (bug#14702).
2865 (todo-quit): Handle external deletion of the archive's todo file.
2866 Make sure the buffer that was visiting the archive file is still
2867 live before trying to bury it.
2868 (todo-category-completions): Handle external deletion of any
2869 category completion files.
2870 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
2871 of todo files, in case of external deletion.
2872 (todo-add-file): Replace unnecessary setq by let-binding.
2873 (todo-find-archive): Check whether there are any archives.
2874 Replace unnecessary setq by let-binding.
2875 (todo-archive-done-item): Use find-file-noselect to get the
2876 archive buffer whether or not the archive already exists.
2877 Remove superfluous code. Use file size instead of buffer-file-name to
2878 check if the archive is new; if it is, update list of archives.
2879 (todo-default-todo-file): Allow nil to be a valid value for when
2880 there are no todo files.
2881 (todo-reevaluate-default-file-defcustom): Use corrected definition
2882 of todo-default-todo-file.
2883 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
2884 (todo-delete-category, todo-show-categories-table)
2885 (todo-category-number): Clarify comment.
2886 (todo-filter-items): Clarify documentation string.
2887 (todo-show-current-file, todo-display-as-todo-file)
2888 (todo-reset-and-enable-done-separator): Tweak documentation string.
2889 (todo-done-separator): Make separator length window-width, since
2890 bug#2749 is now fixed.
2891
2892 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
2893
2894 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
2895 Support both "gvfs-monitor-dir" and "inotifywait".
2896 (tramp-sh-file-inotifywait-process-filter): Rename from
2897 `tramp-sh-file-notify-process-filter'.
2898 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2899 (tramp-get-remote-gvfs-monitor-dir): New defuns.
2900
2901 2013-07-05 Leo Liu <sdl.web@gmail.com>
2902
2903 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
2904
2905 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2906
2907 * frame.el (display-pixel-height, display-pixel-width)
2908 (display-mm-height, display-mm-width): Mention behavior on
2909 multi-monitor setups in docstrings.
2910 (w32-display-monitor-attributes-list): Declare function.
2911 (display-monitor-attributes-list): Use it.
2912
2913 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
2914
2915 * filenotify.el: New package.
2916
2917 * autorevert.el (top): Require filenotify.el.
2918 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
2919 instead.
2920 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2921 (auto-revert-notify-handler): Use `file-notify-*' functions.
2922
2923 * subr.el (file-notify-handle-event): Move function to filenotify.el.
2924
2925 * net/tramp.el (tramp-file-name-for-operation):
2926 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
2927
2928 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
2929 for `file-notify-add-watch' and `file-notify-rm-watch'.
2930 (tramp-process-sentinel): Improve trace.
2931 (tramp-sh-handle-file-notify-add-watch)
2932 (tramp-sh-file-notify-process-filter)
2933 (tramp-sh-handle-file-notify-rm-watch)
2934 (tramp-get-remote-inotifywait): New defuns.
2935
2936 2013-07-03 Juri Linkov <juri@jurta.org>
2937
2938 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
2939 call of `occur-read-primary-args' to interactive spec.
2940
2941 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
2942 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
2943
2944 2013-07-03 Matthias Meulien <orontee@gmail.com>
2945
2946 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
2947 `Buffer-menu-multi-occur'. Add it to the menu.
2948 (Buffer-menu-mode): Document it in docstring.
2949 (Buffer-menu-multi-occur): New command. (Bug#14673)
2950
2951 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
2952
2953 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
2954 keywords and built-ins.
2955
2956 2013-07-03 Glenn Morris <rgm@gnu.org>
2957
2958 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
2959
2960 Make info-xref checks case-sensitive by default
2961 * info.el (Info-find-node, Info-find-in-tag-table)
2962 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
2963 Add option for exact case matching of nodes.
2964 * info-xref.el (info-xref): New custom group.
2965 (info-xref-case-fold): New option.
2966 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
2967
2968 2013-07-03 Leo Liu <sdl.web@gmail.com>
2969
2970 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
2971
2972 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
2973
2974 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
2975 middle of block statement initially, lower the depth. Remove
2976 FIXME comment, not longer valid. Remove middle of block statement
2977 detection, no need to do that anymore since we've been using
2978 `ruby-parse-region' here.
2979
2980 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
2981
2982 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
2983
2984 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
2985
2986 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
2987
2988 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
2989
2990 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
2991 (desktop-restore-in-current-display): New customization option.
2992 (desktop--excluded-frame-parameters): Add `font'.
2993 (desktop--save-frames): Rename from desktop--save-windows.
2994 (desktop--restore-in-this-display-p): New function.
2995 (desktop--make-full-frame): Remove unwanted width/height from
2996 full(width|height) frames.
2997 (desktop--restore-frames): Rename from desktop--restore-windows.
2998 Obey desktop-restore-current-display. Do not delete old frames or
2999 select a new frame unless we were able to restore at least one frame.
3000
3001 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
3002
3003 * files.el (find-file-noselect): Simplify conditional expression.
3004
3005 * remember.el (remember-append-to-file):
3006 Don't mix `find-buffer-visiting' and `get-file-buffer'.
3007
3008 Add `remember-notes' function to store random notes across Emacs
3009 restarts.
3010 * remember.el (remember-data-file): Add :set callback to affect
3011 notes buffer (if any).
3012 (remember-notes): New command.
3013 (remember-notes-buffer-name, bury-remember-notes-on-kill):
3014 New defcustoms for the `remember-notes' function.
3015 (remember-notes-save-and-bury-buffer): New command.
3016 (remember-notes-mode-map): New variable.
3017 (remember-mode): New minor mode.
3018 (remember-notes--kill-buffer-query): New function.
3019 * startup.el (initial-buffer-choice): Add notes to custom type.
3020
3021 2013-06-30 Eli Zaretskii <eliz@gnu.org>
3022
3023 * bindings.el (right-char, left-char): Don't call sit-for, this is
3024 no longer needed. Use arithmetic comparison only for numerical
3025 arguments.
3026
3027 * international/mule-cmds.el (select-safe-coding-system):
3028 Handle the case of FROM being a string correctly. (Bug#14755)
3029
3030 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3031
3032 * net/shr.el (shr-make-table-1): Add a sanity check that allows
3033 progression on degenerate tables.
3034 (shr-rescale-image): ImageMagick animated images currently don't work.
3035
3036 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
3037
3038 Some fixes and improvements for desktop frame restoration.
3039 It is still experimental and disabled by default.
3040 * desktop.el (desktop--save-windows): Put the selected frame at
3041 the head of the list.
3042 (desktop--make-full-frame): New function.
3043 (desktop--restore-windows): Try to re-select the frame that was
3044 selected upon saving. Do not abort if some frames fail to restore,
3045 just show an error message and continue. Set up maximized frames
3046 so they have default non-maximized dimensions.
3047
3048 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
3049
3050 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3051 Don't start heredoc inside a string or comment.
3052
3053 2013-06-29 Eli Zaretskii <eliz@gnu.org>
3054
3055 * bindings.el (visual-order-cursor-movement): New defcustom.
3056 (right-char, left-char): Provide visual-order cursor motion by
3057 calling move-point-visually. Update the doc strings.
3058
3059 2013-06-28 Kenichi Handa <handa@gnu.org>
3060
3061 * international/mule.el (define-coding-system): New coding system
3062 properties :inhibit-null-byte-detection,
3063 :inhibit-iso-escape-detection, and :prefer-utf-8.
3064 (set-buffer-file-coding-system): If :charset-list property of
3065 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
3066 appropriate for setting.
3067
3068 * international/mule-cmds.el (select-safe-coding-system):
3069 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
3070 multibyte characters, return utf-8 (or one of its siblings).
3071
3072 * international/mule-conf.el (prefer-utf-8): New coding system.
3073 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
3074 files.
3075
3076 2013-06-28 Ivan Kanis <ivan@kanis.fr>
3077
3078 * net/shr.el (shr-render-region): New function.
3079
3080 * net/eww.el: Autoload `eww-browse-url'.
3081
3082 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
3083
3084 * emacs-lisp/package-x.el (package-upload-buffer-internal):
3085 Adapt to `package-desc-version' being a list.
3086 Use `package--ac-desc-version' to retrieve version from a package
3087 archive element.
3088
3089 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
3090
3091 New experimental feature to save&restore window and frame setup.
3092 * desktop.el (desktop-save-windows): New defcustom.
3093 (desktop--saved-states): New var.
3094 (desktop--excluded-frame-parameters): New defconst.
3095 (desktop--filter-frame-parms, desktop--find-frame-in-display)
3096 (desktop--restore-windows, desktop--save-windows): New functions.
3097 (desktop-save): Call `desktop--save-windows'.
3098 (desktop-read): Call `desktop--restore-windows'.
3099
3100 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
3101
3102 * net/shr.el (add-face-text-property): Remove compat definition.
3103
3104 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
3105
3106 * info.el (Info-try-follow-nearest-node): Move search for footnote
3107 above search for node name to prevent missing a footnote (bug#14717).
3108
3109 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
3110
3111 * obsolete/otodo-mode.el: Add obsolescence info to file header.
3112
3113 2013-06-27 Leo Liu <sdl.web@gmail.com>
3114
3115 * net/eww.el (eww-read-bookmarks): Check file size.
3116
3117 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
3118
3119 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
3120 advice--pending if newdef is nil or an autoload (bug#13820).
3121 (advice-mapc): New function.
3122
3123 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
3124
3125 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
3126 probably.
3127 (eww-mode-map): Add a menu bar.
3128 (eww-add-bookmark): New command.
3129 (eww-bookmark-mode): New mode and commands.
3130 (eww-add-bookmark): Remove newlines from the title.
3131 (eww-bookmark-browse): Don't bug out if it's the only window.
3132
3133 2013-06-26 Glenn Morris <rgm@gnu.org>
3134
3135 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
3136 (hfy-size): Handle ttys. (Bug#14668)
3137
3138 * info-xref.el: Update for Texinfo 5 change in *note format.
3139 (info-xref-node-re, info-xref-note-re): New constants.
3140 (info-xref-check-buffer): Use info-xref-note-re.
3141
3142 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
3143
3144 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
3145
3146 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
3147 nil terminate the loop (bug#14718).
3148
3149 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3150
3151 * net/eww.el: Rework history traversal. When going forward/back,
3152 put these actions into the history, too, so that they can be
3153 replayed.
3154 (eww-render): Move the history reset to the correct buffer.
3155
3156 2013-06-25 Juri Linkov <juri@jurta.org>
3157
3158 * files-x.el (modify-dir-local-variable): Change the header comment
3159 in the file with directory local variables. (Bug#14692)
3160
3161 * files-x.el (read-file-local-variable-value): Add `default'.
3162 (Bug#14710)
3163
3164 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3165
3166 * net/eww.el (eww-make-unique-file-name): Create a unique file
3167 name before saving to entering `y' accidentally asynchronously.
3168
3169 2013-06-25 Ivan Kanis <ivan@kanis.fr>
3170
3171 * net/eww.el (eww-download): New command and keystroke.
3172
3173 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3174
3175 * net/eww.el (eww-copy-page-url): Change name of command.
3176
3177 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
3178 be more consistent with Info and dired.
3179
3180 * net/eww.el (eww-mode-map): Ditto.
3181
3182 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
3183
3184 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
3185 packages from archives.
3186 (package-archive-contents): Change format; include obsolete packages.
3187 (package-desc): Use `dir' to mark builtin packages.
3188 (package--from-builtin): Set the `dir' field to `builtin'.
3189 (generated-autoload-file, version-control): Declare.
3190 (package-compute-transaction): Change first arg and return value to be
3191 lists of package-descs. Adjust to new package-archive-contents format.
3192 (package--add-to-archive-contents): Adjust to new
3193 package-archive-contents format.
3194 (package-download-transaction): Arg is now a list of package-descs.
3195 (package-install): If `pkg' is a package name, pass it as
3196 a requirement, so it is subject to the usual (e.g. disabled) checks.
3197 (describe-package): Accept package-desc as well.
3198 (describe-package-1): Describe a specific package-desc. Add links to
3199 other package-descs for the same package name.
3200 (package-menu-describe-package): Pass the actual package-desc.
3201 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
3202 works correctly.
3203 (package-desc-status): New function.
3204 (package-menu--refresh): New function, extracted
3205 from package-menu--generate.
3206 (package-menu--generate): Use it.
3207 (package-delete): Update package-alist.
3208 (package-menu-execute): Don't call package-initialize.
3209
3210 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
3211 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
3212 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
3213 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
3214 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
3215 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
3216
3217 2013-06-25 Martin Rudalics <rudalics@gmx.at>
3218
3219 * window.el (window--state-get-1): Workaround for bug#14527.
3220 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
3221
3222 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3223
3224 * net/eww.el (eww-back-url): Implement the history by stashing all
3225 the data into a list.
3226 (eww-forward-url): Allow going forward in the history, too.
3227
3228 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
3229
3230 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
3231 for values and use read--expression for expressions (bug#14710).
3232 (read-file-local-variable): Avoid setq.
3233 (read-file-local-variable-mode): Use minor-mode-list.
3234
3235 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3236
3237 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
3238 for DOI URLs.
3239
3240 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3241
3242 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
3243 Update imenu-support when dialect changes.
3244
3245 2013-06-25 Leo Liu <sdl.web@gmail.com>
3246
3247 * ido.el (ido-read-internal): Allow forward slash on windows.
3248
3249 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3250
3251 * net/eww.el (eww): Start of strings is \\`, not ^.
3252
3253 2013-06-24 Ivan Kanis <ivan@kanis.fr>
3254
3255 * net/shr.el (shr-browse-url): Fix interactive spec.
3256
3257 * net/eww.el (eww): Add a trailing slash to domain names.
3258
3259 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
3260
3261 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
3262
3263 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3264
3265 * net/shr.el (shr-browse-url): Use an external browser if given a
3266 prefix.
3267
3268 * net/eww.el (eww-external-browser): Move to shr.
3269
3270 2013-06-24 Ivan Kanis <ivan@kanis.fr>
3271
3272 * net/eww.el (eww): Work more correctly for file: URLs.
3273 (eww-detect-charset): Allow quoted charsets.
3274 (eww-yank-page-url): New command and keystroke.
3275
3276 2013-06-24 Daiki Ueno <ueno@gnu.org>
3277
3278 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
3279 file name of gpg executable.
3280 (epg-context-program): New function.
3281 (epg-context-home-directory): New function.
3282 (epg-context-set-program): New function.
3283 (epg-context-set-home-directory): New function.
3284 (epg--start): Use `epg-context-program' instead of
3285 'epg-gpg-program'.
3286 (epg--list-keys-1): Likewise.
3287
3288 2013-06-24 Leo Liu <sdl.web@gmail.com>
3289
3290 * ido.el (ido-read-internal): Fix bug#14620.
3291
3292 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
3293
3294 * faces.el (face-documentation): Simplify.
3295 (read-face-attribute, tty-find-type, x-resolve-font-name):
3296 Use `string-match-p'.
3297 (list-faces-display): Use `string-match-p'. Simplify.
3298 (face-spec-recalc): Check face to avoid face alias loops.
3299 (read-color): Use `string-match-p' and non-capturing parenthesis.
3300
3301 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3302
3303 * net/shr.el (shr-rescale-image): Use the new
3304 :max-width/:max-height functionality.
3305
3306 2013-06-23 Ivan Kanis <ivan@kanis.fr>
3307
3308 * net/eww.el (eww-search-prefix): New variable.
3309 (eww): Use it.
3310 (eww-external-browser): New variable.
3311 (eww-mode-map): New keystroke.
3312 (eww-browse-with-external-browser): New command.
3313
3314 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
3315
3316 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
3317
3318 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
3319 Don't skip aligning the next header field when padding is 0;
3320 otherwise, field width is not respected unless the title is as
3321 wide as the field.
3322
3323 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
3324
3325 * emacs-lisp/package.el (package-el-version): Remove.
3326 (package-process-define-package): Fix inf-loop.
3327 (package-install): Allow symbols as arguments again.
3328
3329 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
3330
3331 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
3332 add some more keyword-like methods.
3333 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
3334
3335 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
3336
3337 * bs.el (bs-buffer-show-mark): Make defvar-local.
3338 (bs-mode): Use setq-local.
3339
3340 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
3341 (emacs-lock--try-unlocking): Make defvar-local.
3342
3343 2013-06-22 Glenn Morris <rgm@gnu.org>
3344
3345 * play/cookie1.el (cookie-apropos): Minor simplification.
3346
3347 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
3348
3349 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
3350
3351 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
3352 `regexp-opt', it breaks the build during dumping.
3353
3354 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
3355
3356 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3357 Highlight keyword-like methods on Kernel and Module with
3358 font-lock-builtin-face.
3359 (auto-mode-alist): Consolidate different entries into one regexp
3360 and add more *file-s.
3361
3362 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
3363
3364 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
3365
3366 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
3367 (diary-entry): Use it in the action of this button type instead of
3368 diary-goto-entry.
3369
3370 * calendar/todo-mode.el: New version.
3371 (todo-add-category): Append new category to end of file and give
3372 it the highest number, instead of putting it at the beginning and
3373 giving it 0. Incorporate noninteractive functionality.
3374 (todo-forward-category): Adapt to 1-based category numbering.
3375 Allow skipping over archived categories.
3376 (todo-backward-category): Derive from todo-forward-category.
3377 (todo-backward-item, todo-forward-item): Make noninteractive and
3378 delegate interactive part to new commands. Make sensitive to done items.
3379 (todo-categories): Make value an alist of category names and
3380 vectors of item counts.
3381 (todo-category-beg): Make a defconst.
3382 (todo-category-number): Use 1 instead of 0 as initial value.
3383 (todo-category-select): Make sensitive to overlays, optional item
3384 highlighting and done items.
3385 (todo-delete-item): Make sensitive to overlays and marked and done items.
3386 (todo-edit-item): Make sensitive to overlays and editing of
3387 date/time header optional. Add format checks.
3388 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
3389 no-op if point is not on an item. Advertise using todo-edit-quit.
3390 (todo-edit-mode): Make sensitive to new format, font-locking, and
3391 multiple todo files.
3392 (todo-insert-item, todo-insert-item-here): Derive from
3393 todo-basic-insert-item and extend functionality.
3394 (todo-item-end, todo-item-start): Make sensitive to done items.
3395 (todo-item-string): Don't return text properties. Restore point.
3396 (todo-jump-to-category): Make sensitive to multiple todo files and
3397 todo archives. Use extended category completion.
3398 (todo-lower-item, todo-raise-item): Rename to *-priority and
3399 derive from todo-set-item-priority.
3400 (todo-mode): Derive from special-mode. Make sensitive to new
3401 format, font-locking and multiple todo files. Make read-only.
3402 (todo-mode-map): Don't suppress digit keys, so they can supply
3403 prefix arguments. Add many new key bindings.
3404 (todo-prefix): Insert as an overlay instead of file text.
3405 Change semantics from diary date expression to purely visual mark.
3406 (todo-print): Rename to todo-print-buffer. Make buffer display
3407 features printable. Remove option to restrict number of items
3408 printed. Add option to print to file.
3409 (todo-print-function): Rename to todo-print-buffer-function.
3410 (todo-quit): Extend to handle exiting new todo modes.
3411 (todo-remove-item): Make sensitive to overlays.
3412 (todo-save): Extend to buffers of filtered items.
3413 (todo-show): Make sensitive to done items, multiple todo files and
3414 new todo modes. Offer to convert legacy todo file before creating
3415 first new todo file.
3416 (todo-show-priorities): Rename to todo-top-priorities.
3417 Change semantics of value 0.
3418 (todo-top-priorities): Rename to todo-filter-top-priorities,
3419 derive from todo-filter-items and extend functionality.
3420 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
3421 and extend functionality to other types of filtered items.
3422 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
3423 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
3424 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
3425 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
3426 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
3427 (todo-edit-mode-hook, todo-entry-prefix-function)
3428 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
3429 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
3430 (todo-initials, todo-insert-threshold, todo-item-string-start)
3431 (todo-line-string, todo-menu, todo-mode-hook)
3432 (todo-more-important-p, todo-previous-answer, todo-previous-line)
3433 (todo-print-priorities, todo-remove-separator)
3434 (todo-save-top-priorities-too, todo-string-count-lines)
3435 (todo-string-multiline-p, todo-time-string-format)
3436 (todo-tmp-buffer-name): Remove.
3437 (todo-add-file, todo-archive-done-item, todo-choose-archive)
3438 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
3439 (todo-edit-category-diary-inclusion)
3440 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
3441 (todo-edit-file, todo-edit-item-date-day)
3442 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
3443 (todo-edit-item-date-month, todo-edit-item-date-to-today)
3444 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
3445 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
3446 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
3447 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
3448 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
3449 (todo-filter-top-priorities-multifile, todo-find-archive)
3450 (todo-find-filtered-items-file, todo-go-to-source-item)
3451 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
3452 (todo-jump-to-archive-category, todo-lower-category)
3453 (todo-mark-category, todo-marked-item-p, todo-merge-category)
3454 (todo-move-category, todo-move-item, todo-next-button)
3455 (todo-next-item, todo-padded-string, todo-powerset)
3456 (todo-previous-button, todo-previous-item)
3457 (todo-print-buffer-to-file, todo-raise-category)
3458 (todo-rename-category, todo-repair-categories-sexp, todo-search)
3459 (todo-set-category-number, todo-set-item-priority)
3460 (todo-set-top-priorities-in-category)
3461 (todo-set-top-priorities-in-file, todo-show-categories-table)
3462 (todo-sort-categories-alphabetically-or-numerically)
3463 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
3464 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
3465 (todo-toggle-item-header, todo-toggle-item-highlighting)
3466 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
3467 (todo-toggle-view-done-items, todo-toggle-view-done-only)
3468 (todo-unarchive-items, todo-unmark-category): New commands.
3469 (todo-absolute-file-name, todo-add-to-buffer-list)
3470 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
3471 (todo-basic-insert-item, todo-category-completions)
3472 (todo-category-number, todo-category-string-matcher-1)
3473 (todo-category-string-matcher-2, todo-check-filtered-items-file)
3474 (todo-check-format, todo-clear-matches)
3475 (todo-comment-string-matcher, todo-convert-legacy-date-time)
3476 (todo-current-category, todo-date-string-matcher)
3477 (todo-define-insertion-command, todo-diary-expired-matcher)
3478 (todo-diary-goto-entry, todo-diary-item-p)
3479 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
3480 (todo-display-categories, todo-display-sorted, todo-done-item-p)
3481 (todo-done-item-section-p, todo-done-separator)
3482 (todo-done-string-matcher, todo-files, todo-filter-items)
3483 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
3484 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
3485 (todo-insert-category-line, todo-insert-item-from-calendar)
3486 (todo-insert-sort-button, todo-insert-with-overlays)
3487 (todo-insertion-command-name, todo-insertion-key-bindings)
3488 (todo-label-to-key, todo-longest-category-name-length)
3489 (todo-make-categories-list, todo-mode-external-set)
3490 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
3491 (todo-modes-set-3, todo-multiple-filter-files)
3492 (todo-nondiary-marker-matcher, todo-prefix-overlays)
3493 (todo-read-category, todo-read-date, todo-read-dayname)
3494 (todo-read-file-name, todo-read-time)
3495 (todo-reevaluate-category-completions-files-defcustom)
3496 (todo-reevaluate-default-file-defcustom)
3497 (todo-reevaluate-filelist-defcustoms)
3498 (todo-reevaluate-filter-files-defcustom)
3499 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
3500 (todo-reset-done-separator, todo-reset-done-separator-string)
3501 (todo-reset-done-string, todo-reset-global-current-todo-file)
3502 (todo-reset-highlight-item, todo-reset-nondiary-marker)
3503 (todo-reset-prefix, todo-set-categories)
3504 (todo-set-date-from-calendar, todo-set-show-current-file)
3505 (todo-set-top-priorities, todo-short-file-name)
3506 (todo-show-current-file, todo-sort, todo-time-string-matcher)
3507 (todo-total-item-counts, todo-update-buffer-list)
3508 (todo-update-categories-display, todo-update-categories-sexp)
3509 (todo-update-count, todo-validate-name, todo-y-or-n-p):
3510 New functions.
3511 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
3512 New major modes.
3513 (todo-categories, todo-display, todo-edit, todo-faces)
3514 (todo-filtered): New defgroups.
3515 (todo-archived-only, todo-button, todo-category-string, todo-date)
3516 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
3517 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
3518 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
3519 (todo-add-item-if-new-category, todo-always-add-time-string)
3520 (todo-categories-align, todo-categories-archived-label)
3521 (todo-categories-category-label, todo-categories-diary-label)
3522 (todo-categories-done-label, todo-categories-number-separator)
3523 (todo-categories-todo-label, todo-categories-totals-label)
3524 (todo-category-completions-files, todo-completion-ignore-case)
3525 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
3526 (todo-done-separator-string, todo-done-string)
3527 (todo-files-function, todo-filter-done-items, todo-filter-files)
3528 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
3529 (todo-initial-category, todo-initial-file, todo-item-mark)
3530 (todo-legacy-date-time-regexp, todo-mode-line-function)
3531 (todo-nondiary-marker, todo-number-prefix)
3532 (todo-print-buffer-function, todo-show-current-file)
3533 (todo-show-done-only, todo-show-first, todo-show-with-done)
3534 (todo-skip-archived-categories, todo-top-priorities-overrides)
3535 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
3536 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
3537 New defcustoms.
3538 (todo-category-done, todo-date-pattern, todo-date-string-start)
3539 (todo-diary-items-buffer, todo-done-string-start)
3540 (todo-filtered-items-buffer, todo-item-start)
3541 (todo-month-abbrev-array, todo-month-name-array)
3542 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
3543 (todo-top-priorities-buffer): New defconsts.
3544 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
3545 (todo-categories-with-marks, todo-category-string-face)
3546 (todo-comment-face, todo-comment-string, todo-current-todo-file)
3547 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
3548 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
3549 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
3550 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
3551 (todo-font-lock-keywords, todo-global-current-todo-file)
3552 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
3553 (todo-insertion-commands-args)
3554 (todo-insertion-commands-args-genlist)
3555 (todo-insertion-commands-names, todo-insertion-map)
3556 (todo-key-bindings-t, todo-key-bindings-t+a)
3557 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
3558 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
3559 (todo-nondiary-face, todo-print-buffer, todo-time-face)
3560 (todo-visited): New variables.
3561
3562 2013-06-21 Glenn Morris <rgm@gnu.org>
3563
3564 * play/cookie1.el (cookie-apropos): Add optional display argument.
3565 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
3566 (psychoanalyze-pinhead): Use cookie-doctor.
3567
3568 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
3569
3570 * emacs-lisp/package.el (tar-get-file-descriptor)
3571 (tar--extract): Declare.
3572
3573 2013-06-21 Eduard Wiebe <usenet@pusto.de>
3574
3575 Extend flymake's warning predicate to be a function (bug#14217).
3576 * progmodes/flymake.el (flymake-warning-predicate): New.
3577 (flymake-parse-line): Use it.
3578 (flymake-warning-re): Make obsolete alias to
3579 `flymake-warning-predicate'.
3580
3581 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
3582
3583 * emacs-lisp/package.el (package-alist): Include obsolete packages.
3584 (package-obsolete-list): Remove.
3585 (package-activate): Remove min-version argument. Add `force' argument.
3586 Adjust to new package-alist format.
3587 (package-mark-obsolete): Remove.
3588 (package-unpack): Force reload of the package's autoloads.
3589 (package-installed-p): Check builtins if the installed package is not
3590 recent enough.
3591 (package-initialize): Don't reset package-obsolete-list.
3592 Don't specify which package version to activate.
3593 (package-process-define-package, describe-package-1)
3594 (package-menu--generate): Adjust to new package-alist format.
3595
3596 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
3597
3598 * allout-widgets.el (allout-widgets-mode-off)
3599 (allout-widgets-mode-on, allout-widgets-pre-command-business)
3600 (allout-widgets-post-command-business)
3601 (allout-widgets-after-copy-or-kill-function)
3602 (allout-widgets-after-undo-function, allout-test-range-overlaps)
3603 (allout-decorate-item-and-context)
3604 (allout-graphics-modification-handler): Fix typos in docstrings.
3605 (allout-get-or-create-parent-widget): Use `looking-at-p'.
3606
3607 * cmuscheme.el (scheme-start-file): Doc fix.
3608 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
3609 (scheme-input-filter): Use `string-match-p'.
3610
3611 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
3612
3613 * dired-x.el: Use Dired consistently in docstrings.
3614
3615 * dired.el: Use Dired consistently in docstrings.
3616 (dired-readin, dired-mode): Use `setq-local'.
3617 (dired-switches-alist): Make defvar-local.
3618 (dired-buffers-for-dir): Use `zerop'.
3619 (dired-safe-switches-p, dired-switches-escape-p)
3620 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
3621 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
3622 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
3623 (dired-goto-next-nontrivial-file): Use `string-match-p'.
3624 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
3625 (dired-toggle-marks, dired-mark-files-containing-regexp)
3626 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
3627 (dired-flag-auto-save-files, dired-flag-backup-files):
3628 Use `looking-at-p'.
3629 (dired-mark-files-regexp, dired-build-subdir-alist):
3630 Use `string-match-p', `looking-at-p'.
3631
3632 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
3633 (direct-print-region-helper): Use `string-match-p'.
3634
3635 2013-06-21 Leo Liu <sdl.web@gmail.com>
3636
3637 * comint.el (comint-redirect-results-list-from-process):
3638 Fix infinite loop.
3639
3640 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3641
3642 * net/eww.el (eww-update-header-line-format): Quote % characters.
3643
3644 2013-06-21 Glenn Morris <rgm@gnu.org>
3645
3646 * play/cookie1.el (cookie): New custom group.
3647 (cookie-file): New option.
3648 (cookie-check-file): New function.
3649 (cookie): Make it interactive. Make start and end messages optional.
3650 Interactively, display the result. Default to cookie-file.
3651 (cookie-insert): Default to cookie-file.
3652 (cookie-snarf): Make start and end messages optional.
3653 Default to cookie-file. Use with-temp-buffer.
3654 (cookie-read): Rename from read-cookie.
3655 Make start and end messages optional. Default to cookie-file.
3656 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
3657 Do not autoload it.
3658 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
3659 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
3660
3661 2013-06-21 Leo Liu <sdl.web@gmail.com>
3662
3663 * progmodes/octave.el (octave-mode): Backward compatibility fix.
3664
3665 2013-06-21 Glenn Morris <rgm@gnu.org>
3666
3667 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
3668
3669 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
3670 Daniel Hackney <dan@haxney.org>
3671
3672 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
3673 Consolidate the single-file vs tarball code.
3674 (package-desc-suffix): New function.
3675 (package-desc-full-name): Don't bother inlining it.
3676 (package-load-descriptor): Return the new package-desc.
3677 (package-mark-obsolete): Remove unused arg `package'.
3678 (package-unpack): Make it work for single files as well.
3679 Make it update package-alist.
3680 (package--make-autoloads-and-stuff): Rename from
3681 package--make-autoloads-and-compile. Don't compile any more.
3682 (package--compile): New function.
3683 (package-generate-description-file): New function, extracted from
3684 package-unpack-single.
3685 (package-unpack-single): Remove.
3686 (package--with-work-buffer): Add indentation and debugging info.
3687 (package-download-single): Remove.
3688 (package-install-from-archive): Rename from package-download-tar, make
3689 it take a pkg-desc, and make it work for single files as well.
3690 (package-download-transaction): Simplify.
3691 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
3692 external tar program.
3693 (package-install-from-buffer): Remove `pkg-desc' argument.
3694 Use package-tar-file-info for tar-mode buffers.
3695 (package-install-file): Simplify accordingly.
3696 (package-archive-base): Change to take a pkg-desc.
3697 * tar-mode.el (tar--check-descriptor): New function, extracted from
3698 tar-get-descriptor.
3699 (tar-get-descriptor): Use it.
3700 (tar-get-file-descriptor): New function.
3701 (tar--extract): New function, extracted from tar-extract.
3702 (tar--extract): Use it.
3703 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
3704 case the summary uses non-ascii. Adjust to new calling convention of
3705 package-tar-file-info.
3706
3707 2013-06-21 Leo Liu <sdl.web@gmail.com>
3708
3709 * comint.el (comint-redirect-results-list-from-process):
3710 Fix random delay. (Bug#14681)
3711
3712 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
3713
3714 * profiler.el (profiler-format-number): Use log, not log10.
3715
3716 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
3717
3718 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
3719
3720 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
3721
3722 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
3723 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
3724 yet available.
3725 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
3726 (AUTOGENEL): ... here.
3727 * emacs-lisp/cl-macs.el (cl--sublis): New function.
3728 (cl--defsubst-expand): Use it.
3729
3730 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
3731
3732 * subr.el (log10): Move here from C code, and declare as obsolete.
3733 All uses of (log10 X) replaced with (log X 10).
3734
3735 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
3736
3737 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
3738 Declare with `defvar-local'.
3739 (tabulated-list-use-header-line, tabulated-list-entries)
3740 (tabulated-list-padding, tabulated-list-printer)
3741 (tabulated-list-sort-key): Declare with `defvar-local'.
3742 (tabulated-list-init-header, tabulated-list-print-fake-header):
3743 Use `setq-local'.
3744
3745 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
3746
3747 * arc-mode.el (archive-mode): Add `archive-write-file' to
3748 `write-contents-functions' also for remote files. (Bug#14652)
3749
3750 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
3751
3752 * cus-edit.el (custom-commands): Fix typos.
3753 (custom-display): Fix tooltip text.
3754 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
3755 Fix typos in docstrings.
3756 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
3757 (custom-unlispify-menu-entry, custom-magic-value-create)
3758 (custom-add-see-also, custom-group-value-create): Use ?\s.
3759 (custom-guess-type, customize-apropos, editable-field)
3760 (custom-face-value-create): Use `string-match-p'.
3761 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
3762
3763 * custom.el (custom-load-symbol): Use `string-match-p'.
3764
3765 * ansi-color.el: Convert to lexical binding.
3766 (ansi-colors): Fix URL.
3767 (ansi-color-context, ansi-color-context-region): Use defvar-local.
3768 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
3769 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
3770
3771 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3772
3773 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
3774
3775 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
3776
3777 2013-06-19 Tom Tromey <tromey@redhat.com>
3778
3779 * net/eww.el (eww-top-url): Remove.
3780 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
3781 (eww-render): Set new variables. Don't set eww-top-url.
3782 (eww-handle-link): Handle "prev", "home", and "contents".
3783 Downcase the rel text.
3784 (eww-top-url): Choose best top URL.
3785
3786 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3787
3788 * net/eww.el: Rewrite to implement form elements "by hand" instead of
3789 relying in widget.el. Using widget.el leads to too many
3790 user interface inconsistencies.
3791 (eww-self-insert): Implement entering commands in text fields.
3792 (eww-process-text-input): New function to make text input field editing
3793 work.
3794 (eww-submit): Rewrite to use the new-style form methods.
3795 (eww-select-display): Display the correct selected item.
3796 (eww-change-select): Implement changing the select value.
3797 (eww-toggle-checkbox): Implement radio/checkboxes.
3798 (eww-update-field): Fix compilation error.
3799 (eww-tag-textarea): Implement <textarea>.
3800
3801 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
3802 we don't shadow mode-specific bindings.
3803
3804 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
3805 nothing to push.
3806
3807 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
3808
3809 2013-06-19 Glenn Morris <rgm@gnu.org>
3810
3811 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
3812
3813 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
3814
3815 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
3816 not needed.
3817
3818 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
3819
3820 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3821
3822 * net/browse-url.el (browse-url-browser-function):
3823 `eww-browse-url' has the right calling signature, `eww' does not.
3824
3825 2013-06-19 Glenn Morris <rgm@gnu.org>
3826
3827 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
3828 Only eval autoloaded macros.
3829 (byte-compile-autoload): Only give the macro warning for macros.
3830
3831 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
3832 (ps-underlined-faces): Declare.
3833
3834 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
3835 (speedbar-add-supported-extension): Declare.
3836
3837 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
3838 Don't include a date stamp in the header of the generated file;
3839 it leads to needless differences between output files.
3840
3841 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
3842
3843 * net/secrets.el (secrets-struct-secret-content-type):
3844 Replace check of introspection data by a test call of "CreateItem".
3845 Some servers do not offer introspection.
3846
3847 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
3848
3849 * electric.el (electric-pair-mode): Improve interaction with
3850 electric-layout-mode.
3851 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
3852 (electric-pair-syntax): Use text-mode-syntax-table in comments
3853 and strings.
3854 (electric-pair--insert): New function.
3855 (electric-pair-post-self-insert-function): Use it and
3856 electric--after-char-pos.
3857
3858 2013-06-19 Leo Liu <sdl.web@gmail.com>
3859
3860 * progmodes/octave.el (octave-help): Fix regexp.
3861
3862 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
3863
3864 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
3865 (shr-table-horizontal-line): Allow nil as a value, and change the
3866 default.
3867 (shr-insert-table-ruler): Respect the nil value.
3868
3869 2013-06-18 Tom Tromey <tromey@barimba>
3870
3871 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
3872 New defvars.
3873 (eww-open-file): New defun.
3874 (eww-render): Initialize new variables.
3875 (eww-display-html): Handle "link" and "a".
3876 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
3877 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
3878 (eww-back-url): Rename from eww-previous-url.
3879 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
3880 New defuns.
3881
3882 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
3883
3884 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
3885 Distinguish ternary operator tokens from slash symbol and slash
3886 char literal.
3887
3888 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
3889
3890 Convert symbol prettification into minor mode and global minor mode.
3891
3892 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
3893 `prog-prettify-symbols', and make a local defvar instead of defcustom.
3894 (prettify-symbols--keywords): Rename from
3895 `prog-prettify-symbols-alist' and make a local defvar.
3896 (prettify-symbols--compose-symbol): Rename from
3897 `prog--prettify-font-lock-compose-symbol'.
3898 (prettify-symbols--make-keywords): Rename from
3899 `prog-prettify-font-lock-symbols-keywords' and simplify.
3900 (prog-prettify-install): Remove.
3901 (prettify-symbols-mode): New minor mode, based on
3902 `prog-prettify-install'.
3903 (turn-on-prettify-symbols-mode): New function.
3904 (global-prettify-symbols-mode): New globalized minor mode.
3905
3906 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3907 * progmodes/cfengine.el (cfengine3-mode):
3908 * progmodes/perl-mode.el (perl-mode): Don't call
3909 `prog-prettify-install'; set `prettify-symbols-alist' instead.
3910
3911 2013-06-18 Juri Linkov <juri@jurta.org>
3912
3913 * files-x.el (modify-file-local-variable-message): New function.
3914 (modify-file-local-variable)
3915 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
3916 and call `modify-file-local-variable-message' when it's non-nil.
3917 (add-file-local-variable, delete-file-local-variable)
3918 (add-file-local-variable-prop-line)
3919 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
3920 and use it. (Bug#9820)
3921
3922 2013-06-18 Juri Linkov <juri@jurta.org>
3923
3924 * emulation/vi.el (vi-shell-op):
3925 * emulation/vip.el (vip-execute-com, ex-command):
3926 * emulation/viper-cmd.el (viper-exec-bang):
3927 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
3928 the call of `shell-command-on-region'. (Bug#14637)
3929
3930 * simple.el (shell-command-on-region): Doc fix.
3931
3932 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
3933
3934 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
3935 (bug#14633).
3936
3937 2013-06-18 Glenn Morris <rgm@gnu.org>
3938
3939 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
3940
3941 * newcomment.el (comment-search-forward, comment-search-backward):
3942 Doc fix. (Bug#14376)
3943
3944 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
3945
3946 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
3947 (buffer-face-mode-invoke): Doc fix.
3948
3949 2013-06-18 Matthias Meulien <orontee@gmail.com>
3950
3951 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
3952 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
3953
3954 2013-06-18 Glenn Morris <rgm@gnu.org>
3955
3956 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
3957 Replace obsolete function generic-make-keywords with its expansion.
3958
3959 * progmodes/python.el (ffap-alist): Declare.
3960
3961 * textmodes/reftex.el (bibtex-mode-map): Declare.
3962
3963 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
3964
3965 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
3966 (package-unpack, package-unpack-single): Return the pkg-dir.
3967 (package-download-transaction): Use it to update package-alist.
3968
3969 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3970
3971 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
3972 possible choice.
3973
3974 2013-06-17 Juri Linkov <juri@jurta.org>
3975
3976 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
3977
3978 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
3979
3980 * emacs-lisp/package.el (package-load-descriptor):
3981 Remove `with-syntax-table' call, `read' doesn't need it.
3982 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
3983
3984 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
3985
3986 * startup.el (command-line): Expand package name returned by
3987 `package--description-file' (bug#14639).
3988
3989 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
3990
3991 * emacs-lisp/package.el (package-load-descriptor): Do not call
3992 `emacs-lisp-mode', just use its syntax table.
3993
3994 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
3995
3996 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
3997 `font-lock-extra-managed-props' if any prettifying keyword is added.
3998 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
3999 (prog-mode): Use `setq-local'.
4000
4001 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4002
4003 * international/characters.el (standard-case-table): Set syntax of ?»
4004 and ?« to punctuation.
4005
4006 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
4007
4008 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
4009 Save relevant match data before calling `syntax-ppss' (bug#14595).
4010
4011 2013-06-15 Juri Linkov <juri@jurta.org>
4012
4013 * files-x.el (modify-file-local-variable-prop-line): Add local
4014 variables to the end of the existing comment on the first line.
4015 Use `file-auto-mode-skip' to skip interpreter magic line,
4016 and also skip XML declaration.
4017
4018 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
4019
4020 * startup.el (package--builtin-versions): New var.
4021 (package-subdirectory-regexp): Remove.
4022 (package--description-file): Hard code its value instead.
4023
4024 * emacs-lisp/package.el: Don't activate packages older than builtin.
4025 (package-obsolete-list): Rename from package-obsolete-alist, and make
4026 it into a simple list of package-desc.
4027 (package-strip-version): Remove.
4028 (package-built-in-p): Use package--builtin-versions.
4029 (package-mark-obsolete): Simplify.
4030 (package-process-define-package): Mark it obsolete if older than the
4031 builtin version.
4032 (package-handle-response): Use line-end-position.
4033 (package-read-archive-contents, package--download-one-archive):
4034 Simplify.
4035 (package--add-to-archive-contents): Skip if older than the builtin or
4036 installed version.
4037 (package-menu-describe-package): Fix last change.
4038 (package-list-unversioned): New var.
4039 (package-menu--generate): Use it.
4040
4041 * emacs-lisp/autoload.el: Manage package--builtin-versions.
4042 (autoload--insert-text, autoload--insert-cookie-text): New functions.
4043 (autoload-builtin-package-versions): New variable.
4044 (autoload-generate-file-autoloads): Use them.
4045 Remove the list of autoloaded functions/macros from the
4046 (autoload...) comments.
4047
4048 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
4049
4050 2013-06-15 Eli Zaretskii <eliz@gnu.org>
4051
4052 * simple.el (line-move-partial): Don't jump to the next screen
4053 line as soon as it becomes visible. Instead, continue enlarging
4054 the vscroll until the portion of a tall screen line that's left on
4055 display is about the height of the frame's default font.
4056 (Bug#14567)
4057
4058 2013-06-15 Glenn Morris <rgm@gnu.org>
4059
4060 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
4061 compilation-error-regexp-alist void, or local while let-bound.
4062
4063 * progmodes/make-mode.el (makefile-mode-syntax-table):
4064 Treat "=" as punctuation. (Bug#14614)
4065
4066 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
4067
4068 * help-fns.el (describe-variable):
4069 Add extra line for permanent-local variables.
4070
4071 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
4072
4073 * progmodes/scheme.el (scheme-font-lock-keywords-2):
4074 Add export, import, library. (Bug#9164)
4075 (library): Set indent function.
4076
4077 2013-06-14 Glenn Morris <rgm@gnu.org>
4078
4079 * term/xterm.el (xterm--query):
4080 Stop after first matching handler. (Bug#14615)
4081
4082 2013-06-14 Ivan Kanis <ivan@kanis.fr>
4083
4084 Add support for dired in saveplace.
4085 * dired.el (dired-initial-position-hook): New variable.
4086 (dired-initial-position): Call hook to place cursor position.
4087 * saveplace.el (save-place-to-alist): Add dired position.
4088 (save-place-dired-hook): New function.
4089
4090 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
4091
4092 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
4093 through a symbol rather than letrec.
4094
4095 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
4096 (package-desc): Add `dir' field.
4097 (package-desc-full-name): New function.
4098 (package-load-descriptor): Combine the two arguments. Don't use `load'.
4099 (package-maybe-load-descriptor): Remove.
4100 (package-load-all-descriptors): Just call package-load-descriptor.
4101 (package--disabled-p): New function.
4102 (package-desc-vers, package-desc-doc): Remove aliases.
4103 (package--dir): Remove function.
4104 (package-activate): Check if a package is disabled.
4105 (package-process-define-package): New function, extracted from
4106 define-package.
4107 (define-package): Turn into a place holder.
4108 (package-unpack-single, package-tar-file-info):
4109 Use package--description-file.
4110 (package-compute-transaction): Use package--disabled-p.
4111 (package-download-transaction): Don't call
4112 package-maybe-load-descriptor since they're all loaded anyway.
4113 (package-install): Change argument to be a pkg-desc.
4114 (package-delete): Use a single pkg-desc argument.
4115 (describe-package-1): Use package-desc-dir instead of package--dir.
4116 Use package-desc property instead of package-symbol.
4117 (package-install-button-action): Adjust accordingly.
4118 (package--push): Rewrite.
4119 (package-menu--print-info): Adjust accordingly. Change the ID format
4120 to be a pkg-desc.
4121 (package-menu-describe-package, package-menu-get-status)
4122 (package-menu--find-upgrades, package-menu-mark-upgrades)
4123 (package-menu-execute, package-menu--name-predicate):
4124 Adjust accordingly.
4125 * startup.el (package--description-file): New function.
4126 (command-line): Use it.
4127 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4128 Use package-desc-version.
4129
4130 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
4131 (byte-compile-preprocess): Use it.
4132 (byte-compile-file-form-defalias): Try a bit harder to use macros we
4133 can't quite recognize.
4134 (byte-compile-add-to-list): Remove.
4135 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
4136 (cconv-closure-convert): Add assertion.
4137
4138 * emacs-lisp/map-ynp.el: Use lexical-binding.
4139 (map-y-or-n-p): Remove unused vars `tail' and `object'.
4140 Factor out some repeated code.
4141
4142 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
4143
4144 * subr.el (with-eval-after-load): New macro.
4145 (eval-after-load): Allow form to be a function.
4146 take advantage of lexical-binding.
4147 (do-after-load-evaluation): Use dolist and adjust to new format.
4148 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
4149
4150 2013-06-13 Juri Linkov <juri@jurta.org>
4151
4152 * replace.el (perform-replace): Display "symbol " and other search
4153 modes from `isearch-message-prefix' in the *Help* buffer.
4154
4155 * isearch.el (isearch-query-replace): Add " symbol" and other
4156 possible search modes from `isearch-message-prefix' to the prompt.
4157 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
4158 when reading a regexp to collect.
4159
4160 2013-06-13 Juri Linkov <juri@jurta.org>
4161
4162 * isearch.el (word-search-regexp): Match whitespace if the search
4163 string begins or ends in whitespace. The LAX arg is applied to
4164 both ends of the search string. Use `regexp-quote' and explicit
4165 \< and \> instead of \b. Use \` and \' instead of ^ and $.
4166 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
4167 boundaries are replaced with symbol boundaries, and characters
4168 between symbols match non-word non-symbol syntax. (Bug#14602)
4169
4170 2013-06-13 Juri Linkov <juri@jurta.org>
4171
4172 * isearch.el (isearch-del-char): Don't exceed the length of
4173 `isearch-string' by the prefix arg. (Bug#14563)
4174
4175 2013-06-13 Juri Linkov <juri@jurta.org>
4176
4177 * isearch.el (isearch-yank-word, isearch-yank-line)
4178 (isearch-char-by-name, isearch-quote-char)
4179 (isearch-printing-char, isearch-process-search-char):
4180 Add optional count prefix arg. (Bug#14563)
4181
4182 * international/isearch-x.el
4183 (isearch-process-search-multibyte-characters):
4184 Add optional count prefix arg.
4185
4186 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
4187
4188 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
4189 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
4190 lexical-binding.
4191
4192 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
4193
4194 * subr.el (set-temporary-overlay-map): Add on-exit argument.
4195
4196 2013-06-13 Glenn Morris <rgm@gnu.org>
4197
4198 * startup.el (tty-handle-args):
4199 Don't just discard "--" and anything after. (Bug#14608)
4200
4201 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
4202
4203 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
4204
4205 Implement changes in Secret Service API. Make it backward compatible.
4206 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
4207 (secrets-create-item): Use it. Prefix properties with interface.
4208
4209 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
4210
4211 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
4212 (term-emulate-terminal): Respect term-suppress-hard-newline.
4213
4214 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
4215
4216 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
4217 Only remove a `thumb-file' overlay. (Bug#14548)
4218
4219 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
4220
4221 * mail/reporter.el (reporter-submit-bug-report):
4222 Handle missing package-name. (Bug#14600)
4223
4224 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4225
4226 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
4227 (reftex-citation-prompt, reftex-default-bibliography)
4228 (reftex-bib-or-thebib, reftex-get-bibfile-list)
4229 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
4230 (reftex-bib-sort-author, reftex-bib-sort-year)
4231 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
4232 (reftex-extract-bib-entries-from-thebibliography)
4233 (reftex-get-bibkey-default, reftex-get-bib-names)
4234 (reftex-parse-bibtex-entry, reftex-get-bib-field)
4235 (reftex-format-bib-entry, reftex-parse-bibitem)
4236 (reftex-format-bibitem, reftex-do-citation)
4237 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
4238 (reftex-restrict-bib-matches, reftex-extract-bib-file)
4239 (reftex-insert-bib-matches, reftex-format-citation)
4240 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
4241 (reftex-create-bibtex-file): Add docstrings, mostly by converting
4242 existing comments into docstrings.
4243
4244 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
4245
4246 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
4247
4248 2013-06-12 Andreas Schwab <schwab@suse.de>
4249
4250 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
4251 for auto-save files.
4252
4253 2013-06-12 Glenn Morris <rgm@gnu.org>
4254
4255 * ido.el (ido-delete-ignored-files): Remove.
4256 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
4257 Go back to calling ido-ignore-item-p directly.
4258
4259 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
4260
4261 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
4262
4263 * ido.el (ido-delete-ignored-files): New function,
4264 split from ido-make-file-list-1.
4265 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
4266 (ido-make-file-list-1): Use ido-delete-ignored-files.
4267
4268 2013-06-12 Leo Liu <sdl.web@gmail.com>
4269
4270 * progmodes/octave.el (inferior-octave-startup)
4271 (inferior-octave-completion-table)
4272 (inferior-octave-track-window-width-change)
4273 (octave-eldoc-function-signatures, octave-help)
4274 (octave-find-definition): Use single quoted strings.
4275 (inferior-octave-startup-args): Change default value.
4276 (inferior-octave-startup): Do not hard code "-i" and
4277 "--no-line-editing".
4278 (inferior-octave-resync-dirs): Add optional arg NOERROR.
4279 (inferior-octave-directory-tracker): Use it.
4280 (octave-goto-function-definition): Robustify.
4281 (octave-help): Support highlighting operators in 'See also'.
4282 (octave-find-definition): Find subfunctions only in Octave mode.
4283
4284 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4285
4286 * help-fns.el (help-fns--compiler-macro): If the handler function is
4287 named, then put a link to it.
4288 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
4289 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
4290 (cl-typep): Use it.
4291 (cl-eval-when): Simplify debug spec.
4292 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
4293 compiler-macro function instead of setting `compiler-macro-file'.
4294
4295 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
4296
4297 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
4298 * vc/vc-hooks.el (vc-stay-local): Doc fix.
4299
4300 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4301 Daniel Hackney <dan@haxney.org>
4302
4303 First part of Daniel Hackney's patch to package.el.
4304 * emacs-lisp/package.el: Use defstruct.
4305 (package-desc): New, main struct.
4306 (package--bi-desc, package--ac-desc): New structs, used to describe the
4307 format in external files.
4308 (package-desc-vers): Replace with package-desc-version accessor.
4309 (package-desc-doc): Replace with package-desc-summary accessor.
4310 (package-activate-1): Remove `package' arg since the pkg-vec now
4311 includes the name.
4312 (define-package): Use package-desc-from-define.
4313 (package-unpack-single): Change file-name arg to be a symbol.
4314 (package--add-to-archive-contents): Use package-desc-create and new
4315 accessor functions to package--ac-desc.
4316 (package-buffer-info, package-tar-file-info): Return a package-desc.
4317 (package-install-from-buffer): Remove `type' argument. Change pkg-info
4318 arg to be a package-desc.
4319 (package-install-file): Adjust accordingly. Use \' to match EOS.
4320 (package--from-builtin): New function.
4321 (describe-package-1, package-menu--generate): Use it.
4322 (package--make-autoloads-and-compile): Change name arg to be a symbol.
4323 (package-generate-autoloads): Idem and return the name of the file.
4324 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4325 Change pkg-info arg to be a package-desc.
4326 Use package-make-ac-desc.
4327 (package-upload-file): Use \' to match EOS.
4328 * finder.el (finder-compile-keywords): Use package-make-builtin.
4329
4330 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4331
4332 * vc/vc.el (vc-deduce-fileset): Change error message.
4333 (vc-read-backend): New function.
4334 (vc-next-action): Use it.
4335
4336 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
4337
4338 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
4339 (prolog-font-lock-keywords): Use regexp-opt instead.
4340 Don't manually highlight strings.
4341 (prolog-mode-variables): Simplify comment-start-skip.
4342 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
4343
4344 * emacs-lisp/generic.el (generic--normalise-comments)
4345 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
4346 (generic-mode-set-comments): Use them.
4347 (generic-bracket-support): Use setq-local.
4348 (generic-make-keywords-list): Declare obsolete.
4349
4350 2013-06-11 Glenn Morris <rgm@gnu.org>
4351
4352 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4353 Prettify after setting font-lock-defaults. (Bug#14574)
4354
4355 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
4356
4357 * replace.el (query-replace, occur-read-regexp-defaults-function)
4358 (replace-search):
4359 * subr.el (declare-function, number-sequence, local-set-key)
4360 (substitute-key-definition, locate-user-emacs-file)
4361 (with-silent-modifications, split-string, eval-after-load):
4362 Fix typos, remove unneeded backslashes and reflow some docstrings.
4363
4364 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4365
4366 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
4367 default for Elisp files.
4368
4369 2013-06-11 Glenn Morris <rgm@gnu.org>
4370
4371 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
4372 although define-derived-mode was doing this anyway. (Bug#14583)
4373
4374 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
4375
4376 * allout.el (allout-encryption-plaintext-sanitization-regexps):
4377 Fix make-variable-buffer-local call to refer to the correct variable.
4378
4379 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
4380
4381 * eshell/em-term.el (eshell-visual-commands)
4382 (eshell-visual-subcommands, eshell-visual-options):
4383 Add summary line to docstrings. Add cross-references.
4384
4385 2013-06-10 Glenn Morris <rgm@gnu.org>
4386
4387 * epa.el (epa-read-file-name): New function. (Bug#14510)
4388 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
4389
4390 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
4391
4392 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
4393 output redirection to be ignored with visual commands.
4394
4395 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
4396
4397 * eshell/em-term.el (eshell-visual-command-p): New function.
4398 (eshell-term-initialize): Move long lambda to separate function
4399 eshell-visual-command-p.
4400 * eshell/em-dirs.el (eshell-dirs-initialise):
4401 * eshell/em-script.el (eshell-script-initialize):
4402 Add missing #' to lambda.
4403
4404 2013-06-08 Leo Liu <sdl.web@gmail.com>
4405
4406 * progmodes/octave.el (octave-add-log-current-defun): New function.
4407 (octave-mode): Set add-log-current-defun-function.
4408 (octave-goto-function-definition): Do not move point if not found.
4409 (octave-find-definition): Enhance to try subfunctions first.
4410
4411 2013-06-08 Glenn Morris <rgm@gnu.org>
4412
4413 * emacs-lisp/bytecomp.el (byte-compile-char-before)
4414 (byte-compile-backward-char, byte-compile-backward-word):
4415 Improve previous change, to handle non-explicit nil.
4416
4417 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
4418
4419 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
4420 (smie--opener/closer-at-point): New function.
4421 (smie--matching-block-data): Use it. Don't match from right after an
4422 opener or right before a closer. Obey smie-blink-matching-inners.
4423 Don't signal a mismatch for repeated inners like "switch..case..case".
4424
4425 2013-06-07 Leo Liu <sdl.web@gmail.com>
4426
4427 * progmodes/octave.el (octave-mode): Set comment-use-global-state
4428 to t. (Bug#14303)
4429 (octave-function-header-regexp): Fix. (Bug#14570)
4430 (octave-help-mode-finish-hook, octave-help-mode-finish):
4431 Remove. Just use temp-buffer-show-hook.
4432
4433 * newcomment.el (comment-search-backward): Revert last change.
4434 (Bug#14434)
4435
4436 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
4437
4438 2013-06-07 Eli Zaretskii <eliz@gnu.org>
4439
4440 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
4441 through xargs, to avoid failure due to MS-Windows limitations on
4442 command-line length.
4443
4444 2013-06-06 Glenn Morris <rgm@gnu.org>
4445
4446 * font-lock.el (lisp-font-lock-keywords-2):
4447 Treat user-error like error.
4448
4449 * emacs-lisp/bytecomp.el (byte-compile-char-before)
4450 (byte-compile-backward-char, byte-compile-backward-word):
4451 Handle explicit nil arguments. (Bug#14565)
4452
4453 2013-06-05 Alan Mackenzie <acm@muc.de>
4454
4455 * isearch.el (isearch-allow-prefix): New user option.
4456 (isearch-other-meta-char): Don't exit isearch when a prefix
4457 argument is typed whilst `isearch-allow-prefix' is non-nil.
4458 (Bug#9706)
4459
4460 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4461
4462 * autorevert.el (auto-revert-notify-handler): Use memq.
4463 Hide assertion failure.
4464
4465 * skeleton.el: Use cl-lib.
4466 (skeleton-further-elements): Use defvar-local.
4467 (skeleton-insert): Use cl-progv.
4468
4469 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
4470
4471 * progmodes/prog-mode.el (prog-prettify-symbols)
4472 (prog-prettify-install): Update docstrings.
4473
4474 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4475
4476 * simple.el: Move all the prog-mode code to prog-mode.el.
4477 * progmodes/prog-mode.el: New file.
4478 * loadup.el: Add prog-mode.el.
4479
4480 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
4481
4482 * simple.el (prog-prettify-symbols): Add version.
4483 (prog-prettify-install): Add convenience function to prettify symbols.
4484
4485 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
4486 (perl--augmented-font-lock-keywords-1)
4487 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
4488 variables and use it.
4489
4490 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
4491 (cfengine3-mode): Remove unneeded variable and use it.
4492
4493 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
4494 (lisp--augmented-font-lock-keywords-1)
4495 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
4496 Remove unneeded variables and use it.
4497
4498 2013-06-05 João Távora <joaotavora@gmail.com>
4499
4500 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
4501 to point when opening the connection. (Bug#14380)
4502
4503 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4504
4505 * subr.el (load-history-regexp, load-history-filename-element)
4506 (eval-after-load, after-load-functions, do-after-load-evaluation)
4507 (eval-next-after-load, display-delayed-warnings)
4508 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
4509 definition of save-match-data.
4510 (overriding-local-map): Remove accidental obsolescence declaration.
4511
4512 * emacs-lisp/edebug.el (edebug-result): Move before first use.
4513
4514 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
4515
4516 Generalize symbol prettify support to prog-mode and implement it
4517 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
4518 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
4519 (prog--prettify-font-lock-compose-symbol)
4520 (prog-prettify-font-lock-symbols-keywords): New variables and
4521 functions to support symbol prettification.
4522 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
4523 (lisp--augmented-font-lock-keywords-1)
4524 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
4525 (lisp--prettify-symbols-alist): Implement prettify of lambda.
4526 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
4527 (cfengine3--prettify-symbols-alist, cfengine3-mode):
4528 Implement prettify of -> => :: strings.
4529 * progmodes/perl-mode.el (perl-prettify-symbols)
4530 (perl--font-lock-compose-symbol)
4531 (perl--font-lock-symbols-keywords): Move to prog-mode.
4532 (perl--prettify-symbols-alist): Prettify -> => :: strings.
4533 (perl-font-lock-keywords-1)
4534 (perl-font-lock-keywords-2): Remove explicit prettify support.
4535 (perl--augmented-font-lock-keywords)
4536 (perl--augmented-font-lock-keywords-1)
4537 (perl--augmented-font-lock-keywords-2, perl-mode):
4538 Implement prettify support.
4539
4540 2013-06-05 Leo Liu <sdl.web@gmail.com>
4541
4542 Re-implement smie matching block highlight using
4543 show-paren-data-function. (Bug#14395)
4544 * emacs-lisp/smie.el (smie-matching-block-highlight)
4545 (smie--highlight-matching-block-overlay)
4546 (smie--highlight-matching-block-lastpos)
4547 (smie-highlight-matching-block)
4548 (smie-highlight-matching-block-mode): Remove.
4549 (smie--matching-block-data-cache): New variable.
4550 (smie--matching-block-data): New function.
4551 (smie-setup): Use smie--matching-block-data for
4552 show-paren-data-function.
4553
4554 * progmodes/octave.el (octave-mode-menu): Fix.
4555 (octave-find-definition): Skip garbage lines.
4556
4557 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4558
4559 Fix compilation error with simultaneous dynamic+lexical scoping.
4560 Add warning when a defvar appears after the first let-binding.
4561 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
4562 (byte-compile-close-variables): Initialize it.
4563 (byte-compile--declare-var): New function.
4564 (byte-compile-file-form-defvar)
4565 (byte-compile-file-form-define-abbrev-table)
4566 (byte-compile-file-form-custom-declare-variable): Use it.
4567 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
4568 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
4569 (byte-compile-bind): Handle dynamic bindings that shadow
4570 lexical bindings.
4571 (byte-compile-unbind): Make arg non-optional.
4572 (byte-compile-let): Simplify.
4573 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
4574 (cconv--analyse-function, cconv-analyse-form): Populate it.
4575 Protect byte-compile-bound-variables to limit the scope of defvars.
4576 (cconv-analyse-form): Add missing rule for (defvar <foo>).
4577 Remove unneeded rule for `declare'.
4578
4579 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
4580 so as to avoid depending on cl-adjoin at run-time.
4581 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
4582
4583 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
4584 (macroexp--warn-and-return): Use it.
4585
4586 2013-06-05 Leo Liu <sdl.web@gmail.com>
4587
4588 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
4589
4590 2013-06-04 Leo Liu <sdl.web@gmail.com>
4591
4592 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
4593 (compilation-auto-jump): Suppress the "Mark set" message to give
4594 way to exit message.
4595
4596 2013-06-04 Alan Mackenzie <acm@muc.de>
4597
4598 Remove faulty optimisation from indentation calculation.
4599 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
4600 search limit based on 2000 characters back from indent-point.
4601
4602 2013-06-03 Tassilo Horn <tsdh@gnu.org>
4603
4604 * eshell/em-term.el (cl-lib): Require `cl-lib'.
4605
4606 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
4607
4608 * emacs-lisp/lisp.el: Use lexical-binding.
4609 (lisp--local-variables-1, lisp--local-variables): New functions.
4610 (lisp--local-variables-completion-table): New var.
4611 (lisp-completion-at-point): Use it complete let-bound vars.
4612
4613 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
4614 eagerly (bug#14422).
4615
4616 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
4617
4618 * autorevert.el (auto-revert-notify-enabled)
4619 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4620 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
4621 (auto-revert-notify-handler): Handle also gfilenotify.
4622
4623 * subr.el (file-notify-handle-event): New defun. Replacing ...
4624 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
4625 Remove.
4626
4627 2013-06-03 Juri Linkov <juri@jurta.org>
4628
4629 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
4630 `M-s h .'. (Bug#14427)
4631
4632 * hi-lock.el (highlight-symbol-at-point): New alias for the new
4633 command `hi-lock-face-symbol-at-point'.
4634 (hi-lock-face-symbol-at-point): New command.
4635 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
4636 (hi-lock-menu): Add `highlight-symbol-at-point'.
4637 (hi-lock-mode): Doc fix.
4638
4639 * isearch.el (isearch-forward-symbol-at-point): New command.
4640 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
4641 (isearch-highlight-regexp): Add a regexp which matches
4642 words/symbols for word/symbol mode.
4643
4644 * subr.el (find-tag-default-bounds): New function with the body
4645 mostly moved from `find-tag-default'.
4646 (find-tag-default): Move most code to `find-tag-default-bounds',
4647 call it and apply `buffer-substring-no-properties' afterwards.
4648
4649 2013-06-03 Tassilo Horn <tsdh@gnu.org>
4650
4651 * eshell/em-term.el (eshell-term-initialize):
4652 Use `cl-intersection' rather than `intersection'.
4653
4654 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
4655
4656 * vc/log-view.el: Doc fix.
4657 (log-view-mode-map): Copy keymap from `special-mode-map'.
4658
4659 2013-06-02 Eric Ludlam <zappo@gnu.org>
4660
4661 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
4662 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
4663 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
4664 (eieio-unbound, eieio-default-superclass)
4665 (eieio--define-field-accessors, method-static, method-before)
4666 (method-primary, method-after, method-num-lists)
4667 (method-generic-before, method-generic-primary)
4668 (method-generic-after, method-num-slots)
4669 (eieio-specialized-key-to-generic-key)
4670 (eieio--check-type, class-v, class-p)
4671 (eieio-class-name, define-obsolete-function-alias)
4672 (eieio-class-parents-fast, eieio-class-children-fast)
4673 (same-class-fast-p, class-constructor, generic-p)
4674 (generic-primary-only-p, generic-primary-only-one-p)
4675 (class-option-assoc, class-option, eieio-object-p)
4676 (class-abstract-p, class-method-invocation-order)
4677 (eieio-defclass-autoload-map, eieio-defclass-autoload)
4678 (eieio-class-un-autoload, eieio-defclass)
4679 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
4680 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
4681 (eieio--defgeneric-init-form, eieio-defgeneric-form)
4682 (eieio-defgeneric-reset-generic-form)
4683 (eieio-defgeneric-form-primary-only)
4684 (eieio-defgeneric-reset-generic-form-primary-only)
4685 (eieio-defgeneric-form-primary-only-one)
4686 (eieio-defgeneric-reset-generic-form-primary-only-one)
4687 (eieio-unbind-method-implementations)
4688 (eieio--defmethod, eieio--typep)
4689 (eieio-perform-slot-validation, eieio-validate-slot-value)
4690 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
4691 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
4692 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
4693 (eieio-slot-name-index, eieio-class-slot-name-index)
4694 (eieio-set-defaults, eieio-initarg-to-attribute)
4695 (eieio-attribute-to-initarg, eieio-c3-candidate)
4696 (eieio-c3-merge-lists, eieio-class-precedence-c3)
4697 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
4698 (eieio-class-precedence-list, eieio-generic-call-methodname)
4699 (eieio-generic-call-arglst, eieio-generic-call-key)
4700 (eieio-generic-call-next-method-list)
4701 (eieio-pre-method-execution-functions, eieio-generic-call)
4702 (eieio-generic-call-primary-only, eieiomt-method-list)
4703 (eieiomt-optimizing-obarray, eieiomt-install)
4704 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
4705 (eieio-generic-form, eieio-defmethod, make-obsolete)
4706 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
4707 (defclass): Remove `eval-and-compile' from macro.
4708 (call-next-method, shared-initialize): Instead of using
4709 `scoped-class' variable, use new eieio--scoped-class, and
4710 eieio--with-scoped-class.
4711 (initialize-instance): Rename local variable 'scoped-class' to
4712 'this-class' to remove ambiguitity from old global.
4713
4714 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
4715 eieio.el.
4716 (eieio--scoped-class-stack): New variable.
4717 (eieio--scoped-class): New fcn.
4718 (eieio--with-scoped-class): New scoping macro.
4719 (eieio-defclass): Use pushnew instead of add-to-list.
4720 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
4721 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
4722 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
4723 `scoped-class' variable, use new eieio--scoped-class, and
4724 eieio--with-scoped-class.
4725
4726 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
4727
4728 2013-06-02 Tassilo Horn <tsdh@gnu.org>
4729
4730 * eshell/esh-ext.el (eshell-external-command): Pass args to
4731 `eshell-find-interpreter'.
4732 (eshell-find-interpreter): Add new second parameter ARGS.
4733
4734 * eshell/em-script.el (eshell-script-initialize): Add second arg
4735 to the function added as MATCH to `eshell-interpreter-alist'.
4736
4737 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
4738 the function added as MATCH to `eshell-interpreter-alist'.
4739
4740 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
4741 (eshell-visual-options): New defcustom.
4742 (eshell-escape-control-x): Adapt docstring.
4743 (eshell-term-initialize): Test `eshell-visual-subcommands' and
4744 `eshell-visual-options' in addition to `eshell-visual-commands'.
4745 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
4746
4747 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
4748
4749 * progmodes/python.el (python-indent-block-enders): Add break,
4750 continue and raise keywords.
4751
4752 2013-06-01 Glenn Morris <rgm@gnu.org>
4753
4754 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
4755
4756 Plain (f)boundp silences compilation warnings since Emacs 22.1.
4757 * progmodes/cc-cmds.el (delete-forward-p):
4758 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
4759 * progmodes/cc-engine.el (buffer-syntactic-context):
4760 * progmodes/cc-fonts.el (face-property-instance):
4761 * progmodes/cc-mode.el (set-keymap-parents):
4762 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
4763 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
4764 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
4765 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
4766 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
4767
4768 * progmodes/cc-vars.el (other): Emacs has this widget since
4769 at least 21.1, so don't (re)define it.
4770
4771 * eshell/em-cmpl.el (eshell-cmpl-initialize):
4772 Replace the obsolete alias pcomplete-arg-quote-list.
4773
4774 2013-06-01 Leo Liu <sdl.web@gmail.com>
4775
4776 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
4777 punctuation syntax.
4778 (inferior-octave-minimal-columns)
4779 (inferior-octave-last-column-width): New variables.
4780 (inferior-octave-track-window-width-change): New function.
4781 (inferior-octave-mode): Adjust column width so that Octave output,
4782 for example from 'ls', can fit into the window nicely.
4783
4784 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
4785
4786 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
4787 Highlight expansions inside regexp literals.
4788
4789 2013-05-31 Glenn Morris <rgm@gnu.org>
4790
4791 * obsolete/sym-comp.el (symbol-complete):
4792 Replace obsolete completion-annotate-function.
4793
4794 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
4795
4796 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
4797
4798 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
4799 New function, checks if point is inside a literal that allows
4800 expression expansion.
4801 (ruby-syntax-propertize-expansion): Use it.
4802 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
4803 around the body.
4804
4805 2013-05-30 Juri Linkov <juri@jurta.org>
4806
4807 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
4808 to "\M-si".
4809 (isearch-invisible): New variable.
4810 (isearch-forward): Doc fix.
4811 (isearch-mode): Set `isearch-invisible'
4812 to the value of `search-invisible'.
4813 (isearch-toggle-case-fold): Doc fix.
4814 (isearch-toggle-invisible): New command.
4815 (isearch-query-replace): Let-bind `search-invisible'
4816 to the value of `isearch-invisible'.
4817 (isearch-search): Use `isearch-invisible' instead of
4818 `search-invisible'. Let-bind `search-invisible'
4819 to the value of `isearch-invisible'. (Bug#11378)
4820
4821 2013-05-30 Juri Linkov <juri@jurta.org>
4822
4823 * replace.el (perform-replace): Avoid `isearch-range-invisible'
4824 call when `query-flag' is nil and `search-invisible' is non-nil.
4825 (Bug#11746)
4826
4827 2013-05-30 Glenn Morris <rgm@gnu.org>
4828
4829 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
4830
4831 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
4832 (cc-require): Suppress spurious "noruntime" warnings.
4833 (cc-require-when-compile): Use fboundp, for sake of compiler.
4834
4835 * progmodes/cc-mode.el: Move load of cc-vars before that of
4836 cc-langs (which in turn loads cc-vars), to quieten compiler.
4837
4838 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4839
4840 * paren.el: Simplify the code.
4841 (show-paren-mode): Always start the timer.
4842 (show-paren--idle-timer): Rename from show-paren-idle-timer.
4843 (show-paren--overlay, show-paren--overlay-1): Rename from
4844 show-paren-overlay and show-paren-overlay-1, and initialize to an
4845 overlay rather than to nil.
4846 (show-paren-function): Misc cleanup and simplifications.
4847
4848 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4849
4850 * paren.el (show-paren-data-function): New hook.
4851 (show-paren--default): New function, extracted from show-paren-function.
4852 (show-paren-function): Use show-paren-data-function.
4853
4854 2013-05-30 Glenn Morris <rgm@gnu.org>
4855
4856 * ielm.el (ielm-map, ielm-complete-symbol):
4857 Use completion-at-point rather than obsolete functions.
4858 (inferior-emacs-lisp-mode): Doc fix.
4859 Set completion-at-point-functions, rather than
4860 comint-dynamic-complete-functions.
4861
4862 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
4863 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
4864 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
4865
4866 * image.el (image-animated-p): Tweak definition.
4867
4868 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
4869 (rlogin-process-connection-type): Tweak default. Add set-after.
4870 (rlogin-host): Doc fix.
4871 (rlogin): Tweak prompt.
4872 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
4873
4874 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
4875 * progmodes/tcl.el (inferior-tcl-mode-map):
4876 Use completion-at-point rather than obsolete alias.
4877
4878 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
4879
4880 * minibuffer.el (read-file-name-completion-ignore-case):
4881 Move before completion--in-region, for eager macro expansion.
4882
4883 2013-05-29 Juri Linkov <juri@jurta.org>
4884
4885 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
4886 for total count of matching lines. Add `global-matches' for total
4887 count of matches. Rename `matches' to `lines' for count of
4888 matching lines. Add `matches' for count of matches.
4889 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
4890 to `prev-line' for line number of prev match endpt.
4891 Increment `matches' for every match. Print the number of
4892 matching lines in the header.
4893 (occur-context-lines): Rename `lines' to `curr-line'.
4894 Rename `prev-lines' to `prev-line'. (Bug#14017)
4895
4896 2013-05-29 Juri Linkov <juri@jurta.org>
4897
4898 * replace.el (perform-replace): Add `skip-read-only-count',
4899 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
4900 Increment them for corresponding conditions and report the number
4901 of skipped occurrences in the final message. (Bug#11746)
4902 (query-replace, query-replace-regexp, query-replace-regexp-eval)
4903 (replace-string, replace-regexp): Doc fix.
4904
4905 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
4906
4907 * emacs-lisp/trace.el (trace--read-args): Provide a default.
4908
4909 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
4910 prog-mode-map (bug#14504).
4911
4912 2013-05-29 Leo Liu <sdl.web@gmail.com>
4913
4914 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
4915 (octave-help): Small simplification.
4916
4917 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
4918 off the highlight first.
4919
4920 2013-05-29 Glenn Morris <rgm@gnu.org>
4921
4922 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
4923 Handle idlwave-last-system-routine-info-cons-cell being nil.
4924
4925 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
4926 (idlwave-write-paths): Simplify via with-temp-buffer.
4927
4928 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
4929 * emulation/cua-rect.el: Also load cua-base at run time.
4930
4931 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
4932 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
4933 (cperl-imenu-on-info): Require imenu.
4934
4935 2013-05-28 Alan Mackenzie <acm@muc.de>
4936
4937 Handle "capitalised keywords" correctly.
4938 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
4939
4940 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
4941
4942 * eshell/em-unix.el: Add -r option to cp.
4943
4944 2013-05-28 Glenn Morris <rgm@gnu.org>
4945
4946 * vc/vc-arch.el (vc-exec-after): Declare.
4947 (vc-switches): Autoload.
4948 * vc/vc-bzr.el: No need to require vc when compiling.
4949 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
4950 (vc-resynch-buffer, vc-dir-refresh): Declare.
4951 (vc-setup-buffer, vc-switches): Autoload.
4952 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
4953 (vc-resynch-buffer): Declare.
4954 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
4955 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
4956 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
4957 (grep-read-regexp, grep-read-files, grep-expand-template)
4958 (vc-dir-refresh): Declare.
4959 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
4960 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
4961 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
4962 * vc/vc-mtn.el (vc-exec-after): Declare.
4963 (vc-switches): Autoload.
4964 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
4965 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
4966 (vc-file-tree-walk): Declare.
4967 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
4968 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
4969 (vc-tag-precondition, vc-rename-master): Autoload.
4970 * vc/vc-svn.el (vc-exec-after): Declare.
4971 (vc-switches, vc-setup-buffer): Autoload.
4972 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
4973 Autoload.
4974 (vc-resynch-buffer): Declare.
4975
4976 * obsolete/fast-lock.el (byte-compile-warnings):
4977 Don't warn about obsolete features in this obsolete file.
4978
4979 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
4980 Move definition before use.
4981
4982 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
4983 (dun-unix-verbs): Remove dun-zippy.
4984 (dun-zippy): Remove function.
4985
4986 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
4987
4988 2013-05-27 Juri Linkov <juri@jurta.org>
4989
4990 * replace.el (replace-search): New function with code moved out
4991 from `perform-replace'.
4992 (replace-highlight, replace-dehighlight): Move function definitions
4993 up closer to `replace-search'. (Bug#11746)
4994
4995 2013-05-27 Juri Linkov <juri@jurta.org>
4996
4997 * replace.el (perform-replace): Ignore invisible matches.
4998 In addition to checking `query-replace-skip-read-only', also
4999 filter out matches by calling `run-hook-with-args-until-failure'
5000 on `isearch-filter-predicates', and also check `search-invisible'
5001 for t or call `isearch-range-invisible'.
5002 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
5003
5004 2013-05-27 Juri Linkov <juri@jurta.org>
5005
5006 * isearch.el (isearch-filter-predicates): Rename from
5007 `isearch-filter-predicate'. Doc fix. (Bug#11378)
5008 (isearch-message-prefix): Display text from the property
5009 `isearch-message-prefix' of the currently active filters.
5010 (isearch-search): Don't compare `isearch-filter-predicate' with
5011 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
5012 on `isearch-filter-predicates'. Also check `search-invisible' for t
5013 or call `isearch-range-invisible'.
5014 (isearch-filter-visible): Make obsolete.
5015 (isearch-lazy-highlight-search):
5016 Call `run-hook-with-args-until-failure' on
5017 `isearch-filter-predicates' and use `isearch-range-invisible'.
5018
5019 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
5020 `isearch-filter-predicates' instead of `funcall'ing
5021 `isearch-filter-predicate'.
5022 (Info-mode): Set `Info-isearch-filter' to
5023 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
5024
5025 * dired-aux.el (dired-isearch-filter-predicate-orig):
5026 Remove variable.
5027 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
5028 (dired-isearch-filenames-end): Add and remove
5029 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
5030 instead of changing the value of `isearch-filter-predicate'.
5031 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
5032 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
5033 Put property `isearch-message-prefix' to "filename " on
5034 `dired-isearch-filter-filenames'.
5035
5036 * wdired.el (wdired-change-to-wdired-mode):
5037 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
5038 locally instead of changing `isearch-filter-predicate'.
5039 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
5040
5041 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
5042
5043 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
5044 return the commit hash (Bug#14459). Also set the
5045 `vc-git-detached' property.
5046 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
5047 (vc-git-mode-line-string): Use the same help-echo format whether
5048 in detached mode or not, because we know the actual revision now.
5049 When in detached mode, shorten the revision to 7 chars.
5050
5051 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5052
5053 * emacs-lisp/easy-mmode.el (define-minor-mode):
5054 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
5055 mode hook and provide a docstring.
5056
5057 2013-05-27 Alan Mackenzie <acm@muc.de>
5058
5059 Remove spurious syntax-table text properties inserted by C-y.
5060 * progmodes/cc-mode.el (c-after-change): Also clear hard
5061 syntax-table property with value nil.
5062
5063 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
5064
5065 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
5066 when reading the events; the buffer layout shall not be changed.
5067
5068 2013-05-27 Leo Liu <sdl.web@gmail.com>
5069
5070 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
5071 New variable.
5072 (inferior-octave-directory-tracker): Automatically re-sync
5073 default-directory.
5074 (octave-help): Improve handling of 'See also'.
5075
5076 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5077
5078 * doc-view.el: Minor naming convention tweaks.
5079 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
5080
5081 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
5082 even if there's no `display' property yet (bug#14435).
5083
5084 2013-05-25 Eli Zaretskii <eliz@gnu.org>
5085
5086 * subr.el (unmsys--file-name): Rename from reveal-filename.
5087
5088 * Makefile.in (custom-deps, finder-data, autoloads)
5089 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
5090 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
5091 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
5092
5093 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5094
5095 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
5096 error-completion on the first 2 args of condition-case (bug#14446).
5097 Don't burp at EOB.
5098
5099 2013-05-25 Leo Liu <sdl.web@gmail.com>
5100
5101 * comint.el (comint-previous-matching-input): Do not flood the
5102 *Messages* buffer with trivial messages.
5103
5104 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5105
5106 * progmodes/flymake.el (flymake-nop): Don't return a string.
5107 (flymake-set-at): Fix typo.
5108
5109 * simple.el (read--expression): New function, extracted from
5110 eval-expression. Set completion-at-point-functions (bug#14465).
5111 (eval-expression, eval-minibuffer): Use it.
5112
5113 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
5114
5115 * progmodes/flymake.el (flymake-save-buffer-in-file)
5116 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
5117 (flymake-selected-frame, flymake-log, flymake-ins-after)
5118 (flymake-set-at, flymake-get-buildfile-from-cache)
5119 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
5120 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
5121 Refine the doc string.
5122 (flymake-get-file-name-mode-and-masks): Reformat.
5123 (flymake-get-real-file-name-function): Fix a minor bug.
5124
5125 2013-05-24 Juri Linkov <juri@jurta.org>
5126
5127 * progmodes/grep.el (grep-mode-font-lock-keywords):
5128 Support =linenumber= format used by git-grep for lines with
5129 function names. (Bug#13549)
5130
5131 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5132
5133 * progmodes/octave.el (octave-smie-rules): Return nil rather than
5134 0 after a semi-colon; it works better for smie-auto-fill.
5135 (octave--indent-new-comment-line): New function.
5136 (octave-indent-new-comment-line): Use it (indirectly).
5137 (octave-mode): Don't disable smie-auto-fill. Use add-function to
5138 modify comment-line-break-function.
5139
5140 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
5141 (smie-setup): Use add-function to set it.
5142
5143 2013-05-24 Sam Steingold <sds@gnu.org>
5144
5145 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
5146 argument (before the `interactive' argument).
5147
5148 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5149
5150 * image-mode.el (image-mode-winprops): Add winprops to
5151 image-mode-winprops-alist before running
5152 image-mode-new-window-functions.
5153 * doc-view.el (doc-view-new-window-function): Don't delay
5154 doc-view-goto-page via timers (bug#14435).
5155
5156 2013-05-24 Tassilo Horn <tsdh@gnu.org>
5157
5158 * doc-view.el: Integrate with desktop.el. (Bug#14435)
5159 (doc-view-desktop-save-buffer): New function.
5160 (doc-view-restore-desktop-buffer): New function.
5161 (desktop-buffer-mode-handlers):
5162 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
5163 handler.
5164 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
5165 `desktop-save-buffer' function.
5166
5167 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
5168
5169 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
5170 (tramp-gvfs-file-name-handler): Raise a user error when
5171 `tramp-gvfs-enabled' is nil.
5172 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
5173 Do not raise a user error when loading package. (Bug#14447)
5174
5175 * net/xesam.el: Move to obsolete/.
5176
5177 2013-05-24 Glenn Morris <rgm@gnu.org>
5178
5179 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
5180
5181 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
5182
5183 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
5184 (Info-find-node, Man-getpage-in-background): Declare.
5185
5186 * mail/unrmail.el (unrmail):
5187 Replace obsolete detect-coding-with-priority.
5188
5189 * net/socks.el (socks-split-string): Use this rather than split-string.
5190 (socks-nslookup-host): Update for above change.
5191 (dynamic-choice, s5-dynamic-choice-match)
5192 (s5-dynamic-choice-match-inline, s5-widget-value-create):
5193 Comment out unused code.
5194
5195 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
5196 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
5197 (gud-tooltip-echo-area): Make obsolete.
5198 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
5199
5200 * progmodes/js.el (js--optimize-arglist): Declare.
5201
5202 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
5203
5204 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
5205 (ediff-window-C): Declare.
5206
5207 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
5208 Tweak requires to silence compiler.
5209
5210 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
5211 (he-search-string, he-tried-table, he-expand-list)
5212 (he-init-string, he-string-member, he-substitute-string)
5213 (he-reset-string): Declare.
5214
5215 * obsolete/options.el (list-options): Use custom-variable-p,
5216 rather than obsolete alias.
5217
5218 2013-05-23 Sam Steingold <sds@gnu.org>
5219
5220 * simple.el (shell-command-on-region): Pass the `replace' argument
5221 down to `call-process-region' to comply with the doc as reported on
5222 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
5223
5224 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
5225
5226 * emacs-lisp/smie.el (smie-indent-forward-token)
5227 (smie-indent-backward-token): Handle string tokens (bug#14381).
5228
5229 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5230
5231 * ielm.el (ielm-menu): New menu.
5232 (inferior-emacs-lisp-mode): Set comment-start.
5233
5234 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5235
5236 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
5237 Fix deactivate action.
5238
5239 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
5240 Add cleveref macros.
5241
5242 * lisp/textmodes/reftex-parse.el
5243 (reftex-locate-bibliography-files): Accept options for
5244 bibliography commands.
5245 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
5246 Add addbibresource. Basic Biblatex support.
5247
5248 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
5249
5250 * net/tramp-gvfs.el (top):
5251 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
5252 when loading package. (Bug#14447)
5253
5254 2013-05-23 Glenn Morris <rgm@gnu.org>
5255
5256 * progmodes/js.el: No need to load comint when compiling.
5257 (ring-insert, comint-send-string, comint-send-input)
5258 (comint-last-input-end, ido-chop): Declare.
5259
5260 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
5261 * vc/ediff-mult.el: Adjust requires.
5262 (ediff-directories-internal, ediff-directory-revisions-internal)
5263 (ediff-patch-file-internal): Declare.
5264 * vc/ediff-ptch.el: Adjust requires.
5265 (ediff-use-last-dir, ediff-buffers-internal): Declare.
5266 (ediff-find-file): Autoload.
5267 * vc/ediff-util.el: No need to load ediff when compiling.
5268 (ediff-regions-internal): Declare.
5269 * vc/ediff-wind.el: Adjust requires.
5270 (ediff-compute-toolbar-width): Define when compiling.
5271 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
5272 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
5273 (dired-get-filename, dired-get-marked-files)
5274 (ediff-last-dir-patch, ediff-patch-default-directory)
5275 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
5276 (ediff-patch-buffer-internal): Declare.
5277
5278 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
5279 (ispell-process, ispell-buffer-local-words, lm-summary)
5280 (lm-section-start, lm-section-end): Declare.
5281 (checkdoc-ispell-init): Simplify.
5282
5283 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
5284 (he-string-member, he-reset-string, he-substitute-string): Declare.
5285
5286 * eshell/em-ls.el: Adjust requires.
5287 (eshell-glob-regexp): Declare.
5288 * eshell/em-tramp.el: Adjust requires.
5289 (eshell-parse-command): Autoload.
5290 * eshell/em-xtra.el: Adjust requires.
5291 (eshell-parse-command): Autoload.
5292 * eshell/esh-ext.el: Adjust requires.
5293 (eshell-parse-command, eshell-close-handles): Autoload.
5294 * eshell/esh-io.el: Adjust requires.
5295 (eshell-output-filter): Autoload.
5296 * eshell/esh-util.el: No need to load tramp when compiling.
5297 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
5298 Declare.
5299 (eshell-parse-ange-ls): Require ange-ftp and tramp.
5300 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5301 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
5302 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
5303 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
5304 * eshell/esh-opt.el, eshell/esh-proc.el:
5305 * eshell/esh-var.el: Adjust requires.
5306 * eshell/eshell.el: Do not require esh-util twice.
5307 (eshell-add-input-to-history): Declare.
5308 (eshell-command): Check history module is active before using it.
5309
5310 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
5311
5312 2013-05-22 Leo Liu <sdl.web@gmail.com>
5313
5314 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
5315
5316 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
5317
5318 * autorevert.el (auto-revert-notify-add-watch)
5319 (auto-revert-notify-handler): Add `attrib' for the inotify case,
5320 it indicates changes in file modification time.
5321
5322 2013-05-22 Glenn Morris <rgm@gnu.org>
5323
5324 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5325 Always delete the autoloaded function from the noruntime and
5326 unresolved functions lists.
5327
5328 * allout.el: No need to load epa, epg, overlay when compiling.
5329 (epg-context-set-passphrase-callback, epg-list-keys)
5330 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
5331 (epg-key-user-id-list): Declare.
5332
5333 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
5334 (viper-set-parsing-style-toggling-macro)
5335 (viper-set-emacs-state-searchstyle-macros):
5336 Use called-interactively-p on Emacs.
5337 (viper-looking-back): Make it an obsolete alias. Update callers.
5338 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
5339 Use looking-back rather than viper-looking-back.
5340 (viper-tmp-insert-at-eob, viper-enlarge-region)
5341 (viper-read-string-with-history, viper-register-to-point)
5342 (viper-append-to-register, viper-change-state-to-vi)
5343 (viper-backward-char-carefully, viper-forward-char-carefully)
5344 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
5345 (viper-change-state-to-emacs): Declare.
5346 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
5347 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
5348 * emulation/viper-mous.el: Do not load viper-cmd.
5349 (viper-backward-char-carefully, viper-forward-char-carefully)
5350 (viper-forward-word, viper-adjust-window): Declare.
5351
5352 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
5353
5354 * progmodes/idlw-help.el (idlwave-help-fontify):
5355 Use called-interactively-p.
5356
5357 * term/w32console.el (w32-get-console-codepage)
5358 (w32-get-console-output-codepage): Declare.
5359
5360 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
5361 Remove unnecessary declarations.
5362 (dframe-message): Doc fix.
5363
5364 * info.el (dframe-select-attached-frame, dframe-current-frame):
5365 Declare.
5366
5367 * speedbar.el (speedbar-message): Make it an obsolete alias.
5368 Update all callers.
5369 (speedbar-with-attached-buffer)
5370 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
5371 (speedbar-with-writable): Use backquote.
5372 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
5373 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
5374 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
5375 rather than speedbar- aliases.
5376 * mail/rmail.el: Load dframe rather than speedbar when compiling.
5377 (speedbar-make-specialized-keymap, speedbar-insert-button)
5378 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
5379 (speedbar-do-function-pointer): Declare.
5380 (rmail-speedbar-button, rmail-speedbar-find-file)
5381 (rmail-speedbar-move-message):
5382 Use dframe-with-attached-buffer rather than speedbar- alias.
5383 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
5384 (dframe-message, speedbar-make-specialized-keymap)
5385 (speedbar-add-expansion-list, speedbar-mode-functions-list)
5386 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
5387 (speedbar-insert-button, dframe-select-attached-frame)
5388 (dframe-maybee-jump-to-attached-frame)
5389 (speedbar-change-initial-expansion-list)
5390 (speedbar-previously-used-expansion-list-name): Declare.
5391 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
5392 Use dframe-message, dframe-with-attached-buffer rather than
5393 speedbar- aliases.
5394 (gud-sentinel): Silence compiler.
5395 * progmodes/vhdl-mode.el (speedbar-refresh)
5396 (speedbar-do-function-pointer, speedbar-add-supported-extension)
5397 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
5398 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
5399 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
5400 (speedbar-file-lists, speedbar-make-tag-line)
5401 (speedbar-line-directory, speedbar-goto-this-file)
5402 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
5403 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
5404 (speedbar-make-button, speedbar-reset-scanners)
5405 (speedbar-files-item-info, speedbar-line-text)
5406 (speedbar-find-file-in-frame, speedbar-set-timer)
5407 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
5408 (speedbar-with-writable): Do not (re)define it.
5409 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
5410 rather than speedbar- alias.
5411
5412 2013-05-21 Leo Liu <sdl.web@gmail.com>
5413
5414 * progmodes/octave.el (octave-mode-menu): Update and re-organize
5415 menu items.
5416 (octave-mode): Tweak fill-nobreak-predicate.
5417 (inferior-octave-startup): Check process to avoid infinite loop.
5418 (inferior-octave): Pop to buffer first to show abornmal process
5419 exit information.
5420
5421 2013-05-21 Glenn Morris <rgm@gnu.org>
5422
5423 * printing.el (pr-menu-bar): Define when compiling.
5424
5425 2013-05-21 Leo Liu <sdl.web@gmail.com>
5426
5427 * progmodes/octave.el (octave-auto-fill): Remove.
5428 (octave-indent-new-comment-line): Improve.
5429 (octave-mode): Use auto fill mode through
5430 comment-line-break-function and fill-nobreak-predicate.
5431 (octave-goto-function-definition): Support DEFUN_DLD.
5432 (octave-beginning-of-defun): Small tweak.
5433 (octave-help): Show parent directory.
5434
5435 2013-05-21 Glenn Morris <rgm@gnu.org>
5436
5437 * files.el (dired-unmark):
5438 * progmodes/gud.el (gdb-input): Update declarations.
5439
5440 * calculator.el (electric, ehelp): No need to load when compiling.
5441 (Electric-command-loop, electric-describe-mode): Declare.
5442
5443 * doc-view.el (doc-view-current-converter-processes): Move before use.
5444
5445 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5446 Move MODE-set-explicitly definition before use.
5447
5448 * international/mule-diag.el (mule-diag):
5449 Don't use obsolete window-system-version.
5450
5451 * mail/feedmail.el (smtpmail): No need to load when compiling.
5452 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
5453
5454 * mail/mail-utils.el (rfc822): No need to load when compiling.
5455 (rfc822-addresses): Autoload it.
5456 (mail-strip-quoted-names): Trivial simplification.
5457
5458 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
5459 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
5460
5461 * net/snmp-mode.el (tempo): Don't duplicate requires.
5462
5463 * progmodes/prolog.el (info): No need to load when compiling.
5464 (comint): Require before shell requires it.
5465 (Info-goto-node): Autoload it.
5466 (Info-follow-nearest-node): Declare.
5467 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
5468
5469 * textmodes/artist.el (picture-mode-exit): Declare.
5470
5471 * textmodes/reftex-parse.el (reftex-parse-from-file):
5472 Trivial rewrite so the compiler can parse it better.
5473
5474 2013-05-20 Leo Liu <sdl.web@gmail.com>
5475
5476 * progmodes/octave.el (octave-help-mode-map)
5477 (octave-help-mode-finish-hook): New variables.
5478 (octave-help-mode, octave-help-mode-finish): New functions.
5479 (octave-help): Use octave-help-mode.
5480
5481 2013-05-20 Glenn Morris <rgm@gnu.org>
5482
5483 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
5484
5485 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
5486
5487 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
5488 start at point, so that expansion starting right after opening
5489 slash in a regexp is recognized.
5490 (ruby-syntax-before-regexp-re): New defvar, extracted from
5491 ruby-syntax-propertize-function. Since the value of this regexp
5492 is looked up at runtime now, we should be able to turn
5493 `ruby-syntax-methods-before-regexp' into a defcustom later.
5494 (ruby-syntax-propertize-function): Split regexp matching into two
5495 parts, for opening and closing slashes. That allows us to skip
5496 over string interpolations and support multiline regexps.
5497 Don't call `ruby-syntax-propertize-expansions', instead use another rule
5498 for them, which calls `ruby-syntax-propertize-expansion'.
5499 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
5500 call to `ruby-syntax-propertize-function'.
5501 (ruby-syntax-propertize-expansion): Extracted from
5502 `ruby-syntax-propertize-expansions'. Handles one expansion.
5503 (ruby-syntax-propertize-percent-literal): Leave point right after
5504 the percent symbol, so that the expression expansion rule can
5505 propertize the contents.
5506 (ruby-syntax-propertize-heredoc): Leave point at bol following the
5507 heredoc openers.
5508 (ruby-syntax-propertize-expansions): Remove.
5509
5510 2013-05-18 Juri Linkov <juri@jurta.org>
5511
5512 * man.el (Man-default-man-entry): Remove `-' from the end
5513 of the default value. (Bug#14400)
5514
5515 2013-05-18 Glenn Morris <rgm@gnu.org>
5516
5517 * comint.el (comint-password-prompt-regexp):
5518 Allow "password for XXX" where XXX contains colons (eg https://...).
5519
5520 2013-05-18 Leo Liu <sdl.web@gmail.com>
5521
5522 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
5523 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
5524 (octave-source-directories): Don't check process.
5525 (octave-source-directories, octave-find-definition): Doc fix.
5526
5527 2013-05-18 Glenn Morris <rgm@gnu.org>
5528
5529 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
5530 Remove backspace/delete bindings. (Bug#14392)
5531
5532 * cus-dep.el (custom-make-dependencies): Sort the output.
5533 (custom-versions-load-alist): Convert comment to doc.
5534
5535 2013-05-17 Leo Liu <sdl.web@gmail.com>
5536
5537 * newcomment.el (comment-search-backward): Stricter in finding
5538 comment start. (Bug#14303)
5539
5540 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
5541 (octave-comment-start-skip): Properly anchored.
5542
5543 2013-05-17 Leo Liu <sdl.web@gmail.com>
5544
5545 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
5546 Clean up when turned off. (Bug#14395)
5547 (smie--highlight-matching-block-overlay): No longer buffer-local.
5548 (smie-highlight-matching-block): Adjust.
5549
5550 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
5551
5552 Doc string fix for "nanoseconds" (Bug#14406).
5553 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
5554 Fix doc string typo that had "nanoseconds" instead of "microseconds".
5555
5556 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
5557
5558 * calc/calc-units.el (math-extract-units): Preserve powers
5559 of units.
5560
5561 2013-05-17 Leo Liu <sdl.web@gmail.com>
5562
5563 * subr.el (delete-consecutive-dups): New function.
5564 * ido.el (ido-set-matches-1): Use it.
5565 * progmodes/octave.el (inferior-octave-completion-table): Use it.
5566 * ido.el (ido-remove-consecutive-dups): Remove.
5567
5568 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
5569
5570 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
5571 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
5572 regexp-opt's `words'.
5573
5574 2013-05-16 Leo Liu <sdl.web@gmail.com>
5575
5576 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
5577 (smie--highlight-matching-block-overlay)
5578 (smie--highlight-matching-block-lastpos)
5579 (smie--highlight-matching-block-timer): New variables.
5580 (smie-highlight-matching-block): New function.
5581 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
5582 (smie-setup): Conditionally enable smie-blink-matching-open.
5583
5584 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
5585
5586 Sync with upstream verilog-mode r840.
5587 * progmodes/verilog-mode.el (verilog-mode-version)
5588 (verilog-mode-release-date): Update.
5589 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
5590 (verilog-sig-tieoff): Fix string error on
5591 AUTORESET with colon define, bug594. Reported by Andrew Hou.
5592 (verilog-read-decls): Fix parameters confusing
5593 AUTOINST interfaces, bug565. Reported by Leith Johnson.
5594
5595 2013-05-16 Eli Zaretskii <eliz@gnu.org>
5596
5597 * subr.el (reveal-filename): New function.
5598
5599 * loadup.el: Compute Emacs executable versions on MS-Windows,
5600 where executables have the .exe extension. Add a hard link
5601 emacs-XX.YY.ZZ.exe on MS-Windows.
5602
5603 * Makefile.in (XARGS_LIMIT): New variable.
5604 (custom-deps, finder-data, autoloads)
5605 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
5606 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
5607 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
5608 (compile-main): Limit xargs according to $(XARGS_LIMIT).
5609
5610 2013-05-16 Leo Liu <sdl.web@gmail.com>
5611
5612 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
5613 (octave-mode-menu, octave-mode-map): Remove its uses.
5614
5615 2013-05-16 Reto Zimmermann <reto@gnu.org>
5616
5617 Sync with upstream vhdl mode v3.34.2.
5618 * progmodes/vhdl-mode.el: Use `push' throughout.
5619 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
5620 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
5621 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
5622 (vhdl-actual-generic-name): New option to derive actual generic name.
5623 (vhdl-port-paste-signals): Replace formal by actual generics.
5624 (vhdl-beautify): New name for old group vhdl-align. Update users.
5625 (vhdl-beautify-options): New option.
5626 (vhdl-last-input-event): New compat alias. Use throughout.
5627 (vhdl-goto-line): Replace user level function `goto-line'.
5628 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
5629 vhdl-fix-statement-buffer.
5630 (vhdl-create-mode-menu): Add some entries.
5631 (vhdl-align-region-groups): Respect vhdl-beautify-options.
5632 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
5633 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
5634 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
5635 to force statements on one line.
5636 (vhdl-remove-trailing-spaces-region):
5637 New, split from vhdl-remove-trailing-spaces.
5638 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
5639 Respect vhdl-beautify-options.
5640 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
5641 (vhdl-update-sensitivity-list): Not add with index if exists without.
5642 Not include array index with signal. Ignore keywords in comments.
5643 (vhdl-get-visible-signals): Regexp tweaks.
5644 (vhdl-template-component-inst): Handle empty library.
5645 (vhdl-template-type): Add template for 'enum' type.
5646 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
5647 Use vhdl-replace-string.
5648 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
5649 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
5650 (vhdl-speedbar-initialize): Update for above name change.
5651 (vhdl-compose-wire-components): Fix in handling of constants.
5652 (vhdl-error-regexp-emacs-alist): New variable.
5653 (vhdl-error-regexp-add-emacs): New function;
5654 adds support for new compile.el (Emacs 22+)
5655 (vhdl-generate-makefile-1): Change target order for single lib. units.
5656 Allow use of absolute file names.
5657
5658 2013-05-16 Leo Liu <sdl.web@gmail.com>
5659
5660 * simple.el (prog-indent-sexp): Indent enclosing defun.
5661
5662 2013-05-15 Glenn Morris <rgm@gnu.org>
5663
5664 * cus-start.el (show-trailing-whitespace): Move to editing basics.
5665 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
5666 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
5667 (whitespace-highlight): Move to whitespace group.
5668
5669 * comint.el (comint-source):
5670 * pcmpl-linux.el (pcmpl-linux):
5671 * shell.el (shell-faces):
5672 * eshell/esh-opt.el (eshell-opt):
5673 * international/ccl.el (ccl): Remove empty custom groups.
5674
5675 * completion.el (dynamic-completion-mode):
5676 * jit-lock.el (jit-lock-debug-mode):
5677 * minibuffer.el (completion-in-region-mode):
5678 * type-break.el (type-break-mode-line-message-mode)
5679 (type-break-query-mode):
5680 * emulation/tpu-edt.el (tpu-edt-mode):
5681 * progmodes/subword.el (global-subword-mode, global-superword-mode):
5682 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
5683 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
5684
5685 * term/xterm.el (xterm): Change parent group to terminals.
5686
5687 * master.el (master): Remove empty custom group.
5688 (master-mode): Remove unused :group argument.
5689 * textmodes/refill.el (refill): Remove empty custom group.
5690 (refill-mode): Remove unused :group argument.
5691
5692 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
5693
5694 * cus-dep.el: Provide a feature.
5695 (custom-make-dependencies): Ignore dotfiles (dir-locals).
5696 Don't mistakenly ignore files whose basenames match a basename
5697 from preloaded-file-list (eg cedet/ede/simple.el).
5698 Add a fallback method for getting :group.
5699
5700 2013-05-15 Juri Linkov <juri@jurta.org>
5701
5702 * isearch.el (isearch-char-by-name): Rename from
5703 `isearch-insert-char-by-name'. Doc fix.
5704 (isearch-forward): Mention `isearch-char-by-name' in
5705 the docstring. (Bug#13348)
5706
5707 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
5708 `exit-minibuffer' instead of
5709 `isearch-nonincremental-exit-minibuffer'.
5710 (isearch-edit-string): Remove mention of
5711 `isearch-nonincremental-exit-minibuffer' from docstring.
5712 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
5713 (isearch-forward-exit-minibuffer)
5714 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
5715
5716 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
5717
5718 * loadup.el: Just use unversioned DOC.
5719
5720 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
5721 literals as extending to EOB.
5722 (nxml-last-fontify-end): Remove unused variable.
5723 (nxml-after-change1): Use with-silent-modifications.
5724 (nxml-extend-after-change-region): Simplify.
5725 (nxml-extend-after-change-region1): Remove function.
5726 (nxml-after-change1): Don't adjust for dependent regions.
5727 (nxml-fontify-matcher): Simplify.
5728 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
5729 (xmltok-add-dependent): Remove function.
5730 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
5731 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
5732 (xmltok-scan-prolog-after-processing-instruction-open): Treat
5733 unclosed <[[, <?, comment, and other literals as extending to EOB.
5734 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
5735 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
5736 Remove functions.
5737 (rng-do-some-validation-1): Don't mark dependent regions.
5738 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
5739 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
5740 (nxml-clear-dependent-regions): Remove functions.
5741 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
5742 (nxml-ensure-scan-up-to-date):
5743 Don't clear&mark dependent regions.
5744
5745 2013-05-15 Leo Liu <sdl.web@gmail.com>
5746
5747 * progmodes/octave.el (octave-goto-function-definition):
5748 Improve and fix callers.
5749
5750 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
5751
5752 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
5753 the setter (bug#14387).
5754
5755 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
5756 surrounding group (bug#14402).
5757
5758 2013-05-14 Juri Linkov <juri@jurta.org>
5759
5760 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
5761 (Bug#14390)
5762
5763 2013-05-14 Glenn Morris <rgm@gnu.org>
5764
5765 * progmodes/f90.el (f90-imenu-generic-expression):
5766 Fix typo in 2013-05-08 change. (Bug#14402)
5767
5768 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
5769
5770 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
5771 Remove signals for which replies are never received.
5772
5773 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
5774
5775 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
5776 (gdb-handler-alist, gdb-handler-number): Remove variables.
5777 (gdb-handler-list): New variable.
5778 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
5779 (gdb-pending-handler-p, gdb-handle-reply)
5780 (gdb-remove-all-pending-triggers): New functions.
5781 (gdb-discard-unordered-replies): New defcustom.
5782 (gdb-handler): New defstruct.
5783 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
5784 instead of gdb-pending-triggers. Update docstring.
5785 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
5786 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
5787 (gdb-var-update-handler, def-gdb-auto-update-trigger)
5788 (def-gdb-auto-update-handler, gdb-get-changed-registers)
5789 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
5790 (gdb-frame-handler): Pending triggers are now automatically managed.
5791 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
5792 Remove argument.
5793 (gdb-input): Automatically handles pending triggers. Update docstring.
5794 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
5795 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
5796 Update comments.
5797 (gdb-done-or-error): Now use gdb-handle-reply.
5798
5799 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
5800
5801 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
5802 gdb-debug-log.
5803
5804 2013-05-14 Glenn Morris <rgm@gnu.org>
5805
5806 * subr.el (user-emacs-directory-warning): New option.
5807 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
5808
5809 2013-05-14 Leo Liu <sdl.web@gmail.com>
5810
5811 * progmodes/octave.el (octave-font-lock-keywords): Fix error
5812 during redisplay.
5813 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
5814 (octave-font-lock-texinfo-comment): Fix invalid search bound
5815 error: wrong side of point.
5816
5817 2013-05-14 Glenn Morris <rgm@gnu.org>
5818
5819 * progmodes/flymake.el (flymake-xml-program): New option.
5820 (flymake-xml-init): Use it.
5821
5822 * term/xterm.el: Provide a feature.
5823
5824 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
5825
5826 2013-05-13 Glenn Morris <rgm@gnu.org>
5827
5828 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
5829 Add compat aliases as a hack workaround. (Bug#14384)
5830
5831 2013-05-13 Leo Liu <sdl.web@gmail.com>
5832
5833 * progmodes/octave.el (octave-indent-comment): Fix indentation for
5834 ###, and %!.
5835 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
5836 C-M-q.
5837 (octave-comment-start-skip): Include %!.
5838 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
5839
5840 2013-05-12 Leo Liu <sdl.web@gmail.com>
5841
5842 * progmodes/octave.el (inferior-octave-startup): Store the value
5843 of __octave_srcdir__ for octave-source-directories.
5844 (inferior-octave-check-process): New function refactored out of
5845 inferior-octave-send-list-and-digest.
5846 (octave-source-directories)
5847 (octave-find-definition-filename-function): New variables.
5848 (octave-source-directories)
5849 (octave-find-definition-default-filename): New functions.
5850 (octave-find-definition): Improve to find functions implemented in C++.
5851
5852 2013-05-12 Glenn Morris <rgm@gnu.org>
5853
5854 * calendar/diary-lib.el (diary-outlook-format-1):
5855 Don't include dayname in the output. (Bug#14349)
5856
5857 2013-05-11 Glenn Morris <rgm@gnu.org>
5858
5859 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
5860
5861 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
5862 Treat cc-provide like provide.
5863
5864 2013-05-11 Kevin Ryde <user42@zip.com.au>
5865
5866 * cus-dep.el (custom-make-dependencies):
5867 Use generated-autoload-load-name for the sake of files such
5868 such cedet/semantic/bovine/c.el, where the base file name
5869 is not in load-path. (Bug#5277)
5870
5871 2013-05-11 Glenn Morris <rgm@gnu.org>
5872
5873 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
5874 Provide features.
5875
5876 2013-05-11 Leo Liu <sdl.web@gmail.com>
5877
5878 * progmodes/octave.el (octave-indent-comment): Improve.
5879 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
5880 (octave-eldoc-function-signatures, octave-eldoc-function):
5881 New functions.
5882 (octave-mode, inferior-octave-mode): Add eldoc support.
5883
5884 2013-05-11 Richard Stallman <rms@gnu.org>
5885
5886 * epa.el (epa-decrypt-file): Take output file name as argument
5887 and read it using `interactive'.
5888
5889 2013-05-11 Leo Liu <sdl.web@gmail.com>
5890
5891 * progmodes/octave.el (octave-beginning-of-line)
5892 (octave-end-of-line): Check before using up-list because it jumps
5893 out of more syntactic contructs since moving to smie.
5894 (octave-indent-comment): New function.
5895 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
5896 (octave-begin-keywords, octave-end-keywords)
5897 (octave-reserved-words, octave-smie-bnf-table)
5898 (octave-smie-rules): Add new keywords from Octave 3.6.4.
5899
5900 2013-05-11 Glenn Morris <rgm@gnu.org>
5901
5902 * faces.el (internal-face-x-get-resource):
5903 * frame.el (ns-display-monitor-attributes-list):
5904 * calc/calc-aent.el (math-to-radians-2):
5905 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
5906 Fix declarations.
5907
5908 * calc/calc-menu.el: Make it loadable in isolation.
5909
5910 * net/eudcb-bbdb.el: Make it loadable without bbdb.
5911 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
5912 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
5913 (eudc-bbdb-query-internal): Require 'bbdb.
5914
5915 * lpr.el (lpr-headers-switches):
5916 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
5917
5918 * progmodes/sql.el (sql-login-params): Fix and improve :type.
5919
5920 * emulation/edt-mapper.el: In batch mode, error rather than hang.
5921
5922 * term.el (term-set-escape-char): Make it idempotent.
5923
5924 2013-05-10 Leo Liu <sdl.web@gmail.com>
5925
5926 * progmodes/octave.el (inferior-octave-completion-table):
5927 No longer a function and all uses changed. Use cache to speed up
5928 completion due to bug#11906.
5929 (octave-beginning-of-defun): Re-write to be more general.
5930
5931 2013-05-10 Glenn Morris <rgm@gnu.org>
5932
5933 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
5934
5935 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
5936
5937 * comint.el (comint-redirect-send-command-to-process): Use :around
5938 rather than :override for comint-redirect-filter.
5939 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
5940 Call it instead of comint-redirect-original-filter-function (which
5941 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
5942
5943 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
5944
5945 * frame.el (display-monitor-attributes-list): Add NS case.
5946 (ns-display-monitor-attributes-list): Declare.
5947
5948 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
5949
5950 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
5951
5952 2013-05-09 Glenn Morris <rgm@gnu.org>
5953
5954 * international/fontset.el (vertical-centering-font-regexp):
5955 Set standard-value.
5956
5957 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
5958
5959 * bookmark.el (bookmark-search-delay):
5960 * cus-start.el (vertical-centering-font-regexp):
5961 * ps-mule.el (ps-mule-font-info-database-default):
5962 * ps-print.el (ps-default-fg, ps-default-bg):
5963 * type-break.el (type-break-good-break-interval):
5964 * whitespace.el (whitespace-indentation-regexp)
5965 (whitespace-space-after-tab-regexp):
5966 * emacs-lisp/testcover.el (testcover-1value-functions)
5967 (testcover-noreturn-functions, testcover-progn-functions)
5968 (testcover-prog1-functions):
5969 * emulation/viper-init.el (viper-emacs-state-cursor-color):
5970 * eshell/em-glob.el (eshell-glob-translate-alist):
5971 * play/tetris.el (tetris-tty-colors):
5972 * progmodes/cpp.el (cpp-face-default-list):
5973 * progmodes/flymake.el (flymake-allowed-file-name-masks):
5974 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
5975 (idlwave-help-browser-generic-args):
5976 * progmodes/make-mode.el (makefile-special-targets-list):
5977 * progmodes/python.el (python-shell-virtualenv-path):
5978 * progmodes/verilog-mode.el (verilog-active-low-regexp)
5979 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
5980 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
5981 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
5982 * textmodes/reftex-vars.el (reftex-format-label-function):
5983 * textmodes/remember.el (remember-diary-file): Fix custom types.
5984
5985 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
5986 Add :version.
5987
5988 2013-05-09 Leo Liu <sdl.web@gmail.com>
5989
5990 * progmodes/octave.el (inferior-octave-completion-at-point):
5991 Restore file completion. (Bug#14300)
5992 (inferior-octave-startup): Fix incorrect highlighting for the
5993 first prompt.
5994
5995 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
5996
5997 * progmodes/ruby-mode.el: First cut at SMIE support.
5998 (ruby-use-smie): New var.
5999 (ruby-smie-grammar): New constant.
6000 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
6001 (ruby-smie--forward-token, ruby-smie--backward-token)
6002 (ruby-smie-rules): New functions.
6003 (ruby-mode-variables): Setup SMIE if applicable.
6004
6005 2013-05-08 Eli Zaretskii <eliz@gnu.org>
6006
6007 * simple.el (line-move-visual): Signal beginning/end of buffer
6008 only if vertical-motion moved less than it was requested. Avoids
6009 silly incorrect error messages when there are display strings with
6010 multiple newlines at EOL.
6011
6012 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6013
6014 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
6015 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
6016 (prolog-char-quote-workaround):
6017 * progmodes/cperl-mode.el (cperl-under-as-char):
6018 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
6019 Mark as obsolete.
6020 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
6021 their declaration.
6022 (vhdl-mode-syntax-table-init): Remove.
6023
6024 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
6025 last change.
6026
6027 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
6028 syntax for "_".
6029 (ld-script-font-lock-keywords):
6030 Change regexps to use things like \_< and \_>.
6031
6032 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
6033 Change all regexps to use things like \_< and \_>.
6034
6035 * progmodes/autoconf.el (autoconf-definition-regexp)
6036 (autoconf-font-lock-keywords, autoconf-current-defun-function):
6037 Handle a _ with symbol syntax.
6038 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
6039
6040 * progmodes/ada-mode.el (ada-mode-abbrev-table):
6041 Consolidate declaration.
6042 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
6043 the declaration.
6044 (ada-create-syntax-table): Remove.
6045 (ada-capitalize-word): Don't mess with the syntax of "_" since it
6046 already has the right syntax nowadays.
6047 (ada-goto-next-word): Don't change the syntax of "_".
6048
6049 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
6050 with-wrapper-hook.
6051
6052 2013-05-08 Sam Steingold <sds@gnu.org>
6053
6054 * thingatpt.el (thing-at-point): Accept optional second argument
6055 NO-PROPERTIES to strip the text properties from the return value.
6056 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
6057 to `thing-at-point' instead of stripping the properties ourselves.
6058 Also, when `thing-at-point' fails to find a url, prepend "http://"
6059 to the filename at point on the assumption that the user is
6060 pointing at something like gnu.org/gnu.
6061
6062 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
6063
6064 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
6065 * faces.el (crm-separator):
6066 Silence byte-compiler.
6067
6068 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
6069 (tool-bar-map): Remove unneeded defvars.
6070
6071 2013-05-08 Leo Liu <sdl.web@gmail.com>
6072
6073 Re-work a fix for bug#10994 based on Le Wang's patch.
6074 * ido.el (ido-remove-consecutive-dups): New helper.
6075 (ido-completing-read): Use it.
6076 (ido-chop): Revert fix for bug#10994.
6077
6078 2013-05-08 Adam Spiers <emacs@adamspiers.org>
6079
6080 * cus-edit.el (custom-save-variables):
6081 Pretty-print long values. (Bug#14187)
6082
6083 2013-05-08 Glenn Morris <rgm@gnu.org>
6084
6085 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
6086 (m4-mode-syntax-table): Init in the defvar.
6087 (m4-mode-abbrev-table): Let define-derived-mode define it.
6088
6089 2013-05-08 Tom Tromey <tromey@redhat.com>
6090
6091 * progmodes/m4-mode.el (m4-mode-syntax-table):
6092 Do not treat "_" as word constituent. (Bug#14167)
6093
6094 2013-05-07 Glenn Morris <rgm@gnu.org>
6095
6096 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
6097 Remove explicit eshell-isearch-cancel-map.
6098
6099 * progmodes/f90.el (f90-smart-end-names): New option.
6100 (f90-smart-end): Doc fix.
6101 (f90-end-block-optional-name): New constant.
6102 (f90-block-match): Respect f90-smart-end-names.
6103
6104 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6105
6106 * progmodes/octave.el (octave-smie-forward-token): Be more careful
6107 about implicit semi-colons (bug#14218).
6108
6109 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6110
6111 * frame.el (display-monitor-attributes-list)
6112 (frame-monitor-attributes): New functions.
6113
6114 2013-05-06 Leo Liu <sdl.web@gmail.com>
6115
6116 * progmodes/octave.el (octave-syntax-propertize-function): Change
6117 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
6118 (octave-font-lock-keywords): Use octave-operator-regexp.
6119 (octave-completion-at-point): Rename from
6120 octave-completion-at-point-function.
6121 (inferior-octave-directory-tracker): Robustify.
6122 (octave-text-functions): Remove and fix its uses. No such things
6123 any more.
6124
6125 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6126
6127 * emacs-lisp/trace.el (trace--display-buffer): New function.
6128 (trace-make-advice): Use it.
6129
6130 2013-05-06 Juri Linkov <juri@jurta.org>
6131
6132 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
6133 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
6134 Doc fix.
6135 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
6136 in the help string. (Bug#12985)
6137
6138 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6139
6140 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
6141
6142 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6143
6144 * progmodes/perl-mode.el: Add support for here documents.
6145 (perl-syntax-propertize-function): Match here-doc markers.
6146 (perl-syntax-propertize-special-constructs): Find their end.
6147 (perl-imenu-generic-expression): Use [:alnum:].
6148
6149 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
6150 (advice--add-function): Refresh the advice if already present
6151 (bug#14317).
6152
6153 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
6154
6155 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
6156
6157 2013-05-06 Glenn Morris <rgm@gnu.org>
6158
6159 * w32-fns.el (w32-charset-info-alist): Declare.
6160
6161 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
6162 of its defcustom properties.
6163 (eshell-cmpl-initialize): No need to load pcomplete.
6164
6165 * generic-x.el: No need to require comint when compiling.
6166
6167 * net/eudc-export.el: Make it loadable without bbdb.
6168 (top-level): Use require rather than load-library.
6169 (eudc-create-bbdb-record, eudc-bbdbify-phone)
6170 (eudc-batch-export-records-to-bbdb)
6171 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
6172 Require bbdb.
6173
6174 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6175
6176 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
6177 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
6178 some tweaks, instead.
6179
6180 2013-05-05 Leo Liu <sdl.web@gmail.com>
6181
6182 * progmodes/octave.el (octave-font-lock-keywords)
6183 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
6184 (inferior-octave-send-list-and-digest): Improve error message.
6185 (octave-mode, inferior-octave-mode): Use setq-local.
6186 (octave-help): Set info-lookup-mode.
6187
6188 2013-05-05 Richard Stallman <rms@gnu.org>
6189
6190 * vc/compare-w.el (compare-windows-whitespace):
6191 Treat no-break space as whitespace.
6192
6193 * mail/rmailsum.el (rmail-summary-rmail-update):
6194 Detect empty summary and don't change selected message.
6195 (rmail-summary-goto-msg): Likewise.
6196
6197 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
6198 Doc fixes, rename args.
6199
6200 2013-05-05 Alan Mackenzie <acm@muc.de>
6201
6202 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
6203
6204 2013-05-05 Juri Linkov <juri@jurta.org>
6205
6206 * info.el (Info-read-subfile): Use (point-min) instead of (point)
6207 to not add the length of the summary segment to the return value.
6208 (Bug#14125)
6209
6210 2013-05-05 Leo Liu <sdl.web@gmail.com>
6211
6212 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
6213 (inferior-octave-output-filter): Remove.
6214 (octave-send-region, inferior-octave-startup): Fix callers.
6215 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
6216 (octave-binary-file-extensions): New user variable.
6217 (octave-find-definition): Confirm if opening binary files.
6218 (octave-help-file): Use octave-find-definition to get the binary
6219 confirmation.
6220 (octave-help): Adjust for octave-help-file change.
6221
6222 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6223
6224 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
6225 Merge the two entries that handle function definitions.
6226 (pascal--syntax-propertize): New const.
6227 (pascal-mode): Use it. Use setq-local.
6228
6229 2013-05-04 Glenn Morris <rgm@gnu.org>
6230
6231 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
6232 (diary-from-outlook): Respect diary-from-outlook-function.
6233
6234 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6235
6236 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
6237 Move the declaration from C.
6238 (read-minibuffer, eval-minibuffer): Move from C.
6239 (completion-setup-function): Avoid minibuffer-completion-contents.
6240
6241 2013-05-03 Leo Liu <sdl.web@gmail.com>
6242
6243 * progmodes/octave.el (octave-font-lock-keywords): Do not
6244 dehighlight 'end' in comments or strings.
6245 (octave-completing-read, octave-goto-function-definition):
6246 New helpers.
6247 (octave-help-buffer): New user variable.
6248 (octave-help-file, octave-help-function): New button types.
6249 (octave-help): New command and bind it to C-h ;.
6250 (octave-find-definition): New command and bind it to M-.
6251 (user-error): Alias to error if not defined.
6252
6253 2013-05-02 Leo Liu <sdl.web@gmail.com>
6254
6255 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
6256 for \. (bug#14332)
6257 (octave-font-lock-keywords): Include [ and {.
6258
6259 2013-05-02 Leo Liu <sdl.web@gmail.com>
6260
6261 * progmodes/octave.el (inferior-octave-startup-file): Change default.
6262 (inferior-octave): Remove calling comint-mode and return the buffer.
6263 (inferior-octave-startup): Cosmetic changes.
6264
6265 2013-05-02 Leo Liu <sdl.web@gmail.com>
6266
6267 * progmodes/octave.el (octave-syntax-propertize-function):
6268 Include the case when ' is at line beginning. (Bug#14336)
6269
6270 2013-05-02 Glenn Morris <rgm@gnu.org>
6271
6272 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
6273 * desktop.el (vc-dir-mode): Just autoload it here.
6274
6275 2013-05-02 Alan Mackenzie <acm@muc.de>
6276
6277 Eliminate variable c-standard-font-lock-fontify-region-function.
6278 * progmodes/cc-mode.el
6279 (c-standard-font-lock-fontify-region-function): Remove.
6280 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
6281
6282 2013-05-01 Leo Liu <sdl.web@gmail.com>
6283
6284 * progmodes/octave.el: Compatible with older emacs-24 releases.
6285 (inferior-octave-has-built-in-variables): Remove. Built-in
6286 variables were removed from Octave in 2007.
6287 (inferior-octave-startup): Fix uses.
6288 (comint-line-beginning-position): Remove compatibility code for
6289 emacs 21.
6290
6291 2013-05-01 Juri Linkov <juri@jurta.org>
6292
6293 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
6294
6295 2013-05-01 Juri Linkov <juri@jurta.org>
6296
6297 * comint.el (comint-previous-matching-input): Don't print message
6298 "History item: %d" when `isearch-mode' is active.
6299 (comint-history-isearch-message): Print message "History item: %d"
6300 when `comint-input-ring-index' is not empty and this function is
6301 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
6302
6303 2013-05-01 Leo Liu <sdl.web@gmail.com>
6304
6305 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
6306 definitions. Use completion-at-point to insert keywords.
6307 (octave-abbrev-start): Remove.
6308 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
6309
6310 2013-04-30 Leo Liu <sdl.web@gmail.com>
6311
6312 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
6313 change.
6314
6315 2013-04-30 Alan Mackenzie <acm@muc.de>
6316
6317 Handle arbitrarily long C++ member initialisation lists.
6318 * progmodes/cc-engine.el (c-back-over-member-initializers):
6319 new function.
6320 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
6321 (most) member init lists.
6322
6323 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6324
6325 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
6326 variable.
6327
6328 2013-04-30 Leo Liu <sdl.web@gmail.com>
6329
6330 * progmodes/octave.el (octave-variables): Remove. No builtin
6331 variables any more. All converted to functions.
6332 (octave-font-lock-keywords, octave-completion-at-point-function):
6333 Fix uses.
6334 (octave-font-lock-texinfo-comment): New user variable.
6335 (octave-texinfo-font-lock-keywords): New variable for texinfo
6336 comment block.
6337 (octave-function-comment-block): New face.
6338 (octave-font-lock-texinfo-comment): New function.
6339 (octave-mode): Font lock texinfo comment block.
6340
6341 2013-04-29 Leo Liu <sdl.web@gmail.com>
6342
6343 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
6344 indexing expression.
6345 (octave-continuation-string): Do not use \.
6346 (inferior-octave-complete-impossible): Remove.
6347 (inferior-octave-completion-table)
6348 (inferior-octave-completion-at-point): Remove its uses.
6349 (inferior-octave-startup): completion_matches was introduced to
6350 Octave in 1996 so safe to assume it.
6351 (octave-function-file-comment): Improve to follow how Octave does it.
6352 (octave-update-function-file-comment): Tweak.
6353
6354 2013-04-29 Leo Liu <sdl.web@gmail.com>
6355
6356 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
6357 (inferior-octave-startup): Remove inferior-octave-startup-hook.
6358 (octave-function-file-comment): Fix typo.
6359 (octave-sync-function-file-names): Use read-char-choice.
6360
6361 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
6362
6363 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
6364 to t for the less important warnings.
6365
6366 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
6367
6368 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
6369
6370 2013-04-27 Glenn Morris <rgm@gnu.org>
6371
6372 * vc/log-view.el (log-view-current-entry):
6373 Treat "---" separator lines as part of the following rev. (Bug#14169)
6374
6375 2013-04-27 Juri Linkov <juri@jurta.org>
6376
6377 * subr.el (read-number): Doc fix about using it by interactive
6378 code letter `n'. (Bug#14254)
6379
6380 2013-04-27 Juri Linkov <juri@jurta.org>
6381
6382 * desktop.el (desktop-auto-save-timeout): New option.
6383 (desktop-file-checksum): New variable.
6384 (desktop-save): Add optional arg `auto-save' and don't auto-save
6385 if nothing changed.
6386 (desktop-auto-save-timer): New variable.
6387 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
6388 (after-init-hook): Call `desktop-auto-save-set-timer'.
6389 Suggested by Reuben Thomas <rrt@sc3d.org> in
6390 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
6391
6392 2013-04-27 Leo Liu <sdl.web@gmail.com>
6393
6394 * progmodes/octave.el (octave-function-file-p)
6395 (octave-skip-comment-forward, octave-function-file-comment)
6396 (octave-update-function-file-comment): New functions.
6397 (octave-mode-map): Bind C-c ; to
6398 octave-update-function-file-comment.
6399 (octave-mode-menu): Add octave-update-function-file-comment.
6400 (octave-mode, inferior-octave-mode): Fix doc-string.
6401 (octave-insert-defun): Conform to Octave's coding convention.
6402 (Bug#14285)
6403
6404 * files.el (basic-save-buffer): Don't let errors in
6405 before-save-hook prevent saving buffer.
6406
6407 2013-04-20 Roland Winkler <winkler@gnu.org>
6408
6409 * faces.el (read-face-name): Use completing-read if arg multiple
6410 is nil.
6411
6412 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
6413
6414 * ls-lisp.el (ls-lisp-insert-directory): If no files are
6415 displayed, move point to after the totals line.
6416 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
6417 for the details.
6418
6419 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
6420
6421 * emacs-lisp/package.el (package-autoload-ensure-default-file):
6422 Add current dir to the load-path.
6423 (package-generate-autoloads): Don't rely on
6424 autoload-ensure-default-file.
6425
6426 2013-04-26 Reuben Thomas <rrt@sc3d.org>
6427
6428 * textmodes/remember.el (remember-store-in-files): Document that
6429 the file name format is passed to `format-time-string'.
6430
6431 2013-04-26 Leo Liu <sdl.web@gmail.com>
6432
6433 * progmodes/octave.el (octave-sync-function-file-names): New function.
6434 (octave-mode): Use it in before-save-hook.
6435
6436 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
6437
6438 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
6439 (bug#14274).
6440
6441 * progmodes/octave.el (octave-smie-forward-token): Properly skip
6442 \n and comment, even if it's not an implicit ; (bug#14218).
6443
6444 2013-04-26 Glenn Morris <rgm@gnu.org>
6445
6446 * subr.el (read-number): Once more use `read' rather than
6447 `string-to-number', to trap non-numeric input. (Bug#14254)
6448
6449 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
6450
6451 * emacs-lisp/syntax.el (syntax-propertize-multiline):
6452 Use `syntax-multiline' text property consistently instead of
6453 `font-lock-multiline'. (Bug#14237)
6454
6455 2013-04-26 Glenn Morris <rgm@gnu.org>
6456
6457 * emacs-lisp/shadow.el (list-load-path-shadows):
6458 No longer necessary to check for duplicate simple.el, since
6459 2012-07-07 change to init_lread to not include installation lisp
6460 directories in load-path when running uninstalled. (Bug#14270)
6461
6462 2013-04-26 Leo Liu <sdl.web@gmail.com>
6463
6464 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
6465 (octave-mode, inferior-octave-mode): Use setq-local.
6466 (octave-not-in-string-or-comment-p): Rename to
6467 octave-in-string-or-comment-p.
6468 (octave-in-comment-p, octave-in-string-p)
6469 (octave-in-string-or-comment-p): Replace defsubst with defun.
6470
6471 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
6472
6473 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
6474
6475 2013-04-25 Bastien Guerry <bzg@gnu.org>
6476
6477 * textmodes/remember.el (remember-data-directory)
6478 (remember-directory-file-name-format): Fix custom types.
6479
6480 2013-04-25 Leo Liu <sdl.web@gmail.com>
6481
6482 * progmodes/octave.el (octave-completion-at-point-function):
6483 Make use of inferior octave process.
6484 (octave-initialize-completions): Remove.
6485 (inferior-octave-completion-table): New function.
6486 (inferior-octave-completion-at-point): Use it.
6487 (octave-completion-alist): Remove.
6488
6489 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
6490
6491 * progmodes/opascal.el: Use font-lock and syntax-propertize.
6492 (opascal-mode-syntax-table): New var.
6493 (opascal-literal-kind, opascal-is-literal-end)
6494 (opascal-literal-token-at): Rewrite.
6495 (opascal--literal-start-re, opascal-font-lock-keywords)
6496 (opascal--syntax-propertize): New constants.
6497 (opascal-font-lock-defaults): Adjust.
6498 (opascal-mode): Use them. Set comment-<foo> variables as well.
6499 (delphi-comment-face, opascal-comment-face, delphi-string-face)
6500 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
6501 (delphi-other-face, opascal-other-face): Remove face variables.
6502 (opascal-save-state): Remove macro.
6503 (opascal-fontifying-progress-step): Remove constant.
6504 (opascal--ignore-changes): Remove var.
6505 (opascal-set-token-property, opascal-parse-next-literal)
6506 (opascal-is-stable-literal, opascal-complete-literal)
6507 (opascal-is-literal-start, opascal-face-of)
6508 (opascal-parse-region, opascal-parse-region-until-stable)
6509 (opascal-fontify-region, opascal-after-change)
6510 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
6511 (opascal-debug-parse-region, opascal-debug-parse-window)
6512 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
6513 (opascal-debug-fontify-buffer): Remove.
6514 (opascal-debug-mode-map): Adjust accordingly.
6515
6516 2013-04-25 Leo Liu <sdl.web@gmail.com>
6517
6518 Merge octave-mod.el and octave-inf.el into octave.el with some
6519 cleanups.
6520 * progmodes/octave.el: New file renamed from octave-mod.el.
6521 * progmodes/octave-inf.el: Merged into octave.el.
6522 * progmodes/octave-mod.el: Renamed to octave.el.
6523
6524 2013-04-25 Tassilo Horn <tsdh@gnu.org>
6525
6526 * textmodes/reftex-vars.el
6527 (reftex-label-ignored-macros-and-environments): New defcustom.
6528
6529 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
6530
6531 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
6532
6533 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
6534 (smie-indent-keyword): Improve the check to ensure that the next
6535 comment is really on the same line.
6536 (smie-indent-comment): Don't align with a subsequent closer (or eob).
6537
6538 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
6539 semi-colons if the line is not otherwise empty (bug#14218).
6540
6541 2013-04-25 Glenn Morris <rgm@gnu.org>
6542
6543 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
6544
6545 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
6546
6547 * progmodes/opascal.el (opascal-set-token-property): Rename from
6548 opascal-set-text-properties and only set `token' (bug#14134).
6549 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
6550 (opascal-literal-text-properties): Remove.
6551 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
6552 Adjust callers.
6553
6554 2013-04-24 Reuben Thomas <rrt@sc3d.org>
6555
6556 * textmodes/remember.el (remember-handler-functions): Add an
6557 option for a new handler `remember-store-in-files'.
6558 (remember-data-directory, remember-directory-file-name-format):
6559 New options.
6560 (remember-store-in-files): New function to store remember notes
6561 as separate files within a directory.
6562
6563 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
6564
6565 * progmodes/compile.el (compilation-next-error-function):
6566 Pass "formats" to compilation-find-file (bug#11777).
6567
6568 2013-04-24 Glenn Morris <rgm@gnu.org>
6569
6570 * vc/vc-bzr.el (vc-bzr-print-log):
6571 * vc/vc-hg.el (vc-hg-print-log):
6572 * vc/vc-svn.el (vc-svn-print-log):
6573 Fix START-REVISION with LIMIT != 1. (Bug#14168)
6574
6575 * vc/vc-bzr.el (vc-bzr-print-log):
6576 * vc/vc-cvs.el (vc-cvs-print-log):
6577 * vc/vc-git.el (vc-git-print-log):
6578 * vc/vc-hg.el (vc-hg-print-log):
6579 * vc/vc-mtn.el (vc-mtn-print-log):
6580 * vc/vc-rcs.el (vc-rcs-print-log):
6581 * vc/vc-sccs.el (vc-sccs-print-log):
6582 * vc/vc-svn.el (vc-svn-print-log):
6583 * vc/vc.el (vc-print-log-internal): Doc fixes.
6584
6585 2013-04-23 Glenn Morris <rgm@gnu.org>
6586
6587 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
6588 Remove venerable code attempting to avoid substitute-command-keys.
6589
6590 2013-04-23 Tassilo Horn <tsdh@gnu.org>
6591
6592 * textmodes/reftex-vars.el (reftex-label-regexps):
6593 Call `reftex-compile-variables' after changes to this variable.
6594
6595 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
6596
6597 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
6598 Use lexical-binding.
6599 (jit-lock-force-redisplay): Use markers, check buffer's continued
6600 existence and beware narrowed buffers.
6601 (jit-lock-fontify-now): Adjust call accordingly.
6602
6603 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
6604
6605 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
6606 to avoid misleading the user.
6607
6608 2013-04-22 Leo Liu <sdl.web@gmail.com>
6609
6610 * info-look.el: Prefer latex2e.info. (Bug#14240)
6611
6612 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
6613
6614 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
6615
6616 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
6617 * net/tramp.el (tramp-call-process): ... here.
6618 (tramp-set-completion-function, tramp-parse-putty):
6619 * net/tramp-adb.el (tramp-adb-execute-adb-command):
6620 * net/tramp-gvfs.el (tramp-gvfs-send-command):
6621 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
6622 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
6623 (tramp-call-local-coding-command): Use `tramp-call-process'
6624 instead of `tramp-compat-call-process'.
6625
6626 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
6627 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
6628 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
6629 (tramp-find-inline-compress): Improve traces.
6630 (tramp-maybe-send-script): Check for Perl binary.
6631 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
6632
6633 2013-04-22 Daiki Ueno <ueno@gnu.org>
6634
6635 * epg.el (epg-context-pinentry-mode): New function.
6636 (epg-context-set-pinentry-mode): New function.
6637 (epg--start): Pass --pinentry-mode option to gpg command.
6638
6639 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
6640
6641 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
6642 `comint-dynamic-complete' is obsolete since 24.1, replaced by
6643 `completion-at-point'. (Bug#13774)
6644
6645 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
6646 default key binding for `describe-distribution' has been moved to
6647 `C-h C-o'. (Bug#13970)
6648
6649 2013-04-21 Glenn Morris <rgm@gnu.org>
6650
6651 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
6652 Add doc strings.
6653 (vc-print-log): Clarify interactive prompt.
6654
6655 2013-04-20 Glenn Morris <rgm@gnu.org>
6656
6657 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
6658 No longer include timestamp etc information.
6659
6660 2013-04-20 Roland Winkler <winkler@gnu.org>
6661
6662 * faces.el (read-face-name): Bug fix, return just one face if arg
6663 multiple is nil. (Bug#14209)
6664
6665 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6666
6667 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
6668 (remove-function): Autoload.
6669
6670 * comint.el (comint-redirect-original-filter-function): Remove.
6671 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
6672 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
6673 (vc-cvs-annotate-command):
6674 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
6675 * progmodes/prolog.el (prolog-consult-compile):
6676 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
6677 Use add/remove-function instead.
6678 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
6679 (gud-tooltip-process-output, gud-tooltip-tips):
6680 Use add/remove-function instead.
6681 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
6682 (scheme-interaction-mode, exit-scheme-interaction-mode):
6683 Use add/remove-function instead.
6684
6685 * vc/vc-dispatcher.el: Use lexical-binding.
6686 (vc--process-sentinel): Rename from vc-process-sentinel.
6687 Change last arg to be the code to run. Don't use vc-previous-sentinel
6688 and vc-sentinel-commands any more.
6689 (vc-exec-after): Allow code to be a function. Use add/remove-function.
6690 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
6691
6692 2013-04-19 Masatake YAMATO <yamato@redhat.com>
6693
6694 * progmodes/sh-script.el (sh-imenu-generic-expression):
6695 Handle function names with a single character. (Bug#14111)
6696
6697 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
6698
6699 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
6700 for subroutines defined in an eval (bug#14182).
6701
6702 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6703
6704 * bookmark.el (bookmark-completing-read): Improve handling of empty
6705 string (bug#14176).
6706
6707 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
6708
6709 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
6710
6711 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
6712
6713 New faster Imenu implementation (bug#14058).
6714 * progmodes/python.el:
6715 (python-imenu-prev-index-position):
6716 (python-imenu-format-item-label-function)
6717 (python-imenu-format-parent-item-label-function)
6718 (python-imenu-format-parent-item-jump-label-function):
6719 New vars.
6720 (python-imenu-format-item-label)
6721 (python-imenu-format-parent-item-label)
6722 (python-imenu-format-parent-item-jump-label)
6723 (python-imenu--put-parent, python-imenu--build-tree)
6724 (python-imenu-create-index, python-imenu-create-flat-index)
6725 (python-util-popn): New functions.
6726 (python-mode): Set imenu-create-index-function to
6727 python-imenu-create-index.
6728
6729 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6730
6731 * winner.el (winner-active-region): Use region-active-p, activate-mark
6732 and deactivate-mark (bug#14225).
6733
6734 * simple.el (deactivate-mark): Don't inline it.
6735
6736 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
6737
6738 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
6739
6740 2013-04-18 Tassilo Horn <tsdh@gnu.org>
6741
6742 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
6743 file extensions from the archive-mode entry in order to prefer
6744 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
6745
6746 2013-04-18 Leo Liu <sdl.web@gmail.com>
6747
6748 * bindings.el (help-event-list): Add ?\?.
6749
6750 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6751
6752 * subr.el (with-wrapper-hook): Declare obsolete.
6753 * simple.el (filter-buffer-substring-function): New hook.
6754 (filter-buffer-substring): Use it.
6755 (filter-buffer-substring-functions): Mark obsolete.
6756 * minibuffer.el (completion-in-region-function): New hook.
6757 (completion-in-region): Use it.
6758 (completion-in-region-functions): Mark obsolete.
6759 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
6760 * abbrev.el (abbrev-expand-function): New hook.
6761 (expand-abbrev): Use it.
6762 (abbrev-expand-functions): Mark obsolete.
6763 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
6764 and :filter-return.
6765
6766 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
6767
6768 * progmodes/python.el (python-nav--syntactically): Fix cornercases
6769 and do not care about match data.
6770
6771 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
6772
6773 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
6774 completion tables when completing error conditions and
6775 `declare' arguments.
6776 (lisp-complete-symbol, field-complete): Mark as obsolete.
6777 (check-parens): Unmatched parens are user errors.
6778 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
6779
6780 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
6781
6782 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
6783 command changed buffer (ie. `flyspell-pre-buffer' is not current
6784 buffer), which prevents making decisions based on invalid value of
6785 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
6786 cause an error when `flyspell-pre-point' was nil after switching
6787 buffers.
6788 (flyspell-post-command-hook): No longer needs to change buffers when
6789 checking pre-word. While at it remove unnecessary progn.
6790
6791 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
6792
6793 * textmodes/ispell.el (ispell-add-per-file-word-list):
6794 Fix `flyspell-correct-word-before-point' error when accepting
6795 words and `coment-padding' is an integer by using
6796 `comment-normalize-vars' (Bug #14214).
6797
6798 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
6799
6800 New defun movement commands.
6801 * progmodes/python.el (python-nav--syntactically)
6802 (python-nav--forward-defun, python-nav-backward-defun)
6803 (python-nav-forward-defun): New functions.
6804
6805 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
6806
6807 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
6808 (python-syntax-context): Use named compiler-macro for backwards
6809 compatibility with Emacs 24.x.
6810
6811 2013-04-17 Leo Liu <sdl.web@gmail.com>
6812
6813 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
6814 octave-hide-process-buffer.
6815
6816 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
6817
6818 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
6819 (bug#14216).
6820
6821 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
6822
6823 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
6824 Fix adjustment of offset when receiving incomplete responses from GDB
6825 (bug#14129).
6826
6827 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
6828
6829 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
6830 python-mode-abbrev-table.
6831 (python-skeleton-define): Adjust accordingly.
6832 (python-mode-abbrev-table): New table that inherits from it so that
6833 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
6834
6835 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
6836 (abbrev-symbol): Use it.
6837 (abbrev--before-point): Use it since we already handle inheritance.
6838
6839 2013-04-16 Leo Liu <sdl.web@gmail.com>
6840
6841 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
6842 binding to info-lookup-symbol.
6843
6844 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
6845
6846 * minibuffer.el (completion--twq-all):
6847 * term/ns-win.el (ns-initialize-window-system):
6848 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
6849
6850 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
6851
6852 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
6853 global bindings.
6854
6855 * doc-view.el (doc-view-start-process): Handle url-handler directories.
6856
6857 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
6858
6859 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
6860 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
6861 to nil.
6862 (ruby-end-of-defun): Remove the unused arg, change the docstring
6863 to reflect that this function is only used as the value of
6864 `end-of-defun-function'.
6865 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
6866 to reflect an earlier change that beginning/end-of-defun functions
6867 jump between methods in a class definition, as well as top-level
6868 functions.
6869
6870 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
6871
6872 * minibuffer.el (minibuffer-complete): Don't just scroll
6873 a *Completions* that's been iconified.
6874 (minibuffer-force-complete): Make sure repetitions do cycle when going
6875 through completion-in-region -> minibuffer-complete.
6876
6877 2013-04-15 Alan Mackenzie <acm@muc.de>
6878
6879 Correct the placement of c-cpp-delimiters when there're #s not at
6880 col 0.
6881
6882 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
6883 place a submatch around the #.
6884 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
6885 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
6886 on the #, not BOL.
6887
6888 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
6889
6890 * emacs-lisp/nadvice.el: Properly test names when adding advice.
6891 (advice--member-p): New arg `name'.
6892 (advice--add-function, advice-member-p): Use it (bug#14202).
6893
6894 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
6895
6896 Reformulate java imenu-generic-expression.
6897 The old expression contained ill formed regexps.
6898
6899 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
6900 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
6901 (cc-imenu-java-method-arg-regexp): New defconsts.
6902 (cc-imenu-java-build-type-args-regex): New defun.
6903 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
6904 handling of spaces in the regexp.
6905
6906 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6907
6908 * textmodes/ispell.el (ispell-command-loop): Remove
6909 flyspell highlight of a word when ispell accepts it (bug #14178).
6910
6911 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
6912
6913 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
6914 uses code from the previous `ange-ftp-run-real-handler'.
6915 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
6916 only in case that function exist. This is needed for proper
6917 unloading of Tramp.
6918
6919 2013-04-15 Tassilo Horn <tsdh@gnu.org>
6920
6921 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
6922
6923 * textmodes/reftex.el (reftex-compile-variables): Use it.
6924
6925 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
6926
6927 * files.el (normal-mode): Only use default major-mode if no other mode
6928 was specified.
6929
6930 * emacs-lisp/trace.el (trace-values): New function.
6931
6932 * files.el: Allow : in local variables (bug#14089).
6933 (hack-local-variable-regexp): New var.
6934 (hack-local-variables-prop-line, hack-local-variables): Use it.
6935
6936 2013-04-13 Roland Winkler <winkler@gnu.org>
6937
6938 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
6939 data before it gets modified by bibtex-beginning-of-entry.
6940
6941 2013-04-13 Roland Winkler <winkler@gnu.org>
6942
6943 * textmodes/bibtex.el (bibtex-url): Doc fix.
6944
6945 2013-04-13 Roland Winkler <winkler@gnu.org>
6946
6947 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
6948 does not visit a BibTeX file, exclude it from the list of buffers
6949 returned by bibtex-initialize.
6950
6951 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
6952
6953 * window.el (split-window): Remove interactive form, since as a
6954 command this function is a special case of split-window-below.
6955 Correct doc string.
6956
6957 2013-04-12 Roland Winkler <winkler@gnu.org>
6958
6959 * faces.el (read-face-name): Do not override value of arg default.
6960 Allow single faces and strings as default values. Remove those
6961 elements from return value that are not faces.
6962 (describe-face): Simplify.
6963 (face-at-point): New optional args thing and multiple so that this
6964 function can provide the same functionality previously provided by
6965 read-face-name.
6966 (make-face-bold, make-face-unbold, make-face-italic)
6967 (make-face-unitalic, make-face-bold-italic, invert-face)
6968 (modify-face, read-face-and-attribute): Use face-at-point.
6969
6970 * cus-edit.el (customize-face, customize-face-other-window)
6971 * cus-theme.el (custom-theme-add-face)
6972 * face-remap.el (buffer-face-set)
6973 * facemenu.el (facemenu-set-face): Use face-at-point.
6974
6975 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
6976
6977 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
6978
6979 2013-04-10 Tassilo Horn <tsdh@gnu.org>
6980
6981 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
6982 off leading { and trailing } from field values.
6983
6984 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
6985
6986 * emacs-lisp/timer.el (timer--check): New function.
6987 (timer--time, timer-set-function, timer-event-handler): Use it.
6988 (timer-set-idle-time): Simplify.
6989 (timer--activate): CSE.
6990 (timer-event-handler): Give more info in error message.
6991 (internal-timer-start-idle): New function, moved from C.
6992
6993 * mpc.el (mpc-proc): Add `restart' argument.
6994 (mpc-proc-cmd): Use it.
6995 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
6996 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
6997 less often.
6998
6999 2013-04-10 Masatake YAMATO <yamato@redhat.com>
7000
7001 * progmodes/sh-script.el: Implement `sh-mode' own
7002 `add-log-current-defun-function' (bug#14112).
7003 (sh-current-defun-name): New function.
7004 (sh-mode): Use the function.
7005
7006 2013-04-09 Bastien Guerry <bzg@gnu.org>
7007
7008 * simple.el (choose-completion-string): Fix docstring (bug#14163).
7009
7010 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
7011
7012 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
7013
7014 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
7015 timer (bug#14156).
7016
7017 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
7018
7019 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
7020 declaration.
7021
7022 2013-04-07 Leo Liu <sdl.web@gmail.com>
7023
7024 * pcmpl-x.el: New file.
7025
7026 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
7027
7028 Do not set x-display-name until X connection is established.
7029 This is needed to prevent from weird situation described at
7030 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
7031 * frame.el (make-frame): Set x-display-name after call to
7032 window system initialization function, not before.
7033 * term/x-win.el (x-initialize-window-system): Add optional
7034 display argument and use it.
7035 * term/w32-win.el (w32-initialize-window-system):
7036 * term/ns-win.el (ns-initialize-window-system):
7037 * term/pc-win.el (msdos-initialize-window-system):
7038 Add compatible optional display argument.
7039
7040 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7041
7042 * files.el (normal-backup-enable-predicate): On MS-Windows and
7043 MS-DOS compare truenames of temporary-file-directory and of the
7044 file, so that 8+3 aliases (usually found in $TEMP on Windows)
7045 don't fail comparison by compare-strings. Also, compare file
7046 names case-insensitively on MS-Windows and MS-DOS.
7047
7048 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
7049
7050 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
7051 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
7052
7053 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
7054
7055 * whitespace.el (whitespace-color-on, whitespace-color-off):
7056 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
7057
7058 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
7059
7060 * ispell.el (ispell-set-spellchecker-params):
7061 Really set `ispell-args' for all equivs.
7062
7063 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
7064
7065 * ido.el (ido-completions): Use extra elements of ido-decorations
7066 (bug#14143).
7067 (ido-decorations): Update docstring.
7068
7069 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
7070
7071 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7072 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
7073 nil during initialization, in order not to miss changes since the
7074 file was opened. (Bug#14140)
7075
7076 2013-04-05 Leo Liu <sdl.web@gmail.com>
7077
7078 * kmacro.el (kmacro-call-macro): Fix bug#14135.
7079
7080 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
7081
7082 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
7083
7084 2013-04-04 Glenn Morris <rgm@gnu.org>
7085
7086 * electric.el (electric-pair-inhibit-predicate): Add :version.
7087
7088 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
7089
7090 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
7091 when a package is required several times (bug#14082).
7092
7093 2013-04-04 Roland Winkler <winkler@gnu.org>
7094
7095 * faces.el (read-face-name): Behave as promised by the docstring.
7096 Assume that arg default is a list of faces.
7097 (describe-face): Call read-face-name with list of default faces.
7098
7099 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7100
7101 * bookmark.el: Fix deletion of bookmarks (bug#13972).
7102 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
7103 (bookmark-bmenu-execute-deletions): Only skip first line if it's
7104 the header.
7105 (bookmark-exit-hook-internal): Save even if list is empty.
7106
7107 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
7108
7109 * emacs-lisp/package.el (package-pinned-packages): New var.
7110 (package--add-to-archive-contents): Obey it (bug#14118).
7111
7112 2013-04-03 Alan Mackenzie <acm@muc.de>
7113
7114 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
7115 Also adapt to the new values of element 7 of a parse state.
7116
7117 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
7118 parameter `not-in-delimiter'. Handle being inside comment opener.
7119 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
7120 character in case we're typing a '*' after a '/'.
7121 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
7122 instead by passing the parameter to c-state-pp-to-literal.
7123
7124 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
7125 for elt. 7 of a parse state.
7126
7127 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
7128
7129 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
7130 * international/latin1-disp.el, international/mule-util.el:
7131 * language/cyril-util.el, language/european.el, language/ind-util.el:
7132 * language/lao-util.el, language/thai.el, language/tibet-util.el:
7133 * language/tibetan.el, language/viet-util.el:
7134 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
7135
7136 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
7137
7138 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
7139 (electric-pair-post-self-insert-function): Use it.
7140 (electric-pair-default-inhibit): New function, extracted from
7141 electric-pair-post-self-insert-function.
7142
7143 2013-03-31 Roland Winkler <winkler@gnu.org>
7144
7145 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
7146
7147 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7148
7149 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
7150
7151 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
7152
7153 Un-indent after "pass" and "return" statements (Bug#13888)
7154 * progmodes/python.el (python-indent-block-enders): New var.
7155 (python-indent-calculate-indentation): Use it.
7156
7157 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
7158
7159 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
7160 defun. Defining it as defalias could introduce too eager
7161 byte-compiler optimization. (Bug#14030)
7162
7163 2013-03-30 Chong Yidong <cyd@gnu.org>
7164
7165 * iswitchb.el (iswitchb-read-buffer): Fix typo.
7166
7167 2013-03-30 Leo Liu <sdl.web@gmail.com>
7168
7169 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
7170 (kmacro-execute-from-register): Pass the keyboard macro to
7171 kmacro-call-macro or repeating won't work correctly.
7172
7173 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
7174
7175 * progmodes/subword.el: Back to using `forward-symbol'.
7176
7177 * subr.el (forward-whitespace, forward-symbol)
7178 (forward-same-syntax): Move from thingatpt.el.
7179
7180 2013-03-29 Leo Liu <sdl.web@gmail.com>
7181
7182 * kmacro.el (kmacro-to-register): New command.
7183 (kmacro-execute-from-register): New function.
7184 (kmacro-keymap): Bind to 'x'. (Bug#14071)
7185
7186 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
7187
7188 * mpc.el: Use defvar-local and setq-local.
7189 (mpc--proc-connect): Connection failures are not bugs.
7190 (mpc-mode-map): `follow-link' only applies to the buffer's content.
7191 (mpc-volume-map): Bind to the up-events.
7192
7193 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
7194
7195 * progmodes/subword.el (superword-mode): Use `forward-sexp'
7196 instead of `forward-symbol'.
7197
7198 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7199
7200 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
7201 (edebug--recursive-edit): Use it.
7202 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
7203 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
7204
7205 2013-03-28 Leo Liu <sdl.web@gmail.com>
7206
7207 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
7208
7209 2013-03-27 Eli Zaretskii <eliz@gnu.org>
7210
7211 * facemenu.el (list-colors-callback): New defvar.
7212 (list-colors-redisplay): New function.
7213 (list-colors-display): Install list-colors-redisplay as the
7214 revert-buffer-function. (Bug#14063)
7215
7216 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
7217
7218 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
7219 and suffixes don't overlap (bug#14061).
7220
7221 * case-table.el: Use lexical-binding.
7222 (case-table-get-table): New function.
7223 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
7224
7225 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
7226
7227 * progmodes/subword.el: Add `superword-mode' to do word motion
7228 over symbol_words (parallels and leverages `subword-mode' which
7229 does word motion inside MixedCaseWords).
7230
7231 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
7232
7233 * eshell/em-unix.el: Move su and sudo to...
7234 * eshell/em-tramp.el: ...Eshell tramp module.
7235
7236 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
7237
7238 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
7239 Change return value to be a sexp. Delay `get-buffer' to after
7240 restoring the desktop (bug#13951).
7241
7242 2013-03-26 Leo Liu <sdl.web@gmail.com>
7243
7244 * register.el: Move semantic tag handling back to
7245 cedet/semantic/senator.el. (Bug#14052)
7246
7247 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
7248
7249 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
7250 into the prompt either (bug#13963).
7251
7252 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
7253
7254 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
7255 part of "(error-foo)".
7256
7257 2013-03-24 Juri Linkov <juri@jurta.org>
7258
7259 * replace.el (list-matching-lines-prefix-face): New defcustom.
7260 (occur-1): Pass `list-matching-lines-prefix-face' to the function
7261 `occur-engine' if `face-differs-from-default-p' returns t.
7262 (occur-engine): Add `,' inside backquote construct to evaluate
7263 `prefix-face'. Propertize the prefix with the `prefix-face' face.
7264 Pass `prefix-face' to the functions `occur-context-lines' and
7265 `occur-engine-add-prefix'.
7266 (occur-engine-add-prefix, occur-context-lines): Add optional arg
7267 `prefix-face' and propertize the prefix with `prefix-face'.
7268 (Bug#14017)
7269
7270 2013-03-24 Leo Liu <sdl.web@gmail.com>
7271
7272 * nxml/rng-valid.el (rng-validate-while-idle)
7273 (rng-validate-quick-while-idle): Guard against deleted buffer.
7274 (Bug#13999)
7275
7276 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
7277 is the last entry in kill-buffer-hook.
7278
7279 * files.el (kill-buffer-hook): Doc fix.
7280
7281 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
7282
7283 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
7284 Make it safe-local.
7285
7286 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
7287
7288 2013-03-23 Leo Liu <sdl.web@gmail.com>
7289
7290 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
7291 Remove.
7292
7293 * nxml/rng-valid.el (rng-validate-mode)
7294 (rng-after-change-function, rng-do-some-validation):
7295 * nxml/rng-maint.el (rng-validate-buffer):
7296 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
7297 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
7298 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
7299 (nxml-extend-after-change-region): Use with-silent-modifications.
7300
7301 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
7302 timer-idle-list.
7303
7304 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
7305 (rng-next-error-1, rng-previous-error-1): Do not let-bind
7306 timer-idle-list. (Bug#13999)
7307
7308 2013-03-23 Juri Linkov <juri@jurta.org>
7309
7310 * info.el (info-index-match): New face.
7311 (Info-index, Info-apropos-matches): Add a nested subgroup to the
7312 main pattern and add text properties with the new face to matches
7313 in index entries relative to the beginning of the index entry.
7314 (Bug#14015)
7315
7316 2013-03-21 Eric Ludlam <zappo@gnu.org>
7317
7318 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
7319 Inhibit read only while inserting objects.
7320
7321 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
7322
7323 * progmodes/cfengine.el: Update docs to mention
7324 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
7325 symbol motion. Remove "_" from the word syntax.
7326
7327 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
7328
7329 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
7330 syntax for both `cfengine2-mode' and `cfengine3-mode'.
7331
7332 2013-03-20 Juri Linkov <juri@jurta.org>
7333
7334 * info.el (Info-next-reference-or-link)
7335 (Info-prev-reference-or-link): New functions.
7336 (Info-next-reference, Info-prev-reference): Use them.
7337 (Info-try-follow-nearest-node): Handle footnote navigation.
7338 (Info-fontify-node): Fontify footnotes. (Bug#13989)
7339
7340 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
7341
7342 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
7343 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
7344
7345 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
7346
7347 Suppress unnecessary non-ASCII chatter during build process.
7348 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
7349 (batch-skkdic-convert): Suppress most of the chatter.
7350 It's not needed so much now that machines are faster,
7351 and its non-ASCII component was confusing; see Dmitry Gutov in
7352 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
7353
7354 2013-03-20 Leo Liu <sdl.web@gmail.com>
7355
7356 * ido.el (ido-chop): Fix bug#10994.
7357
7358 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
7359
7360 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
7361 Remove vars.
7362 (whitespace-color-on, whitespace-color-off):
7363 Use `font-lock-fontify-buffer' (Bug#13817).
7364
7365 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
7366
7367 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
7368 remapping in mode-line.
7369 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
7370
7371 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
7372
7373 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
7374 value for `whitespace-line' face (Bug#13875).
7375 (whitespace-font-lock-keywords): Change description.
7376 (whitespace-color-on): Don't save `font-lock-keywords' value, save
7377 the constructed keywords instead.
7378 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
7379
7380 2013-03-19 Leo Liu <sdl.web@gmail.com>
7381
7382 * progmodes/compile.el (compilation-display-error): New command.
7383 (compilation-mode-map, compilation-minor-mode-map): Bind it to
7384 C-o. (Bug#13992)
7385
7386 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
7387
7388 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
7389
7390 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
7391
7392 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
7393
7394 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
7395
7396 * net/tramp-compat.el (tramp-compat-user-error): New defun.
7397
7398 * net/tramp-adb.el (tramp-adb-handle-shell-command):
7399 * net/tramp-gvfs.el (top):
7400 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
7401 (tramp-handle-shell-command): Use it.
7402 (tramp-dissect-file-name): Raise an error when hostname is a
7403 method name, and neither method nor user is specified.
7404
7405 * net/trampver.el: Update release number.
7406
7407 2013-03-18 Leo Liu <sdl.web@gmail.com>
7408
7409 Make sure eldoc can be turned off properly.
7410 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
7411 eldoc-mode.
7412 (eldoc-display-message-p): Revert last change.
7413 (eldoc-display-message-no-interference-p)
7414 (eldoc-print-current-symbol-info): Tweak.
7415
7416 2013-03-18 Tassilo Horn <tsdh@gnu.org>
7417
7418 * doc-view.el (doc-view-new-window-function): Check the new window
7419 overlay's display property instead the char property of the
7420 buffer's first char. Use `with-selected-window' instead of
7421 `save-window-excursion' with `select-window'.
7422 (doc-view-document->bitmap): Check the current doc-view overlay's
7423 display property instead the char property of the buffer's first char.
7424
7425 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
7426
7427 Automate the build of ja-dic.el (Bug#13984).
7428 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
7429 from the input, rather than assume that it's been done for us by the
7430 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
7431 the current date into a ja-dic.el comment, as that complicates
7432 regression testing.
7433
7434 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
7435
7436 * whitespace.el: Fix double evaluation.
7437 (whitespace-space, whitespace-hspace, whitespace-tab)
7438 (whitespace-newline, whitespace-trailing, whitespace-line)
7439 (whitespace-space-before-tab, whitespace-indentation)
7440 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
7441 obsolete defvars.
7442 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
7443 (whitespace-color-on): Use a single font-lock-add-keywords call.
7444 Fix double-evaluation of face variables.
7445
7446 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
7447
7448 * net/tramp-adb.el (tramp-adb-parse-device-names):
7449 Use `start-process' instead of `call-process'. Otherwise, the
7450 function might be blocked under MS Windows. (Bug#13299)
7451
7452 2013-03-17 Leo Liu <sdl.web@gmail.com>
7453
7454 Extend eldoc to display info in the mode-line. (Bug#13978)
7455 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
7456 (eldoc-mode-line-string): New variable.
7457 (eldoc-minibuffer-message): New function.
7458 (eldoc-message-function): New variable.
7459 (eldoc-message): Use it.
7460 (eldoc-display-message-p)
7461 (eldoc-display-message-no-interference-p):
7462 Support eldoc-post-insert-mode.
7463
7464 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
7465 (eval-expression): Run it.
7466
7467 2013-03-17 Roland Winkler <winkler@gnu.org>
7468
7469 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
7470 strings in the list of return values.
7471
7472 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
7473
7474 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
7475 radix before checking for HMS forms.
7476
7477 2013-03-16 Leo Liu <sdl.web@gmail.com>
7478
7479 * progmodes/scheme.el: Add indentation and font-locking for λ.
7480 (Bug#13975)
7481
7482 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
7483
7484 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
7485 token before point (bug#13942).
7486
7487 2013-03-16 Leo Liu <sdl.web@gmail.com>
7488
7489 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
7490
7491 2013-03-16 Eli Zaretskii <eliz@gnu.org>
7492
7493 * startup.el (command-line-normalize-file-name): Fix handling of
7494 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
7495 <xfq.free@gmail.com> in
7496 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
7497
7498 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
7499
7500 Sync with Tramp 2.2.7.
7501
7502 * net/trampver.el: Update release number.
7503
7504 2013-03-14 Tassilo Horn <tsdh@gnu.org>
7505
7506 * doc-view.el Fix bug#13887.
7507 (doc-view-insert-image): Don't modify overlay associated to
7508 non-live windows, and implement horizontal centering of image in
7509 case it's smaller than the window.
7510 (doc-view-new-window-function): Force redisplay of new windows on
7511 doc-view buffers.
7512
7513 2013-03-13 Karl Fogel <kfogel@red-bean.com>
7514
7515 * saveplace.el (save-place-alist-to-file): Don't sort
7516 `save-place-alist', just pretty-print it (bug#13882).
7517
7518 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
7519
7520 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
7521 Check whether `default-file-name-coding-system' is bound.
7522 It isn't in XEmacs.
7523
7524 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
7525
7526 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
7527 backquotes for `obsolete' (bug#13929).
7528
7529 * international/mule.el (find-auto-coding): Include file name in
7530 obsolescence warning (bug#13922).
7531
7532 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
7533
7534 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
7535 for CFEngine 3-specific indentation.
7536 (cfengine3-indent-line): Use it. Fix up category regex.
7537 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
7538
7539 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
7540
7541 * type-break.el (type-break-file-name):
7542 * textmodes/remember.el (remember-data-file):
7543 * strokes.el (strokes-file):
7544 * shadowfile.el (shadow-initialize):
7545 * saveplace.el (save-place-file):
7546 * ps-bdf.el (bdf-cache-file):
7547 * progmodes/idlwave.el (idlwave-config-directory):
7548 * net/quickurl.el (quickurl-url-file):
7549 * international/kkc.el (kkc-init-file-name):
7550 * ido.el (ido-save-directory-list-file):
7551 * emulation/viper.el (viper-custom-file-name):
7552 * emulation/vip.el (vip-startup-file):
7553 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
7554 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
7555
7556 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
7557
7558 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
7559 * language/thai-word.el: Switch to UTF-8.
7560
7561 See ChangeLog.16 for earlier changes.
7562
7563 ;; Local Variables:
7564 ;; coding: utf-8
7565 ;; End:
7566
7567 Copyright (C) 2011-2013 Free Software Foundation, Inc.
7568
7569 This file is part of GNU Emacs.
7570
7571 GNU Emacs is free software: you can redistribute it and/or modify
7572 it under the terms of the GNU General Public License as published by
7573 the Free Software Foundation, either version 3 of the License, or
7574 (at your option) any later version.
7575
7576 GNU Emacs is distributed in the hope that it will be useful,
7577 but WITHOUT ANY WARRANTY; without even the implied warranty of
7578 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7579 GNU General Public License for more details.
7580
7581 You should have received a copy of the GNU General Public License
7582 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.