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