* lisp/progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
4 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
5 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
6 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
7 Remove vars, they do not apply any more.
8 (prolog-mode-abbrev-table): Remove redundant declaration.
9 (prolog-upper-case-string, prolog-lower-case-string): Remove.
10 (prolog-use-smie): Remove.
11 (prolog-smie-rules): Add indentation rule for the if-then-else layout
12 supported by prolog-electric-if-then-else-flag.
13 (prolog-mode-variables, prolog-menu): Use setq-local.
14 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
15 Remove binding to `Backspace' since this key doesn't exist anyway.
16 Remove bindings for electric self-inserting keys.
17 (prog-mode): Assume it's defined.
18 (prolog-post-self-insert): New function.
19 (prolog-mode): Use it.
20 (prolog-indent-line, prolog-indent-level)
21 (prolog-find-indent-of-matching-paren)
22 (prolog-indentation-level-of-line, prolog-goto-comment-column)
23 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
24 (prolog-goto-next-paren, prolog-in-string-or-comment)
25 (prolog-tokenize, prolog-inside-mline-comment)
26 (prolog-find-start-of-mline-comment): Remove functions.
27 (prolog-find-unmatched-paren, prolog-clause-end)
28 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
29 (prolog-electric--if-then-else): Rename from
30 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
31 (prolog-tokenize-searchkey): Remove const.
32 (prolog-clause-info): Use forward-sexp.
33 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
34 (prolog-electric-if-then-else): Remove commands.
35 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
36 for use in post-self-insert-hook.
37 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
38 for use in post-self-insert-hook.
39 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
40 for use in post-self-insert-hook.
41 (prolog-electric--underscore): Rename from prolog-electric--underscore;
42 adapt it for use in post-self-insert-hook.
43
44 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
45
46 * emacs-lisp/ert.el (ert-run-tests-interactively):
47 Use `completing-read'. (Bug#9756)
48
49 2013-10-25 Eli Zaretskii <eliz@gnu.org>
50
51 * simple.el (line-move): Call line-move-1 instead of
52 line-move-visual when the current window hscroll is zero, but
53 temporary-goal-column indicates we will need to hscroll as result
54 of the movement. (Bug#15712)
55
56 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
57
58 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
59 capitalization. Use :visible instead of :active.
60 Fix `ruby-indent-exp' reference. Add menu items for the generic
61 commands that are used with SMIE.
62 (ruby-do-end-to-brace): Insert space after `{'.
63
64 2013-10-25 John Anthony <john@jo.hnanthony.com>
65
66 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
67
68 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
69
70 2013-10-25 Glenn Morris <rgm@gnu.org>
71
72 * vc/vc.el (vc-print-log): Don't use a working revision unless
73 one was explicitly specified. (Bug#15322)
74
75 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
76
77 * subr.el (add-to-list): Preserve return value in compiler-macro
78 (bug#15692).
79
80 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
81
82 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
83 result. Ask user to retry using '-all' flag. (Bug#15701)
84
85 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
86
87 * emacs-lisp/smie.el: New smie-config system.
88 (smie-config): New defcustom.
89 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
90 (smie-config-guess, smie-config-save): New commands.
91 (smie-config--mode-local, smie-config--buffer-local)
92 (smie-config--trace, smie-config--modefuns): New vars.
93 (smie-config--advice, smie-config--mode-hook)
94 (smie-config--setter, smie-config-local, smie-config--get-trace)
95 (smie-config--guess-value, smie-config--guess): New functions.
96 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
97 text properties. Treat "string fence" syntax like string syntax.
98
99 * progmodes/sh-script.el (sh-use-smie): Change default.
100 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
101 (sh-var-value): Simplify by CSE.
102 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
103 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
104 is used.
105 (sh-guess-basic-offset): Use cl-incf.
106 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
107
108 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
109
110 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
111 (bug#15699).
112
113 2013-10-24 Glenn Morris <rgm@gnu.org>
114
115 * Makefile.in (abs_top_srcdir): Remove.
116 (update-subdirs): Use relative path to update-subdirs.
117
118 2013-10-24 Eli Zaretskii <eliz@gnu.org>
119
120 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
121 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
122 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
123 Call unmsys--file-name before expand-file-name, not after it.
124
125 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
126
127 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
128 (ert-test-skipped): New error.
129 (ert-skip, ert-stats-skipped): New defuns.
130 (ert--skip-unless): New macro.
131 (ert-test-skipped): New struct.
132 (ert--run-test-debugger, ert-test-result-type-p)
133 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
134 (ert--stats-set-test-and-result, ert-char-for-test-result)
135 (ert-string-for-test-result, ert-run-tests-batch)
136 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
137 Handle skipped tests. (Bug#9803)
138
139 2013-10-24 Glenn Morris <rgm@gnu.org>
140
141 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
142
143 * Makefile.in (abs_top_srcdir): New, set by configure.
144 (update-subdirs): Correct build-aux location.
145
146 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
147
148 * vc/vc.el (vc-print-root-log): Always set `default-directory'
149 value, whether we could auto-deduce `backend', or not.
150
151 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
152 with parameters" example. Simplify the "is it block or is it
153 hash" check, but also make it more thorough.
154
155 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
156
157 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
158
159 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
160
161 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
162 { if it is hanging.
163
164 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
165 :before ";".
166
167 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
168
169 * progmodes/compile.el (compilation-directory-matcher)
170 (compilation-page-delimiter):
171 Support GNU Make-4.0 directory quoting. (Bug#15678)
172
173 2013-10-23 Leo Liu <sdl.web@gmail.com>
174
175 * ido.el (ido-tidy): Handle read-only text.
176
177 2013-10-23 Glenn Morris <rgm@gnu.org>
178
179 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
180 (emacs, compile, compile-always):
181 Quote entities that might contain whitespace.
182 (custom-deps, finder-data, autoloads): Use abs_lisp.
183 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
184 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
185 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
186
187 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
188
189 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
190 Use `following-char'.
191
192 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
193
194 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
195 * progmodes/ruby-mode.el (ruby-smie-rules):
196 Remove corresponding workaround. Fix indentation rule of ";" so it
197 also applies when ";" is the parent.
198
199 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
200
201 * frame.el (display-screens, display-pixel-height)
202 (display-pixel-width, display-mm-width, display-backing-store)
203 (display-save-under, display-planes, display-color-cells)
204 (display-visual-class, display-monitor-attributes-list):
205 Mention the optional ‘display’ argument in doc strings.
206
207 2013-10-22 Michael Gauland <mikelygee@amuri.net>
208
209 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
210 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
211
212 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
213
214 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
215 TODO. Add "." after " @ ".
216 (ruby-smie--at-dot-call): New function. Checks if point at method
217 call with explicit target.
218 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
219 to the method name tokens when it precedes them.
220 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
221 (ruby-smie-rules): Add rule for indentation before and after "."
222 token.
223
224 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
225
226 * textmodes/remember.el (remember-diary-extract-entries):
227 Avoid add-to-list.
228
229 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
230 an instruction.
231
232 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
233
234 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
235 (ruby-smie--implicit-semi-p): Add new operator chars.
236
237 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
238 `smie-down-list'.
239 (ruby-smie--args-separator-p): Check that there's no newline
240 between method call and its arguments.
241
242 2013-10-20 Alan Mackenzie <acm@muc.de>
243
244 Allow comma separated lists after Java "implements".
245
246 * progmodes/cc-engine.el (c-backward-over-enum-header):
247 Parse commas.
248 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
249 from a "disallowed" list in enum fontification.
250
251 2013-10-20 Johan Bockgård <bojohan@gnu.org>
252
253 * startup.el (default-frame-background-mode): Remove unused defvar.
254
255 * progmodes/verilog-mode.el (verilog-mode): Don't set
256 comment-indent-function globally.
257
258 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
259
260 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
261 Move Info menu item creation to ns-win.el.
262
263 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
264 in menu bar.
265
266 * menu-bar.el: Move GNUStep specific menus...
267
268 * term/ns-win.el (ns-initialize-window-system): ... to here.
269
270 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
271
272 * simple.el (newline): Only run post-self-insert-hook when
273 called interactively.
274
275 2013-10-19 Johan Bockgård <bojohan@gnu.org>
276
277 * icomplete.el (icomplete-with-completion-tables): Add :version.
278
279 2013-10-19 Alan Mackenzie <acm@muc.de>
280
281 Fix fontification bugs with constructors and const.
282
283 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
284 CASE 2) Remove the check for the absence of a suffix construct
285 after a function declaration with only types (no identifiers) in
286 the parentheses. Also, accept a function declaration with just a
287 type inside the parentheses, if this type can be positively
288 recognised as such, or if a prefix keyword like "explicit" nails
289 down the construct as a declaration.
290
291 2013-10-19 Eli Zaretskii <eliz@gnu.org>
292
293 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
294 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
295 the problem whereby selecting a menu item that leads to a
296 minibuffer prompt moves the cursor out of the minibuffer window,
297 making it hard to type at the prompt. Suggested by Stefan Monnier
298 <monnier@iro.umontreal.ca>.
299
300 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
301
302 * menu-bar.el: Don't make Services menu.
303
304 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
305
306 * ffap.el: Handle "/usr/include/c++/<version>" directories.
307 (ffap-alist): Use ffap-c++-mode for c++-mode.
308 (ffap-c++-path): New variable.
309 (ffap-c++-mode): New function.
310
311 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
312
313 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
314
315 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
316
317 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
318 introduced on 2013-09-08, which results in an infinite loop
319 requesting a password.
320
321 2013-10-18 Glenn Morris <rgm@gnu.org>
322
323 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
324
325 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
326
327 Sync with upstream verilog-mode revision 1a6ecec7.
328 * progmodes/verilog-mode.el (verilog-mode-version): Update.
329 (verilog-mode-release-date): Remove.
330 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
331 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
332 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
333 (verilog-auto-tieoff-ignore-regexp)
334 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
335 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
336 (verilog-signals-with, verilog-dir-cache-preserving)
337 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
338 Doc fixes.
339 (verilog-case-fold): New option, to control case folding in
340 regexp searches, bug597.
341 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
342 (verilog-string-match-fold, verilog-in-paren-count)
343 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
344 (verilog-at-close-struct-p): New functions.
345 (verilog-beg-block-re-ordered, verilog-extended-case-re)
346 (verilog-forward-sexp, verilog-set-auto-endcomments):
347 (verilog-leap-to-case-head): Handle "unique0" case.
348 (verilog-in-constraint-re): New constant.
349 (verilog-keywords, verilog-type-font-keywords):
350 Add some SystemVerilog 1800-2012 keywords.
351 (verilog-label-be): Remove unimplemented argument, bug669.
352 (verilog-batch-execute-func): When batch expanding clear
353 create-lockfiles to prevent spurious user locks when a file ends
354 up not changing.
355 (verilog-calculate-indent, verilog-calc-1)
356 (verilog-at-close-constraint-p, verilog-at-constraint-p)
357 (verilog-do-indent): Fix indentation of nested constraints
358 and structures.
359 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
360 (verilog-auto-inst-param): Use verilog-string-match-fold.
361 (verilog-read-inst-module-matcher):
362 Fix AUTOINST on gate primitives with #1.
363 (verilog-read-decls): Fix double-declaring user-defined typed signals.
364 Reads all user-defined typed variables.
365 (verilog-read-defines): Fix reading definitions inside comments, bug647.
366 (verilog-signals-matching-regexp)
367 (verilog-signals-not-matching-regexp, verilog-auto):
368 Respect verilog-case-fold.
369 (verilog-diff-report): Fix line count.
370 (verilog-auto-assign-modport): Remove unused local `modi'.
371 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
372 better handle multidimensional arrays.
373 Fix packed array ports misadding bit index in AUTOINST, bug637.
374 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
375 to not double-declare existing outputs and inputs, respectively.
376 (verilog-template-map): Bind U to verilog-sk-uvm-component.
377 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
378 (verilog-sk-uvm-component): New skeleton.
379 (verilog-submit-bug-report): Add verilog-case-fold,
380 remove verilog-mode-release-date.
381
382 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
383
384 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
385 as before.
386
387 2013-10-18 Reuben Thomas <rrt@sc3d.org>
388
389 * textmodes/remember.el (remember): set buffer-offer-save in
390 remember buffers (bug#13566).
391
392 2013-10-18 Daniel Colascione <dancol@dancol.org>
393
394 When evaluating forms in ielm, direct standard output to ielm
395 buffer. Add new ielm-return-for-effect command. Remove trailing
396 whitespace throughout.
397
398 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
399 (ielm-return-for-effect): New command.
400 (ielm-send-input): Accept optional `for-effect' parameter.
401 (ielm-eval-input): Accept optional `for-effect' parameter.
402 Bind `standard-output' to stream we create using
403 `ielm-standard-output-impl'. Suppress printing result when
404 `for-effect'.
405 (ielm-standard-output-impl): New function.
406 (inferior-emacs-lisp-mode): Explain new features in documentation.
407
408 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
409
410 Code cleanup.
411
412 * net/tramp.el (tramp-debug-message): Do not check for connection
413 buffer.
414 (tramp-message): Use "vector" connection property.
415
416 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
417 (tramp-equal-remote, tramp-eshell-directory-change)
418 * net/tramp-adb.el (tramp-adb-handle-copy-file)
419 (tramp-adb-handle-rename-file)
420 * net/tramp-cmds.el (tramp-list-remote-buffers)
421 (tramp-cleanup-connection, tramp-cleanup-this-connection)
422 * net/tramp-compat.el (tramp-compat-process-running-p)
423 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
424 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
425 (tramp-gvfs-handle-rename-file)
426 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
427 (tramp-set-file-uid-gid)
428 * net/tramp-smb.el (tramp-smb-handle-copy-file)
429 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
430 of `file-remote-p'.
431
432 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
433 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
434 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
435 (tramp-gw-open-network-stream): Suppress unrelated traces.
436
437 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
438 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
439 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
440 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
441 connection property.
442
443 * net/tramp-cache.el (top): Suppress traces when reading
444 persistency file.
445
446 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
447 Refactor common code. Improve debug message.
448 (tramp-maybe-open-connection)
449 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
450 connection buffer too early.
451
452 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
453 from `tramp-smb-actions-with-acl'.
454 (tramp-smb-actions-set-acl): New defconst.
455 (tramp-smb-handle-copy-directory)
456 (tramp-smb-action-get-acl): New defun, renamed from
457 `tramp-smb-action-with-acl'.
458 (tramp-smb-action-set-acl): New defun.
459 (tramp-smb-handle-set-file-acl): Rewrite.
460
461 2013-10-17 Glenn Morris <rgm@gnu.org>
462
463 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
464
465 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
466
467 * skeleton.el (skeleton-newline): Remove.
468 (skeleton-internal-1): Use (insert "\n") instead.
469
470 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
471 let-bindings.
472
473 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
474 forward-sexp-function while we redo its job (bug#15613).
475
476 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
477
478 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
479 represented by lists.
480
481 2013-10-16 Glenn Morris <rgm@gnu.org>
482
483 * tmm.el (tmm--history): New dynamic variable.
484 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
485
486 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
487
488 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
489 (tramp-smb-errors): Add error messages.
490 (tramp-smb-actions-with-acl): New defconst.
491 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
492 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
493 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
494 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
495 (tramp-smb-get-stat-capability): Fix tests.
496
497 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
498
499 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
500 (bug#15580).
501
502 2013-10-16 Glenn Morris <rgm@gnu.org>
503
504 * ansi-color.el (ansi-color-drop-regexp):
505 Add 1J, 1K, 2K. (Bug#15617)
506
507 * files.el (hack-local-variables--warned-lexical): New.
508 (hack-local-variables):
509 Warn about misplaced lexical-binding. (Bug#15616)
510
511 * net/eww.el (eww-render): Always set eww-current-url,
512 and update header line. (Bug#15622)
513 (eww-display-html): ... Rather than just doing it here.
514
515 2013-10-15 Eli Zaretskii <eliz@gnu.org>
516
517 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
518 menu navigations commands.
519
520 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
521
522 * progmodes/subword.el (subword-capitalize): Be careful when
523 the search for [[:alpha:]] fails (bug#15580).
524
525 2013-10-14 Eli Zaretskii <eliz@gnu.org>
526
527 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
528 to commands that scroll the menu.
529
530 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
531
532 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
533 Handle methods ending with `?' and `!'.
534
535 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
536
537 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
538 `japanese-cp932' to `cp932' to fix the problem where saving a
539 source file written in Shift_JIS twice would end up having
540 `coding: japanese-cp932' which Ruby could not recognize.
541 (ruby-mode-set-encoding): Add support for encodings mapped to nil
542 in `ruby-encoding-map'.
543 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
544 doesn't need to be explicitly declared in magic comment.
545 (ruby-encoding-map): Add type declaration for better customize UI.
546
547 2013-10-13 Glenn Morris <rgm@gnu.org>
548
549 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
550 Occur buffers are read-only. http://bugs.debian.org/720775
551
552 * emacs-lisp/authors.el (authors-fixed-entries):
553 Comment out old alpha stuff.
554
555 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
556
557 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
558 to `after-save-hook' instead of `before-save-hook'.
559 (ruby-mode-set-encoding): Use the value of coding system used to
560 write the file. Call `basic-save-buffer-1' after modifying the
561 buffer.
562
563 2013-10-13 Alan Mackenzie <acm@muc.de>
564
565 Fix indentation/fontification of Java enum with
566 "implements"/generic.
567
568 * progmodes/cc-engine.el (c-backward-over-enum-header):
569 Extracted from the three other places and enhanced to handle generics.
570 (c-inside-bracelist-p): Uses new function above.
571 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
572 function above.
573 (c-font-lock-enum-tail): Uses new function above.
574
575 2013-10-13 Kenichi Handa <handa@gnu.org>
576
577 * international/mule-cmds.el (select-safe-coding-system): Remove a
578 superfluous condition in chekcing whether a coding system is safe
579 or not.
580
581 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
582
583 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
584
585 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
586
587 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
588
589 2013-10-13 Glenn Morris <rgm@gnu.org>
590
591 * menu-bar.el (menu-bar-update-buffers):
592 Unify Buffers menu prompt string. (Bug#15576)
593
594 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
595
596 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
597 Add some entries.
598 (authors-fixed-entries): Use accented form of name.
599
600 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
601
602 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
603 method calls (bug#15594).
604 (ruby-smie--args-separator-p): New function.
605 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
606 recognize paren-free method calls.
607
608 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
609 internals of universal-argument.
610
611 2013-10-11 Eli Zaretskii <eliz@gnu.org>
612
613 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
614 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
615 dropped menu on second mouse click on the menu bar.
616
617 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
618
619 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
620 (explicit-shell-file-name): Declare.
621 (sh--vars-before-point, sh--cmd-completion-table): New functions.
622 (sh-completion-at-point-function): New function.
623 (sh-mode): Use it.
624 (sh-smie--keyword-p): Remove unused argument.
625 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
626 vars.
627 (sh-set-shell): Always setup SMIE, even if we use the
628 old indentation code.
629
630 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
631
632 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
633 cases of ? and =.
634 (ruby-smie-rules): Simplify the "do" rule. The cases when the
635 predicate would return nil are almost non-existent.
636 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
637
638 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
639 cache also after commands that modify the buffer but don't move
640 point.
641
642 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
643
644 * env.el (substitute-env-in-file-name): New function.
645 (substitute-env-vars): Extend the meaning of the optional arg.
646
647 2013-10-10 Eli Zaretskii <eliz@gnu.org>
648
649 * term/w32-win.el (dynamic-library-alist): Define separate lists
650 of GIF DLLs for versions before and after 5.0.0 of giflib.
651 (Bug#15531)
652
653 2013-10-10 João Távora <joaotavora@gmail.com>
654
655 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
656 not locked, use last revision and current source as
657 defaults. (Bug#15569)
658
659 2013-10-10 Masatake YAMATO <yamato@redhat.com>
660
661 * menu-bar.el (menu-bar-open): Don't use popup-menu if
662 menu-bar is hidden.
663
664 2013-10-10 Martin Rudalics <rudalics@gmx.at>
665
666 * window.el (pop-to-buffer-same-window): Fix doc-string.
667 (Bug#15492)
668
669 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
670
671 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
672
673 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
674
675 * calendar/icalendar.el (icalendar-import-file):
676 Fix interactive spec. (Bug#15482)
677
678 2013-10-10 Glenn Morris <rgm@gnu.org>
679
680 * desktop.el (desktop-save): Default to saving in .emacs.d,
681 since PWD is no longer in desktop-path by default. (Bug#15319)
682
683 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
684 now that text mode has a menu with the same entry.
685 (menu-bar-text-mode-auto-fill): Remove now unused func.
686 * textmodes/text-mode.el (text-mode-map):
687 Use auto-fill help text from menu-bar.el.
688
689 2013-10-10 John Anthony <john@jo.hnanthony.com>
690
691 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
692
693 2013-10-09 Juri Linkov <juri@jurta.org>
694
695 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
696 instead of this-command-keys. Add universal-argument-more and
697 universal-argument-minus to the list of prefix commands. (Bug#15568)
698
699 2013-10-09 Glenn Morris <rgm@gnu.org>
700
701 * vc/vc-svn.el (vc-svn-create-repo):
702 Expand paths in file://... url. (Bug#15446)
703
704 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
705 Add some entries.
706 (authors): Remove unused local variables.
707
708 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
709
710 * profiler.el: Create a more coherent calltree from partial backtraces.
711 (profiler-format): Hide the tail with `invisible' so that C-s can still
712 find the hidden elements.
713 (profiler-calltree-depth): Don't recurse so enthusiastically.
714 (profiler-function-equal): New hash-table-test.
715 (profiler-calltree-build-unified): New function.
716 (profiler-calltree-build): Use it.
717 (profiler-report-make-name-part): Indent the calltree less.
718 (profiler-report-mode): Add visibility specs for profiler-format.
719 (profiler-report-expand-entry, profiler-report-toggle-entry):
720 Expand the whole subtree when provided with a prefix arg.
721
722 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
723
724 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
725 iuwu-mod token.
726 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
727 hanging iuwu-mod token.
728 (ruby-smie--forward-token): Do not include a dot after a token in
729 that token.
730 (ruby-smie--backward-token): Likewise.
731
732 2013-10-08 Juri Linkov <juri@jurta.org>
733
734 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
735 to isearch-other-control-char.
736 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
737 and isearch-post-command-hook to post-command-hook.
738 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
739 and isearch-post-command-hook from post-command-hook.
740 (isearch-unread-key-sequence)
741 (isearch-reread-key-sequence-naturally)
742 (isearch-lookup-scroll-key, isearch-other-control-char)
743 (isearch-other-meta-char): Remove functions.
744 (isearch-pre-command-hook, isearch-post-command-hook):
745 New functions based on isearch-other-meta-char rewritten
746 relying on the new behavior of overriding-terminal-local-map
747 that does not replace the local keymaps any more. (Bug#15200)
748
749 2013-10-08 Eli Zaretskii <eliz@gnu.org>
750
751 Support menus on text-mode terminals.
752 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
753 functionality.
754
755 * tooltip.el (tooltip-mode): Don't error out on TTYs.
756
757 * menu-bar.el (popup-menu, popup-menu-normalize-position):
758 Move here from mouse.el.
759 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
760 and arrow keys.
761 (tty-menu-navigation-map): New map for TTY menu navigation.
762
763 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
764
765 * frame.el (display-mouse-p): Report text-mode mouse as available
766 on w32.
767 (display-popup-menus-p): Report availability if mouse is
768 available; don't condition on window-system.
769
770 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
771 (tty-menu-selected-face): New faces.
772
773 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
774
775 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
776 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
777 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
778 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
779 New constants.
780 (lisp-mode-variables): New `elisp' argument.
781 (emacs-lisp-mode): Use it.
782 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
783 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
784
785 * indent.el: Use lexical-binding.
786 (indent-region): Add progress reporter.
787 (tab-stop-list): Make it implicitly extend to infinity by repeating the
788 last step.
789 (indent--next-tab-stop): New function to implement this behavior.
790 (tab-to-tab-stop, move-to-tab-stop): Use it.
791
792 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
793
794 * indent.el (indent-rigidly--current-indentation): New function.
795 (indent-rigidly-map): New var.
796 (indent-rigidly): Use it to provide interactive mode (bug#8196).
797
798 2013-10-08 Bastien Guerry <bzg@gnu.org>
799
800 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
801
802 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
803
804 * progmodes/perl-mode.el: Use lexical-binding.
805 Remove redundant :group args.
806 (perl-nochange): Change default to be closer to other major modes's
807 standard behavior.
808 (perl-indent-line): Don't consider text on current line as a
809 valid beginning of function from which to indent.
810
811 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
812 with more than one argument (bug#15538).
813
814 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
815
816 * vc/pcvs.el: Use lexical-binding.
817 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
818 environment of `eval'.
819 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
820 than a list of expressions. Adjust callers.
821 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
822
823 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
824
825 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
826 case of the dot in a chained method call being on the following line.
827
828 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
829
830 * electric.el (electric-indent-inhibit): New var.
831 (electric-indent-post-self-insert-function): Use it.
832 * progmodes/python.el (python-mode): Set it.
833
834 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
835 open braces.
836
837 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
838
839 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
840 (css-mode): Use electric-indent-chars.
841
842 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
843 (font-lock-beg, font-lock-end): Move before first use.
844 (nxml-mode): Use syntax-propertize-function.
845 (nxml-after-change, nxml-after-change1): Adjust accordingly.
846 (nxml-extend-after-change-region): Remove.
847 * nxml/xmltok.el: Use lexical-binding.
848 (xmltok-save): Use `declare'.
849 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
850 * nxml/nxml-util.el: Use lexical-binding.
851 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
852 Use `declare'.
853 * nxml/nxml-ns.el: Use lexical-binding.
854 (nxml-ns-save): Use `declare'.
855 (nxml-ns-prefixes-for): Avoid add-to-list.
856 * nxml/rng-match.el: Use lexical-binding.
857 (rng--ipattern): Use cl-defstruct.
858 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
859 (rng-cons-group-after, rng-subst-group-after)
860 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
861 Use closures instead of `(lambda...).
862
863 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
864
865 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
866 of BEG and END.
867
868 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
869 Use `tramp-handle-insert-file-contents'.
870 (tramp-gvfs-handle-insert-file-contents): Remove function.
871
872 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
873 Use `save-restriction' in order to keep markers.
874
875 * net/trampver.el: Update release number.
876
877 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
878
879 * progmodes/compile.el (compilation-parse-errors):
880 Use compilation--put-prop.
881 (compilation--ensure-parse): Check compilation-multiline.
882
883 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
884
885 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
886 lexical-binding.
887
888 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
889
890 * progmodes/ruby-mode.el: Fix recently added tests.
891 (ruby-smie-grammar): Add - and +.
892 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
893 (ruby-smie--backward-id): New functions.
894 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
895 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
896 any more.
897
898 2013-10-07 Leo Liu <sdl.web@gmail.com>
899
900 * register.el (register-preview-delay)
901 (register-preview-functions): New variables.
902 (register-read-with-preview, register-preview)
903 (register-describe-oneline): New functions.
904 (point-to-register, window-configuration-to-register)
905 (frame-configuration-to-register, jump-to-register)
906 (number-to-register, view-register, insert-register)
907 (copy-to-register, append-to-register, prepend-to-register)
908 (copy-rectangle-to-register): Use register-read-with-preview to
909 read register. (Bug#15525)
910
911 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
912
913 * net/network-stream.el (network-stream-open-starttls): Don't add
914 --insecure if it's already present, because that gnutls-cli
915 rejects getting that parameter twice.
916
917 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
918
919 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
920 keyword, too.
921
922 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
923
924 * newcomment.el (comment-use-global-state): Change default value
925 to t, mark obsolete (Bug#15251).
926 (comment-beginning): In addition to `comment-to-syntax', check the
927 value of `comment-use-global-state'.
928
929 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
930
931 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
932 (ruby-comment-column): Follow the global default, by default.
933 (ruby-smie-grammar): Add assignment syntax.
934 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
935 open-paren, a comma, or a \.
936 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
937 and line continuations.
938 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
939 followed by implicit semi-colons. Add rule for string concatenation
940 and for indentation at BOB.
941 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
942
943 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
944 calling next-sexp, since next-token may have skipped chars which
945 next-sexp doesn't know should be skipped!
946
947 2013-10-05 Leo Liu <sdl.web@gmail.com>
948
949 * progmodes/octave.el (octave-send-region):
950 Call compilation-forget-errors.
951
952 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
953
954 * vc/vc-svn.el (vc-svn-find-admin-dir):
955 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
956 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
957 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
958 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
959
960 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
961
962 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
963
964 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
965
966 * subr.el (read-passwd): Hide chars even when called within a context
967 where after-change-functions is disabled (bug#15501).
968 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
969 until we removed ourself from overriding-terminal-local-map.
970
971 2013-10-04 Leo Liu <sdl.web@gmail.com>
972
973 * progmodes/octave.el (inferior-octave-mode):
974 Call compilation-forget-errors.
975
976 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
977
978 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
979
980 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
981
982 * net/secrets.el (secrets-create-collection): Add optional
983 argument ALIAS. Use proper Label keyword. Append ALIAS as
984 dbus-call-method argument. (Bug#15516)
985
986 2013-10-04 Leo Liu <sdl.web@gmail.com>
987
988 * progmodes/octave.el (inferior-octave-error-regexp-alist)
989 (inferior-octave-compilation-font-lock-keywords): New variables.
990 (compilation-error-regexp-alist)
991 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
992 (inferior-octave-mode): Use compilation-shell-minor-mode.
993
994 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
995
996 * minibuffer.el (completion--replace): Be careful that `end' might be
997 a marker.
998
999 2013-10-03 Daiki Ueno <ueno@gnu.org>
1000
1001 Add support for package signature checking.
1002 * emacs-lisp/package.el (url-http-file-exists-p)
1003 (epg-make-context, epg-context-set-home-directory)
1004 (epg-verify-string, epg-context-result-for)
1005 (epg-signature-status, epg-signature-to-string)
1006 (epg-check-configuration, epg-configuration)
1007 (epg-import-keys-from-file): Declare.
1008 (package-check-signature): New user option.
1009 (package-unsigned-archives): New user option.
1010 (package-desc): Add `signed' field.
1011 (package-load-descriptor): Set `signed' field if .signed file exists.
1012 (package--archive-file-exists-p): New function.
1013 (package--check-signature): New function.
1014 (package-install-from-archive): Check package signature.
1015 (package--download-one-archive): Check archive signature.
1016 (package-delete): Remove .signed file.
1017 (package-import-keyring): New command.
1018 (package-refresh-contents): Import default keyring.
1019 (package-desc-status): Add "unsigned" status.
1020 (describe-package-1, package-menu--print-info)
1021 (package-menu-mark-delete, package-menu--find-upgrades)
1022 (package-menu--status-predicate): Support "unsigned" status.
1023
1024 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1025
1026 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
1027 the new compilation scheme using the new byte-codes.
1028
1029 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
1030 (byte-pophandler): New byte codes.
1031 (byte-goto-ops): Adjust accordingly.
1032 (byte-compile--use-old-handlers): New var.
1033 (byte-compile-catch): Use new byte codes depending on
1034 byte-compile--use-old-handlers.
1035 (byte-compile-condition-case--old): Rename from
1036 byte-compile-condition-case.
1037 (byte-compile-condition-case--new): New function.
1038 (byte-compile-condition-case): New function that dispatches depending
1039 on byte-compile--use-old-handlers.
1040 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
1041 when we can.
1042
1043 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1044 Optimize under `condition-case' and `catch' if
1045 byte-compile--use-old-handlers is nil.
1046 (disassemble-offset): Handle new bytecodes.
1047
1048 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1049
1050 * subr.el (error): Use `declare'.
1051 (decode-char, encode-char): Use advertised-calling-convention instead
1052 of the docstring to discourage use of the `restriction' arg.
1053
1054 2013-10-03 Daiki Ueno <ueno@gnu.org>
1055
1056 * epg.el (epg-verify-file): Add a comment saying that it does not
1057 notify verification error as a return value nor a signal.
1058 (epg-verify-string): Ditto.
1059
1060 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1061
1062 * progmodes/compile.el (compilation-start): Try globbing the arg to
1063 `cd' (bug#15417).
1064
1065 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
1066
1067 Sync with Tramp 2.2.8.
1068
1069 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1070 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
1071 * net/trampver.el: Update release number.
1072
1073 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
1074
1075 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1076 and default-process-coding-system for darwin only.
1077
1078 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1079
1080 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
1081
1082 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
1083
1084 * vc/vc-git.el (vc-git-grep): Disable pager.
1085
1086 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
1087
1088 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
1089 Use :url instead of :homepage, as per
1090 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
1091
1092 * newcomment.el (comment-beginning): When `comment-use-syntax' is
1093 non-nil, use `syntax-ppss' (Bug#15251).
1094
1095 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1096
1097 * progmodes/octave.el (inferior-octave-startup-file):
1098 Prefer ~/.emacs.d/init_octave.m.
1099
1100 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
1101
1102 * emacs-lisp/package.el (package-desc-from-define):
1103 Accept additional arguments as plist, convert them to an alist and store
1104 them in the `extras' slot.
1105 (package-generate-description-file): Convert extras alist back to
1106 plist and append to the `define-package' form arguments.
1107 (package--alist-to-plist): New function.
1108 (package--ac-desc): Add `extras' slot.
1109 (package--add-to-archive-contents): Check if the archive-contents
1110 vector is long enough, and if it is, pass its `extras' slot value
1111 to `package-desc-create'.
1112 (package-buffer-info): Call `lm-homepage', pass the returned value
1113 to `package-desc-from-define'.
1114 (describe-package-1): Render the homepage button (Bug#13291).
1115
1116 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1117 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
1118
1119 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
1120
1121 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1122 and default-process-coding-system to utf-8-unix (Bug#15402).
1123
1124 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
1125
1126 * subr.el (looking-back): Do not recommend using looking-back.
1127
1128 2013-09-28 Alan Mackenzie <acm@muc.de>
1129
1130 Fix indentation/fontification of Java enum with "implements".
1131
1132 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
1133 regexp which matches "implements", etc., in Java.
1134 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
1135 specifier clauses coming after "enum".
1136 * progmodes/cc-fonts.el (c-font-lock-declarations)
1137 (c-font-lock-enum-tail): Check for extra specifier clauses coming
1138 after "enum".
1139
1140 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
1141
1142 * faces.el (region): Change ns_selection_color to
1143 ns_selection_fg_color, add ns_selection_bg_color.
1144
1145 2013-09-28 Leo Liu <sdl.web@gmail.com>
1146
1147 * progmodes/octave.el (inferior-octave-completion-table)
1148 (inferior-octave-completion-at-point): Minor tweaks.
1149
1150 * textmodes/ispell.el (ispell-lookup-words): Rename from
1151 lookup-words. (Bug#15460)
1152 (lookup-words): Obsolete.
1153 (ispell-complete-word, ispell-command-loop): All uses changed.
1154
1155 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1156
1157 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
1158 (octave-mode-menu): Add octave-send-buffer.
1159 (octave-send-buffer): New function.
1160
1161 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1162
1163 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
1164 octave-lookfor.
1165 (octave-mode-menu): Add octave-lookfor.
1166 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
1167 octave-lookfor.
1168 (octave-lookfor): New function.
1169
1170 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1171
1172 * emacs-lisp/cl-macs.el:
1173 (cl--loop-destr-temps): Remove.
1174 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
1175 its convention.
1176 (cl--loop-set-iterator-function): New function.
1177 (cl-loop): Adjust accordingly, so as not to use cl-subst.
1178 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
1179 Bind `it' with `let' instead of substituting it with `cl-subst'.
1180 (cl--unused-var-p): New function.
1181 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
1182 Eliminate some unused variable warnings (bug#15326).
1183
1184 2013-09-27 Tassilo Horn <tsdh@gnu.org>
1185
1186 * doc-view.el (doc-view-scale-reset): Rename from
1187 `doc-view-reset-zoom-level'.
1188 (doc-view-scale-adjust): New command.
1189 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
1190 `doc-view-scale-adjust'.
1191
1192 2013-09-26 Tassilo Horn <tsdh@gnu.org>
1193
1194 * doc-view.el (doc-view-reset-zoom-level): New command.
1195 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
1196 zoom commands (bug#15466).
1197
1198 2013-09-26 Kenichi Handa <handa@gnu.org>
1199
1200 * international/quail.el (quail-help): Make it not a command.
1201
1202 2013-09-26 Leo Liu <sdl.web@gmail.com>
1203
1204 * minibuffer.el (completion-all-sorted-completions): Make args
1205 optional as they are.
1206
1207 2013-09-25 Daniel Colascione <dancol@dancol.org>
1208
1209 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
1210 specs are and that they're not evaluated.
1211
1212 2013-09-24 Sam Steingold <sds@gnu.org>
1213
1214 * midnight.el (clean-buffer-list-kill-regexps)
1215 (clean-buffer-list-kill-buffer-names): Update for the new Man
1216 buffer naming which includes the object name.
1217
1218 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1219
1220 * eshell/esh-cmd.el (eshell--sep-terms): New var.
1221 (eshell-parse-command, eshell-parse-pipeline): Use it since
1222 eshell-separate-commands requires a dynamic scoped var.
1223 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
1224
1225 2013-09-23 Leo Liu <sdl.web@gmail.com>
1226
1227 * autoinsert.el (auto-insert-alist): Make the value of
1228 lexical-binding match its file setting.
1229
1230 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
1231
1232 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1233
1234 * autoarg.el (autoarg-kp-digit-argument):
1235 * electric.el (Electric-command-loop):
1236 * kmacro.el (kmacro-step-edit-insert):
1237 Do not set universal-argument-num-events.
1238
1239 2013-09-22 Leo Liu <sdl.web@gmail.com>
1240
1241 * files.el (interpreter-mode-alist): Add octave.
1242
1243 2013-09-21 Alan Mackenzie <acm@muc.de>
1244
1245 C++: fontify identifier in declaration following "public:" correctly.
1246 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1247 to match "public", etc.
1248 (c-decl-prefix-re): Add ":" into the C++ value.
1249 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1250 bit. Add a check for a ":" preceded by "public", etc.
1251
1252 2013-09-21 Eli Zaretskii <eliz@gnu.org>
1253
1254 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1255 recognized by GDB 7.5 and later.
1256
1257 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1258
1259 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1260
1261 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1262
1263 * subr.el (internal--call-interactively): New const.
1264 (called-interactively-p): Use it (bug#3984).
1265
1266 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1267
1268 * vc/pcvs.el (cvs-mode-ignore):
1269 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1270 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
1271
1272 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1273
1274 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1275 (eshell-ls-orig-insert-directory): Remove.
1276 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1277 (eshell-ls-use-in-dired): Use advice-add/remove.
1278 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1279 Add `orig-fun' arg for use in :around advice.
1280 Make it check (redundantly) eshell-ls-use-in-dired.
1281
1282 2013-09-19 Glenn Morris <rgm@gnu.org>
1283
1284 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1285
1286 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1287
1288 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1289
1290 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
1291
1292 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1293 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1294 (tramp-get-remote-python): New defuns.
1295 (tramp-get-remote-uid-with-perl)
1296 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1297 contributed by yary <not.com@gmail.com> (tiny change).
1298 (tramp-get-remote-uid-with-python)
1299 (tramp-get-remote-gid-with-python): New defuns. Python code
1300 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1301 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1302
1303 2013-09-19 Glenn Morris <rgm@gnu.org>
1304
1305 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1306
1307 * eshell/em-unix.el (eshell-remove-entries):
1308 Rename argument to avoid name-clash with global `top-level'.
1309
1310 * eshell/esh-proc.el (eshell-kill-process-function):
1311 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1312 (eshell-reset-after-proc): Remove unused arg `proc'.
1313
1314 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1315 (directory-files-and-attributes): Mark unused arg.
1316
1317 * eshell/em-unix.el (eshell-remove-entries):
1318 Remove unused arg `path'. Update callers.
1319
1320 * eshell/em-hist.el (eshell-hist-parse-arguments):
1321 Remove unused arg `silent'. Update callers.
1322
1323 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1324 Fix (f)boundp mix-up.
1325
1326 * eshell/em-smart.el (eshell-smart-scroll-window)
1327 (eshell-disable-after-change):
1328 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
1329
1330 2013-09-18 Alan Mackenzie <acm@muc.de>
1331
1332 Fix fontification of type when followed by "const".
1333 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1334 "known" types from fontification.
1335
1336 2013-09-18 Glenn Morris <rgm@gnu.org>
1337
1338 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1339 (chart-face-list): Drop Emacsen without display-color-p.
1340
1341 * net/eww.el (libxml-parse-html-region): Declare.
1342 (eww-display-html): Explicit error if no libxml2 support.
1343
1344 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1345
1346 * image.el (image-type-from-buffer, image-multi-frame-p):
1347 Remove --without-x warning/error.
1348
1349 * mouse.el (mouse-yank-primary):
1350 * term.el (term-mouse-paste):
1351 Reorder to silence --without-x compilation.
1352
1353 * mpc.el (doc-view-mode): Silence --without-x compilation.
1354
1355 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1356 Silence --without-x compilation.
1357
1358 * progmodes/gud.el (gud-find-file, gud-mode):
1359 Silence --without-x compilation.
1360 (tooltip-mode): Declare.
1361
1362 * wdired.el (dired-backup-overwrite): Remove declaration.
1363 (wdired-mode-map): Add doc string.
1364
1365 * custom.el (x-get-resource): Declare.
1366
1367 * eshell/em-glob.el (ange-cache):
1368 * eshell/em-unix.el (ange-cache): Declare.
1369
1370 * faces.el (x-display-list, x-open-connection, x-get-resource):
1371 Declare.
1372
1373 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1374 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1375 Declare.
1376
1377 * frame.el (x-display-grayscale-p, x-display-name): Declare.
1378
1379 * net/gnutls.el (gnutls-log-level): Declare.
1380
1381 * net/shr.el (image-size, image-animate): Declare.
1382
1383 * simple.el (font-info): Declare.
1384
1385 * subr.el (x-popup-dialog): Declare.
1386
1387 * term/common-win.el (x-select-enable-primary)
1388 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1389 Declare.
1390
1391 * term/ns-win.el (x-handle-args): Declare.
1392
1393 * term/x-win.el (x-select-enable-clipboard): Declare.
1394
1395 * term/w32-win.el (create-default-fontset): Declare.
1396
1397 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1398 Declare.
1399
1400 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1401 (fit-frame-to-buffer): Explicit error if --without-x.
1402 (mouse-autoselect-window-select): Silence compiler.
1403
1404 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1405
1406 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1407 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1408 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
1409 * eshell/esh-util.el (eshell-sublist):
1410 Remove unused local variables.
1411
1412 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1413
1414 * textmodes/two-column.el: Make 2C-split work for --without-x.
1415 (scroll-bar-columns): Autoload.
1416 (top-level): Require fringe when compiling.
1417
1418 2013-09-18 Leo Liu <sdl.web@gmail.com>
1419
1420 * subr.el (add-hook): Robustify to handle closure as well.
1421
1422 2013-09-17 Glenn Morris <rgm@gnu.org>
1423
1424 * simple.el (messages-buffer-mode-map): Unbind "g".
1425
1426 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1427
1428 * help-mode.el (help-mode-finish): Use derived-mode-p.
1429 Remove obsolete highlighting.
1430
1431 * play/life.el (life-mode): Use define-derived-mode. Derive from
1432 special-mode.
1433 (life): Let-bind inhibit-read-only.
1434 (life-setup): Avoid `setq'. Use `life-mode'.
1435
1436 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1437 which should not be needed any more.
1438 (package-menu-refresh, package-menu-describe-package): Use user-error.
1439
1440 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1441 (eshell-post-rewrite-command-hook): Make obsolete.
1442 (eshell-parse-command): Simplify.
1443 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1444 (eshell--cmd): Declare.
1445 (eshell-parse-pipeline): Remove unused var `final-p'.
1446 Pass a dynvar to eshell-post-rewrite-command-hook.
1447 Implement the new eshell-post-rewrite-command-function.
1448 (eshell-invoke-directly): Remove unused arg `input'.
1449 * eshell/esh-io.el (eshell-io-initialize):
1450 Use eshell-post-rewrite-command-function (bug#15399).
1451 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1452 adjust to new calling convention.
1453 (eshell-create-handles): Rename args to avoid clashing with dynvar
1454 `standard-output'.
1455
1456 2013-09-17 Glenn Morris <rgm@gnu.org>
1457
1458 * simple.el (messages-buffer-mode): New major mode.
1459 (messages-buffer): New function.
1460 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1461 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
1462 (ert-run-test): Use `messages-buffer' function.
1463 (ert--force-message-log-buffer-truncation): Ignore read-only.
1464 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1465 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
1466
1467 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1468
1469 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1470
1471 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1472
1473 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1474
1475 * icomplete.el (icomplete-in-buffer): New var.
1476 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1477 vars and replace them with functions.
1478 (icomplete-minibuffer-setup): Adjust accordingly.
1479 (icomplete--completion-table, icomplete--completion-predicate)
1480 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1481 New functions.
1482 (icomplete-forward-completions, icomplete-backward-completions)
1483 (icomplete-simple-completing-p, icomplete-exhibit)
1484 (icomplete-completions): Use them.
1485 (icomplete--in-region-buffer): New var.
1486 (icomplete--in-region-setup): New function.
1487 (icomplete-mode): Use it.
1488
1489 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1490 (bug#15379).
1491 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1492 return args and options.
1493 (eshell-eval-using-options): Use the new return value of
1494 eshell--do-opts to set the options's vars in their scope.
1495 (eshell--set-option): Rename from eshell-set-option.
1496 Add arg `opt-vals'.
1497 (eshell--process-option): Rename from eshell-process-option.
1498 Add arg `opt-vals'.
1499 (eshell--process-args): Use an `opt-vals' alist to store the options's
1500 values during their processing and return them additionally to the
1501 remaining args.
1502
1503 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1504
1505 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1506 continuation character an operator, as far as indentation is
1507 concerned (Bug#15369).
1508
1509 2013-09-15 Martin Rudalics <rudalics@gmx.at>
1510
1511 * window.el (window--state-put-2): Don't process buffer state
1512 when buffer doesn't exist any more (Bug#15382).
1513
1514 2013-09-15 Glenn Morris <rgm@gnu.org>
1515
1516 * eshell/em-unix.el (eshell/rm):
1517 Make -f ignore missing files. (Bug#15373)
1518
1519 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1520 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1521 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1522
1523 2013-09-14 Glenn Morris <rgm@gnu.org>
1524
1525 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
1526
1527 2013-09-13 Glenn Morris <rgm@gnu.org>
1528
1529 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
1530 (dired-guess-default): Make `file' available in the env. (Bug#15363)
1531
1532 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1533
1534 * frame.el (x-focus-frame): Mark as declared in frame.c.
1535
1536 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
1537
1538 * ls-lisp.el: Use advice-add.
1539 (original-insert-directory): Remove.
1540 (ls-lisp--insert-directory): Rename from insert-directory; add
1541 `orig-fun' argument.
1542 (insert-directory): Advise.
1543
1544 2013-09-13 Eli Zaretskii <eliz@gnu.org>
1545
1546 * term.el (term-emulate-terminal): Decode the command string
1547 before passing it to term-command-hook. (Bug#15337)
1548
1549 2013-09-13 Glenn Morris <rgm@gnu.org>
1550
1551 * eshell/esh-util.el (ange-cache): Move declaration earlier.
1552
1553 * eshell/esh-ext.el (eshell-search-path): Declare.
1554
1555 * eshell/em-prompt.el (eshell/pwd): Autoload it.
1556 Otherwise an error occurs if eshell-dirs module not loaded.
1557
1558 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
1559
1560 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
1561
1562 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
1563 `tramp-check-proper-host'. Check for a valid method name.
1564
1565 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1566 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1567 * net/tramp-sh.el (tramp-maybe-open-connection):
1568 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
1569
1570 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
1571 also for hash values.
1572
1573 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1574
1575 * term/ns-win.el (parameters): Don't declare as dynamic.
1576 (before-make-frame-hook): Don't add ineffective function.
1577
1578 * eshell/*.el: Use lexical-binding (bug#15231).
1579
1580 2013-09-12 Kenichi Handa <handa@gnu.org>
1581
1582 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
1583
1584 2013-09-12 Glenn Morris <rgm@gnu.org>
1585
1586 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
1587 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
1588
1589 * subr.el (do-after-load-evaluation): Also give compiler warnings
1590 when obsolete files are used (except by obsolete files).
1591
1592 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
1593 in the status output, assume `filename' is the first. (Bug#15322)
1594
1595 * vc/vc.el (vc-deduce-fileset): Doc fix.
1596
1597 * calc/calc-help.el (Info-goto-node):
1598 * progmodes/cperl-mode.el (Info-find-node):
1599 * vc/ediff.el (Info-goto-node): Update declarations.
1600
1601 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
1602
1603 * vc/vc-bzr.el (vc-compilation-mode): Declare.
1604 (vc-bzr-pull): Require vc-dispatcher.
1605 * vc/vc-git.el (vc-compilation-mode): Declare.
1606 (vc-git-pull): Require vc-dispatcher.
1607
1608 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
1609
1610 * progmodes/octave.el (help-button-action): Declare.
1611
1612 * shell.el (shell-directory-tracker): Output error as a message
1613 rather than just returning it as a string.
1614 (shell-process-pushd): Remove useless use of message.
1615
1616 * dframe.el (dframe-timer-fn):
1617 * files.el (dir-locals-read-from-file):
1618 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
1619 (mpc-format):
1620 * reveal.el (reveal-post-command):
1621 * saveplace.el (load-save-place-alist-from-file):
1622 * shell.el (shell-resync-dirs):
1623 * w32-common-fns.el (x-get-selection-value):
1624 * emacs-lisp/copyright.el (copyright-find-copyright):
1625 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
1626 * emulation/tpu-edt.el (tpu-copy-keyfile):
1627 * play/bubbles.el (bubbles--mark-neighbourhood):
1628 * progmodes/executable.el
1629 (executable-make-buffer-file-executable-if-script-p):
1630 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
1631
1632 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1633
1634 Cleanup Eshell to rely less on dynamic scoping.
1635 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
1636 last-value, and ext-command here. Bind `args' closer to `body'.
1637 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
1638 (eshell--args): Declare new dynamic var.
1639 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
1640 last-value, and ext-command. Pass `args' to `body'.
1641 (eshell-process-args): Bind eshell--args.
1642 (eshell-set-option): Use eshell--args.
1643 * eshell/eshell.el (eshell): Use derived-mode-p.
1644 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
1645 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
1646 (eshell-glob-function): Declare.
1647 * eshell/esh-util.el: Require cl-lib.
1648 (eshell-read-hosts-file): Avoid add-to-list.
1649 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
1650 `err'.
1651 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
1652 Declare.
1653 (eshell/diff): Remove unused var `err'.
1654 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
1655 `killflag'.
1656 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
1657 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
1658 first use.
1659 * eshell/em-glob.el (eshell-glob-matches, message-shown):
1660 Move declaration before first use.
1661 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
1662 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
1663 rely on cl-return.
1664
1665 2013-09-12 Glenn Morris <rgm@gnu.org>
1666
1667 * term/ns-win.el (global-map): Remove binding for ispell-next,
1668 deleted 1999-05-29. (Bug#15357)
1669
1670 2013-09-11 Glenn Morris <rgm@gnu.org>
1671
1672 * echistory.el (electric-command-history): Remove call to deleted func.
1673
1674 * play/landmark.el (landmark-mode): Fix typos.
1675
1676 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
1677 Check cvs-sort-ignore-file is bound.
1678
1679 * savehist.el: No need for cl when compiling on Emacs.
1680
1681 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1682
1683 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
1684 (bug#15338).
1685 (eshell-self-insert-command, eshell-send-invisible):
1686 Remove unused argument.
1687 (eshell-handle-control-codes): Remove unused var `orig'.
1688 Avoid delete-backward-char.
1689
1690 * files.el (set-auto-mode): Simplify a bit further.
1691
1692 2013-09-11 Glenn Morris <rgm@gnu.org>
1693
1694 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
1695 (set-auto-mode): Don't regexp-quote elements.
1696 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
1697 * progmodes/cc-mode.el (interpreter-mode-alist):
1698 * progmodes/ruby-mode.el (interpreter-mode-alist):
1699 Revert previous change.
1700
1701 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
1702
1703 * play/snake.el (snake-mode):
1704 * play/mpuz.el (mpuz-mode):
1705 * play/landmark.el (lm-mode):
1706 * play/blackbox.el (blackbox-mode):
1707 * play/5x5.el (5x5-mode):
1708 * obsolete/options.el (Edit-options-mode):
1709 * net/quickurl.el (quickurl-list-mode):
1710 * net/newst-treeview.el (newsticker-treeview-mode):
1711 * mail/rmailsum.el (rmail-summary-mode):
1712 * mail/mspools.el (mspools-mode):
1713 * locate.el (locate-mode):
1714 * ibuffer.el (ibuffer-mode):
1715 * emulation/ws-mode.el (wordstar-mode):
1716 * emacs-lisp/debug.el (debugger-mode):
1717 * array.el (array-mode):
1718 * net/eudc.el (eudc-mode): Use define-derived-mode.
1719 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
1720 Move initialization into declaration.
1721 (mairix-searches-mode): Use define-derived-mode.
1722 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
1723 (eudc-edit-hotlist): Use dolist.
1724 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
1725 (Man-mode): Use define-derived-mode.
1726 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
1727 (Info-edit-mode): Use define-derived-mode.
1728 (Info-cease-edit): Use Info-mode.
1729 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
1730 into declaration.
1731 (eshell-mode): Use define-derived-mode.
1732 * chistory.el (command-history-mode-map): Rename from
1733 command-history-map.
1734 (command-history-mode): Use define-derived-mode.
1735 (Command-history-setup): Remove function.
1736 * calc/calc.el (calc-trail-mode-map): New var.
1737 (calc-trail-mode): Use define-derived-mode.
1738 (calc-trail-buffer): Set calc-main-buffer manually.
1739 * bookmark.el (bookmark-insert-annotation): New function.
1740 (bookmark-edit-annotation): Use it.
1741 (bookmark-edit-annotation-mode): Make it a proper major mode.
1742 (bookmark-send-edited-annotation): Use derived-mode-p.
1743 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
1744 closer to its ideal place. Use \' to match EOS.
1745
1746 * profiler.el (profiler-calltree-find): Use function-equal.
1747
1748 2013-09-10 Glenn Morris <rgm@gnu.org>
1749
1750 * files.el (interpreter-mode-alist): Convert to regexps.
1751 (set-auto-mode): Adapt for this. (Bug#15306)
1752 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
1753 Comment out unused variable.
1754 * progmodes/cc-mode.el (interpreter-mode-alist):
1755 * progmodes/python.el (interpreter-mode-alist):
1756 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
1757 * progmodes/sh-script.el (sh-set-shell):
1758 No longer use interpreter-mode-alist to get list of shells.
1759
1760 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
1761
1762 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
1763
1764 * simple.el: Use set-temporary-overlay-map for universal-argument.
1765 (universal-argument-map): Don't use default-bindings (bug#15317).
1766 Bind switch-frame explicitly. Replace universal-argument-minus with
1767 a conditional binding.
1768 (universal-argument-num-events, saved-overriding-map): Remove.
1769 (restore-overriding-map): Remove.
1770 (universal-argument--mode): Rename from save&set-overriding-map,
1771 and rewrite.
1772 (universal-argument, universal-argument-more, negative-argument)
1773 (digit-argument): Adjust accordingly.
1774 (universal-argument-minus): Remove.
1775 (universal-argument-other-key): Remove.
1776
1777 * subr.el (with-demoted-errors): Add `format' argument.
1778
1779 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
1780
1781 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
1782 `tramp-cleanup-connection'.
1783
1784 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
1785 parameters KEEP-DEBUG and KEEP-PASSWORD.
1786
1787 * net/tramp.el (tramp-file-name-handler):
1788 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1789 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
1790 (tramp-maybe-open-connection):
1791 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1792 Use `tramp-cleanup-connection'.
1793
1794 * net/tramp-sh.el (tramp-maybe-open-connection):
1795 Catch 'uname-changed inside the progress reporter.
1796
1797 2013-09-10 Glenn Morris <rgm@gnu.org>
1798
1799 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
1800
1801 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
1802 returns "alternate access method" in mode (eg "-rw-r--r--.").
1803
1804 2013-09-08 Glenn Morris <rgm@gnu.org>
1805
1806 * saveplace.el (load-save-place-alist-from-file):
1807 Demote errors. (Bug#15305)
1808
1809 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
1810
1811 Improve compatibility with older Emacsen, and XEmacs.
1812
1813 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
1814 only if it is bound. It isn't for XEmacs.
1815 (with-tramp-progress-reporter): Do not let-bind `result'.
1816 This yields to scoping errors in XEmacs.
1817 (tramp-handle-make-auto-save-file-name): New function, moved from
1818 tramp-sh.el.
1819
1820 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
1821 for `make-auto-save-file-name'.
1822 (tramp-adb--gnu-switches-to-ash):
1823 Use `tramp-compat-replace-regexp-in-string'.
1824
1825 * net/tramp-cache.el (tramp-cache-print): Call
1826 `substring-no-properties' only if it is bound. It isn't for XEmacs.
1827
1828 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
1829 bound. It isn't for XEmacs.
1830
1831 * net/tramp-compat.el (tramp-compat-copy-file):
1832 Catch `wrong-number-of-arguments' error.
1833 (tramp-compat-replace-regexp-in-string): New defun.
1834
1835 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
1836 for `make-auto-save-file-name'.
1837 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
1838 `copy-file'.
1839 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
1840 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
1841 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
1842
1843 * net/tramp-gw.el (tramp-gw-open-network-stream):
1844 Use `tramp-compat-replace-regexp-in-string'.
1845
1846 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1847 Call `tramp-handle-make-auto-save-file-name'.
1848 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
1849 (tramp-sh-file-gvfs-monitor-dir-process-filter)
1850 (tramp-sh-file-inotifywait-process-filter):
1851 Use `tramp-compat-replace-regexp-in-string'.
1852 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
1853
1854 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
1855 for `make-auto-save-file-name'.
1856 (tramp-smb-handle-copy-directory):
1857 Call `tramp-compat-replace-regexp-in-string'.
1858 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
1859 (tramp-smb-handle-copy-file): Improve error message.
1860 (tramp-smb-handle-rename-file): Rename directly only in case
1861 `newname' does not exist yet. This is a restriction of smbclient.
1862 (tramp-smb-maybe-open-connection): Rerun the function only when
1863 `auth-sources' is non-nil.
1864
1865 2013-09-08 Kenichi Handa <handa@gnu.org>
1866
1867 * international/characters.el: Set category "^" (Combining) for
1868 more characters.
1869
1870 2013-09-07 Alan Mackenzie <acm@muc.de>
1871
1872 Correctly fontify Java class constructors.
1873 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
1874 in Java Mode.
1875 (c-recognize-typeless-decls): Set the Java value to t.
1876 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
1877 While handling a "(", add a check for, effectively, Java, and handle a
1878 "typeless" declaration there.
1879
1880 2013-09-07 Roland Winkler <winkler@gnu.org>
1881
1882 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
1883 field subtitle for entry type book.
1884
1885 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1886
1887 * minibuffer.el: Make minibuffer-complete call completion-in-region
1888 rather than other way around.
1889 (completion--some, completion-pcm--find-all-completions):
1890 Don't delay signals when debugging.
1891 (minibuffer-completion-contents): Beware fields within the
1892 minibuffer contents.
1893 (completion-all-sorted-completions): Use defvar-local.
1894 (completion--do-completion, completion--cache-all-sorted-completions)
1895 (completion-all-sorted-completions, minibuffer-force-complete):
1896 Add args `beg' and `end'.
1897 (completion--in-region-1): New fun, extracted from minibuffer-complete.
1898 (minibuffer-complete): Use completion-in-region.
1899 (completion-complete-and-exit): New fun, extracted from
1900 minibuffer-complete-and-exit.
1901 (minibuffer-complete-and-exit): Use it.
1902 (completion--complete-and-exit): Rename from
1903 minibuffer--complete-and-exit.
1904 (completion-in-region--single-word): New function, extracted from
1905 minibuffer-complete-word.
1906 (minibuffer-complete-word): Use it.
1907 (display-completion-list): Make `common-substring' argument obsolete.
1908 (completion--in-region): Call completion--in-region-1 instead of
1909 minibuffer-complete.
1910 (completion-help-at-point): Pass boundaries to
1911 minibuffer-completion-help as args rather than via an overlay.
1912 (completion-pcm--string->pattern): Use `any-delim'.
1913 (completion-pcm--optimize-pattern): New function.
1914 (completion-pcm--pattern->regex): Handle `any-delim'.
1915 * icomplete.el (icomplete-forward-completions)
1916 (icomplete-backward-completions, icomplete-completions):
1917 Adjust calls to completion-all-sorted-completions and
1918 completion--cache-all-sorted-completions.
1919 (icomplete-with-completion-tables): Default to t.
1920 * emacs-lisp/crm.el (crm--current-element): Rename from
1921 crm--select-current-element. Don't put an overlay but return the
1922 boundaries instead.
1923 (crm--completion-command): Take two new args to bind to the boundaries.
1924 (crm-completion-help): Adjust accordingly.
1925 (crm-complete): Use completion-in-region.
1926 (crm-complete-word): Use completion-in-region--single-word.
1927 (crm-complete-and-exit): Use completion-complete-and-exit.
1928
1929 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1930
1931 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
1932 than dynamically.
1933
1934 2013-09-06 Juri Linkov <juri@jurta.org>
1935
1936 * info.el (Info-display-images-node): When image file doesn't exist
1937 display text version of the image if it's provided in the Info file.
1938 Otherwise, display the location of missing image from SRC attribute.
1939 Add help-echo text property from ALT attribute. (Bug#15279)
1940
1941 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1942
1943 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
1944 (edit-abbrevs-mode): Use define-derived-mode.
1945
1946 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
1947 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
1948 that it's defined.
1949 (epa-key-list-mode, epa-key-mode, epa-info-mode):
1950 Use define-derived-mode.
1951
1952 * epg.el (epg-start-encrypt): Minor CSE simplification.
1953
1954 2013-09-06 William Xu <william.xwl@gmail.com>
1955
1956 * arc-mode.el: Add support for 7za (bug#15264).
1957 (archive-7z-program): New var.
1958 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
1959 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
1960 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
1961
1962 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
1963
1964 Remove URL syntax.
1965
1966 * net/tramp.el (tramp-syntax, tramp-prefix-format)
1967 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
1968 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
1969 (tramp-postfix-host-format, tramp-file-name-regexp)
1970 (tramp-completion-file-name-regexp)
1971 (tramp-completion-dissect-file-name)
1972 (tramp-handle-substitute-in-file-name): Remove 'url case.
1973 (tramp-file-name-regexp-url)
1974 (tramp-completion-file-name-regexp-url): Remove constants.
1975
1976 2013-09-06 Glenn Morris <rgm@gnu.org>
1977
1978 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
1979
1980 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
1981
1982 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
1983 keywords" below "here-doc beginnings" (Bug#15270).
1984
1985 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1986
1987 * subr.el (pop): Use `car-safe'.
1988 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
1989 to detect unused `pop' return value.
1990
1991 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
1992 var `block-regexp'.
1993 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
1994 (python-fill-string): Remove unused var `marker'.
1995 (python-skeleton-add-menu-items): Remove unused var `items'.
1996
1997 * international/mule-cmds.el: Require CL.
1998 (find-coding-systems-for-charsets): Avoid add-to-list.
1999 (sanitize-coding-system-list): New function, extracted from
2000 select-safe-coding-system-interactively.
2001 (select-safe-coding-system-interactively): Use it.
2002 (read-input-method-name): Accept symbols for `default'.
2003
2004 * emacs-lisp/advice.el (defadvice): Add indent rule.
2005
2006 2013-09-05 Daniel Hackney <dan@haxney.org>
2007
2008 * dired-x.el:
2009 * net/ange-ftp.el:
2010 * net/browse-url.el:
2011 * net/dbus.el:
2012 * net/eudc.el:
2013 * net/eudcb-ldap.el:
2014 * net/eww.el:
2015 * net/imap.el:
2016 * printing.el:
2017 * vc/ediff-diff.el:
2018 * vc/ediff-init.el:
2019 * vc/ediff-merg.el:
2020 * vc/ediff-mult.el:
2021 * vc/ediff-util.el:
2022 * vc/ediff-wind.el:
2023 * vc/ediff.el:
2024 * vc/emerge.el:
2025 * vc/pcvs.el:
2026 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
2027 byte compiler. Remove some unused let-bound variables.
2028
2029 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2030
2031 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
2032 a "ref-cell", since it gets better optimized (bug#14883).
2033
2034 2013-09-05 Glenn Morris <rgm@gnu.org>
2035
2036 * progmodes/cc-awk.el (c-forward-sws): Declare.
2037
2038 2013-09-04 Glenn Morris <rgm@gnu.org>
2039
2040 * generic-x.el [rul-generic-mode]: Require cc-mode.
2041 (c++-mode-syntax-table): Declare.
2042 (rul-generic-mode-syntax-table): Init in the defvar.
2043
2044 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2045
2046 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
2047 (vc-do-command, vc-set-async-update):
2048 * vc/vc-mtn.el (vc-mtn-dir-status):
2049 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
2050 (vc-hg-pull, vc-hg-merge-branch):
2051 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
2052 (vc-git-merge-branch):
2053 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
2054 (vc-cvs-dir-status-files):
2055 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
2056 (vc-bzr-dir-status-files):
2057 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
2058 * vc/vc-annotate.el: Use lexical-binding.
2059 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
2060 (vc-sentinel-movepoint): Declare.
2061 (vc-annotate): Don't use `goto-line'.
2062 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
2063 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
2064 (vc-sentinel-movepoint): Declare.
2065 * vc/vc-svn.el: Use lexical-binding.
2066 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
2067 * vc/vc-sccs.el:
2068 * vc/vc-rcs.el: Use lexical-binding.
2069
2070 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
2071 `deleted'. Don't drop errors silently.
2072
2073 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
2074
2075 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2076
2077 * vc/vc.el (vc-ignore): Rewrite.
2078 (vc-default-ignore): New function.
2079 (vc-default-ignore-completion-table): Use find-ignore-file.
2080
2081 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
2082 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
2083 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
2084 Remove. Most code moved to vc.el.
2085
2086 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2087
2088 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
2089 * net/tramp-smb.el (tramp-smb-get-file-entries):
2090 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
2091 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
2092
2093 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
2094 Update call to it.
2095 (eww-change-select): Remove unused var `properties'.
2096 (eww-make-unique-file-name): Remove unused var `base'.
2097
2098 * finder.el (finder-compile-keywords): Don't mess with windows.
2099
2100 * calculator.el (calculator-funcall): Fix typo in last change.
2101
2102 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
2103
2104 * emacs-lisp/package.el (package-activate-1): Don't let a missing
2105 <pkg>-autoloads.el file stop us.
2106
2107 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
2108 warnings, and factor out common code.
2109
2110 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
2111
2112 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
2113 two-character operators and whether the character preceding them
2114 changes their meaning (Bug#15208).
2115
2116 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2117
2118 Format code sent to Python shell for robustness.
2119 * progmodes/python.el (python-shell-buffer-substring):
2120 New function.
2121 (python-shell-send-region, python-shell-send-buffer): Use it.
2122
2123 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
2124
2125 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
2126 * net/tramp.el (tramp-user-error): ... here.
2127 (tramp-find-method, tramp-check-proper-host)
2128 (tramp-dissect-file-name, tramp-debug-message)
2129 (tramp-handle-shell-command):
2130 * net/tramp-adb.el (tramp-adb-handle-shell-command):
2131 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
2132
2133 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
2134
2135 2013-09-02 Martin Rudalics <rudalics@gmx.at>
2136
2137 * avoid.el (mouse-avoidance-point-position)
2138 (mouse-avoidance-too-close-p): Handle case where posn-at-point
2139 returns nil.
2140
2141 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2142
2143 * progmodes/python.el (python-shell-completion-get-completions):
2144 Drop use of deleted `comint-last-prompt-overlay'.
2145 (python-nav-if-name-main): New command.
2146
2147 2013-09-01 Glenn Morris <rgm@gnu.org>
2148
2149 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2150 Avoid leading space in $wins. Otherwise the sed command used by
2151 eg compile-main ends up containing "/*.el". (Bug#15170)
2152
2153 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
2154
2155 2013-08-30 Glenn Morris <rgm@gnu.org>
2156
2157 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2158 Fix is-this-a-directory logic. (Bug#15220)
2159
2160 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2161
2162 * textmodes/css-mode.el: Use SMIE.
2163 (css-smie-grammar): New var.
2164 (css-smie--forward-token, css-smie--backward-token)
2165 (css-smie-rules): New functions.
2166 (css-mode): Use them.
2167 (css-navigation-syntax-table): Remove var.
2168 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
2169 (css-indent-calculate, css-indent-line): Remove functions.
2170
2171 Misc changes to reduce use of `(lambda...); and other cleanups.
2172 * cus-edit.el: Use lexical-binding.
2173 (customize-push-and-save, customize-apropos)
2174 (custom-buffer-create-internal): Use closures.
2175 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
2176 * progmodes/ada-xref.el: Use setq.
2177 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
2178 * dframe.el: Use lexical-binding.
2179 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
2180 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
2181 * descr-text.el: Use lexical-binding.
2182 (describe-text-widget, describe-text-sexp, describe-property-list):
2183 Use closures.
2184 * comint.el (comint-history-isearch-push-state): Use a closure.
2185 * calculator.el: Use lexical-binding.
2186 (calculator-number-to-string): Make it work with lexical-binding.
2187 (calculator-funcall): Same and use cl-letf.
2188
2189 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
2190 (lisp--company-doc-string, lisp--company-location): New functions.
2191 (lisp-completion-at-point): Use them to improve Company support.
2192
2193 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
2194 params of lambda expressions.
2195 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
2196 (ruby-smie--opening-pipe-p): New function.
2197 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
2198 symbols and matched |...| for formal params.
2199 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
2200 from being treated as hanging. Handle "rescue".
2201
2202 2013-08-29 Glenn Morris <rgm@gnu.org>
2203
2204 * progmodes/cc-engine.el (c-pull-open-brace):
2205 Move definition before use.
2206
2207 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2208
2209 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
2210 are immutable. Don't use `unsafe' any more.
2211 (cl--defsubst-expand): Don't substitute at the same time as keeping
2212 a residual unused let-binding. Don't use `unsafe' any more.
2213
2214 2013-08-29 Glenn Morris <rgm@gnu.org>
2215
2216 * calendar/cal-china.el (calendar-chinese-year-cache):
2217 Recenter on 2015.
2218
2219 * nxml/nxml-util.el (nxml-debug-clear-inside):
2220 Use cl-loop rather than loop.
2221
2222 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
2223
2224 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
2225
2226 2013-08-28 Glenn Morris <rgm@gnu.org>
2227
2228 * progmodes/antlr-mode.el: No need to require cc-mode twice.
2229
2230 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
2231
2232 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2233
2234 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2235
2236 * simple.el (repeat-complex-command--called-interactively-skip):
2237 New function.
2238 (repeat-complex-command): Use it (bug#14136).
2239
2240 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2241 (c-define-abbrev-table): Add `doc' argument.
2242 (c-mode-abbrev-table, c++-mode-abbrev-table)
2243 (objc-mode-abbrev-table, java-mode-abbrev-table)
2244 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2245 (awk-mode-abbrev-table): Use it.
2246 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2247 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2248 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2249 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2250 Move initialization into the declaration; and remove any
2251 autoload cookie.
2252
2253 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2254 and dynamic let binding.
2255
2256 * vc/smerge-mode.el: Remove redundant :group args.
2257
2258 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2259 to load-path.
2260
2261 2013-08-28 Juri Linkov <juri@jurta.org>
2262
2263 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2264 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2265 (isearch-other-meta-char): Handle an undefined shifted printing
2266 character by downshifting it. (Bug#15200)
2267
2268 2013-08-28 Juri Linkov <juri@jurta.org>
2269
2270 * isearch.el (isearch-search): Change regexp error message for
2271 non-regexp searches. (Bug#15166)
2272
2273 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2274
2275 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2276 for portability to hosts where /bin/sh has problems.
2277
2278 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2279
2280 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2281
2282 2013-08-27 Juri Linkov <juri@jurta.org>
2283
2284 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2285 in the keyboard macro. (Bug#15126)
2286
2287 2013-08-27 Juri Linkov <juri@jurta.org>
2288
2289 * isearch.el (isearch-quote-char): Comment out converting unibyte
2290 to multibyte, thus syncing with its `quoted-insert' counterpart.
2291 (Bug#15166)
2292
2293 2013-08-27 Martin Rudalics <rudalics@gmx.at>
2294
2295 * window.el (display-buffer-use-some-window): Add missing
2296 argument in call of get-largest-window (Bug#15185).
2297 Reported by Stephen Leake.
2298
2299 2013-08-27 Glenn Morris <rgm@gnu.org>
2300
2301 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2302
2303 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2304
2305 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2306 from a matcher-function unless there's no more matches (bug#15161).
2307
2308 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2309
2310 * minibuffer.el: Revert change from 2013-08-20.
2311
2312 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2313 with text property `tramp-default', if appropriate.
2314 (tramp-check-proper-host): New defun.
2315 (tramp-dissect-file-name): Do not check hostname. Revert change
2316 of 2013-03-18.
2317 (tramp-backtrace): Make VEC-OR-PROC optional.
2318
2319 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2320 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2321 * net/tramp-sh.el (tramp-maybe-open-connection):
2322 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2323 Apply `tramp-check-proper-host'.
2324
2325 2013-08-26 Tassilo Horn <tsdh@gnu.org>
2326
2327 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2328 lambda expression in order to have `describe-variable' display it.
2329
2330 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2331
2332 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2333 BUF can be optional. (Bug#15186)
2334
2335 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2336
2337 * progmodes/flymake.el (flymake-get-real-file-name-function):
2338 Fix broken customization. (Bug#15184)
2339
2340 2013-08-25 Alan Mackenzie <acm@muc.de>
2341
2342 Improve indentation of bracelists defined by macros (without "=").
2343
2344 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2345 expansion begins with "{", regard it as bracelist when it doesn't
2346 contain a ";".
2347
2348 Parse C++ inher-intro when there's a template split over 2 lines.
2349
2350 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2351 rigorously the search for "class" etc. followed by ":".
2352
2353 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2354 random languages a regexp which never matches rather than nil.
2355
2356 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2357
2358 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2359 (c-awk-regexp-one-line-possibly-open-char-list-re)
2360 (c-awk-one-line-possibly-open-regexp-re)
2361 (c-awk-one-line-non-syn-ws*-re): Remove.
2362 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2363 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2364 (c-awk-space*-unclosed-regexp-/-re): New constants.
2365 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2366 aren't regexp delimiters.
2367
2368 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2369 handling for a rare situation in AWK Mode involving unterminated
2370 strings/regexps.
2371
2372 2013-08-23 Glenn Morris <rgm@gnu.org>
2373
2374 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2375
2376 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2377
2378 * files.el (create-file-buffer): If the result would begin with
2379 spaces, prepend a "|" instead of removing them. (Bug#15162)
2380
2381 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2382
2383 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2384 text-properties (bug#15155).
2385
2386 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2387 exist any more.
2388 (calc-keypad-redraw): Remove unused var `pad'.
2389 (calc-keypad-press): Remove unused var `menu'.
2390
2391 2013-08-23 Martin Rudalics <rudalics@gmx.at>
2392
2393 * window.el (display-buffer-pop-up-frame):
2394 Call pop-up-frame-function with BUFFER current so `make-frame' will
2395 use it as the new frame's buffer (Bug#15133).
2396
2397 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2398
2399 * calendar/timeclock.el: Minor cleanups.
2400 (timeclock-ask-before-exiting, timeclock-use-display-time):
2401 Use `symbol'.
2402 (timeclock-modeline-display): Define as alias before the
2403 actual definition.
2404 (timeclock-mode-line-display): Use define-minor-mode.
2405 (timeclock-day-list-template): Make it a function, add an argument.
2406 (timeclock-day-list-required, timeclock-day-list-length)
2407 (timeclock-day-list-debt, timeclock-day-list-span)
2408 (timeclock-day-list-break): Adjust calls accordingly.
2409
2410 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2411
2412 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2413 Use read--expression so that completion works again.
2414
2415 2013-08-21 Sam Steingold <sds@gnu.org>
2416
2417 Add rudimentary inferior shell interaction
2418 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2419 (sh-set-shell): Reset it.
2420 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2421 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
2422
2423 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2424
2425 * align.el: Use lexical-binding.
2426 (align-region): Simplify accordingly.
2427
2428 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
2429
2430 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2431
2432 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2433 `non-essential' up.
2434
2435 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
2436
2437 * net/tramp.el:
2438 * net/tramp-adb.el:
2439 * net/tramp-cmds.el:
2440 * net/tramp-ftp.el:
2441 * net/tramp-gvfs.el:
2442 * net/tramp-gw.el:
2443 * net/tramp-sh.el: Don't wrap external variable declarations by
2444 `eval-when-compile'.
2445
2446 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2447
2448 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2449 now that Emacs supports ImageMagick animations.
2450
2451 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
2452
2453 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2454 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2455
2456 2013-08-16 Martin Rudalics <rudalics@gmx.at>
2457
2458 * window.el (mouse-autoselect-window-select): Do autoselect when
2459 mouse pointer is on margin.
2460
2461 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2462
2463 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2464
2465 2013-08-16 Glenn Morris <rgm@gnu.org>
2466
2467 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2468 Handle "Remote Directory" response of some clients. (Bug#15058)
2469
2470 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2471 Tweak warning. (Bug#14926)
2472
2473 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2474 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2475
2476 * image-mode.el (image-mode-map): Add menu items to reverse,
2477 increase, decrease, reset animation speed.
2478 (image--set-speed, image-increase-speed, image-decrease-speed)
2479 (image-reverse-speed, image-reset-speed): New functions.
2480 (image-mode-map): Add bindings for speed commands.
2481
2482 * image.el (image-animate-get-speed, image-animate-set-speed):
2483 New functions.
2484 (image-animate-timeout): Respect image :speed property.
2485
2486 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2487
2488 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2489 previous line (bug#15101).
2490 (debugger-eval-expression, debugger-record-expression):
2491 Use read--expression (bug#15102).
2492
2493 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
2494
2495 Remove byte compiler warnings, visible when compiling with
2496 `byte-compile-force-lexical-warnings' set to t.
2497
2498 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
2499 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
2500 (tramp-handle-unhandled-file-name-directory)
2501 (tramp-handle-file-notify-add-watch, tramp-action-login)
2502 (tramp-action-succeed, tramp-action-permission-denied)
2503 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2504 arguments with "_".
2505
2506 * net/tramp-adb.el (tramp-adb-parse-device-names)
2507 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2508 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2509 (tramp-adb-handle-file-truename): Remove unused arguments.
2510
2511 * net/tramp-cache.el (tramp-flush-directory-property)
2512 (tramp-flush-connection-property, tramp-list-connections)
2513 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2514
2515 * net/tramp-compat.el (tramp-compat-make-temp-file):
2516 Rename FILENAME to F.
2517
2518 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2519 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2520 (tramp-zeroconf-parse-workstation-device-names)
2521 (tramp-zeroconf-parse-webdav-device-names)
2522 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2523
2524 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
2525 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
2526
2527 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
2528 arguments.
2529 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
2530 (tramp-sh-handle-insert-file-contents-literally)
2531 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
2532 with "_".
2533 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
2534 Remove unused variables.
2535
2536 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
2537 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
2538 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
2539
2540 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
2541 Make them a defconst.
2542 (tramp-uuencode-region): Remove unused variable.
2543
2544 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
2545
2546 * frameset.el (frameset--prop-setter): New function.
2547 (frameset-prop): Add gv-setter declaration.
2548 (frameset-filter-minibuffer): Deal with the case that the minibuffer
2549 parameter was already set in FILTERED. Doc fix.
2550 (frameset--record-minibuffer-relationships): Allow saving a
2551 minibufferless frame without its corresponding minibuffer frame.
2552 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
2553 frame, if the frame id matches.
2554 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
2555 frames before orphaned ones.
2556 (frameset-restore): Warn about orphaned windows, instead of error out.
2557
2558 2013-08-14 Martin Rudalics <rudalics@gmx.at>
2559
2560 * window.el (window-make-atom): Don't overwrite parameter
2561 already present.
2562 (display-buffer-in-atom-window): Handle special case where we
2563 split an already atomic window.
2564 (window--major-non-side-window, display-buffer-in-side-window)
2565 (window--side-check): Ignore minibuffer window when walking
2566 window tree.
2567 (window-deletable-p): Return 'frame only if no other frame uses
2568 our minibuffer window.
2569 (record-window-buffer): Run buffer-list-update-hook.
2570 (split-window): Make sure window--check-frame won't destroy an
2571 existing atomic window in case the new window gets nested
2572 inside.
2573 (display-buffer-at-bottom): Ignore minibuffer window when
2574 walking window tree. Don't split a side window.
2575 (pop-to-buffer): Don't set-buffer here, the select-window call
2576 should do that.
2577 (mouse-autoselect-window-select): Autoselect only if we are in the
2578 text portion of the window.
2579
2580 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2581
2582 * net/shr.el (shr-parse-image-data): New function to grab both the
2583 data itself and the Content-Type.
2584 (shr-put-image): Use it.
2585
2586 * net/eww.el (eww-display-image): Ditto.
2587
2588 * image.el (image-content-type-suffixes): New variable.
2589
2590 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2591
2592 * progmodes/python.el (python-imenu--build-tree)
2593 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
2594
2595 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
2596
2597 * simple.el (backward-word): Mention the optional argument.
2598
2599 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2600
2601 * frameset.el (frameset--make): Rename constructor from make-frameset.
2602 (frameset-p, frameset-valid-p): Don't autoload.
2603 (frameset-valid-p): Use normal accessors.
2604
2605 2013-08-13 Glenn Morris <rgm@gnu.org>
2606
2607 * progmodes/compile.el (compile-command): Tweak example in doc.
2608 * obsolete/scribe.el (scribe-mode):
2609 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
2610
2611 * mail/feedmail.el (feedmail-confirm-outgoing)
2612 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
2613
2614 * cus-start.el (truncate-partial-width-windows): Fix type.
2615
2616 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
2617
2618 * net/shr.el (shr-table-horizontal-line): Fix custom type.
2619
2620 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2621
2622 * emacs-lisp/timer.el (timer--time-setter): New function.
2623 (timer--time): Use it as gv-setter.
2624
2625 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
2626 setter is not a symbol.
2627
2628 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
2629
2630 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
2631 if sending fails. This makes debugging easier.
2632
2633 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
2634
2635 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
2636 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
2637 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
2638
2639 2013-08-12 Eli Zaretskii <eliz@gnu.org>
2640
2641 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
2642
2643 2013-08-12 Glenn Morris <rgm@gnu.org>
2644
2645 * format.el (format-annotate-function):
2646 Handle read-only text properties in the source. (Bug#14887)
2647
2648 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2649
2650 * net/eww.el (eww-display-html): Ignore coding system errors.
2651 One web site uses "utf-8lias" as the coding system.
2652
2653 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
2654
2655 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
2656
2657 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
2658
2659 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
2660 (tutorial--detailed-help): Remove unused local variables.
2661 (tutorial--save-tutorial-to): Use ignore-errors.
2662 (help-with-tutorial): Use looking-at-p.
2663
2664 * view.el (view-buffer-other-window, view-buffer-other-frame):
2665 Mark unused arguments.
2666
2667 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
2668 (woman-select-symbol-fonts, woman, woman-find-file)
2669 (woman-insert-file-contents, woman-non-underline-faces):
2670 Use string-match-p.
2671 (woman1-unquote): Move declaration.
2672
2673 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
2674 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
2675 argument. Remove unused local variable.
2676 (xml-parse-elem-type): Use string-match-p.
2677 (xml-substitute-numeric-entities): Use ignore-errors.
2678
2679 * calculator.el (calculator): Mark unused argument.
2680 (calculator-paste, calculator-quit, calculator-integer-p):
2681 Use ignore-errors.
2682 (calculator-string-to-number, calculator-decimal, calculator-exp)
2683 (calculator-op-or-exp): Use string-match-p.
2684
2685 * dired.el (dired-buffer-more-recently-used-p): Declare.
2686 (dired-insert-set-properties, dired-insert-old-subdirs):
2687 Use ignore-errors.
2688
2689 * dired-aux.el (dired-compress): Use ignore-errors.
2690 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
2691 (dired-do-async-shell-command, dired-do-shell-command)
2692 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
2693 (dired-insert-subdir-validate): Use string-match-p.
2694 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
2695 (dired-add-entry): Use string-match-p, looking-at-p.
2696 (dired-insert-subdir-newpos): Remove unused local variable.
2697
2698 * filenotify.el (file-notify-callback): Remove unused local variable.
2699
2700 * filesets.el (filesets-error): Mark unused argument.
2701 (filesets-which-command-p, filesets-filter-dir-names)
2702 (filesets-directory-files, filesets-get-external-viewer)
2703 (filesets-ingroup-get-data): Use string-match-p.
2704
2705 * find-file.el (ff-other-file-name, ff-other-file-name)
2706 (ff-find-the-other-file, ff-cc-hh-converter):
2707 Remove unused local variables.
2708 (ff-get-file-name): Use string-match-p.
2709 (ff-all-dirs-under): Use ignore-errors.
2710
2711 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
2712 (follow-select-if-visible): Remove unused local variable.
2713
2714 * forms.el (read-file-filter): Move declaration.
2715 (forms--make-format, forms--make-parser, forms-insert-record):
2716 Quote function with #'.
2717 (forms--update): Use string-match-p. Quote function with #'.
2718
2719 * help-mode.el (help-dir-local-var-def): Mark unused argument.
2720 (help-make-xrefs): Use looking-at-p.
2721 (help-xref-on-pp): Use looking-at-p, ignore-errors.
2722
2723 * ibuffer.el (ibuffer-ext-visible-p): Declare.
2724 (ibuffer-confirm-operation-on): Use string-match-p.
2725
2726 * msb.el (msb-item-handler, msb-dired-item-handler):
2727 Mark unused arguments.
2728
2729 * ses.el (ses-decode-cell-symbol)
2730 (ses-kill-override): Remove unused local variable.
2731 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
2732 (ses-load): Use ignore-errors, looking-at-p.
2733 (ses-jump-safe): Use ignore-errors.
2734 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
2735
2736 * tabify.el (untabify, tabify): Mark unused arguments.
2737
2738 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
2739 Mark unused argument.
2740 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
2741 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
2742
2743 * emacs-lisp/timer.el (timer--time): Define setter with
2744 gv-define-setter to avoid deprecation warning.
2745
2746 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
2747 (*record-cmpl-statistics-p*): Remove (was commented out).
2748 (cmpl-statistics-block): Remove (body was commented out).
2749 All callers changed.
2750 (add-completions-from-buffer, load-completions-from-file):
2751 Remove unused variables.
2752
2753 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2754
2755 * filecache.el (file-cache-delete-file-list):
2756 Print message only when told so.
2757 (file-cache-files-matching): Use #' in mapconcat argument.
2758
2759 * ffap.el (ffap-url-at-point): Fix reference to variable
2760 thing-at-point-default-mail-uri-scheme.
2761
2762 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
2763
2764 * subr.el (define-error): New function.
2765 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
2766 error-file-not-found and define with define-error.
2767 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
2768 and define with define-error.
2769 * userlock.el (file-locked, file-supersession):
2770 * simple.el (mark-inactive):
2771 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
2772 * progmodes/ada-mode.el (ada-mode-errors):
2773 * play/life.el (life-extinct):
2774 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
2775 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
2776 * nxml/rng-util.el (rng-error):
2777 * nxml/rng-uri.el (rng-uri-error):
2778 * nxml/rng-match.el (rng-compile-error):
2779 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
2780 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
2781 * nxml/nxml-rap.el (nxml-scan-error):
2782 * nxml/nxml-outln.el (nxml-outline-error):
2783 * net/soap-client.el (soap-error):
2784 * net/gnutls.el (gnutls-error):
2785 * net/ange-ftp.el (ftp-error):
2786 * mpc.el (mpc-proc-error):
2787 * json.el (json-error, json-readtable-error, json-unknown-keyword)
2788 (json-number-format, json-string-escape, json-string-format)
2789 (json-key-format, json-object-format):
2790 * jka-compr.el (compression-error):
2791 * international/quail.el (quail-error):
2792 * international/kkc.el (kkc-error):
2793 * emacs-lisp/ert.el (ert-test-failed):
2794 * calc/calc.el (calc-error, inexact-result, math-overflow)
2795 (math-underflow):
2796 * bookmark.el (bookmark-error-no-filename):
2797 * epg.el (epg-error): Define with define-error.
2798
2799 * time.el (display-time-event-handler)
2800 (display-time-next-load-average): Don't call sit-for since it seems
2801 unnecessary (bug#15045).
2802
2803 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
2804 Use #' instead of ' to quote functions.
2805 (checkdoc-output-mode): Use setq-local.
2806 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
2807 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
2808 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
2809 (checkdoc-ispell, checkdoc-ispell-current-buffer)
2810 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
2811 (checkdoc-ispell-message-text, checkdoc-ispell-start)
2812 (checkdoc-ispell-continue, checkdoc-ispell-comments)
2813 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
2814
2815 * ido.el (ido-completion-help): Fix up compiler warning.
2816
2817 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
2818
2819 * frameset.el (frameset-p): Add autoload cookie.
2820 (frameset--jump-to-register): New function, based on code moved from
2821 register.el.
2822 (frameset-to-register): Move from register.el. Adapt to `registerv'.
2823
2824 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
2825 (frameset-restore, frameset-save, frameset-session-filter-alist):
2826 Remove declarations.
2827 (register-alist): Doc fix.
2828 (frameset-to-register): Move to frameset.el.
2829 (jump-to-register, describe-register-1): Remove frameset-specific code.
2830
2831 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2832
2833 * allout-widgets.el (allout-widgets-pre-command-business)
2834 (allout-widgets-post-command-business)
2835 (allout-widgets-after-change-handler)
2836 (allout-decorate-item-and-context, allout-set-boundary-marker)
2837 (allout-body-modification-handler)
2838 (allout-graphics-modification-handler): Mark ignored arguments.
2839 (allout-widgets-post-command-business)
2840 (allout-widgets-exposure-change-processor)
2841 (allout-widgets-exposure-undo-processor)
2842 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
2843 (allout-parse-item-at-point, allout-decorate-item-guides)
2844 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
2845 * allout.el (epa-passphrase-callback-function): Declare.
2846 (allout-overlay-insert-in-front-handler)
2847 (allout-overlay-interior-modification-handler)
2848 (allout-isearch-end-handler, allout-chart-siblings)
2849 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
2850 (allout-yank-processing, allout-process-exposed)
2851 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
2852 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
2853 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
2854 (lisp-indent-defform): Mark ignored arguments.
2855 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
2856 (calculate-lisp-indent): Remove unused variables.
2857 * international/characters.el (indian-2-column, arabic-2-column)
2858 (tibetan): Mark ignored arguments.
2859 (use-cjk-char-width-table): Mark ignored arguments.
2860 Remove unused variables.
2861 * international/fontset.el (build-default-fontset-data)
2862 (x-compose-font-name, create-fontset-from-fontset-spec):
2863 Mark ignored arguments.
2864 (fontset-plain-name): Remove unused variables.
2865 * international/mule.el (charset-id, charset-bytes, generic-char-p)
2866 (keyboard-coding-system): Mark ignored arguments.
2867 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
2868 * help.el (resize-temp-buffer-window):
2869 * window.el (display-buffer-in-major-side-window)
2870 (display-buffer-in-side-window, display-buffer-in-previous-window):
2871 Remove unused variables.
2872 * isearch.el (isearch-forward-symbol):
2873 * version.el (emacs-bzr-version-bzr):
2874 * international/mule-cmds.el (current-language-environment):
2875 * term/common-win.el (x-handle-iconic, x-handle-geometry)
2876 (x-handle-display):
2877 * term/pc-win.el (x-list-fonts, x-display-planes)
2878 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
2879 (x-server-version, x-display-screens, x-display-mm-height)
2880 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
2881 (x-selection-owner-p, x-own-selection-internal)
2882 (x-disown-selection-internal, x-get-selection-internal)
2883 (msdos-initialize-window-system):
2884 * term/tty-colors.el (tty-color-alist, tty-color-clear):
2885 * term/x-win.el (x-handle-no-bitmap-icon):
2886 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
2887 (vc-default-find-file-hook, vc-default-extra-menu):
2888 Mark ignored arguments.
2889
2890 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2891
2892 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
2893 break-condition in the context of the debugged code (bug#12685).
2894
2895 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
2896
2897 * comint.el:
2898 Do not use an overlay to highlight the last prompt. (Bug#14744)
2899 (comint-mode): Make comint-last-prompt buffer local.
2900 (comint-last-prompt): New variable.
2901 (comint-last-prompt-overlay): Remove. Superseded by
2902 comint-last-prompt.
2903 (comint-snapshot-last-prompt, comint-output-filter):
2904 Use comint-last-prompt.
2905
2906 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2907
2908 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
2909 (frameset-save): Check validity of the resulting frameset.
2910
2911 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
2912
2913 * ido.el (ido-record-command): Add doc string.
2914
2915 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2916
2917 * frameset.el (frameset): Do not disable creation of the default
2918 frameset-p predicate. Doc fix.
2919 (frameset-valid-p): New function, copied from the old predicate-p.
2920 Add additional checks.
2921 (frameset-restore): Check with frameset-valid-p.
2922 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
2923 (frameset-name, frameset-description, frameset-properties)
2924 (frameset-states): Add docstring.
2925 (frameset-session-filter-alist, frameset-persistent-filter-alist)
2926 (frameset-filter-alist): Doc fixes.
2927
2928 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2929
2930 * frameset.el (frameset-p, frameset-prop): Doc fixes.
2931
2932 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2933
2934 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
2935 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
2936 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
2937 (byte-compile-normal-call): Remove obsolescence check.
2938
2939 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
2940
2941 * frameset.el (frameset-restore): Doc fix.
2942
2943 * register.el (frameset-frame-id, frameset-frame-with-id)
2944 (frameset-p, frameset-restore, frameset-save): Declare.
2945 (register-alist): Document framesets.
2946 (frameset-session-filter-alist): Declare.
2947 (frameset-to-register): New function.
2948 (jump-to-register): Implement jumping to framesets. Doc fix.
2949 (describe-register-1): Describe framesets.
2950
2951 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
2952
2953 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
2954
2955 * desktop.el (desktop-save-frameset): Use new frameset-save args.
2956 Use lexical-binding.
2957
2958 * frameset.el (frameset): Use type vector, not list (incompatible
2959 change). Do not declare a new constructor, use the default one.
2960 Upgrade suggested properties `app', `name' and `desc' to slots `app',
2961 `name' and `description', respectively, and add read-only slot
2962 `timestamp'. Doc fixes.
2963 (frameset-copy, frameset-persistent-filter-alist)
2964 (frameset-filter-alist, frameset-switch-to-gui-p)
2965 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
2966 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
2967 (frameset-filter-iconified, frameset-keep-original-display-p):
2968 Doc fixes.
2969 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
2970 Rename from frameset-filter-(save|restore)-param. All callers changed.
2971 Doc fix.
2972 (frameset-p): Adapt to change to vector and be more thorough.
2973 Change arg name to OBJECT. Doc fix.
2974 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
2975 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
2976 All callers changed.
2977 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
2978 All callers changed.
2979 (frameset--record-minibuffer-relationships): Rename from
2980 frameset--process-minibuffer-frames. All callers changed.
2981 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
2982 Use new default constructor (again). Doc fix.
2983 (frameset--find-frame-if): Rename from `frameset--find-frame.
2984 All callers changed.
2985 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
2986 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
2987 Doc fix.
2988 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
2989 PARAMETERS and WINDOW-STATE, respectively.
2990 (frameset-restore): Add new keyword argument PREDICATE.
2991 Reset frameset--target-display to nil. Doc fix.
2992
2993 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2994
2995 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
2996 (bat-mode): Use it.
2997 (bat-mode-syntax-table): Mark \n as end-of-comment.
2998 (bat-font-lock-keywords): Remove comment rule.
2999
3000 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
3001 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
3002
3003 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
3004 (byte-compile-callargs-warn): Use `push'.
3005 (byte-compile-arglist-warn): Ignore higher-order "calls".
3006 (byte-compile-file-form-autoload): Use `pcase'.
3007 (byte-compile-function-form): If quoting a symbol, check that it exists.
3008
3009 2013-08-07 Eli Zaretskii <eliz@gnu.org>
3010
3011 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
3012 and add a few popular commands found in batch files.
3013 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
3014 (dos-mode): Doc fixes.
3015
3016 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3017
3018 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
3019 (dos-mode): Use setq-local. Add space after "rem".
3020 (dos-mode-syntax-table): Don't use "w" for symbol chars.
3021 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
3022
3023 2013-08-07 Arni Magnusson <arnima@hafro.is>
3024
3025 * progmodes/dos.el: New file.
3026 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
3027 dos-mode.
3028
3029 2013-08-06 Glenn Morris <rgm@gnu.org>
3030
3031 * calendar/calendar.el: Add new faces, and day-header-array.
3032 (calendar-weekday-header, calendar-weekend-header)
3033 (calendar-month-header): New faces.
3034 (calendar-day-header-construct): New function.
3035 (calendar-day-header-width): Also :set calendar-day-header-array.
3036 (calendar-american-month-header, calendar-european-month-header)
3037 (calendar-iso-month-header): Use calendar- faces.
3038 (calendar-generate-month):
3039 Use calendar-day-header-array for day headers; apply faces to them.
3040 (calendar-mode): Check calendar-font-lock-keywords non-nil.
3041 (calendar-abbrev-construct): Add optional maxlen argument.
3042 (calendar-day-name-array): Doc fix.
3043 (calendar-day-name-array, calendar-abbrev-length)
3044 (calendar-day-abbrev-array):
3045 Also :set calendar-day-header-array, and maybe redraw.
3046 (calendar-day-header-array): New option. (Bug#15007)
3047 (calendar-font-lock-keywords): Set to nil and make obsolete.
3048 (calendar-day-name): Add option to use header array.
3049
3050 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3051
3052 * net/shr.el (shr-render-td): Remove debugging.
3053 (shr-render-td): Make width computation consistent by defaulting
3054 all zero-width columns to 10 characters. This may not be optimal,
3055 but it's at least consistent.
3056 (shr-make-table-1): Redo last change to fix the real problem in
3057 colspan handling.
3058
3059 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3060
3061 * files.el (cache-long-line-scans):
3062 Make obsolete alias to `cache-long-scans'.
3063
3064 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3065
3066 * frameset.el (frameset, frameset-filter-alist)
3067 (frameset-filter-params, frameset-save, frameset--reuse-frame)
3068 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
3069 (frameset-compute-pos): Rename from frameset--compute-pos,
3070 and add docstring.
3071 (frameset-move-onscreen): Use frameset-compute-pos.
3072 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3073
3074 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
3075 Fix typos in docstrings.
3076
3077 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3078
3079 * frame.el (get-other-frame): Tiny cleanup.
3080
3081 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3082
3083 * vc/vc.el (vc-default-ignore-completion-table):
3084 Silence byte-compiler warning.
3085
3086 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
3087 slot , which can indeed be nil.
3088 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3089 Move entry for `left' from persistent to live filter alist.
3090 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
3091 Doc fixes.
3092 (frameset-filter-params): When restoring a frame, copy items added to
3093 `filtered', to avoid unwittingly modifying the original parameters.
3094 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
3095 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
3096
3097 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
3098 to use looking-at-p instead of looking-at. (Bug#15028)
3099
3100 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3101
3102 Revert introduction of isearch-filter-predicates (bug#14714).
3103 Rely on add-function instead.
3104 * isearch.el (isearch-filter-predicates): Rename it back to
3105 isearch-filter-predicate.
3106 (isearch-message-prefix): Use advice-function-mapc and advice
3107 properties to get the isearch-message-prefix.
3108 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
3109 instead of run-hook-with-args-until-failure.
3110 (isearch-filter-visible): Not obsolete any more.
3111 * loadup.el: Preload nadvice.
3112 * replace.el (perform-replace): Revert to funcall
3113 instead of run-hook-with-args-until-failure.
3114 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
3115 * dired-aux.el (dired-isearch-filenames-mode): Rename from
3116 dired-isearch-filenames-toggle; make it into a proper minor mode.
3117 Use add/remove-function.
3118 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
3119 Call the minor-mode rather than add/remove-hook.
3120 (dired-isearch-filter-filenames):
3121 Remove isearch-message-prefix property.
3122 * info.el (Info--search-loop): New function, extracted from Info-search.
3123 Funcall isearch-filter-predicate instead of
3124 run-hook-with-args-until-failure isearch-filter-predicates.
3125 (Info-search): Use it.
3126 (Info-mode): Use isearch-filter-predicate instead of
3127 isearch-filter-predicates.
3128
3129 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3130
3131 Do not call to `selected-window' where it is assumed by default.
3132 Affected functions are `window-minibuffer-p', `window-dedicated-p',
3133 `window-hscroll', `window-width', `window-height', `window-buffer',
3134 `window-frame', `window-start', `window-point', `next-window'
3135 and `window-display-table'.
3136 * abbrev.el (abbrev--default-expand):
3137 * bs.el (bs--show-with-configuration):
3138 * buff-menu.el (Buffer-menu-mouse-select):
3139 * calc/calc.el (calc):
3140 * calendar/calendar.el (calendar-generate-window):
3141 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
3142 (diary-make-entry):
3143 * comint.el (send-invisible, comint-dynamic-complete-filename)
3144 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
3145 * completion.el (complete):
3146 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
3147 * disp-table.el (describe-current-display-table):
3148 * doc-view.el (doc-view-insert-image):
3149 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
3150 * ehelp.el (with-electric-help):
3151 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3152 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
3153 * emacs-lisp/helper.el (Helper-help-scroller):
3154 * emulation/cua-base.el (cua--post-command-handler-1):
3155 * eshell/esh-mode.el (eshell-output-filter):
3156 * ffap.el (ffap-gnus-wrapper):
3157 * help-macro.el (make-help-screen):
3158 * hilit-chg.el (highlight-compare-buffers):
3159 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
3160 * hl-line.el (global-hl-line-highlight):
3161 * icomplete.el (icomplete-simple-completing-p):
3162 * isearch.el (isearch-done):
3163 * jit-lock.el (jit-lock-stealth-fontify):
3164 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
3165 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
3166 * mpc.el (mpc-tagbrowser, mpc):
3167 * net/rcirc.el (rcirc-any-buffer):
3168 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
3169 * play/landmark.el (landmark-max-width, landmark-max-height):
3170 * play/zone.el (zone):
3171 * progmodes/compile.el (compilation-goto-locus):
3172 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
3173 * progmodes/etags.el (find-tag-other-window):
3174 * progmodes/fortran.el (fortran-column-ruler):
3175 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
3176 * progmodes/verilog-mode.el (verilog-point-text):
3177 * reposition.el (reposition-window):
3178 * rot13.el (toggle-rot13-mode):
3179 * server.el (server-switch-buffer):
3180 * shell.el (shell-dynamic-complete-command)
3181 (shell-dynamic-complete-environment-variable):
3182 * simple.el (insert-buffer, set-selective-display)
3183 (delete-completion-window):
3184 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
3185 (speedbar-recenter):
3186 * startup.el (fancy-splash-head):
3187 * textmodes/ispell.el (ispell-command-loop):
3188 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
3189 * tutorial.el (help-with-tutorial):
3190 * vc/add-log.el (add-change-log-entry):
3191 * vc/compare-w.el (compare-windows):
3192 * vc/ediff-help.el (ediff-indent-help-message):
3193 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
3194 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
3195 (ediff-setup-control-frame):
3196 * vc/emerge.el (emerge-position-region):
3197 * vc/pcvs-util.el (cvs-bury-buffer):
3198 * window.el (walk-windows, mouse-autoselect-window-select):
3199 * winner.el (winner-set-conf, winner-undo): Related users changed.
3200
3201 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3202
3203 * frameset.el (frameset--set-id): Doc fix.
3204 (frameset-frame-id, frameset-frame-id-equal-p)
3205 (frameset-locate-frame-id): New functions.
3206 (frameset--process-minibuffer-frames, frameset--reuse-frame)
3207 (frameset-restore): Use them.
3208
3209 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3210
3211 Do not call to `selected-frame' where it is assumed by default.
3212 Affected functions are `raise-frame', `redraw-frame',
3213 `frame-first-window', `frame-terminal' and `delete-frame'.
3214 * calendar/appt.el (appt-disp-window):
3215 * epg.el (epg-wait-for-completion):
3216 * follow.el (follow-delete-other-windows-and-split)
3217 (follow-avoid-tail-recenter):
3218 * international/mule.el (set-terminal-coding-system):
3219 * mail/rmail.el (rmail-mail-return):
3220 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
3221 * progmodes/f90.el (f90-add-imenu-menu):
3222 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
3223 * server.el (server-switch-buffer):
3224 * simple.el (delete-completion-window):
3225 * talk.el (talk):
3226 * term/xterm.el (terminal-init-xterm-modify-other-keys)
3227 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
3228 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
3229 * vc/ediff.el (ediff-documentation): Related users changed.
3230 * frame.el (selected-terminal): Remove the leftover.
3231
3232 2013-08-05 Glenn Morris <rgm@gnu.org>
3233
3234 * calendar/calendar.el (calendar-generate-month):
3235 Fix for calendar-column-width != 1 + calendar-day-digit-width.
3236 (calendar-generate-month, calendar-font-lock-keywords):
3237 Fix for calendar-day-header-width > length of any day name.
3238
3239 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3240
3241 * desktop.el (desktop-clear): Use new name of sort predicate.
3242
3243 * frameset.el (frameset): Add docstring. Move :version property to its
3244 own `version' slot.
3245 (frameset-copy): Rename from copy-frameset.
3246 (frameset-p): Check more thoroughly.
3247 (frameset-prop): Do not check for :version, which is no longer a prop.
3248 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3249 Use new :never value instead of t.
3250 (frameset-filter-alist): Expand and clarify docstring.
3251 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3252 (frameset-filter-minibuffer, frameset-filter-save-param)
3253 (frameset-filter-restore-param, frameset-filter-iconified):
3254 Add pointer to docstring of frameset-filter-alist.
3255 (frameset-filter-params): Rename filter values to be more meaningful:
3256 :never instead of t, and reverse the meanings of :save and :restore.
3257 (frameset--process-minibuffer-frames): Clarify error message.
3258 (frameset-save): Avoid unnecessary and confusing call to framep.
3259 Use new BOA constructor for framesets.
3260 (frameset--reuse-list): Doc fix.
3261 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3262 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3263 (frameset-minibufferless-first-p): Doc fix.
3264 Rename from frameset-sort-frames-for-deletion.
3265 (frameset-restore): Doc fixes. Use new function names.
3266 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3267
3268 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3269
3270 * desktop.el (desktop-restore-forces-onscreen)
3271 (desktop-restore-reuses-frames): Document :keyword constant values.
3272 (desktop-filter-parameters-alist): Remove, now identical to
3273 frameset-filter-alist.
3274 (desktop--filter-tty*): Remove, moved to frameset.el.
3275 (desktop-save-frameset, desktop-restore-frameset):
3276 Do not pass :filters argument.
3277
3278 * frameset.el (frameset-live-filter-alist)
3279 (frameset-persistent-filter-alist): New variables.
3280 (frameset-filter-alist): Use them. Add autoload cookie.
3281 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3282 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3283 `frameset--id' (it's supposed to be internal to frameset.el).
3284 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3285 (frameset--initial-params): New function.
3286 (frameset--get-frame): Use it. Doc fix.
3287 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3288 Accept :all, not 'all.
3289 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3290 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3291 with fbound symbols. Fix frame id matching, and remove matching ids if
3292 the frame being restored is deleted. Obey :delete.
3293
3294 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3295
3296 * subr.el (macrop): New function.
3297 (text-clone--maintaining): New var.
3298 (text-clone--maintain): Rename from text-clone-maintain. Use it
3299 instead of inhibit-modification-hooks.
3300
3301 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3302 a proxy, so as handle autoloads and redefinitions of the target.
3303 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3304
3305 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3306 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3307 (pcase--mutually-exclusive-p): New function.
3308 (pcase--split-consp): Use it.
3309 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3310 mutually exclusive with the current predicate.
3311
3312 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3313 (edebug-macrop): Remove. Use `macrop' instead.
3314 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3315 (ad-macro-p):
3316 * eshell/esh-cmd.el (eshell-macrop):
3317 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3318
3319 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3320
3321 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3322 (advice-mapc): New function, using it.
3323 (advice-function-member-p): New function.
3324 (advice--normalize): Store the cdr in advice--saved-rewrite since
3325 that's the part that will be changed.
3326 (advice--symbol-function): New function.
3327 (advice-remove): Handle removal before the function is defined.
3328 Adjust to new advice--saved-rewrite.
3329 (advice-member-p): Use advice-function-member-p and
3330 advice--symbol-function.
3331
3332 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3333
3334 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3335 (frameset-filter-minibuffer): Doc fix.
3336 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
3337 (frameset--set-id, frameset--process-minibuffer-frames)
3338 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3339 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
3340
3341 * desktop.el (desktop-clear): Only delete frames when called
3342 interactively and desktop-restore-frames is non-nil. Doc fix.
3343 (desktop-read): Set desktop-saved-frameset to nil.
3344
3345 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3346
3347 * vc/vc.el (vc-ignore): Rewrite.
3348 (vc-default-ignore-completion-table):
3349 (vc--read-lines):
3350 (vc--add-line, vc--remove-regexp): New functions.
3351
3352 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3353 (vc-svn-ignore-completion-table): New function.
3354
3355 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3356 (vc-hg-ignore-completion-table):
3357 (vc-hg-find-ignore-file): New functions.
3358
3359 * vc/vc-git.el (vc-git-ignore): Rewrite.
3360 (vc-git-ignore-completion-table):
3361 (vc-git-find-ignore-file): New functions.
3362
3363 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3364
3365 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3366 (vc-bzr-ignore-completion-table):
3367 (vc-bzr-find-ignore-file): New functions.
3368
3369 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
3370
3371 * frameset.el (frameset-prop): New function and setter.
3372 (frameset-save): Do not modify frame list passed by the caller.
3373
3374 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3375
3376 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3377
3378 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3379
3380 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3381 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3382
3383 * custom.el (custom-initialize-default, custom-initialize-set)
3384 (custom-initialize-reset, custom-initialize-changed): Affect the
3385 toplevel-default-value (bug#6275, bug#14586).
3386 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3387 for bug#6275.
3388
3389 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3390
3391 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3392 Add cl-def* expressions.
3393
3394 * frameset.el (frameset-filter-params): Fix order of arguments.
3395
3396 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3397
3398 Move code related to saving frames to frameset.el.
3399 * desktop.el: Require frameset.
3400 (desktop-restore-frames): Doc fix.
3401 (desktop-restore-reuses-frames): Rename from
3402 desktop-restoring-reuses-frames.
3403 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3404 (desktop-clear): Clear frames too.
3405 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3406 (desktop--filter-tty*, desktop-save, desktop-read):
3407 Use frameset functions.
3408 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3409 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3410 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3411 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3412 (desktop--process-minibuffer-frames, desktop-save-frames)
3413 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3414 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3415 (desktop--sort-states, desktop-restoring-frames-p)
3416 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3417 (desktop-restoring-frameset-p, desktop-restore-frameset)
3418 (desktop--check-dont-save, desktop-save-frameset): New functions.
3419 (desktop--app-id): New constant.
3420 (desktop-first-buffer, desktop-buffer-ok-count)
3421 (desktop-buffer-fail-count): Move before first use.
3422 * frameset.el: New file.
3423
3424 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3425
3426 * files.el: Use lexical-binding.
3427 (dir-locals-read-from-file): Remove unused `err' variable.
3428 (hack-dir-local-variables--warned-coding): New var.
3429 (hack-dir-local-variables): Use it to avoid repeated warnings.
3430 (make-backup-file-name--default-function): New function.
3431 (make-backup-file-name-function): Use it as default.
3432 (buffer-stale--default-function): New function.
3433 (buffer-stale-function): Use it as default.
3434 (revert-buffer-insert-file-contents--default-function): New function.
3435 (revert-buffer-insert-file-contents-function): Use it as default.
3436 (insert-directory): Avoid add-to-list.
3437
3438 * autorevert.el (auto-revert-handler): Simplify.
3439 Use buffer-stale--default-function.
3440
3441 2013-08-01 Tassilo Horn <tsdh@gnu.org>
3442
3443 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3444
3445 * whitespace.el (whitespace-ensure-local-variables): New function.
3446 (whitespace-cleanup-region): Call it.
3447 (whitespace-turn-on): Call it.
3448
3449 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
3450
3451 Complete file name handlers.
3452
3453 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3454 (tramp-handle-verify-visited-file-modtime)
3455 (tramp-handle-file-notify-rm-watch): New functions.
3456 (tramp-call-process): Do not bind `default-directory'.
3457
3458 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3459 Order alphabetically.
3460 [access-file, add-name-to-file, dired-call-process]:
3461 [dired-compress-file, file-acl, file-notify-rm-watch]:
3462 [file-ownership-preserved-p, file-selinux-context]:
3463 [make-directory-internal, make-symbolic-link, set-file-acl]:
3464 [set-file-selinux-context, set-visited-file-modtime]:
3465 [verify-visited-file-modtime]: Add handler.
3466 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3467
3468 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3469 [file-notify-add-watch, file-notify-rm-watch]:
3470 [set-file-times, set-visited-file-modtime]:
3471 [verify-visited-file-modtime]: Add handler.
3472 (with-tramp-gvfs-error-message)
3473 (tramp-gvfs-handle-set-visited-file-modtime)
3474 (tramp-gvfs-fuse-file-name): Remove.
3475 (tramp-gvfs-handle-file-notify-add-watch)
3476 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3477 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3478
3479 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3480 Order alphabetically.
3481 [file-notify-rm-watch ]: Use default Tramp handler.
3482 [executable-find]: Remove private handler.
3483 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3484 `default-directory'.
3485 (tramp-sh-handle-executable-find)
3486 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3487 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3488 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3489 Do not use `format' in `tramp-message'.
3490
3491 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3492 [file-notify-rm-watch, set-visited-file-modtime]:
3493 [verify-visited-file-modtime]: Add handler.
3494 (tramp-smb-call-winexe): Do not bind `default-directory'.
3495
3496 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3497
3498 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
3499
3500 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
3501
3502 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
3503 use it.
3504 (log-view-diff-changeset): Same.
3505 (log-view-diff-common): Call backend command `previous-revision'
3506 to find out the previous revision, in both cases. Swap the
3507 variables `to' and `fr', so that `fr' usually refers to the
3508 earlier revision (Bug#14989).
3509
3510 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
3511
3512 * ibuf-ext.el (ibuffer-filter-by-filename):
3513 Make it work with dired buffers too.
3514
3515 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3516
3517 * emacs-lisp/re-builder.el (reb-color-display-p):
3518 * files.el (save-buffers-kill-terminal):
3519 * net/browse-url.el (browse-url):
3520 * server.el (server-save-buffers-kill-terminal):
3521 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3522 Prefer nil to selected-frame for the first arg of frame-parameter.
3523
3524 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
3525
3526 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
3527
3528 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
3529
3530 * minibuffer.el (completion--twq-all): Try and preserve each
3531 completion's case choice (bug#14907).
3532
3533 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3534
3535 * net/network-stream.el (open-network-stream): Mention the new
3536 :nogreeting parameter.
3537 (network-stream-open-starttls): Use the :nogreeting parameter
3538 (bug#14938).
3539
3540 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
3541
3542 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
3543 more natural than popping.
3544
3545 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
3546 (shr-urlify): Highlight under mouse.
3547
3548 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3549
3550 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
3551
3552 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
3553
3554 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
3555 buffer for output.
3556
3557 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
3558 point-min==1. Fix search string. Fix parentheses missing.
3559
3560 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3561 assume point-min==1. Fix search string. Fix parentheses missing.
3562
3563 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
3564
3565 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
3566 buffer for output.
3567
3568 2013-07-29 Eli Zaretskii <eliz@gnu.org>
3569
3570 * frame.el (frame-notice-user-settings): Avoid inflooping when the
3571 initial frame is minibuffer-less. (Bug#14841)
3572
3573 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
3574
3575 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
3576 option.
3577
3578 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3579 (tramp-maybe-open-connection): Use it.
3580
3581 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3582
3583 * desktop.el (desktop--make-frame): Include `minibuffer' in the
3584 minimal set of parameters passed when creating a frame, because
3585 the minibuffer status of a frame cannot be changed later.
3586
3587 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
3588
3589 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
3590 replace-regexp-in-string and inadvertent omissions in previous change.
3591 (todo-filter-items): Ensure only file names are comma-separated in
3592 name of filtered items buffer.
3593
3594 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3595
3596 * desktop.el: Optionally force offscreen frames back onscreen.
3597 (desktop-restoring-reuses-frames): New option.
3598 (desktop--compute-pos, desktop--move-onscreen): New functions.
3599 (desktop--make-frame): Use desktop--move-onscreen.
3600
3601 2013-07-27 Alan Mackenzie <acm@muc.de>
3602
3603 Fontify a Java generic method as a function.
3604 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
3605 value to t.
3606
3607 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
3608
3609 * calendar/todo-mode.el: Add command to rename todo files.
3610 (todo-rename-file): New command.
3611 (todo-key-bindings-t): Add key binding for it. Change the
3612 bindings of todo-filter-regexp-items(-multifile) to use `x'
3613 instead of `r', since the latter is better suited to the new
3614 renaming command.
3615
3616 2013-07-27 Alan Mackenzie <acm@muc.de>
3617
3618 Make Java try-with-resources statement parse properly.
3619 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
3620 (c-block-stmt-1-2-key): New language constants/variables.
3621 * progmodes/cc-engine.el (c-beginning-of-statement-1)
3622 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
3623 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
3624 with c-block-stmt-1-2-key.
3625
3626 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
3627
3628 * desktop.el (desktop--make-frame): Apply most frame parameters after
3629 creating the frame to force (partially or totally) offscreen frames to
3630 be restored as such.
3631
3632 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
3633
3634 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
3635 (Bug#14948)
3636
3637 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3638
3639 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
3640 `base' arg of backtrace-frame.
3641
3642 2013-07-26 Eli Zaretskii <eliz@gnu.org>
3643
3644 * simple.el (list-processes): Doc fix.
3645
3646 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3647
3648 * desktop.el (desktop--select-frame):
3649 Try harder to reuse existing frames.
3650
3651 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3652
3653 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
3654 (edebug-eval): Use backtrace-eval.
3655 (edebug--display, edebug--recursive-edit): Don't let-bind the
3656 edebug-outer-* vars that keep track of variables we locally let-bind.
3657 (edebug-outside-excursion): Don't restore outside values of locally
3658 let-bound vars.
3659 (edebug--display): Use user-error.
3660 (cl-lexical-debug, cl-debug-env): Remove.
3661
3662 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
3663
3664 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
3665 are restored to be sure that they are visible before deleting any
3666 remaining ones.
3667
3668 2013-07-26 Matthias Meulien <orontee@gmail.com>
3669
3670 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
3671 vc-print-root-log. (Bug#14948)
3672
3673 2013-07-26 Richard Stallman <rms@gnu.org>
3674
3675 Add aliases for encrypting mail.
3676 * epa.el (epa-mail-aliases): New option.
3677 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
3678 Bind inhibit-read-only so read-only text doesn't ruin everything.
3679 (epa-mail-default-recipients): New subroutine broken out.
3680 Handle epa-mail-aliases.
3681
3682 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3683
3684 Add support for lexical variables to the debugger's `e' command.
3685 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
3686 vars, except for debugger-outer-match-data.
3687 (debugger-frame-number): Move check for "on a function call" from
3688 callers into it. Add `skip-base' argument.
3689 (debugger-frame, debugger-frame-clear): Simplify accordingly.
3690 (debugger-env-macro): Only reset the state stored in non-variables,
3691 i.e. current-buffer and match-data.
3692 (debugger-eval-expression): Rewrite using backtrace-eval.
3693 * subr.el (internal--called-interactively-p--get-frame): Remove.
3694 (called-interactively-p):
3695 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
3696 `base' arg of backtrace-frame instead.
3697
3698 2013-07-26 Glenn Morris <rgm@gnu.org>
3699
3700 * align.el (align-regexp): Doc fix. (Bug#14857)
3701 (align-region): Explicit error if subexpression missing/does not match.
3702
3703 * simple.el (global-visual-line-mode):
3704 Do not duplicate the mode lighter. (Bug#14858)
3705
3706 2013-07-25 Martin Rudalics <rudalics@gmx.at>
3707
3708 * window.el (display-buffer): In display-buffer bind
3709 split-window-keep-point to t, bug#14829.
3710
3711 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3712
3713 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
3714 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
3715 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
3716 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3717 Change accordingly.
3718 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
3719 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
3720
3721 2013-07-25 Glenn Morris <rgm@gnu.org>
3722
3723 * dired-x.el (dired-mark-extension): Convert comment to doc string.
3724
3725 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
3726
3727 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
3728 parameter to modify-frame-parameters if the value has not changed;
3729 this is a workaround for bug#14949.
3730 (desktop--make-frame): On cl-delete-if call, check parameter name,
3731 not full parameter.
3732
3733 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3734
3735 * vc/vc.el (vc-ignore): New function.
3736
3737 * vc/vc-svn.el (vc-svn-ignore): New function.
3738
3739 * vc/vc-hg.el (vc-hg-ignore): New function.
3740
3741 * vc/vc-git.el (vc-git-ignore): New function.
3742
3743 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
3744 (vc-dir-ignore): New function.
3745
3746 * vc/vc-cvs.el (vc-cvs-ignore): New function.
3747 (cvs-append-to-ignore): Move here from pcvs.el.
3748
3749 * vc/vc-bzr.el (vc-bzr-ignore): New function.
3750
3751 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
3752
3753 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
3754
3755 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
3756 (desktop-restore-frames): Warn when deleting an existing frame failed.
3757
3758 2013-07-24 Glenn Morris <rgm@gnu.org>
3759
3760 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
3761
3762 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
3763
3764 * filenotify.el (file-notify-supported-p):
3765 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3766 Remove functions.
3767
3768 * autorevert.el (auto-revert-use-notify):
3769 (auto-revert-notify-add-watch):
3770 * net/tramp.el (tramp-file-name-for-operation):
3771 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3772 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3773 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3774 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3775 Remove `file-notify-supported-p' entry.
3776
3777 2013-07-24 Glenn Morris <rgm@gnu.org>
3778
3779 * printing.el: Replace all uses of deleted ps-windows-system,
3780 ps-lp-system, ps-flatten-list with lpr- versions.
3781
3782 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3783
3784 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
3785 checked with memq (bug#14935).
3786
3787 * files.el (revert-buffer-function): Use a non-nil default.
3788 (revert-buffer-preserve-modes): Declare var to
3789 provide access to the `preserve-modes' argument.
3790 (revert-buffer): Let-bind it.
3791 (revert-buffer--default): New function, extracted from revert-buffer.
3792
3793 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
3794
3795 * lpr.el: Signal print errors more prominently.
3796 (print-region-function): Don't default to nil.
3797 (lpr-print-region): New function, extracted from print-region-1.
3798 Check lpr's return value and signal an error in case of problem.
3799 (print-region-1): Use it.
3800 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
3801 versions instead.
3802 (ps-printer-name): Default to nil.
3803 (ps-printer-name-option): Default to lpr-printer-switch.
3804 (ps-print-region-function): Don't default to nil.
3805 (ps-postscript-code-directory): Simplify default.
3806 (ps-do-despool): Use lpr-print-region to properly check the outcome.
3807 (ps-string-list, ps-eval-switch, ps-flatten-list)
3808 (ps-flatten-list-1): Remove.
3809 (ps-multibyte-buffer): Avoid setq.
3810 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
3811 (print-region-function, ps-print-region-function): Don't set them here.
3812
3813 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
3814
3815 * ido.el (ido-fractionp):
3816 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
3817 (ido-max-file-prompt-width, ido-unc-hosts-cache)
3818 (ido-max-directory-size, ido-max-dir-file-cache)
3819 (ido-decorations): Doc fix.
3820
3821 * ansi-color.el: Fix old URL.
3822
3823 2013-07-23 Michael R. Mauger <michael@mauger.com>
3824
3825 * progmodes/sql.el: Version 3.3
3826 (sql-product-alist): Improve oracle :prompt-cont-regexp.
3827 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
3828 (sql-interactive-remove-continuation-prompt): Rewrite, use
3829 functions above. Fix continuation prompt and complete output line
3830 handling.
3831 (sql-redirect-one, sql-execute): Use `read-only-mode' on
3832 redirected output buffer.
3833 (sql-mode): Restore deleted code (Bug#13591).
3834
3835 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
3836
3837 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
3838
3839 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
3840
3841 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
3842
3843 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3844 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3845 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
3846
3847 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
3848
3849 * desktop.el (desktop-clear): Simplify; remove useless checks
3850 against invalid buffer names.
3851 (desktop-list*): Use cl-list*.
3852 (desktop-buffer-info, desktop-create-buffer): Simplify.
3853
3854 2013-07-23 Leo Liu <sdl.web@gmail.com>
3855
3856 * bookmark.el (bookmark-make-record): Restore NAME as a default
3857 value. (Bug#14933)
3858
3859 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
3860
3861 * emacs-lisp/autoload.el (autoload--setup-output): New function,
3862 extracted from autoload--insert-text.
3863 (autoload--insert-text): Remove.
3864 (autoload--print-cookie-text): New function, extracted from
3865 autoload--insert-cookie-text.
3866 (autoload--insert-cookie-text): Remove.
3867 (autoload-generate-file-autoloads): Adjust calls accordingly.
3868
3869 * winner.el (winner-hook-installed-p): Remove.
3870 (winner-mode): Simplify accordingly.
3871
3872 * subr.el (add-to-list): Fix compiler-macro when `append' is
3873 not constant. Don't use `cl-member' for the base case.
3874
3875 * progmodes/subword.el: Fix boundary case (bug#13758).
3876 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
3877 own group.
3878 (subword-backward-regexp): Make it a constant.
3879 (subword-forward-internal): Don't treat a trailing capital as the
3880 beginning of a word.
3881
3882 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
3883
3884 * emacs-lisp/package.el (package-menu-mode): Don't modify the
3885 global value of tabulated-list-revert-hook (bug#14930).
3886
3887 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
3888
3889 * desktop.el: Require 'cl-lib.
3890 (desktop-before-saving-frames-functions): New hook.
3891 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
3892 for frames being saved. Rename from desktop--save-minibuffer-frames.
3893 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
3894 Do not save frames with non-nil `desktop-dont-save' parameter.
3895 Filter out deleted frames.
3896 (desktop--find-frame): Use cl-find-if.
3897 (desktop--select-frame): Use cl-(first|second|third) to access values
3898 of desktop-mini.
3899 (desktop--make-frame): Use cl-delete-if.
3900 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
3901 (desktop-restore-frames): Use cl-(first|second|third) to access values
3902 of desktop-mini. Look for visible frame at the end, not while
3903 restoring frames.
3904
3905 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
3906 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
3907 Use string-match-p, looking-at-p (bug#14927).
3908
3909 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
3910
3911 * desktop.el (desktop-saved-frame-states):
3912 Rename from desktop--saved-states; all users changed.
3913 (desktop-save-frames): Rename from desktop--save-frames.
3914 Do not save state to desktop file.
3915 (desktop-save): Save desktop-saved-frame-states to desktop file
3916 and reset to nil.
3917 (desktop-restoring-frames-p): New function.
3918 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
3919 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
3920 buffer-lists when restoring frames. Suggested by Martin Rudalics.
3921
3922 * desktop.el: Correctly restore iconified frames.
3923 (desktop--filter-iconified-position): New function.
3924 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
3925
3926 2013-07-20 Glenn Morris <rgm@gnu.org>
3927
3928 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
3929 Let `message' do the formatting.
3930 (def-gdb-preempt-display-buffer): Add explicit format.
3931
3932 * image-dired.el (image-dired-track-original-file):
3933 Use with-current-buffer.
3934 (image-dired-track-thumbnail): Use with-current-buffer.
3935 Avoid changing point of wrong window.
3936
3937 * image-dired.el (image-dired-track-original-file):
3938 Avoid changing point of wrong window. (Bug#14909)
3939
3940 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
3941
3942 * progmodes/gdb-mi.el (gdb-done-or-error):
3943 Guard against "%" in gdb output. (Bug#14127)
3944
3945 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
3946
3947 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
3948 (Bug#14826)
3949
3950 * international/mule.el (coding-system-iso-2022-flags): Fix last
3951 change.
3952
3953 2013-07-20 Kenichi Handa <handa@gnu.org>
3954
3955 * international/mule.el (coding-system-iso-2022-flags):
3956 Add `8-bit-level-4'. (Bug#8522)
3957
3958 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3959
3960 * net/shr.el (shr-mouse-browse-url): New command and keystroke
3961 (bug#14815).
3962
3963 * net/eww.el (eww-process-text-input): Allow inputting when the
3964 point is at the start of the line, as the properties aren't
3965 front-sticky.
3966
3967 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
3968 degenerate widths.
3969
3970 2013-07-19 Richard Stallman <rms@gnu.org>
3971
3972 * epa.el (epa-popup-info-window): Doc fix.
3973
3974 * subr.el (split-string): New arg TRIM.
3975
3976 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
3977
3978 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
3979 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
3980
3981 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
3982
3983 * filenotify.el (file-notify--library): Rename from
3984 `file-notify-support'. Do not autoload. Adapt all uses.
3985 (file-notify-supported-p): New defun.
3986
3987 * autorevert.el (auto-revert-use-notify):
3988 Use `file-notify-supported-p' instead of `file-notify-support'.
3989 Adapt docstring.
3990 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
3991
3992 * net/tramp.el (tramp-file-name-for-operation):
3993 Add `file-notify-supported-p'.
3994
3995 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3996 New defun.
3997 (tramp-sh-file-name-handler-alist): Add it as handler for
3998 `file-notify-supported-p '.
3999
4000 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4001 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4002 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4003 Add `ignore' as handler for `file-notify-*' functions.
4004
4005 2013-07-17 Eli Zaretskii <eliz@gnu.org>
4006
4007 * simple.el (line-move-partial, line-move): Don't start vscroll or
4008 scroll-up if the current line is not taller than the window.
4009 (Bug#14881)
4010
4011 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
4012
4013 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
4014 highlight question marks in the method names as strings.
4015 (ruby-block-beg-keywords): Inline.
4016 (ruby-font-lock-keyword-beg-re): Extract from
4017 `ruby-font-lock-keywords'.
4018
4019 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
4020
4021 * frame.el (blink-cursor-blinks): New defcustom.
4022 (blink-cursor-blinks-done): New defvar.
4023 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
4024 (blink-cursor-timer-function): Check if number of blinks has been
4025 done on X and NS.
4026 (blink-cursor-suspend, blink-cursor-check): New defuns.
4027
4028 2013-07-15 Glenn Morris <rgm@gnu.org>
4029
4030 * edmacro.el (edmacro-format-keys): Fix previous change.
4031
4032 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
4033
4034 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
4035 The hack didn't work outside English locales anyway.
4036
4037 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
4038
4039 * simple.el (define-alternatives): Rename from alternatives-define,
4040 per RMS' suggestion.
4041
4042 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
4043
4044 * desktop.el (desktop-restore-frames): Change default to t.
4045 (desktop-restore-in-current-display): Now offer more options.
4046 (desktop-restoring-reuses-frames): New customization option.
4047 (desktop--saved-states): Doc fix.
4048 (desktop-filter-parameters-alist): New variable, renamed and expanded
4049 from desktop--excluded-frame-parameters.
4050 (desktop--target-display): New variable.
4051 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
4052 (desktop--filter-tty*, desktop--filter-*-color)
4053 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
4054 (desktop--filter-save-desktop-parm)
4055 (desktop-restore-in-original-display-p): New functions.
4056 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
4057 (desktop--save-minibuffer-frames): New function, inspired by a similar
4058 function from Martin Rudalics.
4059 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
4060 (desktop--restore-in-this-display-p): Remove.
4061 (desktop--find-frame): Rename from desktop--find-frame-in-display
4062 and add predicate argument.
4063 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
4064 (desktop--reuse-list): New variable.
4065 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
4066 New functions.
4067 (desktop--restore-frames): Add support for "minibuffer-special" frames.
4068
4069 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
4070
4071 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
4072
4073 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
4074
4075 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4076 Highlight conversion methods on Kernel.
4077
4078 2013-07-13 Alan Mackenzie <acm@muc.de>
4079
4080 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
4081 and comment it out. This out-commenting enables certain C++
4082 declarations to be parsed correctly.
4083
4084 2013-07-13 Eli Zaretskii <eliz@gnu.org>
4085
4086 * international/mule.el (define-coding-system): Doc fix.
4087
4088 * simple.el (default-font-height): Don't call font-info if the
4089 frame's default font didn't change since the frame was created.
4090 (Bug#14838)
4091
4092 2013-07-13 Leo Liu <sdl.web@gmail.com>
4093
4094 * ido.el (ido-read-file-name): Guard against non-symbol value.
4095
4096 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4097
4098 * progmodes/python.el (python-imenu--build-tree): Fix corner case
4099 in nested defuns.
4100
4101 2013-07-13 Leo Liu <sdl.web@gmail.com>
4102
4103 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
4104 ido-set-matches call. (Bug#6852)
4105
4106 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
4107
4108 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
4109 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
4110 Ruby 2.0.
4111 (ruby-font-lock-keywords): Distinguish calls to functions with
4112 module-like names from module references. Highlight character
4113 literals.
4114
4115 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4116
4117 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
4118 (gdb-send): Handle continued commands. (Bug#14847)
4119
4120 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4121
4122 * desktop.el (desktop--v2s): Remove unused local variable.
4123 (desktop-save-buffer): Make defvar-local; adjust docstring.
4124 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
4125 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
4126
4127 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
4128
4129 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
4130
4131 2013-07-12 Eli Zaretskii <eliz@gnu.org>
4132
4133 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
4134 (Bug#14842)
4135
4136 2013-07-12 Glenn Morris <rgm@gnu.org>
4137
4138 * doc-view.el: Require cl-lib at runtime too.
4139 (doc-view-remove-if): Remove.
4140 (doc-view-search-next-match, doc-view-search-previous-match):
4141 Use cl-remove-if.
4142
4143 * edmacro.el: Require cl-lib at runtime too.
4144 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
4145 (edmacro-mismatch, edmacro-subseq): Remove.
4146
4147 * shadowfile.el: Require cl-lib.
4148 (shadow-remove-if): Remove.
4149 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
4150 Use cl-remove-if.
4151
4152 * wid-edit.el: Require cl-lib.
4153 (widget-choose): Use cl-remove-if.
4154 (widget-remove-if): Remove.
4155
4156 * progmodes/ebrowse.el: Require cl-lib at runtime too.
4157 (ebrowse-delete-if-not): Remove.
4158 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
4159 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
4160 Use cl-delete-if-not.
4161
4162 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4163
4164 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
4165 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
4166
4167 2013-07-12 Leo Liu <sdl.web@gmail.com>
4168
4169 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
4170
4171 2013-07-11 Glenn Morris <rgm@gnu.org>
4172
4173 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
4174 (edebug-gensym-index, edebug-gensym):
4175 Remove reimplementation of cl-gensym.
4176 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
4177
4178 * thumbs.el: Require cl-lib at run-time too.
4179 (thumbs-gensym-counter, thumbs-gensym):
4180 Remove reimplementation of cl-gensym.
4181 (thumbs-temp-file): Use cl-gensym.
4182
4183 * emacs-lisp/ert.el: Require cl-lib at runtime too.
4184 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
4185 (ert--intersection, ert--set-difference, ert--set-difference-eq)
4186 (ert--union, ert--gensym-counter, ert--gensym-counter)
4187 (ert--coerce-to-vector, ert--remove*, ert--string-position)
4188 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
4189 (ert-make-test-unbound, ert--expand-should-1)
4190 (ert--expand-should, ert--should-error-handle-error)
4191 (should-error, ert--explain-equal-rec)
4192 (ert--plist-difference-explanation, ert-select-tests)
4193 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
4194 Use cl-lib functions rather than reimplementations.
4195
4196 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
4197
4198 * net/tramp.el (tramp-methods): Extend docstring.
4199 (tramp-connection-timeout): New defcustom.
4200 (tramp-error-with-buffer): Reset timestamp only when appropriate.
4201 (with-tramp-progress-reporter): Simplify.
4202 (tramp-process-actions): Improve messages.
4203
4204 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4205 * net/tramp-sh.el (tramp-maybe-open-connection):
4206 Use `tramp-connection-timeout'.
4207 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
4208 (Bug#14808)
4209
4210 2013-07-11 Leo Liu <sdl.web@gmail.com>
4211
4212 * ido.el (ido-read-file-name): Conform to the requirements of
4213 read-file-name. (Bug#11861)
4214 (ido-read-directory-name): Conform to the requirements of
4215 read-directory-name.
4216
4217 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
4218
4219 * subr.el (delay-warning): New function.
4220
4221 2013-07-10 Eli Zaretskii <eliz@gnu.org>
4222
4223 * simple.el (default-line-height): New function.
4224 (line-move-partial, line-move): Use it instead of computing the
4225 line height inline.
4226 (line-move-partial): Always compute ROWH. If the last line is
4227 partially-visible, but its text is completely visible, allow
4228 cursor to enter such a partially-visible line.
4229
4230 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
4231
4232 Improve error messages. (Bug#14808)
4233
4234 * net/tramp.el (tramp-current-connection): New defvar, moved from
4235 tramp-sh.el.
4236 (tramp-message-show-progress-reporter-message): Remove, not
4237 needed anymore.
4238 (tramp-error-with-buffer): Show message in minibuffer.
4239 Discard input before waiting. Reset connection timestamp.
4240 (with-tramp-progress-reporter): Improve messages.
4241 (tramp-process-actions): Use progress reporter. Delete process in
4242 case of error. Improve messages.
4243
4244 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4245 Call `tramp-error-with-buffer' with vector and buffer.
4246 (tramp-current-connection): Remove.
4247 (tramp-maybe-open-connection): The car of
4248 `tramp-current-connection' are the first 3 slots of the vector.
4249
4250 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4251
4252 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4253 inside continued strings.
4254
4255 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4256
4257 Timestamp fixes for undo (Bug#14824).
4258 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4259
4260 2013-07-10 Leo Liu <sdl.web@gmail.com>
4261
4262 * files.el (require-final-newline): Allow safe local value.
4263 (Bug#14834)
4264
4265 2013-07-09 Leo Liu <sdl.web@gmail.com>
4266
4267 * ido.el (ido-read-directory-name): Handle fallback.
4268 (ido-read-file-name): Update DIR to ido-current-directory.
4269 (Bug#1516)
4270 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
4271
4272 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4273
4274 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4275 "autoload". Remove "warn lower camel case" section, previously
4276 commented out. Highlight negation char. Do not highlight the
4277 target in singleton method definitions.
4278
4279 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4280
4281 * faces.el (tty-setup-hook): Declare the hook.
4282
4283 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4284 and detect when a guard/pred depends on local vars (bug#14773).
4285 (pcase--u1): Adjust caller.
4286
4287 2013-07-08 Eli Zaretskii <eliz@gnu.org>
4288
4289 * simple.el (line-move-partial, line-move): Account for
4290 line-spacing.
4291 (line-move-partial): Avoid setting vscroll when the last
4292 partially-visible line in window is of default height.
4293
4294 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4295
4296 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4297 been used a while.
4298
4299 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
4300
4301 * subr.el (read-quoted-char): Remove unused local variable `char'.
4302
4303 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4304
4305 * ediff.el (ediff-version): Version update.
4306 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4307 (ediff-merge-with-ancestor-command, ediff-directories-command)
4308 (ediff-directories3-command, ediff-merge-directories-command)
4309 (ediff-merge-directories-with-ancestor-command): New functions.
4310 All are command-line interfaces to ediff: to facilitate calling
4311 Emacs with the appropriate ediff functions invoked.
4312
4313 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4314 (viper-save-kill-buffer): Check if buffer is modified.
4315
4316 * viper.el (viper-version): Version update.
4317 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
4318
4319 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4320
4321 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4322 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4323 (viper-intercept-ESC-key): Simplify.
4324 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4325 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4326 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4327 (viper-setup-ESC-to-escape): New functions.
4328 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4329 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
4330
4331 2013-07-07 Eli Zaretskii <eliz@gnu.org>
4332
4333 * simple.el (default-font-height, window-screen-lines):
4334 New functions.
4335 (line-move, line-move-partial): Use them instead of
4336 frame-char-height and window-text-height. This makes scrolling
4337 text smoother when the buffer's default face uses a font that is
4338 different from the frame's default font.
4339
4340 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4341
4342 * files.el (write-file): Do not display confirm dialog for NS,
4343 it does its own dialog, which can't be cancelled (Bug#14578).
4344
4345 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4346
4347 * simple.el (line-move-partial): Adjust the row returned by
4348 posn-at-point for the current window-vscroll. (Bug#14567)
4349
4350 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
4351
4352 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4353 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4354 spaces.
4355
4356 2013-07-06 Martin Rudalics <rudalics@gmx.at>
4357
4358 * window.el (window-state-put-stale-windows): New variable.
4359 (window--state-put-2): Save list of windows without matching buffer.
4360 (window-state-put): Remove "bufferless" windows if possible.
4361
4362 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4363
4364 * simple.el (alternatives-define): Remove leftover :group keyword.
4365 Tweak docstring.
4366
4367 2013-07-06 Leo Liu <sdl.web@gmail.com>
4368
4369 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4370 (ido-enable-virtual-buffers): New variable.
4371 (ido-buffer-internal, ido-toggle-virtual-buffers)
4372 (ido-make-buffer-list): Use it.
4373 (ido-exhibit): Support turning on and off virtual buffers
4374 automatically.
4375
4376 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4377
4378 * simple.el (alternatives-define): New macro.
4379
4380 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4381
4382 * subr.el (read-quoted-char): Use read-key.
4383 (sit-for): Let read-event decode tty input (bug#14782).
4384
4385 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
4386
4387 * calendar/todo-mode.el: Add handling of file deletion, both by
4388 mode command and externally. Fix various related bugs.
4389 Clarify Commentary and improve some documentation strings and code.
4390 (todo-delete-file): New command.
4391 (todo-check-file): New function.
4392 (todo-show): Handle external deletion of the file we're trying to
4393 show (bug#14688). Replace called-interactively-p by an optional
4394 prefix argument to avoid problematic interaction with catch form
4395 when byte compiled (bug#14702).
4396 (todo-quit): Handle external deletion of the archive's todo file.
4397 Make sure the buffer that was visiting the archive file is still
4398 live before trying to bury it.
4399 (todo-category-completions): Handle external deletion of any
4400 category completion files.
4401 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4402 of todo files, in case of external deletion.
4403 (todo-add-file): Replace unnecessary setq by let-binding.
4404 (todo-find-archive): Check whether there are any archives.
4405 Replace unnecessary setq by let-binding.
4406 (todo-archive-done-item): Use find-file-noselect to get the
4407 archive buffer whether or not the archive already exists.
4408 Remove superfluous code. Use file size instead of buffer-file-name to
4409 check if the archive is new; if it is, update list of archives.
4410 (todo-default-todo-file): Allow nil to be a valid value for when
4411 there are no todo files.
4412 (todo-reevaluate-default-file-defcustom): Use corrected definition
4413 of todo-default-todo-file.
4414 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4415 (todo-delete-category, todo-show-categories-table)
4416 (todo-category-number): Clarify comment.
4417 (todo-filter-items): Clarify documentation string.
4418 (todo-show-current-file, todo-display-as-todo-file)
4419 (todo-reset-and-enable-done-separator): Tweak documentation string.
4420 (todo-done-separator): Make separator length window-width, since
4421 bug#2749 is now fixed.
4422
4423 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
4424
4425 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4426 Support both "gvfs-monitor-dir" and "inotifywait".
4427 (tramp-sh-file-inotifywait-process-filter): Rename from
4428 `tramp-sh-file-notify-process-filter'.
4429 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4430 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4431
4432 2013-07-05 Leo Liu <sdl.web@gmail.com>
4433
4434 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4435
4436 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4437
4438 * frame.el (display-pixel-height, display-pixel-width)
4439 (display-mm-height, display-mm-width): Mention behavior on
4440 multi-monitor setups in docstrings.
4441 (w32-display-monitor-attributes-list): Declare function.
4442 (display-monitor-attributes-list): Use it.
4443
4444 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
4445
4446 * filenotify.el: New package.
4447
4448 * autorevert.el (top): Require filenotify.el.
4449 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4450 instead.
4451 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4452 (auto-revert-notify-handler): Use `file-notify-*' functions.
4453
4454 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4455
4456 * net/tramp.el (tramp-file-name-for-operation):
4457 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
4458
4459 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4460 for `file-notify-add-watch' and `file-notify-rm-watch'.
4461 (tramp-process-sentinel): Improve trace.
4462 (tramp-sh-handle-file-notify-add-watch)
4463 (tramp-sh-file-notify-process-filter)
4464 (tramp-sh-handle-file-notify-rm-watch)
4465 (tramp-get-remote-inotifywait): New defuns.
4466
4467 2013-07-03 Juri Linkov <juri@jurta.org>
4468
4469 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4470 call of `occur-read-primary-args' to interactive spec.
4471
4472 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4473 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4474
4475 2013-07-03 Matthias Meulien <orontee@gmail.com>
4476
4477 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4478 `Buffer-menu-multi-occur'. Add it to the menu.
4479 (Buffer-menu-mode): Document it in docstring.
4480 (Buffer-menu-multi-occur): New command. (Bug#14673)
4481
4482 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4483
4484 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4485 keywords and built-ins.
4486
4487 2013-07-03 Glenn Morris <rgm@gnu.org>
4488
4489 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4490
4491 Make info-xref checks case-sensitive by default
4492 * info.el (Info-find-node, Info-find-in-tag-table)
4493 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4494 Add option for exact case matching of nodes.
4495 * info-xref.el (info-xref): New custom group.
4496 (info-xref-case-fold): New option.
4497 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
4498
4499 2013-07-03 Leo Liu <sdl.web@gmail.com>
4500
4501 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
4502
4503 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4504
4505 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4506 middle of block statement initially, lower the depth. Remove
4507 FIXME comment, not longer valid. Remove middle of block statement
4508 detection, no need to do that anymore since we've been using
4509 `ruby-parse-region' here.
4510
4511 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4512
4513 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4514
4515 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
4516
4517 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4518
4519 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
4520
4521 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4522 (desktop-restore-in-current-display): New customization option.
4523 (desktop--excluded-frame-parameters): Add `font'.
4524 (desktop--save-frames): Rename from desktop--save-windows.
4525 (desktop--restore-in-this-display-p): New function.
4526 (desktop--make-full-frame): Remove unwanted width/height from
4527 full(width|height) frames.
4528 (desktop--restore-frames): Rename from desktop--restore-windows.
4529 Obey desktop-restore-current-display. Do not delete old frames or
4530 select a new frame unless we were able to restore at least one frame.
4531
4532 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
4533
4534 * files.el (find-file-noselect): Simplify conditional expression.
4535
4536 * remember.el (remember-append-to-file):
4537 Don't mix `find-buffer-visiting' and `get-file-buffer'.
4538
4539 Add `remember-notes' function to store random notes across Emacs
4540 restarts.
4541 * remember.el (remember-data-file): Add :set callback to affect
4542 notes buffer (if any).
4543 (remember-notes): New command.
4544 (remember-notes-buffer-name, bury-remember-notes-on-kill):
4545 New defcustoms for the `remember-notes' function.
4546 (remember-notes-save-and-bury-buffer): New command.
4547 (remember-notes-mode-map): New variable.
4548 (remember-mode): New minor mode.
4549 (remember-notes--kill-buffer-query): New function.
4550 * startup.el (initial-buffer-choice): Add notes to custom type.
4551
4552 2013-06-30 Eli Zaretskii <eliz@gnu.org>
4553
4554 * bindings.el (right-char, left-char): Don't call sit-for, this is
4555 no longer needed. Use arithmetic comparison only for numerical
4556 arguments.
4557
4558 * international/mule-cmds.el (select-safe-coding-system):
4559 Handle the case of FROM being a string correctly. (Bug#14755)
4560
4561 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4562
4563 * net/shr.el (shr-make-table-1): Add a sanity check that allows
4564 progression on degenerate tables.
4565 (shr-rescale-image): ImageMagick animated images currently don't work.
4566
4567 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
4568
4569 Some fixes and improvements for desktop frame restoration.
4570 It is still experimental and disabled by default.
4571 * desktop.el (desktop--save-windows): Put the selected frame at
4572 the head of the list.
4573 (desktop--make-full-frame): New function.
4574 (desktop--restore-windows): Try to re-select the frame that was
4575 selected upon saving. Do not abort if some frames fail to restore,
4576 just show an error message and continue. Set up maximized frames
4577 so they have default non-maximized dimensions.
4578
4579 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
4580
4581 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4582 Don't start heredoc inside a string or comment.
4583
4584 2013-06-29 Eli Zaretskii <eliz@gnu.org>
4585
4586 * bindings.el (visual-order-cursor-movement): New defcustom.
4587 (right-char, left-char): Provide visual-order cursor motion by
4588 calling move-point-visually. Update the doc strings.
4589
4590 2013-06-28 Kenichi Handa <handa@gnu.org>
4591
4592 * international/mule.el (define-coding-system): New coding system
4593 properties :inhibit-null-byte-detection,
4594 :inhibit-iso-escape-detection, and :prefer-utf-8.
4595 (set-buffer-file-coding-system): If :charset-list property of
4596 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
4597 appropriate for setting.
4598
4599 * international/mule-cmds.el (select-safe-coding-system):
4600 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
4601 multibyte characters, return utf-8 (or one of its siblings).
4602
4603 * international/mule-conf.el (prefer-utf-8): New coding system.
4604 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
4605 files.
4606
4607 2013-06-28 Ivan Kanis <ivan@kanis.fr>
4608
4609 * net/shr.el (shr-render-region): New function.
4610
4611 * net/eww.el: Autoload `eww-browse-url'.
4612
4613 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
4614
4615 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4616 Adapt to `package-desc-version' being a list.
4617 Use `package--ac-desc-version' to retrieve version from a package
4618 archive element.
4619
4620 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
4621
4622 New experimental feature to save&restore window and frame setup.
4623 * desktop.el (desktop-save-windows): New defcustom.
4624 (desktop--saved-states): New var.
4625 (desktop--excluded-frame-parameters): New defconst.
4626 (desktop--filter-frame-parms, desktop--find-frame-in-display)
4627 (desktop--restore-windows, desktop--save-windows): New functions.
4628 (desktop-save): Call `desktop--save-windows'.
4629 (desktop-read): Call `desktop--restore-windows'.
4630
4631 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4632
4633 * net/shr.el (add-face-text-property): Remove compat definition.
4634
4635 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4636
4637 * info.el (Info-try-follow-nearest-node): Move search for footnote
4638 above search for node name to prevent missing a footnote (bug#14717).
4639
4640 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
4641
4642 * obsolete/otodo-mode.el: Add obsolescence info to file header.
4643
4644 2013-06-27 Leo Liu <sdl.web@gmail.com>
4645
4646 * net/eww.el (eww-read-bookmarks): Check file size.
4647
4648 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4649
4650 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
4651 advice--pending if newdef is nil or an autoload (bug#13820).
4652 (advice-mapc): New function.
4653
4654 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4655
4656 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
4657 probably.
4658 (eww-mode-map): Add a menu bar.
4659 (eww-add-bookmark): New command.
4660 (eww-bookmark-mode): New mode and commands.
4661 (eww-add-bookmark): Remove newlines from the title.
4662 (eww-bookmark-browse): Don't bug out if it's the only window.
4663
4664 2013-06-26 Glenn Morris <rgm@gnu.org>
4665
4666 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
4667 (hfy-size): Handle ttys. (Bug#14668)
4668
4669 * info-xref.el: Update for Texinfo 5 change in *note format.
4670 (info-xref-node-re, info-xref-note-re): New constants.
4671 (info-xref-check-buffer): Use info-xref-note-re.
4672
4673 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4674
4675 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
4676
4677 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
4678 nil terminate the loop (bug#14718).
4679
4680 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4681
4682 * net/eww.el: Rework history traversal. When going forward/back,
4683 put these actions into the history, too, so that they can be
4684 replayed.
4685 (eww-render): Move the history reset to the correct buffer.
4686
4687 2013-06-25 Juri Linkov <juri@jurta.org>
4688
4689 * files-x.el (modify-dir-local-variable): Change the header comment
4690 in the file with directory local variables. (Bug#14692)
4691
4692 * files-x.el (read-file-local-variable-value): Add `default'.
4693 (Bug#14710)
4694
4695 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4696
4697 * net/eww.el (eww-make-unique-file-name): Create a unique file
4698 name before saving to entering `y' accidentally asynchronously.
4699
4700 2013-06-25 Ivan Kanis <ivan@kanis.fr>
4701
4702 * net/eww.el (eww-download): New command and keystroke.
4703
4704 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4705
4706 * net/eww.el (eww-copy-page-url): Change name of command.
4707
4708 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
4709 be more consistent with Info and dired.
4710
4711 * net/eww.el (eww-mode-map): Ditto.
4712
4713 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4714
4715 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
4716 packages from archives.
4717 (package-archive-contents): Change format; include obsolete packages.
4718 (package-desc): Use `dir' to mark builtin packages.
4719 (package--from-builtin): Set the `dir' field to `builtin'.
4720 (generated-autoload-file, version-control): Declare.
4721 (package-compute-transaction): Change first arg and return value to be
4722 lists of package-descs. Adjust to new package-archive-contents format.
4723 (package--add-to-archive-contents): Adjust to new
4724 package-archive-contents format.
4725 (package-download-transaction): Arg is now a list of package-descs.
4726 (package-install): If `pkg' is a package name, pass it as
4727 a requirement, so it is subject to the usual (e.g. disabled) checks.
4728 (describe-package): Accept package-desc as well.
4729 (describe-package-1): Describe a specific package-desc. Add links to
4730 other package-descs for the same package name.
4731 (package-menu-describe-package): Pass the actual package-desc.
4732 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
4733 works correctly.
4734 (package-desc-status): New function.
4735 (package-menu--refresh): New function, extracted
4736 from package-menu--generate.
4737 (package-menu--generate): Use it.
4738 (package-delete): Update package-alist.
4739 (package-menu-execute): Don't call package-initialize.
4740
4741 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
4742 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
4743 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
4744 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
4745 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
4746 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
4747
4748 2013-06-25 Martin Rudalics <rudalics@gmx.at>
4749
4750 * window.el (window--state-get-1): Workaround for bug#14527.
4751 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
4752
4753 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4754
4755 * net/eww.el (eww-back-url): Implement the history by stashing all
4756 the data into a list.
4757 (eww-forward-url): Allow going forward in the history, too.
4758
4759 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4760
4761 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
4762 for values and use read--expression for expressions (bug#14710).
4763 (read-file-local-variable): Avoid setq.
4764 (read-file-local-variable-mode): Use minor-mode-list.
4765
4766 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4767
4768 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
4769 for DOI URLs.
4770
4771 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4772
4773 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
4774 Update imenu-support when dialect changes.
4775
4776 2013-06-25 Leo Liu <sdl.web@gmail.com>
4777
4778 * ido.el (ido-read-internal): Allow forward slash on windows.
4779
4780 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4781
4782 * net/eww.el (eww): Start of strings is \\`, not ^.
4783
4784 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4785
4786 * net/shr.el (shr-browse-url): Fix interactive spec.
4787
4788 * net/eww.el (eww): Add a trailing slash to domain names.
4789
4790 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
4791
4792 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
4793
4794 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4795
4796 * net/shr.el (shr-browse-url): Use an external browser if given a
4797 prefix.
4798
4799 * net/eww.el (eww-external-browser): Move to shr.
4800
4801 2013-06-24 Ivan Kanis <ivan@kanis.fr>
4802
4803 * net/eww.el (eww): Work more correctly for file: URLs.
4804 (eww-detect-charset): Allow quoted charsets.
4805 (eww-yank-page-url): New command and keystroke.
4806
4807 2013-06-24 Daiki Ueno <ueno@gnu.org>
4808
4809 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
4810 file name of gpg executable.
4811 (epg-context-program): New function.
4812 (epg-context-home-directory): New function.
4813 (epg-context-set-program): New function.
4814 (epg-context-set-home-directory): New function.
4815 (epg--start): Use `epg-context-program' instead of
4816 'epg-gpg-program'.
4817 (epg--list-keys-1): Likewise.
4818
4819 2013-06-24 Leo Liu <sdl.web@gmail.com>
4820
4821 * ido.el (ido-read-internal): Fix bug#14620.
4822
4823 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
4824
4825 * faces.el (face-documentation): Simplify.
4826 (read-face-attribute, tty-find-type, x-resolve-font-name):
4827 Use `string-match-p'.
4828 (list-faces-display): Use `string-match-p'. Simplify.
4829 (face-spec-recalc): Check face to avoid face alias loops.
4830 (read-color): Use `string-match-p' and non-capturing parenthesis.
4831
4832 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4833
4834 * net/shr.el (shr-rescale-image): Use the new
4835 :max-width/:max-height functionality.
4836
4837 2013-06-23 Ivan Kanis <ivan@kanis.fr>
4838
4839 * net/eww.el (eww-search-prefix): New variable.
4840 (eww): Use it.
4841 (eww-external-browser): New variable.
4842 (eww-mode-map): New keystroke.
4843 (eww-browse-with-external-browser): New command.
4844
4845 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
4846
4847 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
4848
4849 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
4850 Don't skip aligning the next header field when padding is 0;
4851 otherwise, field width is not respected unless the title is as
4852 wide as the field.
4853
4854 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4855
4856 * emacs-lisp/package.el (package-el-version): Remove.
4857 (package-process-define-package): Fix inf-loop.
4858 (package-install): Allow symbols as arguments again.
4859
4860 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4861
4862 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
4863 add some more keyword-like methods.
4864 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
4865
4866 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
4867
4868 * bs.el (bs-buffer-show-mark): Make defvar-local.
4869 (bs-mode): Use setq-local.
4870
4871 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
4872 (emacs-lock--try-unlocking): Make defvar-local.
4873
4874 2013-06-22 Glenn Morris <rgm@gnu.org>
4875
4876 * play/cookie1.el (cookie-apropos): Minor simplification.
4877
4878 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
4879
4880 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4881
4882 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
4883 `regexp-opt', it breaks the build during dumping.
4884
4885 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
4886
4887 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4888 Highlight keyword-like methods on Kernel and Module with
4889 font-lock-builtin-face.
4890 (auto-mode-alist): Consolidate different entries into one regexp
4891 and add more *file-s.
4892
4893 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
4894
4895 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
4896
4897 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
4898 (diary-entry): Use it in the action of this button type instead of
4899 diary-goto-entry.
4900
4901 * calendar/todo-mode.el: New version.
4902 (todo-add-category): Append new category to end of file and give
4903 it the highest number, instead of putting it at the beginning and
4904 giving it 0. Incorporate noninteractive functionality.
4905 (todo-forward-category): Adapt to 1-based category numbering.
4906 Allow skipping over archived categories.
4907 (todo-backward-category): Derive from todo-forward-category.
4908 (todo-backward-item, todo-forward-item): Make noninteractive and
4909 delegate interactive part to new commands. Make sensitive to done items.
4910 (todo-categories): Make value an alist of category names and
4911 vectors of item counts.
4912 (todo-category-beg): Make a defconst.
4913 (todo-category-number): Use 1 instead of 0 as initial value.
4914 (todo-category-select): Make sensitive to overlays, optional item
4915 highlighting and done items.
4916 (todo-delete-item): Make sensitive to overlays and marked and done items.
4917 (todo-edit-item): Make sensitive to overlays and editing of
4918 date/time header optional. Add format checks.
4919 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
4920 no-op if point is not on an item. Advertise using todo-edit-quit.
4921 (todo-edit-mode): Make sensitive to new format, font-locking, and
4922 multiple todo files.
4923 (todo-insert-item, todo-insert-item-here): Derive from
4924 todo-basic-insert-item and extend functionality.
4925 (todo-item-end, todo-item-start): Make sensitive to done items.
4926 (todo-item-string): Don't return text properties. Restore point.
4927 (todo-jump-to-category): Make sensitive to multiple todo files and
4928 todo archives. Use extended category completion.
4929 (todo-lower-item, todo-raise-item): Rename to *-priority and
4930 derive from todo-set-item-priority.
4931 (todo-mode): Derive from special-mode. Make sensitive to new
4932 format, font-locking and multiple todo files. Make read-only.
4933 (todo-mode-map): Don't suppress digit keys, so they can supply
4934 prefix arguments. Add many new key bindings.
4935 (todo-prefix): Insert as an overlay instead of file text.
4936 Change semantics from diary date expression to purely visual mark.
4937 (todo-print): Rename to todo-print-buffer. Make buffer display
4938 features printable. Remove option to restrict number of items
4939 printed. Add option to print to file.
4940 (todo-print-function): Rename to todo-print-buffer-function.
4941 (todo-quit): Extend to handle exiting new todo modes.
4942 (todo-remove-item): Make sensitive to overlays.
4943 (todo-save): Extend to buffers of filtered items.
4944 (todo-show): Make sensitive to done items, multiple todo files and
4945 new todo modes. Offer to convert legacy todo file before creating
4946 first new todo file.
4947 (todo-show-priorities): Rename to todo-top-priorities.
4948 Change semantics of value 0.
4949 (todo-top-priorities): Rename to todo-filter-top-priorities,
4950 derive from todo-filter-items and extend functionality.
4951 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
4952 and extend functionality to other types of filtered items.
4953 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
4954 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
4955 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
4956 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
4957 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
4958 (todo-edit-mode-hook, todo-entry-prefix-function)
4959 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
4960 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
4961 (todo-initials, todo-insert-threshold, todo-item-string-start)
4962 (todo-line-string, todo-menu, todo-mode-hook)
4963 (todo-more-important-p, todo-previous-answer, todo-previous-line)
4964 (todo-print-priorities, todo-remove-separator)
4965 (todo-save-top-priorities-too, todo-string-count-lines)
4966 (todo-string-multiline-p, todo-time-string-format)
4967 (todo-tmp-buffer-name): Remove.
4968 (todo-add-file, todo-archive-done-item, todo-choose-archive)
4969 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
4970 (todo-edit-category-diary-inclusion)
4971 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
4972 (todo-edit-file, todo-edit-item-date-day)
4973 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
4974 (todo-edit-item-date-month, todo-edit-item-date-to-today)
4975 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
4976 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
4977 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
4978 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
4979 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
4980 (todo-filter-top-priorities-multifile, todo-find-archive)
4981 (todo-find-filtered-items-file, todo-go-to-source-item)
4982 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
4983 (todo-jump-to-archive-category, todo-lower-category)
4984 (todo-mark-category, todo-marked-item-p, todo-merge-category)
4985 (todo-move-category, todo-move-item, todo-next-button)
4986 (todo-next-item, todo-padded-string, todo-powerset)
4987 (todo-previous-button, todo-previous-item)
4988 (todo-print-buffer-to-file, todo-raise-category)
4989 (todo-rename-category, todo-repair-categories-sexp, todo-search)
4990 (todo-set-category-number, todo-set-item-priority)
4991 (todo-set-top-priorities-in-category)
4992 (todo-set-top-priorities-in-file, todo-show-categories-table)
4993 (todo-sort-categories-alphabetically-or-numerically)
4994 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
4995 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
4996 (todo-toggle-item-header, todo-toggle-item-highlighting)
4997 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
4998 (todo-toggle-view-done-items, todo-toggle-view-done-only)
4999 (todo-unarchive-items, todo-unmark-category): New commands.
5000 (todo-absolute-file-name, todo-add-to-buffer-list)
5001 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
5002 (todo-basic-insert-item, todo-category-completions)
5003 (todo-category-number, todo-category-string-matcher-1)
5004 (todo-category-string-matcher-2, todo-check-filtered-items-file)
5005 (todo-check-format, todo-clear-matches)
5006 (todo-comment-string-matcher, todo-convert-legacy-date-time)
5007 (todo-current-category, todo-date-string-matcher)
5008 (todo-define-insertion-command, todo-diary-expired-matcher)
5009 (todo-diary-goto-entry, todo-diary-item-p)
5010 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
5011 (todo-display-categories, todo-display-sorted, todo-done-item-p)
5012 (todo-done-item-section-p, todo-done-separator)
5013 (todo-done-string-matcher, todo-files, todo-filter-items)
5014 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
5015 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
5016 (todo-insert-category-line, todo-insert-item-from-calendar)
5017 (todo-insert-sort-button, todo-insert-with-overlays)
5018 (todo-insertion-command-name, todo-insertion-key-bindings)
5019 (todo-label-to-key, todo-longest-category-name-length)
5020 (todo-make-categories-list, todo-mode-external-set)
5021 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
5022 (todo-modes-set-3, todo-multiple-filter-files)
5023 (todo-nondiary-marker-matcher, todo-prefix-overlays)
5024 (todo-read-category, todo-read-date, todo-read-dayname)
5025 (todo-read-file-name, todo-read-time)
5026 (todo-reevaluate-category-completions-files-defcustom)
5027 (todo-reevaluate-default-file-defcustom)
5028 (todo-reevaluate-filelist-defcustoms)
5029 (todo-reevaluate-filter-files-defcustom)
5030 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
5031 (todo-reset-done-separator, todo-reset-done-separator-string)
5032 (todo-reset-done-string, todo-reset-global-current-todo-file)
5033 (todo-reset-highlight-item, todo-reset-nondiary-marker)
5034 (todo-reset-prefix, todo-set-categories)
5035 (todo-set-date-from-calendar, todo-set-show-current-file)
5036 (todo-set-top-priorities, todo-short-file-name)
5037 (todo-show-current-file, todo-sort, todo-time-string-matcher)
5038 (todo-total-item-counts, todo-update-buffer-list)
5039 (todo-update-categories-display, todo-update-categories-sexp)
5040 (todo-update-count, todo-validate-name, todo-y-or-n-p):
5041 New functions.
5042 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
5043 New major modes.
5044 (todo-categories, todo-display, todo-edit, todo-faces)
5045 (todo-filtered): New defgroups.
5046 (todo-archived-only, todo-button, todo-category-string, todo-date)
5047 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
5048 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
5049 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
5050 (todo-add-item-if-new-category, todo-always-add-time-string)
5051 (todo-categories-align, todo-categories-archived-label)
5052 (todo-categories-category-label, todo-categories-diary-label)
5053 (todo-categories-done-label, todo-categories-number-separator)
5054 (todo-categories-todo-label, todo-categories-totals-label)
5055 (todo-category-completions-files, todo-completion-ignore-case)
5056 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
5057 (todo-done-separator-string, todo-done-string)
5058 (todo-files-function, todo-filter-done-items, todo-filter-files)
5059 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
5060 (todo-initial-category, todo-initial-file, todo-item-mark)
5061 (todo-legacy-date-time-regexp, todo-mode-line-function)
5062 (todo-nondiary-marker, todo-number-prefix)
5063 (todo-print-buffer-function, todo-show-current-file)
5064 (todo-show-done-only, todo-show-first, todo-show-with-done)
5065 (todo-skip-archived-categories, todo-top-priorities-overrides)
5066 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
5067 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
5068 New defcustoms.
5069 (todo-category-done, todo-date-pattern, todo-date-string-start)
5070 (todo-diary-items-buffer, todo-done-string-start)
5071 (todo-filtered-items-buffer, todo-item-start)
5072 (todo-month-abbrev-array, todo-month-name-array)
5073 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
5074 (todo-top-priorities-buffer): New defconsts.
5075 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
5076 (todo-categories-with-marks, todo-category-string-face)
5077 (todo-comment-face, todo-comment-string, todo-current-todo-file)
5078 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
5079 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
5080 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
5081 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
5082 (todo-font-lock-keywords, todo-global-current-todo-file)
5083 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
5084 (todo-insertion-commands-args)
5085 (todo-insertion-commands-args-genlist)
5086 (todo-insertion-commands-names, todo-insertion-map)
5087 (todo-key-bindings-t, todo-key-bindings-t+a)
5088 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
5089 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
5090 (todo-nondiary-face, todo-print-buffer, todo-time-face)
5091 (todo-visited): New variables.
5092
5093 2013-06-21 Glenn Morris <rgm@gnu.org>
5094
5095 * play/cookie1.el (cookie-apropos): Add optional display argument.
5096 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
5097 (psychoanalyze-pinhead): Use cookie-doctor.
5098
5099 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5100
5101 * emacs-lisp/package.el (tar-get-file-descriptor)
5102 (tar--extract): Declare.
5103
5104 2013-06-21 Eduard Wiebe <usenet@pusto.de>
5105
5106 Extend flymake's warning predicate to be a function (bug#14217).
5107 * progmodes/flymake.el (flymake-warning-predicate): New.
5108 (flymake-parse-line): Use it.
5109 (flymake-warning-re): Make obsolete alias to
5110 `flymake-warning-predicate'.
5111
5112 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5113
5114 * emacs-lisp/package.el (package-alist): Include obsolete packages.
5115 (package-obsolete-list): Remove.
5116 (package-activate): Remove min-version argument. Add `force' argument.
5117 Adjust to new package-alist format.
5118 (package-mark-obsolete): Remove.
5119 (package-unpack): Force reload of the package's autoloads.
5120 (package-installed-p): Check builtins if the installed package is not
5121 recent enough.
5122 (package-initialize): Don't reset package-obsolete-list.
5123 Don't specify which package version to activate.
5124 (package-process-define-package, describe-package-1)
5125 (package-menu--generate): Adjust to new package-alist format.
5126
5127 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5128
5129 * allout-widgets.el (allout-widgets-mode-off)
5130 (allout-widgets-mode-on, allout-widgets-pre-command-business)
5131 (allout-widgets-post-command-business)
5132 (allout-widgets-after-copy-or-kill-function)
5133 (allout-widgets-after-undo-function, allout-test-range-overlaps)
5134 (allout-decorate-item-and-context)
5135 (allout-graphics-modification-handler): Fix typos in docstrings.
5136 (allout-get-or-create-parent-widget): Use `looking-at-p'.
5137
5138 * cmuscheme.el (scheme-start-file): Doc fix.
5139 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
5140 (scheme-input-filter): Use `string-match-p'.
5141
5142 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
5143
5144 * dired-x.el: Use Dired consistently in docstrings.
5145
5146 * dired.el: Use Dired consistently in docstrings.
5147 (dired-readin, dired-mode): Use `setq-local'.
5148 (dired-switches-alist): Make defvar-local.
5149 (dired-buffers-for-dir): Use `zerop'.
5150 (dired-safe-switches-p, dired-switches-escape-p)
5151 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
5152 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
5153 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
5154 (dired-goto-next-nontrivial-file): Use `string-match-p'.
5155 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
5156 (dired-toggle-marks, dired-mark-files-containing-regexp)
5157 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
5158 (dired-flag-auto-save-files, dired-flag-backup-files):
5159 Use `looking-at-p'.
5160 (dired-mark-files-regexp, dired-build-subdir-alist):
5161 Use `string-match-p', `looking-at-p'.
5162
5163 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
5164 (direct-print-region-helper): Use `string-match-p'.
5165
5166 2013-06-21 Leo Liu <sdl.web@gmail.com>
5167
5168 * comint.el (comint-redirect-results-list-from-process):
5169 Fix infinite loop.
5170
5171 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5172
5173 * net/eww.el (eww-update-header-line-format): Quote % characters.
5174
5175 2013-06-21 Glenn Morris <rgm@gnu.org>
5176
5177 * play/cookie1.el (cookie): New custom group.
5178 (cookie-file): New option.
5179 (cookie-check-file): New function.
5180 (cookie): Make it interactive. Make start and end messages optional.
5181 Interactively, display the result. Default to cookie-file.
5182 (cookie-insert): Default to cookie-file.
5183 (cookie-snarf): Make start and end messages optional.
5184 Default to cookie-file. Use with-temp-buffer.
5185 (cookie-read): Rename from read-cookie.
5186 Make start and end messages optional. Default to cookie-file.
5187 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
5188 Do not autoload it.
5189 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
5190 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
5191
5192 2013-06-21 Leo Liu <sdl.web@gmail.com>
5193
5194 * progmodes/octave.el (octave-mode): Backward compatibility fix.
5195
5196 2013-06-21 Glenn Morris <rgm@gnu.org>
5197
5198 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
5199
5200 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5201 Daniel Hackney <dan@haxney.org>
5202
5203 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
5204 Consolidate the single-file vs tarball code.
5205 (package-desc-suffix): New function.
5206 (package-desc-full-name): Don't bother inlining it.
5207 (package-load-descriptor): Return the new package-desc.
5208 (package-mark-obsolete): Remove unused arg `package'.
5209 (package-unpack): Make it work for single files as well.
5210 Make it update package-alist.
5211 (package--make-autoloads-and-stuff): Rename from
5212 package--make-autoloads-and-compile. Don't compile any more.
5213 (package--compile): New function.
5214 (package-generate-description-file): New function, extracted from
5215 package-unpack-single.
5216 (package-unpack-single): Remove.
5217 (package--with-work-buffer): Add indentation and debugging info.
5218 (package-download-single): Remove.
5219 (package-install-from-archive): Rename from package-download-tar, make
5220 it take a pkg-desc, and make it work for single files as well.
5221 (package-download-transaction): Simplify.
5222 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
5223 external tar program.
5224 (package-install-from-buffer): Remove `pkg-desc' argument.
5225 Use package-tar-file-info for tar-mode buffers.
5226 (package-install-file): Simplify accordingly.
5227 (package-archive-base): Change to take a pkg-desc.
5228 * tar-mode.el (tar--check-descriptor): New function, extracted from
5229 tar-get-descriptor.
5230 (tar-get-descriptor): Use it.
5231 (tar-get-file-descriptor): New function.
5232 (tar--extract): New function, extracted from tar-extract.
5233 (tar--extract): Use it.
5234 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5235 case the summary uses non-ascii. Adjust to new calling convention of
5236 package-tar-file-info.
5237
5238 2013-06-21 Leo Liu <sdl.web@gmail.com>
5239
5240 * comint.el (comint-redirect-results-list-from-process):
5241 Fix random delay. (Bug#14681)
5242
5243 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5244
5245 * profiler.el (profiler-format-number): Use log, not log10.
5246
5247 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5248
5249 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5250
5251 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5252
5253 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5254 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5255 yet available.
5256 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5257 (AUTOGENEL): ... here.
5258 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5259 (cl--defsubst-expand): Use it.
5260
5261 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5262
5263 * subr.el (log10): Move here from C code, and declare as obsolete.
5264 All uses of (log10 X) replaced with (log X 10).
5265
5266 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5267
5268 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5269 Declare with `defvar-local'.
5270 (tabulated-list-use-header-line, tabulated-list-entries)
5271 (tabulated-list-padding, tabulated-list-printer)
5272 (tabulated-list-sort-key): Declare with `defvar-local'.
5273 (tabulated-list-init-header, tabulated-list-print-fake-header):
5274 Use `setq-local'.
5275
5276 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
5277
5278 * arc-mode.el (archive-mode): Add `archive-write-file' to
5279 `write-contents-functions' also for remote files. (Bug#14652)
5280
5281 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5282
5283 * cus-edit.el (custom-commands): Fix typos.
5284 (custom-display): Fix tooltip text.
5285 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5286 Fix typos in docstrings.
5287 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5288 (custom-unlispify-menu-entry, custom-magic-value-create)
5289 (custom-add-see-also, custom-group-value-create): Use ?\s.
5290 (custom-guess-type, customize-apropos, editable-field)
5291 (custom-face-value-create): Use `string-match-p'.
5292 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5293
5294 * custom.el (custom-load-symbol): Use `string-match-p'.
5295
5296 * ansi-color.el: Convert to lexical binding.
5297 (ansi-colors): Fix URL.
5298 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5299 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5300 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5301
5302 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5303
5304 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5305
5306 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5307
5308 2013-06-19 Tom Tromey <tromey@redhat.com>
5309
5310 * net/eww.el (eww-top-url): Remove.
5311 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5312 (eww-render): Set new variables. Don't set eww-top-url.
5313 (eww-handle-link): Handle "prev", "home", and "contents".
5314 Downcase the rel text.
5315 (eww-top-url): Choose best top URL.
5316
5317 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5318
5319 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5320 relying in widget.el. Using widget.el leads to too many
5321 user interface inconsistencies.
5322 (eww-self-insert): Implement entering commands in text fields.
5323 (eww-process-text-input): New function to make text input field editing
5324 work.
5325 (eww-submit): Rewrite to use the new-style form methods.
5326 (eww-select-display): Display the correct selected item.
5327 (eww-change-select): Implement changing the select value.
5328 (eww-toggle-checkbox): Implement radio/checkboxes.
5329 (eww-update-field): Fix compilation error.
5330 (eww-tag-textarea): Implement <textarea>.
5331
5332 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5333 we don't shadow mode-specific bindings.
5334
5335 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5336 nothing to push.
5337
5338 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5339
5340 2013-06-19 Glenn Morris <rgm@gnu.org>
5341
5342 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5343
5344 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5345
5346 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5347 not needed.
5348
5349 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5350
5351 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5352
5353 * net/browse-url.el (browse-url-browser-function):
5354 `eww-browse-url' has the right calling signature, `eww' does not.
5355
5356 2013-06-19 Glenn Morris <rgm@gnu.org>
5357
5358 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5359 Only eval autoloaded macros.
5360 (byte-compile-autoload): Only give the macro warning for macros.
5361
5362 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5363 (ps-underlined-faces): Declare.
5364
5365 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5366 (speedbar-add-supported-extension): Declare.
5367
5368 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5369 Don't include a date stamp in the header of the generated file;
5370 it leads to needless differences between output files.
5371
5372 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5373
5374 * net/secrets.el (secrets-struct-secret-content-type):
5375 Replace check of introspection data by a test call of "CreateItem".
5376 Some servers do not offer introspection.
5377
5378 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5379
5380 * electric.el (electric-pair-mode): Improve interaction with
5381 electric-layout-mode.
5382 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5383 (electric-pair-syntax): Use text-mode-syntax-table in comments
5384 and strings.
5385 (electric-pair--insert): New function.
5386 (electric-pair-post-self-insert-function): Use it and
5387 electric--after-char-pos.
5388
5389 2013-06-19 Leo Liu <sdl.web@gmail.com>
5390
5391 * progmodes/octave.el (octave-help): Fix regexp.
5392
5393 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5394
5395 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5396 (shr-table-horizontal-line): Allow nil as a value, and change the
5397 default.
5398 (shr-insert-table-ruler): Respect the nil value.
5399
5400 2013-06-18 Tom Tromey <tromey@barimba>
5401
5402 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5403 New defvars.
5404 (eww-open-file): New defun.
5405 (eww-render): Initialize new variables.
5406 (eww-display-html): Handle "link" and "a".
5407 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5408 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5409 (eww-back-url): Rename from eww-previous-url.
5410 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5411 New defuns.
5412
5413 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5414
5415 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5416 Distinguish ternary operator tokens from slash symbol and slash
5417 char literal.
5418
5419 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5420
5421 Convert symbol prettification into minor mode and global minor mode.
5422
5423 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5424 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5425 (prettify-symbols--keywords): Rename from
5426 `prog-prettify-symbols-alist' and make a local defvar.
5427 (prettify-symbols--compose-symbol): Rename from
5428 `prog--prettify-font-lock-compose-symbol'.
5429 (prettify-symbols--make-keywords): Rename from
5430 `prog-prettify-font-lock-symbols-keywords' and simplify.
5431 (prog-prettify-install): Remove.
5432 (prettify-symbols-mode): New minor mode, based on
5433 `prog-prettify-install'.
5434 (turn-on-prettify-symbols-mode): New function.
5435 (global-prettify-symbols-mode): New globalized minor mode.
5436
5437 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5438 * progmodes/cfengine.el (cfengine3-mode):
5439 * progmodes/perl-mode.el (perl-mode): Don't call
5440 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5441
5442 2013-06-18 Juri Linkov <juri@jurta.org>
5443
5444 * files-x.el (modify-file-local-variable-message): New function.
5445 (modify-file-local-variable)
5446 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5447 and call `modify-file-local-variable-message' when it's non-nil.
5448 (add-file-local-variable, delete-file-local-variable)
5449 (add-file-local-variable-prop-line)
5450 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5451 and use it. (Bug#9820)
5452
5453 2013-06-18 Juri Linkov <juri@jurta.org>
5454
5455 * emulation/vi.el (vi-shell-op):
5456 * emulation/vip.el (vip-execute-com, ex-command):
5457 * emulation/viper-cmd.el (viper-exec-bang):
5458 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5459 the call of `shell-command-on-region'. (Bug#14637)
5460
5461 * simple.el (shell-command-on-region): Doc fix.
5462
5463 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5464
5465 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5466 (bug#14633).
5467
5468 2013-06-18 Glenn Morris <rgm@gnu.org>
5469
5470 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5471
5472 * newcomment.el (comment-search-forward, comment-search-backward):
5473 Doc fix. (Bug#14376)
5474
5475 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5476
5477 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5478 (buffer-face-mode-invoke): Doc fix.
5479
5480 2013-06-18 Matthias Meulien <orontee@gmail.com>
5481
5482 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
5483 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
5484
5485 2013-06-18 Glenn Morris <rgm@gnu.org>
5486
5487 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5488 Replace obsolete function generic-make-keywords with its expansion.
5489
5490 * progmodes/python.el (ffap-alist): Declare.
5491
5492 * textmodes/reftex.el (bibtex-mode-map): Declare.
5493
5494 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5495
5496 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5497 (package-unpack, package-unpack-single): Return the pkg-dir.
5498 (package-download-transaction): Use it to update package-alist.
5499
5500 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5501
5502 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
5503 possible choice.
5504
5505 2013-06-17 Juri Linkov <juri@jurta.org>
5506
5507 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5508
5509 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5510
5511 * emacs-lisp/package.el (package-load-descriptor):
5512 Remove `with-syntax-table' call, `read' doesn't need it.
5513 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5514
5515 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5516
5517 * startup.el (command-line): Expand package name returned by
5518 `package--description-file' (bug#14639).
5519
5520 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5521
5522 * emacs-lisp/package.el (package-load-descriptor): Do not call
5523 `emacs-lisp-mode', just use its syntax table.
5524
5525 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5526
5527 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
5528 `font-lock-extra-managed-props' if any prettifying keyword is added.
5529 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
5530 (prog-mode): Use `setq-local'.
5531
5532 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5533
5534 * international/characters.el (standard-case-table): Set syntax of ?»
5535 and ?« to punctuation.
5536
5537 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
5538
5539 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
5540 Save relevant match data before calling `syntax-ppss' (bug#14595).
5541
5542 2013-06-15 Juri Linkov <juri@jurta.org>
5543
5544 * files-x.el (modify-file-local-variable-prop-line): Add local
5545 variables to the end of the existing comment on the first line.
5546 Use `file-auto-mode-skip' to skip interpreter magic line,
5547 and also skip XML declaration.
5548
5549 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5550
5551 * startup.el (package--builtin-versions): New var.
5552 (package-subdirectory-regexp): Remove.
5553 (package--description-file): Hard code its value instead.
5554
5555 * emacs-lisp/package.el: Don't activate packages older than builtin.
5556 (package-obsolete-list): Rename from package-obsolete-alist, and make
5557 it into a simple list of package-desc.
5558 (package-strip-version): Remove.
5559 (package-built-in-p): Use package--builtin-versions.
5560 (package-mark-obsolete): Simplify.
5561 (package-process-define-package): Mark it obsolete if older than the
5562 builtin version.
5563 (package-handle-response): Use line-end-position.
5564 (package-read-archive-contents, package--download-one-archive):
5565 Simplify.
5566 (package--add-to-archive-contents): Skip if older than the builtin or
5567 installed version.
5568 (package-menu-describe-package): Fix last change.
5569 (package-list-unversioned): New var.
5570 (package-menu--generate): Use it.
5571
5572 * emacs-lisp/autoload.el: Manage package--builtin-versions.
5573 (autoload--insert-text, autoload--insert-cookie-text): New functions.
5574 (autoload-builtin-package-versions): New variable.
5575 (autoload-generate-file-autoloads): Use them.
5576 Remove the list of autoloaded functions/macros from the
5577 (autoload...) comments.
5578
5579 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
5580
5581 2013-06-15 Eli Zaretskii <eliz@gnu.org>
5582
5583 * simple.el (line-move-partial): Don't jump to the next screen
5584 line as soon as it becomes visible. Instead, continue enlarging
5585 the vscroll until the portion of a tall screen line that's left on
5586 display is about the height of the frame's default font.
5587 (Bug#14567)
5588
5589 2013-06-15 Glenn Morris <rgm@gnu.org>
5590
5591 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
5592 compilation-error-regexp-alist void, or local while let-bound.
5593
5594 * progmodes/make-mode.el (makefile-mode-syntax-table):
5595 Treat "=" as punctuation. (Bug#14614)
5596
5597 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
5598
5599 * help-fns.el (describe-variable):
5600 Add extra line for permanent-local variables.
5601
5602 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
5603
5604 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5605 Add export, import, library. (Bug#9164)
5606 (library): Set indent function.
5607
5608 2013-06-14 Glenn Morris <rgm@gnu.org>
5609
5610 * term/xterm.el (xterm--query):
5611 Stop after first matching handler. (Bug#14615)
5612
5613 2013-06-14 Ivan Kanis <ivan@kanis.fr>
5614
5615 Add support for dired in saveplace.
5616 * dired.el (dired-initial-position-hook): New variable.
5617 (dired-initial-position): Call hook to place cursor position.
5618 * saveplace.el (save-place-to-alist): Add dired position.
5619 (save-place-dired-hook): New function.
5620
5621 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
5622
5623 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
5624 through a symbol rather than letrec.
5625
5626 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
5627 (package-desc): Add `dir' field.
5628 (package-desc-full-name): New function.
5629 (package-load-descriptor): Combine the two arguments. Don't use `load'.
5630 (package-maybe-load-descriptor): Remove.
5631 (package-load-all-descriptors): Just call package-load-descriptor.
5632 (package--disabled-p): New function.
5633 (package-desc-vers, package-desc-doc): Remove aliases.
5634 (package--dir): Remove function.
5635 (package-activate): Check if a package is disabled.
5636 (package-process-define-package): New function, extracted from
5637 define-package.
5638 (define-package): Turn into a place holder.
5639 (package-unpack-single, package-tar-file-info):
5640 Use package--description-file.
5641 (package-compute-transaction): Use package--disabled-p.
5642 (package-download-transaction): Don't call
5643 package-maybe-load-descriptor since they're all loaded anyway.
5644 (package-install): Change argument to be a pkg-desc.
5645 (package-delete): Use a single pkg-desc argument.
5646 (describe-package-1): Use package-desc-dir instead of package--dir.
5647 Use package-desc property instead of package-symbol.
5648 (package-install-button-action): Adjust accordingly.
5649 (package--push): Rewrite.
5650 (package-menu--print-info): Adjust accordingly. Change the ID format
5651 to be a pkg-desc.
5652 (package-menu-describe-package, package-menu-get-status)
5653 (package-menu--find-upgrades, package-menu-mark-upgrades)
5654 (package-menu-execute, package-menu--name-predicate):
5655 Adjust accordingly.
5656 * startup.el (package--description-file): New function.
5657 (command-line): Use it.
5658 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5659 Use package-desc-version.
5660
5661 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
5662 (byte-compile-preprocess): Use it.
5663 (byte-compile-file-form-defalias): Try a bit harder to use macros we
5664 can't quite recognize.
5665 (byte-compile-add-to-list): Remove.
5666 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
5667 (cconv-closure-convert): Add assertion.
5668
5669 * emacs-lisp/map-ynp.el: Use lexical-binding.
5670 (map-y-or-n-p): Remove unused vars `tail' and `object'.
5671 Factor out some repeated code.
5672
5673 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5674
5675 * subr.el (with-eval-after-load): New macro.
5676 (eval-after-load): Allow form to be a function.
5677 take advantage of lexical-binding.
5678 (do-after-load-evaluation): Use dolist and adjust to new format.
5679 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
5680
5681 2013-06-13 Juri Linkov <juri@jurta.org>
5682
5683 * replace.el (perform-replace): Display "symbol " and other search
5684 modes from `isearch-message-prefix' in the *Help* buffer.
5685
5686 * isearch.el (isearch-query-replace): Add " symbol" and other
5687 possible search modes from `isearch-message-prefix' to the prompt.
5688 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
5689 when reading a regexp to collect.
5690
5691 2013-06-13 Juri Linkov <juri@jurta.org>
5692
5693 * isearch.el (word-search-regexp): Match whitespace if the search
5694 string begins or ends in whitespace. The LAX arg is applied to
5695 both ends of the search string. Use `regexp-quote' and explicit
5696 \< and \> instead of \b. Use \` and \' instead of ^ and $.
5697 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
5698 boundaries are replaced with symbol boundaries, and characters
5699 between symbols match non-word non-symbol syntax. (Bug#14602)
5700
5701 2013-06-13 Juri Linkov <juri@jurta.org>
5702
5703 * isearch.el (isearch-del-char): Don't exceed the length of
5704 `isearch-string' by the prefix arg. (Bug#14563)
5705
5706 2013-06-13 Juri Linkov <juri@jurta.org>
5707
5708 * isearch.el (isearch-yank-word, isearch-yank-line)
5709 (isearch-char-by-name, isearch-quote-char)
5710 (isearch-printing-char, isearch-process-search-char):
5711 Add optional count prefix arg. (Bug#14563)
5712
5713 * international/isearch-x.el
5714 (isearch-process-search-multibyte-characters):
5715 Add optional count prefix arg.
5716
5717 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5718
5719 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
5720 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
5721 lexical-binding.
5722
5723 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
5724
5725 * subr.el (set-temporary-overlay-map): Add on-exit argument.
5726
5727 2013-06-13 Glenn Morris <rgm@gnu.org>
5728
5729 * startup.el (tty-handle-args):
5730 Don't just discard "--" and anything after. (Bug#14608)
5731
5732 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
5733
5734 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
5735
5736 Implement changes in Secret Service API. Make it backward compatible.
5737 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
5738 (secrets-create-item): Use it. Prefix properties with interface.
5739
5740 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
5741
5742 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
5743 (term-emulate-terminal): Respect term-suppress-hard-newline.
5744
5745 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
5746
5747 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5748 Only remove a `thumb-file' overlay. (Bug#14548)
5749
5750 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
5751
5752 * mail/reporter.el (reporter-submit-bug-report):
5753 Handle missing package-name. (Bug#14600)
5754
5755 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5756
5757 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
5758 (reftex-citation-prompt, reftex-default-bibliography)
5759 (reftex-bib-or-thebib, reftex-get-bibfile-list)
5760 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
5761 (reftex-bib-sort-author, reftex-bib-sort-year)
5762 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
5763 (reftex-extract-bib-entries-from-thebibliography)
5764 (reftex-get-bibkey-default, reftex-get-bib-names)
5765 (reftex-parse-bibtex-entry, reftex-get-bib-field)
5766 (reftex-format-bib-entry, reftex-parse-bibitem)
5767 (reftex-format-bibitem, reftex-do-citation)
5768 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
5769 (reftex-restrict-bib-matches, reftex-extract-bib-file)
5770 (reftex-insert-bib-matches, reftex-format-citation)
5771 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
5772 (reftex-create-bibtex-file): Add docstrings, mostly by converting
5773 existing comments into docstrings.
5774
5775 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5776
5777 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
5778
5779 2013-06-12 Andreas Schwab <schwab@suse.de>
5780
5781 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
5782 for auto-save files.
5783
5784 2013-06-12 Glenn Morris <rgm@gnu.org>
5785
5786 * ido.el (ido-delete-ignored-files): Remove.
5787 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
5788 Go back to calling ido-ignore-item-p directly.
5789
5790 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
5791
5792 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
5793
5794 * ido.el (ido-delete-ignored-files): New function,
5795 split from ido-make-file-list-1.
5796 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
5797 (ido-make-file-list-1): Use ido-delete-ignored-files.
5798
5799 2013-06-12 Leo Liu <sdl.web@gmail.com>
5800
5801 * progmodes/octave.el (inferior-octave-startup)
5802 (inferior-octave-completion-table)
5803 (inferior-octave-track-window-width-change)
5804 (octave-eldoc-function-signatures, octave-help)
5805 (octave-find-definition): Use single quoted strings.
5806 (inferior-octave-startup-args): Change default value.
5807 (inferior-octave-startup): Do not hard code "-i" and
5808 "--no-line-editing".
5809 (inferior-octave-resync-dirs): Add optional arg NOERROR.
5810 (inferior-octave-directory-tracker): Use it.
5811 (octave-goto-function-definition): Robustify.
5812 (octave-help): Support highlighting operators in 'See also'.
5813 (octave-find-definition): Find subfunctions only in Octave mode.
5814
5815 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5816
5817 * help-fns.el (help-fns--compiler-macro): If the handler function is
5818 named, then put a link to it.
5819 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
5820 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
5821 (cl-typep): Use it.
5822 (cl-eval-when): Simplify debug spec.
5823 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
5824 compiler-macro function instead of setting `compiler-macro-file'.
5825
5826 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
5827
5828 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
5829 * vc/vc-hooks.el (vc-stay-local): Doc fix.
5830
5831 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5832 Daniel Hackney <dan@haxney.org>
5833
5834 First part of Daniel Hackney's patch to package.el.
5835 * emacs-lisp/package.el: Use defstruct.
5836 (package-desc): New, main struct.
5837 (package--bi-desc, package--ac-desc): New structs, used to describe the
5838 format in external files.
5839 (package-desc-vers): Replace with package-desc-version accessor.
5840 (package-desc-doc): Replace with package-desc-summary accessor.
5841 (package-activate-1): Remove `package' arg since the pkg-vec now
5842 includes the name.
5843 (define-package): Use package-desc-from-define.
5844 (package-unpack-single): Change file-name arg to be a symbol.
5845 (package--add-to-archive-contents): Use package-desc-create and new
5846 accessor functions to package--ac-desc.
5847 (package-buffer-info, package-tar-file-info): Return a package-desc.
5848 (package-install-from-buffer): Remove `type' argument. Change pkg-info
5849 arg to be a package-desc.
5850 (package-install-file): Adjust accordingly. Use \' to match EOS.
5851 (package--from-builtin): New function.
5852 (describe-package-1, package-menu--generate): Use it.
5853 (package--make-autoloads-and-compile): Change name arg to be a symbol.
5854 (package-generate-autoloads): Idem and return the name of the file.
5855 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5856 Change pkg-info arg to be a package-desc.
5857 Use package-make-ac-desc.
5858 (package-upload-file): Use \' to match EOS.
5859 * finder.el (finder-compile-keywords): Use package-make-builtin.
5860
5861 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5862
5863 * vc/vc.el (vc-deduce-fileset): Change error message.
5864 (vc-read-backend): New function.
5865 (vc-next-action): Use it.
5866
5867 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
5868
5869 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
5870 (prolog-font-lock-keywords): Use regexp-opt instead.
5871 Don't manually highlight strings.
5872 (prolog-mode-variables): Simplify comment-start-skip.
5873 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
5874
5875 * emacs-lisp/generic.el (generic--normalise-comments)
5876 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
5877 (generic-mode-set-comments): Use them.
5878 (generic-bracket-support): Use setq-local.
5879 (generic-make-keywords-list): Declare obsolete.
5880
5881 2013-06-11 Glenn Morris <rgm@gnu.org>
5882
5883 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5884 Prettify after setting font-lock-defaults. (Bug#14574)
5885
5886 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
5887
5888 * replace.el (query-replace, occur-read-regexp-defaults-function)
5889 (replace-search):
5890 * subr.el (declare-function, number-sequence, local-set-key)
5891 (substitute-key-definition, locate-user-emacs-file)
5892 (with-silent-modifications, split-string, eval-after-load):
5893 Fix typos, remove unneeded backslashes and reflow some docstrings.
5894
5895 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5896
5897 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
5898 default for Elisp files.
5899
5900 2013-06-11 Glenn Morris <rgm@gnu.org>
5901
5902 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
5903 although define-derived-mode was doing this anyway. (Bug#14583)
5904
5905 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
5906
5907 * allout.el (allout-encryption-plaintext-sanitization-regexps):
5908 Fix make-variable-buffer-local call to refer to the correct variable.
5909
5910 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
5911
5912 * eshell/em-term.el (eshell-visual-commands)
5913 (eshell-visual-subcommands, eshell-visual-options):
5914 Add summary line to docstrings. Add cross-references.
5915
5916 2013-06-10 Glenn Morris <rgm@gnu.org>
5917
5918 * epa.el (epa-read-file-name): New function. (Bug#14510)
5919 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
5920
5921 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
5922
5923 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
5924 output redirection to be ignored with visual commands.
5925
5926 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
5927
5928 * eshell/em-term.el (eshell-visual-command-p): New function.
5929 (eshell-term-initialize): Move long lambda to separate function
5930 eshell-visual-command-p.
5931 * eshell/em-dirs.el (eshell-dirs-initialise):
5932 * eshell/em-script.el (eshell-script-initialize):
5933 Add missing #' to lambda.
5934
5935 2013-06-08 Leo Liu <sdl.web@gmail.com>
5936
5937 * progmodes/octave.el (octave-add-log-current-defun): New function.
5938 (octave-mode): Set add-log-current-defun-function.
5939 (octave-goto-function-definition): Do not move point if not found.
5940 (octave-find-definition): Enhance to try subfunctions first.
5941
5942 2013-06-08 Glenn Morris <rgm@gnu.org>
5943
5944 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5945 (byte-compile-backward-char, byte-compile-backward-word):
5946 Improve previous change, to handle non-explicit nil.
5947
5948 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5949
5950 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
5951 (smie--opener/closer-at-point): New function.
5952 (smie--matching-block-data): Use it. Don't match from right after an
5953 opener or right before a closer. Obey smie-blink-matching-inners.
5954 Don't signal a mismatch for repeated inners like "switch..case..case".
5955
5956 2013-06-07 Leo Liu <sdl.web@gmail.com>
5957
5958 * progmodes/octave.el (octave-mode): Set comment-use-global-state
5959 to t. (Bug#14303)
5960 (octave-function-header-regexp): Fix. (Bug#14570)
5961 (octave-help-mode-finish-hook, octave-help-mode-finish):
5962 Remove. Just use temp-buffer-show-hook.
5963
5964 * newcomment.el (comment-search-backward): Revert last change.
5965 (Bug#14434)
5966
5967 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
5968
5969 2013-06-07 Eli Zaretskii <eliz@gnu.org>
5970
5971 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
5972 through xargs, to avoid failure due to MS-Windows limitations on
5973 command-line length.
5974
5975 2013-06-06 Glenn Morris <rgm@gnu.org>
5976
5977 * font-lock.el (lisp-font-lock-keywords-2):
5978 Treat user-error like error.
5979
5980 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5981 (byte-compile-backward-char, byte-compile-backward-word):
5982 Handle explicit nil arguments. (Bug#14565)
5983
5984 2013-06-05 Alan Mackenzie <acm@muc.de>
5985
5986 * isearch.el (isearch-allow-prefix): New user option.
5987 (isearch-other-meta-char): Don't exit isearch when a prefix
5988 argument is typed whilst `isearch-allow-prefix' is non-nil.
5989 (Bug#9706)
5990
5991 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5992
5993 * autorevert.el (auto-revert-notify-handler): Use memq.
5994 Hide assertion failure.
5995
5996 * skeleton.el: Use cl-lib.
5997 (skeleton-further-elements): Use defvar-local.
5998 (skeleton-insert): Use cl-progv.
5999
6000 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6001
6002 * progmodes/prog-mode.el (prog-prettify-symbols)
6003 (prog-prettify-install): Update docstrings.
6004
6005 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6006
6007 * simple.el: Move all the prog-mode code to prog-mode.el.
6008 * progmodes/prog-mode.el: New file.
6009 * loadup.el: Add prog-mode.el.
6010
6011 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6012
6013 * simple.el (prog-prettify-symbols): Add version.
6014 (prog-prettify-install): Add convenience function to prettify symbols.
6015
6016 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
6017 (perl--augmented-font-lock-keywords-1)
6018 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
6019 variables and use it.
6020
6021 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6022 (cfengine3-mode): Remove unneeded variable and use it.
6023
6024 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6025 (lisp--augmented-font-lock-keywords-1)
6026 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
6027 Remove unneeded variables and use it.
6028
6029 2013-06-05 João Távora <joaotavora@gmail.com>
6030
6031 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
6032 to point when opening the connection. (Bug#14380)
6033
6034 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6035
6036 * subr.el (load-history-regexp, load-history-filename-element)
6037 (eval-after-load, after-load-functions, do-after-load-evaluation)
6038 (eval-next-after-load, display-delayed-warnings)
6039 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
6040 definition of save-match-data.
6041 (overriding-local-map): Remove accidental obsolescence declaration.
6042
6043 * emacs-lisp/edebug.el (edebug-result): Move before first use.
6044
6045 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6046
6047 Generalize symbol prettify support to prog-mode and implement it
6048 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
6049 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
6050 (prog--prettify-font-lock-compose-symbol)
6051 (prog-prettify-font-lock-symbols-keywords): New variables and
6052 functions to support symbol prettification.
6053 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6054 (lisp--augmented-font-lock-keywords-1)
6055 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
6056 (lisp--prettify-symbols-alist): Implement prettify of lambda.
6057 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6058 (cfengine3--prettify-symbols-alist, cfengine3-mode):
6059 Implement prettify of -> => :: strings.
6060 * progmodes/perl-mode.el (perl-prettify-symbols)
6061 (perl--font-lock-compose-symbol)
6062 (perl--font-lock-symbols-keywords): Move to prog-mode.
6063 (perl--prettify-symbols-alist): Prettify -> => :: strings.
6064 (perl-font-lock-keywords-1)
6065 (perl-font-lock-keywords-2): Remove explicit prettify support.
6066 (perl--augmented-font-lock-keywords)
6067 (perl--augmented-font-lock-keywords-1)
6068 (perl--augmented-font-lock-keywords-2, perl-mode):
6069 Implement prettify support.
6070
6071 2013-06-05 Leo Liu <sdl.web@gmail.com>
6072
6073 Re-implement smie matching block highlight using
6074 show-paren-data-function. (Bug#14395)
6075 * emacs-lisp/smie.el (smie-matching-block-highlight)
6076 (smie--highlight-matching-block-overlay)
6077 (smie--highlight-matching-block-lastpos)
6078 (smie-highlight-matching-block)
6079 (smie-highlight-matching-block-mode): Remove.
6080 (smie--matching-block-data-cache): New variable.
6081 (smie--matching-block-data): New function.
6082 (smie-setup): Use smie--matching-block-data for
6083 show-paren-data-function.
6084
6085 * progmodes/octave.el (octave-mode-menu): Fix.
6086 (octave-find-definition): Skip garbage lines.
6087
6088 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6089
6090 Fix compilation error with simultaneous dynamic+lexical scoping.
6091 Add warning when a defvar appears after the first let-binding.
6092 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
6093 (byte-compile-close-variables): Initialize it.
6094 (byte-compile--declare-var): New function.
6095 (byte-compile-file-form-defvar)
6096 (byte-compile-file-form-define-abbrev-table)
6097 (byte-compile-file-form-custom-declare-variable): Use it.
6098 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
6099 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
6100 (byte-compile-bind): Handle dynamic bindings that shadow
6101 lexical bindings.
6102 (byte-compile-unbind): Make arg non-optional.
6103 (byte-compile-let): Simplify.
6104 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
6105 (cconv--analyse-function, cconv-analyse-form): Populate it.
6106 Protect byte-compile-bound-variables to limit the scope of defvars.
6107 (cconv-analyse-form): Add missing rule for (defvar <foo>).
6108 Remove unneeded rule for `declare'.
6109
6110 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
6111 so as to avoid depending on cl-adjoin at run-time.
6112 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
6113
6114 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
6115 (macroexp--warn-and-return): Use it.
6116
6117 2013-06-05 Leo Liu <sdl.web@gmail.com>
6118
6119 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
6120
6121 2013-06-04 Leo Liu <sdl.web@gmail.com>
6122
6123 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
6124 (compilation-auto-jump): Suppress the "Mark set" message to give
6125 way to exit message.
6126
6127 2013-06-04 Alan Mackenzie <acm@muc.de>
6128
6129 Remove faulty optimisation from indentation calculation.
6130 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
6131 search limit based on 2000 characters back from indent-point.
6132
6133 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6134
6135 * eshell/em-term.el (cl-lib): Require `cl-lib'.
6136
6137 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6138
6139 * emacs-lisp/lisp.el: Use lexical-binding.
6140 (lisp--local-variables-1, lisp--local-variables): New functions.
6141 (lisp--local-variables-completion-table): New var.
6142 (lisp-completion-at-point): Use it complete let-bound vars.
6143
6144 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
6145 eagerly (bug#14422).
6146
6147 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
6148
6149 * autorevert.el (auto-revert-notify-enabled)
6150 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
6151 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
6152 (auto-revert-notify-handler): Handle also gfilenotify.
6153
6154 * subr.el (file-notify-handle-event): New defun. Replacing ...
6155 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
6156 Remove.
6157
6158 2013-06-03 Juri Linkov <juri@jurta.org>
6159
6160 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
6161 `M-s h .'. (Bug#14427)
6162
6163 * hi-lock.el (highlight-symbol-at-point): New alias for the new
6164 command `hi-lock-face-symbol-at-point'.
6165 (hi-lock-face-symbol-at-point): New command.
6166 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
6167 (hi-lock-menu): Add `highlight-symbol-at-point'.
6168 (hi-lock-mode): Doc fix.
6169
6170 * isearch.el (isearch-forward-symbol-at-point): New command.
6171 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
6172 (isearch-highlight-regexp): Add a regexp which matches
6173 words/symbols for word/symbol mode.
6174
6175 * subr.el (find-tag-default-bounds): New function with the body
6176 mostly moved from `find-tag-default'.
6177 (find-tag-default): Move most code to `find-tag-default-bounds',
6178 call it and apply `buffer-substring-no-properties' afterwards.
6179
6180 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6181
6182 * eshell/em-term.el (eshell-term-initialize):
6183 Use `cl-intersection' rather than `intersection'.
6184
6185 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
6186
6187 * vc/log-view.el: Doc fix.
6188 (log-view-mode-map): Copy keymap from `special-mode-map'.
6189
6190 2013-06-02 Eric Ludlam <zappo@gnu.org>
6191
6192 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
6193 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
6194 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
6195 (eieio-unbound, eieio-default-superclass)
6196 (eieio--define-field-accessors, method-static, method-before)
6197 (method-primary, method-after, method-num-lists)
6198 (method-generic-before, method-generic-primary)
6199 (method-generic-after, method-num-slots)
6200 (eieio-specialized-key-to-generic-key)
6201 (eieio--check-type, class-v, class-p)
6202 (eieio-class-name, define-obsolete-function-alias)
6203 (eieio-class-parents-fast, eieio-class-children-fast)
6204 (same-class-fast-p, class-constructor, generic-p)
6205 (generic-primary-only-p, generic-primary-only-one-p)
6206 (class-option-assoc, class-option, eieio-object-p)
6207 (class-abstract-p, class-method-invocation-order)
6208 (eieio-defclass-autoload-map, eieio-defclass-autoload)
6209 (eieio-class-un-autoload, eieio-defclass)
6210 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
6211 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
6212 (eieio--defgeneric-init-form, eieio-defgeneric-form)
6213 (eieio-defgeneric-reset-generic-form)
6214 (eieio-defgeneric-form-primary-only)
6215 (eieio-defgeneric-reset-generic-form-primary-only)
6216 (eieio-defgeneric-form-primary-only-one)
6217 (eieio-defgeneric-reset-generic-form-primary-only-one)
6218 (eieio-unbind-method-implementations)
6219 (eieio--defmethod, eieio--typep)
6220 (eieio-perform-slot-validation, eieio-validate-slot-value)
6221 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
6222 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
6223 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
6224 (eieio-slot-name-index, eieio-class-slot-name-index)
6225 (eieio-set-defaults, eieio-initarg-to-attribute)
6226 (eieio-attribute-to-initarg, eieio-c3-candidate)
6227 (eieio-c3-merge-lists, eieio-class-precedence-c3)
6228 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
6229 (eieio-class-precedence-list, eieio-generic-call-methodname)
6230 (eieio-generic-call-arglst, eieio-generic-call-key)
6231 (eieio-generic-call-next-method-list)
6232 (eieio-pre-method-execution-functions, eieio-generic-call)
6233 (eieio-generic-call-primary-only, eieiomt-method-list)
6234 (eieiomt-optimizing-obarray, eieiomt-install)
6235 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6236 (eieio-generic-form, eieio-defmethod, make-obsolete)
6237 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
6238 (defclass): Remove `eval-and-compile' from macro.
6239 (call-next-method, shared-initialize): Instead of using
6240 `scoped-class' variable, use new eieio--scoped-class, and
6241 eieio--with-scoped-class.
6242 (initialize-instance): Rename local variable 'scoped-class' to
6243 'this-class' to remove ambiguitity from old global.
6244
6245 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6246 eieio.el.
6247 (eieio--scoped-class-stack): New variable.
6248 (eieio--scoped-class): New fcn.
6249 (eieio--with-scoped-class): New scoping macro.
6250 (eieio-defclass): Use pushnew instead of add-to-list.
6251 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6252 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6253 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6254 `scoped-class' variable, use new eieio--scoped-class, and
6255 eieio--with-scoped-class.
6256
6257 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6258
6259 2013-06-02 Tassilo Horn <tsdh@gnu.org>
6260
6261 * eshell/esh-ext.el (eshell-external-command): Pass args to
6262 `eshell-find-interpreter'.
6263 (eshell-find-interpreter): Add new second parameter ARGS.
6264
6265 * eshell/em-script.el (eshell-script-initialize): Add second arg
6266 to the function added as MATCH to `eshell-interpreter-alist'.
6267
6268 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
6269 the function added as MATCH to `eshell-interpreter-alist'.
6270
6271 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6272 (eshell-visual-options): New defcustom.
6273 (eshell-escape-control-x): Adapt docstring.
6274 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6275 `eshell-visual-options' in addition to `eshell-visual-commands'.
6276 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6277
6278 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
6279
6280 * progmodes/python.el (python-indent-block-enders): Add break,
6281 continue and raise keywords.
6282
6283 2013-06-01 Glenn Morris <rgm@gnu.org>
6284
6285 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6286
6287 Plain (f)boundp silences compilation warnings since Emacs 22.1.
6288 * progmodes/cc-cmds.el (delete-forward-p):
6289 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6290 * progmodes/cc-engine.el (buffer-syntactic-context):
6291 * progmodes/cc-fonts.el (face-property-instance):
6292 * progmodes/cc-mode.el (set-keymap-parents):
6293 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6294 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6295 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
6296 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6297 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
6298
6299 * progmodes/cc-vars.el (other): Emacs has this widget since
6300 at least 21.1, so don't (re)define it.
6301
6302 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6303 Replace the obsolete alias pcomplete-arg-quote-list.
6304
6305 2013-06-01 Leo Liu <sdl.web@gmail.com>
6306
6307 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6308 punctuation syntax.
6309 (inferior-octave-minimal-columns)
6310 (inferior-octave-last-column-width): New variables.
6311 (inferior-octave-track-window-width-change): New function.
6312 (inferior-octave-mode): Adjust column width so that Octave output,
6313 for example from 'ls', can fit into the window nicely.
6314
6315 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6316
6317 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6318 Highlight expansions inside regexp literals.
6319
6320 2013-05-31 Glenn Morris <rgm@gnu.org>
6321
6322 * obsolete/sym-comp.el (symbol-complete):
6323 Replace obsolete completion-annotate-function.
6324
6325 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6326
6327 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6328
6329 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6330 New function, checks if point is inside a literal that allows
6331 expression expansion.
6332 (ruby-syntax-propertize-expansion): Use it.
6333 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6334 around the body.
6335
6336 2013-05-30 Juri Linkov <juri@jurta.org>
6337
6338 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6339 to "\M-si".
6340 (isearch-invisible): New variable.
6341 (isearch-forward): Doc fix.
6342 (isearch-mode): Set `isearch-invisible'
6343 to the value of `search-invisible'.
6344 (isearch-toggle-case-fold): Doc fix.
6345 (isearch-toggle-invisible): New command.
6346 (isearch-query-replace): Let-bind `search-invisible'
6347 to the value of `isearch-invisible'.
6348 (isearch-search): Use `isearch-invisible' instead of
6349 `search-invisible'. Let-bind `search-invisible'
6350 to the value of `isearch-invisible'. (Bug#11378)
6351
6352 2013-05-30 Juri Linkov <juri@jurta.org>
6353
6354 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6355 call when `query-flag' is nil and `search-invisible' is non-nil.
6356 (Bug#11746)
6357
6358 2013-05-30 Glenn Morris <rgm@gnu.org>
6359
6360 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6361
6362 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6363 (cc-require): Suppress spurious "noruntime" warnings.
6364 (cc-require-when-compile): Use fboundp, for sake of compiler.
6365
6366 * progmodes/cc-mode.el: Move load of cc-vars before that of
6367 cc-langs (which in turn loads cc-vars), to quieten compiler.
6368
6369 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6370
6371 * paren.el: Simplify the code.
6372 (show-paren-mode): Always start the timer.
6373 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6374 (show-paren--overlay, show-paren--overlay-1): Rename from
6375 show-paren-overlay and show-paren-overlay-1, and initialize to an
6376 overlay rather than to nil.
6377 (show-paren-function): Misc cleanup and simplifications.
6378
6379 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6380
6381 * paren.el (show-paren-data-function): New hook.
6382 (show-paren--default): New function, extracted from show-paren-function.
6383 (show-paren-function): Use show-paren-data-function.
6384
6385 2013-05-30 Glenn Morris <rgm@gnu.org>
6386
6387 * ielm.el (ielm-map, ielm-complete-symbol):
6388 Use completion-at-point rather than obsolete functions.
6389 (inferior-emacs-lisp-mode): Doc fix.
6390 Set completion-at-point-functions, rather than
6391 comint-dynamic-complete-functions.
6392
6393 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6394 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6395 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6396
6397 * image.el (image-animated-p): Tweak definition.
6398
6399 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6400 (rlogin-process-connection-type): Tweak default. Add set-after.
6401 (rlogin-host): Doc fix.
6402 (rlogin): Tweak prompt.
6403 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6404
6405 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6406 * progmodes/tcl.el (inferior-tcl-mode-map):
6407 Use completion-at-point rather than obsolete alias.
6408
6409 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6410
6411 * minibuffer.el (read-file-name-completion-ignore-case):
6412 Move before completion--in-region, for eager macro expansion.
6413
6414 2013-05-29 Juri Linkov <juri@jurta.org>
6415
6416 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6417 for total count of matching lines. Add `global-matches' for total
6418 count of matches. Rename `matches' to `lines' for count of
6419 matching lines. Add `matches' for count of matches.
6420 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6421 to `prev-line' for line number of prev match endpt.
6422 Increment `matches' for every match. Print the number of
6423 matching lines in the header.
6424 (occur-context-lines): Rename `lines' to `curr-line'.
6425 Rename `prev-lines' to `prev-line'. (Bug#14017)
6426
6427 2013-05-29 Juri Linkov <juri@jurta.org>
6428
6429 * replace.el (perform-replace): Add `skip-read-only-count',
6430 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6431 Increment them for corresponding conditions and report the number
6432 of skipped occurrences in the final message. (Bug#11746)
6433 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6434 (replace-string, replace-regexp): Doc fix.
6435
6436 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6437
6438 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6439
6440 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
6441 prog-mode-map (bug#14504).
6442
6443 2013-05-29 Leo Liu <sdl.web@gmail.com>
6444
6445 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6446 (octave-help): Small simplification.
6447
6448 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6449 off the highlight first.
6450
6451 2013-05-29 Glenn Morris <rgm@gnu.org>
6452
6453 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6454 Handle idlwave-last-system-routine-info-cons-cell being nil.
6455
6456 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6457 (idlwave-write-paths): Simplify via with-temp-buffer.
6458
6459 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6460 * emulation/cua-rect.el: Also load cua-base at run time.
6461
6462 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6463 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6464 (cperl-imenu-on-info): Require imenu.
6465
6466 2013-05-28 Alan Mackenzie <acm@muc.de>
6467
6468 Handle "capitalised keywords" correctly.
6469 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
6470
6471 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
6472
6473 * eshell/em-unix.el: Add -r option to cp.
6474
6475 2013-05-28 Glenn Morris <rgm@gnu.org>
6476
6477 * vc/vc-arch.el (vc-exec-after): Declare.
6478 (vc-switches): Autoload.
6479 * vc/vc-bzr.el: No need to require vc when compiling.
6480 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6481 (vc-resynch-buffer, vc-dir-refresh): Declare.
6482 (vc-setup-buffer, vc-switches): Autoload.
6483 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6484 (vc-resynch-buffer): Declare.
6485 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
6486 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
6487 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6488 (grep-read-regexp, grep-read-files, grep-expand-template)
6489 (vc-dir-refresh): Declare.
6490 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6491 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6492 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
6493 * vc/vc-mtn.el (vc-exec-after): Declare.
6494 (vc-switches): Autoload.
6495 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6496 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6497 (vc-file-tree-walk): Declare.
6498 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
6499 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
6500 (vc-tag-precondition, vc-rename-master): Autoload.
6501 * vc/vc-svn.el (vc-exec-after): Declare.
6502 (vc-switches, vc-setup-buffer): Autoload.
6503 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6504 Autoload.
6505 (vc-resynch-buffer): Declare.
6506
6507 * obsolete/fast-lock.el (byte-compile-warnings):
6508 Don't warn about obsolete features in this obsolete file.
6509
6510 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6511 Move definition before use.
6512
6513 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6514 (dun-unix-verbs): Remove dun-zippy.
6515 (dun-zippy): Remove function.
6516
6517 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6518
6519 2013-05-27 Juri Linkov <juri@jurta.org>
6520
6521 * replace.el (replace-search): New function with code moved out
6522 from `perform-replace'.
6523 (replace-highlight, replace-dehighlight): Move function definitions
6524 up closer to `replace-search'. (Bug#11746)
6525
6526 2013-05-27 Juri Linkov <juri@jurta.org>
6527
6528 * replace.el (perform-replace): Ignore invisible matches.
6529 In addition to checking `query-replace-skip-read-only', also
6530 filter out matches by calling `run-hook-with-args-until-failure'
6531 on `isearch-filter-predicates', and also check `search-invisible'
6532 for t or call `isearch-range-invisible'.
6533 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
6534
6535 2013-05-27 Juri Linkov <juri@jurta.org>
6536
6537 * isearch.el (isearch-filter-predicates): Rename from
6538 `isearch-filter-predicate'. Doc fix. (Bug#11378)
6539 (isearch-message-prefix): Display text from the property
6540 `isearch-message-prefix' of the currently active filters.
6541 (isearch-search): Don't compare `isearch-filter-predicate' with
6542 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
6543 on `isearch-filter-predicates'. Also check `search-invisible' for t
6544 or call `isearch-range-invisible'.
6545 (isearch-filter-visible): Make obsolete.
6546 (isearch-lazy-highlight-search):
6547 Call `run-hook-with-args-until-failure' on
6548 `isearch-filter-predicates' and use `isearch-range-invisible'.
6549
6550 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
6551 `isearch-filter-predicates' instead of `funcall'ing
6552 `isearch-filter-predicate'.
6553 (Info-mode): Set `Info-isearch-filter' to
6554 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
6555
6556 * dired-aux.el (dired-isearch-filter-predicate-orig):
6557 Remove variable.
6558 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
6559 (dired-isearch-filenames-end): Add and remove
6560 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
6561 instead of changing the value of `isearch-filter-predicate'.
6562 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
6563 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
6564 Put property `isearch-message-prefix' to "filename " on
6565 `dired-isearch-filter-filenames'.
6566
6567 * wdired.el (wdired-change-to-wdired-mode):
6568 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
6569 locally instead of changing `isearch-filter-predicate'.
6570 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
6571
6572 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
6573
6574 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
6575 return the commit hash (Bug#14459). Also set the
6576 `vc-git-detached' property.
6577 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
6578 (vc-git-mode-line-string): Use the same help-echo format whether
6579 in detached mode or not, because we know the actual revision now.
6580 When in detached mode, shorten the revision to 7 chars.
6581
6582 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6583
6584 * emacs-lisp/easy-mmode.el (define-minor-mode):
6585 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
6586 mode hook and provide a docstring.
6587
6588 2013-05-27 Alan Mackenzie <acm@muc.de>
6589
6590 Remove spurious syntax-table text properties inserted by C-y.
6591 * progmodes/cc-mode.el (c-after-change): Also clear hard
6592 syntax-table property with value nil.
6593
6594 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
6595
6596 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
6597 when reading the events; the buffer layout shall not be changed.
6598
6599 2013-05-27 Leo Liu <sdl.web@gmail.com>
6600
6601 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
6602 New variable.
6603 (inferior-octave-directory-tracker): Automatically re-sync
6604 default-directory.
6605 (octave-help): Improve handling of 'See also'.
6606
6607 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6608
6609 * doc-view.el: Minor naming convention tweaks.
6610 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
6611
6612 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
6613 even if there's no `display' property yet (bug#14435).
6614
6615 2013-05-25 Eli Zaretskii <eliz@gnu.org>
6616
6617 * subr.el (unmsys--file-name): Rename from reveal-filename.
6618
6619 * Makefile.in (custom-deps, finder-data, autoloads)
6620 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6621 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6622 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
6623
6624 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6625
6626 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
6627 error-completion on the first 2 args of condition-case (bug#14446).
6628 Don't burp at EOB.
6629
6630 2013-05-25 Leo Liu <sdl.web@gmail.com>
6631
6632 * comint.el (comint-previous-matching-input): Do not flood the
6633 *Messages* buffer with trivial messages.
6634
6635 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6636
6637 * progmodes/flymake.el (flymake-nop): Don't return a string.
6638 (flymake-set-at): Fix typo.
6639
6640 * simple.el (read--expression): New function, extracted from
6641 eval-expression. Set completion-at-point-functions (bug#14465).
6642 (eval-expression, eval-minibuffer): Use it.
6643
6644 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
6645
6646 * progmodes/flymake.el (flymake-save-buffer-in-file)
6647 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
6648 (flymake-selected-frame, flymake-log, flymake-ins-after)
6649 (flymake-set-at, flymake-get-buildfile-from-cache)
6650 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
6651 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
6652 Refine the doc string.
6653 (flymake-get-file-name-mode-and-masks): Reformat.
6654 (flymake-get-real-file-name-function): Fix a minor bug.
6655
6656 2013-05-24 Juri Linkov <juri@jurta.org>
6657
6658 * progmodes/grep.el (grep-mode-font-lock-keywords):
6659 Support =linenumber= format used by git-grep for lines with
6660 function names. (Bug#13549)
6661
6662 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6663
6664 * progmodes/octave.el (octave-smie-rules): Return nil rather than
6665 0 after a semi-colon; it works better for smie-auto-fill.
6666 (octave--indent-new-comment-line): New function.
6667 (octave-indent-new-comment-line): Use it (indirectly).
6668 (octave-mode): Don't disable smie-auto-fill. Use add-function to
6669 modify comment-line-break-function.
6670
6671 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
6672 (smie-setup): Use add-function to set it.
6673
6674 2013-05-24 Sam Steingold <sds@gnu.org>
6675
6676 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
6677 argument (before the `interactive' argument).
6678
6679 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6680
6681 * image-mode.el (image-mode-winprops): Add winprops to
6682 image-mode-winprops-alist before running
6683 image-mode-new-window-functions.
6684 * doc-view.el (doc-view-new-window-function): Don't delay
6685 doc-view-goto-page via timers (bug#14435).
6686
6687 2013-05-24 Tassilo Horn <tsdh@gnu.org>
6688
6689 * doc-view.el: Integrate with desktop.el. (Bug#14435)
6690 (doc-view-desktop-save-buffer): New function.
6691 (doc-view-restore-desktop-buffer): New function.
6692 (desktop-buffer-mode-handlers):
6693 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
6694 handler.
6695 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
6696 `desktop-save-buffer' function.
6697
6698 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
6699
6700 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
6701 (tramp-gvfs-file-name-handler): Raise a user error when
6702 `tramp-gvfs-enabled' is nil.
6703 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
6704 Do not raise a user error when loading package. (Bug#14447)
6705
6706 * net/xesam.el: Move to obsolete/.
6707
6708 2013-05-24 Glenn Morris <rgm@gnu.org>
6709
6710 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
6711
6712 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
6713
6714 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
6715 (Info-find-node, Man-getpage-in-background): Declare.
6716
6717 * mail/unrmail.el (unrmail):
6718 Replace obsolete detect-coding-with-priority.
6719
6720 * net/socks.el (socks-split-string): Use this rather than split-string.
6721 (socks-nslookup-host): Update for above change.
6722 (dynamic-choice, s5-dynamic-choice-match)
6723 (s5-dynamic-choice-match-inline, s5-widget-value-create):
6724 Comment out unused code.
6725
6726 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
6727 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
6728 (gud-tooltip-echo-area): Make obsolete.
6729 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
6730
6731 * progmodes/js.el (js--optimize-arglist): Declare.
6732
6733 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
6734
6735 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
6736 (ediff-window-C): Declare.
6737
6738 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
6739 Tweak requires to silence compiler.
6740
6741 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
6742 (he-search-string, he-tried-table, he-expand-list)
6743 (he-init-string, he-string-member, he-substitute-string)
6744 (he-reset-string): Declare.
6745
6746 * obsolete/options.el (list-options): Use custom-variable-p,
6747 rather than obsolete alias.
6748
6749 2013-05-23 Sam Steingold <sds@gnu.org>
6750
6751 * simple.el (shell-command-on-region): Pass the `replace' argument
6752 down to `call-process-region' to comply with the doc as reported on
6753 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
6754
6755 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
6756
6757 * emacs-lisp/smie.el (smie-indent-forward-token)
6758 (smie-indent-backward-token): Handle string tokens (bug#14381).
6759
6760 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6761
6762 * ielm.el (ielm-menu): New menu.
6763 (inferior-emacs-lisp-mode): Set comment-start.
6764
6765 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6766
6767 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
6768 Fix deactivate action.
6769
6770 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
6771 Add cleveref macros.
6772
6773 * lisp/textmodes/reftex-parse.el
6774 (reftex-locate-bibliography-files): Accept options for
6775 bibliography commands.
6776 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
6777 Add addbibresource. Basic Biblatex support.
6778
6779 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
6780
6781 * net/tramp-gvfs.el (top):
6782 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
6783 when loading package. (Bug#14447)
6784
6785 2013-05-23 Glenn Morris <rgm@gnu.org>
6786
6787 * progmodes/js.el: No need to load comint when compiling.
6788 (ring-insert, comint-send-string, comint-send-input)
6789 (comint-last-input-end, ido-chop): Declare.
6790
6791 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
6792 * vc/ediff-mult.el: Adjust requires.
6793 (ediff-directories-internal, ediff-directory-revisions-internal)
6794 (ediff-patch-file-internal): Declare.
6795 * vc/ediff-ptch.el: Adjust requires.
6796 (ediff-use-last-dir, ediff-buffers-internal): Declare.
6797 (ediff-find-file): Autoload.
6798 * vc/ediff-util.el: No need to load ediff when compiling.
6799 (ediff-regions-internal): Declare.
6800 * vc/ediff-wind.el: Adjust requires.
6801 (ediff-compute-toolbar-width): Define when compiling.
6802 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
6803 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
6804 (dired-get-filename, dired-get-marked-files)
6805 (ediff-last-dir-patch, ediff-patch-default-directory)
6806 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
6807 (ediff-patch-buffer-internal): Declare.
6808
6809 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
6810 (ispell-process, ispell-buffer-local-words, lm-summary)
6811 (lm-section-start, lm-section-end): Declare.
6812 (checkdoc-ispell-init): Simplify.
6813
6814 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
6815 (he-string-member, he-reset-string, he-substitute-string): Declare.
6816
6817 * eshell/em-ls.el: Adjust requires.
6818 (eshell-glob-regexp): Declare.
6819 * eshell/em-tramp.el: Adjust requires.
6820 (eshell-parse-command): Autoload.
6821 * eshell/em-xtra.el: Adjust requires.
6822 (eshell-parse-command): Autoload.
6823 * eshell/esh-ext.el: Adjust requires.
6824 (eshell-parse-command, eshell-close-handles): Autoload.
6825 * eshell/esh-io.el: Adjust requires.
6826 (eshell-output-filter): Autoload.
6827 * eshell/esh-util.el: No need to load tramp when compiling.
6828 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
6829 Declare.
6830 (eshell-parse-ange-ls): Require ange-ftp and tramp.
6831 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6832 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
6833 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
6834 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
6835 * eshell/esh-opt.el, eshell/esh-proc.el:
6836 * eshell/esh-var.el: Adjust requires.
6837 * eshell/eshell.el: Do not require esh-util twice.
6838 (eshell-add-input-to-history): Declare.
6839 (eshell-command): Check history module is active before using it.
6840
6841 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
6842
6843 2013-05-22 Leo Liu <sdl.web@gmail.com>
6844
6845 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
6846
6847 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
6848
6849 * autorevert.el (auto-revert-notify-add-watch)
6850 (auto-revert-notify-handler): Add `attrib' for the inotify case,
6851 it indicates changes in file modification time.
6852
6853 2013-05-22 Glenn Morris <rgm@gnu.org>
6854
6855 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
6856 Always delete the autoloaded function from the noruntime and
6857 unresolved functions lists.
6858
6859 * allout.el: No need to load epa, epg, overlay when compiling.
6860 (epg-context-set-passphrase-callback, epg-list-keys)
6861 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
6862 (epg-key-user-id-list): Declare.
6863
6864 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
6865 (viper-set-parsing-style-toggling-macro)
6866 (viper-set-emacs-state-searchstyle-macros):
6867 Use called-interactively-p on Emacs.
6868 (viper-looking-back): Make it an obsolete alias. Update callers.
6869 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
6870 Use looking-back rather than viper-looking-back.
6871 (viper-tmp-insert-at-eob, viper-enlarge-region)
6872 (viper-read-string-with-history, viper-register-to-point)
6873 (viper-append-to-register, viper-change-state-to-vi)
6874 (viper-backward-char-carefully, viper-forward-char-carefully)
6875 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
6876 (viper-change-state-to-emacs): Declare.
6877 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
6878 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
6879 * emulation/viper-mous.el: Do not load viper-cmd.
6880 (viper-backward-char-carefully, viper-forward-char-carefully)
6881 (viper-forward-word, viper-adjust-window): Declare.
6882
6883 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
6884
6885 * progmodes/idlw-help.el (idlwave-help-fontify):
6886 Use called-interactively-p.
6887
6888 * term/w32console.el (w32-get-console-codepage)
6889 (w32-get-console-output-codepage): Declare.
6890
6891 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
6892 Remove unnecessary declarations.
6893 (dframe-message): Doc fix.
6894
6895 * info.el (dframe-select-attached-frame, dframe-current-frame):
6896 Declare.
6897
6898 * speedbar.el (speedbar-message): Make it an obsolete alias.
6899 Update all callers.
6900 (speedbar-with-attached-buffer)
6901 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
6902 (speedbar-with-writable): Use backquote.
6903 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
6904 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6905 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
6906 rather than speedbar- aliases.
6907 * mail/rmail.el: Load dframe rather than speedbar when compiling.
6908 (speedbar-make-specialized-keymap, speedbar-insert-button)
6909 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
6910 (speedbar-do-function-pointer): Declare.
6911 (rmail-speedbar-button, rmail-speedbar-find-file)
6912 (rmail-speedbar-move-message):
6913 Use dframe-with-attached-buffer rather than speedbar- alias.
6914 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
6915 (dframe-message, speedbar-make-specialized-keymap)
6916 (speedbar-add-expansion-list, speedbar-mode-functions-list)
6917 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
6918 (speedbar-insert-button, dframe-select-attached-frame)
6919 (dframe-maybee-jump-to-attached-frame)
6920 (speedbar-change-initial-expansion-list)
6921 (speedbar-previously-used-expansion-list-name): Declare.
6922 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
6923 Use dframe-message, dframe-with-attached-buffer rather than
6924 speedbar- aliases.
6925 (gud-sentinel): Silence compiler.
6926 * progmodes/vhdl-mode.el (speedbar-refresh)
6927 (speedbar-do-function-pointer, speedbar-add-supported-extension)
6928 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
6929 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
6930 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
6931 (speedbar-file-lists, speedbar-make-tag-line)
6932 (speedbar-line-directory, speedbar-goto-this-file)
6933 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
6934 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
6935 (speedbar-make-button, speedbar-reset-scanners)
6936 (speedbar-files-item-info, speedbar-line-text)
6937 (speedbar-find-file-in-frame, speedbar-set-timer)
6938 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
6939 (speedbar-with-writable): Do not (re)define it.
6940 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
6941 rather than speedbar- alias.
6942
6943 2013-05-21 Leo Liu <sdl.web@gmail.com>
6944
6945 * progmodes/octave.el (octave-mode-menu): Update and re-organize
6946 menu items.
6947 (octave-mode): Tweak fill-nobreak-predicate.
6948 (inferior-octave-startup): Check process to avoid infinite loop.
6949 (inferior-octave): Pop to buffer first to show abornmal process
6950 exit information.
6951
6952 2013-05-21 Glenn Morris <rgm@gnu.org>
6953
6954 * printing.el (pr-menu-bar): Define when compiling.
6955
6956 2013-05-21 Leo Liu <sdl.web@gmail.com>
6957
6958 * progmodes/octave.el (octave-auto-fill): Remove.
6959 (octave-indent-new-comment-line): Improve.
6960 (octave-mode): Use auto fill mode through
6961 comment-line-break-function and fill-nobreak-predicate.
6962 (octave-goto-function-definition): Support DEFUN_DLD.
6963 (octave-beginning-of-defun): Small tweak.
6964 (octave-help): Show parent directory.
6965
6966 2013-05-21 Glenn Morris <rgm@gnu.org>
6967
6968 * files.el (dired-unmark):
6969 * progmodes/gud.el (gdb-input): Update declarations.
6970
6971 * calculator.el (electric, ehelp): No need to load when compiling.
6972 (Electric-command-loop, electric-describe-mode): Declare.
6973
6974 * doc-view.el (doc-view-current-converter-processes): Move before use.
6975
6976 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6977 Move MODE-set-explicitly definition before use.
6978
6979 * international/mule-diag.el (mule-diag):
6980 Don't use obsolete window-system-version.
6981
6982 * mail/feedmail.el (smtpmail): No need to load when compiling.
6983 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
6984
6985 * mail/mail-utils.el (rfc822): No need to load when compiling.
6986 (rfc822-addresses): Autoload it.
6987 (mail-strip-quoted-names): Trivial simplification.
6988
6989 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
6990 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
6991
6992 * net/snmp-mode.el (tempo): Don't duplicate requires.
6993
6994 * progmodes/prolog.el (info): No need to load when compiling.
6995 (comint): Require before shell requires it.
6996 (Info-goto-node): Autoload it.
6997 (Info-follow-nearest-node): Declare.
6998 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
6999
7000 * textmodes/artist.el (picture-mode-exit): Declare.
7001
7002 * textmodes/reftex-parse.el (reftex-parse-from-file):
7003 Trivial rewrite so the compiler can parse it better.
7004
7005 2013-05-20 Leo Liu <sdl.web@gmail.com>
7006
7007 * progmodes/octave.el (octave-help-mode-map)
7008 (octave-help-mode-finish-hook): New variables.
7009 (octave-help-mode, octave-help-mode-finish): New functions.
7010 (octave-help): Use octave-help-mode.
7011
7012 2013-05-20 Glenn Morris <rgm@gnu.org>
7013
7014 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
7015
7016 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
7017
7018 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
7019 start at point, so that expansion starting right after opening
7020 slash in a regexp is recognized.
7021 (ruby-syntax-before-regexp-re): New defvar, extracted from
7022 ruby-syntax-propertize-function. Since the value of this regexp
7023 is looked up at runtime now, we should be able to turn
7024 `ruby-syntax-methods-before-regexp' into a defcustom later.
7025 (ruby-syntax-propertize-function): Split regexp matching into two
7026 parts, for opening and closing slashes. That allows us to skip
7027 over string interpolations and support multiline regexps.
7028 Don't call `ruby-syntax-propertize-expansions', instead use another rule
7029 for them, which calls `ruby-syntax-propertize-expansion'.
7030 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
7031 call to `ruby-syntax-propertize-function'.
7032 (ruby-syntax-propertize-expansion): Extracted from
7033 `ruby-syntax-propertize-expansions'. Handles one expansion.
7034 (ruby-syntax-propertize-percent-literal): Leave point right after
7035 the percent symbol, so that the expression expansion rule can
7036 propertize the contents.
7037 (ruby-syntax-propertize-heredoc): Leave point at bol following the
7038 heredoc openers.
7039 (ruby-syntax-propertize-expansions): Remove.
7040
7041 2013-05-18 Juri Linkov <juri@jurta.org>
7042
7043 * man.el (Man-default-man-entry): Remove `-' from the end
7044 of the default value. (Bug#14400)
7045
7046 2013-05-18 Glenn Morris <rgm@gnu.org>
7047
7048 * comint.el (comint-password-prompt-regexp):
7049 Allow "password for XXX" where XXX contains colons (eg https://...).
7050
7051 2013-05-18 Leo Liu <sdl.web@gmail.com>
7052
7053 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
7054 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
7055 (octave-source-directories): Don't check process.
7056 (octave-source-directories, octave-find-definition): Doc fix.
7057
7058 2013-05-18 Glenn Morris <rgm@gnu.org>
7059
7060 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
7061 Remove backspace/delete bindings. (Bug#14392)
7062
7063 * cus-dep.el (custom-make-dependencies): Sort the output.
7064 (custom-versions-load-alist): Convert comment to doc.
7065
7066 2013-05-17 Leo Liu <sdl.web@gmail.com>
7067
7068 * newcomment.el (comment-search-backward): Stricter in finding
7069 comment start. (Bug#14303)
7070
7071 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
7072 (octave-comment-start-skip): Properly anchored.
7073
7074 2013-05-17 Leo Liu <sdl.web@gmail.com>
7075
7076 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
7077 Clean up when turned off. (Bug#14395)
7078 (smie--highlight-matching-block-overlay): No longer buffer-local.
7079 (smie-highlight-matching-block): Adjust.
7080
7081 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
7082
7083 Doc string fix for "nanoseconds" (Bug#14406).
7084 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
7085 Fix doc string typo that had "nanoseconds" instead of "microseconds".
7086
7087 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
7088
7089 * calc/calc-units.el (math-extract-units): Preserve powers
7090 of units.
7091
7092 2013-05-17 Leo Liu <sdl.web@gmail.com>
7093
7094 * subr.el (delete-consecutive-dups): New function.
7095 * ido.el (ido-set-matches-1): Use it.
7096 * progmodes/octave.el (inferior-octave-completion-table): Use it.
7097 * ido.el (ido-remove-consecutive-dups): Remove.
7098
7099 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7100
7101 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
7102 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
7103 regexp-opt's `words'.
7104
7105 2013-05-16 Leo Liu <sdl.web@gmail.com>
7106
7107 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
7108 (smie--highlight-matching-block-overlay)
7109 (smie--highlight-matching-block-lastpos)
7110 (smie--highlight-matching-block-timer): New variables.
7111 (smie-highlight-matching-block): New function.
7112 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
7113 (smie-setup): Conditionally enable smie-blink-matching-open.
7114
7115 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
7116
7117 Sync with upstream verilog-mode r840.
7118 * progmodes/verilog-mode.el (verilog-mode-version)
7119 (verilog-mode-release-date): Update.
7120 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
7121 (verilog-sig-tieoff): Fix string error on
7122 AUTORESET with colon define, bug594. Reported by Andrew Hou.
7123 (verilog-read-decls): Fix parameters confusing
7124 AUTOINST interfaces, bug565. Reported by Leith Johnson.
7125
7126 2013-05-16 Eli Zaretskii <eliz@gnu.org>
7127
7128 * subr.el (reveal-filename): New function.
7129
7130 * loadup.el: Compute Emacs executable versions on MS-Windows,
7131 where executables have the .exe extension. Add a hard link
7132 emacs-XX.YY.ZZ.exe on MS-Windows.
7133
7134 * Makefile.in (XARGS_LIMIT): New variable.
7135 (custom-deps, finder-data, autoloads)
7136 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7137 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7138 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
7139 (compile-main): Limit xargs according to $(XARGS_LIMIT).
7140
7141 2013-05-16 Leo Liu <sdl.web@gmail.com>
7142
7143 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
7144 (octave-mode-menu, octave-mode-map): Remove its uses.
7145
7146 2013-05-16 Reto Zimmermann <reto@gnu.org>
7147
7148 Sync with upstream vhdl mode v3.34.2.
7149 * progmodes/vhdl-mode.el: Use `push' throughout.
7150 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
7151 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
7152 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
7153 (vhdl-actual-generic-name): New option to derive actual generic name.
7154 (vhdl-port-paste-signals): Replace formal by actual generics.
7155 (vhdl-beautify): New name for old group vhdl-align. Update users.
7156 (vhdl-beautify-options): New option.
7157 (vhdl-last-input-event): New compat alias. Use throughout.
7158 (vhdl-goto-line): Replace user level function `goto-line'.
7159 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
7160 vhdl-fix-statement-buffer.
7161 (vhdl-create-mode-menu): Add some entries.
7162 (vhdl-align-region-groups): Respect vhdl-beautify-options.
7163 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
7164 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
7165 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
7166 to force statements on one line.
7167 (vhdl-remove-trailing-spaces-region):
7168 New, split from vhdl-remove-trailing-spaces.
7169 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
7170 Respect vhdl-beautify-options.
7171 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
7172 (vhdl-update-sensitivity-list): Not add with index if exists without.
7173 Not include array index with signal. Ignore keywords in comments.
7174 (vhdl-get-visible-signals): Regexp tweaks.
7175 (vhdl-template-component-inst): Handle empty library.
7176 (vhdl-template-type): Add template for 'enum' type.
7177 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
7178 Use vhdl-replace-string.
7179 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
7180 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
7181 (vhdl-speedbar-initialize): Update for above name change.
7182 (vhdl-compose-wire-components): Fix in handling of constants.
7183 (vhdl-error-regexp-emacs-alist): New variable.
7184 (vhdl-error-regexp-add-emacs): New function;
7185 adds support for new compile.el (Emacs 22+)
7186 (vhdl-generate-makefile-1): Change target order for single lib. units.
7187 Allow use of absolute file names.
7188
7189 2013-05-16 Leo Liu <sdl.web@gmail.com>
7190
7191 * simple.el (prog-indent-sexp): Indent enclosing defun.
7192
7193 2013-05-15 Glenn Morris <rgm@gnu.org>
7194
7195 * cus-start.el (show-trailing-whitespace): Move to editing basics.
7196 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
7197 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
7198 (whitespace-highlight): Move to whitespace group.
7199
7200 * comint.el (comint-source):
7201 * pcmpl-linux.el (pcmpl-linux):
7202 * shell.el (shell-faces):
7203 * eshell/esh-opt.el (eshell-opt):
7204 * international/ccl.el (ccl): Remove empty custom groups.
7205
7206 * completion.el (dynamic-completion-mode):
7207 * jit-lock.el (jit-lock-debug-mode):
7208 * minibuffer.el (completion-in-region-mode):
7209 * type-break.el (type-break-mode-line-message-mode)
7210 (type-break-query-mode):
7211 * emulation/tpu-edt.el (tpu-edt-mode):
7212 * progmodes/subword.el (global-subword-mode, global-superword-mode):
7213 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7214 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
7215
7216 * term/xterm.el (xterm): Change parent group to terminals.
7217
7218 * master.el (master): Remove empty custom group.
7219 (master-mode): Remove unused :group argument.
7220 * textmodes/refill.el (refill): Remove empty custom group.
7221 (refill-mode): Remove unused :group argument.
7222
7223 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
7224
7225 * cus-dep.el: Provide a feature.
7226 (custom-make-dependencies): Ignore dotfiles (dir-locals).
7227 Don't mistakenly ignore files whose basenames match a basename
7228 from preloaded-file-list (eg cedet/ede/simple.el).
7229 Add a fallback method for getting :group.
7230
7231 2013-05-15 Juri Linkov <juri@jurta.org>
7232
7233 * isearch.el (isearch-char-by-name): Rename from
7234 `isearch-insert-char-by-name'. Doc fix.
7235 (isearch-forward): Mention `isearch-char-by-name' in
7236 the docstring. (Bug#13348)
7237
7238 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7239 `exit-minibuffer' instead of
7240 `isearch-nonincremental-exit-minibuffer'.
7241 (isearch-edit-string): Remove mention of
7242 `isearch-nonincremental-exit-minibuffer' from docstring.
7243 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7244 (isearch-forward-exit-minibuffer)
7245 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7246
7247 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7248
7249 * loadup.el: Just use unversioned DOC.
7250
7251 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7252 literals as extending to EOB.
7253 (nxml-last-fontify-end): Remove unused variable.
7254 (nxml-after-change1): Use with-silent-modifications.
7255 (nxml-extend-after-change-region): Simplify.
7256 (nxml-extend-after-change-region1): Remove function.
7257 (nxml-after-change1): Don't adjust for dependent regions.
7258 (nxml-fontify-matcher): Simplify.
7259 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7260 (xmltok-add-dependent): Remove function.
7261 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7262 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7263 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7264 unclosed <[[, <?, comment, and other literals as extending to EOB.
7265 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7266 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7267 Remove functions.
7268 (rng-do-some-validation-1): Don't mark dependent regions.
7269 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7270 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7271 (nxml-clear-dependent-regions): Remove functions.
7272 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7273 (nxml-ensure-scan-up-to-date):
7274 Don't clear&mark dependent regions.
7275
7276 2013-05-15 Leo Liu <sdl.web@gmail.com>
7277
7278 * progmodes/octave.el (octave-goto-function-definition):
7279 Improve and fix callers.
7280
7281 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7282
7283 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7284 the setter (bug#14387).
7285
7286 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7287 surrounding group (bug#14402).
7288
7289 2013-05-14 Juri Linkov <juri@jurta.org>
7290
7291 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7292 (Bug#14390)
7293
7294 2013-05-14 Glenn Morris <rgm@gnu.org>
7295
7296 * progmodes/f90.el (f90-imenu-generic-expression):
7297 Fix typo in 2013-05-08 change. (Bug#14402)
7298
7299 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7300
7301 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7302 Remove signals for which replies are never received.
7303
7304 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7305
7306 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7307 (gdb-handler-alist, gdb-handler-number): Remove variables.
7308 (gdb-handler-list): New variable.
7309 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7310 (gdb-pending-handler-p, gdb-handle-reply)
7311 (gdb-remove-all-pending-triggers): New functions.
7312 (gdb-discard-unordered-replies): New defcustom.
7313 (gdb-handler): New defstruct.
7314 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7315 instead of gdb-pending-triggers. Update docstring.
7316 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7317 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7318 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7319 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7320 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7321 (gdb-frame-handler): Pending triggers are now automatically managed.
7322 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7323 Remove argument.
7324 (gdb-input): Automatically handles pending triggers. Update docstring.
7325 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7326 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7327 Update comments.
7328 (gdb-done-or-error): Now use gdb-handle-reply.
7329
7330 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7331
7332 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7333 gdb-debug-log.
7334
7335 2013-05-14 Glenn Morris <rgm@gnu.org>
7336
7337 * subr.el (user-emacs-directory-warning): New option.
7338 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7339
7340 2013-05-14 Leo Liu <sdl.web@gmail.com>
7341
7342 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7343 during redisplay.
7344 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
7345 (octave-font-lock-texinfo-comment): Fix invalid search bound
7346 error: wrong side of point.
7347
7348 2013-05-14 Glenn Morris <rgm@gnu.org>
7349
7350 * progmodes/flymake.el (flymake-xml-program): New option.
7351 (flymake-xml-init): Use it.
7352
7353 * term/xterm.el: Provide a feature.
7354
7355 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
7356
7357 2013-05-13 Glenn Morris <rgm@gnu.org>
7358
7359 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7360 Add compat aliases as a hack workaround. (Bug#14384)
7361
7362 2013-05-13 Leo Liu <sdl.web@gmail.com>
7363
7364 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7365 ###, and %!.
7366 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7367 C-M-q.
7368 (octave-comment-start-skip): Include %!.
7369 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
7370
7371 2013-05-12 Leo Liu <sdl.web@gmail.com>
7372
7373 * progmodes/octave.el (inferior-octave-startup): Store the value
7374 of __octave_srcdir__ for octave-source-directories.
7375 (inferior-octave-check-process): New function refactored out of
7376 inferior-octave-send-list-and-digest.
7377 (octave-source-directories)
7378 (octave-find-definition-filename-function): New variables.
7379 (octave-source-directories)
7380 (octave-find-definition-default-filename): New functions.
7381 (octave-find-definition): Improve to find functions implemented in C++.
7382
7383 2013-05-12 Glenn Morris <rgm@gnu.org>
7384
7385 * calendar/diary-lib.el (diary-outlook-format-1):
7386 Don't include dayname in the output. (Bug#14349)
7387
7388 2013-05-11 Glenn Morris <rgm@gnu.org>
7389
7390 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7391
7392 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7393 Treat cc-provide like provide.
7394
7395 2013-05-11 Kevin Ryde <user42@zip.com.au>
7396
7397 * cus-dep.el (custom-make-dependencies):
7398 Use generated-autoload-load-name for the sake of files such
7399 such cedet/semantic/bovine/c.el, where the base file name
7400 is not in load-path. (Bug#5277)
7401
7402 2013-05-11 Glenn Morris <rgm@gnu.org>
7403
7404 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7405 Provide features.
7406
7407 2013-05-11 Leo Liu <sdl.web@gmail.com>
7408
7409 * progmodes/octave.el (octave-indent-comment): Improve.
7410 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
7411 (octave-eldoc-function-signatures, octave-eldoc-function):
7412 New functions.
7413 (octave-mode, inferior-octave-mode): Add eldoc support.
7414
7415 2013-05-11 Richard Stallman <rms@gnu.org>
7416
7417 * epa.el (epa-decrypt-file): Take output file name as argument
7418 and read it using `interactive'.
7419
7420 2013-05-11 Leo Liu <sdl.web@gmail.com>
7421
7422 * progmodes/octave.el (octave-beginning-of-line)
7423 (octave-end-of-line): Check before using up-list because it jumps
7424 out of more syntactic contructs since moving to smie.
7425 (octave-indent-comment): New function.
7426 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
7427 (octave-begin-keywords, octave-end-keywords)
7428 (octave-reserved-words, octave-smie-bnf-table)
7429 (octave-smie-rules): Add new keywords from Octave 3.6.4.
7430
7431 2013-05-11 Glenn Morris <rgm@gnu.org>
7432
7433 * faces.el (internal-face-x-get-resource):
7434 * frame.el (ns-display-monitor-attributes-list):
7435 * calc/calc-aent.el (math-to-radians-2):
7436 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
7437 Fix declarations.
7438
7439 * calc/calc-menu.el: Make it loadable in isolation.
7440
7441 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7442 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7443 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7444 (eudc-bbdb-query-internal): Require 'bbdb.
7445
7446 * lpr.el (lpr-headers-switches):
7447 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7448
7449 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7450
7451 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7452
7453 * term.el (term-set-escape-char): Make it idempotent.
7454
7455 2013-05-10 Leo Liu <sdl.web@gmail.com>
7456
7457 * progmodes/octave.el (inferior-octave-completion-table):
7458 No longer a function and all uses changed. Use cache to speed up
7459 completion due to bug#11906.
7460 (octave-beginning-of-defun): Re-write to be more general.
7461
7462 2013-05-10 Glenn Morris <rgm@gnu.org>
7463
7464 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7465
7466 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7467
7468 * comint.el (comint-redirect-send-command-to-process): Use :around
7469 rather than :override for comint-redirect-filter.
7470 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7471 Call it instead of comint-redirect-original-filter-function (which
7472 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7473
7474 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7475
7476 * frame.el (display-monitor-attributes-list): Add NS case.
7477 (ns-display-monitor-attributes-list): Declare.
7478
7479 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
7480
7481 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7482
7483 2013-05-09 Glenn Morris <rgm@gnu.org>
7484
7485 * international/fontset.el (vertical-centering-font-regexp):
7486 Set standard-value.
7487
7488 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7489
7490 * bookmark.el (bookmark-search-delay):
7491 * cus-start.el (vertical-centering-font-regexp):
7492 * ps-mule.el (ps-mule-font-info-database-default):
7493 * ps-print.el (ps-default-fg, ps-default-bg):
7494 * type-break.el (type-break-good-break-interval):
7495 * whitespace.el (whitespace-indentation-regexp)
7496 (whitespace-space-after-tab-regexp):
7497 * emacs-lisp/testcover.el (testcover-1value-functions)
7498 (testcover-noreturn-functions, testcover-progn-functions)
7499 (testcover-prog1-functions):
7500 * emulation/viper-init.el (viper-emacs-state-cursor-color):
7501 * eshell/em-glob.el (eshell-glob-translate-alist):
7502 * play/tetris.el (tetris-tty-colors):
7503 * progmodes/cpp.el (cpp-face-default-list):
7504 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7505 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7506 (idlwave-help-browser-generic-args):
7507 * progmodes/make-mode.el (makefile-special-targets-list):
7508 * progmodes/python.el (python-shell-virtualenv-path):
7509 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7510 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7511 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7512 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7513 * textmodes/reftex-vars.el (reftex-format-label-function):
7514 * textmodes/remember.el (remember-diary-file): Fix custom types.
7515
7516 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7517 Add :version.
7518
7519 2013-05-09 Leo Liu <sdl.web@gmail.com>
7520
7521 * progmodes/octave.el (inferior-octave-completion-at-point):
7522 Restore file completion. (Bug#14300)
7523 (inferior-octave-startup): Fix incorrect highlighting for the
7524 first prompt.
7525
7526 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7527
7528 * progmodes/ruby-mode.el: First cut at SMIE support.
7529 (ruby-use-smie): New var.
7530 (ruby-smie-grammar): New constant.
7531 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
7532 (ruby-smie--forward-token, ruby-smie--backward-token)
7533 (ruby-smie-rules): New functions.
7534 (ruby-mode-variables): Setup SMIE if applicable.
7535
7536 2013-05-08 Eli Zaretskii <eliz@gnu.org>
7537
7538 * simple.el (line-move-visual): Signal beginning/end of buffer
7539 only if vertical-motion moved less than it was requested. Avoids
7540 silly incorrect error messages when there are display strings with
7541 multiple newlines at EOL.
7542
7543 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7544
7545 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
7546 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
7547 (prolog-char-quote-workaround):
7548 * progmodes/cperl-mode.el (cperl-under-as-char):
7549 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
7550 Mark as obsolete.
7551 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
7552 their declaration.
7553 (vhdl-mode-syntax-table-init): Remove.
7554
7555 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
7556 last change.
7557
7558 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
7559 syntax for "_".
7560 (ld-script-font-lock-keywords):
7561 Change regexps to use things like \_< and \_>.
7562
7563 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
7564 Change all regexps to use things like \_< and \_>.
7565
7566 * progmodes/autoconf.el (autoconf-definition-regexp)
7567 (autoconf-font-lock-keywords, autoconf-current-defun-function):
7568 Handle a _ with symbol syntax.
7569 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
7570
7571 * progmodes/ada-mode.el (ada-mode-abbrev-table):
7572 Consolidate declaration.
7573 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
7574 the declaration.
7575 (ada-create-syntax-table): Remove.
7576 (ada-capitalize-word): Don't mess with the syntax of "_" since it
7577 already has the right syntax nowadays.
7578 (ada-goto-next-word): Don't change the syntax of "_".
7579
7580 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
7581 with-wrapper-hook.
7582
7583 2013-05-08 Sam Steingold <sds@gnu.org>
7584
7585 * thingatpt.el (thing-at-point): Accept optional second argument
7586 NO-PROPERTIES to strip the text properties from the return value.
7587 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
7588 to `thing-at-point' instead of stripping the properties ourselves.
7589 Also, when `thing-at-point' fails to find a url, prepend "http://"
7590 to the filename at point on the assumption that the user is
7591 pointing at something like gnu.org/gnu.
7592
7593 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
7594
7595 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7596 * faces.el (crm-separator):
7597 Silence byte-compiler.
7598
7599 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
7600 (tool-bar-map): Remove unneeded defvars.
7601
7602 2013-05-08 Leo Liu <sdl.web@gmail.com>
7603
7604 Re-work a fix for bug#10994 based on Le Wang's patch.
7605 * ido.el (ido-remove-consecutive-dups): New helper.
7606 (ido-completing-read): Use it.
7607 (ido-chop): Revert fix for bug#10994.
7608
7609 2013-05-08 Adam Spiers <emacs@adamspiers.org>
7610
7611 * cus-edit.el (custom-save-variables):
7612 Pretty-print long values. (Bug#14187)
7613
7614 2013-05-08 Glenn Morris <rgm@gnu.org>
7615
7616 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
7617 (m4-mode-syntax-table): Init in the defvar.
7618 (m4-mode-abbrev-table): Let define-derived-mode define it.
7619
7620 2013-05-08 Tom Tromey <tromey@redhat.com>
7621
7622 * progmodes/m4-mode.el (m4-mode-syntax-table):
7623 Do not treat "_" as word constituent. (Bug#14167)
7624
7625 2013-05-07 Glenn Morris <rgm@gnu.org>
7626
7627 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
7628 Remove explicit eshell-isearch-cancel-map.
7629
7630 * progmodes/f90.el (f90-smart-end-names): New option.
7631 (f90-smart-end): Doc fix.
7632 (f90-end-block-optional-name): New constant.
7633 (f90-block-match): Respect f90-smart-end-names.
7634
7635 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7636
7637 * progmodes/octave.el (octave-smie-forward-token): Be more careful
7638 about implicit semi-colons (bug#14218).
7639
7640 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7641
7642 * frame.el (display-monitor-attributes-list)
7643 (frame-monitor-attributes): New functions.
7644
7645 2013-05-06 Leo Liu <sdl.web@gmail.com>
7646
7647 * progmodes/octave.el (octave-syntax-propertize-function): Change
7648 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
7649 (octave-font-lock-keywords): Use octave-operator-regexp.
7650 (octave-completion-at-point): Rename from
7651 octave-completion-at-point-function.
7652 (inferior-octave-directory-tracker): Robustify.
7653 (octave-text-functions): Remove and fix its uses. No such things
7654 any more.
7655
7656 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7657
7658 * emacs-lisp/trace.el (trace--display-buffer): New function.
7659 (trace-make-advice): Use it.
7660
7661 2013-05-06 Juri Linkov <juri@jurta.org>
7662
7663 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
7664 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
7665 Doc fix.
7666 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
7667 in the help string. (Bug#12985)
7668
7669 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
7670
7671 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
7672
7673 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7674
7675 * progmodes/perl-mode.el: Add support for here documents.
7676 (perl-syntax-propertize-function): Match here-doc markers.
7677 (perl-syntax-propertize-special-constructs): Find their end.
7678 (perl-imenu-generic-expression): Use [:alnum:].
7679
7680 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
7681 (advice--add-function): Refresh the advice if already present
7682 (bug#14317).
7683
7684 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
7685
7686 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
7687
7688 2013-05-06 Glenn Morris <rgm@gnu.org>
7689
7690 * w32-fns.el (w32-charset-info-alist): Declare.
7691
7692 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
7693 of its defcustom properties.
7694 (eshell-cmpl-initialize): No need to load pcomplete.
7695
7696 * generic-x.el: No need to require comint when compiling.
7697
7698 * net/eudc-export.el: Make it loadable without bbdb.
7699 (top-level): Use require rather than load-library.
7700 (eudc-create-bbdb-record, eudc-bbdbify-phone)
7701 (eudc-batch-export-records-to-bbdb)
7702 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
7703 Require bbdb.
7704
7705 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7706
7707 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
7708 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
7709 some tweaks, instead.
7710
7711 2013-05-05 Leo Liu <sdl.web@gmail.com>
7712
7713 * progmodes/octave.el (octave-font-lock-keywords)
7714 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
7715 (inferior-octave-send-list-and-digest): Improve error message.
7716 (octave-mode, inferior-octave-mode): Use setq-local.
7717 (octave-help): Set info-lookup-mode.
7718
7719 2013-05-05 Richard Stallman <rms@gnu.org>
7720
7721 * vc/compare-w.el (compare-windows-whitespace):
7722 Treat no-break space as whitespace.
7723
7724 * mail/rmailsum.el (rmail-summary-rmail-update):
7725 Detect empty summary and don't change selected message.
7726 (rmail-summary-goto-msg): Likewise.
7727
7728 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
7729 Doc fixes, rename args.
7730
7731 2013-05-05 Alan Mackenzie <acm@muc.de>
7732
7733 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
7734
7735 2013-05-05 Juri Linkov <juri@jurta.org>
7736
7737 * info.el (Info-read-subfile): Use (point-min) instead of (point)
7738 to not add the length of the summary segment to the return value.
7739 (Bug#14125)
7740
7741 2013-05-05 Leo Liu <sdl.web@gmail.com>
7742
7743 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
7744 (inferior-octave-output-filter): Remove.
7745 (octave-send-region, inferior-octave-startup): Fix callers.
7746 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
7747 (octave-binary-file-extensions): New user variable.
7748 (octave-find-definition): Confirm if opening binary files.
7749 (octave-help-file): Use octave-find-definition to get the binary
7750 confirmation.
7751 (octave-help): Adjust for octave-help-file change.
7752
7753 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7754
7755 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
7756 Merge the two entries that handle function definitions.
7757 (pascal--syntax-propertize): New const.
7758 (pascal-mode): Use it. Use setq-local.
7759
7760 2013-05-04 Glenn Morris <rgm@gnu.org>
7761
7762 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
7763 (diary-from-outlook): Respect diary-from-outlook-function.
7764
7765 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7766
7767 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
7768 Move the declaration from C.
7769 (read-minibuffer, eval-minibuffer): Move from C.
7770 (completion-setup-function): Avoid minibuffer-completion-contents.
7771
7772 2013-05-03 Leo Liu <sdl.web@gmail.com>
7773
7774 * progmodes/octave.el (octave-font-lock-keywords): Do not
7775 dehighlight 'end' in comments or strings.
7776 (octave-completing-read, octave-goto-function-definition):
7777 New helpers.
7778 (octave-help-buffer): New user variable.
7779 (octave-help-file, octave-help-function): New button types.
7780 (octave-help): New command and bind it to C-h ;.
7781 (octave-find-definition): New command and bind it to M-.
7782 (user-error): Alias to error if not defined.
7783
7784 2013-05-02 Leo Liu <sdl.web@gmail.com>
7785
7786 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
7787 for \. (bug#14332)
7788 (octave-font-lock-keywords): Include [ and {.
7789
7790 2013-05-02 Leo Liu <sdl.web@gmail.com>
7791
7792 * progmodes/octave.el (inferior-octave-startup-file): Change default.
7793 (inferior-octave): Remove calling comint-mode and return the buffer.
7794 (inferior-octave-startup): Cosmetic changes.
7795
7796 2013-05-02 Leo Liu <sdl.web@gmail.com>
7797
7798 * progmodes/octave.el (octave-syntax-propertize-function):
7799 Include the case when ' is at line beginning. (Bug#14336)
7800
7801 2013-05-02 Glenn Morris <rgm@gnu.org>
7802
7803 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
7804 * desktop.el (vc-dir-mode): Just autoload it here.
7805
7806 2013-05-02 Alan Mackenzie <acm@muc.de>
7807
7808 Eliminate variable c-standard-font-lock-fontify-region-function.
7809 * progmodes/cc-mode.el
7810 (c-standard-font-lock-fontify-region-function): Remove.
7811 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
7812
7813 2013-05-01 Leo Liu <sdl.web@gmail.com>
7814
7815 * progmodes/octave.el: Compatible with older emacs-24 releases.
7816 (inferior-octave-has-built-in-variables): Remove. Built-in
7817 variables were removed from Octave in 2007.
7818 (inferior-octave-startup): Fix uses.
7819 (comint-line-beginning-position): Remove compatibility code for
7820 emacs 21.
7821
7822 2013-05-01 Juri Linkov <juri@jurta.org>
7823
7824 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
7825
7826 2013-05-01 Juri Linkov <juri@jurta.org>
7827
7828 * comint.el (comint-previous-matching-input): Don't print message
7829 "History item: %d" when `isearch-mode' is active.
7830 (comint-history-isearch-message): Print message "History item: %d"
7831 when `comint-input-ring-index' is not empty and this function is
7832 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
7833
7834 2013-05-01 Leo Liu <sdl.web@gmail.com>
7835
7836 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
7837 definitions. Use completion-at-point to insert keywords.
7838 (octave-abbrev-start): Remove.
7839 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
7840
7841 2013-04-30 Leo Liu <sdl.web@gmail.com>
7842
7843 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
7844 change.
7845
7846 2013-04-30 Alan Mackenzie <acm@muc.de>
7847
7848 Handle arbitrarily long C++ member initialisation lists.
7849 * progmodes/cc-engine.el (c-back-over-member-initializers):
7850 new function.
7851 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
7852 (most) member init lists.
7853
7854 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7855
7856 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
7857 variable.
7858
7859 2013-04-30 Leo Liu <sdl.web@gmail.com>
7860
7861 * progmodes/octave.el (octave-variables): Remove. No builtin
7862 variables any more. All converted to functions.
7863 (octave-font-lock-keywords, octave-completion-at-point-function):
7864 Fix uses.
7865 (octave-font-lock-texinfo-comment): New user variable.
7866 (octave-texinfo-font-lock-keywords): New variable for texinfo
7867 comment block.
7868 (octave-function-comment-block): New face.
7869 (octave-font-lock-texinfo-comment): New function.
7870 (octave-mode): Font lock texinfo comment block.
7871
7872 2013-04-29 Leo Liu <sdl.web@gmail.com>
7873
7874 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
7875 indexing expression.
7876 (octave-continuation-string): Do not use \.
7877 (inferior-octave-complete-impossible): Remove.
7878 (inferior-octave-completion-table)
7879 (inferior-octave-completion-at-point): Remove its uses.
7880 (inferior-octave-startup): completion_matches was introduced to
7881 Octave in 1996 so safe to assume it.
7882 (octave-function-file-comment): Improve to follow how Octave does it.
7883 (octave-update-function-file-comment): Tweak.
7884
7885 2013-04-29 Leo Liu <sdl.web@gmail.com>
7886
7887 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
7888 (inferior-octave-startup): Remove inferior-octave-startup-hook.
7889 (octave-function-file-comment): Fix typo.
7890 (octave-sync-function-file-names): Use read-char-choice.
7891
7892 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
7893
7894 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
7895 to t for the less important warnings.
7896
7897 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
7898
7899 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
7900
7901 2013-04-27 Glenn Morris <rgm@gnu.org>
7902
7903 * vc/log-view.el (log-view-current-entry):
7904 Treat "---" separator lines as part of the following rev. (Bug#14169)
7905
7906 2013-04-27 Juri Linkov <juri@jurta.org>
7907
7908 * subr.el (read-number): Doc fix about using it by interactive
7909 code letter `n'. (Bug#14254)
7910
7911 2013-04-27 Juri Linkov <juri@jurta.org>
7912
7913 * desktop.el (desktop-auto-save-timeout): New option.
7914 (desktop-file-checksum): New variable.
7915 (desktop-save): Add optional arg `auto-save' and don't auto-save
7916 if nothing changed.
7917 (desktop-auto-save-timer): New variable.
7918 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
7919 (after-init-hook): Call `desktop-auto-save-set-timer'.
7920 Suggested by Reuben Thomas <rrt@sc3d.org> in
7921 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
7922
7923 2013-04-27 Leo Liu <sdl.web@gmail.com>
7924
7925 * progmodes/octave.el (octave-function-file-p)
7926 (octave-skip-comment-forward, octave-function-file-comment)
7927 (octave-update-function-file-comment): New functions.
7928 (octave-mode-map): Bind C-c ; to
7929 octave-update-function-file-comment.
7930 (octave-mode-menu): Add octave-update-function-file-comment.
7931 (octave-mode, inferior-octave-mode): Fix doc-string.
7932 (octave-insert-defun): Conform to Octave's coding convention.
7933 (Bug#14285)
7934
7935 * files.el (basic-save-buffer): Don't let errors in
7936 before-save-hook prevent saving buffer.
7937
7938 2013-04-20 Roland Winkler <winkler@gnu.org>
7939
7940 * faces.el (read-face-name): Use completing-read if arg multiple
7941 is nil.
7942
7943 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
7944
7945 * ls-lisp.el (ls-lisp-insert-directory): If no files are
7946 displayed, move point to after the totals line.
7947 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
7948 for the details.
7949
7950 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
7951
7952 * emacs-lisp/package.el (package-autoload-ensure-default-file):
7953 Add current dir to the load-path.
7954 (package-generate-autoloads): Don't rely on
7955 autoload-ensure-default-file.
7956
7957 2013-04-26 Reuben Thomas <rrt@sc3d.org>
7958
7959 * textmodes/remember.el (remember-store-in-files): Document that
7960 the file name format is passed to `format-time-string'.
7961
7962 2013-04-26 Leo Liu <sdl.web@gmail.com>
7963
7964 * progmodes/octave.el (octave-sync-function-file-names): New function.
7965 (octave-mode): Use it in before-save-hook.
7966
7967 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
7968
7969 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
7970 (bug#14274).
7971
7972 * progmodes/octave.el (octave-smie-forward-token): Properly skip
7973 \n and comment, even if it's not an implicit ; (bug#14218).
7974
7975 2013-04-26 Glenn Morris <rgm@gnu.org>
7976
7977 * subr.el (read-number): Once more use `read' rather than
7978 `string-to-number', to trap non-numeric input. (Bug#14254)
7979
7980 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
7981
7982 * emacs-lisp/syntax.el (syntax-propertize-multiline):
7983 Use `syntax-multiline' text property consistently instead of
7984 `font-lock-multiline'. (Bug#14237)
7985
7986 2013-04-26 Glenn Morris <rgm@gnu.org>
7987
7988 * emacs-lisp/shadow.el (list-load-path-shadows):
7989 No longer necessary to check for duplicate simple.el, since
7990 2012-07-07 change to init_lread to not include installation lisp
7991 directories in load-path when running uninstalled. (Bug#14270)
7992
7993 2013-04-26 Leo Liu <sdl.web@gmail.com>
7994
7995 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
7996 (octave-mode, inferior-octave-mode): Use setq-local.
7997 (octave-not-in-string-or-comment-p): Rename to
7998 octave-in-string-or-comment-p.
7999 (octave-in-comment-p, octave-in-string-p)
8000 (octave-in-string-or-comment-p): Replace defsubst with defun.
8001
8002 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
8003
8004 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
8005
8006 2013-04-25 Bastien Guerry <bzg@gnu.org>
8007
8008 * textmodes/remember.el (remember-data-directory)
8009 (remember-directory-file-name-format): Fix custom types.
8010
8011 2013-04-25 Leo Liu <sdl.web@gmail.com>
8012
8013 * progmodes/octave.el (octave-completion-at-point-function):
8014 Make use of inferior octave process.
8015 (octave-initialize-completions): Remove.
8016 (inferior-octave-completion-table): New function.
8017 (inferior-octave-completion-at-point): Use it.
8018 (octave-completion-alist): Remove.
8019
8020 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8021
8022 * progmodes/opascal.el: Use font-lock and syntax-propertize.
8023 (opascal-mode-syntax-table): New var.
8024 (opascal-literal-kind, opascal-is-literal-end)
8025 (opascal-literal-token-at): Rewrite.
8026 (opascal--literal-start-re, opascal-font-lock-keywords)
8027 (opascal--syntax-propertize): New constants.
8028 (opascal-font-lock-defaults): Adjust.
8029 (opascal-mode): Use them. Set comment-<foo> variables as well.
8030 (delphi-comment-face, opascal-comment-face, delphi-string-face)
8031 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
8032 (delphi-other-face, opascal-other-face): Remove face variables.
8033 (opascal-save-state): Remove macro.
8034 (opascal-fontifying-progress-step): Remove constant.
8035 (opascal--ignore-changes): Remove var.
8036 (opascal-set-token-property, opascal-parse-next-literal)
8037 (opascal-is-stable-literal, opascal-complete-literal)
8038 (opascal-is-literal-start, opascal-face-of)
8039 (opascal-parse-region, opascal-parse-region-until-stable)
8040 (opascal-fontify-region, opascal-after-change)
8041 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
8042 (opascal-debug-parse-region, opascal-debug-parse-window)
8043 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
8044 (opascal-debug-fontify-buffer): Remove.
8045 (opascal-debug-mode-map): Adjust accordingly.
8046
8047 2013-04-25 Leo Liu <sdl.web@gmail.com>
8048
8049 Merge octave-mod.el and octave-inf.el into octave.el with some
8050 cleanups.
8051 * progmodes/octave.el: New file renamed from octave-mod.el.
8052 * progmodes/octave-inf.el: Merged into octave.el.
8053 * progmodes/octave-mod.el: Renamed to octave.el.
8054
8055 2013-04-25 Tassilo Horn <tsdh@gnu.org>
8056
8057 * textmodes/reftex-vars.el
8058 (reftex-label-ignored-macros-and-environments): New defcustom.
8059
8060 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
8061
8062 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8063
8064 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
8065 (smie-indent-keyword): Improve the check to ensure that the next
8066 comment is really on the same line.
8067 (smie-indent-comment): Don't align with a subsequent closer (or eob).
8068
8069 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
8070 semi-colons if the line is not otherwise empty (bug#14218).
8071
8072 2013-04-25 Glenn Morris <rgm@gnu.org>
8073
8074 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
8075
8076 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8077
8078 * progmodes/opascal.el (opascal-set-token-property): Rename from
8079 opascal-set-text-properties and only set `token' (bug#14134).
8080 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
8081 (opascal-literal-text-properties): Remove.
8082 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
8083 Adjust callers.
8084
8085 2013-04-24 Reuben Thomas <rrt@sc3d.org>
8086
8087 * textmodes/remember.el (remember-handler-functions): Add an
8088 option for a new handler `remember-store-in-files'.
8089 (remember-data-directory, remember-directory-file-name-format):
8090 New options.
8091 (remember-store-in-files): New function to store remember notes
8092 as separate files within a directory.
8093
8094 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
8095
8096 * progmodes/compile.el (compilation-next-error-function):
8097 Pass "formats" to compilation-find-file (bug#11777).
8098
8099 2013-04-24 Glenn Morris <rgm@gnu.org>
8100
8101 * vc/vc-bzr.el (vc-bzr-print-log):
8102 * vc/vc-hg.el (vc-hg-print-log):
8103 * vc/vc-svn.el (vc-svn-print-log):
8104 Fix START-REVISION with LIMIT != 1. (Bug#14168)
8105
8106 * vc/vc-bzr.el (vc-bzr-print-log):
8107 * vc/vc-cvs.el (vc-cvs-print-log):
8108 * vc/vc-git.el (vc-git-print-log):
8109 * vc/vc-hg.el (vc-hg-print-log):
8110 * vc/vc-mtn.el (vc-mtn-print-log):
8111 * vc/vc-rcs.el (vc-rcs-print-log):
8112 * vc/vc-sccs.el (vc-sccs-print-log):
8113 * vc/vc-svn.el (vc-svn-print-log):
8114 * vc/vc.el (vc-print-log-internal): Doc fixes.
8115
8116 2013-04-23 Glenn Morris <rgm@gnu.org>
8117
8118 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
8119 Remove venerable code attempting to avoid substitute-command-keys.
8120
8121 2013-04-23 Tassilo Horn <tsdh@gnu.org>
8122
8123 * textmodes/reftex-vars.el (reftex-label-regexps):
8124 Call `reftex-compile-variables' after changes to this variable.
8125
8126 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8127
8128 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
8129 Use lexical-binding.
8130 (jit-lock-force-redisplay): Use markers, check buffer's continued
8131 existence and beware narrowed buffers.
8132 (jit-lock-fontify-now): Adjust call accordingly.
8133
8134 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8135
8136 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
8137 to avoid misleading the user.
8138
8139 2013-04-22 Leo Liu <sdl.web@gmail.com>
8140
8141 * info-look.el: Prefer latex2e.info. (Bug#14240)
8142
8143 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
8144
8145 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
8146
8147 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
8148 * net/tramp.el (tramp-call-process): ... here.
8149 (tramp-set-completion-function, tramp-parse-putty):
8150 * net/tramp-adb.el (tramp-adb-execute-adb-command):
8151 * net/tramp-gvfs.el (tramp-gvfs-send-command):
8152 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8153 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
8154 (tramp-call-local-coding-command): Use `tramp-call-process'
8155 instead of `tramp-compat-call-process'.
8156
8157 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
8158 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
8159 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
8160 (tramp-find-inline-compress): Improve traces.
8161 (tramp-maybe-send-script): Check for Perl binary.
8162 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
8163
8164 2013-04-22 Daiki Ueno <ueno@gnu.org>
8165
8166 * epg.el (epg-context-pinentry-mode): New function.
8167 (epg-context-set-pinentry-mode): New function.
8168 (epg--start): Pass --pinentry-mode option to gpg command.
8169
8170 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
8171
8172 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
8173 `comint-dynamic-complete' is obsolete since 24.1, replaced by
8174 `completion-at-point'. (Bug#13774)
8175
8176 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
8177 default key binding for `describe-distribution' has been moved to
8178 `C-h C-o'. (Bug#13970)
8179
8180 2013-04-21 Glenn Morris <rgm@gnu.org>
8181
8182 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
8183 Add doc strings.
8184 (vc-print-log): Clarify interactive prompt.
8185
8186 2013-04-20 Glenn Morris <rgm@gnu.org>
8187
8188 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8189 No longer include timestamp etc information.
8190
8191 2013-04-20 Roland Winkler <winkler@gnu.org>
8192
8193 * faces.el (read-face-name): Bug fix, return just one face if arg
8194 multiple is nil. (Bug#14209)
8195
8196 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8197
8198 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
8199 (remove-function): Autoload.
8200
8201 * comint.el (comint-redirect-original-filter-function): Remove.
8202 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
8203 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
8204 (vc-cvs-annotate-command):
8205 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
8206 * progmodes/prolog.el (prolog-consult-compile):
8207 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
8208 Use add/remove-function instead.
8209 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
8210 (gud-tooltip-process-output, gud-tooltip-tips):
8211 Use add/remove-function instead.
8212 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
8213 (scheme-interaction-mode, exit-scheme-interaction-mode):
8214 Use add/remove-function instead.
8215
8216 * vc/vc-dispatcher.el: Use lexical-binding.
8217 (vc--process-sentinel): Rename from vc-process-sentinel.
8218 Change last arg to be the code to run. Don't use vc-previous-sentinel
8219 and vc-sentinel-commands any more.
8220 (vc-exec-after): Allow code to be a function. Use add/remove-function.
8221 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
8222
8223 2013-04-19 Masatake YAMATO <yamato@redhat.com>
8224
8225 * progmodes/sh-script.el (sh-imenu-generic-expression):
8226 Handle function names with a single character. (Bug#14111)
8227
8228 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
8229
8230 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
8231 for subroutines defined in an eval (bug#14182).
8232
8233 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8234
8235 * bookmark.el (bookmark-completing-read): Improve handling of empty
8236 string (bug#14176).
8237
8238 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8239
8240 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8241
8242 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8243
8244 New faster Imenu implementation (bug#14058).
8245 * progmodes/python.el:
8246 (python-imenu-prev-index-position):
8247 (python-imenu-format-item-label-function)
8248 (python-imenu-format-parent-item-label-function)
8249 (python-imenu-format-parent-item-jump-label-function):
8250 New vars.
8251 (python-imenu-format-item-label)
8252 (python-imenu-format-parent-item-label)
8253 (python-imenu-format-parent-item-jump-label)
8254 (python-imenu--put-parent, python-imenu--build-tree)
8255 (python-imenu-create-index, python-imenu-create-flat-index)
8256 (python-util-popn): New functions.
8257 (python-mode): Set imenu-create-index-function to
8258 python-imenu-create-index.
8259
8260 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8261
8262 * winner.el (winner-active-region): Use region-active-p, activate-mark
8263 and deactivate-mark (bug#14225).
8264
8265 * simple.el (deactivate-mark): Don't inline it.
8266
8267 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
8268
8269 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8270
8271 2013-04-18 Tassilo Horn <tsdh@gnu.org>
8272
8273 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8274 file extensions from the archive-mode entry in order to prefer
8275 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8276
8277 2013-04-18 Leo Liu <sdl.web@gmail.com>
8278
8279 * bindings.el (help-event-list): Add ?\?.
8280
8281 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8282
8283 * subr.el (with-wrapper-hook): Declare obsolete.
8284 * simple.el (filter-buffer-substring-function): New hook.
8285 (filter-buffer-substring): Use it.
8286 (filter-buffer-substring-functions): Mark obsolete.
8287 * minibuffer.el (completion-in-region-function): New hook.
8288 (completion-in-region): Use it.
8289 (completion-in-region-functions): Mark obsolete.
8290 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8291 * abbrev.el (abbrev-expand-function): New hook.
8292 (expand-abbrev): Use it.
8293 (abbrev-expand-functions): Mark obsolete.
8294 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8295 and :filter-return.
8296
8297 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8298
8299 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8300 and do not care about match data.
8301
8302 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8303
8304 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8305 completion tables when completing error conditions and
8306 `declare' arguments.
8307 (lisp-complete-symbol, field-complete): Mark as obsolete.
8308 (check-parens): Unmatched parens are user errors.
8309 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8310
8311 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
8312
8313 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8314 command changed buffer (ie. `flyspell-pre-buffer' is not current
8315 buffer), which prevents making decisions based on invalid value of
8316 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8317 cause an error when `flyspell-pre-point' was nil after switching
8318 buffers.
8319 (flyspell-post-command-hook): No longer needs to change buffers when
8320 checking pre-word. While at it remove unnecessary progn.
8321
8322 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8323
8324 * textmodes/ispell.el (ispell-add-per-file-word-list):
8325 Fix `flyspell-correct-word-before-point' error when accepting
8326 words and `coment-padding' is an integer by using
8327 `comment-normalize-vars' (Bug #14214).
8328
8329 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8330
8331 New defun movement commands.
8332 * progmodes/python.el (python-nav--syntactically)
8333 (python-nav--forward-defun, python-nav-backward-defun)
8334 (python-nav-forward-defun): New functions.
8335
8336 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8337
8338 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8339 (python-syntax-context): Use named compiler-macro for backwards
8340 compatibility with Emacs 24.x.
8341
8342 2013-04-17 Leo Liu <sdl.web@gmail.com>
8343
8344 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8345 octave-hide-process-buffer.
8346
8347 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8348
8349 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8350 (bug#14216).
8351
8352 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8353
8354 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8355 Fix adjustment of offset when receiving incomplete responses from GDB
8356 (bug#14129).
8357
8358 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8359
8360 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8361 python-mode-abbrev-table.
8362 (python-skeleton-define): Adjust accordingly.
8363 (python-mode-abbrev-table): New table that inherits from it so that
8364 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8365
8366 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8367 (abbrev-symbol): Use it.
8368 (abbrev--before-point): Use it since we already handle inheritance.
8369
8370 2013-04-16 Leo Liu <sdl.web@gmail.com>
8371
8372 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8373 binding to info-lookup-symbol.
8374
8375 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
8376
8377 * minibuffer.el (completion--twq-all):
8378 * term/ns-win.el (ns-initialize-window-system):
8379 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8380
8381 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8382
8383 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8384 global bindings.
8385
8386 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8387
8388 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8389
8390 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8391 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8392 to nil.
8393 (ruby-end-of-defun): Remove the unused arg, change the docstring
8394 to reflect that this function is only used as the value of
8395 `end-of-defun-function'.
8396 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8397 to reflect an earlier change that beginning/end-of-defun functions
8398 jump between methods in a class definition, as well as top-level
8399 functions.
8400
8401 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8402
8403 * minibuffer.el (minibuffer-complete): Don't just scroll
8404 a *Completions* that's been iconified.
8405 (minibuffer-force-complete): Make sure repetitions do cycle when going
8406 through completion-in-region -> minibuffer-complete.
8407
8408 2013-04-15 Alan Mackenzie <acm@muc.de>
8409
8410 Correct the placement of c-cpp-delimiters when there're #s not at
8411 col 0.
8412
8413 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8414 place a submatch around the #.
8415 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8416 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
8417 on the #, not BOL.
8418
8419 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8420
8421 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8422 (advice--member-p): New arg `name'.
8423 (advice--add-function, advice-member-p): Use it (bug#14202).
8424
8425 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8426
8427 Reformulate java imenu-generic-expression.
8428 The old expression contained ill formed regexps.
8429
8430 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8431 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8432 (cc-imenu-java-method-arg-regexp): New defconsts.
8433 (cc-imenu-java-build-type-args-regex): New defun.
8434 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
8435 handling of spaces in the regexp.
8436
8437 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8438
8439 * textmodes/ispell.el (ispell-command-loop): Remove
8440 flyspell highlight of a word when ispell accepts it (bug #14178).
8441
8442 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
8443
8444 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8445 uses code from the previous `ange-ftp-run-real-handler'.
8446 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8447 only in case that function exist. This is needed for proper
8448 unloading of Tramp.
8449
8450 2013-04-15 Tassilo Horn <tsdh@gnu.org>
8451
8452 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8453
8454 * textmodes/reftex.el (reftex-compile-variables): Use it.
8455
8456 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8457
8458 * files.el (normal-mode): Only use default major-mode if no other mode
8459 was specified.
8460
8461 * emacs-lisp/trace.el (trace-values): New function.
8462
8463 * files.el: Allow : in local variables (bug#14089).
8464 (hack-local-variable-regexp): New var.
8465 (hack-local-variables-prop-line, hack-local-variables): Use it.
8466
8467 2013-04-13 Roland Winkler <winkler@gnu.org>
8468
8469 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8470 data before it gets modified by bibtex-beginning-of-entry.
8471
8472 2013-04-13 Roland Winkler <winkler@gnu.org>
8473
8474 * textmodes/bibtex.el (bibtex-url): Doc fix.
8475
8476 2013-04-13 Roland Winkler <winkler@gnu.org>
8477
8478 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8479 does not visit a BibTeX file, exclude it from the list of buffers
8480 returned by bibtex-initialize.
8481
8482 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
8483
8484 * window.el (split-window): Remove interactive form, since as a
8485 command this function is a special case of split-window-below.
8486 Correct doc string.
8487
8488 2013-04-12 Roland Winkler <winkler@gnu.org>
8489
8490 * faces.el (read-face-name): Do not override value of arg default.
8491 Allow single faces and strings as default values. Remove those
8492 elements from return value that are not faces.
8493 (describe-face): Simplify.
8494 (face-at-point): New optional args thing and multiple so that this
8495 function can provide the same functionality previously provided by
8496 read-face-name.
8497 (make-face-bold, make-face-unbold, make-face-italic)
8498 (make-face-unitalic, make-face-bold-italic, invert-face)
8499 (modify-face, read-face-and-attribute): Use face-at-point.
8500
8501 * cus-edit.el (customize-face, customize-face-other-window)
8502 * cus-theme.el (custom-theme-add-face)
8503 * face-remap.el (buffer-face-set)
8504 * facemenu.el (facemenu-set-face): Use face-at-point.
8505
8506 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
8507
8508 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8509
8510 2013-04-10 Tassilo Horn <tsdh@gnu.org>
8511
8512 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8513 off leading { and trailing } from field values.
8514
8515 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8516
8517 * emacs-lisp/timer.el (timer--check): New function.
8518 (timer--time, timer-set-function, timer-event-handler): Use it.
8519 (timer-set-idle-time): Simplify.
8520 (timer--activate): CSE.
8521 (timer-event-handler): Give more info in error message.
8522 (internal-timer-start-idle): New function, moved from C.
8523
8524 * mpc.el (mpc-proc): Add `restart' argument.
8525 (mpc-proc-cmd): Use it.
8526 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
8527 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
8528 less often.
8529
8530 2013-04-10 Masatake YAMATO <yamato@redhat.com>
8531
8532 * progmodes/sh-script.el: Implement `sh-mode' own
8533 `add-log-current-defun-function' (bug#14112).
8534 (sh-current-defun-name): New function.
8535 (sh-mode): Use the function.
8536
8537 2013-04-09 Bastien Guerry <bzg@gnu.org>
8538
8539 * simple.el (choose-completion-string): Fix docstring (bug#14163).
8540
8541 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8542
8543 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
8544
8545 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
8546 timer (bug#14156).
8547
8548 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
8549
8550 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
8551 declaration.
8552
8553 2013-04-07 Leo Liu <sdl.web@gmail.com>
8554
8555 * pcmpl-x.el: New file.
8556
8557 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
8558
8559 Do not set x-display-name until X connection is established.
8560 This is needed to prevent from weird situation described at
8561 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
8562 * frame.el (make-frame): Set x-display-name after call to
8563 window system initialization function, not before.
8564 * term/x-win.el (x-initialize-window-system): Add optional
8565 display argument and use it.
8566 * term/w32-win.el (w32-initialize-window-system):
8567 * term/ns-win.el (ns-initialize-window-system):
8568 * term/pc-win.el (msdos-initialize-window-system):
8569 Add compatible optional display argument.
8570
8571 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8572
8573 * files.el (normal-backup-enable-predicate): On MS-Windows and
8574 MS-DOS compare truenames of temporary-file-directory and of the
8575 file, so that 8+3 aliases (usually found in $TEMP on Windows)
8576 don't fail comparison by compare-strings. Also, compare file
8577 names case-insensitively on MS-Windows and MS-DOS.
8578
8579 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8580
8581 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
8582 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
8583
8584 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
8585
8586 * whitespace.el (whitespace-color-on, whitespace-color-off):
8587 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
8588
8589 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
8590
8591 * ispell.el (ispell-set-spellchecker-params):
8592 Really set `ispell-args' for all equivs.
8593
8594 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8595
8596 * ido.el (ido-completions): Use extra elements of ido-decorations
8597 (bug#14143).
8598 (ido-decorations): Update docstring.
8599
8600 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
8601
8602 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8603 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
8604 nil during initialization, in order not to miss changes since the
8605 file was opened. (Bug#14140)
8606
8607 2013-04-05 Leo Liu <sdl.web@gmail.com>
8608
8609 * kmacro.el (kmacro-call-macro): Fix bug#14135.
8610
8611 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
8612
8613 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
8614
8615 2013-04-04 Glenn Morris <rgm@gnu.org>
8616
8617 * electric.el (electric-pair-inhibit-predicate): Add :version.
8618
8619 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
8620
8621 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
8622 when a package is required several times (bug#14082).
8623
8624 2013-04-04 Roland Winkler <winkler@gnu.org>
8625
8626 * faces.el (read-face-name): Behave as promised by the docstring.
8627 Assume that arg default is a list of faces.
8628 (describe-face): Call read-face-name with list of default faces.
8629
8630 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8631
8632 * bookmark.el: Fix deletion of bookmarks (bug#13972).
8633 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
8634 (bookmark-bmenu-execute-deletions): Only skip first line if it's
8635 the header.
8636 (bookmark-exit-hook-internal): Save even if list is empty.
8637
8638 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
8639
8640 * emacs-lisp/package.el (package-pinned-packages): New var.
8641 (package--add-to-archive-contents): Obey it (bug#14118).
8642
8643 2013-04-03 Alan Mackenzie <acm@muc.de>
8644
8645 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
8646 Also adapt to the new values of element 7 of a parse state.
8647
8648 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
8649 parameter `not-in-delimiter'. Handle being inside comment opener.
8650 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
8651 character in case we're typing a '*' after a '/'.
8652 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
8653 instead by passing the parameter to c-state-pp-to-literal.
8654
8655 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
8656 for elt. 7 of a parse state.
8657
8658 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
8659
8660 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
8661 * international/latin1-disp.el, international/mule-util.el:
8662 * language/cyril-util.el, language/european.el, language/ind-util.el:
8663 * language/lao-util.el, language/thai.el, language/tibet-util.el:
8664 * language/tibetan.el, language/viet-util.el:
8665 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
8666
8667 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8668
8669 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
8670 (electric-pair-post-self-insert-function): Use it.
8671 (electric-pair-default-inhibit): New function, extracted from
8672 electric-pair-post-self-insert-function.
8673
8674 2013-03-31 Roland Winkler <winkler@gnu.org>
8675
8676 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
8677
8678 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8679
8680 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
8681
8682 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
8683
8684 Un-indent after "pass" and "return" statements (Bug#13888)
8685 * progmodes/python.el (python-indent-block-enders): New var.
8686 (python-indent-calculate-indentation): Use it.
8687
8688 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
8689
8690 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
8691 defun. Defining it as defalias could introduce too eager
8692 byte-compiler optimization. (Bug#14030)
8693
8694 2013-03-30 Chong Yidong <cyd@gnu.org>
8695
8696 * iswitchb.el (iswitchb-read-buffer): Fix typo.
8697
8698 2013-03-30 Leo Liu <sdl.web@gmail.com>
8699
8700 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
8701 (kmacro-execute-from-register): Pass the keyboard macro to
8702 kmacro-call-macro or repeating won't work correctly.
8703
8704 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
8705
8706 * progmodes/subword.el: Back to using `forward-symbol'.
8707
8708 * subr.el (forward-whitespace, forward-symbol)
8709 (forward-same-syntax): Move from thingatpt.el.
8710
8711 2013-03-29 Leo Liu <sdl.web@gmail.com>
8712
8713 * kmacro.el (kmacro-to-register): New command.
8714 (kmacro-execute-from-register): New function.
8715 (kmacro-keymap): Bind to 'x'. (Bug#14071)
8716
8717 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8718
8719 * mpc.el: Use defvar-local and setq-local.
8720 (mpc--proc-connect): Connection failures are not bugs.
8721 (mpc-mode-map): `follow-link' only applies to the buffer's content.
8722 (mpc-volume-map): Bind to the up-events.
8723
8724 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
8725
8726 * progmodes/subword.el (superword-mode): Use `forward-sexp'
8727 instead of `forward-symbol'.
8728
8729 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8730
8731 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
8732 (edebug--recursive-edit): Use it.
8733 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
8734 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
8735
8736 2013-03-28 Leo Liu <sdl.web@gmail.com>
8737
8738 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
8739
8740 2013-03-27 Eli Zaretskii <eliz@gnu.org>
8741
8742 * facemenu.el (list-colors-callback): New defvar.
8743 (list-colors-redisplay): New function.
8744 (list-colors-display): Install list-colors-redisplay as the
8745 revert-buffer-function. (Bug#14063)
8746
8747 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
8748
8749 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
8750 and suffixes don't overlap (bug#14061).
8751
8752 * case-table.el: Use lexical-binding.
8753 (case-table-get-table): New function.
8754 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
8755
8756 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
8757
8758 * progmodes/subword.el: Add `superword-mode' to do word motion
8759 over symbol_words (parallels and leverages `subword-mode' which
8760 does word motion inside MixedCaseWords).
8761
8762 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
8763
8764 * eshell/em-unix.el: Move su and sudo to...
8765 * eshell/em-tramp.el: ...Eshell tramp module.
8766
8767 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8768
8769 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
8770 Change return value to be a sexp. Delay `get-buffer' to after
8771 restoring the desktop (bug#13951).
8772
8773 2013-03-26 Leo Liu <sdl.web@gmail.com>
8774
8775 * register.el: Move semantic tag handling back to
8776 cedet/semantic/senator.el. (Bug#14052)
8777
8778 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8779
8780 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
8781 into the prompt either (bug#13963).
8782
8783 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8784
8785 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
8786 part of "(error-foo)".
8787
8788 2013-03-24 Juri Linkov <juri@jurta.org>
8789
8790 * replace.el (list-matching-lines-prefix-face): New defcustom.
8791 (occur-1): Pass `list-matching-lines-prefix-face' to the function
8792 `occur-engine' if `face-differs-from-default-p' returns t.
8793 (occur-engine): Add `,' inside backquote construct to evaluate
8794 `prefix-face'. Propertize the prefix with the `prefix-face' face.
8795 Pass `prefix-face' to the functions `occur-context-lines' and
8796 `occur-engine-add-prefix'.
8797 (occur-engine-add-prefix, occur-context-lines): Add optional arg
8798 `prefix-face' and propertize the prefix with `prefix-face'.
8799 (Bug#14017)
8800
8801 2013-03-24 Leo Liu <sdl.web@gmail.com>
8802
8803 * nxml/rng-valid.el (rng-validate-while-idle)
8804 (rng-validate-quick-while-idle): Guard against deleted buffer.
8805 (Bug#13999)
8806
8807 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
8808 is the last entry in kill-buffer-hook.
8809
8810 * files.el (kill-buffer-hook): Doc fix.
8811
8812 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
8813
8814 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
8815 Make it safe-local.
8816
8817 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
8818
8819 2013-03-23 Leo Liu <sdl.web@gmail.com>
8820
8821 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
8822 Remove.
8823
8824 * nxml/rng-valid.el (rng-validate-mode)
8825 (rng-after-change-function, rng-do-some-validation):
8826 * nxml/rng-maint.el (rng-validate-buffer):
8827 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
8828 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
8829 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
8830 (nxml-extend-after-change-region): Use with-silent-modifications.
8831
8832 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
8833 timer-idle-list.
8834
8835 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
8836 (rng-next-error-1, rng-previous-error-1): Do not let-bind
8837 timer-idle-list. (Bug#13999)
8838
8839 2013-03-23 Juri Linkov <juri@jurta.org>
8840
8841 * info.el (info-index-match): New face.
8842 (Info-index, Info-apropos-matches): Add a nested subgroup to the
8843 main pattern and add text properties with the new face to matches
8844 in index entries relative to the beginning of the index entry.
8845 (Bug#14015)
8846
8847 2013-03-21 Eric Ludlam <zappo@gnu.org>
8848
8849 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
8850 Inhibit read only while inserting objects.
8851
8852 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
8853
8854 * progmodes/cfengine.el: Update docs to mention
8855 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
8856 symbol motion. Remove "_" from the word syntax.
8857
8858 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
8859
8860 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
8861 syntax for both `cfengine2-mode' and `cfengine3-mode'.
8862
8863 2013-03-20 Juri Linkov <juri@jurta.org>
8864
8865 * info.el (Info-next-reference-or-link)
8866 (Info-prev-reference-or-link): New functions.
8867 (Info-next-reference, Info-prev-reference): Use them.
8868 (Info-try-follow-nearest-node): Handle footnote navigation.
8869 (Info-fontify-node): Fontify footnotes. (Bug#13989)
8870
8871 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8872
8873 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
8874 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
8875
8876 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
8877
8878 Suppress unnecessary non-ASCII chatter during build process.
8879 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
8880 (batch-skkdic-convert): Suppress most of the chatter.
8881 It's not needed so much now that machines are faster,
8882 and its non-ASCII component was confusing; see Dmitry Gutov in
8883 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
8884
8885 2013-03-20 Leo Liu <sdl.web@gmail.com>
8886
8887 * ido.el (ido-chop): Fix bug#10994.
8888
8889 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8890
8891 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
8892 Remove vars.
8893 (whitespace-color-on, whitespace-color-off):
8894 Use `font-lock-fontify-buffer' (Bug#13817).
8895
8896 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
8897
8898 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
8899 remapping in mode-line.
8900 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
8901
8902 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8903
8904 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
8905 value for `whitespace-line' face (Bug#13875).
8906 (whitespace-font-lock-keywords): Change description.
8907 (whitespace-color-on): Don't save `font-lock-keywords' value, save
8908 the constructed keywords instead.
8909 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
8910
8911 2013-03-19 Leo Liu <sdl.web@gmail.com>
8912
8913 * progmodes/compile.el (compilation-display-error): New command.
8914 (compilation-mode-map, compilation-minor-mode-map): Bind it to
8915 C-o. (Bug#13992)
8916
8917 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8918
8919 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
8920
8921 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
8922
8923 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
8924
8925 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
8926
8927 * net/tramp-compat.el (tramp-compat-user-error): New defun.
8928
8929 * net/tramp-adb.el (tramp-adb-handle-shell-command):
8930 * net/tramp-gvfs.el (top):
8931 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
8932 (tramp-handle-shell-command): Use it.
8933 (tramp-dissect-file-name): Raise an error when hostname is a
8934 method name, and neither method nor user is specified.
8935
8936 * net/trampver.el: Update release number.
8937
8938 2013-03-18 Leo Liu <sdl.web@gmail.com>
8939
8940 Make sure eldoc can be turned off properly.
8941 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
8942 eldoc-mode.
8943 (eldoc-display-message-p): Revert last change.
8944 (eldoc-display-message-no-interference-p)
8945 (eldoc-print-current-symbol-info): Tweak.
8946
8947 2013-03-18 Tassilo Horn <tsdh@gnu.org>
8948
8949 * doc-view.el (doc-view-new-window-function): Check the new window
8950 overlay's display property instead the char property of the
8951 buffer's first char. Use `with-selected-window' instead of
8952 `save-window-excursion' with `select-window'.
8953 (doc-view-document->bitmap): Check the current doc-view overlay's
8954 display property instead the char property of the buffer's first char.
8955
8956 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8957
8958 Automate the build of ja-dic.el (Bug#13984).
8959 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
8960 from the input, rather than assume that it's been done for us by the
8961 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
8962 the current date into a ja-dic.el comment, as that complicates
8963 regression testing.
8964
8965 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
8966
8967 * whitespace.el: Fix double evaluation.
8968 (whitespace-space, whitespace-hspace, whitespace-tab)
8969 (whitespace-newline, whitespace-trailing, whitespace-line)
8970 (whitespace-space-before-tab, whitespace-indentation)
8971 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
8972 obsolete defvars.
8973 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
8974 (whitespace-color-on): Use a single font-lock-add-keywords call.
8975 Fix double-evaluation of face variables.
8976
8977 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
8978
8979 * net/tramp-adb.el (tramp-adb-parse-device-names):
8980 Use `start-process' instead of `call-process'. Otherwise, the
8981 function might be blocked under MS Windows. (Bug#13299)
8982
8983 2013-03-17 Leo Liu <sdl.web@gmail.com>
8984
8985 Extend eldoc to display info in the mode-line. (Bug#13978)
8986 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
8987 (eldoc-mode-line-string): New variable.
8988 (eldoc-minibuffer-message): New function.
8989 (eldoc-message-function): New variable.
8990 (eldoc-message): Use it.
8991 (eldoc-display-message-p)
8992 (eldoc-display-message-no-interference-p):
8993 Support eldoc-post-insert-mode.
8994
8995 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
8996 (eval-expression): Run it.
8997
8998 2013-03-17 Roland Winkler <winkler@gnu.org>
8999
9000 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
9001 strings in the list of return values.
9002
9003 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9004
9005 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
9006 radix before checking for HMS forms.
9007
9008 2013-03-16 Leo Liu <sdl.web@gmail.com>
9009
9010 * progmodes/scheme.el: Add indentation and font-locking for λ.
9011 (Bug#13975)
9012
9013 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
9014
9015 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
9016 token before point (bug#13942).
9017
9018 2013-03-16 Leo Liu <sdl.web@gmail.com>
9019
9020 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
9021
9022 2013-03-16 Eli Zaretskii <eliz@gnu.org>
9023
9024 * startup.el (command-line-normalize-file-name): Fix handling of
9025 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
9026 <xfq.free@gmail.com> in
9027 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
9028
9029 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
9030
9031 Sync with Tramp 2.2.7.
9032
9033 * net/trampver.el: Update release number.
9034
9035 2013-03-14 Tassilo Horn <tsdh@gnu.org>
9036
9037 * doc-view.el: Fix bug#13887.
9038 (doc-view-insert-image): Don't modify overlay associated to
9039 non-live windows, and implement horizontal centering of image in
9040 case it's smaller than the window.
9041 (doc-view-new-window-function): Force redisplay of new windows on
9042 doc-view buffers.
9043
9044 2013-03-13 Karl Fogel <kfogel@red-bean.com>
9045
9046 * saveplace.el (save-place-alist-to-file): Don't sort
9047 `save-place-alist', just pretty-print it (bug#13882).
9048
9049 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
9050
9051 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9052 Check whether `default-file-name-coding-system' is bound.
9053 It isn't in XEmacs.
9054
9055 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
9056
9057 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
9058 backquotes for `obsolete' (bug#13929).
9059
9060 * international/mule.el (find-auto-coding): Include file name in
9061 obsolescence warning (bug#13922).
9062
9063 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
9064
9065 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
9066 for CFEngine 3-specific indentation.
9067 (cfengine3-indent-line): Use it. Fix up category regex.
9068 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
9069
9070 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9071
9072 * type-break.el (type-break-file-name):
9073 * textmodes/remember.el (remember-data-file):
9074 * strokes.el (strokes-file):
9075 * shadowfile.el (shadow-initialize):
9076 * saveplace.el (save-place-file):
9077 * ps-bdf.el (bdf-cache-file):
9078 * progmodes/idlwave.el (idlwave-config-directory):
9079 * net/quickurl.el (quickurl-url-file):
9080 * international/kkc.el (kkc-init-file-name):
9081 * ido.el (ido-save-directory-list-file):
9082 * emulation/viper.el (viper-custom-file-name):
9083 * emulation/vip.el (vip-startup-file):
9084 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9085 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
9086
9087 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
9088
9089 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
9090 * language/thai-word.el: Switch to UTF-8.
9091
9092 See ChangeLog.16 for earlier changes.
9093
9094 ;; Local Variables:
9095 ;; coding: utf-8
9096 ;; End:
9097
9098 Copyright (C) 2011-2013 Free Software Foundation, Inc.
9099
9100 This file is part of GNU Emacs.
9101
9102 GNU Emacs is free software: you can redistribute it and/or modify
9103 it under the terms of the GNU General Public License as published by
9104 the Free Software Foundation, either version 3 of the License, or
9105 (at your option) any later version.
9106
9107 GNU Emacs is distributed in the hope that it will be useful,
9108 but WITHOUT ANY WARRANTY; without even the implied warranty of
9109 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9110 GNU General Public License for more details.
9111
9112 You should have received a copy of the GNU General Public License
9113 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.