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