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