* lisp/progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
0ea1599d
DG
12013-10-07 Dmitry Gutov <dgutov@yandex.ru>
2
3 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
4 case of the dot in a chained method call being on the following
5 line.
6
da3e5ebb
SM
72013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8
2abb4e65
SM
9 * electric.el (electric-indent-inhibit): New var.
10 (electric-indent-post-self-insert-function): Use it.
11 * progmodes/python.el (python-mode): Set it.
12
d2e0e795
SM
13 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
14 open braces.
15
16 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
17
bdc6b4c8
SM
18 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
19 (css-mode): Use electric-indent-chars.
20
da3e5ebb
SM
21 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
22 (font-lock-beg, font-lock-end): Move before first use.
23 (nxml-mode): Use syntax-propertize-function.
24 (nxml-after-change, nxml-after-change1): Adjust accordingly.
25 (nxml-extend-after-change-region): Remove.
26 * nxml/xmltok.el: Use lexical-binding.
27 (xmltok-save): Use `declare'.
28 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
29 * nxml/nxml-util.el: Use lexical-binding.
30 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
31 Use `declare'.
32 * nxml/nxml-ns.el: Use lexical-binding.
33 (nxml-ns-save): Use `declare'.
34 (nxml-ns-prefixes-for): Avoid add-to-list.
35 * nxml/rng-match.el: Use lexical-binding.
36 (rng--ipattern): Use cl-defstruct.
37 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
38 (rng-cons-group-after, rng-subst-group-after)
39 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
40 Use closures instead of `(lambda...).
41
f8f91d5d
MA
422013-10-07 Michael Albinus <michael.albinus@gmx.de>
43
44 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
45 of BEG and END.
46
da3e5ebb
SM
47 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
48 Use `tramp-handle-insert-file-contents'.
f8f91d5d
MA
49 (tramp-gvfs-handle-insert-file-contents): Remove function.
50
da3e5ebb
SM
51 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
52 Use `save-restriction' in order to keep markers.
f8f91d5d
MA
53
54 * net/trampver.el: Update release number.
55
7ccae3b1
SM
562013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
57
55ca2c0d
SM
58 * progmodes/compile.el (compilation-parse-errors):
59 Use compilation--put-prop.
60 (compilation--ensure-parse): Check compilation-multiline.
61
731fc3ae
SM
62 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
63
da3e5ebb
SM
64 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
65 lexical-binding.
a5833280 66
2e7ba2c2
SM
67 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
68
7ccae3b1
SM
69 * progmodes/ruby-mode.el: Fix recently added tests.
70 (ruby-smie-grammar): Add - and +.
71 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
72 (ruby-smie--backward-id): New functions.
73 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
74 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
75 any more.
76
85698d63
LL
772013-10-07 Leo Liu <sdl.web@gmail.com>
78
79 * register.el (register-preview-delay)
80 (register-preview-functions): New variables.
81 (register-read-with-preview, register-preview)
82 (register-describe-oneline): New functions.
83 (point-to-register, window-configuration-to-register)
84 (frame-configuration-to-register, jump-to-register)
85 (number-to-register, view-register, insert-register)
86 (copy-to-register, append-to-register, prepend-to-register)
87 (copy-rectangle-to-register): Use register-read-with-preview to
88 read register. (Bug#15525)
89
3986af6c
DS
902013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
91
92 * net/network-stream.el (network-stream-open-starttls): Don't add
93 --insecure if it's already present, because that gnutls-cli
94 rejects getting that parameter twice.
95
5cd9cda9
DG
962013-10-06 Dmitry Gutov <dgutov@yandex.ru>
97
98 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
99 keyword, too.
100
da9ea6d9
DG
1012013-10-05 Dmitry Gutov <dgutov@yandex.ru>
102
103 * newcomment.el (comment-use-global-state): Change default value
104 to t, mark obsolete (Bug#15251).
105 (comment-beginning): In addition to `comment-to-syntax', check the
106 value of `comment-use-global-state'.
107
34d1a133
SM
1082013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
109
110 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
111 (ruby-comment-column): Follow the global default, by default.
112 (ruby-smie-grammar): Add assignment syntax.
113 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
114 open-paren, a comma, or a \.
115 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
116 and line continuations.
117 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
118 followed by implicit semi-colons. Add rule for string concatenation
119 and for indentation at BOB.
120 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
121
122 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
123 calling next-sexp, since next-token may have skipped chars which
124 next-sexp doesn't know should be skipped!
125
6f6ab820
LL
1262013-10-05 Leo Liu <sdl.web@gmail.com>
127
34d1a133
SM
128 * progmodes/octave.el (octave-send-region):
129 Call compilation-forget-errors.
6f6ab820 130
34ca0f4c
XF
1312013-10-04 Xue Fuqiao <xfq.free@gmail.com>
132
133 * vc/vc-svn.el (vc-svn-find-admin-dir):
134 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
135 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
136 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
137 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
138
a27c1b72
SM
1392013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
142
258ab3bc
SM
1432013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * subr.el (read-passwd): Hide chars even when called within a context
146 where after-change-functions is disabled (bug#15501).
147 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
148 until we removed ourself from overriding-terminal-local-map.
149
939fb29c
LL
1502013-10-04 Leo Liu <sdl.web@gmail.com>
151
258ab3bc
SM
152 * progmodes/octave.el (inferior-octave-mode):
153 Call compilation-forget-errors.
939fb29c 154
63bd7f35
XF
1552013-10-04 Xue Fuqiao <xfq.free@gmail.com>
156
157 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
158
9e6229fa
MA
1592013-10-04 Michael Albinus <michael.albinus@gmx.de>
160
161 * net/secrets.el (secrets-create-collection): Add optional
162 argument ALIAS. Use proper Label keyword. Append ALIAS as
163 dbus-call-method argument. (Bug#15516)
164
1dab32a3
LL
1652013-10-04 Leo Liu <sdl.web@gmail.com>
166
167 * progmodes/octave.el (inferior-octave-error-regexp-alist)
168 (inferior-octave-compilation-font-lock-keywords): New variables.
169 (compilation-error-regexp-alist)
170 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
171 (inferior-octave-mode): Use compilation-shell-minor-mode.
172
6cad7ba3
JS
1732013-10-04 Jorgen Schaefer <forcer@forcix.cx>
174
175 * minibuffer.el (completion--replace): Be careful that `end' might be
176 a marker.
177
acbadd00
DU
1782013-10-03 Daiki Ueno <ueno@gnu.org>
179
180 Add support for package signature checking.
181 * emacs-lisp/package.el (url-http-file-exists-p)
182 (epg-make-context, epg-context-set-home-directory)
183 (epg-verify-string, epg-context-result-for)
184 (epg-signature-status, epg-signature-to-string)
185 (epg-check-configuration, epg-configuration)
186 (epg-import-keys-from-file): Declare.
187 (package-check-signature): New user option.
188 (package-unsigned-archives): New user option.
189 (package-desc): Add `signed' field.
190 (package-load-descriptor): Set `signed' field if .signed file exists.
191 (package--archive-file-exists-p): New function.
192 (package--check-signature): New function.
193 (package-install-from-archive): Check package signature.
194 (package--download-one-archive): Check archive signature.
195 (package-delete): Remove .signed file.
196 (package-import-keyring): New command.
197 (package-refresh-contents): Import default keyring.
198 (package-desc-status): Add "unsigned" status.
199 (describe-package-1, package-menu--print-info)
200 (package-menu-mark-delete, package-menu--find-upgrades)
201 (package-menu--status-predicate): Support "unsigned" status.
202
adf2aa61
SM
2032013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
204
205 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
206 the new compilation scheme using the new byte-codes.
207
208 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
209 (byte-pophandler): New byte codes.
210 (byte-goto-ops): Adjust accordingly.
211 (byte-compile--use-old-handlers): New var.
212 (byte-compile-catch): Use new byte codes depending on
213 byte-compile--use-old-handlers.
214 (byte-compile-condition-case--old): Rename from
215 byte-compile-condition-case.
216 (byte-compile-condition-case--new): New function.
217 (byte-compile-condition-case): New function that dispatches depending
218 on byte-compile--use-old-handlers.
219 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
220 when we can.
221
222 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
223 Optimize under `condition-case' and `catch' if
224 byte-compile--use-old-handlers is nil.
225 (disassemble-offset): Handle new bytecodes.
226
328a8179
SM
2272013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
228
229 * subr.el (error): Use `declare'.
230 (decode-char, encode-char): Use advertised-calling-convention instead
231 of the docstring to discourage use of the `restriction' arg.
232
15a1e936
DU
2332013-10-03 Daiki Ueno <ueno@gnu.org>
234
235 * epg.el (epg-verify-file): Add a comment saying that it does not
236 notify verification error as a return value nor a signal.
237 (epg-verify-string): Ditto.
238
376f862a
KR
2392013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
240
241 * progmodes/compile.el (compilation-start): Try globbing the arg to
242 `cd' (bug#15417).
243
a2f93a5f
MA
2442013-10-02 Michael Albinus <michael.albinus@gmx.de>
245
246 Sync with Tramp 2.2.8.
247
248 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
249 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
250 * net/trampver.el: Update release number.
251
0daa0804
JD
2522013-10-01 Jan Djärv <jan.h.d@swipnet.se>
253
254 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
255 and default-process-coding-system for darwin only.
256
abd1ae34
SM
2572013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
258
259 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
260
be4e325d
MH
2612013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
262
263 * vc/vc-git.el (vc-git-grep): Disable pager.
264
e9155c4a
DG
2652013-10-01 Dmitry Gutov <dgutov@yandex.ru>
266
494e898b
DG
267 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
268 Use :url instead of :homepage, as per
269 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
270
e9155c4a
DG
271 * newcomment.el (comment-beginning): When `comment-use-syntax' is
272 non-nil, use `syntax-ppss' (Bug#15251).
273
481a8e0f
RS
2742013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
275
be4e325d
MH
276 * progmodes/octave.el (inferior-octave-startup-file):
277 Prefer ~/.emacs.d/init_octave.m.
481a8e0f 278
056453c6
DG
2792013-09-29 Dmitry Gutov <dgutov@yandex.ru>
280
be4e325d
MH
281 * emacs-lisp/package.el (package-desc-from-define):
282 Accept additional arguments as plist, convert them to an alist and store
283 them in the `extras' slot.
056453c6
DG
284 (package-generate-description-file): Convert extras alist back to
285 plist and append to the `define-package' form arguments.
286 (package--alist-to-plist): New function.
287 (package--ac-desc): Add `extras' slot.
288 (package--add-to-archive-contents): Check if the archive-contents
289 vector is long enough, and if it is, pass its `extras' slot value
290 to `package-desc-create'.
291 (package-buffer-info): Call `lm-homepage', pass the returned value
292 to `package-desc-from-define'.
293 (describe-package-1): Render the homepage button (Bug#13291).
294
be4e325d
MH
295 * emacs-lisp/package-x.el (package-upload-buffer-internal):
296 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
056453c6 297
832966e5
JD
2982013-09-29 Jan Djärv <jan.h.d@swipnet.se>
299
300 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
301 and default-process-coding-system to utf-8-unix (Bug#15402).
302
6cfe977d
XF
3032013-09-29 Xue Fuqiao <xfq.free@gmail.com>
304
305 * subr.el (looking-back): Do not recommend using looking-back.
306
38de11bd
AM
3072013-09-28 Alan Mackenzie <acm@muc.de>
308
309 Fix indentation/fontification of Java enum with "implements".
310
311 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
312 regexp which matches "implements", etc., in Java.
313 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
314 specifier clauses coming after "enum".
315 * progmodes/cc-fonts.el (c-font-lock-declarations)
316 (c-font-lock-enum-tail): Check for extra specifier clauses coming
317 after "enum".
318
1610938f
JD
3192013-09-28 Jan Djärv <jan.h.d@swipnet.se>
320
321 * faces.el (region): Change ns_selection_color to
322 ns_selection_fg_color, add ns_selection_bg_color.
323
e090f499
LL
3242013-09-28 Leo Liu <sdl.web@gmail.com>
325
4d2e94d1
LL
326 * progmodes/octave.el (inferior-octave-completion-table)
327 (inferior-octave-completion-at-point): Minor tweaks.
328
e090f499
LL
329 * textmodes/ispell.el (ispell-lookup-words): Rename from
330 lookup-words. (Bug#15460)
331 (lookup-words): Obsolete.
332 (ispell-complete-word, ispell-command-loop): All uses changed.
333
7e138a62
RS
3342013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
335
336 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
337 (octave-mode-menu): Add octave-send-buffer.
338 (octave-send-buffer): New function.
339
5af5ed08
RS
3402013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
341
342 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
343 octave-lookfor.
344 (octave-mode-menu): Add octave-lookfor.
345 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
346 octave-lookfor.
347 (octave-lookfor): New function.
348
3b7b2692
SM
3492013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
350
351 * emacs-lisp/cl-macs.el:
352 (cl--loop-destr-temps): Remove.
353 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
354 its convention.
355 (cl--loop-set-iterator-function): New function.
356 (cl-loop): Adjust accordingly, so as not to use cl-subst.
357 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
358 Bind `it' with `let' instead of substituting it with `cl-subst'.
359 (cl--unused-var-p): New function.
360 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
361 Eliminate some unused variable warnings (bug#15326).
362
529fb53f
TH
3632013-09-27 Tassilo Horn <tsdh@gnu.org>
364
365 * doc-view.el (doc-view-scale-reset): Rename from
366 `doc-view-reset-zoom-level'.
367 (doc-view-scale-adjust): New command.
368 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
369 `doc-view-scale-adjust'.
370
0550c95a
TH
3712013-09-26 Tassilo Horn <tsdh@gnu.org>
372
373 * doc-view.el (doc-view-reset-zoom-level): New command.
374 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
375 zoom commands (bug#15466).
376
6950f152
KH
3772013-09-26 Kenichi Handa <handa@gnu.org>
378
379 * international/quail.el (quail-help): Make it not a command.
380
39587580
LL
3812013-09-26 Leo Liu <sdl.web@gmail.com>
382
383 * minibuffer.el (completion-all-sorted-completions): Make args
384 optional as they are.
385
00578659
DC
3862013-09-25 Daniel Colascione <dancol@dancol.org>
387
388 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
389 specs are and that they're not evaluated.
390
0c173878
SS
3912013-09-24 Sam Steingold <sds@gnu.org>
392
393 * midnight.el (clean-buffer-list-kill-regexps)
394 (clean-buffer-list-kill-buffer-names): Update for the new Man
395 buffer naming which includes the object name.
396
84998447
SM
3972013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
398
399 * eshell/esh-cmd.el (eshell--sep-terms): New var.
400 (eshell-parse-command, eshell-parse-pipeline): Use it since
401 eshell-separate-commands requires a dynamic scoped var.
402 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
403
33215353
LL
4042013-09-23 Leo Liu <sdl.web@gmail.com>
405
406 * autoinsert.el (auto-insert-alist): Make the value of
407 lexical-binding match its file setting.
408
57b16162
JB
4092013-09-23 Juanma Barranquero <lekktu@gmail.com>
410
c8af4e67
JB
411 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
412
57b16162
JB
413 * autoarg.el (autoarg-kp-digit-argument):
414 * electric.el (Electric-command-loop):
415 * kmacro.el (kmacro-step-edit-insert):
416 Do not set universal-argument-num-events.
417
7186ba60
LL
4182013-09-22 Leo Liu <sdl.web@gmail.com>
419
420 * files.el (interpreter-mode-alist): Add octave.
421
ece15004
AM
4222013-09-21 Alan Mackenzie <acm@muc.de>
423
424 C++: fontify identifier in declaration following "public:" correctly.
425 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
426 to match "public", etc.
427 (c-decl-prefix-re): Add ":" into the C++ value.
428 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
429 bit. Add a check for a ":" preceded by "public", etc.
430
75d83e22
EZ
4312013-09-21 Eli Zaretskii <eliz@gnu.org>
432
433 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
434 recognized by GDB 7.5 and later.
435
d052d3bd
XF
4362013-09-21 Xue Fuqiao <xfq.free@gmail.com>
437
438 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
439
31dca772
R
4402013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
441
442 * subr.el (internal--call-interactively): New const.
443 (called-interactively-p): Use it (bug#3984).
444
98ccf24e
XF
4452013-09-20 Xue Fuqiao <xfq.free@gmail.com>
446
447 * vc/pcvs.el (cvs-mode-ignore):
be4e325d
MH
448 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
449 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
98ccf24e 450
c39cc7d1
SM
4512013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
452
453 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
454 (eshell-ls-orig-insert-directory): Remove.
455 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
456 (eshell-ls-use-in-dired): Use advice-add/remove.
457 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
458 Add `orig-fun' arg for use in :around advice.
459 Make it check (redundantly) eshell-ls-use-in-dired.
460
9a0289a2
GM
4612013-09-19 Glenn Morris <rgm@gnu.org>
462
a2c501b8
GM
463 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
464
c440407a
GM
465 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
466
9a0289a2
GM
467 * emacs-lisp/eieio.el (class-parent): Undo previous change.
468
85e05915
MA
4692013-09-19 Michael Albinus <michael.albinus@gmx.de>
470
471 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
472 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
473 (tramp-get-remote-python): New defuns.
474 (tramp-get-remote-uid-with-perl)
475 (tramp-get-remote-gid-with-perl): New defuns. Perl code
476 contributed by yary <not.com@gmail.com> (tiny change).
477 (tramp-get-remote-uid-with-python)
478 (tramp-get-remote-gid-with-python): New defuns. Python code
479 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
480 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
481
ce503312
GM
4822013-09-19 Glenn Morris <rgm@gnu.org>
483
f7544773
GM
484 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
485
72fd2877
GM
486 * eshell/em-unix.el (eshell-remove-entries):
487 Rename argument to avoid name-clash with global `top-level'.
488
336b5a56
GM
489 * eshell/esh-proc.el (eshell-kill-process-function):
490 Remove eshell-reset-after-proc from eshell-kill-hook if present.
491 (eshell-reset-after-proc): Remove unused arg `proc'.
492
57a3a53d
GM
493 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
494 (directory-files-and-attributes): Mark unused arg.
495
3261d4af
GM
496 * eshell/em-unix.el (eshell-remove-entries):
497 Remove unused arg `path'. Update callers.
498
8e51b5d0
GM
499 * eshell/em-hist.el (eshell-hist-parse-arguments):
500 Remove unused arg `silent'. Update callers.
501
ce503312
GM
502 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
503 Fix (f)boundp mix-up.
504
505 * eshell/em-smart.el (eshell-smart-scroll-window)
506 (eshell-disable-after-change):
336b5a56 507 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
ce503312 508
ee3ce8a7
AM
5092013-09-18 Alan Mackenzie <acm@muc.de>
510
511 Fix fontification of type when followed by "const".
512 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
513 "known" types from fontification.
514
ec9177ba
GM
5152013-09-18 Glenn Morris <rgm@gnu.org>
516
7bb3e768
GM
517 * emacs-lisp/chart.el (x-display-color-cells): Declare.
518 (chart-face-list): Drop Emacsen without display-color-p.
519
5148da15
GM
520 * net/eww.el (libxml-parse-html-region): Declare.
521 (eww-display-html): Explicit error if no libxml2 support.
522
2f68e157
GM
523 * doc-view.el (doc-view-mode): Silence --without-x compilation.
524
9019d095
GM
525 * image.el (image-type-from-buffer, image-multi-frame-p):
526 Remove --without-x warning/error.
67645389 527
5f30349b 528 * mouse.el (mouse-yank-primary):
45069b2e 529 * term.el (term-mouse-paste):
5f30349b
GM
530 Reorder to silence --without-x compilation.
531
cd8edbbe
GM
532 * mpc.el (doc-view-mode): Silence --without-x compilation.
533
8a78544e
GM
534 * mail/rmailmm.el (rmail-mime-set-bulk-data):
535 Silence --without-x compilation.
536
12679bfd
GM
537 * progmodes/gud.el (gud-find-file, gud-mode):
538 Silence --without-x compilation.
539 (tooltip-mode): Declare.
30810a05 540
f0047cb9
GM
541 * wdired.el (dired-backup-overwrite): Remove declaration.
542 (wdired-mode-map): Add doc string.
543
e740f9d2
GM
544 * custom.el (x-get-resource): Declare.
545
92d77c89
GM
546 * eshell/em-glob.el (ange-cache):
547 * eshell/em-unix.el (ange-cache): Declare.
548
76e69577
GM
549 * faces.el (x-display-list, x-open-connection, x-get-resource):
550 Declare.
7e58af4b
GM
551
552 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
553 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
554 Declare.
76e69577 555
4bd4c0af 556 * frame.el (x-display-grayscale-p, x-display-name): Declare.
e740f9d2 557
ffb82dbd
GM
558 * net/gnutls.el (gnutls-log-level): Declare.
559
986ed135
GM
560 * net/shr.el (image-size, image-animate): Declare.
561
e740f9d2
GM
562 * simple.el (font-info): Declare.
563
d2f3e9f8
GM
564 * subr.el (x-popup-dialog): Declare.
565
047a1a4c
GM
566 * term/common-win.el (x-select-enable-primary)
567 (x-last-selected-text-primary, x-last-selected-text-clipboard):
568 Declare.
569
f4a1d572
GM
570 * term/ns-win.el (x-handle-args): Declare.
571
e843de77
GM
572 * term/x-win.el (x-select-enable-clipboard): Declare.
573
5fa89513
GM
574 * term/w32-win.el (create-default-fontset): Declare.
575
38702b5b
GM
576 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
577 Declare.
578
e740f9d2
GM
579 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
580 (fit-frame-to-buffer): Explicit error if --without-x.
581 (mouse-autoselect-window-select): Silence compiler.
582
49a053fc
GM
583 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
584
585 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
586 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
587 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
91c837fe 588 * eshell/esh-util.el (eshell-sublist):
49a053fc
GM
589 Remove unused local variables.
590
591 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
592
ec9177ba
GM
593 * textmodes/two-column.el: Make 2C-split work for --without-x.
594 (scroll-bar-columns): Autoload.
595 (top-level): Require fringe when compiling.
596
9f25cb77
LL
5972013-09-18 Leo Liu <sdl.web@gmail.com>
598
599 * subr.el (add-hook): Robustify to handle closure as well.
600
2b42da98
GM
6012013-09-17 Glenn Morris <rgm@gnu.org>
602
603 * simple.el (messages-buffer-mode-map): Unbind "g".
604
e8b66a6a
SM
6052013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
606
9c0ad4f7
SM
607 * help-mode.el (help-mode-finish): Use derived-mode-p.
608 Remove obsolete highlighting.
609
7a806dfb
SM
610 * play/life.el (life-mode): Use define-derived-mode. Derive from
611 special-mode.
612 (life): Let-bind inhibit-read-only.
613 (life-setup): Avoid `setq'. Use `life-mode'.
614
96dbf5a8
SM
615 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
616 which should not be needed any more.
617 (package-menu-refresh, package-menu-describe-package): Use user-error.
618
e8b66a6a
SM
619 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
620 (eshell-post-rewrite-command-hook): Make obsolete.
621 (eshell-parse-command): Simplify.
622 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
623 (eshell--cmd): Declare.
624 (eshell-parse-pipeline): Remove unused var `final-p'.
625 Pass a dynvar to eshell-post-rewrite-command-hook.
626 Implement the new eshell-post-rewrite-command-function.
627 (eshell-invoke-directly): Remove unused arg `input'.
628 * eshell/esh-io.el (eshell-io-initialize):
629 Use eshell-post-rewrite-command-function (bug#15399).
630 (eshell--apply-redirections): Rename from eshell-apply-redirections;
631 adjust to new calling convention.
632 (eshell-create-handles): Rename args to avoid clashing with dynvar
633 `standard-output'.
634
90582f05
GM
6352013-09-17 Glenn Morris <rgm@gnu.org>
636
637 * simple.el (messages-buffer-mode): New major mode.
638 (messages-buffer): New function.
639 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
640 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
f804aa63 641 (ert-run-test): Use `messages-buffer' function.
90582f05 642 (ert--force-message-log-buffer-truncation): Ignore read-only.
f804aa63
GM
643 * help.el (view-echo-area-messages): Use `messages-buffer' function.
644 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
90582f05 645
39eb0cb5 6462013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1809eef8
SM
647
648 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
649
1f1e06e2
SM
650 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
651
70568a90
SM
6522013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
653
504a0381
SM
654 * icomplete.el (icomplete-in-buffer): New var.
655 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
656 vars and replace them with functions.
657 (icomplete-minibuffer-setup): Adjust accordingly.
658 (icomplete--completion-table, icomplete--completion-predicate)
659 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
660 New functions.
661 (icomplete-forward-completions, icomplete-backward-completions)
662 (icomplete-simple-completing-p, icomplete-exhibit)
663 (icomplete-completions): Use them.
664 (icomplete--in-region-buffer): New var.
665 (icomplete--in-region-setup): New function.
666 (icomplete-mode): Use it.
667
70568a90
SM
668 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
669 (bug#15379).
670 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
671 return args and options.
672 (eshell-eval-using-options): Use the new return value of
673 eshell--do-opts to set the options's vars in their scope.
674 (eshell--set-option): Rename from eshell-set-option.
675 Add arg `opt-vals'.
676 (eshell--process-option): Rename from eshell-process-option.
677 Add arg `opt-vals'.
678 (eshell--process-args): Use an `opt-vals' alist to store the options's
679 values during their processing and return them additionally to the
680 remaining args.
681
578c21bc
DG
6822013-09-15 Dmitry Gutov <dgutov@yandex.ru>
683
684 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
685 continuation character an operator, as far as indentation is
686 concerned (Bug#15369).
687
c089653d
MR
6882013-09-15 Martin Rudalics <rudalics@gmx.at>
689
690 * window.el (window--state-put-2): Don't process buffer state
691 when buffer doesn't exist any more (Bug#15382).
692
1e53bb4b
GM
6932013-09-15 Glenn Morris <rgm@gnu.org>
694
30753242
GM
695 * eshell/em-unix.el (eshell/rm):
696 Make -f ignore missing files. (Bug#15373)
697
1e53bb4b
GM
698 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
699 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
700 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
701
0d8863b3
GM
7022013-09-14 Glenn Morris <rgm@gnu.org>
703
704 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
705
d3fc6549
GM
7062013-09-13 Glenn Morris <rgm@gnu.org>
707
708 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
709 (dired-guess-default): Make `file' available in the env. (Bug#15363)
710
fcd42c11
DA
7112013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
712
713 * frame.el (x-focus-frame): Mark as declared in frame.c.
714
7830899f
SM
7152013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
716
717 * ls-lisp.el: Use advice-add.
718 (original-insert-directory): Remove.
719 (ls-lisp--insert-directory): Rename from insert-directory; add
720 `orig-fun' argument.
721 (insert-directory): Advise.
722
84387cd2
EZ
7232013-09-13 Eli Zaretskii <eliz@gnu.org>
724
725 * term.el (term-emulate-terminal): Decode the command string
726 before passing it to term-command-hook. (Bug#15337)
727
35ffc6ba
GM
7282013-09-13 Glenn Morris <rgm@gnu.org>
729
5c3f9bcc
GM
730 * eshell/esh-util.el (ange-cache): Move declaration earlier.
731
2ada368a
GM
732 * eshell/esh-ext.el (eshell-search-path): Declare.
733
fcef2e13
GM
734 * eshell/em-prompt.el (eshell/pwd): Autoload it.
735 Otherwise an error occurs if eshell-dirs module not loaded.
736
35ffc6ba
GM
737 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
738
35c3d36e
MA
7392013-09-13 Michael Albinus <michael.albinus@gmx.de>
740
741 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
742 `tramp-check-proper-host'. Check for a valid method name.
743
744 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
745 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
746 * net/tramp-sh.el (tramp-maybe-open-connection):
747 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
748
749 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
750 also for hash values.
751
ae5e4c48
SM
7522013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
753
379add74
SM
754 * term/ns-win.el (parameters): Don't declare as dynamic.
755 (before-make-frame-hook): Don't add ineffective function.
756
ae5e4c48
SM
757 * eshell/*.el: Use lexical-binding (bug#15231).
758
b5623270
KH
7592013-09-12 Kenichi Handa <handa@gnu.org>
760
ae5e4c48 761 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
b5623270 762
30213927
GM
7632013-09-12 Glenn Morris <rgm@gnu.org>
764
be94d713 765 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
aa30fa6f 766 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
be94d713 767
44915370
GM
768 * subr.el (do-after-load-evaluation): Also give compiler warnings
769 when obsolete files are used (except by obsolete files).
770
a6ae021f
GM
771 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
772 in the status output, assume `filename' is the first. (Bug#15322)
773
40e64f0c
GM
774 * vc/vc.el (vc-deduce-fileset): Doc fix.
775
16d9f896
GM
776 * calc/calc-help.el (Info-goto-node):
777 * progmodes/cperl-mode.el (Info-find-node):
778 * vc/ediff.el (Info-goto-node): Update declarations.
779
dea01c6e
GM
780 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
781
759880bf 782 * vc/vc-bzr.el (vc-compilation-mode): Declare.
96b3f75a
GM
783 (vc-bzr-pull): Require vc-dispatcher.
784 * vc/vc-git.el (vc-compilation-mode): Declare.
785 (vc-git-pull): Require vc-dispatcher.
786
08d66420
GM
787 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
788
30b626e9
GM
789 * progmodes/octave.el (help-button-action): Declare.
790
8c05cb10
GM
791 * shell.el (shell-directory-tracker): Output error as a message
792 rather than just returning it as a string.
793 (shell-process-pushd): Remove useless use of message.
794
30213927
GM
795 * dframe.el (dframe-timer-fn):
796 * files.el (dir-locals-read-from-file):
797 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
798 (mpc-format):
799 * reveal.el (reveal-post-command):
800 * saveplace.el (load-save-place-alist-from-file):
801 * shell.el (shell-resync-dirs):
802 * w32-common-fns.el (x-get-selection-value):
803 * emacs-lisp/copyright.el (copyright-find-copyright):
804 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
805 * emulation/tpu-edt.el (tpu-copy-keyfile):
806 * play/bubbles.el (bubbles--mark-neighbourhood):
807 * progmodes/executable.el
808 (executable-make-buffer-file-executable-if-script-p):
809 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
810
d3b049e6
SM
8112013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
812
170266d0
SM
813 Cleanup Eshell to rely less on dynamic scoping.
814 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
815 last-value, and ext-command here. Bind `args' closer to `body'.
816 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
817 (eshell--args): Declare new dynamic var.
818 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
819 last-value, and ext-command. Pass `args' to `body'.
820 (eshell-process-args): Bind eshell--args.
821 (eshell-set-option): Use eshell--args.
822 * eshell/eshell.el (eshell): Use derived-mode-p.
823 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
824 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
825 (eshell-glob-function): Declare.
826 * eshell/esh-util.el: Require cl-lib.
827 (eshell-read-hosts-file): Avoid add-to-list.
828 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
829 `err'.
830 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
831 Declare.
832 (eshell/diff): Remove unused var `err'.
833 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
834 `killflag'.
835 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
836 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
837 first use.
838 * eshell/em-glob.el (eshell-glob-matches, message-shown):
839 Move declaration before first use.
840 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
d3b049e6
SM
841 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
842 rely on cl-return.
843
56834f3b
GM
8442013-09-12 Glenn Morris <rgm@gnu.org>
845
846 * term/ns-win.el (global-map): Remove binding for ispell-next,
847 deleted 1999-05-29. (Bug#15357)
848
5c91a2b8
GM
8492013-09-11 Glenn Morris <rgm@gnu.org>
850
da712f22
GM
851 * echistory.el (electric-command-history): Remove call to deleted func.
852
512e4cdc
GM
853 * play/landmark.el (landmark-mode): Fix typos.
854
d3506ca5
GM
855 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
856 Check cvs-sort-ignore-file is bound.
857
5c91a2b8
GM
858 * savehist.el: No need for cl when compiling on Emacs.
859
feeff482
SM
8602013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
861
656bd483
SM
862 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
863 (bug#15338).
d3b049e6
SM
864 (eshell-self-insert-command, eshell-send-invisible):
865 Remove unused argument.
656bd483
SM
866 (eshell-handle-control-codes): Remove unused var `orig'.
867 Avoid delete-backward-char.
868
feeff482
SM
869 * files.el (set-auto-mode): Simplify a bit further.
870
2a08047a
GM
8712013-09-11 Glenn Morris <rgm@gnu.org>
872
873 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
874 (set-auto-mode): Don't regexp-quote elements.
875 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
876 * progmodes/cc-mode.el (interpreter-mode-alist):
877 * progmodes/ruby-mode.el (interpreter-mode-alist):
878 Revert previous change.
879
34675540
SM
8802013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
881
1b3b87df
SM
882 * play/snake.el (snake-mode):
883 * play/mpuz.el (mpuz-mode):
884 * play/landmark.el (lm-mode):
885 * play/blackbox.el (blackbox-mode):
886 * play/5x5.el (5x5-mode):
887 * obsolete/options.el (Edit-options-mode):
888 * net/quickurl.el (quickurl-list-mode):
889 * net/newst-treeview.el (newsticker-treeview-mode):
890 * mail/rmailsum.el (rmail-summary-mode):
891 * mail/mspools.el (mspools-mode):
892 * locate.el (locate-mode):
893 * ibuffer.el (ibuffer-mode):
894 * emulation/ws-mode.el (wordstar-mode):
895 * emacs-lisp/debug.el (debugger-mode):
896 * array.el (array-mode):
897 * net/eudc.el (eudc-mode): Use define-derived-mode.
898 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
899 Move initialization into declaration.
900 (mairix-searches-mode): Use define-derived-mode.
901 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
902 (eudc-edit-hotlist): Use dolist.
903 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
904 (Man-mode): Use define-derived-mode.
905 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
906 (Info-edit-mode): Use define-derived-mode.
907 (Info-cease-edit): Use Info-mode.
908 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
909 into declaration.
910 (eshell-mode): Use define-derived-mode.
911 * chistory.el (command-history-mode-map): Rename from
912 command-history-map.
913 (command-history-mode): Use define-derived-mode.
da712f22 914 (Command-history-setup): Remove function.
1b3b87df
SM
915 * calc/calc.el (calc-trail-mode-map): New var.
916 (calc-trail-mode): Use define-derived-mode.
917 (calc-trail-buffer): Set calc-main-buffer manually.
918 * bookmark.el (bookmark-insert-annotation): New function.
919 (bookmark-edit-annotation): Use it.
920 (bookmark-edit-annotation-mode): Make it a proper major mode.
921 (bookmark-send-edited-annotation): Use derived-mode-p.
922 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
923 closer to its ideal place. Use \' to match EOS.
924
34675540
SM
925 * profiler.el (profiler-calltree-find): Use function-equal.
926
6a5c15d9
GM
9272013-09-10 Glenn Morris <rgm@gnu.org>
928
1af4c220
GM
929 * files.el (interpreter-mode-alist): Convert to regexps.
930 (set-auto-mode): Adapt for this. (Bug#15306)
931 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
932 Comment out unused variable.
933 * progmodes/cc-mode.el (interpreter-mode-alist):
934 * progmodes/python.el (interpreter-mode-alist):
935 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
936 * progmodes/sh-script.el (sh-set-shell):
937 No longer use interpreter-mode-alist to get list of shells.
938
6a5c15d9
GM
939 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
940
8c27f5ff
SM
9412013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
942
02ef6c1a 943 * simple.el: Use set-temporary-overlay-map for universal-argument.
656bd483 944 (universal-argument-map): Don't use default-bindings (bug#15317).
02ef6c1a
SM
945 Bind switch-frame explicitly. Replace universal-argument-minus with
946 a conditional binding.
947 (universal-argument-num-events, saved-overriding-map): Remove.
948 (restore-overriding-map): Remove.
949 (universal-argument--mode): Rename from save&set-overriding-map,
950 and rewrite.
951 (universal-argument, universal-argument-more, negative-argument)
952 (digit-argument): Adjust accordingly.
953 (universal-argument-minus): Remove.
954 (universal-argument-other-key): Remove.
955
8c27f5ff
SM
956 * subr.el (with-demoted-errors): Add `format' argument.
957
6480194c
MA
9582013-09-10 Michael Albinus <michael.albinus@gmx.de>
959
960 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
961 `tramp-cleanup-connection'.
962
963 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
964 parameters KEEP-DEBUG and KEEP-PASSWORD.
965
966 * net/tramp.el (tramp-file-name-handler):
967 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
968 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
969 (tramp-maybe-open-connection):
8c27f5ff
SM
970 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
971 Use `tramp-cleanup-connection'.
6480194c 972
8c27f5ff
SM
973 * net/tramp-sh.el (tramp-maybe-open-connection):
974 Catch 'uname-changed inside the progress reporter.
6480194c 975
e5e916d8
GM
9762013-09-10 Glenn Morris <rgm@gnu.org>
977
9a2c9b47
GM
978 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
979
e5e916d8
GM
980 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
981 returns "alternate access method" in mode (eg "-rw-r--r--.").
982
144e38fe
GM
9832013-09-08 Glenn Morris <rgm@gnu.org>
984
985 * saveplace.el (load-save-place-alist-from-file):
986 Demote errors. (Bug#15305)
987
af9ff9e8
MA
9882013-09-08 Michael Albinus <michael.albinus@gmx.de>
989
990 Improve compatibility with older Emacsen, and XEmacs.
991
992 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
993 only if it is bound. It isn't for XEmacs.
8c27f5ff
SM
994 (with-tramp-progress-reporter): Do not let-bind `result'.
995 This yields to scoping errors in XEmacs.
af9ff9e8
MA
996 (tramp-handle-make-auto-save-file-name): New function, moved from
997 tramp-sh.el.
998
999 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
1000 for `make-auto-save-file-name'.
8c27f5ff
SM
1001 (tramp-adb--gnu-switches-to-ash):
1002 Use `tramp-compat-replace-regexp-in-string'.
af9ff9e8
MA
1003
1004 * net/tramp-cache.el (tramp-cache-print): Call
1005 `substring-no-properties' only if it is bound. It isn't for XEmacs.
1006
1007 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
1008 bound. It isn't for XEmacs.
1009
8c27f5ff
SM
1010 * net/tramp-compat.el (tramp-compat-copy-file):
1011 Catch `wrong-number-of-arguments' error.
af9ff9e8
MA
1012 (tramp-compat-replace-regexp-in-string): New defun.
1013
1014 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
1015 for `make-auto-save-file-name'.
1016 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
1017 `copy-file'.
1018 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
1019 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
1020 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
1021
8c27f5ff
SM
1022 * net/tramp-gw.el (tramp-gw-open-network-stream):
1023 Use `tramp-compat-replace-regexp-in-string'.
af9ff9e8 1024
8c27f5ff
SM
1025 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1026 Call `tramp-handle-make-auto-save-file-name'.
af9ff9e8
MA
1027 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
1028 (tramp-sh-file-gvfs-monitor-dir-process-filter)
8c27f5ff
SM
1029 (tramp-sh-file-inotifywait-process-filter):
1030 Use `tramp-compat-replace-regexp-in-string'.
af9ff9e8
MA
1031 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
1032
1033 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
1034 for `make-auto-save-file-name'.
8c27f5ff
SM
1035 (tramp-smb-handle-copy-directory):
1036 Call `tramp-compat-replace-regexp-in-string'.
af9ff9e8
MA
1037 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
1038 (tramp-smb-handle-copy-file): Improve error message.
1039 (tramp-smb-handle-rename-file): Rename directly only in case
1040 `newname' does not exist yet. This is a restriction of smbclient.
1041 (tramp-smb-maybe-open-connection): Rerun the function only when
1042 `auth-sources' is non-nil.
1043
0ca754d0
KH
10442013-09-08 Kenichi Handa <handa@gnu.org>
1045
1046 * international/characters.el: Set category "^" (Combining) for
1047 more characters.
1048
e8dd0787
AM
10492013-09-07 Alan Mackenzie <acm@muc.de>
1050
1051 Correctly fontify Java class constructors.
1052 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
1053 in Java Mode.
1054 (c-recognize-typeless-decls): Set the Java value to t.
8c27f5ff
SM
1055 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
1056 While handling a "(", add a check for, effectively, Java, and handle a
e8dd0787
AM
1057 "typeless" declaration there.
1058
f2f248e7
RW
10592013-09-07 Roland Winkler <winkler@gnu.org>
1060
1061 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
1062 field subtitle for entry type book.
1063
67982e2b
SM
10642013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1065
1066 * minibuffer.el: Make minibuffer-complete call completion-in-region
1067 rather than other way around.
1068 (completion--some, completion-pcm--find-all-completions):
1069 Don't delay signals when debugging.
1070 (minibuffer-completion-contents): Beware fields within the
1071 minibuffer contents.
1072 (completion-all-sorted-completions): Use defvar-local.
1073 (completion--do-completion, completion--cache-all-sorted-completions)
1074 (completion-all-sorted-completions, minibuffer-force-complete):
1075 Add args `beg' and `end'.
1076 (completion--in-region-1): New fun, extracted from minibuffer-complete.
1077 (minibuffer-complete): Use completion-in-region.
1078 (completion-complete-and-exit): New fun, extracted from
1079 minibuffer-complete-and-exit.
1080 (minibuffer-complete-and-exit): Use it.
1081 (completion--complete-and-exit): Rename from
1082 minibuffer--complete-and-exit.
1083 (completion-in-region--single-word): New function, extracted from
1084 minibuffer-complete-word.
1085 (minibuffer-complete-word): Use it.
1086 (display-completion-list): Make `common-substring' argument obsolete.
1087 (completion--in-region): Call completion--in-region-1 instead of
1088 minibuffer-complete.
1089 (completion-help-at-point): Pass boundaries to
1090 minibuffer-completion-help as args rather than via an overlay.
1091 (completion-pcm--string->pattern): Use `any-delim'.
1092 (completion-pcm--optimize-pattern): New function.
1093 (completion-pcm--pattern->regex): Handle `any-delim'.
1094 * icomplete.el (icomplete-forward-completions)
1095 (icomplete-backward-completions, icomplete-completions):
1096 Adjust calls to completion-all-sorted-completions and
1097 completion--cache-all-sorted-completions.
1098 (icomplete-with-completion-tables): Default to t.
1099 * emacs-lisp/crm.el (crm--current-element): Rename from
1100 crm--select-current-element. Don't put an overlay but return the
1101 boundaries instead.
1102 (crm--completion-command): Take two new args to bind to the boundaries.
1103 (crm-completion-help): Adjust accordingly.
1104 (crm-complete): Use completion-in-region.
1105 (crm-complete-word): Use completion-in-region--single-word.
1106 (crm-complete-and-exit): Use completion-complete-and-exit.
1107
e17d94a5
SM
11082013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1109
1110 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
1111 than dynamically.
1112
96727100
JL
11132013-09-06 Juri Linkov <juri@jurta.org>
1114
1115 * info.el (Info-display-images-node): When image file doesn't exist
1116 display text version of the image if it's provided in the Info file.
1117 Otherwise, display the location of missing image from SRC attribute.
1118 Add help-echo text property from ALT attribute. (Bug#15279)
1119
86cf7329
SM
11202013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
1121
1122 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
1123 (edit-abbrevs-mode): Use define-derived-mode.
1124
1125 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
1126 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
1127 that it's defined.
1128 (epa-key-list-mode, epa-key-mode, epa-info-mode):
1129 Use define-derived-mode.
1130
1131 * epg.el (epg-start-encrypt): Minor CSE simplification.
1132
816244a2
WX
11332013-09-06 William Xu <william.xwl@gmail.com>
1134
1135 * arc-mode.el: Add support for 7za (bug#15264).
1136 (archive-7z-program): New var.
1137 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
1138 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
1139 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
1140
1486fa31
MA
11412013-09-06 Michael Albinus <michael.albinus@gmx.de>
1142
1143 Remove URL syntax.
1144
1145 * net/tramp.el (tramp-syntax, tramp-prefix-format)
1146 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
1147 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
1148 (tramp-postfix-host-format, tramp-file-name-regexp)
1149 (tramp-completion-file-name-regexp)
1150 (tramp-completion-dissect-file-name)
1151 (tramp-handle-substitute-in-file-name): Remove 'url case.
1152 (tramp-file-name-regexp-url)
1153 (tramp-completion-file-name-regexp-url): Remove constants.
1154
39785324
GM
11552013-09-06 Glenn Morris <rgm@gnu.org>
1156
1157 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
1158
1f896cb7
DG
11592013-09-05 Dmitry Gutov <dgutov@yandex.ru>
1160
1161 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
1162 keywords" below "here-doc beginnings" (Bug#15270).
1163
c0458e0b
SM
11642013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1165
1166 * subr.el (pop): Use `car-safe'.
1167 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
1168 to detect unused `pop' return value.
1169
1170 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
1171 var `block-regexp'.
1172 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
1173 (python-fill-string): Remove unused var `marker'.
1174 (python-skeleton-add-menu-items): Remove unused var `items'.
1175
1176 * international/mule-cmds.el: Require CL.
1177 (find-coding-systems-for-charsets): Avoid add-to-list.
1178 (sanitize-coding-system-list): New function, extracted from
1179 select-safe-coding-system-interactively.
1180 (select-safe-coding-system-interactively): Use it.
1181 (read-input-method-name): Accept symbols for `default'.
1182
1183 * emacs-lisp/advice.el (defadvice): Add indent rule.
1184
6c42fc3e
DH
11852013-09-05 Daniel Hackney <dan@haxney.org>
1186
1187 * dired-x.el:
1188 * net/ange-ftp.el:
1189 * net/browse-url.el:
1190 * net/dbus.el:
1191 * net/eudc.el:
1192 * net/eudcb-ldap.el:
1193 * net/eww.el:
1194 * net/imap.el:
1195 * printing.el:
1196 * vc/ediff-diff.el:
1197 * vc/ediff-init.el:
1198 * vc/ediff-merg.el:
1199 * vc/ediff-mult.el:
1200 * vc/ediff-util.el:
1201 * vc/ediff-wind.el:
1202 * vc/ediff.el:
1203 * vc/emerge.el:
1204 * vc/pcvs.el:
1205 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
1206 byte compiler. Remove some unused let-bound variables.
1207
4c528aab
SM
12082013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
1209
1210 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
1211 a "ref-cell", since it gets better optimized (bug#14883).
1212
bd15c390
GM
12132013-09-05 Glenn Morris <rgm@gnu.org>
1214
1215 * progmodes/cc-awk.el (c-forward-sws): Declare.
1216
1c3ac2e5
GM
12172013-09-04 Glenn Morris <rgm@gnu.org>
1218
1219 * generic-x.el [rul-generic-mode]: Require cc-mode.
1220 (c++-mode-syntax-table): Declare.
1221 (rul-generic-mode-syntax-table): Init in the defvar.
1222
52b1cc79
SM
12232013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1224
c828af56
SM
1225 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
1226 (vc-do-command, vc-set-async-update):
1227 * vc/vc-mtn.el (vc-mtn-dir-status):
1228 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
1229 (vc-hg-pull, vc-hg-merge-branch):
1230 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
1231 (vc-git-merge-branch):
1232 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
1233 (vc-cvs-dir-status-files):
1234 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
1235 (vc-bzr-dir-status-files):
1236 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
1237 * vc/vc-annotate.el: Use lexical-binding.
1238 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
1239 (vc-sentinel-movepoint): Declare.
1240 (vc-annotate): Don't use `goto-line'.
1241 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
1242 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
1243 (vc-sentinel-movepoint): Declare.
1244 * vc/vc-svn.el: Use lexical-binding.
1245 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
1246 * vc/vc-sccs.el:
1247 * vc/vc-rcs.el: Use lexical-binding.
1248
abae272c
SM
1249 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
1250 `deleted'. Don't drop errors silently.
1251
52b1cc79
SM
1252 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
1253
63191d9f
XF
12542013-09-04 Xue Fuqiao <xfq.free@gmail.com>
1255
1256 * vc/vc.el (vc-ignore): Rewrite.
1257 (vc-default-ignore): New function.
1258 (vc-default-ignore-completion-table): Use find-ignore-file.
1259
1260 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
1261 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
1262 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
1263 Remove. Most code moved to vc.el.
1264
9d3f707c
SM
12652013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
1266
abae272c 1267 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
38726039
SM
1268 * net/tramp-smb.el (tramp-smb-get-file-entries):
1269 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
1270 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
1271
fde38d49
SM
1272 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
1273 Update call to it.
1274 (eww-change-select): Remove unused var `properties'.
1275 (eww-make-unique-file-name): Remove unused var `base'.
1276
1277 * finder.el (finder-compile-keywords): Don't mess with windows.
1278
84032db7
SM
1279 * calculator.el (calculator-funcall): Fix typo in last change.
1280
724f5e41
SM
1281 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
1282
14b511d4
SM
1283 * emacs-lisp/package.el (package-activate-1): Don't let a missing
1284 <pkg>-autoloads.el file stop us.
1285
9d3f707c 1286 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
14b511d4 1287 warnings, and factor out common code.
9d3f707c 1288
88527bc0
DG
12892013-09-03 Dmitry Gutov <dgutov@yandex.ru>
1290
1291 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
1292 two-character operators and whether the character preceding them
1293 changes their meaning (Bug#15208).
1294
96edb677
FEG
12952013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
1296
1297 Format code sent to Python shell for robustness.
9d3f707c
SM
1298 * progmodes/python.el (python-shell-buffer-substring):
1299 New function.
96edb677
FEG
1300 (python-shell-send-region, python-shell-send-buffer): Use it.
1301
95beaef3
MA
13022013-09-02 Michael Albinus <michael.albinus@gmx.de>
1303
1304 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
1305 * net/tramp.el (tramp-user-error): ... here.
1306 (tramp-find-method, tramp-check-proper-host)
1307 (tramp-dissect-file-name, tramp-debug-message)
1308 (tramp-handle-shell-command):
1309 * net/tramp-adb.el (tramp-adb-handle-shell-command):
1310 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
1311
1312 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
1313
f167c27b
MR
13142013-09-02 Martin Rudalics <rudalics@gmx.at>
1315
1316 * avoid.el (mouse-avoidance-point-position)
1317 (mouse-avoidance-too-close-p): Handle case where posn-at-point
1318 returns nil.
1319
cd16c5f1
FEG
13202013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
1321
1322 * progmodes/python.el (python-shell-completion-get-completions):
1323 Drop use of deleted `comint-last-prompt-overlay'.
e5c144d6 1324 (python-nav-if-name-main): New command.
cd16c5f1 1325
e73c3a0d
GM
13262013-09-01 Glenn Morris <rgm@gnu.org>
1327
f8ccce03
GM
1328 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1329 Avoid leading space in $wins. Otherwise the sed command used by
1330 eg compile-main ends up containing "/*.el". (Bug#15170)
1331
e73c3a0d
GM
1332 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
1333
415f808e
GM
13342013-08-30 Glenn Morris <rgm@gnu.org>
1335
1336 * emacs-lisp/bytecomp.el (byte-recompile-directory):
1337 Fix is-this-a-directory logic. (Bug#15220)
1338
f069bba8
SM
13392013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1340
112798c1
SM
1341 * textmodes/css-mode.el: Use SMIE.
1342 (css-smie-grammar): New var.
1343 (css-smie--forward-token, css-smie--backward-token)
1344 (css-smie-rules): New functions.
1345 (css-mode): Use them.
1346 (css-navigation-syntax-table): Remove var.
1347 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
1348 (css-indent-calculate, css-indent-line): Remove functions.
1349
1350 Misc changes to reduce use of `(lambda...); and other cleanups.
1351 * cus-edit.el: Use lexical-binding.
1352 (customize-push-and-save, customize-apropos)
1353 (custom-buffer-create-internal): Use closures.
1354 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
1355 * progmodes/ada-xref.el: Use setq.
1356 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
1357 * dframe.el: Use lexical-binding.
1358 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
1359 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
1360 * descr-text.el: Use lexical-binding.
1361 (describe-text-widget, describe-text-sexp, describe-property-list):
1362 Use closures.
1363 * comint.el (comint-history-isearch-push-state): Use a closure.
1364 * calculator.el: Use lexical-binding.
1365 (calculator-number-to-string): Make it work with lexical-binding.
1366 (calculator-funcall): Same and use cl-letf.
1367
2da4c3ab
SM
1368 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
1369 (lisp--company-doc-string, lisp--company-location): New functions.
1370 (lisp-completion-at-point): Use them to improve Company support.
1371
f069bba8
SM
1372 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
1373 params of lambda expressions.
1374 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
1375 (ruby-smie--opening-pipe-p): New function.
1376 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
1377 symbols and matched |...| for formal params.
1378 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
1379 from being treated as hanging. Handle "rescue".
1380
6758b6a8
GM
13812013-08-29 Glenn Morris <rgm@gnu.org>
1382
1383 * progmodes/cc-engine.el (c-pull-open-brace):
1384 Move definition before use.
1385
e8dfd197
SM
13862013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
1387
1388 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
1389 are immutable. Don't use `unsafe' any more.
1390 (cl--defsubst-expand): Don't substitute at the same time as keeping
1391 a residual unused let-binding. Don't use `unsafe' any more.
1392
cc585c96
GM
13932013-08-29 Glenn Morris <rgm@gnu.org>
1394
ba579ea6
GM
1395 * calendar/cal-china.el (calendar-chinese-year-cache):
1396 Recenter on 2015.
1397
8201a87e
GM
1398 * nxml/nxml-util.el (nxml-debug-clear-inside):
1399 Use cl-loop rather than loop.
1400
6ee877c7
GM
1401 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
1402
cc585c96
GM
1403 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
1404
27be8d39
GM
14052013-08-28 Glenn Morris <rgm@gnu.org>
1406
397440a1
GM
1407 * progmodes/antlr-mode.el: No need to require cc-mode twice.
1408
2bb762d4
GM
1409 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
1410
27be8d39
GM
1411 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
1412
2d69b99e
SM
14132013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1414
f663baa7
SM
1415 * simple.el (repeat-complex-command--called-interactively-skip):
1416 New function.
1417 (repeat-complex-command): Use it (bug#14136).
1418
dd4f8b74
SM
1419 * progmodes/cc-mode.el: Minor cleanup of var declarations.
1420 (c-define-abbrev-table): Add `doc' argument.
1421 (c-mode-abbrev-table, c++-mode-abbrev-table)
1422 (objc-mode-abbrev-table, java-mode-abbrev-table)
1423 (idl-mode-abbrev-table, pike-mode-abbrev-table)
1424 (awk-mode-abbrev-table): Use it.
1425 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
1426 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
1427 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
1428 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
1429 Move initialization into the declaration; and remove any
1430 autoload cookie.
1431
b58969f7
SM
1432 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
1433 and dynamic let binding.
1434
4021d6a6
SM
1435 * vc/smerge-mode.el: Remove redundant :group args.
1436
2d69b99e
SM
1437 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
1438 to load-path.
1439
274919fd
JL
14402013-08-28 Juri Linkov <juri@jurta.org>
1441
1442 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
1443 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
1444 (isearch-other-meta-char): Handle an undefined shifted printing
1445 character by downshifting it. (Bug#15200)
1446
121f8c95
JL
14472013-08-28 Juri Linkov <juri@jurta.org>
1448
1449 * isearch.el (isearch-search): Change regexp error message for
1450 non-regexp searches. (Bug#15166)
1451
50b13cde
PE
14522013-08-28 Paul Eggert <eggert@cs.ucla.edu>
1453
1454 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
1455 for portability to hosts where /bin/sh has problems.
1456
95888bca
SM
14572013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
1458
1459 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
1460
bbe558f1
JL
14612013-08-27 Juri Linkov <juri@jurta.org>
1462
1463 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
1464 in the keyboard macro. (Bug#15126)
1465
26f98a7d
JL
14662013-08-27 Juri Linkov <juri@jurta.org>
1467
1468 * isearch.el (isearch-quote-char): Comment out converting unibyte
1469 to multibyte, thus syncing with its `quoted-insert' counterpart.
1470 (Bug#15166)
1471
7c97d35e
MR
14722013-08-27 Martin Rudalics <rudalics@gmx.at>
1473
1474 * window.el (display-buffer-use-some-window): Add missing
95888bca
SM
1475 argument in call of get-largest-window (Bug#15185).
1476 Reported by Stephen Leake.
7c97d35e 1477
a0b5606e 14782013-08-27 Glenn Morris <rgm@gnu.org>
d96ad422
GM
1479
1480 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
1481
9e89d835
SM
14822013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
1483
1484 * progmodes/python.el (python-font-lock-keywords): Don't return nil
1485 from a matcher-function unless there's no more matches (bug#15161).
1486
78fc2530
MA
14872013-08-26 Michael Albinus <michael.albinus@gmx.de>
1488
1489 * minibuffer.el: Revert change from 2013-08-20.
1490
1491 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
1492 with text property `tramp-default', if appropriate.
1493 (tramp-check-proper-host): New defun.
1494 (tramp-dissect-file-name): Do not check hostname. Revert change
1495 of 2013-03-18.
1496 (tramp-backtrace): Make VEC-OR-PROC optional.
1497
1498 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1499 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1500 * net/tramp-sh.el (tramp-maybe-open-connection):
95888bca
SM
1501 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1502 Apply `tramp-check-proper-host'.
78fc2530 1503
edca97cd
TH
15042013-08-26 Tassilo Horn <tsdh@gnu.org>
1505
1506 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
1507 lambda expression in order to have `describe-variable' display it.
1508
df54bcbd
MA
15092013-08-26 Michael Albinus <michael.albinus@gmx.de>
1510
1511 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
1512 BUF can be optional. (Bug#15186)
1513
eed99101
XF
15142013-08-25 Xue Fuqiao <xfq.free@gmail.com>
1515
1516 * progmodes/flymake.el (flymake-get-real-file-name-function):
1517 Fix broken customization. (Bug#15184)
1518
b5eb9035
AM
15192013-08-25 Alan Mackenzie <acm@muc.de>
1520
8a51e842
AM
1521 Improve indentation of bracelists defined by macros (without "=").
1522
1523 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
1524 expansion begins with "{", regard it as bracelist when it doesn't
1525 contain a ";".
1526
869455d4
AM
1527 Parse C++ inher-intro when there's a template split over 2 lines.
1528
1529 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
1530 rigorously the search for "class" etc. followed by ":".
1531
1532 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
1533 random languages a regexp which never matches rather than nil.
1534
b5eb9035
AM
1535 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
1536
1537 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
1538 (c-awk-regexp-one-line-possibly-open-char-list-re)
1539 (c-awk-one-line-possibly-open-regexp-re)
1540 (c-awk-one-line-non-syn-ws*-re): Remove.
1541 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
1542 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
1543 (c-awk-space*-unclosed-regexp-/-re): New constants.
1544 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
1545 aren't regexp delimiters.
1546
1547 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
1548 handling for a rare situation in AWK Mode involving unterminated
1549 strings/regexps.
1550
61611d54
GM
15512013-08-23 Glenn Morris <rgm@gnu.org>
1552
2d85dc34
GM
1553 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
1554
cb8d2612
GM
1555 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
1556
bb35f42f
GM
1557 * files.el (create-file-buffer): If the result would begin with
1558 spaces, prepend a "|" instead of removing them. (Bug#15162)
61611d54 1559
b9808e77
SM
15602013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
1561
e3a66363
SM
1562 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
1563 text-properties (bug#15155).
1564
b9808e77
SM
1565 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
1566 exist any more.
1567 (calc-keypad-redraw): Remove unused var `pad'.
1568 (calc-keypad-press): Remove unused var `menu'.
1569
7fd5f65e
MR
15702013-08-23 Martin Rudalics <rudalics@gmx.at>
1571
b9808e77
SM
1572 * window.el (display-buffer-pop-up-frame):
1573 Call pop-up-frame-function with BUFFER current so `make-frame' will
7fd5f65e
MR
1574 use it as the new frame's buffer (Bug#15133).
1575
8352b530
SM
15762013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
1577
1578 * calendar/timeclock.el: Minor cleanups.
1579 (timeclock-ask-before-exiting, timeclock-use-display-time):
1580 Use `symbol'.
1581 (timeclock-modeline-display): Define as alias before the
1582 actual definition.
1583 (timeclock-mode-line-display): Use define-minor-mode.
1584 (timeclock-day-list-template): Make it a function, add an argument.
1585 (timeclock-day-list-required, timeclock-day-list-length)
1586 (timeclock-day-list-debt, timeclock-day-list-span)
1587 (timeclock-day-list-break): Adjust calls accordingly.
1588
9f7b1925
SM
15892013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
1590
1591 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
1592 Use read--expression so that completion works again.
1593
6e50e983
SS
15942013-08-21 Sam Steingold <sds@gnu.org>
1595
1596 Add rudimentary inferior shell interaction
1597 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
1598 (sh-set-shell): Reset it.
9f7b1925
SM
1599 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
1600 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
6e50e983 1601
dbb0d350
SM
16022013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
1603
1604 * align.el: Use lexical-binding.
1605 (align-region): Simplify accordingly.
1606
c88586a9
MA
16072013-08-20 Michael Albinus <michael.albinus@gmx.de>
1608
1609 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
1610
1611 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
1612 `non-essential' up.
1613
f95527c8
MA
16142013-08-17 Michael Albinus <michael.albinus@gmx.de>
1615
1616 * net/tramp.el:
1617 * net/tramp-adb.el:
1618 * net/tramp-cmds.el:
1619 * net/tramp-ftp.el:
1620 * net/tramp-gvfs.el:
1621 * net/tramp-gw.el:
1622 * net/tramp-sh.el: Don't wrap external variable declarations by
1623 `eval-when-compile'.
1624
4b5fe4ee
LMI
16252013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
1626
1627 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
1628 now that Emacs supports ImageMagick animations.
1629
13c366c9
MA
16302013-08-16 Michael Albinus <michael.albinus@gmx.de>
1631
1632 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
1633 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
1634
3dfc5cd6
MR
16352013-08-16 Martin Rudalics <rudalics@gmx.at>
1636
1637 * window.el (mouse-autoselect-window-select): Do autoselect when
1638 mouse pointer is on margin.
1639
4bbb4381
WP
16402013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
1641
1642 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
1643
3a2ddc2d
GM
16442013-08-16 Glenn Morris <rgm@gnu.org>
1645
e8bedf5a
GM
1646 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
1647 Handle "Remote Directory" response of some clients. (Bug#15058)
1648
58c4682f
GM
1649 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
1650 Tweak warning. (Bug#14926)
1651
57953f49
GM
1652 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
1653 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
1654
3a2ddc2d
GM
1655 * image-mode.el (image-mode-map): Add menu items to reverse,
1656 increase, decrease, reset animation speed.
1657 (image--set-speed, image-increase-speed, image-decrease-speed)
1658 (image-reverse-speed, image-reset-speed): New functions.
1659 (image-mode-map): Add bindings for speed commands.
1660
1661 * image.el (image-animate-get-speed, image-animate-set-speed):
1662 New functions.
1663 (image-animate-timeout): Respect image :speed property.
1664
10fa0ed3
SM
16652013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
1666
1667 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
1668 previous line (bug#15101).
1669 (debugger-eval-expression, debugger-record-expression):
1670 Use read--expression (bug#15102).
1671
5d89d9d2
MA
16722013-08-15 Michael Albinus <michael.albinus@gmx.de>
1673
1674 Remove byte compiler warnings, visible when compiling with
1675 `byte-compile-force-lexical-warnings' set to t.
1676
1677 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
1678 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
1679 (tramp-handle-unhandled-file-name-directory)
1680 (tramp-handle-file-notify-add-watch, tramp-action-login)
1681 (tramp-action-succeed, tramp-action-permission-denied)
1682 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
1683 arguments with "_".
1684
1685 * net/tramp-adb.el (tramp-adb-parse-device-names)
1686 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
1687 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
1688 (tramp-adb-handle-file-truename): Remove unused arguments.
1689
1690 * net/tramp-cache.el (tramp-flush-directory-property)
1691 (tramp-flush-connection-property, tramp-list-connections)
1692 (tramp-parse-connection-properties): Prefix unused arguments with "_".
1693
10fa0ed3
SM
1694 * net/tramp-compat.el (tramp-compat-make-temp-file):
1695 Rename FILENAME to F.
5d89d9d2
MA
1696
1697 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
1698 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
1699 (tramp-zeroconf-parse-workstation-device-names)
1700 (tramp-zeroconf-parse-webdav-device-names)
1701 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
1702
1703 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
1704 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
1705
1706 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
1707 arguments.
1708 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
1709 (tramp-sh-handle-insert-file-contents-literally)
1710 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
1711 with "_".
1712 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
1713 Remove unused variables.
1714
1715 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
1716 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
1717 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
1718
1719 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
1720 Make them a defconst.
1721 (tramp-uuencode-region): Remove unused variable.
1722
62f33bae
JB
17232013-08-14 Juanma Barranquero <lekktu@gmail.com>
1724
1725 * frameset.el (frameset--prop-setter): New function.
1726 (frameset-prop): Add gv-setter declaration.
14d1e463
JB
1727 (frameset-filter-minibuffer): Deal with the case that the minibuffer
1728 parameter was already set in FILTERED. Doc fix.
1729 (frameset--record-minibuffer-relationships): Allow saving a
1730 minibufferless frame without its corresponding minibuffer frame.
1731 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
1732 frame, if the frame id matches.
1733 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
1734 frames before orphaned ones.
1735 (frameset-restore): Warn about orphaned windows, instead of error out.
62f33bae 1736
c660a885
MR
17372013-08-14 Martin Rudalics <rudalics@gmx.at>
1738
1739 * window.el (window-make-atom): Don't overwrite parameter
1740 already present.
1741 (display-buffer-in-atom-window): Handle special case where we
1742 split an already atomic window.
1743 (window--major-non-side-window, display-buffer-in-side-window)
1744 (window--side-check): Ignore minibuffer window when walking
1745 window tree.
1746 (window-deletable-p): Return 'frame only if no other frame uses
1747 our minibuffer window.
1748 (record-window-buffer): Run buffer-list-update-hook.
1749 (split-window): Make sure window--check-frame won't destroy an
1750 existing atomic window in case the new window gets nested
1751 inside.
1752 (display-buffer-at-bottom): Ignore minibuffer window when
1753 walking window tree. Don't split a side window.
1754 (pop-to-buffer): Don't set-buffer here, the select-window call
1755 should do that.
1756 (mouse-autoselect-window-select): Autoselect only if we are in the
1757 text portion of the window.
1758
8259030d
LMI
17592013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
1760
21c58ae2
LMI
1761 * net/shr.el (shr-parse-image-data): New function to grab both the
1762 data itself and the Content-Type.
1763 (shr-put-image): Use it.
1764
1765 * net/eww.el (eww-display-image): Ditto.
1766
8259030d
LMI
1767 * image.el (image-content-type-suffixes): New variable.
1768
ad756449
FEG
17692013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
1770
1771 * progmodes/python.el (python-imenu--build-tree)
1772 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
1773
f73f4ce6
XF
17742013-08-13 Xue Fuqiao <xfq.free@gmail.com>
1775
1776 * simple.el (backward-word): Mention the optional argument.
1777
1f585e65
SM
17782013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
1779
1780 * frameset.el (frameset--make): Rename constructor from make-frameset.
1781 (frameset-p, frameset-valid-p): Don't autoload.
1782 (frameset-valid-p): Use normal accessors.
1783
af1c6c84
GM
17842013-08-13 Glenn Morris <rgm@gnu.org>
1785
55e47f95
GM
1786 * progmodes/compile.el (compile-command): Tweak example in doc.
1787 * obsolete/scribe.el (scribe-mode):
1788 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
1789
f0024d8c
GM
1790 * mail/feedmail.el (feedmail-confirm-outgoing)
1791 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
1792
1793 * cus-start.el (truncate-partial-width-windows): Fix type.
1794
1795 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
1796
af1c6c84
GM
1797 * net/shr.el (shr-table-horizontal-line): Fix custom type.
1798
5514cc4c
SM
17992013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
1800
1801 * emacs-lisp/timer.el (timer--time-setter): New function.
1802 (timer--time): Use it as gv-setter.
1803
1804 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
1805 setter is not a symbol.
1806
7997a2f1
GJ
18072013-08-12 Grégoire Jadi <daimrod@gmail.com>
1808
1809 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
1810 if sending fails. This makes debugging easier.
1811
01f1a9ab
JB
18122013-08-12 Juanma Barranquero <lekktu@gmail.com>
1813
1814 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
1815 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
1816 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
1817
594a4307
EZ
18182013-08-12 Eli Zaretskii <eliz@gnu.org>
1819
1820 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
1821
7a22490f 18222013-08-12 Glenn Morris <rgm@gnu.org>
f26afdb0
GM
1823
1824 * format.el (format-annotate-function):
1825 Handle read-only text properties in the source. (Bug#14887)
1826
3e41a054
LMI
18272013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1828
5514cc4c
SM
1829 * net/eww.el (eww-display-html): Ignore coding system errors.
1830 One web site uses "utf-8lias" as the coding system.
3e41a054 1831
7ec326db
JB
18322013-08-11 Juanma Barranquero <lekktu@gmail.com>
1833
1834 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
1835
5660113b
JB
18362013-08-10 Juanma Barranquero <lekktu@gmail.com>
1837
9a4ebc74
JB
1838 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
1839 (tutorial--detailed-help): Remove unused local variables.
1840 (tutorial--save-tutorial-to): Use ignore-errors.
1841 (help-with-tutorial): Use looking-at-p.
1842
1843 * view.el (view-buffer-other-window, view-buffer-other-frame):
1844 Mark unused arguments.
1845
1846 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
1847 (woman-select-symbol-fonts, woman, woman-find-file)
1848 (woman-insert-file-contents, woman-non-underline-faces):
1849 Use string-match-p.
1850 (woman1-unquote): Move declaration.
1851
1852 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
1853 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
1854 argument. Remove unused local variable.
1855 (xml-parse-elem-type): Use string-match-p.
1856 (xml-substitute-numeric-entities): Use ignore-errors.
1857
45fdb482
JB
1858 * calculator.el (calculator): Mark unused argument.
1859 (calculator-paste, calculator-quit, calculator-integer-p):
1860 Use ignore-errors.
1861 (calculator-string-to-number, calculator-decimal, calculator-exp)
1862 (calculator-op-or-exp): Use string-match-p.
1863
1864 * dired.el (dired-buffer-more-recently-used-p): Declare.
1865 (dired-insert-set-properties, dired-insert-old-subdirs):
1866 Use ignore-errors.
1867
1868 * dired-aux.el (dired-compress): Use ignore-errors.
1869 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
1870 (dired-do-async-shell-command, dired-do-shell-command)
1871 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
1872 (dired-insert-subdir-validate): Use string-match-p.
1873 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
1874 (dired-add-entry): Use string-match-p, looking-at-p.
1875 (dired-insert-subdir-newpos): Remove unused local variable.
1876
1877 * filenotify.el (file-notify-callback): Remove unused local variable.
1878
1879 * filesets.el (filesets-error): Mark unused argument.
1880 (filesets-which-command-p, filesets-filter-dir-names)
1881 (filesets-directory-files, filesets-get-external-viewer)
1882 (filesets-ingroup-get-data): Use string-match-p.
1883
1884 * find-file.el (ff-other-file-name, ff-other-file-name)
1885 (ff-find-the-other-file, ff-cc-hh-converter):
1886 Remove unused local variables.
1887 (ff-get-file-name): Use string-match-p.
1888 (ff-all-dirs-under): Use ignore-errors.
1889
1890 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
1891 (follow-select-if-visible): Remove unused local variable.
1892
1893 * forms.el (read-file-filter): Move declaration.
1894 (forms--make-format, forms--make-parser, forms-insert-record):
1895 Quote function with #'.
1896 (forms--update): Use string-match-p. Quote function with #'.
1897
1898 * help-mode.el (help-dir-local-var-def): Mark unused argument.
1899 (help-make-xrefs): Use looking-at-p.
1900 (help-xref-on-pp): Use looking-at-p, ignore-errors.
1901
1902 * ibuffer.el (ibuffer-ext-visible-p): Declare.
1903 (ibuffer-confirm-operation-on): Use string-match-p.
1904
1905 * msb.el (msb-item-handler, msb-dired-item-handler):
1906 Mark unused arguments.
1907
1908 * ses.el (ses-decode-cell-symbol)
1909 (ses-kill-override): Remove unused local variable.
1910 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
1911 (ses-load): Use ignore-errors, looking-at-p.
1912 (ses-jump-safe): Use ignore-errors.
1913 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
1914
1915 * tabify.el (untabify, tabify): Mark unused arguments.
1916
1917 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
1918 Mark unused argument.
1919 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
1920 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
1921
c880af52
JB
1922 * emacs-lisp/timer.el (timer--time): Define setter with
1923 gv-define-setter to avoid deprecation warning.
1924
5660113b 1925 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
c880af52 1926 (*record-cmpl-statistics-p*): Remove (was commented out).
5660113b
JB
1927 (cmpl-statistics-block): Remove (body was commented out).
1928 All callers changed.
1929 (add-completions-from-buffer, load-completions-from-file):
1930 Remove unused variables.
1931
156aab80
JB
19322013-08-09 Juanma Barranquero <lekktu@gmail.com>
1933
5c5dee78
JB
1934 * filecache.el (file-cache-delete-file-list):
1935 Print message only when told so.
1936 (file-cache-files-matching): Use #' in mapconcat argument.
1937
156aab80
JB
1938 * ffap.el (ffap-url-at-point): Fix reference to variable
1939 thing-at-point-default-mail-uri-scheme.
1940
ad9dcd70
SM
19412013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
1942
54bd972f
SM
1943 * subr.el (define-error): New function.
1944 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
1945 error-file-not-found and define with define-error.
1946 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
1947 and define with define-error.
1948 * userlock.el (file-locked, file-supersession):
1949 * simple.el (mark-inactive):
1950 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
1951 * progmodes/ada-mode.el (ada-mode-errors):
1952 * play/life.el (life-extinct):
1953 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
1954 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
1955 * nxml/rng-util.el (rng-error):
1956 * nxml/rng-uri.el (rng-uri-error):
1957 * nxml/rng-match.el (rng-compile-error):
1958 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
1959 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
1960 * nxml/nxml-rap.el (nxml-scan-error):
1961 * nxml/nxml-outln.el (nxml-outline-error):
1962 * net/soap-client.el (soap-error):
1963 * net/gnutls.el (gnutls-error):
1964 * net/ange-ftp.el (ftp-error):
1965 * mpc.el (mpc-proc-error):
1966 * json.el (json-error, json-readtable-error, json-unknown-keyword)
1967 (json-number-format, json-string-escape, json-string-format)
1968 (json-key-format, json-object-format):
1969 * jka-compr.el (compression-error):
1970 * international/quail.el (quail-error):
1971 * international/kkc.el (kkc-error):
1972 * emacs-lisp/ert.el (ert-test-failed):
1973 * calc/calc.el (calc-error, inexact-result, math-overflow)
1974 (math-underflow):
1975 * bookmark.el (bookmark-error-no-filename):
1976 * epg.el (epg-error): Define with define-error.
1977
0ea9e53a
SM
1978 * time.el (display-time-event-handler)
1979 (display-time-next-load-average): Don't call sit-for since it seems
1980 unnecessary (bug#15045).
1981
b0429158
SM
1982 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
1983 Use #' instead of ' to quote functions.
1984 (checkdoc-output-mode): Use setq-local.
1985 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
1986 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
1987 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
1988 (checkdoc-ispell, checkdoc-ispell-current-buffer)
1989 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
1990 (checkdoc-ispell-message-text, checkdoc-ispell-start)
1991 (checkdoc-ispell-continue, checkdoc-ispell-comments)
1992 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
1993
ad9dcd70
SM
1994 * ido.el (ido-completion-help): Fix up compiler warning.
1995
77187e6f
JB
19962013-08-09 Juanma Barranquero <lekktu@gmail.com>
1997
1998 * frameset.el (frameset-p): Add autoload cookie.
1999 (frameset--jump-to-register): New function, based on code moved from
2000 register.el.
2001 (frameset-to-register): Move from register.el. Adapt to `registerv'.
2002
2003 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
2004 (frameset-restore, frameset-save, frameset-session-filter-alist):
2005 Remove declarations.
2006 (register-alist): Doc fix.
2007 (frameset-to-register): Move to frameset.el.
2008 (jump-to-register, describe-register-1): Remove frameset-specific code.
2009
9d3aa82c
JB
20102013-08-08 Juanma Barranquero <lekktu@gmail.com>
2011
2012 * allout-widgets.el (allout-widgets-pre-command-business)
2013 (allout-widgets-post-command-business)
2014 (allout-widgets-after-change-handler)
2015 (allout-decorate-item-and-context, allout-set-boundary-marker)
2016 (allout-body-modification-handler)
2017 (allout-graphics-modification-handler): Mark ignored arguments.
2018 (allout-widgets-post-command-business)
2019 (allout-widgets-exposure-change-processor)
2020 (allout-widgets-exposure-undo-processor)
2021 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
2022 (allout-parse-item-at-point, allout-decorate-item-guides)
2023 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
2024 * allout.el (epa-passphrase-callback-function): Declare.
2025 (allout-overlay-insert-in-front-handler)
2026 (allout-overlay-interior-modification-handler)
2027 (allout-isearch-end-handler, allout-chart-siblings)
2028 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
2029 (allout-yank-processing, allout-process-exposed)
2030 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
5514cc4c 2031 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
9d3aa82c
JB
2032 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
2033 (lisp-indent-defform): Mark ignored arguments.
2034 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
2035 (calculate-lisp-indent): Remove unused variables.
2036 * international/characters.el (indian-2-column, arabic-2-column)
2037 (tibetan): Mark ignored arguments.
2038 (use-cjk-char-width-table): Mark ignored arguments.
2039 Remove unused variables.
2040 * international/fontset.el (build-default-fontset-data)
2041 (x-compose-font-name, create-fontset-from-fontset-spec):
2042 Mark ignored arguments.
2043 (fontset-plain-name): Remove unused variables.
2044 * international/mule.el (charset-id, charset-bytes, generic-char-p)
2045 (keyboard-coding-system): Mark ignored arguments.
2046 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
2047 * help.el (resize-temp-buffer-window):
2048 * window.el (display-buffer-in-major-side-window)
2049 (display-buffer-in-side-window, display-buffer-in-previous-window):
2050 Remove unused variables.
2051 * isearch.el (isearch-forward-symbol):
2052 * version.el (emacs-bzr-version-bzr):
2053 * international/mule-cmds.el (current-language-environment):
2054 * term/common-win.el (x-handle-iconic, x-handle-geometry)
2055 (x-handle-display):
2056 * term/pc-win.el (x-list-fonts, x-display-planes)
2057 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
2058 (x-server-version, x-display-screens, x-display-mm-height)
2059 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
2060 (x-selection-owner-p, x-own-selection-internal)
2061 (x-disown-selection-internal, x-get-selection-internal)
2062 (msdos-initialize-window-system):
2063 * term/tty-colors.el (tty-color-alist, tty-color-clear):
2064 * term/x-win.el (x-handle-no-bitmap-icon):
2065 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
2066 (vc-default-find-file-hook, vc-default-extra-menu):
2067 Mark ignored arguments.
2068
0ca3f70e
SM
20692013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2070
2071 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
2072 break-condition in the context of the debugged code (bug#12685).
2073
74c5d24c
CS
20742013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
2075
2076 * comint.el:
2077 Do not use an overlay to highlight the last prompt. (Bug#14744)
2078 (comint-mode): Make comint-last-prompt buffer local.
2079 (comint-last-prompt): New variable.
2080 (comint-last-prompt-overlay): Remove. Superseded by
2081 comint-last-prompt.
0ca3f70e
SM
2082 (comint-snapshot-last-prompt, comint-output-filter):
2083 Use comint-last-prompt.
74c5d24c 2084
c03c02ee
JB
20852013-08-08 Juanma Barranquero <lekktu@gmail.com>
2086
a3738d20 2087 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
c03c02ee
JB
2088 (frameset-save): Check validity of the resulting frameset.
2089
04263d23
XF
20902013-08-08 Xue Fuqiao <xfq.free@gmail.com>
2091
2092 * ido.el (ido-record-command): Add doc string.
2093
76c5e5ab
JB
20942013-08-08 Juanma Barranquero <lekktu@gmail.com>
2095
2096 * frameset.el (frameset): Do not disable creation of the default
2097 frameset-p predicate. Doc fix.
2098 (frameset-valid-p): New function, copied from the old predicate-p.
2099 Add additional checks.
2100 (frameset-restore): Check with frameset-valid-p.
2101 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
2102 (frameset-name, frameset-description, frameset-properties)
2103 (frameset-states): Add docstring.
f9dbf1cb
JB
2104 (frameset-session-filter-alist, frameset-persistent-filter-alist)
2105 (frameset-filter-alist): Doc fixes.
76c5e5ab 2106
bd0c3c0b
JB
21072013-08-08 Juanma Barranquero <lekktu@gmail.com>
2108
2109 * frameset.el (frameset-p, frameset-prop): Doc fixes.
2110
c735544c
SM
21112013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2112
2113 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
2114 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
2115 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
2116 (byte-compile-normal-call): Remove obsolescence check.
2117
2805a651
JB
21182013-08-08 Juanma Barranquero <lekktu@gmail.com>
2119
3677ffeb
JB
2120 * frameset.el (frameset-restore): Doc fix.
2121
2805a651
JB
2122 * register.el (frameset-frame-id, frameset-frame-with-id)
2123 (frameset-p, frameset-restore, frameset-save): Declare.
2124 (register-alist): Document framesets.
2125 (frameset-session-filter-alist): Declare.
2126 (frameset-to-register): New function.
2127 (jump-to-register): Implement jumping to framesets. Doc fix.
2128 (describe-register-1): Describe framesets.
2129
2130 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
2131
a912c016
JB
21322013-08-07 Juanma Barranquero <lekktu@gmail.com>
2133
2134 * desktop.el (desktop-save-frameset): Use new frameset-save args.
2135 Use lexical-binding.
2136
2137 * frameset.el (frameset): Use type vector, not list (incompatible
2138 change). Do not declare a new constructor, use the default one.
2139 Upgrade suggested properties `app', `name' and `desc' to slots `app',
2140 `name' and `description', respectively, and add read-only slot
2141 `timestamp'. Doc fixes.
2142 (frameset-copy, frameset-persistent-filter-alist)
2143 (frameset-filter-alist, frameset-switch-to-gui-p)
2144 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
2145 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
2146 (frameset-filter-iconified, frameset-keep-original-display-p):
2147 Doc fixes.
2148 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
2149 Rename from frameset-filter-(save|restore)-param. All callers changed.
2150 Doc fix.
2151 (frameset-p): Adapt to change to vector and be more thorough.
2152 Change arg name to OBJECT. Doc fix.
2153 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
2154 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
2155 All callers changed.
2156 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
2157 All callers changed.
2158 (frameset--record-minibuffer-relationships): Rename from
2159 frameset--process-minibuffer-frames. All callers changed.
2160 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
2161 Use new default constructor (again). Doc fix.
2162 (frameset--find-frame-if): Rename from `frameset--find-frame.
2163 All callers changed.
2164 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
2165 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
2166 Doc fix.
2167 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
2168 PARAMETERS and WINDOW-STATE, respectively.
2169 (frameset-restore): Add new keyword argument PREDICATE.
2170 Reset frameset--target-display to nil. Doc fix.
2171
bb41480a
SM
21722013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2173
f001e98e
SM
2174 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
2175 (bat-mode): Use it.
2176 (bat-mode-syntax-table): Mark \n as end-of-comment.
2177 (bat-font-lock-keywords): Remove comment rule.
2178
7679edb1
SM
2179 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
2180 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
2181
bb41480a
SM
2182 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
2183 (byte-compile-callargs-warn): Use `push'.
2184 (byte-compile-arglist-warn): Ignore higher-order "calls".
2185 (byte-compile-file-form-autoload): Use `pcase'.
2186 (byte-compile-function-form): If quoting a symbol, check that it exists.
2187
cdc1ebb9
EZ
21882013-08-07 Eli Zaretskii <eliz@gnu.org>
2189
2190 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
2191 and add a few popular commands found in batch files.
2192 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
2193 (dos-mode): Doc fixes.
2194
312b1740
SM
21952013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
2196
2197 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
2198 (dos-mode): Use setq-local. Add space after "rem".
2199 (dos-mode-syntax-table): Don't use "w" for symbol chars.
2200 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
2201
400a3178
AM
22022013-08-07 Arni Magnusson <arnima@hafro.is>
2203
2204 * progmodes/dos.el: New file.
2205 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
2206 dos-mode.
2207
3b5c03d3
GM
22082013-08-06 Glenn Morris <rgm@gnu.org>
2209
2210 * calendar/calendar.el: Add new faces, and day-header-array.
2211 (calendar-weekday-header, calendar-weekend-header)
2212 (calendar-month-header): New faces.
2213 (calendar-day-header-construct): New function.
2214 (calendar-day-header-width): Also :set calendar-day-header-array.
2215 (calendar-american-month-header, calendar-european-month-header)
2216 (calendar-iso-month-header): Use calendar- faces.
2217 (calendar-generate-month):
2218 Use calendar-day-header-array for day headers; apply faces to them.
2219 (calendar-mode): Check calendar-font-lock-keywords non-nil.
2220 (calendar-abbrev-construct): Add optional maxlen argument.
2221 (calendar-day-name-array): Doc fix.
2222 (calendar-day-name-array, calendar-abbrev-length)
2223 (calendar-day-abbrev-array):
2224 Also :set calendar-day-header-array, and maybe redraw.
2225 (calendar-day-header-array): New option. (Bug#15007)
8a806f04 2226 (calendar-font-lock-keywords): Set to nil and make obsolete.
3b5c03d3
GM
2227 (calendar-day-name): Add option to use header array.
2228
ec6a2d7a
LMI
22292013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2230
2231 * net/shr.el (shr-render-td): Remove debugging.
2232 (shr-render-td): Make width computation consistent by defaulting
2233 all zero-width columns to 10 characters. This may not be optimal,
2234 but it's at least consistent.
2122cb6d
LMI
2235 (shr-make-table-1): Redo last change to fix the real problem in
2236 colspan handling.
ec6a2d7a 2237
ed4fd9c5
DA
22382013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2239
0ca3f70e
SM
2240 * files.el (cache-long-line-scans):
2241 Make obsolete alias to `cache-long-scans'.
ed4fd9c5 2242
64e22afe
JB
22432013-08-06 Juanma Barranquero <lekktu@gmail.com>
2244
024b38fc
JB
2245 * frameset.el (frameset, frameset-filter-alist)
2246 (frameset-filter-params, frameset-save, frameset--reuse-frame)
2247 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
2248 (frameset-compute-pos): Rename from frameset--compute-pos,
2249 and add docstring.
2250 (frameset-move-onscreen): Use frameset-compute-pos.
2251 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
2252
64e22afe
JB
2253 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
2254 Fix typos in docstrings.
2255
c8c2aca8
DA
22562013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2257
2258 * frame.el (get-other-frame): Tiny cleanup.
2259
1d237bba
JB
22602013-08-06 Juanma Barranquero <lekktu@gmail.com>
2261
8951efef
JB
2262 * vc/vc.el (vc-default-ignore-completion-table):
2263 Silence byte-compiler warning.
2264
307764cc
JB
2265 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
2266 slot , which can indeed be nil.
2267 (frameset-live-filter-alist, frameset-persistent-filter-alist):
2268 Move entry for `left' from persistent to live filter alist.
2269 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
2270 Doc fixes.
2271 (frameset-filter-params): When restoring a frame, copy items added to
2272 `filtered', to avoid unwittingly modifying the original parameters.
2273 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
2274 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
2275
1d237bba
JB
2276 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
2277 to use looking-at-p instead of looking-at. (Bug#15028)
2278
dc6c0eda
SM
22792013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
2280
2281 Revert introduction of isearch-filter-predicates (bug#14714).
2282 Rely on add-function instead.
2283 * isearch.el (isearch-filter-predicates): Rename it back to
2284 isearch-filter-predicate.
2285 (isearch-message-prefix): Use advice-function-mapc and advice
2286 properties to get the isearch-message-prefix.
2287 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
2288 instead of run-hook-with-args-until-failure.
2289 (isearch-filter-visible): Not obsolete any more.
2290 * loadup.el: Preload nadvice.
2291 * replace.el (perform-replace): Revert to funcall
2292 instead of run-hook-with-args-until-failure.
2293 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
2294 * dired-aux.el (dired-isearch-filenames-mode): Rename from
2295 dired-isearch-filenames-toggle; make it into a proper minor mode.
2296 Use add/remove-function.
2297 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
2298 Call the minor-mode rather than add/remove-hook.
2299 (dired-isearch-filter-filenames):
2300 Remove isearch-message-prefix property.
2301 * info.el (Info--search-loop): New function, extracted from Info-search.
2302 Funcall isearch-filter-predicate instead of
2303 run-hook-with-args-until-failure isearch-filter-predicates.
2304 (Info-search): Use it.
2305 (Info-mode): Use isearch-filter-predicate instead of
2306 isearch-filter-predicates.
2307
290d5b58
DA
23082013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2309
2310 Do not call to `selected-window' where it is assumed by default.
2311 Affected functions are `window-minibuffer-p', `window-dedicated-p',
2312 `window-hscroll', `window-width', `window-height', `window-buffer',
2313 `window-frame', `window-start', `window-point', `next-window'
2314 and `window-display-table'.
2315 * abbrev.el (abbrev--default-expand):
2316 * bs.el (bs--show-with-configuration):
2317 * buff-menu.el (Buffer-menu-mouse-select):
2318 * calc/calc.el (calc):
2319 * calendar/calendar.el (calendar-generate-window):
2320 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
2321 (diary-make-entry):
2322 * comint.el (send-invisible, comint-dynamic-complete-filename)
2323 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
2324 * completion.el (complete):
2325 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
2326 * disp-table.el (describe-current-display-table):
2327 * doc-view.el (doc-view-insert-image):
2328 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
2329 * ehelp.el (with-electric-help):
2330 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2331 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
2332 * emacs-lisp/helper.el (Helper-help-scroller):
2333 * emulation/cua-base.el (cua--post-command-handler-1):
2334 * eshell/esh-mode.el (eshell-output-filter):
2335 * ffap.el (ffap-gnus-wrapper):
2336 * help-macro.el (make-help-screen):
2337 * hilit-chg.el (highlight-compare-buffers):
2338 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
2339 * hl-line.el (global-hl-line-highlight):
2340 * icomplete.el (icomplete-simple-completing-p):
2341 * isearch.el (isearch-done):
2342 * jit-lock.el (jit-lock-stealth-fontify):
2343 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
2344 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
2345 * mpc.el (mpc-tagbrowser, mpc):
2346 * net/rcirc.el (rcirc-any-buffer):
2347 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
2348 * play/landmark.el (landmark-max-width, landmark-max-height):
2349 * play/zone.el (zone):
2350 * progmodes/compile.el (compilation-goto-locus):
2351 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
2352 * progmodes/etags.el (find-tag-other-window):
2353 * progmodes/fortran.el (fortran-column-ruler):
2354 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
2355 * progmodes/verilog-mode.el (verilog-point-text):
2356 * reposition.el (reposition-window):
2357 * rot13.el (toggle-rot13-mode):
2358 * server.el (server-switch-buffer):
2359 * shell.el (shell-dynamic-complete-command)
2360 (shell-dynamic-complete-environment-variable):
2361 * simple.el (insert-buffer, set-selective-display)
2362 (delete-completion-window):
2363 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
2364 (speedbar-recenter):
2365 * startup.el (fancy-splash-head):
2366 * textmodes/ispell.el (ispell-command-loop):
2367 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
2368 * tutorial.el (help-with-tutorial):
2369 * vc/add-log.el (add-change-log-entry):
2370 * vc/compare-w.el (compare-windows):
2371 * vc/ediff-help.el (ediff-indent-help-message):
2372 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
2373 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
2374 (ediff-setup-control-frame):
2375 * vc/emerge.el (emerge-position-region):
2376 * vc/pcvs-util.el (cvs-bury-buffer):
2377 * window.el (walk-windows, mouse-autoselect-window-select):
2378 * winner.el (winner-set-conf, winner-undo): Related users changed.
2379
38276e01
JB
23802013-08-05 Juanma Barranquero <lekktu@gmail.com>
2381
2382 * frameset.el (frameset--set-id): Doc fix.
2383 (frameset-frame-id, frameset-frame-id-equal-p)
2384 (frameset-locate-frame-id): New functions.
2385 (frameset--process-minibuffer-frames, frameset--reuse-frame)
2386 (frameset-restore): Use them.
2387
12b4c0ea
DA
23882013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2389
2390 Do not call to `selected-frame' where it is assumed by default.
2391 Affected functions are `raise-frame', `redraw-frame',
2392 `frame-first-window', `frame-terminal' and `delete-frame'.
2393 * calendar/appt.el (appt-disp-window):
2394 * epg.el (epg-wait-for-completion):
2395 * follow.el (follow-delete-other-windows-and-split)
2396 (follow-avoid-tail-recenter):
2397 * international/mule.el (set-terminal-coding-system):
2398 * mail/rmail.el (rmail-mail-return):
2399 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
2400 * progmodes/f90.el (f90-add-imenu-menu):
2401 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
2402 * server.el (server-switch-buffer):
2403 * simple.el (delete-completion-window):
2404 * talk.el (talk):
2405 * term/xterm.el (terminal-init-xterm-modify-other-keys)
2406 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
2407 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
2408 * vc/ediff.el (ediff-documentation): Related users changed.
2409 * frame.el (selected-terminal): Remove the leftover.
2410
17f25e76
GM
24112013-08-05 Glenn Morris <rgm@gnu.org>
2412
2413 * calendar/calendar.el (calendar-generate-month):
2414 Fix for calendar-column-width != 1 + calendar-day-digit-width.
09e6d547
GM
2415 (calendar-generate-month, calendar-font-lock-keywords):
2416 Fix for calendar-day-header-width > length of any day name.
17f25e76 2417
063233c3
JB
24182013-08-05 Juanma Barranquero <lekktu@gmail.com>
2419
2420 * desktop.el (desktop-clear): Use new name of sort predicate.
2421
2422 * frameset.el (frameset): Add docstring. Move :version property to its
2423 own `version' slot.
2424 (frameset-copy): Rename from copy-frameset.
2425 (frameset-p): Check more thoroughly.
2426 (frameset-prop): Do not check for :version, which is no longer a prop.
2427 (frameset-live-filter-alist, frameset-persistent-filter-alist):
2428 Use new :never value instead of t.
2429 (frameset-filter-alist): Expand and clarify docstring.
2430 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
2431 (frameset-filter-minibuffer, frameset-filter-save-param)
2432 (frameset-filter-restore-param, frameset-filter-iconified):
2433 Add pointer to docstring of frameset-filter-alist.
2434 (frameset-filter-params): Rename filter values to be more meaningful:
2435 :never instead of t, and reverse the meanings of :save and :restore.
2436 (frameset--process-minibuffer-frames): Clarify error message.
2437 (frameset-save): Avoid unnecessary and confusing call to framep.
2438 Use new BOA constructor for framesets.
2439 (frameset--reuse-list): Doc fix.
2440 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
2441 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
2442 (frameset-minibufferless-first-p): Doc fix.
2443 Rename from frameset-sort-frames-for-deletion.
2444 (frameset-restore): Doc fixes. Use new function names.
2445 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
2446
d5671a82
JB
24472013-08-04 Juanma Barranquero <lekktu@gmail.com>
2448
2449 * desktop.el (desktop-restore-forces-onscreen)
2450 (desktop-restore-reuses-frames): Document :keyword constant values.
2451 (desktop-filter-parameters-alist): Remove, now identical to
2452 frameset-filter-alist.
2453 (desktop--filter-tty*): Remove, moved to frameset.el.
2454 (desktop-save-frameset, desktop-restore-frameset):
2455 Do not pass :filters argument.
2456
2457 * frameset.el (frameset-live-filter-alist)
2458 (frameset-persistent-filter-alist): New variables.
2459 (frameset-filter-alist): Use them. Add autoload cookie.
2460 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
2461 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
2462 `frameset--id' (it's supposed to be internal to frameset.el).
2463 (frameset--process-minibuffer-frames): Ditto. Doc fix.
2464 (frameset--initial-params): New function.
2465 (frameset--get-frame): Use it. Doc fix.
2466 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
2467 Accept :all, not 'all.
2468 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
2469 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
2470 with fbound symbols. Fix frame id matching, and remove matching ids if
2471 the frame being restored is deleted. Obey :delete.
2472
671d5c16
SM
24732013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2474
2475 * subr.el (macrop): New function.
2476 (text-clone--maintaining): New var.
2477 (text-clone--maintain): Rename from text-clone-maintain. Use it
2478 instead of inhibit-modification-hooks.
2479
2480 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
2481 a proxy, so as handle autoloads and redefinitions of the target.
2482 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
2483
2484 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
2485 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
2486 (pcase--mutually-exclusive-p): New function.
2487 (pcase--split-consp): Use it.
2488 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
2489 mutually exclusive with the current predicate.
2490
2491 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
2492 (edebug-macrop): Remove. Use `macrop' instead.
2493 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
2494 (ad-macro-p):
2495 * eshell/esh-cmd.el (eshell-macrop):
2496 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
2497
1d44e9dc
SM
24982013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
2499
2500 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
2501 (advice-mapc): New function, using it.
2502 (advice-function-member-p): New function.
2503 (advice--normalize): Store the cdr in advice--saved-rewrite since
2504 that's the part that will be changed.
2505 (advice--symbol-function): New function.
2506 (advice-remove): Handle removal before the function is defined.
2507 Adjust to new advice--saved-rewrite.
2508 (advice-member-p): Use advice-function-member-p and
2509 advice--symbol-function.
2510
5414a283
JB
25112013-08-04 Juanma Barranquero <lekktu@gmail.com>
2512
51d30f2c
JB
2513 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
2514 (frameset-filter-minibuffer): Doc fix.
2515 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
a04d36a0
JB
2516 (frameset--set-id, frameset--process-minibuffer-frames)
2517 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
2518 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
51d30f2c 2519
5414a283
JB
2520 * desktop.el (desktop-clear): Only delete frames when called
2521 interactively and desktop-restore-frames is non-nil. Doc fix.
2522 (desktop-read): Set desktop-saved-frameset to nil.
2523
ab419665
XF
25242013-08-04 Xue Fuqiao <xfq.free@gmail.com>
2525
2526 * vc/vc.el (vc-ignore): Rewrite.
2527 (vc-default-ignore-completion-table):
2528 (vc--read-lines):
2529 (vc--add-line, vc--remove-regexp): New functions.
2530
2531 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
2532 (vc-svn-ignore-completion-table): New function.
2533
2534 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
2535 (vc-hg-ignore-completion-table):
2536 (vc-hg-find-ignore-file): New functions.
2537
2538 * vc/vc-git.el (vc-git-ignore): Rewrite.
2539 (vc-git-ignore-completion-table):
2540 (vc-git-find-ignore-file): New functions.
2541
2542 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
2543
2544 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
2545 (vc-bzr-ignore-completion-table):
2546 (vc-bzr-find-ignore-file): New functions.
2547
2613dea2
JB
25482013-08-03 Juanma Barranquero <lekktu@gmail.com>
2549
2550 * frameset.el (frameset-prop): New function and setter.
2551 (frameset-save): Do not modify frame list passed by the caller.
2552
9c959872
SM
25532013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
2554
2555 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
2556
a104f656
SM
25572013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
2558
70122acf
SM
2559 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
2560 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
2561
a104f656
SM
2562 * custom.el (custom-initialize-default, custom-initialize-set)
2563 (custom-initialize-reset, custom-initialize-changed): Affect the
2564 toplevel-default-value (bug#6275, bug#14586).
2565 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
2566 for bug#6275.
2567
f078d570
JB
25682013-08-02 Juanma Barranquero <lekktu@gmail.com>
2569
185e3b5a
JB
2570 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2571 Add cl-def* expressions.
2572
f078d570
JB
2573 * frameset.el (frameset-filter-params): Fix order of arguments.
2574
9421876d
JB
25752013-08-02 Juanma Barranquero <lekktu@gmail.com>
2576
2577 Move code related to saving frames to frameset.el.
2578 * desktop.el: Require frameset.
2579 (desktop-restore-frames): Doc fix.
2580 (desktop-restore-reuses-frames): Rename from
2581 desktop-restoring-reuses-frames.
2582 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
2583 (desktop-clear): Clear frames too.
2584 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
2585 (desktop--filter-tty*, desktop-save, desktop-read):
2586 Use frameset functions.
2587 (desktop-before-saving-frames-functions, desktop--filter-*-color)
2588 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
2589 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
2590 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
2591 (desktop--process-minibuffer-frames, desktop-save-frames)
2592 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
2593 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
2594 (desktop--sort-states, desktop-restoring-frames-p)
2595 (desktop-restore-frames): Remove. Most code moved to frameset.el.
2596 (desktop-restoring-frameset-p, desktop-restore-frameset)
2597 (desktop--check-dont-save, desktop-save-frameset): New functions.
2598 (desktop--app-id): New constant.
2599 (desktop-first-buffer, desktop-buffer-ok-count)
2600 (desktop-buffer-fail-count): Move before first use.
2601 * frameset.el: New file.
2602
76dc5996
SM
26032013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
2604
2605 * files.el: Use lexical-binding.
2606 (dir-locals-read-from-file): Remove unused `err' variable.
2607 (hack-dir-local-variables--warned-coding): New var.
2608 (hack-dir-local-variables): Use it to avoid repeated warnings.
2609 (make-backup-file-name--default-function): New function.
2610 (make-backup-file-name-function): Use it as default.
2611 (buffer-stale--default-function): New function.
2612 (buffer-stale-function): Use it as default.
2613 (revert-buffer-insert-file-contents--default-function): New function.
2614 (revert-buffer-insert-file-contents-function): Use it as default.
2615 (insert-directory): Avoid add-to-list.
2616
2617 * autorevert.el (auto-revert-handler): Simplify.
2618 Use buffer-stale--default-function.
2619
06d36e2b
TH
26202013-08-01 Tassilo Horn <tsdh@gnu.org>
2621
5f648ab4
TH
2622 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
2623
06d36e2b
TH
2624 * whitespace.el (whitespace-ensure-local-variables): New function.
2625 (whitespace-cleanup-region): Call it.
2626 (whitespace-turn-on): Call it.
2627
a43dc424
MA
26282013-08-01 Michael Albinus <michael.albinus@gmx.de>
2629
2630 Complete file name handlers.
2631
2632 * net/tramp.el (tramp-handle-set-visited-file-modtime)
2633 (tramp-handle-verify-visited-file-modtime)
2634 (tramp-handle-file-notify-rm-watch): New functions.
2635 (tramp-call-process): Do not bind `default-directory'.
2636
44e18199
JB
2637 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2638 Order alphabetically.
a43dc424
MA
2639 [access-file, add-name-to-file, dired-call-process]:
2640 [dired-compress-file, file-acl, file-notify-rm-watch]:
2641 [file-ownership-preserved-p, file-selinux-context]:
2642 [make-directory-internal, make-symbolic-link, set-file-acl]:
2643 [set-file-selinux-context, set-visited-file-modtime]:
2644 [verify-visited-file-modtime]: Add handler.
2645 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
2646
2647 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
2648 [file-notify-add-watch, file-notify-rm-watch]:
2649 [set-file-times, set-visited-file-modtime]:
2650 [verify-visited-file-modtime]: Add handler.
2651 (with-tramp-gvfs-error-message)
2652 (tramp-gvfs-handle-set-visited-file-modtime)
2653 (tramp-gvfs-fuse-file-name): Remove.
2654 (tramp-gvfs-handle-file-notify-add-watch)
2655 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
2656 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
2657
44e18199
JB
2658 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2659 Order alphabetically.
a43dc424
MA
2660 [file-notify-rm-watch ]: Use default Tramp handler.
2661 [executable-find]: Remove private handler.
2662 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
2663 `default-directory'.
2664 (tramp-sh-handle-executable-find)
2665 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
2666 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2667 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
2668 Do not use `format' in `tramp-message'.
2669
2670 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
2671 [file-notify-rm-watch, set-visited-file-modtime]:
2672 [verify-visited-file-modtime]: Add handler.
2673 (tramp-smb-call-winexe): Do not bind `default-directory'.
2674
7188b515
XF
26752013-08-01 Xue Fuqiao <xfq.free@gmail.com>
2676
2677 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
2678
2412ee1a
DG
26792013-07-31 Dmitry Gutov <dgutov@yandex.ru>
2680
2681 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
2682 use it.
2683 (log-view-diff-changeset): Same.
2684 (log-view-diff-common): Call backend command `previous-revision'
2685 to find out the previous revision, in both cases. Swap the
2686 variables `to' and `fr', so that `fr' usually refers to the
2687 earlier revision (Bug#14989).
2688
5002a754
KRC
26892013-07-31 Kan-Ru Chen <kanru@kanru.info>
2690
2691 * ibuf-ext.el (ibuffer-filter-by-filename):
2692 Make it work with dired buffers too.
2693
44e18199 26942013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3b734d1c
DA
2695
2696 * emacs-lisp/re-builder.el (reb-color-display-p):
2697 * files.el (save-buffers-kill-terminal):
2698 * net/browse-url.el (browse-url):
2699 * server.el (server-save-buffers-kill-terminal):
2700 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
2701 Prefer nil to selected-frame for the first arg of frame-parameter.
2702
aeca3fbb
XF
27032013-07-31 Xue Fuqiao <xfq.free@gmail.com>
2704
2705 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
2706
158bc55c
SB
27072013-07-30 Stephen Berman <stephen.berman@gmx.net>
2708
2709 * minibuffer.el (completion--twq-all): Try and preserve each
2710 completion's case choice (bug#14907).
2711
d50fceab
LMI
27122013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2713
ac38e731
LMI
2714 * net/network-stream.el (open-network-stream): Mention the new
2715 :nogreeting parameter.
2716 (network-stream-open-starttls): Use the :nogreeting parameter
2717 (bug#14938).
2718
1211de50
LMI
2719 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
2720
997798bf
LMI
2721 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
2722 more natural than popping.
2723
d50fceab 2724 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
5a2a7735 2725 (shr-urlify): Highlight under mouse.
d50fceab 2726
5c09de04
XF
27272013-07-30 Xue Fuqiao <xfq.free@gmail.com>
2728
207d1d04
XF
2729 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
2730
2731 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
2732
5c09de04
XF
2733 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
2734 buffer for output.
2735
3cd51eaa
XF
2736 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
2737 point-min==1. Fix search string. Fix parentheses missing.
5c09de04 2738
44e18199 2739 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3cd51eaa 2740 assume point-min==1. Fix search string. Fix parentheses missing.
5c09de04
XF
2741
2742 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
2743
2744 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
2745 buffer for output.
2746
35a89bdd
EZ
27472013-07-29 Eli Zaretskii <eliz@gnu.org>
2748
2749 * frame.el (frame-notice-user-settings): Avoid inflooping when the
2750 initial frame is minibuffer-less. (Bug#14841)
2751
78822e94
MA
27522013-07-29 Michael Albinus <michael.albinus@gmx.de>
2753
2754 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
2755 option.
2756
2757 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
2758 (tramp-maybe-open-connection): Use it.
2759
9503c190
JB
27602013-07-28 Juanma Barranquero <lekktu@gmail.com>
2761
2762 * desktop.el (desktop--make-frame): Include `minibuffer' in the
2763 minimal set of parameters passed when creating a frame, because
2764 the minibuffer status of a frame cannot be changed later.
2765
d5a845b4
SB
27662013-07-28 Stephen Berman <stephen.berman@gmx.net>
2767
2768 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
2769 replace-regexp-in-string and inadvertent omissions in previous change.
2770 (todo-filter-items): Ensure only file names are comma-separated in
42ee6f55 2771 name of filtered items buffer.
d5a845b4 2772
ddeffb17
JB
27732013-07-28 Juanma Barranquero <lekktu@gmail.com>
2774
2775 * desktop.el: Optionally force offscreen frames back onscreen.
2776 (desktop-restoring-reuses-frames): New option.
2777 (desktop--compute-pos, desktop--move-onscreen): New functions.
2778 (desktop--make-frame): Use desktop--move-onscreen.
2779
f5950f7a
AM
27802013-07-27 Alan Mackenzie <acm@muc.de>
2781
2782 Fontify a Java generic method as a function.
2783 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
2784 value to t.
2785
ae43b66a
SB
27862013-07-27 Stephen Berman <stephen.berman@gmx.net>
2787
2788 * calendar/todo-mode.el: Add command to rename todo files.
2789 (todo-rename-file): New command.
2790 (todo-key-bindings-t): Add key binding for it. Change the
2791 bindings of todo-filter-regexp-items(-multifile) to use `x'
2792 instead of `r', since the latter is better suited to the new
2793 renaming command.
2794
5ab78d3d
AM
27952013-07-27 Alan Mackenzie <acm@muc.de>
2796
2797 Make Java try-with-resources statement parse properly.
2798 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
2799 (c-block-stmt-1-2-key): New language constants/variables.
2800 * progmodes/cc-engine.el (c-beginning-of-statement-1)
2801 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
2802 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
44e18199 2803 with c-block-stmt-1-2-key.
5ab78d3d 2804
d85c4d50
JB
28052013-07-27 Juanma Barranquero <lekktu@gmail.com>
2806
2807 * desktop.el (desktop--make-frame): Apply most frame parameters after
2808 creating the frame to force (partially or totally) offscreen frames to
2809 be restored as such.
2810
e4c467f9
XF
28112013-07-26 Xue Fuqiao <xfq.free@gmail.com>
2812
2813 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
742a3501 2814 (Bug#14948)
e4c467f9 2815
7ced0d04
SM
28162013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
2819 `base' arg of backtrace-frame.
2820
fec92060
EZ
28212013-07-26 Eli Zaretskii <eliz@gnu.org>
2822
2823 * simple.el (list-processes): Doc fix.
2824
d58d31fb
JB
28252013-07-26 Juanma Barranquero <lekktu@gmail.com>
2826
2827 * desktop.el (desktop--select-frame):
d85c4d50 2828 Try harder to reuse existing frames.
d58d31fb 2829
53ff3e77
SM
28302013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2831
2832 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
2833 (edebug-eval): Use backtrace-eval.
2834 (edebug--display, edebug--recursive-edit): Don't let-bind the
2835 edebug-outer-* vars that keep track of variables we locally let-bind.
2836 (edebug-outside-excursion): Don't restore outside values of locally
2837 let-bound vars.
2838 (edebug--display): Use user-error.
2839 (cl-lexical-debug, cl-debug-env): Remove.
2840
045f7a53
JB
28412013-07-26 Juanma Barranquero <lekktu@gmail.com>
2842
2843 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
2844 are restored to be sure that they are visible before deleting any
2845 remaining ones.
2846
59070b32
MM
28472013-07-26 Matthias Meulien <orontee@gmail.com>
2848
742a3501
XF
2849 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
2850 vc-print-root-log. (Bug#14948)
59070b32 2851
b1fb3596
RS
28522013-07-26 Richard Stallman <rms@gnu.org>
2853
2854 Add aliases for encrypting mail.
2855 * epa.el (epa-mail-aliases): New option.
2856 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
2857 Bind inhibit-read-only so read-only text doesn't ruin everything.
2858 (epa-mail-default-recipients): New subroutine broken out.
2859 Handle epa-mail-aliases.
2860
56ea7291
SM
28612013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2862
2863 Add support for lexical variables to the debugger's `e' command.
2864 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
2865 vars, except for debugger-outer-match-data.
2866 (debugger-frame-number): Move check for "on a function call" from
2867 callers into it. Add `skip-base' argument.
2868 (debugger-frame, debugger-frame-clear): Simplify accordingly.
2869 (debugger-env-macro): Only reset the state stored in non-variables,
2870 i.e. current-buffer and match-data.
2871 (debugger-eval-expression): Rewrite using backtrace-eval.
2872 * subr.el (internal--called-interactively-p--get-frame): Remove.
2873 (called-interactively-p):
2874 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
2875 `base' arg of backtrace-frame instead.
2876
15ac32d5
GM
28772013-07-26 Glenn Morris <rgm@gnu.org>
2878
8358a09d
GM
2879 * align.el (align-regexp): Doc fix. (Bug#14857)
2880 (align-region): Explicit error if subexpression missing/does not match.
2881
15ac32d5
GM
2882 * simple.el (global-visual-line-mode):
2883 Do not duplicate the mode lighter. (Bug#14858)
2884
f47ad11b
MR
28852013-07-25 Martin Rudalics <rudalics@gmx.at>
2886
2887 * window.el (display-buffer): In display-buffer bind
2888 split-window-keep-point to t, bug#14829.
2889
02530987
JB
28902013-07-25 Juanma Barranquero <lekktu@gmail.com>
2891
2892 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
2893 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
2894 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
2895 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
2896 Change accordingly.
f63ebeb5
JB
2897 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
2898 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
02530987 2899
6ccb9cab 29002013-07-25 Glenn Morris <rgm@gnu.org>
29bbcfa7 2901
6ccb9cab 2902 * dired-x.el (dired-mark-extension): Convert comment to doc string.
ce887515 2903
cb3a56d2
JB
29042013-07-25 Juanma Barranquero <lekktu@gmail.com>
2905
2906 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
2907 parameter to modify-frame-parameters if the value has not changed;
2908 this is a workaround for bug#14949.
2909 (desktop--make-frame): On cl-delete-if call, check parameter name,
2910 not full parameter.
2911
7aa7fff0
XF
29122013-07-30 Xue Fuqiao <xfq.free@gmail.com>
2913
2914 * vc/vc.el (vc-ignore): New function.
2915
2916 * vc/vc-svn.el (vc-svn-ignore): New function.
2917
2918 * vc/vc-hg.el (vc-hg-ignore): New function.
2919
2920 * vc/vc-git.el (vc-git-ignore): New function.
2921
2922 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
2923 (vc-dir-ignore): New function.
2924
2925 * vc/vc-cvs.el (vc-cvs-ignore): New function.
1e6c6007 2926 (cvs-append-to-ignore): Move here from pcvs.el.
7aa7fff0
XF
2927
2928 * vc/vc-bzr.el (vc-bzr-ignore): New function.
2929
2930 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
2931
889acc5c
JB
29322013-07-24 Juanma Barranquero <lekktu@gmail.com>
2933
2934 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
2935 (desktop-restore-frames): Warn when deleting an existing frame failed.
2936
86c40970
GM
29372013-07-24 Glenn Morris <rgm@gnu.org>
2938
2939 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
2940
d5d3c58a
MA
29412013-07-24 Michael Albinus <michael.albinus@gmx.de>
2942
2943 * filenotify.el (file-notify-supported-p):
2944 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
2945 Remove functions.
2946
2947 * autorevert.el (auto-revert-use-notify):
2948 (auto-revert-notify-add-watch):
2949 * net/tramp.el (tramp-file-name-for-operation):
2950 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2951 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
2952 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2953 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2954 Remove `file-notify-supported-p' entry.
2955
d100084b
GM
29562013-07-24 Glenn Morris <rgm@gnu.org>
2957
2958 * printing.el: Replace all uses of deleted ps-windows-system,
ff65ca0d 2959 ps-lp-system, ps-flatten-list with lpr- versions.
d100084b 2960
ac93e56b
SM
29612013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2962
249eea30
SM
2963 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
2964 checked with memq (bug#14935).
2965
ac93e56b
SM
2966 * files.el (revert-buffer-function): Use a non-nil default.
2967 (revert-buffer-preserve-modes): Declare var to
2968 provide access to the `preserve-modes' argument.
2969 (revert-buffer): Let-bind it.
2970 (revert-buffer--default): New function, extracted from revert-buffer.
2971
2cdeb903
SM
29722013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2973
2974 * lpr.el: Signal print errors more prominently.
2975 (print-region-function): Don't default to nil.
2976 (lpr-print-region): New function, extracted from print-region-1.
2977 Check lpr's return value and signal an error in case of problem.
2978 (print-region-1): Use it.
2979 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
2980 versions instead.
2981 (ps-printer-name): Default to nil.
2982 (ps-printer-name-option): Default to lpr-printer-switch.
2983 (ps-print-region-function): Don't default to nil.
2984 (ps-postscript-code-directory): Simplify default.
2985 (ps-do-despool): Use lpr-print-region to properly check the outcome.
2986 (ps-string-list, ps-eval-switch, ps-flatten-list)
2987 (ps-flatten-list-1): Remove.
2988 (ps-multibyte-buffer): Avoid setq.
2989 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
2990 (print-region-function, ps-print-region-function): Don't set them here.
2991
73600831
XF
29922013-07-24 Xue Fuqiao <xfq.free@gmail.com>
2993
0e55c076
XF
2994 * ido.el (ido-fractionp):
2995 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
2996 (ido-max-file-prompt-width, ido-unc-hosts-cache)
2997 (ido-max-directory-size, ido-max-dir-file-cache)
2998 (ido-decorations): Doc fix.
2999
73600831
XF
3000 * ansi-color.el: Fix old URL.
3001
3d012865
MM
30022013-07-23 Michael R. Mauger <michael@mauger.com>
3003
3004 * progmodes/sql.el Version 3.3
3005 (sql-product-alist): Improve oracle :prompt-cont-regexp.
3006 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
3007 (sql-interactive-remove-continuation-prompt): Rewrite, use
3008 functions above. Fix continuation prompt and complete output line
3009 handling.
3010 (sql-redirect-one, sql-execute): Use `read-only-mode' on
3011 redirected output buffer.
3012 (sql-mode): Restore deleted code (Bug#13591).
3013
da77a2e2
JB
30142013-07-23 Juanma Barranquero <lekktu@gmail.com>
3015
3016 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
3017
80ff0c71
MA
30182013-07-23 Michael Albinus <michael.albinus@gmx.de>
3019
3020 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
3021
3022 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3023 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3024 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
3025
b61d71e4
JB
30262013-07-23 Juanma Barranquero <lekktu@gmail.com>
3027
3028 * desktop.el (desktop-clear): Simplify; remove useless checks
3029 against invalid buffer names.
3030 (desktop-list*): Use cl-list*.
3031 (desktop-buffer-info, desktop-create-buffer): Simplify.
3032
c3512092
LL
30332013-07-23 Leo Liu <sdl.web@gmail.com>
3034
3035 * bookmark.el (bookmark-make-record): Restore NAME as a default
3036 value. (Bug#14933)
3037
0ac26976
SM
30382013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
3039
7d22ce18
SM
3040 * emacs-lisp/autoload.el (autoload--setup-output): New function,
3041 extracted from autoload--insert-text.
3042 (autoload--insert-text): Remove.
3043 (autoload--print-cookie-text): New function, extracted from
3044 autoload--insert-cookie-text.
3045 (autoload--insert-cookie-text): Remove.
3046 (autoload-generate-file-autoloads): Adjust calls accordingly.
3047
9b2607e8
SM
3048 * winner.el (winner-hook-installed-p): Remove.
3049 (winner-mode): Simplify accordingly.
3050
c43a8618
SM
3051 * subr.el (add-to-list): Fix compiler-macro when `append' is
3052 not constant. Don't use `cl-member' for the base case.
3053
0ac26976
SM
3054 * progmodes/subword.el: Fix boundary case (bug#13758).
3055 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
3056 own group.
3057 (subword-backward-regexp): Make it a constant.
3058 (subword-forward-internal): Don't treat a trailing capital as the
3059 beginning of a word.
3060
6874724a
AR
30612013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
3062
3063 * emacs-lisp/package.el (package-menu-mode): Don't modify the
3064 global value of tabulated-list-revert-hook (bug#14930).
3065
70f1b5e8
JB
30662013-07-22 Juanma Barranquero <lekktu@gmail.com>
3067
a1c80d9d
JB
3068 * desktop.el: Require 'cl-lib.
3069 (desktop-before-saving-frames-functions): New hook.
3070 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
3071 for frames being saved. Rename from desktop--save-minibuffer-frames.
3072 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
0ac26976
SM
3073 Do not save frames with non-nil `desktop-dont-save' parameter.
3074 Filter out deleted frames.
a1c80d9d
JB
3075 (desktop--find-frame): Use cl-find-if.
3076 (desktop--select-frame): Use cl-(first|second|third) to access values
3077 of desktop-mini.
3078 (desktop--make-frame): Use cl-delete-if.
3079 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
3080 (desktop-restore-frames): Use cl-(first|second|third) to access values
3081 of desktop-mini. Look for visible frame at the end, not while
3082 restoring frames.
3083
70f1b5e8
JB
3084 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
3085 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
3086 Use string-match-p, looking-at-p (bug#14927).
3087
728dc3cc
JB
30882013-07-21 Juanma Barranquero <lekktu@gmail.com>
3089
56bc453c
JB
3090 * desktop.el (desktop-saved-frame-states):
3091 Rename from desktop--saved-states; all users changed.
3092 (desktop-save-frames): Rename from desktop--save-frames.
3093 Do not save state to desktop file.
3094 (desktop-save): Save desktop-saved-frame-states to desktop file
3095 and reset to nil.
3096 (desktop-restoring-frames-p): New function.
3097 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
3098 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
3099 buffer-lists when restoring frames. Suggested by Martin Rudalics.
3100
728dc3cc
JB
3101 * desktop.el: Correctly restore iconified frames.
3102 (desktop--filter-iconified-position): New function.
3103 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
3104
862f1c9c
GM
31052013-07-20 Glenn Morris <rgm@gnu.org>
3106
c4074c9f
GM
3107 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
3108 Let `message' do the formatting.
3109 (def-gdb-preempt-display-buffer): Add explicit format.
3110
d828e5f9
GM
3111 * image-dired.el (image-dired-track-original-file):
3112 Use with-current-buffer.
3113 (image-dired-track-thumbnail): Use with-current-buffer.
3114 Avoid changing point of wrong window.
3115
862f1c9c
GM
3116 * image-dired.el (image-dired-track-original-file):
3117 Avoid changing point of wrong window. (Bug#14909)
3118
f0398ec1 31192013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
188c1ae6
RC
3120
3121 * progmodes/gdb-mi.el (gdb-done-or-error):
3122 Guard against "%" in gdb output. (Bug#14127)
3123
1451928f
AS
31242013-07-20 Andreas Schwab <schwab@linux-m68k.org>
3125
763a086d
JB
3126 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
3127 (Bug#14826)
f7a03897 3128
1451928f
AS
3129 * international/mule.el (coding-system-iso-2022-flags): Fix last
3130 change.
3131
99107004
KH
31322013-07-20 Kenichi Handa <handa@gnu.org>
3133
763a086d
JB
3134 * international/mule.el (coding-system-iso-2022-flags):
3135 Add `8-bit-level-4'. (Bug#8522)
99107004 3136
48494e06
LMI
31372013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3138
8ba8eec5
LMI
3139 * net/shr.el (shr-mouse-browse-url): New command and keystroke
3140 (bug#14815).
3141
dfbc66e3
LMI
3142 * net/eww.el (eww-process-text-input): Allow inputting when the
3143 point is at the start of the line, as the properties aren't
3144 front-sticky.
3145
48494e06
LMI
3146 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
3147 degenerate widths.
3148
77c92cb9
RS
31492013-07-19 Richard Stallman <rms@gnu.org>
3150
aec7da77
RS
3151 * epa.el (epa-popup-info-window): Doc fix.
3152
77c92cb9
RS
3153 * subr.el (split-string): New arg TRIM.
3154
945c5bb1
JB
31552013-07-18 Juanma Barranquero <lekktu@gmail.com>
3156
3157 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
3158 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
3159
e06ec67f
MA
31602013-07-18 Michael Albinus <michael.albinus@gmx.de>
3161
c7064f05 3162 * filenotify.el (file-notify--library): Rename from
e06ec67f
MA
3163 `file-notify-support'. Do not autoload. Adapt all uses.
3164 (file-notify-supported-p): New defun.
3165
c7064f05
JB
3166 * autorevert.el (auto-revert-use-notify):
3167 Use `file-notify-supported-p' instead of `file-notify-support'.
3168 Adapt docstring.
e06ec67f
MA
3169 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
3170
3171 * net/tramp.el (tramp-file-name-for-operation):
3172 Add `file-notify-supported-p'.
3173
3174 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
3175 New defun.
3176 (tramp-sh-file-name-handler-alist): Add it as handler for
3177 `file-notify-supported-p '.
3178
3179 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3180 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3181 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3182 Add `ignore' as handler for `file-notify-*' functions.
3183
5dc8a629
EZ
31842013-07-17 Eli Zaretskii <eliz@gnu.org>
3185
3186 * simple.el (line-move-partial, line-move): Don't start vscroll or
3187 scroll-up if the current line is not taller than the window.
3188 (Bug#14881)
3189
77aea2fb
DG
31902013-07-16 Dmitry Gutov <dgutov@yandex.ru>
3191
3192 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
3193 highlight question marks in the method names as strings.
ac72c08d
DG
3194 (ruby-block-beg-keywords): Inline.
3195 (ruby-font-lock-keyword-beg-re): Extract from
3196 `ruby-font-lock-keywords'.
77aea2fb 3197
18c26d81
JD
31982013-07-16 Jan Djärv <jan.h.d@swipnet.se>
3199
3200 * frame.el (blink-cursor-blinks): New defcustom.
3201 (blink-cursor-blinks-done): New defvar.
3202 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
3203 (blink-cursor-timer-function): Check if number of blinks has been
3204 done on X and NS.
3205 (blink-cursor-suspend, blink-cursor-check): New defuns.
3206
da48522e
GM
32072013-07-15 Glenn Morris <rgm@gnu.org>
3208
3209 * edmacro.el (edmacro-format-keys): Fix previous change.
3210
0463c1ef
PE
32112013-07-15 Paul Eggert <eggert@cs.ucla.edu>
3212
3213 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
3214 The hack didn't work outside English locales anyway.
3215
b43f6451
JB
32162013-07-15 Juanma Barranquero <lekktu@gmail.com>
3217
3218 * simple.el (define-alternatives): Rename from alternatives-define,
3219 per RMS' suggestion.
3220
b958c0ad
JB
32212013-07-14 Juanma Barranquero <lekktu@gmail.com>
3222
3223 * desktop.el (desktop-restore-frames): Change default to t.
3224 (desktop-restore-in-current-display): Now offer more options.
3225 (desktop-restoring-reuses-frames): New customization option.
3226 (desktop--saved-states): Doc fix.
3227 (desktop-filter-parameters-alist): New variable, renamed and expanded
3228 from desktop--excluded-frame-parameters.
3229 (desktop--target-display): New variable.
3230 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
3231 (desktop--filter-tty*, desktop--filter-*-color)
3232 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3233 (desktop--filter-save-desktop-parm)
3234 (desktop-restore-in-original-display-p): New functions.
3235 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
3236 (desktop--save-minibuffer-frames): New function, inspired by a similar
3237 function from Martin Rudalics.
3238 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
3239 (desktop--restore-in-this-display-p): Remove.
3240 (desktop--find-frame): Rename from desktop--find-frame-in-display
3241 and add predicate argument.
3242 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
3243 (desktop--reuse-list): New variable.
3244 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
3245 New functions.
3246 (desktop--restore-frames): Add support for "minibuffer-special" frames.
3247
f6dd8b36
MA
32482013-07-14 Michael Albinus <michael.albinus@gmx.de>
3249
3250 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
3251
2ce3c565
DG
32522013-07-13 Dmitry Gutov <dgutov@yandex.ru>
3253
763a086d
JB
3254 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
3255 Highlight conversion methods on Kernel.
2ce3c565 3256
2cdb7698
AM
32572013-07-13 Alan Mackenzie <acm@muc.de>
3258
3259 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
3260 and comment it out. This out-commenting enables certain C++
3261 declarations to be parsed correctly.
3262
1a67b811
EZ
32632013-07-13 Eli Zaretskii <eliz@gnu.org>
3264
1b796d6b
EZ
3265 * international/mule.el (define-coding-system): Doc fix.
3266
1a67b811
EZ
3267 * simple.el (default-font-height): Don't call font-info if the
3268 frame's default font didn't change since the frame was created.
3269 (Bug#14838)
3270
58fbe886
LL
32712013-07-13 Leo Liu <sdl.web@gmail.com>
3272
3273 * ido.el (ido-read-file-name): Guard against non-symbol value.
3274
1f0480d4
FEG
32752013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3276
3277 * progmodes/python.el (python-imenu--build-tree): Fix corner case
3278 in nested defuns.
3279
97ead0e5
LL
32802013-07-13 Leo Liu <sdl.web@gmail.com>
3281
3282 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
3283 ido-set-matches call. (Bug#6852)
3284
0880a952
DG
32852013-07-12 Dmitry Gutov <dgutov@yandex.ru>
3286
3287 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
3288 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
3289 Ruby 2.0.
3290 (ruby-font-lock-keywords): Distinguish calls to functions with
3291 module-like names from module references. Highlight character
3292 literals.
3293
a7d8babb
SDJ
32942013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
3295
3296 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
6741ad6c 3297 (gdb-send): Handle continued commands. (Bug#14847)
a7d8babb 3298
acfcc8c5
JB
32992013-07-12 Juanma Barranquero <lekktu@gmail.com>
3300
3301 * desktop.el (desktop--v2s): Remove unused local variable.
3302 (desktop-save-buffer): Make defvar-local; adjust docstring.
3303 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
3304 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
3305
051f2775
AS
33062013-07-12 Andreas Schwab <schwab@linux-m68k.org>
3307
3308 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
3309
f24e7572
GM
33102013-07-12 Eli Zaretskii <eliz@gnu.org>
3311
3312 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
3313 (Bug#14842)
3314
539a920c
GM
33152013-07-12 Glenn Morris <rgm@gnu.org>
3316
3317 * doc-view.el: Require cl-lib at runtime too.
3318 (doc-view-remove-if): Remove.
3319 (doc-view-search-next-match, doc-view-search-previous-match):
3320 Use cl-remove-if.
3321
3322 * edmacro.el: Require cl-lib at runtime too.
3323 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
3324 (edmacro-mismatch, edmacro-subseq): Remove.
3325
3326 * shadowfile.el: Require cl-lib.
3327 (shadow-remove-if): Remove.
3328 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
3329 Use cl-remove-if.
3330
3331 * wid-edit.el: Require cl-lib.
3332 (widget-choose): Use cl-remove-if.
3333 (widget-remove-if): Remove.
3334
3335 * progmodes/ebrowse.el: Require cl-lib at runtime too.
3336 (ebrowse-delete-if-not): Remove.
3337 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
3338 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
3339 Use cl-delete-if-not.
3340
1048af7c
JB
33412013-07-12 Juanma Barranquero <lekktu@gmail.com>
3342
3343 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
3344 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
3345
6c0674ee
LL
33462013-07-12 Leo Liu <sdl.web@gmail.com>
3347
3348 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
3349
a19b3c2d
GM
33502013-07-11 Glenn Morris <rgm@gnu.org>
3351
4582a01c
GM
3352 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
3353 (edebug-gensym-index, edebug-gensym):
3354 Remove reimplementation of cl-gensym.
3355 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
3356
3357 * thumbs.el: Require cl-lib at run-time too.
3358 (thumbs-gensym-counter, thumbs-gensym):
3359 Remove reimplementation of cl-gensym.
3360 (thumbs-temp-file): Use cl-gensym.
3361
a19b3c2d
GM
3362 * emacs-lisp/ert.el: Require cl-lib at runtime too.
3363 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
3364 (ert--intersection, ert--set-difference, ert--set-difference-eq)
3365 (ert--union, ert--gensym-counter, ert--gensym-counter)
3366 (ert--coerce-to-vector, ert--remove*, ert--string-position)
3367 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
3368 (ert-make-test-unbound, ert--expand-should-1)
3369 (ert--expand-should, ert--should-error-handle-error)
3370 (should-error, ert--explain-equal-rec)
3371 (ert--plist-difference-explanation, ert-select-tests)
3372 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
3373 Use cl-lib functions rather than reimplementations.
3374
88f6a933
MA
33752013-07-11 Michael Albinus <michael.albinus@gmx.de>
3376
3377 * net/tramp.el (tramp-methods): Extend docstring.
3378 (tramp-connection-timeout): New defcustom.
3379 (tramp-error-with-buffer): Reset timestamp only when appropriate.
3380 (with-tramp-progress-reporter): Simplify.
3381 (tramp-process-actions): Improve messages.
3382
3383 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
3384 * net/tramp-sh.el (tramp-maybe-open-connection):
3385 Use `tramp-connection-timeout'.
3386 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
3387 (Bug#14808)
3388
a43d577e
LL
33892013-07-11 Leo Liu <sdl.web@gmail.com>
3390
3391 * ido.el (ido-read-file-name): Conform to the requirements of
3392 read-file-name. (Bug#11861)
3393 (ido-read-directory-name): Conform to the requirements of
3394 read-directory-name.
3395
d77974bf
JB
33962013-07-11 Juanma Barranquero <lekktu@gmail.com>
3397
3398 * subr.el (delay-warning): New function.
3399
35cb8a3e
EZ
34002013-07-10 Eli Zaretskii <eliz@gnu.org>
3401
3402 * simple.el (default-line-height): New function.
3403 (line-move-partial, line-move): Use it instead of computing the
3404 line height inline.
3405 (line-move-partial): Always compute ROWH. If the last line is
3406 partially-visible, but its text is completely visible, allow
3407 cursor to enter such a partially-visible line.
3408
525c5c77
MA
34092013-07-10 Michael Albinus <michael.albinus@gmx.de>
3410
3411 Improve error messages. (Bug#14808)
3412
3413 * net/tramp.el (tramp-current-connection): New defvar, moved from
3414 tramp-sh.el.
0ac26976 3415 (tramp-message-show-progress-reporter-message): Remove, not
525c5c77 3416 needed anymore.
0ac26976
SM
3417 (tramp-error-with-buffer): Show message in minibuffer.
3418 Discard input before waiting. Reset connection timestamp.
525c5c77
MA
3419 (with-tramp-progress-reporter): Improve messages.
3420 (tramp-process-actions): Use progress reporter. Delete process in
3421 case of error. Improve messages.
3422
763a086d
JB
3423 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
3424 Call `tramp-error-with-buffer' with vector and buffer.
0ac26976 3425 (tramp-current-connection): Remove.
525c5c77
MA
3426 (tramp-maybe-open-connection): The car of
3427 `tramp-current-connection' are the first 3 slots of the vector.
3428
c7a4d368
TZ
34292013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
3430
3431 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
3432 inside continued strings.
3433
954b166e
PE
34342013-07-10 Paul Eggert <eggert@cs.ucla.edu>
3435
3436 Timestamp fixes for undo (Bug#14824).
3437 * files.el (clear-visited-file-modtime): Move here from fileio.c.
3438
56973319
LL
34392013-07-10 Leo Liu <sdl.web@gmail.com>
3440
3441 * files.el (require-final-newline): Allow safe local value.
3442 (Bug#14834)
3443
5550a72c
LL
34442013-07-09 Leo Liu <sdl.web@gmail.com>
3445
3446 * ido.el (ido-read-directory-name): Handle fallback.
3447 (ido-read-file-name): Update DIR to ido-current-directory.
3448 (Bug#1516)
c28b9050 3449 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
5550a72c 3450
70c46b28
DG
34512013-07-09 Dmitry Gutov <dgutov@yandex.ru>
3452
3453 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
3454 "autoload". Remove "warn lower camel case" section, previously
3455 commented out. Highlight negation char. Do not highlight the
3456 target in singleton method definitions.
3457
0b64b838
SM
34582013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
3459
7fd72e2c
SM
3460 * faces.el (tty-setup-hook): Declare the hook.
3461
0b64b838
SM
3462 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
3463 and detect when a guard/pred depends on local vars (bug#14773).
3464 (pcase--u1): Adjust caller.
3465
ab49d60b
EZ
34662013-07-08 Eli Zaretskii <eliz@gnu.org>
3467
3468 * simple.el (line-move-partial, line-move): Account for
3469 line-spacing.
701d79aa
EZ
3470 (line-move-partial): Avoid setting vscroll when the last
3471 partially-visible line in window is of default height.
ab49d60b 3472
2d756ae0
LMI
34732013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3474
3475 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
3476 been used a while.
3477
ed095bd7
JB
34782013-07-07 Juanma Barranquero <lekktu@gmail.com>
3479
3480 * subr.el (read-quoted-char): Remove unused local variable `char'.
3481
f1e6674b
MK
34822013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
3483
584ee3fc
GM
3484 * ediff.el (ediff-version): Version update.
3485 (ediff-files-command, ediff3-files-command, ediff-merge-command)
3486 (ediff-merge-with-ancestor-command, ediff-directories-command)
3487 (ediff-directories3-command, ediff-merge-directories-command)
3488 (ediff-merge-directories-with-ancestor-command): New functions.
3489 All are command-line interfaces to ediff: to facilitate calling
3490 Emacs with the appropriate ediff functions invoked.
5165d44a
JB
3491
3492 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
3493 (viper-save-kill-buffer): Check if buffer is modified.
5165d44a 3494
584ee3fc
GM
3495 * viper.el (viper-version): Version update.
3496 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
5165d44a 3497
584ee3fc
GM
34982013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
3499
3500 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
3501 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
3502 (viper-intercept-ESC-key): Simplify.
3503 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
3504 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
3505 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
3506 (viper-setup-ESC-to-escape): New functions.
3507 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
3508 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
ed095bd7 3509
9aff9b38
EZ
35102013-07-07 Eli Zaretskii <eliz@gnu.org>
3511
5165d44a
JB
3512 * simple.el (default-font-height, window-screen-lines):
3513 New functions.
9aff9b38
EZ
3514 (line-move, line-move-partial): Use them instead of
3515 frame-char-height and window-text-height. This makes scrolling
3516 text smoother when the buffer's default face uses a font that is
3517 different from the frame's default font.
3518
1afb1d07
JD
35192013-07-06 Jan Djärv <jan.h.d@swipnet.se>
3520
3521 * files.el (write-file): Do not display confirm dialog for NS,
3522 it does its own dialog, which can't be cancelled (Bug#14578).
3523
23de972a
EZ
35242013-07-06 Eli Zaretskii <eliz@gnu.org>
3525
3526 * simple.el (line-move-partial): Adjust the row returned by
3527 posn-at-point for the current window-vscroll. (Bug#14567)
3528
54a42486
MA
35292013-07-06 Michael Albinus <michael.albinus@gmx.de>
3530
3531 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
3532 (tramp-sh-file-inotifywait-process-filter): Handle file names with
3533 spaces.
3534
34ada5f4
MR
35352013-07-06 Martin Rudalics <rudalics@gmx.at>
3536
3537 * window.el (window-state-put-stale-windows): New variable.
3538 (window--state-put-2): Save list of windows without matching buffer.
3539 (window-state-put): Remove "bufferless" windows if possible.
3540
11e03d89
JB
35412013-07-06 Juanma Barranquero <lekktu@gmail.com>
3542
3543 * simple.el (alternatives-define): Remove leftover :group keyword.
3544 Tweak docstring.
3545
3504a4be
LL
35462013-07-06 Leo Liu <sdl.web@gmail.com>
3547
3548 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
3549 (ido-enable-virtual-buffers): New variable.
3550 (ido-buffer-internal, ido-toggle-virtual-buffers)
3551 (ido-make-buffer-list): Use it.
3552 (ido-exhibit): Support turning on and off virtual buffers
3553 automatically.
3554
61e56e2c
JB
35552013-07-06 Juanma Barranquero <lekktu@gmail.com>
3556
3557 * simple.el (alternatives-define): New macro.
3558
321e1a9c
SM
35592013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
3560
3561 * subr.el (read-quoted-char): Use read-key.
3562 (sit-for): Let read-event decode tty input (bug#14782).
3563
d610f6dd
SB
35642013-07-05 Stephen Berman <stephen.berman@gmx.net>
3565
3566 * calendar/todo-mode.el: Add handling of file deletion, both by
321e1a9c
SM
3567 mode command and externally. Fix various related bugs.
3568 Clarify Commentary and improve some documentation strings and code.
d610f6dd
SB
3569 (todo-delete-file): New command.
3570 (todo-check-file): New function.
3571 (todo-show): Handle external deletion of the file we're trying to
3572 show (bug#14688). Replace called-interactively-p by an optional
3573 prefix argument to avoid problematic interaction with catch form
3574 when byte compiled (bug#14702).
3575 (todo-quit): Handle external deletion of the archive's todo file.
3576 Make sure the buffer that was visiting the archive file is still
3577 live before trying to bury it.
3578 (todo-category-completions): Handle external deletion of any
3579 category completion files.
3580 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
3581 of todo files, in case of external deletion.
3582 (todo-add-file): Replace unnecessary setq by let-binding.
3583 (todo-find-archive): Check whether there are any archives.
3584 Replace unnecessary setq by let-binding.
3585 (todo-archive-done-item): Use find-file-noselect to get the
321e1a9c
SM
3586 archive buffer whether or not the archive already exists.
3587 Remove superfluous code. Use file size instead of buffer-file-name to
d610f6dd
SB
3588 check if the archive is new; if it is, update list of archives.
3589 (todo-default-todo-file): Allow nil to be a valid value for when
3590 there are no todo files.
3591 (todo-reevaluate-default-file-defcustom): Use corrected definition
3592 of todo-default-todo-file.
3593 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
3594 (todo-delete-category, todo-show-categories-table)
3595 (todo-category-number): Clarify comment.
3596 (todo-filter-items): Clarify documentation string.
3597 (todo-show-current-file, todo-display-as-todo-file)
3598 (todo-reset-and-enable-done-separator): Tweak documentation string.
3599 (todo-done-separator): Make separator length window-width, since
3600 bug#2749 is now fixed.
3601
ddbdfd6f
MA
36022013-07-05 Michael Albinus <michael.albinus@gmx.de>
3603
321e1a9c
SM
3604 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
3605 Support both "gvfs-monitor-dir" and "inotifywait".
3606 (tramp-sh-file-inotifywait-process-filter): Rename from
ddbdfd6f
MA
3607 `tramp-sh-file-notify-process-filter'.
3608 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3609 (tramp-get-remote-gvfs-monitor-dir): New defuns.
3610
96eb829a
LL
36112013-07-05 Leo Liu <sdl.web@gmail.com>
3612
3613 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
3614
cf13177e
YM
36152013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3616
3617 * frame.el (display-pixel-height, display-pixel-width)
3618 (display-mm-height, display-mm-width): Mention behavior on
3619 multi-monitor setups in docstrings.
3620 (w32-display-monitor-attributes-list): Declare function.
3621 (display-monitor-attributes-list): Use it.
3622
864c58ca
MA
36232013-07-04 Michael Albinus <michael.albinus@gmx.de>
3624
3625 * filenotify.el: New package.
3626
3627 * autorevert.el (top): Require filenotify.el.
3628 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
3629 instead.
3630 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
3631 (auto-revert-notify-handler): Use `file-notify-*' functions.
3632
3633 * subr.el (file-notify-handle-event): Move function to filenotify.el.
3634
321e1a9c
SM
3635 * net/tramp.el (tramp-file-name-for-operation):
3636 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
864c58ca
MA
3637
3638 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3639 for `file-notify-add-watch' and `file-notify-rm-watch'.
3640 (tramp-process-sentinel): Improve trace.
3641 (tramp-sh-handle-file-notify-add-watch)
3642 (tramp-sh-file-notify-process-filter)
3643 (tramp-sh-handle-file-notify-rm-watch)
3644 (tramp-get-remote-inotifywait): New defuns.
3645
96673afe
JL
36462013-07-03 Juri Linkov <juri@jurta.org>
3647
3648 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
3649 call of `occur-read-primary-args' to interactive spec.
3650
3651 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
3652 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
3653
924494f4
MM
36542013-07-03 Matthias Meulien <orontee@gmail.com>
3655
3656 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
3657 `Buffer-menu-multi-occur'. Add it to the menu.
3658 (Buffer-menu-mode): Document it in docstring.
3659 (Buffer-menu-multi-occur): New command. (Bug#14673)
3660
56f75efc
DG
36612013-07-03 Dmitry Gutov <dgutov@yandex.ru>
3662
3663 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
3664 keywords and built-ins.
3665
9b057d61
GM
36662013-07-03 Glenn Morris <rgm@gnu.org>
3667
208dee4d
GM
3668 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
3669
9b057d61
GM
3670 Make info-xref checks case-sensitive by default
3671 * info.el (Info-find-node, Info-find-in-tag-table)
3672 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
3673 Add option for exact case matching of nodes.
3674 * info-xref.el (info-xref): New custom group.
3675 (info-xref-case-fold): New option.
3676 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
3677
e01aa29c
LL
36782013-07-03 Leo Liu <sdl.web@gmail.com>
3679
3680 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
3681
3086ca2e
DG
36822013-07-03 Dmitry Gutov <dgutov@yandex.ru>
3683
3684 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
3685 middle of block statement initially, lower the depth. Remove
3686 FIXME comment, not longer valid. Remove middle of block statement
3687 detection, no need to do that anymore since we've been using
3688 `ruby-parse-region' here.
3689
a3b49114
JD
36902013-07-02 Jan Djärv <jan.h.d@swipnet.se>
3691
3692 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
3693
08e5c823 36942013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
c737dcb1
KY
3695
3696 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
3697
2addf922
JB
36982013-07-01 Juanma Barranquero <lekktu@gmail.com>
3699
3700 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
3701 (desktop-restore-in-current-display): New customization option.
3702 (desktop--excluded-frame-parameters): Add `font'.
3703 (desktop--save-frames): Rename from desktop--save-windows.
3704 (desktop--restore-in-this-display-p): New function.
3705 (desktop--make-full-frame): Remove unwanted width/height from
3706 full(width|height) frames.
3707 (desktop--restore-frames): Rename from desktop--restore-windows.
3708 Obey desktop-restore-current-display. Do not delete old frames or
3709 select a new frame unless we were able to restore at least one frame.
3710
ef099a94
MN
37112013-06-30 Michal Nazarewicz <mina86@mina86.com>
3712
3713 * files.el (find-file-noselect): Simplify conditional expression.
3714
3715 * remember.el (remember-append-to-file):
3716 Don't mix `find-buffer-visiting' and `get-file-buffer'.
3717
3718 Add `remember-notes' function to store random notes across Emacs
3719 restarts.
3720 * remember.el (remember-data-file): Add :set callback to affect
3721 notes buffer (if any).
3722 (remember-notes): New command.
3723 (remember-notes-buffer-name, bury-remember-notes-on-kill):
3724 New defcustoms for the `remember-notes' function.
3725 (remember-notes-save-and-bury-buffer): New command.
3726 (remember-notes-mode-map): New variable.
3727 (remember-mode): New minor mode.
3728 (remember-notes--kill-buffer-query): New function.
3729 * startup.el (initial-buffer-choice): Add notes to custom type.
3730
0865d506
EZ
37312013-06-30 Eli Zaretskii <eliz@gnu.org>
3732
0ba54312
EZ
3733 * bindings.el (right-char, left-char): Don't call sit-for, this is
3734 no longer needed. Use arithmetic comparison only for numerical
3735 arguments.
3736
ef099a94
MN
3737 * international/mule-cmds.el (select-safe-coding-system):
3738 Handle the case of FROM being a string correctly. (Bug#14755)
0865d506 3739
2fae38e5
LMI
37402013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3741
3742 * net/shr.el (shr-make-table-1): Add a sanity check that allows
3743 progression on degenerate tables.
ef099a94 3744 (shr-rescale-image): ImageMagick animated images currently don't work.
2fae38e5 3745
a47cbd64
JB
37462013-06-30 Juanma Barranquero <lekktu@gmail.com>
3747
3748 Some fixes and improvements for desktop frame restoration.
3749 It is still experimental and disabled by default.
3750 * desktop.el (desktop--save-windows): Put the selected frame at
3751 the head of the list.
3752 (desktop--make-full-frame): New function.
3753 (desktop--restore-windows): Try to re-select the frame that was
3754 selected upon saving. Do not abort if some frames fail to restore,
7a3518fa
JB
3755 just show an error message and continue. Set up maximized frames
3756 so they have default non-maximized dimensions.
a47cbd64 3757
6dbafa30
DG
37582013-06-30 Dmitry Gutov <dgutov@yandex.ru>
3759
ef099a94
MN
3760 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3761 Don't start heredoc inside a string or comment.
6dbafa30 3762
4c672a0f
EZ
37632013-06-29 Eli Zaretskii <eliz@gnu.org>
3764
3765 * bindings.el (visual-order-cursor-movement): New defcustom.
3766 (right-char, left-char): Provide visual-order cursor motion by
3767 calling move-point-visually. Update the doc strings.
3768
50960f36
KH
37692013-06-28 Kenichi Handa <handa@gnu.org>
3770
3771 * international/mule.el (define-coding-system): New coding system
3772 properties :inhibit-null-byte-detection,
3773 :inhibit-iso-escape-detection, and :prefer-utf-8.
3774 (set-buffer-file-coding-system): If :charset-list property of
3775 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
3776 appropriate for setting.
3777
c1ea3abf
JB
3778 * international/mule-cmds.el (select-safe-coding-system):
3779 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
3780 multibyte characters, return utf-8 (or one of its siblings).
50960f36
KH
3781
3782 * international/mule-conf.el (prefer-utf-8): New coding system.
3783 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
3784 files.
3785
75dbaf9d
IK
37862013-06-28 Ivan Kanis <ivan@kanis.fr>
3787
eadb6068
IK
3788 * net/shr.el (shr-render-region): New function.
3789
75dbaf9d
IK
3790 * net/eww.el: Autoload `eww-browse-url'.
3791
9ea5cf9f
DG
37922013-06-27 Dmitry Gutov <dgutov@yandex.ru>
3793
c1ea3abf
JB
3794 * emacs-lisp/package-x.el (package-upload-buffer-internal):
3795 Adapt to `package-desc-version' being a list.
3796 Use `package--ac-desc-version' to retrieve version from a package
9ea5cf9f
DG
3797 archive element.
3798
39c0e36f
JB
37992013-06-27 Juanma Barranquero <lekktu@gmail.com>
3800
3801 New experimental feature to save&restore window and frame setup.
3802 * desktop.el (desktop-save-windows): New defcustom.
3803 (desktop--saved-states): New var.
3804 (desktop--excluded-frame-parameters): New defconst.
3805 (desktop--filter-frame-parms, desktop--find-frame-in-display)
3806 (desktop--restore-windows, desktop--save-windows): New functions.
3807 (desktop-save): Call `desktop--save-windows'.
3808 (desktop-read): Call `desktop--restore-windows'.
3809
7f13406b
LMI
38102013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
3811
ef099a94 3812 * net/shr.el (add-face-text-property): Remove compat definition.
7f13406b 3813
1e072639
SB
38142013-06-27 Stephen Berman <stephen.berman@gmx.net>
3815
3816 * info.el (Info-try-follow-nearest-node): Move search for footnote
3817 above search for node name to prevent missing a footnote (bug#14717).
3818
f3e2cbde
SB
38192013-06-27 Stephen Berman <stephen.berman@gmx.net>
3820
3821 * obsolete/otodo-mode.el: Add obsolescence info to file header.
3822
99906aa0
LL
38232013-06-27 Leo Liu <sdl.web@gmail.com>
3824
3825 * net/eww.el (eww-read-bookmarks): Check file size.
3826
539f75f4
SM
38272013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
3828
3829 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
3830 advice--pending if newdef is nil or an autoload (bug#13820).
3831 (advice-mapc): New function.
3832
843571cb
LMI
38332013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
3834
3835 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
3836 probably.
23a75d7f 3837 (eww-mode-map): Add a menu bar.
2b4f0506
LMI
3838 (eww-add-bookmark): New command.
3839 (eww-bookmark-mode): New mode and commands.
a285ce99 3840 (eww-add-bookmark): Remove newlines from the title.
47fd571b 3841 (eww-bookmark-browse): Don't bug out if it's the only window.
843571cb 3842
f2136e1e
GM
38432013-06-26 Glenn Morris <rgm@gnu.org>
3844
eab35f39
GM
3845 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
3846 (hfy-size): Handle ttys. (Bug#14668)
3847
f2136e1e
GM
3848 * info-xref.el: Update for Texinfo 5 change in *note format.
3849 (info-xref-node-re, info-xref-note-re): New constants.
3850 (info-xref-check-buffer): Use info-xref-note-re.
3851
a49ff80c
SM
38522013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
3853
a343d218
SM
3854 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
3855
a49ff80c
SM
3856 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
3857 nil terminate the loop (bug#14718).
3858
8308f184
LMI
38592013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3860
3861 * net/eww.el: Rework history traversal. When going forward/back,
3862 put these actions into the history, too, so that they can be
3863 replayed.
26bf2b82 3864 (eww-render): Move the history reset to the correct buffer.
8308f184 3865
ec64c273
JL
38662013-06-25 Juri Linkov <juri@jurta.org>
3867
3868 * files-x.el (modify-dir-local-variable): Change the header comment
3869 in the file with directory local variables. (Bug#14692)
3870
e080a9d7
JL
3871 * files-x.el (read-file-local-variable-value): Add `default'.
3872 (Bug#14710)
3873
bfbc93a1
IK
38742013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3875
3876 * net/eww.el (eww-make-unique-file-name): Create a unique file
3877 name before saving to entering `y' accidentally asynchronously.
3878
38792013-06-25 Ivan Kanis <ivan@kanis.fr>
3880
3881 * net/eww.el (eww-download): New command and keystroke.
3882
16f74f10
LMI
38832013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3884
a49ff80c 3885 * net/eww.el (eww-copy-page-url): Change name of command.
16f74f10
LMI
3886
3887 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
3888 be more consistent with Info and dired.
3889
3890 * net/eww.el (eww-mode-map): Ditto.
3891
12059709
SM
38922013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
3893
3894 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
3895 packages from archives.
3896 (package-archive-contents): Change format; include obsolete packages.
3897 (package-desc): Use `dir' to mark builtin packages.
3898 (package--from-builtin): Set the `dir' field to `builtin'.
3899 (generated-autoload-file, version-control): Declare.
3900 (package-compute-transaction): Change first arg and return value to be
3901 lists of package-descs. Adjust to new package-archive-contents format.
3902 (package--add-to-archive-contents): Adjust to new
3903 package-archive-contents format.
3904 (package-download-transaction): Arg is now a list of package-descs.
3905 (package-install): If `pkg' is a package name, pass it as
3906 a requirement, so it is subject to the usual (e.g. disabled) checks.
3907 (describe-package): Accept package-desc as well.
3908 (describe-package-1): Describe a specific package-desc. Add links to
3909 other package-descs for the same package name.
3910 (package-menu-describe-package): Pass the actual package-desc.
3911 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
3912 works correctly.
3913 (package-desc-status): New function.
3914 (package-menu--refresh): New function, extracted
3915 from package-menu--generate.
3916 (package-menu--generate): Use it.
3917 (package-delete): Update package-alist.
3918 (package-menu-execute): Don't call package-initialize.
3919
3920 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
3921 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
3922 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
3923 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
3924 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
3925 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
3926
8bbdea0f
MR
39272013-06-25 Martin Rudalics <rudalics@gmx.at>
3928
3929 * window.el (window--state-get-1): Workaround for bug#14527.
3930 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
3931
e82b0991
LMI
39322013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
3933
3934 * net/eww.el (eww-back-url): Implement the history by stashing all
3935 the data into a list.
d3f0f918 3936 (eww-forward-url): Allow going forward in the history, too.
e82b0991 3937
c763842b
SM
39382013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
3939
3940 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
3941 for values and use read--expression for expressions (bug#14710).
3942 (read-file-local-variable): Avoid setq.
3943 (read-file-local-variable-mode): Use minor-mode-list.
3944
bceff189
RW
39452013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3946
864c58ca 3947 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
bceff189
RW
3948 for DOI URLs.
3949
45f431c6
RW
39502013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3951
864c58ca 3952 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
45f431c6
RW
3953 Update imenu-support when dialect changes.
3954
f42d8237
LL
39552013-06-25 Leo Liu <sdl.web@gmail.com>
3956
3957 * ido.el (ido-read-internal): Allow forward slash on windows.
3958
be549ce6
LMI
39592013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3960
3961 * net/eww.el (eww): Start of strings is \\`, not ^.
3962
71d4c19d
IK
39632013-06-24 Ivan Kanis <ivan@kanis.fr>
3964
5196f88a
IK
3965 * net/shr.el (shr-browse-url): Fix interactive spec.
3966
71d4c19d
IK
3967 * net/eww.el (eww): Add a trailing slash to domain names.
3968
ae36ca55
JB
39692013-06-24 Juanma Barranquero <lekktu@gmail.com>
3970
3971 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
3972
0ebd92a3
LMI
39732013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3974
bdaa086b
LMI
3975 * net/shr.el (shr-browse-url): Use an external browser if given a
3976 prefix.
3977
c763842b 3978 * net/eww.el (eww-external-browser): Move to shr.
0ebd92a3 3979
b89fc156
IK
39802013-06-24 Ivan Kanis <ivan@kanis.fr>
3981
3982 * net/eww.el (eww): Work more correctly for file: URLs.
3983 (eww-detect-charset): Allow quoted charsets.
3984 (eww-yank-page-url): New command and keystroke.
3985
18eb4bca
DU
39862013-06-24 Daiki Ueno <ueno@gnu.org>
3987
3988 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
3989 file name of gpg executable.
3990 (epg-context-program): New function.
3991 (epg-context-home-directory): New function.
3992 (epg-context-set-program): New function.
3993 (epg-context-set-home-directory): New function.
3994 (epg--start): Use `epg-context-program' instead of
3995 'epg-gpg-program'.
3996 (epg--list-keys-1): Likewise.
3997
6c6268c8
LL
39982013-06-24 Leo Liu <sdl.web@gmail.com>
3999
4000 * ido.el (ido-read-internal): Fix bug#14620.
4001
5e400cb3
JB
40022013-06-23 Juanma Barranquero <lekktu@gmail.com>
4003
4004 * faces.el (face-documentation): Simplify.
4005 (read-face-attribute, tty-find-type, x-resolve-font-name):
4006 Use `string-match-p'.
4007 (list-faces-display): Use `string-match-p'. Simplify.
4008 (face-spec-recalc): Check face to avoid face alias loops.
4009 (read-color): Use `string-match-p' and non-capturing parenthesis.
4010
f3f9606c
LMI
40112013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4012
4013 * net/shr.el (shr-rescale-image): Use the new
4014 :max-width/:max-height functionality.
4015
a3ca09b9
IK
40162013-06-23 Ivan Kanis <ivan@kanis.fr>
4017
4018 * net/eww.el (eww-search-prefix): New variable.
4019 (eww): Use it.
f865b474
IK
4020 (eww-external-browser): New variable.
4021 (eww-mode-map): New keystroke.
4022 (eww-browse-with-external-browser): New command.
a3ca09b9 4023
e854cfc7
IK
4024 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
4025
18bb9e21
JB
40262013-06-23 Juanma Barranquero <lekktu@gmail.com>
4027
4028 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
4029 Don't skip aligning the next header field when padding is 0;
4030 otherwise, field width is not respected unless the title is as
4031 wide as the field.
4032
5b165ade
SM
40332013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4034
4035 * emacs-lisp/package.el (package-el-version): Remove.
4036 (package-process-define-package): Fix inf-loop.
4037 (package-install): Allow symbols as arguments again.
4038
12adebe9
DG
40392013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4040
4041 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
4042 add some more keyword-like methods.
4043 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
4044
388573ee
JB
40452013-06-22 Juanma Barranquero <lekktu@gmail.com>
4046
4047 * bs.el (bs-buffer-show-mark): Make defvar-local.
4048 (bs-mode): Use setq-local.
4049
4050 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
4051 (emacs-lock--try-unlocking): Make defvar-local.
4052
4582a01c 40532013-06-22 Glenn Morris <rgm@gnu.org>
3d94f3ad 4054
2663dd23
GM
4055 * play/cookie1.el (cookie-apropos): Minor simplification.
4056
3d94f3ad
GM
4057 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
4058
f72e2fdb
DG
40592013-06-22 Dmitry Gutov <dgutov@yandex.ru>
4060
4061 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
4062 `regexp-opt', it breaks the build during dumping.
4063
73eab938
DG
40642013-06-21 Dmitry Gutov <dgutov@yandex.ru>
4065
c763842b
SM
4066 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4067 Highlight keyword-like methods on Kernel and Module with
73eab938 4068 font-lock-builtin-face.
5cf8176d
DG
4069 (auto-mode-alist): Consolidate different entries into one regexp
4070 and add more *file-s.
73eab938 4071
d26255f6
SB
40722013-06-21 Stephen Berman <stephen.berman@gmx.net>
4073
4074 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
4075
4076 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
4077 (diary-entry): Use it in the action of this button type instead of
4078 diary-goto-entry.
4079
4080 * calendar/todo-mode.el: New version.
4081 (todo-add-category): Append new category to end of file and give
4082 it the highest number, instead of putting it at the beginning and
4083 giving it 0. Incorporate noninteractive functionality.
4084 (todo-forward-category): Adapt to 1-based category numbering.
4085 Allow skipping over archived categories.
4086 (todo-backward-category): Derive from todo-forward-category.
4087 (todo-backward-item, todo-forward-item): Make noninteractive and
4088 delegate interactive part to new commands. Make sensitive to done items.
4089 (todo-categories): Make value an alist of category names and
4090 vectors of item counts.
4091 (todo-category-beg): Make a defconst.
4092 (todo-category-number): Use 1 instead of 0 as initial value.
4093 (todo-category-select): Make sensitive to overlays, optional item
4094 highlighting and done items.
4095 (todo-delete-item): Make sensitive to overlays and marked and done items.
4096 (todo-edit-item): Make sensitive to overlays and editing of
4097 date/time header optional. Add format checks.
4098 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
4099 no-op if point is not on an item. Advertise using todo-edit-quit.
4100 (todo-edit-mode): Make sensitive to new format, font-locking, and
4101 multiple todo files.
4102 (todo-insert-item, todo-insert-item-here): Derive from
4103 todo-basic-insert-item and extend functionality.
4104 (todo-item-end, todo-item-start): Make sensitive to done items.
4105 (todo-item-string): Don't return text properties. Restore point.
4106 (todo-jump-to-category): Make sensitive to multiple todo files and
4107 todo archives. Use extended category completion.
4108 (todo-lower-item, todo-raise-item): Rename to *-priority and
4109 derive from todo-set-item-priority.
4110 (todo-mode): Derive from special-mode. Make sensitive to new
4111 format, font-locking and multiple todo files. Make read-only.
4112 (todo-mode-map): Don't suppress digit keys, so they can supply
4113 prefix arguments. Add many new key bindings.
4114 (todo-prefix): Insert as an overlay instead of file text.
4115 Change semantics from diary date expression to purely visual mark.
4116 (todo-print): Rename to todo-print-buffer. Make buffer display
4117 features printable. Remove option to restrict number of items
4118 printed. Add option to print to file.
4119 (todo-print-function): Rename to todo-print-buffer-function.
4120 (todo-quit): Extend to handle exiting new todo modes.
4121 (todo-remove-item): Make sensitive to overlays.
4122 (todo-save): Extend to buffers of filtered items.
4123 (todo-show): Make sensitive to done items, multiple todo files and
4124 new todo modes. Offer to convert legacy todo file before creating
4125 first new todo file.
4126 (todo-show-priorities): Rename to todo-top-priorities.
4127 Change semantics of value 0.
4128 (todo-top-priorities): Rename to todo-filter-top-priorities,
4129 derive from todo-filter-items and extend functionality.
4130 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
4131 and extend functionality to other types of filtered items.
4132 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
4133 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
4134 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
4135 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
4136 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
4137 (todo-edit-mode-hook, todo-entry-prefix-function)
4138 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
4139 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
4140 (todo-initials, todo-insert-threshold, todo-item-string-start)
4141 (todo-line-string, todo-menu, todo-mode-hook)
4142 (todo-more-important-p, todo-previous-answer, todo-previous-line)
4143 (todo-print-priorities, todo-remove-separator)
4144 (todo-save-top-priorities-too, todo-string-count-lines)
4145 (todo-string-multiline-p, todo-time-string-format)
4146 (todo-tmp-buffer-name): Remove.
4147 (todo-add-file, todo-archive-done-item, todo-choose-archive)
4148 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
4149 (todo-edit-category-diary-inclusion)
4150 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
4151 (todo-edit-file, todo-edit-item-date-day)
4152 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
4153 (todo-edit-item-date-month, todo-edit-item-date-to-today)
4154 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
4155 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
4156 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
4157 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
4158 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
4159 (todo-filter-top-priorities-multifile, todo-find-archive)
4160 (todo-find-filtered-items-file, todo-go-to-source-item)
4161 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
4162 (todo-jump-to-archive-category, todo-lower-category)
4163 (todo-mark-category, todo-marked-item-p, todo-merge-category)
4164 (todo-move-category, todo-move-item, todo-next-button)
4165 (todo-next-item, todo-padded-string, todo-powerset)
4166 (todo-previous-button, todo-previous-item)
4167 (todo-print-buffer-to-file, todo-raise-category)
4168 (todo-rename-category, todo-repair-categories-sexp, todo-search)
4169 (todo-set-category-number, todo-set-item-priority)
4170 (todo-set-top-priorities-in-category)
4171 (todo-set-top-priorities-in-file, todo-show-categories-table)
4172 (todo-sort-categories-alphabetically-or-numerically)
4173 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
4174 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
4175 (todo-toggle-item-header, todo-toggle-item-highlighting)
4176 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
4177 (todo-toggle-view-done-items, todo-toggle-view-done-only)
4178 (todo-unarchive-items, todo-unmark-category): New commands.
4179 (todo-absolute-file-name, todo-add-to-buffer-list)
4180 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
4181 (todo-basic-insert-item, todo-category-completions)
4182 (todo-category-number, todo-category-string-matcher-1)
4183 (todo-category-string-matcher-2, todo-check-filtered-items-file)
4184 (todo-check-format, todo-clear-matches)
4185 (todo-comment-string-matcher, todo-convert-legacy-date-time)
4186 (todo-current-category, todo-date-string-matcher)
4187 (todo-define-insertion-command, todo-diary-expired-matcher)
4188 (todo-diary-goto-entry, todo-diary-item-p)
4189 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
4190 (todo-display-categories, todo-display-sorted, todo-done-item-p)
4191 (todo-done-item-section-p, todo-done-separator)
4192 (todo-done-string-matcher, todo-files, todo-filter-items)
4193 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
4194 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
4195 (todo-insert-category-line, todo-insert-item-from-calendar)
4196 (todo-insert-sort-button, todo-insert-with-overlays)
4197 (todo-insertion-command-name, todo-insertion-key-bindings)
4198 (todo-label-to-key, todo-longest-category-name-length)
4199 (todo-make-categories-list, todo-mode-external-set)
4200 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
4201 (todo-modes-set-3, todo-multiple-filter-files)
4202 (todo-nondiary-marker-matcher, todo-prefix-overlays)
4203 (todo-read-category, todo-read-date, todo-read-dayname)
4204 (todo-read-file-name, todo-read-time)
4205 (todo-reevaluate-category-completions-files-defcustom)
4206 (todo-reevaluate-default-file-defcustom)
4207 (todo-reevaluate-filelist-defcustoms)
4208 (todo-reevaluate-filter-files-defcustom)
4209 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
4210 (todo-reset-done-separator, todo-reset-done-separator-string)
4211 (todo-reset-done-string, todo-reset-global-current-todo-file)
4212 (todo-reset-highlight-item, todo-reset-nondiary-marker)
4213 (todo-reset-prefix, todo-set-categories)
4214 (todo-set-date-from-calendar, todo-set-show-current-file)
4215 (todo-set-top-priorities, todo-short-file-name)
4216 (todo-show-current-file, todo-sort, todo-time-string-matcher)
4217 (todo-total-item-counts, todo-update-buffer-list)
4218 (todo-update-categories-display, todo-update-categories-sexp)
4219 (todo-update-count, todo-validate-name, todo-y-or-n-p):
4220 New functions.
4221 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
4222 New major modes.
4223 (todo-categories, todo-display, todo-edit, todo-faces)
4224 (todo-filtered): New defgroups.
4225 (todo-archived-only, todo-button, todo-category-string, todo-date)
4226 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
4227 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
4228 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
4229 (todo-add-item-if-new-category, todo-always-add-time-string)
4230 (todo-categories-align, todo-categories-archived-label)
4231 (todo-categories-category-label, todo-categories-diary-label)
4232 (todo-categories-done-label, todo-categories-number-separator)
4233 (todo-categories-todo-label, todo-categories-totals-label)
4234 (todo-category-completions-files, todo-completion-ignore-case)
4235 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
4236 (todo-done-separator-string, todo-done-string)
4237 (todo-files-function, todo-filter-done-items, todo-filter-files)
4238 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
4239 (todo-initial-category, todo-initial-file, todo-item-mark)
4240 (todo-legacy-date-time-regexp, todo-mode-line-function)
4241 (todo-nondiary-marker, todo-number-prefix)
4242 (todo-print-buffer-function, todo-show-current-file)
4243 (todo-show-done-only, todo-show-first, todo-show-with-done)
4244 (todo-skip-archived-categories, todo-top-priorities-overrides)
4245 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
4246 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
4247 New defcustoms.
4248 (todo-category-done, todo-date-pattern, todo-date-string-start)
4249 (todo-diary-items-buffer, todo-done-string-start)
4250 (todo-filtered-items-buffer, todo-item-start)
4251 (todo-month-abbrev-array, todo-month-name-array)
4252 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
4253 (todo-top-priorities-buffer): New defconsts.
4254 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
4255 (todo-categories-with-marks, todo-category-string-face)
4256 (todo-comment-face, todo-comment-string, todo-current-todo-file)
4257 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
4258 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
4259 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
4260 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
4261 (todo-font-lock-keywords, todo-global-current-todo-file)
4262 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
4263 (todo-insertion-commands-args)
4264 (todo-insertion-commands-args-genlist)
4265 (todo-insertion-commands-names, todo-insertion-map)
4266 (todo-key-bindings-t, todo-key-bindings-t+a)
4267 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
4268 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
4269 (todo-nondiary-face, todo-print-buffer, todo-time-face)
4270 (todo-visited): New variables.
4271
cad5d1cb
GM
42722013-06-21 Glenn Morris <rgm@gnu.org>
4273
4274 * play/cookie1.el (cookie-apropos): Add optional display argument.
4275 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
4276 (psychoanalyze-pinhead): Use cookie-doctor.
4277
9e277302
JB
42782013-06-21 Juanma Barranquero <lekktu@gmail.com>
4279
4280 * emacs-lisp/package.el (tar-get-file-descriptor)
4281 (tar--extract): Declare.
4282
c5b0993e
EW
42832013-06-21 Eduard Wiebe <usenet@pusto.de>
4284
4285 Extend flymake's warning predicate to be a function (bug#14217).
4286 * progmodes/flymake.el (flymake-warning-predicate): New.
4287 (flymake-parse-line): Use it.
4288 (flymake-warning-re): Make obsolete alias to
4289 `flymake-warning-predicate'.
4290
a7d2d465
SM
42912013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4292
4293 * emacs-lisp/package.el (package-alist): Include obsolete packages.
4294 (package-obsolete-list): Remove.
4295 (package-activate): Remove min-version argument. Add `force' argument.
4296 Adjust to new package-alist format.
4297 (package-mark-obsolete): Remove.
4298 (package-unpack): Force reload of the package's autoloads.
4299 (package-installed-p): Check builtins if the installed package is not
4300 recent enough.
4301 (package-initialize): Don't reset package-obsolete-list.
4302 Don't specify which package version to activate.
4303 (package-process-define-package, describe-package-1)
4304 (package-menu--generate): Adjust to new package-alist format.
4305
cedf5c9d
JB
43062013-06-21 Juanma Barranquero <lekktu@gmail.com>
4307
4308 * allout-widgets.el (allout-widgets-mode-off)
4309 (allout-widgets-mode-on, allout-widgets-pre-command-business)
4310 (allout-widgets-post-command-business)
4311 (allout-widgets-after-copy-or-kill-function)
4312 (allout-widgets-after-undo-function, allout-test-range-overlaps)
4313 (allout-decorate-item-and-context)
4314 (allout-graphics-modification-handler): Fix typos in docstrings.
4315 (allout-get-or-create-parent-widget): Use `looking-at-p'.
4316
4317 * cmuscheme.el (scheme-start-file): Doc fix.
4318 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
4319 (scheme-input-filter): Use `string-match-p'.
4320
4321 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
4322
4323 * dired-x.el: Use Dired consistently in docstrings.
4324
4325 * dired.el: Use Dired consistently in docstrings.
4326 (dired-readin, dired-mode): Use `setq-local'.
4327 (dired-switches-alist): Make defvar-local.
4328 (dired-buffers-for-dir): Use `zerop'.
4329 (dired-safe-switches-p, dired-switches-escape-p)
4330 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
4331 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
4332 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
4333 (dired-goto-next-nontrivial-file): Use `string-match-p'.
4334 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
4335 (dired-toggle-marks, dired-mark-files-containing-regexp)
4336 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
4337 (dired-flag-auto-save-files, dired-flag-backup-files):
4338 Use `looking-at-p'.
4339 (dired-mark-files-regexp, dired-build-subdir-alist):
4340 Use `string-match-p', `looking-at-p'.
4341
4342 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
4343 (direct-print-region-helper): Use `string-match-p'.
4344
aed838b5
LL
43452013-06-21 Leo Liu <sdl.web@gmail.com>
4346
cedf5c9d
JB
4347 * comint.el (comint-redirect-results-list-from-process):
4348 Fix infinite loop.
aed838b5 4349
d80a808f
LMI
43502013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4351
4352 * net/eww.el (eww-update-header-line-format): Quote % characters.
4353
e7a526e3
GM
43542013-06-21 Glenn Morris <rgm@gnu.org>
4355
4356 * play/cookie1.el (cookie): New custom group.
4357 (cookie-file): New option.
4358 (cookie-check-file): New function.
4359 (cookie): Make it interactive. Make start and end messages optional.
4360 Interactively, display the result. Default to cookie-file.
4361 (cookie-insert): Default to cookie-file.
4362 (cookie-snarf): Make start and end messages optional.
4363 Default to cookie-file. Use with-temp-buffer.
4364 (cookie-read): Rename from read-cookie.
4365 Make start and end messages optional. Default to cookie-file.
4366 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
7f8e3b22 4367 Do not autoload it.
e7a526e3
GM
4368 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
4369 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
4370
62efb35e
LL
43712013-06-21 Leo Liu <sdl.web@gmail.com>
4372
4373 * progmodes/octave.el (octave-mode): Backward compatibility fix.
4374
21e3f963
GM
43752013-06-21 Glenn Morris <rgm@gnu.org>
4376
4377 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
4378
fd846ab4
SM
43792013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4380 Daniel Hackney <dan@haxney.org>
4381
4382 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
4383 Consolidate the single-file vs tarball code.
4384 (package-desc-suffix): New function.
4385 (package-desc-full-name): Don't bother inlining it.
4386 (package-load-descriptor): Return the new package-desc.
4387 (package-mark-obsolete): Remove unused arg `package'.
4388 (package-unpack): Make it work for single files as well.
4389 Make it update package-alist.
4390 (package--make-autoloads-and-stuff): Rename from
4391 package--make-autoloads-and-compile. Don't compile any more.
4392 (package--compile): New function.
4393 (package-generate-description-file): New function, extracted from
4394 package-unpack-single.
4395 (package-unpack-single): Remove.
4396 (package--with-work-buffer): Add indentation and debugging info.
4397 (package-download-single): Remove.
4398 (package-install-from-archive): Rename from package-download-tar, make
4399 it take a pkg-desc, and make it work for single files as well.
4400 (package-download-transaction): Simplify.
4401 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
4402 external tar program.
4403 (package-install-from-buffer): Remove `pkg-desc' argument.
4404 Use package-tar-file-info for tar-mode buffers.
4405 (package-install-file): Simplify accordingly.
4406 (package-archive-base): Change to take a pkg-desc.
4407 * tar-mode.el (tar--check-descriptor): New function, extracted from
4408 tar-get-descriptor.
4409 (tar-get-descriptor): Use it.
4410 (tar-get-file-descriptor): New function.
4411 (tar--extract): New function, extracted from tar-extract.
4412 (tar--extract): Use it.
4413 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
4414 case the summary uses non-ascii. Adjust to new calling convention of
4415 package-tar-file-info.
4416
b7deae5e
LL
44172013-06-21 Leo Liu <sdl.web@gmail.com>
4418
fd846ab4
SM
4419 * comint.el (comint-redirect-results-list-from-process):
4420 Fix random delay. (Bug#14681)
b7deae5e 4421
7a65a0b2
JB
44222013-06-21 Juanma Barranquero <lekktu@gmail.com>
4423
4424 * profiler.el (profiler-format-number): Use log, not log10.
4425
1493c2af
JB
44262013-06-20 Juanma Barranquero <lekktu@gmail.com>
4427
4428 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
4429
aff6371e
SM
44302013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
4431
4432 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
4433 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
4434 yet available.
4435 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
4436 (AUTOGENEL): ... here.
4437 * emacs-lisp/cl-macs.el (cl--sublis): New function.
4438 (cl--defsubst-expand): Use it.
4439
89561f72
PE
44402013-06-20 Paul Eggert <eggert@cs.ucla.edu>
4441
4442 * subr.el (log10): Move here from C code, and declare as obsolete.
4443 All uses of (log10 X) replaced with (log X 10).
4444
47199123
JB
44452013-06-20 Juanma Barranquero <lekktu@gmail.com>
4446
4447 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
4448 Declare with `defvar-local'.
4449 (tabulated-list-use-header-line, tabulated-list-entries)
4450 (tabulated-list-padding, tabulated-list-printer)
4451 (tabulated-list-sort-key): Declare with `defvar-local'.
4452 (tabulated-list-init-header, tabulated-list-print-fake-header):
4453 Use `setq-local'.
4454
4a172eab
MA
44552013-06-20 Michael Albinus <michael.albinus@gmx.de>
4456
47199123
JB
4457 * arc-mode.el (archive-mode): Add `archive-write-file' to
4458 `write-contents-functions' also for remote files. (Bug#14652)
4a172eab 4459
5fc0acc0
JB
44602013-06-20 Juanma Barranquero <lekktu@gmail.com>
4461
d5b27848
JB
4462 * cus-edit.el (custom-commands): Fix typos.
4463 (custom-display): Fix tooltip text.
4464 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
4465 Fix typos in docstrings.
4466 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
4467 (custom-unlispify-menu-entry, custom-magic-value-create)
4468 (custom-add-see-also, custom-group-value-create): Use ?\s.
4469 (custom-guess-type, customize-apropos, editable-field)
4470 (custom-face-value-create): Use `string-match-p'.
4471 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
4472
4473 * custom.el (custom-load-symbol): Use `string-match-p'.
4474
a5c581d8
JB
4475 * ansi-color.el: Convert to lexical binding.
4476 (ansi-colors): Fix URL.
4477 (ansi-color-context, ansi-color-context-region): Use defvar-local.
4478 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
4479 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
4480
970ad972
G
44812013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4482
4483 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
4484
4485 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
4486
44872013-06-19 Tom Tromey <tromey@redhat.com>
4488
4489 * net/eww.el (eww-top-url): Remove.
4490 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
4491 (eww-render): Set new variables. Don't set eww-top-url.
4492 (eww-handle-link): Handle "prev", "home", and "contents".
4493 Downcase the rel text.
4494 (eww-top-url): Choose best top URL.
4495
44962013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4497
4498 * net/eww.el: Rewrite to implement form elements "by hand" instead of
4499 relying in widget.el. Using widget.el leads to too many
4500 user interface inconsistencies.
4501 (eww-self-insert): Implement entering commands in text fields.
4502 (eww-process-text-input): New function to make text input field editing
4503 work.
4504 (eww-submit): Rewrite to use the new-style form methods.
4505 (eww-select-display): Display the correct selected item.
4506 (eww-change-select): Implement changing the select value.
4507 (eww-toggle-checkbox): Implement radio/checkboxes.
4508 (eww-update-field): Fix compilation error.
4509 (eww-tag-textarea): Implement <textarea>.
4510
4511 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
4512 we don't shadow mode-specific bindings.
4513
4514 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
4515 nothing to push.
4516
4517 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
4518
4582a01c 45192013-06-19 Glenn Morris <rgm@gnu.org>
3db52056
GM
4520
4521 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
4522
15b263dc
MA
45232013-06-19 Michael Albinus <michael.albinus@gmx.de>
4524
4525 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
4526 not needed.
4527
4528 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
4529
8f5297f7
LMI
45302013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4531
4532 * net/browse-url.el (browse-url-browser-function):
4533 `eww-browse-url' has the right calling signature, `eww' does not.
4534
011c4552
GM
45352013-06-19 Glenn Morris <rgm@gnu.org>
4536
2285bd27
GM
4537 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
4538 Only eval autoloaded macros.
4539 (byte-compile-autoload): Only give the macro warning for macros.
4540
1d653303
GM
4541 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
4542 (ps-underlined-faces): Declare.
4543
bdd779ec
GM
4544 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
4545 (speedbar-add-supported-extension): Declare.
4546
011c4552
GM
4547 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
4548 Don't include a date stamp in the header of the generated file;
4549 it leads to needless differences between output files.
4550
e59dfb0e
MA
45512013-06-19 Michael Albinus <michael.albinus@gmx.de>
4552
c763842b
SM
4553 * net/secrets.el (secrets-struct-secret-content-type):
4554 Replace check of introspection data by a test call of "CreateItem".
fd846ab4 4555 Some servers do not offer introspection.
e59dfb0e 4556
102626e2
SM
45572013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
4558
4559 * electric.el (electric-pair-mode): Improve interaction with
4560 electric-layout-mode.
4561 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
4562 (electric-pair-syntax): Use text-mode-syntax-table in comments
4563 and strings.
4564 (electric-pair--insert): New function.
4565 (electric-pair-post-self-insert-function): Use it and
4566 electric--after-char-pos.
4567
ad528125
LL
45682013-06-19 Leo Liu <sdl.web@gmail.com>
4569
4570 * progmodes/octave.el (octave-help): Fix regexp.
4571
924d6997
G
45722013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
4573
4574 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
4575 (shr-table-horizontal-line): Allow nil as a value, and change the
4576 default.
4577 (shr-insert-table-ruler): Respect the nil value.
4578
45792013-06-18 Tom Tromey <tromey@barimba>
4580
4581 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
4582 New defvars.
4583 (eww-open-file): New defun.
4584 (eww-render): Initialize new variables.
4585 (eww-display-html): Handle "link" and "a".
4586 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
4587 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
4588 (eww-back-url): Rename from eww-previous-url.
102626e2
SM
4589 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
4590 New defuns.
924d6997 4591
d1bbba4f
DG
45922013-06-18 Dmitry Gutov <dgutov@yandex.ru>
4593
4594 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
4595 Distinguish ternary operator tokens from slash symbol and slash
4596 char literal.
4597
14dd22d2
JB
45982013-06-18 Juanma Barranquero <lekktu@gmail.com>
4599
4600 Convert symbol prettification into minor mode and global minor mode.
4601
4602 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
4603 `prog-prettify-symbols', and make a local defvar instead of defcustom.
4604 (prettify-symbols--keywords): Rename from
4605 `prog-prettify-symbols-alist' and make a local defvar.
4606 (prettify-symbols--compose-symbol): Rename from
4607 `prog--prettify-font-lock-compose-symbol'.
4608 (prettify-symbols--make-keywords): Rename from
4609 `prog-prettify-font-lock-symbols-keywords' and simplify.
4610 (prog-prettify-install): Remove.
4611 (prettify-symbols-mode): New minor mode, based on
4612 `prog-prettify-install'.
4613 (turn-on-prettify-symbols-mode): New function.
4614 (global-prettify-symbols-mode): New globalized minor mode.
4615
4616 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4617 * progmodes/cfengine.el (cfengine3-mode):
4618 * progmodes/perl-mode.el (perl-mode): Don't call
4619 `prog-prettify-install'; set `prettify-symbols-alist' instead.
4620
292c880c
JL
46212013-06-18 Juri Linkov <juri@jurta.org>
4622
4623 * files-x.el (modify-file-local-variable-message): New function.
4624 (modify-file-local-variable)
4625 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
4626 and call `modify-file-local-variable-message' when it's non-nil.
4627 (add-file-local-variable, delete-file-local-variable)
4628 (add-file-local-variable-prop-line)
4629 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
4630 and use it. (Bug#9820)
4631
0950aa27
JL
46322013-06-18 Juri Linkov <juri@jurta.org>
4633
4634 * emulation/vi.el (vi-shell-op):
4635 * emulation/vip.el (vip-execute-com, ex-command):
4636 * emulation/viper-cmd.el (viper-exec-bang):
4637 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
4638 the call of `shell-command-on-region'. (Bug#14637)
4639
4640 * simple.el (shell-command-on-region): Doc fix.
4641
8fbcca16
SM
46422013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4643
4644 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
4645 (bug#14633).
4646
dd7426ea
GM
46472013-06-18 Glenn Morris <rgm@gnu.org>
4648
4ba54f7d
GM
4649 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
4650
dd7426ea
GM
4651 * newcomment.el (comment-search-forward, comment-search-backward):
4652 Doc fix. (Bug#14376)
4653
58aa805b
JB
46542013-06-18 Juanma Barranquero <lekktu@gmail.com>
4655
4656 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
4657 (buffer-face-mode-invoke): Doc fix.
4658
9a08a617
MM
46592013-06-18 Matthias Meulien <orontee@gmail.com>
4660
4661 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
924494f4 4662 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
9a08a617 4663
f2f426ca
GM
46642013-06-18 Glenn Morris <rgm@gnu.org>
4665
9445f99b
GM
4666 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
4667 Replace obsolete function generic-make-keywords with its expansion.
4668
e0df2d14
GM
4669 * progmodes/python.el (ffap-alist): Declare.
4670
f2f426ca
GM
4671 * textmodes/reftex.el (bibtex-mode-map): Declare.
4672
f7f9a720
SM
46732013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4674
4675 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
4676 (package-unpack, package-unpack-single): Return the pkg-dir.
4677 (package-download-transaction): Use it to update package-alist.
4678
57ff04e0
LMI
46792013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4680
4681 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
4682 possible choice.
4683
c048c022
JL
46842013-06-17 Juri Linkov <juri@jurta.org>
4685
4686 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
4687
b5bcaee5
DG
46882013-06-17 Dmitry Gutov <dgutov@yandex.ru>
4689
a020afb9
JB
4690 * emacs-lisp/package.el (package-load-descriptor):
4691 Remove `with-syntax-table' call, `read' doesn't need it.
b5bcaee5
DG
4692 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
4693
551e07e5
JB
46942013-06-17 Juanma Barranquero <lekktu@gmail.com>
4695
4696 * startup.el (command-line): Expand package name returned by
4697 `package--description-file' (bug#14639).
4698
d363bffb
DG
46992013-06-17 Dmitry Gutov <dgutov@yandex.ru>
4700
4701 * emacs-lisp/package.el (package-load-descriptor): Do not call
4702 `emacs-lisp-mode', just use its syntax table.
4703
f612933b
JB
47042013-06-17 Juanma Barranquero <lekktu@gmail.com>
4705
4706 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
4707 `font-lock-extra-managed-props' if any prettifying keyword is added.
4708 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
4709 (prog-mode): Use `setq-local'.
4710
db3b7db5
SM
47112013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
4712
4713 * international/characters.el (standard-case-table): Set syntax of ?»
4714 and ?« to punctuation.
4715
f3d674df
JB
47162013-06-16 Juanma Barranquero <lekktu@gmail.com>
4717
4718 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
4719 Save relevant match data before calling `syntax-ppss' (bug#14595).
4720
31489a32
JL
47212013-06-15 Juri Linkov <juri@jurta.org>
4722
4723 * files-x.el (modify-file-local-variable-prop-line): Add local
4724 variables to the end of the existing comment on the first line.
4725 Use `file-auto-mode-skip' to skip interpreter magic line,
4726 and also skip XML declaration.
4727
66bd25ab
SM
47282013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
4729
4730 * startup.el (package--builtin-versions): New var.
4731 (package-subdirectory-regexp): Remove.
4732 (package--description-file): Hard code its value instead.
4733
4734 * emacs-lisp/package.el: Don't activate packages older than builtin.
4735 (package-obsolete-list): Rename from package-obsolete-alist, and make
4736 it into a simple list of package-desc.
4737 (package-strip-version): Remove.
4738 (package-built-in-p): Use package--builtin-versions.
4739 (package-mark-obsolete): Simplify.
4740 (package-process-define-package): Mark it obsolete if older than the
4741 builtin version.
4742 (package-handle-response): Use line-end-position.
4743 (package-read-archive-contents, package--download-one-archive):
4744 Simplify.
4745 (package--add-to-archive-contents): Skip if older than the builtin or
4746 installed version.
4747 (package-menu-describe-package): Fix last change.
4748 (package-list-unversioned): New var.
4749 (package-menu--generate): Use it.
4750
4751 * emacs-lisp/autoload.el: Manage package--builtin-versions.
4752 (autoload--insert-text, autoload--insert-cookie-text): New functions.
4753 (autoload-builtin-package-versions): New variable.
4754 (autoload-generate-file-autoloads): Use them.
4755 Remove the list of autoloaded functions/macros from the
4756 (autoload...) comments.
4757
4758 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
4759
9583ec36
EZ
47602013-06-15 Eli Zaretskii <eliz@gnu.org>
4761
4762 * simple.el (line-move-partial): Don't jump to the next screen
4763 line as soon as it becomes visible. Instead, continue enlarging
4764 the vscroll until the portion of a tall screen line that's left on
4765 display is about the height of the frame's default font.
4766 (Bug#14567)
4767
f0100d8a
GM
47682013-06-15 Glenn Morris <rgm@gnu.org>
4769
b86a85ca
GM
4770 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
4771 compilation-error-regexp-alist void, or local while let-bound.
4772
f0100d8a
GM
4773 * progmodes/make-mode.el (makefile-mode-syntax-table):
4774 Treat "=" as punctuation. (Bug#14614)
4775
05e7ce90
JB
47762013-06-15 Juanma Barranquero <lekktu@gmail.com>
4777
4778 * help-fns.el (describe-variable):
4779 Add extra line for permanent-local variables.
4780
12e5e86e
SH
47812013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
4782
4783 * progmodes/scheme.el (scheme-font-lock-keywords-2):
4784 Add export, import, library. (Bug#9164)
4785 (library): Set indent function.
4786
230dcbaf
GM
47872013-06-14 Glenn Morris <rgm@gnu.org>
4788
4789 * term/xterm.el (xterm--query):
4790 Stop after first matching handler. (Bug#14615)
4791
e36b2d20 47922013-06-14 Ivan Kanis <ivan@kanis.fr>
d4466a91
IK
4793
4794 Add support for dired in saveplace.
4795 * dired.el (dired-initial-position-hook): New variable.
4796 (dired-initial-position): Call hook to place cursor position.
4797 * saveplace.el (save-place-to-alist): Add dired position.
4798 (save-place-dired-hook): New function.
4799
0b31660d
SM
48002013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
4801
bf1e6ae8
SM
4802 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
4803 through a symbol rather than letrec.
4804
1b8dff23
SM
4805 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
4806 (package-desc): Add `dir' field.
4807 (package-desc-full-name): New function.
4808 (package-load-descriptor): Combine the two arguments. Don't use `load'.
4809 (package-maybe-load-descriptor): Remove.
4810 (package-load-all-descriptors): Just call package-load-descriptor.
4811 (package--disabled-p): New function.
4812 (package-desc-vers, package-desc-doc): Remove aliases.
4813 (package--dir): Remove function.
4814 (package-activate): Check if a package is disabled.
4815 (package-process-define-package): New function, extracted from
4816 define-package.
4817 (define-package): Turn into a place holder.
4818 (package-unpack-single, package-tar-file-info):
4819 Use package--description-file.
4820 (package-compute-transaction): Use package--disabled-p.
4821 (package-download-transaction): Don't call
4822 package-maybe-load-descriptor since they're all loaded anyway.
4823 (package-install): Change argument to be a pkg-desc.
4824 (package-delete): Use a single pkg-desc argument.
4825 (describe-package-1): Use package-desc-dir instead of package--dir.
4826 Use package-desc property instead of package-symbol.
4827 (package-install-button-action): Adjust accordingly.
4828 (package--push): Rewrite.
4829 (package-menu--print-info): Adjust accordingly. Change the ID format
4830 to be a pkg-desc.
4831 (package-menu-describe-package, package-menu-get-status)
4832 (package-menu--find-upgrades, package-menu-mark-upgrades)
4833 (package-menu-execute, package-menu--name-predicate):
4834 Adjust accordingly.
4835 * startup.el (package--description-file): New function.
4836 (command-line): Use it.
4837 * emacs-lisp/package-x.el (package-upload-buffer-internal):
4838 Use package-desc-version.
4839
0b31660d
SM
4840 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
4841 (byte-compile-preprocess): Use it.
4842 (byte-compile-file-form-defalias): Try a bit harder to use macros we
4843 can't quite recognize.
4844 (byte-compile-add-to-list): Remove.
4845 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
4846 (cconv-closure-convert): Add assertion.
4847
4848 * emacs-lisp/map-ynp.el: Use lexical-binding.
4849 (map-y-or-n-p): Remove unused vars `tail' and `object'.
4850 Factor out some repeated code.
4851
de0503df
SM
48522013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
4853
4854 * subr.el (with-eval-after-load): New macro.
4855 (eval-after-load): Allow form to be a function.
4856 take advantage of lexical-binding.
4857 (do-after-load-evaluation): Use dolist and adjust to new format.
4858 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
4859
bc5c8c5a
JL
48602013-06-13 Juri Linkov <juri@jurta.org>
4861
4862 * replace.el (perform-replace): Display "symbol " and other search
4863 modes from `isearch-message-prefix' in the *Help* buffer.
4864
4865 * isearch.el (isearch-query-replace): Add " symbol" and other
4866 possible search modes from `isearch-message-prefix' to the prompt.
4867 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
4868 when reading a regexp to collect.
4869
a22289f7
JL
48702013-06-13 Juri Linkov <juri@jurta.org>
4871
4872 * isearch.el (word-search-regexp): Match whitespace if the search
4873 string begins or ends in whitespace. The LAX arg is applied to
4874 both ends of the search string. Use `regexp-quote' and explicit
4875 \< and \> instead of \b. Use \` and \' instead of ^ and $.
4876 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
4877 boundaries are replaced with symbol boundaries, and characters
4878 between symbols match non-word non-symbol syntax. (Bug#14602)
4879
cb89acab
JL
48802013-06-13 Juri Linkov <juri@jurta.org>
4881
4882 * isearch.el (isearch-del-char): Don't exceed the length of
4883 `isearch-string' by the prefix arg. (Bug#14563)
4884
6e8cfc81
JL
48852013-06-13 Juri Linkov <juri@jurta.org>
4886
4887 * isearch.el (isearch-yank-word, isearch-yank-line)
4888 (isearch-char-by-name, isearch-quote-char)
4889 (isearch-printing-char, isearch-process-search-char):
4890 Add optional count prefix arg. (Bug#14563)
4891
4892 * international/isearch-x.el
4893 (isearch-process-search-multibyte-characters):
4894 Add optional count prefix arg.
4895
c23d55f4
VS
48962013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
4897
4898 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
4899 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
4900 lexical-binding.
4901
49022013-06-13 Vitalie Spinu <spinuvit@gmail.com>
4903
4904 * subr.el (set-temporary-overlay-map): Add on-exit argument.
4905
ba947bc4
GM
49062013-06-13 Glenn Morris <rgm@gnu.org>
4907
8baeb37a
GM
4908 * startup.el (tty-handle-args):
4909 Don't just discard "--" and anything after. (Bug#14608)
4910
ba947bc4
GM
4911 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
4912
9abefce4
MA
49132013-06-13 Michael Albinus <michael.albinus@gmx.de>
4914
4915 Implement changes in Secret Service API. Make it backward compatible.
4916 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
4917 (secrets-create-item): Use it. Prefix properties with interface.
4918
5755011f
MH
49192013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
4920
4921 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
4922 (term-emulate-terminal): Respect term-suppress-hard-newline.
4923
1261d2da
S
49242013-06-13 E Sabof <esabof@gmail.com> (tiny change)
4925
4926 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
4927 Only remove a `thumb-file' overlay. (Bug#14548)
4928
868490bb
GJ
49292013-06-12 Grégoire Jadi <daimrod@gmail.com>
4930
4931 * mail/reporter.el (reporter-submit-bug-report):
4932 Handle missing package-name. (Bug#14600)
4933
79d7167f
TH
49342013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
4935
4936 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
4937 (reftex-citation-prompt, reftex-default-bibliography)
4938 (reftex-bib-or-thebib, reftex-get-bibfile-list)
4939 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
4940 (reftex-bib-sort-author, reftex-bib-sort-year)
4941 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
4942 (reftex-extract-bib-entries-from-thebibliography)
4943 (reftex-get-bibkey-default, reftex-get-bib-names)
4944 (reftex-parse-bibtex-entry, reftex-get-bib-field)
4945 (reftex-format-bib-entry, reftex-parse-bibitem)
4946 (reftex-format-bibitem, reftex-do-citation)
4947 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
4948 (reftex-restrict-bib-matches, reftex-extract-bib-file)
4949 (reftex-insert-bib-matches, reftex-format-citation)
4950 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
4951 (reftex-create-bibtex-file): Add docstrings, mostly by converting
4952 existing comments into docstrings.
4953
5f9dbd7a
XF
49542013-06-12 Xue Fuqiao <xfq.free@gmail.com>
4955
4956 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
4957
94df41ab
AS
49582013-06-12 Andreas Schwab <schwab@suse.de>
4959
4960 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
4961 for auto-save files.
4962
a7f3fecc
GM
49632013-06-12 Glenn Morris <rgm@gnu.org>
4964
001809f6
GM
4965 * ido.el (ido-delete-ignored-files): Remove.
4966 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
4967 Go back to calling ido-ignore-item-p directly.
a7f3fecc 4968
834b5ded
EL
49692013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
4970
08c73ed2
EL
4971 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
4972
834b5ded
EL
4973 * ido.el (ido-delete-ignored-files): New function,
4974 split from ido-make-file-list-1.
4975 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
4976 (ido-make-file-list-1): Use ido-delete-ignored-files.
4977
daabf15a
LL
49782013-06-12 Leo Liu <sdl.web@gmail.com>
4979
4980 * progmodes/octave.el (inferior-octave-startup)
4981 (inferior-octave-completion-table)
4982 (inferior-octave-track-window-width-change)
4983 (octave-eldoc-function-signatures, octave-help)
4984 (octave-find-definition): Use single quoted strings.
4985 (inferior-octave-startup-args): Change default value.
4986 (inferior-octave-startup): Do not hard code "-i" and
4987 "--no-line-editing".
4988 (inferior-octave-resync-dirs): Add optional arg NOERROR.
4989 (inferior-octave-directory-tracker): Use it.
4990 (octave-goto-function-definition): Robustify.
4991 (octave-help): Support highlighting operators in 'See also'.
4992 (octave-find-definition): Find subfunctions only in Octave mode.
4993
cf4e5178
SM
49942013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4995
4996 * help-fns.el (help-fns--compiler-macro): If the handler function is
4997 named, then put a link to it.
4998 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
4999 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
5000 (cl-typep): Use it.
5001 (cl-eval-when): Simplify debug spec.
5002 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
5003 compiler-macro function instead of setting `compiler-macro-file'.
5004
99c81280 50052013-06-12 Xue Fuqiao <xfq.free@gmail.com>
cd0527a4
XF
5006
5007 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
5008 * vc/vc-hooks.el (vc-stay-local): Doc fix.
5009
f56be016
SM
50102013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
5011 Daniel Hackney <dan@haxney.org>
5012
5013 First part of Daniel Hackney's patch to package.el.
5014 * emacs-lisp/package.el: Use defstruct.
5015 (package-desc): New, main struct.
5016 (package--bi-desc, package--ac-desc): New structs, used to describe the
5017 format in external files.
5018 (package-desc-vers): Replace with package-desc-version accessor.
5019 (package-desc-doc): Replace with package-desc-summary accessor.
5020 (package-activate-1): Remove `package' arg since the pkg-vec now
5021 includes the name.
5022 (define-package): Use package-desc-from-define.
5023 (package-unpack-single): Change file-name arg to be a symbol.
5024 (package--add-to-archive-contents): Use package-desc-create and new
5025 accessor functions to package--ac-desc.
5026 (package-buffer-info, package-tar-file-info): Return a package-desc.
5027 (package-install-from-buffer): Remove `type' argument. Change pkg-info
5028 arg to be a package-desc.
5029 (package-install-file): Adjust accordingly. Use \' to match EOS.
5030 (package--from-builtin): New function.
5031 (describe-package-1, package-menu--generate): Use it.
5032 (package--make-autoloads-and-compile): Change name arg to be a symbol.
5033 (package-generate-autoloads): Idem and return the name of the file.
5034 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5035 Change pkg-info arg to be a package-desc.
5036 Use package-make-ac-desc.
5037 (package-upload-file): Use \' to match EOS.
5038 * finder.el (finder-compile-keywords): Use package-make-builtin.
5039
31119d63
SM
50402013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5041
931a2762
SM
5042 * vc/vc.el (vc-deduce-fileset): Change error message.
5043 (vc-read-backend): New function.
5044 (vc-next-action): Use it.
5045
5a3eb0c6
SM
5046 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
5047
e3eb1bb7
SM
5048 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
5049 (prolog-font-lock-keywords): Use regexp-opt instead.
5050 Don't manually highlight strings.
5051 (prolog-mode-variables): Simplify comment-start-skip.
5052 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
5053
31119d63
SM
5054 * emacs-lisp/generic.el (generic--normalise-comments)
5055 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
5056 (generic-mode-set-comments): Use them.
5057 (generic-bracket-support): Use setq-local.
5058 (generic-make-keywords-list): Declare obsolete.
5059
7de135d0
GM
50602013-06-11 Glenn Morris <rgm@gnu.org>
5061
5062 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5063 Prettify after setting font-lock-defaults. (Bug#14574)
5064
fa6bc6fd
JB
50652013-06-11 Juanma Barranquero <lekktu@gmail.com>
5066
5067 * replace.el (query-replace, occur-read-regexp-defaults-function)
5068 (replace-search):
5069 * subr.el (declare-function, number-sequence, local-set-key)
5070 (substitute-key-definition, locate-user-emacs-file)
5071 (with-silent-modifications, split-string, eval-after-load):
5072 Fix typos, remove unneeded backslashes and reflow some docstrings.
5073
cf1f9b9a
SM
50742013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5075
5076 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
5077 default for Elisp files.
5078
56602a4b
GM
50792013-06-11 Glenn Morris <rgm@gnu.org>
5080
5081 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
5082 although define-derived-mode was doing this anyway. (Bug#14583)
5083
30ae0b2c
JB
50842013-06-10 Juanma Barranquero <lekktu@gmail.com>
5085
5086 * allout.el (allout-encryption-plaintext-sanitization-regexps):
5087 Fix make-variable-buffer-local call to refer to the correct variable.
5088
fa472906
AG
50892013-06-10 Aidan Gauland <aidalgol@amuri.net>
5090
5091 * eshell/em-term.el (eshell-visual-commands)
e7b41c4c
JB
5092 (eshell-visual-subcommands, eshell-visual-options):
5093 Add summary line to docstrings. Add cross-references.
fa472906 5094
ff4871b9
GM
50952013-06-10 Glenn Morris <rgm@gnu.org>
5096
5097 * epa.el (epa-read-file-name): New function. (Bug#14510)
5098 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
5099
04fcf1b0
AG
51002013-06-09 Aidan Gauland <aidalgol@amuri.net>
5101
5102 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
5103 output redirection to be ignored with visual commands.
5104
88b00caa
AG
51052013-06-09 Aidan Gauland <aidalgol@amuri.net>
5106
5107 * eshell/em-term.el (eshell-visual-command-p): New function.
f71b3317
AG
5108 (eshell-term-initialize): Move long lambda to separate function
5109 eshell-visual-command-p.
e7b41c4c
JB
5110 * eshell/em-dirs.el (eshell-dirs-initialise):
5111 * eshell/em-script.el (eshell-script-initialize):
5112 Add missing #' to lambda.
88b00caa 5113
fda74125
LL
51142013-06-08 Leo Liu <sdl.web@gmail.com>
5115
5116 * progmodes/octave.el (octave-add-log-current-defun): New function.
5117 (octave-mode): Set add-log-current-defun-function.
5118 (octave-goto-function-definition): Do not move point if not found.
5119 (octave-find-definition): Enhance to try subfunctions first.
5120
467f3b33
GM
51212013-06-08 Glenn Morris <rgm@gnu.org>
5122
5123 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5124 (byte-compile-backward-char, byte-compile-backward-word):
5125 Improve previous change, to handle non-explicit nil.
5126
544badc3
SM
51272013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
5128
5129 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
5130 (smie--opener/closer-at-point): New function.
5131 (smie--matching-block-data): Use it. Don't match from right after an
5132 opener or right before a closer. Obey smie-blink-matching-inners.
5133 Don't signal a mismatch for repeated inners like "switch..case..case".
5134
a175bf33
LL
51352013-06-07 Leo Liu <sdl.web@gmail.com>
5136
5137 * progmodes/octave.el (octave-mode): Set comment-use-global-state
5138 to t. (Bug#14303)
ce8209d4
LL
5139 (octave-function-header-regexp): Fix. (Bug#14570)
5140 (octave-help-mode-finish-hook, octave-help-mode-finish):
5141 Remove. Just use temp-buffer-show-hook.
a175bf33
LL
5142
5143 * newcomment.el (comment-search-backward): Revert last change.
5144 (Bug#14434)
5145
5146 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
5147
a822acff
EZ
51482013-06-07 Eli Zaretskii <eliz@gnu.org>
5149
5150 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
5151 through xargs, to avoid failure due to MS-Windows limitations on
5152 command-line length.
5153
961166f5
GM
51542013-06-06 Glenn Morris <rgm@gnu.org>
5155
d0341459
GM
5156 * font-lock.el (lisp-font-lock-keywords-2):
5157 Treat user-error like error.
5158
961166f5
GM
5159 * emacs-lisp/bytecomp.el (byte-compile-char-before)
5160 (byte-compile-backward-char, byte-compile-backward-word):
5161 Handle explicit nil arguments. (Bug#14565)
5162
80fa505f
AM
51632013-06-05 Alan Mackenzie <acm@muc.de>
5164
5165 * isearch.el (isearch-allow-prefix): New user option.
d2bf7a98 5166 (isearch-other-meta-char): Don't exit isearch when a prefix
80fa505f 5167 argument is typed whilst `isearch-allow-prefix' is non-nil.
d2bf7a98 5168 (Bug#9706)
80fa505f 5169
fccdc796
SM
51702013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5171
5172 * autorevert.el (auto-revert-notify-handler): Use memq.
5173 Hide assertion failure.
5174
5175 * skeleton.el: Use cl-lib.
5176 (skeleton-further-elements): Use defvar-local.
5177 (skeleton-insert): Use cl-progv.
5178
9bfff84b
TZ
51792013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5180
5181 * progmodes/prog-mode.el (prog-prettify-symbols)
5182 (prog-prettify-install): Update docstrings.
5183
55577e7c
SM
51842013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5185
5186 * simple.el: Move all the prog-mode code to prog-mode.el.
5187 * progmodes/prog-mode.el: New file.
5188 * loadup.el: Add prog-mode.el.
5189
8fc57765
TZ
51902013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5191
5192 * simple.el (prog-prettify-symbols): Add version.
5193 (prog-prettify-install): Add convenience function to prettify symbols.
5194
5195 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
5196 (perl--augmented-font-lock-keywords-1)
5197 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
5198 variables and use it.
5199
5200 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
5201 (cfengine3-mode): Remove unneeded variable and use it.
5202
5203 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
5204 (lisp--augmented-font-lock-keywords-1)
5205 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
5206 Remove unneeded variables and use it.
5207
650645d5 52082013-06-05 João Távora <joaotavora@gmail.com>
28f5da6d
TZ
5209
5210 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
650645d5 5211 to point when opening the connection. (Bug#14380)
28f5da6d 5212
781b4af6
SM
52132013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5214
5215 * subr.el (load-history-regexp, load-history-filename-element)
5216 (eval-after-load, after-load-functions, do-after-load-evaluation)
5217 (eval-next-after-load, display-delayed-warnings)
5218 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
5219 definition of save-match-data.
5220 (overriding-local-map): Remove accidental obsolescence declaration.
5221
5222 * emacs-lisp/edebug.el (edebug-result): Move before first use.
5223
3ca0d0b4
TZ
52242013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
5225
5226 Generalize symbol prettify support to prog-mode and implement it
5227 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
5228 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
5229 (prog--prettify-font-lock-compose-symbol)
5230 (prog-prettify-font-lock-symbols-keywords): New variables and
5231 functions to support symbol prettification.
5232 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
5233 (lisp--augmented-font-lock-keywords-1)
5234 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
5235 (lisp--prettify-symbols-alist): Implement prettify of lambda.
5236 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
781b4af6
SM
5237 (cfengine3--prettify-symbols-alist, cfengine3-mode):
5238 Implement prettify of -> => :: strings.
3ca0d0b4
TZ
5239 * progmodes/perl-mode.el (perl-prettify-symbols)
5240 (perl--font-lock-compose-symbol)
5241 (perl--font-lock-symbols-keywords): Move to prog-mode.
5242 (perl--prettify-symbols-alist): Prettify -> => :: strings.
5243 (perl-font-lock-keywords-1)
5244 (perl-font-lock-keywords-2): Remove explicit prettify support.
5245 (perl--augmented-font-lock-keywords)
5246 (perl--augmented-font-lock-keywords-1)
781b4af6
SM
5247 (perl--augmented-font-lock-keywords-2, perl-mode):
5248 Implement prettify support.
3ca0d0b4 5249
976cb066
LL
52502013-06-05 Leo Liu <sdl.web@gmail.com>
5251
5252 Re-implement smie matching block highlight using
5253 show-paren-data-function. (Bug#14395)
5254 * emacs-lisp/smie.el (smie-matching-block-highlight)
5255 (smie--highlight-matching-block-overlay)
5256 (smie--highlight-matching-block-lastpos)
5257 (smie-highlight-matching-block)
5258 (smie-highlight-matching-block-mode): Remove.
5259 (smie--matching-block-data-cache): New variable.
5260 (smie--matching-block-data): New function.
5261 (smie-setup): Use smie--matching-block-data for
5262 show-paren-data-function.
5263
5264 * progmodes/octave.el (octave-mode-menu): Fix.
5265 (octave-find-definition): Skip garbage lines.
5266
208d0342
SM
52672013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
5268
5269 Fix compilation error with simultaneous dynamic+lexical scoping.
5270 Add warning when a defvar appears after the first let-binding.
5271 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
5272 (byte-compile-close-variables): Initialize it.
5273 (byte-compile--declare-var): New function.
5274 (byte-compile-file-form-defvar)
5275 (byte-compile-file-form-define-abbrev-table)
5276 (byte-compile-file-form-custom-declare-variable): Use it.
5277 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
5278 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
5279 (byte-compile-bind): Handle dynamic bindings that shadow
5280 lexical bindings.
5281 (byte-compile-unbind): Make arg non-optional.
5282 (byte-compile-let): Simplify.
5283 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
5284 (cconv--analyse-function, cconv-analyse-form): Populate it.
5285 Protect byte-compile-bound-variables to limit the scope of defvars.
5286 (cconv-analyse-form): Add missing rule for (defvar <foo>).
5287 Remove unneeded rule for `declare'.
5288
5289 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
5290 so as to avoid depending on cl-adjoin at run-time.
5291 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
5292
5293 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
5294 (macroexp--warn-and-return): Use it.
5295
2587b005
LL
52962013-06-05 Leo Liu <sdl.web@gmail.com>
5297
5298 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
5299
f1da3c88
LL
53002013-06-04 Leo Liu <sdl.web@gmail.com>
5301
5302 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
5303 (compilation-auto-jump): Suppress the "Mark set" message to give
5304 way to exit message.
5305
3caa391f
AM
53062013-06-04 Alan Mackenzie <acm@muc.de>
5307
5308 Remove faulty optimisation from indentation calculation.
5309 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
5310 search limit based on 2000 characters back from indent-point.
5311
068922a2
TH
53122013-06-03 Tassilo Horn <tsdh@gnu.org>
5313
5314 * eshell/em-term.el (cl-lib): Require `cl-lib'.
5315
1f8fdd53
SM
53162013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
5317
bbcc4d97
SM
5318 * emacs-lisp/lisp.el: Use lexical-binding.
5319 (lisp--local-variables-1, lisp--local-variables): New functions.
5320 (lisp--local-variables-completion-table): New var.
208d0342 5321 (lisp-completion-at-point): Use it complete let-bound vars.
bbcc4d97 5322
1f8fdd53
SM
5323 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
5324 eagerly (bug#14422).
5325
c9628c79
MA
53262013-06-03 Michael Albinus <michael.albinus@gmx.de>
5327
5328 * autorevert.el (auto-revert-notify-enabled)
5329 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
5330 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
5331 (auto-revert-notify-handler): Handle also gfilenotify.
5332
e7b41c4c 5333 * subr.el (file-notify-handle-event): New defun. Replacing ...
c9628c79 5334 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
781b4af6 5335 Remove.
c9628c79 5336
e5e4a942
JL
53372013-06-03 Juri Linkov <juri@jurta.org>
5338
5339 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
5340 `M-s h .'. (Bug#14427)
5341
5342 * hi-lock.el (highlight-symbol-at-point): New alias for the new
5343 command `hi-lock-face-symbol-at-point'.
5344 (hi-lock-face-symbol-at-point): New command.
5345 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
5346 (hi-lock-menu): Add `highlight-symbol-at-point'.
5347 (hi-lock-mode): Doc fix.
5348
5349 * isearch.el (isearch-forward-symbol-at-point): New command.
5350 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
5351 (isearch-highlight-regexp): Add a regexp which matches
5352 words/symbols for word/symbol mode.
5353
5354 * subr.el (find-tag-default-bounds): New function with the body
5355 mostly moved from `find-tag-default'.
5356 (find-tag-default): Move most code to `find-tag-default-bounds',
5357 call it and apply `buffer-substring-no-properties' afterwards.
5358
26b3353a
TH
53592013-06-03 Tassilo Horn <tsdh@gnu.org>
5360
781b4af6
SM
5361 * eshell/em-term.el (eshell-term-initialize):
5362 Use `cl-intersection' rather than `intersection'.
26b3353a 5363
51b60f53
XF
53642013-06-02 Xue Fuqiao <xfq.free@gmail.com>
5365
fe054b63 5366 * vc/log-view.el: Doc fix.
d3ffe17c 5367 (log-view-mode-map): Copy keymap from `special-mode-map'.
51b60f53 5368
a0eb10b3 53692013-06-02 Eric Ludlam <zappo@gnu.org>
890f7890
DE
5370
5371 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
5372 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
5373 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
5374 (eieio-unbound, eieio-default-superclass)
5375 (eieio--define-field-accessors, method-static, method-before)
5376 (method-primary, method-after, method-num-lists)
5377 (method-generic-before, method-generic-primary)
5378 (method-generic-after, method-num-slots)
5379 (eieio-specialized-key-to-generic-key)
5380 (eieio--check-type, class-v, class-p)
5381 (eieio-class-name, define-obsolete-function-alias)
5382 (eieio-class-parents-fast, eieio-class-children-fast)
5383 (same-class-fast-p, class-constructor, generic-p)
5384 (generic-primary-only-p, generic-primary-only-one-p)
5385 (class-option-assoc, class-option, eieio-object-p)
5386 (class-abstract-p, class-method-invocation-order)
5387 (eieio-defclass-autoload-map, eieio-defclass-autoload)
5388 (eieio-class-un-autoload, eieio-defclass)
5389 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
5390 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
5391 (eieio--defgeneric-init-form, eieio-defgeneric-form)
5392 (eieio-defgeneric-reset-generic-form)
5393 (eieio-defgeneric-form-primary-only)
5394 (eieio-defgeneric-reset-generic-form-primary-only)
5395 (eieio-defgeneric-form-primary-only-one)
5396 (eieio-defgeneric-reset-generic-form-primary-only-one)
5397 (eieio-unbind-method-implementations)
5398 (eieio--defmethod, eieio--typep)
5399 (eieio-perform-slot-validation, eieio-validate-slot-value)
5400 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
5401 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
5402 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
5403 (eieio-slot-name-index, eieio-class-slot-name-index)
5404 (eieio-set-defaults, eieio-initarg-to-attribute)
5405 (eieio-attribute-to-initarg, eieio-c3-candidate)
5406 (eieio-c3-merge-lists, eieio-class-precedence-c3)
5407 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
5408 (eieio-class-precedence-list, eieio-generic-call-methodname)
5409 (eieio-generic-call-arglst, eieio-generic-call-key)
5410 (eieio-generic-call-next-method-list)
5411 (eieio-pre-method-execution-functions, eieio-generic-call)
5412 (eieio-generic-call-primary-only, eieiomt-method-list)
5413 (eieiomt-optimizing-obarray, eieiomt-install)
5414 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
5415 (eieio-generic-form, eieio-defmethod, make-obsolete)
4f405069 5416 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
890f7890
DE
5417 (defclass): Remove `eval-and-compile' from macro.
5418 (call-next-method, shared-initialize): Instead of using
5419 `scoped-class' variable, use new eieio--scoped-class, and
5420 eieio--with-scoped-class.
5421 (initialize-instance): Rename local variable 'scoped-class' to
5422 'this-class' to remove ambiguitity from old global.
5423
5424 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
5425 eieio.el.
4f405069
JB
5426 (eieio--scoped-class-stack): New variable.
5427 (eieio--scoped-class): New fcn.
890f7890
DE
5428 (eieio--with-scoped-class): New scoping macro.
5429 (eieio-defclass): Use pushnew instead of add-to-list.
5430 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
5431 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
5432 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
5433 `scoped-class' variable, use new eieio--scoped-class, and
5434 eieio--with-scoped-class.
5435
5436 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
5437
d105b0e2
TH
54382013-06-02 Tassilo Horn <tsdh@gnu.org>
5439
5440 * eshell/esh-ext.el (eshell-external-command): Pass args to
5441 `eshell-find-interpreter'.
5442 (eshell-find-interpreter): Add new second parameter ARGS.
5443
5444 * eshell/em-script.el (eshell-script-initialize): Add second arg
e7b41c4c 5445 to the function added as MATCH to `eshell-interpreter-alist'.
d105b0e2
TH
5446
5447 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
e7b41c4c 5448 the function added as MATCH to `eshell-interpreter-alist'.
d105b0e2
TH
5449
5450 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
5451 (eshell-visual-options): New defcustom.
5452 (eshell-escape-control-x): Adapt docstring.
5453 (eshell-term-initialize): Test `eshell-visual-subcommands' and
5454 `eshell-visual-options' in addition to `eshell-visual-commands'.
5455 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
5456
f46305c8 54572013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
f782d531
FEG
5458
5459 * progmodes/python.el (python-indent-block-enders): Add break,
5460 continue and raise keywords.
5461
d870df21
GM
54622013-06-01 Glenn Morris <rgm@gnu.org>
5463
9133b82e
GM
5464 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
5465
02c992ec 5466 Plain (f)boundp silences compilation warnings since Emacs 22.1.
683853b9
GM
5467 * progmodes/cc-cmds.el (delete-forward-p):
5468 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
5469 * progmodes/cc-engine.el (buffer-syntactic-context):
5470 * progmodes/cc-fonts.el (face-property-instance):
5471 * progmodes/cc-mode.el (set-keymap-parents):
5472 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
5473 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
5474 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
02c992ec
GM
5475 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
5476 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
683853b9 5477
31e7b090
GM
5478 * progmodes/cc-vars.el (other): Emacs has this widget since
5479 at least 21.1, so don't (re)define it.
5480
d870df21
GM
5481 * eshell/em-cmpl.el (eshell-cmpl-initialize):
5482 Replace the obsolete alias pcomplete-arg-quote-list.
5483
c75c93c7
LL
54842013-06-01 Leo Liu <sdl.web@gmail.com>
5485
5486 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
5487 punctuation syntax.
5488 (inferior-octave-minimal-columns)
5489 (inferior-octave-last-column-width): New variables.
5490 (inferior-octave-track-window-width-change): New function.
5491 (inferior-octave-mode): Adjust column width so that Octave output,
5492 for example from 'ls', can fit into the window nicely.
5493
973d1e12
DG
54942013-05-31 Dmitry Gutov <dgutov@yandex.ru>
5495
5496 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
5497 Highlight expansions inside regexp literals.
5498
0888c286
GM
54992013-05-31 Glenn Morris <rgm@gnu.org>
5500
e26aac1f
GM
5501 * obsolete/sym-comp.el (symbol-complete):
5502 Replace obsolete completion-annotate-function.
5503
0888c286
GM
5504 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
5505
19bb8e62
DG
55062013-05-31 Dmitry Gutov <dgutov@yandex.ru>
5507
781b4af6
SM
5508 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
5509 New function, checks if point is inside a literal that allows
19bb8e62
DG
5510 expression expansion.
5511 (ruby-syntax-propertize-expansion): Use it.
5512 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
5513 around the body.
5514
01dea85f
JL
55152013-05-30 Juri Linkov <juri@jurta.org>
5516
5517 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
5518 to "\M-si".
5519 (isearch-invisible): New variable.
5520 (isearch-forward): Doc fix.
5521 (isearch-mode): Set `isearch-invisible'
5522 to the value of `search-invisible'.
5523 (isearch-toggle-case-fold): Doc fix.
5524 (isearch-toggle-invisible): New command.
5525 (isearch-query-replace): Let-bind `search-invisible'
5526 to the value of `isearch-invisible'.
5527 (isearch-search): Use `isearch-invisible' instead of
5528 `search-invisible'. Let-bind `search-invisible'
5529 to the value of `isearch-invisible'. (Bug#11378)
5530
ab1bdce5
JL
55312013-05-30 Juri Linkov <juri@jurta.org>
5532
5533 * replace.el (perform-replace): Avoid `isearch-range-invisible'
5534 call when `query-flag' is nil and `search-invisible' is non-nil.
5535 (Bug#11746)
5536
d6d236e2
GM
55372013-05-30 Glenn Morris <rgm@gnu.org>
5538
8accd027
GM
5539 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
5540
2a8bed1c
GM
5541 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
5542 (cc-require): Suppress spurious "noruntime" warnings.
5543 (cc-require-when-compile): Use fboundp, for sake of compiler.
5544
d6d236e2
GM
5545 * progmodes/cc-mode.el: Move load of cc-vars before that of
5546 cc-langs (which in turn loads cc-vars), to quieten compiler.
5547
9190b35b
SM
55482013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5549
5550 * paren.el: Simplify the code.
5551 (show-paren-mode): Always start the timer.
5552 (show-paren--idle-timer): Rename from show-paren-idle-timer.
5553 (show-paren--overlay, show-paren--overlay-1): Rename from
5554 show-paren-overlay and show-paren-overlay-1, and initialize to an
5555 overlay rather than to nil.
5556 (show-paren-function): Misc cleanup and simplifications.
5557
4f8d1cf6
SM
55582013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5559
5560 * paren.el (show-paren-data-function): New hook.
5561 (show-paren--default): New function, extracted from show-paren-function.
5562 (show-paren-function): Use show-paren-data-function.
5563
02d844b5
GM
55642013-05-30 Glenn Morris <rgm@gnu.org>
5565
d209d4a9
GM
5566 * ielm.el (ielm-map, ielm-complete-symbol):
5567 Use completion-at-point rather than obsolete functions.
5568 (inferior-emacs-lisp-mode): Doc fix.
5569 Set completion-at-point-functions, rather than
5570 comint-dynamic-complete-functions.
5571
2082faa6
GM
5572 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
5573 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
5574 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
5575
dd8620de
GM
5576 * image.el (image-animated-p): Tweak definition.
5577
ceca95b1
GM
5578 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
5579 (rlogin-process-connection-type): Tweak default. Add set-after.
5580 (rlogin-host): Doc fix.
5581 (rlogin): Tweak prompt.
5582 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
5583
ee9f1acc
GM
5584 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
5585 * progmodes/tcl.el (inferior-tcl-mode-map):
5586 Use completion-at-point rather than obsolete alias.
5587
45ce222e
GM
5588 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
5589
02d844b5
GM
5590 * minibuffer.el (read-file-name-completion-ignore-case):
5591 Move before completion--in-region, for eager macro expansion.
5592
ac44d6c1
JL
55932013-05-29 Juri Linkov <juri@jurta.org>
5594
5595 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
5596 for total count of matching lines. Add `global-matches' for total
5597 count of matches. Rename `matches' to `lines' for count of
5598 matching lines. Add `matches' for count of matches.
5599 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
5600 to `prev-line' for line number of prev match endpt.
5601 Increment `matches' for every match. Print the number of
5602 matching lines in the header.
5603 (occur-context-lines): Rename `lines' to `curr-line'.
5604 Rename `prev-lines' to `prev-line'. (Bug#14017)
5605
3c9c9d38
JL
56062013-05-29 Juri Linkov <juri@jurta.org>
5607
5608 * replace.el (perform-replace): Add `skip-read-only-count',
5609 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
5610 Increment them for corresponding conditions and report the number
5611 of skipped occurrences in the final message. (Bug#11746)
5612 (query-replace, query-replace-regexp, query-replace-regexp-eval)
5613 (replace-string, replace-regexp): Doc fix.
5614
33e249a2
SM
56152013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
5616
8e399682
SM
5617 * emacs-lisp/trace.el (trace--read-args): Provide a default.
5618
33e249a2 5619 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
781b4af6 5620 prog-mode-map (bug#14504).
33e249a2 5621
f236dd84
LL
56222013-05-29 Leo Liu <sdl.web@gmail.com>
5623
5624 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
5625 (octave-help): Small simplification.
5626
5627 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
5628 off the highlight first.
5629
3694d13f
GM
56302013-05-29 Glenn Morris <rgm@gnu.org>
5631
03983bdc
GM
5632 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
5633 Handle idlwave-last-system-routine-info-cons-cell being nil.
5634
bc74a74a
GM
5635 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5636 (idlwave-write-paths): Simplify via with-temp-buffer.
5637
8b394200
GM
5638 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
5639 * emulation/cua-rect.el: Also load cua-base at run time.
5640
3694d13f
GM
5641 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
5642 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
5643 (cperl-imenu-on-info): Require imenu.
5644
336d7284
AM
56452013-05-28 Alan Mackenzie <acm@muc.de>
5646
5647 Handle "capitalised keywords" correctly.
33e249a2 5648 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
336d7284 5649
cb29c582
AG
56502013-05-28 Aidan Gauland <aidalgol@amuri.net>
5651
781b4af6 5652 * eshell/em-unix.el: Add -r option to cp.
cb29c582 5653
690e44b2
GM
56542013-05-28 Glenn Morris <rgm@gnu.org>
5655
e658d75c
GM
5656 * vc/vc-arch.el (vc-exec-after): Declare.
5657 (vc-switches): Autoload.
5658 * vc/vc-bzr.el: No need to require vc when compiling.
5659 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
5660 (vc-resynch-buffer, vc-dir-refresh): Declare.
5661 (vc-setup-buffer, vc-switches): Autoload.
712b9732
GM
5662 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
5663 (vc-resynch-buffer): Declare.
5664 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
e658d75c 5665 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
712b9732
GM
5666 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
5667 (grep-read-regexp, grep-read-files, grep-expand-template)
5668 (vc-dir-refresh): Declare.
5669 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
5670 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
5671 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
e658d75c
GM
5672 * vc/vc-mtn.el (vc-exec-after): Declare.
5673 (vc-switches): Autoload.
5674 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
5675 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
5676 (vc-file-tree-walk): Declare.
712b9732
GM
5677 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
5678 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
5679 (vc-tag-precondition, vc-rename-master): Autoload.
e658d75c
GM
5680 * vc/vc-svn.el (vc-exec-after): Declare.
5681 (vc-switches, vc-setup-buffer): Autoload.
5682 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
5683 Autoload.
5684 (vc-resynch-buffer): Declare.
5685
98e87fb3
GM
5686 * obsolete/fast-lock.el (byte-compile-warnings):
5687 Don't warn about obsolete features in this obsolete file.
5688
f5379553
GM
5689 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
5690 Move definition before use.
5691
7a20ef83
GM
5692 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
5693 (dun-unix-verbs): Remove dun-zippy.
5694 (dun-zippy): Remove function.
5695
690e44b2
GM
5696 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
5697
3a52ccf7
JL
56982013-05-27 Juri Linkov <juri@jurta.org>
5699
5700 * replace.el (replace-search): New function with code moved out
5701 from `perform-replace'.
5702 (replace-highlight, replace-dehighlight): Move function definitions
5703 up closer to `replace-search'. (Bug#11746)
5704
d289938a
JL
57052013-05-27 Juri Linkov <juri@jurta.org>
5706
5707 * replace.el (perform-replace): Ignore invisible matches.
5708 In addition to checking `query-replace-skip-read-only', also
5709 filter out matches by calling `run-hook-with-args-until-failure'
5710 on `isearch-filter-predicates', and also check `search-invisible'
5711 for t or call `isearch-range-invisible'.
5712 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
5713
66fc57e3
JL
57142013-05-27 Juri Linkov <juri@jurta.org>
5715
5716 * isearch.el (isearch-filter-predicates): Rename from
5717 `isearch-filter-predicate'. Doc fix. (Bug#11378)
5718 (isearch-message-prefix): Display text from the property
5719 `isearch-message-prefix' of the currently active filters.
5720 (isearch-search): Don't compare `isearch-filter-predicate' with
5721 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
5722 on `isearch-filter-predicates'. Also check `search-invisible' for t
5723 or call `isearch-range-invisible'.
5724 (isearch-filter-visible): Make obsolete.
5725 (isearch-lazy-highlight-search):
5726 Call `run-hook-with-args-until-failure' on
5727 `isearch-filter-predicates' and use `isearch-range-invisible'.
5728
5729 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
5730 `isearch-filter-predicates' instead of `funcall'ing
5731 `isearch-filter-predicate'.
5732 (Info-mode): Set `Info-isearch-filter' to
5733 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
5734
5735 * dired-aux.el (dired-isearch-filter-predicate-orig):
5736 Remove variable.
5737 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
5738 (dired-isearch-filenames-end): Add and remove
5739 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
5740 instead of changing the value of `isearch-filter-predicate'.
5741 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
5742 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
5743 Put property `isearch-message-prefix' to "filename " on
5744 `dired-isearch-filter-filenames'.
5745
5746 * wdired.el (wdired-change-to-wdired-mode):
5747 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
5748 locally instead of changing `isearch-filter-predicate'.
5749 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
5750
f1a60a0f
DG
57512013-05-27 Dmitry Gutov <dgutov@yandex.ru>
5752
5753 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
5754 return the commit hash (Bug#14459). Also set the
5755 `vc-git-detached' property.
5756 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
5757 (vc-git-mode-line-string): Use the same help-echo format whether
5758 in detached mode or not, because we know the actual revision now.
5759 When in detached mode, shorten the revision to 7 chars.
5760
7f17cc40
SM
57612013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5762
5763 * emacs-lisp/easy-mmode.el (define-minor-mode):
5764 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
5765 mode hook and provide a docstring.
5766
25c8401c
AM
57672013-05-27 Alan Mackenzie <acm@muc.de>
5768
5769 Remove spurious syntax-table text properties inserted by C-y.
5770 * progmodes/cc-mode.el (c-after-change): Also clear hard
5771 syntax-table property with value nil.
5772
dde84790
MA
57732013-05-27 Michael Albinus <michael.albinus@gmx.de>
5774
5775 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
5776 when reading the events; the buffer layout shall not be changed.
5777
837fd9af
LL
57782013-05-27 Leo Liu <sdl.web@gmail.com>
5779
5780 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
5781 New variable.
5782 (inferior-octave-directory-tracker): Automatically re-sync
5783 default-directory.
5784 (octave-help): Improve handling of 'See also'.
5785
4fd996b3
SM
57862013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
5787
416f1802
SM
5788 * doc-view.el: Minor naming convention tweaks.
5789 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
5790
4fd996b3
SM
5791 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
5792 even if there's no `display' property yet (bug#14435).
5793
a052ef3b
EZ
57942013-05-25 Eli Zaretskii <eliz@gnu.org>
5795
4fd996b3 5796 * subr.el (unmsys--file-name): Rename from reveal-filename.
a052ef3b
EZ
5797
5798 * Makefile.in (custom-deps, finder-data, autoloads)
5799 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
5800 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
5801 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
5802
c9023370
SM
58032013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5804
5805 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
5806 error-completion on the first 2 args of condition-case (bug#14446).
df76dacb 5807 Don't burp at EOB.
c9023370 5808
24d699fa
LL
58092013-05-25 Leo Liu <sdl.web@gmail.com>
5810
5811 * comint.el (comint-previous-matching-input): Do not flood the
5812 *Messages* buffer with trivial messages.
5813
17e5c0cc
SM
58142013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5815
5816 * progmodes/flymake.el (flymake-nop): Don't return a string.
5817 (flymake-set-at): Fix typo.
5818
5819 * simple.el (read--expression): New function, extracted from
5820 eval-expression. Set completion-at-point-functions (bug#14465).
5821 (eval-expression, eval-minibuffer): Use it.
5822
5d028165
XF
58232013-05-25 Xue Fuqiao <xfq.free@gmail.com>
5824
5825 * progmodes/flymake.el (flymake-save-buffer-in-file)
5826 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
5827 (flymake-selected-frame, flymake-log, flymake-ins-after)
5828 (flymake-set-at, flymake-get-buildfile-from-cache)
5829 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
5830 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
5831 Refine the doc string.
5832 (flymake-get-file-name-mode-and-masks): Reformat.
5833 (flymake-get-real-file-name-function): Fix a minor bug.
5834
7a1d7ba7
JL
58352013-05-24 Juri Linkov <juri@jurta.org>
5836
5837 * progmodes/grep.el (grep-mode-font-lock-keywords):
5838 Support =linenumber= format used by git-grep for lines with
5839 function names. (Bug#13549)
5840
650cff3d
SM
58412013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5842
5843 * progmodes/octave.el (octave-smie-rules): Return nil rather than
5844 0 after a semi-colon; it works better for smie-auto-fill.
5845 (octave--indent-new-comment-line): New function.
5846 (octave-indent-new-comment-line): Use it (indirectly).
5847 (octave-mode): Don't disable smie-auto-fill. Use add-function to
5848 modify comment-line-break-function.
5849
5850 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
5851 (smie-setup): Use add-function to set it.
5852
9631677d
SS
58532013-05-24 Sam Steingold <sds@gnu.org>
5854
5855 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
5856 argument (before the `interactive' argument).
5857
50105835
SM
58582013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
5859
5860 * image-mode.el (image-mode-winprops): Add winprops to
5861 image-mode-winprops-alist before running
5862 image-mode-new-window-functions.
5863 * doc-view.el (doc-view-new-window-function): Don't delay
5864 doc-view-goto-page via timers (bug#14435).
5865
57b9823e
TH
58662013-05-24 Tassilo Horn <tsdh@gnu.org>
5867
5868 * doc-view.el: Integrate with desktop.el. (Bug#14435)
5869 (doc-view-desktop-save-buffer): New function.
5870 (doc-view-restore-desktop-buffer): New function.
50105835
SM
5871 (desktop-buffer-mode-handlers):
5872 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
57b9823e
TH
5873 handler.
5874 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
5875 `desktop-save-buffer' function.
5876
91aafa16
MA
58772013-05-24 Michael Albinus <michael.albinus@gmx.de>
5878
5879 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
5880 (tramp-gvfs-file-name-handler): Raise a user error when
5881 `tramp-gvfs-enabled' is nil.
5882 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
5883 Do not raise a user error when loading package. (Bug#14447)
5884
ec076379
MA
5885 * net/xesam.el: Move to obsolete/.
5886
db785726
GM
58872013-05-24 Glenn Morris <rgm@gnu.org>
5888
af5c7606
GM
5889 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
5890
e5d1916a
GM
5891 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
5892
ded62b08
GM
5893 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
5894 (Info-find-node, Man-getpage-in-background): Declare.
5895
9e614a3f
GM
5896 * mail/unrmail.el (unrmail):
5897 Replace obsolete detect-coding-with-priority.
5898
892f8ca3
GM
5899 * net/socks.el (socks-split-string): Use this rather than split-string.
5900 (socks-nslookup-host): Update for above change.
5901 (dynamic-choice, s5-dynamic-choice-match)
5902 (s5-dynamic-choice-match-inline, s5-widget-value-create):
5903 Comment out unused code.
5904
3c291973
GM
5905 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
5906 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
5907 (gud-tooltip-echo-area): Make obsolete.
5908 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
5909
43cc956b
GM
5910 * progmodes/js.el (js--optimize-arglist): Declare.
5911
dab49a3b
GM
5912 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
5913
36b9d085
GM
5914 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
5915 (ediff-window-C): Declare.
5916
e354ae76
GM
5917 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
5918 Tweak requires to silence compiler.
5919
b8e57bf4
GM
5920 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
5921 (he-search-string, he-tried-table, he-expand-list)
5922 (he-init-string, he-string-member, he-substitute-string)
5923 (he-reset-string): Declare.
5924
db785726
GM
5925 * obsolete/options.el (list-options): Use custom-variable-p,
5926 rather than obsolete alias.
5927
b3531901
SS
59282013-05-23 Sam Steingold <sds@gnu.org>
5929
5930 * simple.el (shell-command-on-region): Pass the `replace' argument
db785726 5931 down to `call-process-region' to comply with the doc as reported on
b3531901
SS
5932 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
5933
bdda4c66
SM
59342013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
5935
5936 * emacs-lisp/smie.el (smie-indent-forward-token)
5937 (smie-indent-backward-token): Handle string tokens (bug#14381).
5938
c43d45f9
TH
59392013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5940
fe1eb856
RS
5941 * ielm.el (ielm-menu): New menu.
5942 (inferior-emacs-lisp-mode): Set comment-start.
96172128 5943
fe1eb856
RS
59442013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5945
5946 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
5947 Fix deactivate action.
5948
5949 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
5950 Add cleveref macros.
074dd971 5951
c43d45f9
TH
5952 * lisp/textmodes/reftex-parse.el
5953 (reftex-locate-bibliography-files): Accept options for
5954 bibliography commands.
5955 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
5956 Add addbibresource. Basic Biblatex support.
5957
7764286e
MA
59582013-05-23 Michael Albinus <michael.albinus@gmx.de>
5959
5960 * net/tramp-gvfs.el (top):
5961 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
5962 when loading package. (Bug#14447)
5963
d361bc10
GM
59642013-05-23 Glenn Morris <rgm@gnu.org>
5965
8fa23984
GM
5966 * progmodes/js.el: No need to load comint when compiling.
5967 (ring-insert, comint-send-string, comint-send-input)
5968 (comint-last-input-end, ido-chop): Declare.
5969
a5c7df1a
GM
5970 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
5971 * vc/ediff-mult.el: Adjust requires.
5972 (ediff-directories-internal, ediff-directory-revisions-internal)
5973 (ediff-patch-file-internal): Declare.
5974 * vc/ediff-ptch.el: Adjust requires.
5975 (ediff-use-last-dir, ediff-buffers-internal): Declare.
5976 (ediff-find-file): Autoload.
5977 * vc/ediff-util.el: No need to load ediff when compiling.
5978 (ediff-regions-internal): Declare.
5979 * vc/ediff-wind.el: Adjust requires.
5980 (ediff-compute-toolbar-width): Define when compiling.
5981 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
5982 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
5983 (dired-get-filename, dired-get-marked-files)
5984 (ediff-last-dir-patch, ediff-patch-default-directory)
5985 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
5986 (ediff-patch-buffer-internal): Declare.
5987
e2aec513
GM
5988 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
5989 (ispell-process, ispell-buffer-local-words, lm-summary)
5990 (lm-section-start, lm-section-end): Declare.
5991 (checkdoc-ispell-init): Simplify.
5992
e68bbd7c
GM
5993 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
5994 (he-string-member, he-reset-string, he-substitute-string): Declare.
5995
7efe0991
GM
5996 * eshell/em-ls.el: Adjust requires.
5997 (eshell-glob-regexp): Declare.
f87b1284
GM
5998 * eshell/em-tramp.el: Adjust requires.
5999 (eshell-parse-command): Autoload.
6000 * eshell/em-xtra.el: Adjust requires.
6001 (eshell-parse-command): Autoload.
6002 * eshell/esh-ext.el: Adjust requires.
6003 (eshell-parse-command, eshell-close-handles): Autoload.
6004 * eshell/esh-io.el: Adjust requires.
6005 (eshell-output-filter): Autoload.
6006 * eshell/esh-util.el: No need to load tramp when compiling.
6007 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
6008 Declare.
6009 (eshell-parse-ange-ls): Require ange-ftp and tramp.
6010 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
6011 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
6012 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
6013 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
6014 * eshell/esh-opt.el, eshell/esh-proc.el:
6015 * eshell/esh-var.el: Adjust requires.
6016 * eshell/eshell.el: Do not require esh-util twice.
6017 (eshell-add-input-to-history): Declare.
6018 (eshell-command): Check history module is active before using it.
6019
d361bc10
GM
6020 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
6021
85d090a9
LL
60222013-05-22 Leo Liu <sdl.web@gmail.com>
6023
6024 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
6025
5d0acd9d
MA
60262013-05-22 Michael Albinus <michael.albinus@gmx.de>
6027
6028 * autorevert.el (auto-revert-notify-add-watch)
6029 (auto-revert-notify-handler): Add `attrib' for the inotify case,
6030 it indicates changes in file modification time.
6031
0cdffd7d
GM
60322013-05-22 Glenn Morris <rgm@gnu.org>
6033
ca5995ec
GM
6034 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
6035 Always delete the autoloaded function from the noruntime and
6036 unresolved functions lists.
6037
6450907e
GM
6038 * allout.el: No need to load epa, epg, overlay when compiling.
6039 (epg-context-set-passphrase-callback, epg-list-keys)
6040 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
6041 (epg-key-user-id-list): Declare.
6042
9c6906f6
GM
6043 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
6044 (viper-set-parsing-style-toggling-macro)
6045 (viper-set-emacs-state-searchstyle-macros):
6046 Use called-interactively-p on Emacs.
6047 (viper-looking-back): Make it an obsolete alias. Update callers.
6048 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
6049 Use looking-back rather than viper-looking-back.
6050 (viper-tmp-insert-at-eob, viper-enlarge-region)
6051 (viper-read-string-with-history, viper-register-to-point)
6052 (viper-append-to-register, viper-change-state-to-vi)
6053 (viper-backward-char-carefully, viper-forward-char-carefully)
6054 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
6055 (viper-change-state-to-emacs): Declare.
6056 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
6057 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
6058 * emulation/viper-mous.el: Do not load viper-cmd.
6059 (viper-backward-char-carefully, viper-forward-char-carefully)
6060 (viper-forward-word, viper-adjust-window): Declare.
6061
5f70c169
GM
6062 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
6063
b1b7f300
GM
6064 * progmodes/idlw-help.el (idlwave-help-fontify):
6065 Use called-interactively-p.
6066
f6ebbb46
GM
6067 * term/w32console.el (w32-get-console-codepage)
6068 (w32-get-console-output-codepage): Declare.
6069
0cdffd7d
GM
6070 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
6071 Remove unnecessary declarations.
6072 (dframe-message): Doc fix.
6073
6074 * info.el (dframe-select-attached-frame, dframe-current-frame):
6075 Declare.
6076
6077 * speedbar.el (speedbar-message): Make it an obsolete alias.
6078 Update all callers.
6079 (speedbar-with-attached-buffer)
6080 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
6081 (speedbar-with-writable): Use backquote.
6082 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
6083 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6084 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
6085 rather than speedbar- aliases.
6086 * mail/rmail.el: Load dframe rather than speedbar when compiling.
6087 (speedbar-make-specialized-keymap, speedbar-insert-button)
6088 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
6089 (speedbar-do-function-pointer): Declare.
6090 (rmail-speedbar-button, rmail-speedbar-find-file)
6091 (rmail-speedbar-move-message):
6092 Use dframe-with-attached-buffer rather than speedbar- alias.
6093 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
6094 (dframe-message, speedbar-make-specialized-keymap)
6095 (speedbar-add-expansion-list, speedbar-mode-functions-list)
6096 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
6097 (speedbar-insert-button, dframe-select-attached-frame)
6098 (dframe-maybee-jump-to-attached-frame)
6099 (speedbar-change-initial-expansion-list)
6100 (speedbar-previously-used-expansion-list-name): Declare.
6101 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
6102 Use dframe-message, dframe-with-attached-buffer rather than
6103 speedbar- aliases.
6104 (gud-sentinel): Silence compiler.
6105 * progmodes/vhdl-mode.el (speedbar-refresh)
6106 (speedbar-do-function-pointer, speedbar-add-supported-extension)
6107 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
6108 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
6109 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
6110 (speedbar-file-lists, speedbar-make-tag-line)
6111 (speedbar-line-directory, speedbar-goto-this-file)
6112 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
6113 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
6114 (speedbar-make-button, speedbar-reset-scanners)
6115 (speedbar-files-item-info, speedbar-line-text)
6116 (speedbar-find-file-in-frame, speedbar-set-timer)
6117 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
6118 (speedbar-with-writable): Do not (re)define it.
6119 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
6120 rather than speedbar- alias.
6121
ee44b62a
LL
61222013-05-21 Leo Liu <sdl.web@gmail.com>
6123
6124 * progmodes/octave.el (octave-mode-menu): Update and re-organize
6125 menu items.
6126 (octave-mode): Tweak fill-nobreak-predicate.
6127 (inferior-octave-startup): Check process to avoid infinite loop.
6128 (inferior-octave): Pop to buffer first to show abornmal process
6129 exit information.
6130
640f050f
GM
61312013-05-21 Glenn Morris <rgm@gnu.org>
6132
79458038
GM
6133 * printing.el (pr-menu-bar): Define when compiling.
6134
9cc3e83f
LL
61352013-05-21 Leo Liu <sdl.web@gmail.com>
6136
6137 * progmodes/octave.el (octave-auto-fill): Remove.
6138 (octave-indent-new-comment-line): Improve.
6139 (octave-mode): Use auto fill mode through
4f405069 6140 comment-line-break-function and fill-nobreak-predicate.
9cc3e83f 6141 (octave-goto-function-definition): Support DEFUN_DLD.
4f405069 6142 (octave-beginning-of-defun): Small tweak.
9cc3e83f
LL
6143 (octave-help): Show parent directory.
6144
f440830d
GM
61452013-05-21 Glenn Morris <rgm@gnu.org>
6146
6147 * files.el (dired-unmark):
6148 * progmodes/gud.el (gdb-input): Update declarations.
6149
6150 * calculator.el (electric, ehelp): No need to load when compiling.
6151 (Electric-command-loop, electric-describe-mode): Declare.
6152
6153 * doc-view.el (doc-view-current-converter-processes): Move before use.
6154
6155 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6156 Move MODE-set-explicitly definition before use.
6157
6158 * international/mule-diag.el (mule-diag):
6159 Don't use obsolete window-system-version.
6160
6161 * mail/feedmail.el (smtpmail): No need to load when compiling.
6162 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
6163
6164 * mail/mail-utils.el (rfc822): No need to load when compiling.
6165 (rfc822-addresses): Autoload it.
6166 (mail-strip-quoted-names): Trivial simplification.
6167
6168 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
6169 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
6170
6171 * net/snmp-mode.el (tempo): Don't duplicate requires.
6172
6173 * progmodes/prolog.el (info): No need to load when compiling.
6174 (comint): Require before shell requires it.
6175 (Info-goto-node): Autoload it.
6176 (Info-follow-nearest-node): Declare.
6177 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
6178
6179 * textmodes/artist.el (picture-mode-exit): Declare.
6180
6181 * textmodes/reftex-parse.el (reftex-parse-from-file):
6182 Trivial rewrite so the compiler can parse it better.
6183
b4da2cbb
LL
61842013-05-20 Leo Liu <sdl.web@gmail.com>
6185
6186 * progmodes/octave.el (octave-help-mode-map)
6187 (octave-help-mode-finish-hook): New variables.
6188 (octave-help-mode, octave-help-mode-finish): New functions.
6189 (octave-help): Use octave-help-mode.
6190
33c0f65b
GM
61912013-05-20 Glenn Morris <rgm@gnu.org>
6192
6193 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
6194
1a0a0a8a
DG
61952013-05-19 Dmitry Gutov <dgutov@yandex.ru>
6196
6197 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
6198 start at point, so that expansion starting right after opening
6199 slash in a regexp is recognized.
6200 (ruby-syntax-before-regexp-re): New defvar, extracted from
6201 ruby-syntax-propertize-function. Since the value of this regexp
6202 is looked up at runtime now, we should be able to turn
6203 `ruby-syntax-methods-before-regexp' into a defcustom later.
6204 (ruby-syntax-propertize-function): Split regexp matching into two
6205 parts, for opening and closing slashes. That allows us to skip
6206 over string interpolations and support multiline regexps.
6207 Don't call `ruby-syntax-propertize-expansions', instead use another rule
6208 for them, which calls `ruby-syntax-propertize-expansion'.
6209 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
6210 call to `ruby-syntax-propertize-function'.
6211 (ruby-syntax-propertize-expansion): Extracted from
6212 `ruby-syntax-propertize-expansions'. Handles one expansion.
1a0a0a8a
DG
6213 (ruby-syntax-propertize-percent-literal): Leave point right after
6214 the percent symbol, so that the expression expansion rule can
6215 propertize the contents.
462388b6
DG
6216 (ruby-syntax-propertize-heredoc): Leave point at bol following the
6217 heredoc openers.
6218 (ruby-syntax-propertize-expansions): Remove.
1a0a0a8a 6219
c1a6c0a4
JL
62202013-05-18 Juri Linkov <juri@jurta.org>
6221
6222 * man.el (Man-default-man-entry): Remove `-' from the end
6223 of the default value. (Bug#14400)
6224
8051fccd
GM
62252013-05-18 Glenn Morris <rgm@gnu.org>
6226
6227 * comint.el (comint-password-prompt-regexp):
6228 Allow "password for XXX" where XXX contains colons (eg https://...).
6229
5e80b74f
LL
62302013-05-18 Leo Liu <sdl.web@gmail.com>
6231
6232 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
f6f87d33 6233 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
5e80b74f
LL
6234 (octave-source-directories): Don't check process.
6235 (octave-source-directories, octave-find-definition): Doc fix.
6236
521a54c5
GM
62372013-05-18 Glenn Morris <rgm@gnu.org>
6238
86a94b05
GM
6239 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
6240 Remove backspace/delete bindings. (Bug#14392)
6241
521a54c5
GM
6242 * cus-dep.el (custom-make-dependencies): Sort the output.
6243 (custom-versions-load-alist): Convert comment to doc.
6244
42caeb89
LL
62452013-05-17 Leo Liu <sdl.web@gmail.com>
6246
6247 * newcomment.el (comment-search-backward): Stricter in finding
6248 comment start. (Bug#14303)
6249
6250 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
6251 (octave-comment-start-skip): Properly anchored.
6252
e219dd97
LL
62532013-05-17 Leo Liu <sdl.web@gmail.com>
6254
fe1eb856
RS
6255 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
6256 Clean up when turned off. (Bug#14395)
e219dd97
LL
6257 (smie--highlight-matching-block-overlay): No longer buffer-local.
6258 (smie-highlight-matching-block): Adjust.
6259
dc5dcb4b
PE
62602013-05-17 Paul Eggert <eggert@cs.ucla.edu>
6261
6262 Doc string fix for "nanoseconds" (Bug#14406).
6263 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
6264 Fix doc string typo that had "nanoseconds" instead of "microseconds".
6265
1db165f0
JB
62662013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
6267
6268 * calc/calc-units.el (math-extract-units): Preserve powers
6269 of units.
6270
c7a8fcac
LL
62712013-05-17 Leo Liu <sdl.web@gmail.com>
6272
6273 * subr.el (delete-consecutive-dups): New function.
6274 * ido.el (ido-set-matches-1): Use it.
6275 * progmodes/octave.el (inferior-octave-completion-table): Use it.
6276 * ido.el (ido-remove-consecutive-dups): Remove.
6277
f678b18a
SM
62782013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
6279
6280 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
6281 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
6282 regexp-opt's `words'.
6283
ebfe68e8
LL
62842013-05-16 Leo Liu <sdl.web@gmail.com>
6285
6286 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
6287 (smie--highlight-matching-block-overlay)
6288 (smie--highlight-matching-block-lastpos)
6289 (smie--highlight-matching-block-timer): New variables.
6290 (smie-highlight-matching-block): New function.
6291 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
6292 (smie-setup): Conditionally enable smie-blink-matching-open.
6293
bc8bc17d
WS
62942013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
6295
6296 Sync with upstream verilog-mode r840.
6297 * progmodes/verilog-mode.el (verilog-mode-version)
6298 (verilog-mode-release-date): Update.
6299 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
6300 (verilog-sig-tieoff): Fix string error on
6301 AUTORESET with colon define, bug594. Reported by Andrew Hou.
6302 (verilog-read-decls): Fix parameters confusing
6303 AUTOINST interfaces, bug565. Reported by Leith Johnson.
6304
df065a0b
EZ
63052013-05-16 Eli Zaretskii <eliz@gnu.org>
6306
6307 * subr.el (reveal-filename): New function.
6308
6309 * loadup.el: Compute Emacs executable versions on MS-Windows,
6310 where executables have the .exe extension. Add a hard link
6311 emacs-XX.YY.ZZ.exe on MS-Windows.
6312
6313 * Makefile.in (XARGS_LIMIT): New variable.
6314 (custom-deps, finder-data, autoloads)
6315 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
6316 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
6317 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
6318 (compile-main): Limit xargs according to $(XARGS_LIMIT).
6319
2d4bf34b
LL
63202013-05-16 Leo Liu <sdl.web@gmail.com>
6321
6322 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
6323 (octave-mode-menu, octave-mode-map): Remove its uses.
6324
6b9c2d85
RZ
63252013-05-16 Reto Zimmermann <reto@gnu.org>
6326
6327 Sync with upstream vhdl mode v3.34.2.
6328 * progmodes/vhdl-mode.el: Use `push' throughout.
6329 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
6330 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
6331 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
6332 (vhdl-actual-generic-name): New option to derive actual generic name.
6333 (vhdl-port-paste-signals): Replace formal by actual generics.
6334 (vhdl-beautify): New name for old group vhdl-align. Update users.
6335 (vhdl-beautify-options): New option.
6336 (vhdl-last-input-event): New compat alias. Use throughout.
6337 (vhdl-goto-line): Replace user level function `goto-line'.
6338 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
6339 vhdl-fix-statement-buffer.
6340 (vhdl-create-mode-menu): Add some entries.
6341 (vhdl-align-region-groups): Respect vhdl-beautify-options.
6342 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
6343 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
6344 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
6345 to force statements on one line.
6346 (vhdl-remove-trailing-spaces-region):
6347 New, split from vhdl-remove-trailing-spaces.
6348 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
6349 Respect vhdl-beautify-options.
6350 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
6351 (vhdl-update-sensitivity-list): Not add with index if exists without.
6352 Not include array index with signal. Ignore keywords in comments.
6353 (vhdl-get-visible-signals): Regexp tweaks.
6354 (vhdl-template-component-inst): Handle empty library.
6355 (vhdl-template-type): Add template for 'enum' type.
6356 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
6357 Use vhdl-replace-string.
6358 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
6359 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
6360 (vhdl-speedbar-initialize): Update for above name change.
6361 (vhdl-compose-wire-components): Fix in handling of constants.
6362 (vhdl-error-regexp-emacs-alist): New variable.
6363 (vhdl-error-regexp-add-emacs): New function;
6364 adds support for new compile.el (Emacs 22+)
6365 (vhdl-generate-makefile-1): Change target order for single lib. units.
6366 Allow use of absolute file names.
6367
9df4ec5e
LL
63682013-05-16 Leo Liu <sdl.web@gmail.com>
6369
6370 * simple.el (prog-indent-sexp): Indent enclosing defun.
6371
f5ba00a6
GM
63722013-05-15 Glenn Morris <rgm@gnu.org>
6373
ed8be7ff
GM
6374 * cus-start.el (show-trailing-whitespace): Move to editing basics.
6375 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
6376 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
6377 (whitespace-highlight): Move to whitespace group.
6378
6379 * comint.el (comint-source):
6380 * pcmpl-linux.el (pcmpl-linux):
6381 * shell.el (shell-faces):
6382 * eshell/esh-opt.el (eshell-opt):
6383 * international/ccl.el (ccl): Remove empty custom groups.
6384
6385 * completion.el (dynamic-completion-mode):
6386 * jit-lock.el (jit-lock-debug-mode):
6387 * minibuffer.el (completion-in-region-mode):
6388 * type-break.el (type-break-mode-line-message-mode)
6389 (type-break-query-mode):
6390 * emulation/tpu-edt.el (tpu-edt-mode):
6391 * progmodes/subword.el (global-subword-mode, global-superword-mode):
6392 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6393 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
6394
6395 * term/xterm.el (xterm): Change parent group to terminals.
6396
6397 * master.el (master): Remove empty custom group.
6398 (master-mode): Remove unused :group argument.
6399 * textmodes/refill.el (refill): Remove empty custom group.
6400 (refill-mode): Remove unused :group argument.
6401
6402 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
6403
82a7c41b
GM
6404 * cus-dep.el: Provide a feature.
6405 (custom-make-dependencies): Ignore dotfiles (dir-locals).
f5ba00a6
GM
6406 Don't mistakenly ignore files whose basenames match a basename
6407 from preloaded-file-list (eg cedet/ede/simple.el).
82a7c41b 6408 Add a fallback method for getting :group.
f5ba00a6 6409
6d65486d
JL
64102013-05-15 Juri Linkov <juri@jurta.org>
6411
da547b32
JL
6412 * isearch.el (isearch-char-by-name): Rename from
6413 `isearch-insert-char-by-name'. Doc fix.
6414 (isearch-forward): Mention `isearch-char-by-name' in
6415 the docstring. (Bug#13348)
6416
6d65486d
JL
6417 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
6418 `exit-minibuffer' instead of
6419 `isearch-nonincremental-exit-minibuffer'.
6420 (isearch-edit-string): Remove mention of
6421 `isearch-nonincremental-exit-minibuffer' from docstring.
6422 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
6423 (isearch-forward-exit-minibuffer)
6424 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
6425
c9990474
SM
64262013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6427
6e911150
SM
6428 * loadup.el: Just use unversioned DOC.
6429
c9990474
SM
6430 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
6431 literals as extending to EOB.
6432 (nxml-last-fontify-end): Remove unused variable.
6433 (nxml-after-change1): Use with-silent-modifications.
6434 (nxml-extend-after-change-region): Simplify.
6435 (nxml-extend-after-change-region1): Remove function.
6436 (nxml-after-change1): Don't adjust for dependent regions.
6437 (nxml-fontify-matcher): Simplify.
6438 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
6439 (xmltok-add-dependent): Remove function.
6440 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
6441 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
6442 (xmltok-scan-prolog-after-processing-instruction-open): Treat
6443 unclosed <[[, <?, comment, and other literals as extending to EOB.
6444 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
6445 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
6446 Remove functions.
6447 (rng-do-some-validation-1): Don't mark dependent regions.
6448 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
6449 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
6450 (nxml-clear-dependent-regions): Remove functions.
6451 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
6452 (nxml-ensure-scan-up-to-date):
6453 Don't clear&mark dependent regions.
6454
e3772e98
LL
64552013-05-15 Leo Liu <sdl.web@gmail.com>
6456
c9990474
SM
6457 * progmodes/octave.el (octave-goto-function-definition):
6458 Improve and fix callers.
e3772e98 6459
5ac2eb34
SM
64602013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6461
c46c57b0
SM
6462 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
6463 the setter (bug#14387).
6464
5ac2eb34
SM
6465 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
6466 surrounding group (bug#14402).
6467
180ed218
JL
64682013-05-14 Juri Linkov <juri@jurta.org>
6469
6470 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
6471 (Bug#14390)
6472
0ac0fecb
GM
64732013-05-14 Glenn Morris <rgm@gnu.org>
6474
6475 * progmodes/f90.el (f90-imenu-generic-expression):
6476 Fix typo in 2013-05-08 change. (Bug#14402)
6477
2e78e6a7
JPG
64782013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
6479
5ac2eb34
SM
6480 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
6481 Remove signals for which replies are never received.
2e78e6a7 6482
53267cca
JPG
64832013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
6484
6485 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
6486 (gdb-handler-alist, gdb-handler-number): Remove variables.
6487 (gdb-handler-list): New variable.
6488 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
6489 (gdb-pending-handler-p, gdb-handle-reply)
6490 (gdb-remove-all-pending-triggers): New functions.
6491 (gdb-discard-unordered-replies): New defcustom.
6492 (gdb-handler): New defstruct.
6493 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
6494 instead of gdb-pending-triggers. Update docstring.
6495 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
6496 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
6497 (gdb-var-update-handler, def-gdb-auto-update-trigger)
6498 (def-gdb-auto-update-handler, gdb-get-changed-registers)
6499 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
6500 (gdb-frame-handler): Pending triggers are now automatically managed.
6501 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
6502 Remove argument.
6503 (gdb-input): Automatically handles pending triggers. Update docstring.
6504 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
6505 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
6506 Update comments.
6507 (gdb-done-or-error): Now use gdb-handle-reply.
6508
d04ce803
JPG
65092013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
6510
6511 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
6512 gdb-debug-log.
6513
0114073a
GM
65142013-05-14 Glenn Morris <rgm@gnu.org>
6515
6516 * subr.el (user-emacs-directory-warning): New option.
6517 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
6518
4d25fd7e
LL
65192013-05-14 Leo Liu <sdl.web@gmail.com>
6520
6521 * progmodes/octave.el (octave-font-lock-keywords): Fix error
6522 during redisplay.
6523 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
6073d8f4
LL
6524 (octave-font-lock-texinfo-comment): Fix invalid search bound
6525 error: wrong side of point.
4d25fd7e 6526
27c8b6eb
GM
65272013-05-14 Glenn Morris <rgm@gnu.org>
6528
61aaeb01
GM
6529 * progmodes/flymake.el (flymake-xml-program): New option.
6530 (flymake-xml-init): Use it.
6531
5bf90bc5
GM
6532 * term/xterm.el: Provide a feature.
6533
6534 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
27c8b6eb 6535
f4c7dfd2
GM
65362013-05-13 Glenn Morris <rgm@gnu.org>
6537
6538 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
6539 Add compat aliases as a hack workaround. (Bug#14384)
6540
2aeb3a1d
LL
65412013-05-13 Leo Liu <sdl.web@gmail.com>
6542
b0e069c2
LL
6543 * progmodes/octave.el (octave-indent-comment): Fix indentation for
6544 ###, and %!.
f5a9432f
LL
6545 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
6546 C-M-q.
b0e069c2
LL
6547 (octave-comment-start-skip): Include %!.
6548 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
2aeb3a1d 6549
30ea8374
LL
65502013-05-12 Leo Liu <sdl.web@gmail.com>
6551
6552 * progmodes/octave.el (inferior-octave-startup): Store the value
6553 of __octave_srcdir__ for octave-source-directories.
6554 (inferior-octave-check-process): New function refactored out of
6555 inferior-octave-send-list-and-digest.
6556 (octave-source-directories)
6557 (octave-find-definition-filename-function): New variables.
6558 (octave-source-directories)
6559 (octave-find-definition-default-filename): New functions.
6560 (octave-find-definition): Improve to find functions implemented in C++.
6561
472a3834
GM
65622013-05-12 Glenn Morris <rgm@gnu.org>
6563
6564 * calendar/diary-lib.el (diary-outlook-format-1):
6565 Don't include dayname in the output. (Bug#14349)
6566
3191b52f
GM
65672013-05-11 Glenn Morris <rgm@gnu.org>
6568
0060ac73
GM
6569 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
6570
3191b52f
GM
6571 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
6572 Treat cc-provide like provide.
6573
e065ba74
KR
65742013-05-11 Kevin Ryde <user42@zip.com.au>
6575
6576 * cus-dep.el (custom-make-dependencies):
6577 Use generated-autoload-load-name for the sake of files such
6578 such cedet/semantic/bovine/c.el, where the base file name
6579 is not in load-path. (Bug#5277)
6580
36f84c37
GM
65812013-05-11 Glenn Morris <rgm@gnu.org>
6582
6583 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
6584 Provide features.
6585
c8730c3a
LL
65862013-05-11 Leo Liu <sdl.web@gmail.com>
6587
6588 * progmodes/octave.el (octave-indent-comment): Improve.
6589 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
5ac2eb34
SM
6590 (octave-eldoc-function-signatures, octave-eldoc-function):
6591 New functions.
c8730c3a
LL
6592 (octave-mode, inferior-octave-mode): Add eldoc support.
6593
212e29f2
RS
65942013-05-11 Richard Stallman <rms@gnu.org>
6595
6596 * epa.el (epa-decrypt-file): Take output file name as argument
6597 and read it using `interactive'.
6598
083fe0d7
LL
65992013-05-11 Leo Liu <sdl.web@gmail.com>
6600
6601 * progmodes/octave.el (octave-beginning-of-line)
6602 (octave-end-of-line): Check before using up-list because it jumps
6603 out of more syntactic contructs since moving to smie.
9dbdb67e
LL
6604 (octave-indent-comment): New function.
6605 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
6980b0ca
LL
6606 (octave-begin-keywords, octave-end-keywords)
6607 (octave-reserved-words, octave-smie-bnf-table)
6608 (octave-smie-rules): Add new keywords from Octave 3.6.4.
083fe0d7 6609
8582e4c4
GM
66102013-05-11 Glenn Morris <rgm@gnu.org>
6611
f20def1f
GM
6612 * faces.el (internal-face-x-get-resource):
6613 * frame.el (ns-display-monitor-attributes-list):
d78abe37 6614 * calc/calc-aent.el (math-to-radians-2):
f20def1f 6615 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
d78abe37 6616 Fix declarations.
f20def1f 6617
445f95e2
GM
6618 * calc/calc-menu.el: Make it loadable in isolation.
6619
6620 * net/eudcb-bbdb.el: Make it loadable without bbdb.
6621 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
6622 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
6623 (eudc-bbdb-query-internal): Require 'bbdb.
6624
99fb2756
GM
6625 * lpr.el (lpr-headers-switches):
6626 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
6627
6628 * progmodes/sql.el (sql-login-params): Fix and improve :type.
6629
0da7ad96
GM
6630 * emulation/edt-mapper.el: In batch mode, error rather than hang.
6631
8582e4c4
GM
6632 * term.el (term-set-escape-char): Make it idempotent.
6633
f71c50d0
LL
66342013-05-10 Leo Liu <sdl.web@gmail.com>
6635
5ac2eb34
SM
6636 * progmodes/octave.el (inferior-octave-completion-table):
6637 No longer a function and all uses changed. Use cache to speed up
f71c50d0
LL
6638 completion due to bug#11906.
6639 (octave-beginning-of-defun): Re-write to be more general.
6640
d5837773
GM
66412013-05-10 Glenn Morris <rgm@gnu.org>
6642
6643 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
6644
027c0f75
SM
66452013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
6646
6647 * comint.el (comint-redirect-send-command-to-process): Use :around
6648 rather than :override for comint-redirect-filter.
6649 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
6650 Call it instead of comint-redirect-original-filter-function (which
6651 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
6652
4465bfb4
JD
66532013-05-09 Jan Djärv <jan.h.d@swipnet.se>
6654
6655 * frame.el (display-monitor-attributes-list): Add NS case.
6656 (ns-display-monitor-attributes-list): Declare.
6657
2d809ffa 66582013-05-09 Ulrich Mueller <ulm@gentoo.org>
b01682fb
UM
6659
6660 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
6661
e54eeb9b
GM
66622013-05-09 Glenn Morris <rgm@gnu.org>
6663
56cd351d
GM
6664 * international/fontset.el (vertical-centering-font-regexp):
6665 Set standard-value.
6666
d84b6108
GM
6667 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
6668
a931698a
GM
6669 * bookmark.el (bookmark-search-delay):
6670 * cus-start.el (vertical-centering-font-regexp):
6671 * ps-mule.el (ps-mule-font-info-database-default):
6672 * ps-print.el (ps-default-fg, ps-default-bg):
6673 * type-break.el (type-break-good-break-interval):
6674 * whitespace.el (whitespace-indentation-regexp)
6675 (whitespace-space-after-tab-regexp):
6676 * emacs-lisp/testcover.el (testcover-1value-functions)
6677 (testcover-noreturn-functions, testcover-progn-functions)
6678 (testcover-prog1-functions):
6679 * emulation/viper-init.el (viper-emacs-state-cursor-color):
6680 * eshell/em-glob.el (eshell-glob-translate-alist):
6681 * play/tetris.el (tetris-tty-colors):
6682 * progmodes/cpp.el (cpp-face-default-list):
6683 * progmodes/flymake.el (flymake-allowed-file-name-masks):
6684 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
6685 (idlwave-help-browser-generic-args):
6686 * progmodes/make-mode.el (makefile-special-targets-list):
6687 * progmodes/python.el (python-shell-virtualenv-path):
6688 * progmodes/verilog-mode.el (verilog-active-low-regexp)
6689 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
6690 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
6691 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
6692 * textmodes/reftex-vars.el (reftex-format-label-function):
6693 * textmodes/remember.el (remember-diary-file): Fix custom types.
6694
e54eeb9b
GM
6695 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
6696 Add :version.
6697
455851dd
LL
66982013-05-09 Leo Liu <sdl.web@gmail.com>
6699
6700 * progmodes/octave.el (inferior-octave-completion-at-point):
083fe0d7 6701 Restore file completion. (Bug#14300)
455851dd
LL
6702 (inferior-octave-startup): Fix incorrect highlighting for the
6703 first prompt.
6704
a9e4425b
SM
67052013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6706
6707 * progmodes/ruby-mode.el: First cut at SMIE support.
6708 (ruby-use-smie): New var.
6709 (ruby-smie-grammar): New constant.
6710 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
6711 (ruby-smie--forward-token, ruby-smie--backward-token)
6712 (ruby-smie-rules): New functions.
6713 (ruby-mode-variables): Setup SMIE if applicable.
6714
060ca408
EZ
67152013-05-08 Eli Zaretskii <eliz@gnu.org>
6716
6717 * simple.el (line-move-visual): Signal beginning/end of buffer
6718 only if vertical-motion moved less than it was requested. Avoids
6719 silly incorrect error messages when there are display strings with
6720 multiple newlines at EOL.
6721
1d5963cc
SM
67222013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
6723
6724 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
6725 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
6726 (prolog-char-quote-workaround):
6727 * progmodes/cperl-mode.el (cperl-under-as-char):
6728 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
c7064f05
JB
6729 Mark as obsolete.
6730 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
1d5963cc
SM
6731 their declaration.
6732 (vhdl-mode-syntax-table-init): Remove.
6733
c9990474
SM
6734 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
6735 last change.
1d5963cc
SM
6736
6737 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
6738 syntax for "_".
6739 (ld-script-font-lock-keywords):
6740 Change regexps to use things like \_< and \_>.
6741
6742 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
6743 Change all regexps to use things like \_< and \_>.
6744
6745 * progmodes/autoconf.el (autoconf-definition-regexp)
6746 (autoconf-font-lock-keywords, autoconf-current-defun-function):
6747 Handle a _ with symbol syntax.
6748 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
6749
c9990474
SM
6750 * progmodes/ada-mode.el (ada-mode-abbrev-table):
6751 Consolidate declaration.
1d5963cc
SM
6752 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
6753 the declaration.
6754 (ada-create-syntax-table): Remove.
6755 (ada-capitalize-word): Don't mess with the syntax of "_" since it
6756 already has the right syntax nowadays.
6757 (ada-goto-next-word): Don't change the syntax of "_".
6758
6759 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
6760 with-wrapper-hook.
6761
72d3cfca
SS
67622013-05-08 Sam Steingold <sds@gnu.org>
6763
6764 * thingatpt.el (thing-at-point): Accept optional second argument
6765 NO-PROPERTIES to strip the text properties from the return value.
6766 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
6767 to `thing-at-point' instead of stripping the properties ourselves.
6768 Also, when `thing-at-point' fails to find a url, prepend "http://"
6769 to the filename at point on the assumption that the user is
6770 pointing at something like gnu.org/gnu.
6771
5cb15713
JB
67722013-05-08 Juanma Barranquero <lekktu@gmail.com>
6773
6774 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
6775 * faces.el (crm-separator):
6776 Silence byte-compiler.
6777
6778 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
6779 (tool-bar-map): Remove unneeded defvars.
6780
ea78b95b
LL
67812013-05-08 Leo Liu <sdl.web@gmail.com>
6782
6783 Re-work a fix for bug#10994 based on Le Wang's patch.
6784 * ido.el (ido-remove-consecutive-dups): New helper.
6785 (ido-completing-read): Use it.
6786 (ido-chop): Revert fix for bug#10994.
6787
dc7466df
AS
67882013-05-08 Adam Spiers <emacs@adamspiers.org>
6789
6790 * cus-edit.el (custom-save-variables):
6791 Pretty-print long values. (Bug#14187)
6792
9ecf672a
GM
67932013-05-08 Glenn Morris <rgm@gnu.org>
6794
6795 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
6796 (m4-mode-syntax-table): Init in the defvar.
6797 (m4-mode-abbrev-table): Let define-derived-mode define it.
6798
3f555be8
TT
67992013-05-08 Tom Tromey <tromey@redhat.com>
6800
6801 * progmodes/m4-mode.el (m4-mode-syntax-table):
6802 Do not treat "_" as word constituent. (Bug#14167)
6803
7cc8ae06
GM
68042013-05-07 Glenn Morris <rgm@gnu.org>
6805
4f58bc06
GM
6806 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
6807 Remove explicit eshell-isearch-cancel-map.
6808
7cc8ae06
GM
6809 * progmodes/f90.el (f90-smart-end-names): New option.
6810 (f90-smart-end): Doc fix.
6811 (f90-end-block-optional-name): New constant.
6812 (f90-block-match): Respect f90-smart-end-names.
6813
ceb57e59
SM
68142013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6815
6816 * progmodes/octave.el (octave-smie-forward-token): Be more careful
6817 about implicit semi-colons (bug#14218).
6818
4e3f9230
YM
68192013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6820
6821 * frame.el (display-monitor-attributes-list)
6822 (frame-monitor-attributes): New functions.
6823
203a5572
LL
68242013-05-06 Leo Liu <sdl.web@gmail.com>
6825
6826 * progmodes/octave.el (octave-syntax-propertize-function): Change
6827 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
6828 (octave-font-lock-keywords): Use octave-operator-regexp.
5ac2eb34 6829 (octave-completion-at-point): Rename from
203a5572
LL
6830 octave-completion-at-point-function.
6831 (inferior-octave-directory-tracker): Robustify.
6832 (octave-text-functions): Remove and fix its uses. No such things
6833 any more.
6834
ee6cff99
SM
68352013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6836
6837 * emacs-lisp/trace.el (trace--display-buffer): New function.
6838 (trace-make-advice): Use it.
6839
32985194
JL
68402013-05-06 Juri Linkov <juri@jurta.org>
6841
6842 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
6843 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
6844 Doc fix.
6845 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
6846 in the help string. (Bug#12985)
6847
a1c700de
KD
68482013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6849
6850 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
6851
c67c0839
SM
68522013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6853
323885fd
SM
6854 * progmodes/perl-mode.el: Add support for here documents.
6855 (perl-syntax-propertize-function): Match here-doc markers.
6856 (perl-syntax-propertize-special-constructs): Find their end.
6857 (perl-imenu-generic-expression): Use [:alnum:].
6858
c67c0839
SM
6859 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
6860 (advice--add-function): Refresh the advice if already present
6861 (bug#14317).
6862
d491e7a8
IA
68632013-05-06 Ivan Andrus <darthandrus@gmail.com>
6864
6865 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
6866
ddf9925e
GM
68672013-05-06 Glenn Morris <rgm@gnu.org>
6868
7cc3af27
GM
6869 * w32-fns.el (w32-charset-info-alist): Declare.
6870
16e343d6
GM
6871 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
6872 of its defcustom properties.
6873 (eshell-cmpl-initialize): No need to load pcomplete.
6874
7d889a47
GM
6875 * generic-x.el: No need to require comint when compiling.
6876
ddf9925e
GM
6877 * net/eudc-export.el: Make it loadable without bbdb.
6878 (top-level): Use require rather than load-library.
6879 (eudc-create-bbdb-record, eudc-bbdbify-phone)
6880 (eudc-batch-export-records-to-bbdb)
6881 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
6882 Require bbdb.
6883
1e2c18df
SM
68842013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6885
6886 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
6887 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
6888 some tweaks, instead.
6889
02502a5f
LL
68902013-05-05 Leo Liu <sdl.web@gmail.com>
6891
6892 * progmodes/octave.el (octave-font-lock-keywords)
6893 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
6894 (inferior-octave-send-list-and-digest): Improve error message.
6895 (octave-mode, inferior-octave-mode): Use setq-local.
6896 (octave-help): Set info-lookup-mode.
6897
0dc04f42
RS
68982013-05-05 Richard Stallman <rms@gnu.org>
6899
6c54491c
RS
6900 * vc/compare-w.el (compare-windows-whitespace):
6901 Treat no-break space as whitespace.
6902
0dc04f42
RS
6903 * mail/rmailsum.el (rmail-summary-rmail-update):
6904 Detect empty summary and don't change selected message.
6905 (rmail-summary-goto-msg): Likewise.
6906
df8f35df
RS
6907 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
6908 Doc fixes, rename args.
6909
5356e1a3
AM
69102013-05-05 Alan Mackenzie <acm@muc.de>
6911
6912 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
6913
d44014cb
JL
69142013-05-05 Juri Linkov <juri@jurta.org>
6915
6916 * info.el (Info-read-subfile): Use (point-min) instead of (point)
6917 to not add the length of the summary segment to the return value.
6918 (Bug#14125)
6919
c129b51f
LL
69202013-05-05 Leo Liu <sdl.web@gmail.com>
6921
6922 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
6923 (inferior-octave-output-filter): Remove.
6924 (octave-send-region, inferior-octave-startup): Fix callers.
6925 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
6926 (octave-binary-file-extensions): New user variable.
6927 (octave-find-definition): Confirm if opening binary files.
6928 (octave-help-file): Use octave-find-definition to get the binary
6929 confirmation.
6930 (octave-help): Adjust for octave-help-file change.
6931
aa7dab97
SM
69322013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6933
6934 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
6935 Merge the two entries that handle function definitions.
6936 (pascal--syntax-propertize): New const.
6937 (pascal-mode): Use it. Use setq-local.
6938
fd3a9a6b
GM
69392013-05-04 Glenn Morris <rgm@gnu.org>
6940
6941 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
6942 (diary-from-outlook): Respect diary-from-outlook-function.
6943
30c7e542
SM
69442013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6945
6946 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
6947 Move the declaration from C.
6948 (read-minibuffer, eval-minibuffer): Move from C.
6949 (completion-setup-function): Avoid minibuffer-completion-contents.
6950
b54f978b
LL
69512013-05-03 Leo Liu <sdl.web@gmail.com>
6952
6953 * progmodes/octave.el (octave-font-lock-keywords): Do not
6954 dehighlight 'end' in comments or strings.
30c7e542
SM
6955 (octave-completing-read, octave-goto-function-definition):
6956 New helpers.
d4d0f9b3
LL
6957 (octave-help-buffer): New user variable.
6958 (octave-help-file, octave-help-function): New button types.
6959 (octave-help): New command and bind it to C-h ;.
6960 (octave-find-definition): New command and bind it to M-.
d74a1581 6961 (user-error): Alias to error if not defined.
b54f978b 6962
27135018
LL
69632013-05-02 Leo Liu <sdl.web@gmail.com>
6964
6965 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
6966 for \. (bug#14332)
6967 (octave-font-lock-keywords): Include [ and {.
6968
0d634d3a
LL
69692013-05-02 Leo Liu <sdl.web@gmail.com>
6970
6971 * progmodes/octave.el (inferior-octave-startup-file): Change default.
6972 (inferior-octave): Remove calling comint-mode and return the buffer.
6973 (inferior-octave-startup): Cosmetic changes.
6974
b4c8295e
LL
69752013-05-02 Leo Liu <sdl.web@gmail.com>
6976
30c7e542
SM
6977 * progmodes/octave.el (octave-syntax-propertize-function):
6978 Include the case when ' is at line beginning. (Bug#14336)
b4c8295e 6979
f12ad6ec
GM
69802013-05-02 Glenn Morris <rgm@gnu.org>
6981
6982 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
6983 * desktop.el (vc-dir-mode): Just autoload it here.
6984
30cac1e0
AM
69852013-05-02 Alan Mackenzie <acm@muc.de>
6986
6987 Eliminate variable c-standard-font-lock-fontify-region-function.
6988 * progmodes/cc-mode.el
6989 (c-standard-font-lock-fontify-region-function): Remove.
6990 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
6991
d8ef28b1
LL
69922013-05-01 Leo Liu <sdl.web@gmail.com>
6993
2640d52e 6994 * progmodes/octave.el: Compatible with older emacs-24 releases.
27135018 6995 (inferior-octave-has-built-in-variables): Remove. Built-in
2640d52e 6996 variables were removed from Octave in 2007.
d8ef28b1
LL
6997 (inferior-octave-startup): Fix uses.
6998 (comint-line-beginning-position): Remove compatibility code for
6999 emacs 21.
7000
ac63ec89
JL
70012013-05-01 Juri Linkov <juri@jurta.org>
7002
7003 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
7004
9e9be37c
JL
70052013-05-01 Juri Linkov <juri@jurta.org>
7006
7007 * comint.el (comint-previous-matching-input): Don't print message
7008 "History item: %d" when `isearch-mode' is active.
7009 (comint-history-isearch-message): Print message "History item: %d"
7010 when `comint-input-ring-index' is not empty and this function is
7011 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
7012
9b92c13b
LL
70132013-05-01 Leo Liu <sdl.web@gmail.com>
7014
7015 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
7016 definitions. Use completion-at-point to insert keywords.
7017 (octave-abbrev-start): Remove.
7018 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
7019
b12d33d7
LL
70202013-04-30 Leo Liu <sdl.web@gmail.com>
7021
7022 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
7023 change.
7024
3d1c39fa
AM
70252013-04-30 Alan Mackenzie <acm@muc.de>
7026
7027 Handle arbitrarily long C++ member initialisation lists.
30c7e542
SM
7028 * progmodes/cc-engine.el (c-back-over-member-initializers):
7029 new function.
3d1c39fa
AM
7030 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
7031 (most) member init lists.
7032
5147fc17
RS
70332013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7034
7035 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
7036 variable.
7037
5b78d7fc
LL
70382013-04-30 Leo Liu <sdl.web@gmail.com>
7039
7040 * progmodes/octave.el (octave-variables): Remove. No builtin
7041 variables any more. All converted to functions.
7042 (octave-font-lock-keywords, octave-completion-at-point-function):
7043 Fix uses.
7044 (octave-font-lock-texinfo-comment): New user variable.
7045 (octave-texinfo-font-lock-keywords): New variable for texinfo
7046 comment block.
7047 (octave-function-comment-block): New face.
7048 (octave-font-lock-texinfo-comment): New function.
7049 (octave-mode): Font lock texinfo comment block.
7050
38d8527b
LL
70512013-04-29 Leo Liu <sdl.web@gmail.com>
7052
7053 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
7054 indexing expression.
7055 (octave-continuation-string): Do not use \.
7056 (inferior-octave-complete-impossible): Remove.
7057 (inferior-octave-completion-table)
7058 (inferior-octave-completion-at-point): Remove its uses.
7059 (inferior-octave-startup): completion_matches was introduced to
7060 Octave in 1996 so safe to assume it.
7061 (octave-function-file-comment): Improve to follow how Octave does it.
7062 (octave-update-function-file-comment): Tweak.
7063
2ec12cb0
LL
70642013-04-29 Leo Liu <sdl.web@gmail.com>
7065
7066 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
7067 (inferior-octave-startup): Remove inferior-octave-startup-hook.
7068 (octave-function-file-comment): Fix typo.
7069 (octave-sync-function-file-names): Use read-char-choice.
7070
6eaed048
JB
70712013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
7072
7073 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
7074 to t for the less important warnings.
7075
3ffa2d4f
DH
70762013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
7077
7078 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
7079
685c9501
GM
70802013-04-27 Glenn Morris <rgm@gnu.org>
7081
7082 * vc/log-view.el (log-view-current-entry):
7083 Treat "---" separator lines as part of the following rev. (Bug#14169)
7084
0208ede7
JL
70852013-04-27 Juri Linkov <juri@jurta.org>
7086
7087 * subr.el (read-number): Doc fix about using it by interactive
7088 code letter `n'. (Bug#14254)
7089
5db9dace
JL
70902013-04-27 Juri Linkov <juri@jurta.org>
7091
7092 * desktop.el (desktop-auto-save-timeout): New option.
7093 (desktop-file-checksum): New variable.
7094 (desktop-save): Add optional arg `auto-save' and don't auto-save
7095 if nothing changed.
7096 (desktop-auto-save-timer): New variable.
7097 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
7098 (after-init-hook): Call `desktop-auto-save-set-timer'.
7099 Suggested by Reuben Thomas <rrt@sc3d.org> in
7100 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
7101
b7260dd4
LL
71022013-04-27 Leo Liu <sdl.web@gmail.com>
7103
7104 * progmodes/octave.el (octave-function-file-p)
7105 (octave-skip-comment-forward, octave-function-file-comment)
7106 (octave-update-function-file-comment): New functions.
7107 (octave-mode-map): Bind C-c ; to
7108 octave-update-function-file-comment.
7109 (octave-mode-menu): Add octave-update-function-file-comment.
7110 (octave-mode, inferior-octave-mode): Fix doc-string.
7111 (octave-insert-defun): Conform to Octave's coding convention.
7112 (Bug#14285)
7113
7114 * files.el (basic-save-buffer): Don't let errors in
7115 before-save-hook prevent saving buffer.
7116
c46da669
RW
71172013-04-20 Roland Winkler <winkler@gnu.org>
7118
7119 * faces.el (read-face-name): Use completing-read if arg multiple
7120 is nil.
7121
a81ee1eb
IL
71222013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
7123
7124 * ls-lisp.el (ls-lisp-insert-directory): If no files are
30c7e542
SM
7125 displayed, move point to after the totals line.
7126 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
a81ee1eb
IL
7127 for the details.
7128
4fac34ce
SM
71292013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
7130
7131 * emacs-lisp/package.el (package-autoload-ensure-default-file):
7132 Add current dir to the load-path.
7133 (package-generate-autoloads): Don't rely on
7134 autoload-ensure-default-file.
7135
f6bfc063
RT
71362013-04-26 Reuben Thomas <rrt@sc3d.org>
7137
d40ab5cf
BG
7138 * textmodes/remember.el (remember-store-in-files): Document that
7139 the file name format is passed to `format-time-string'.
f6bfc063 7140
e55d3b04
LL
71412013-04-26 Leo Liu <sdl.web@gmail.com>
7142
7143 * progmodes/octave.el (octave-sync-function-file-names): New function.
7144 (octave-mode): Use it in before-save-hook.
7145
e53052d3
SM
71462013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
7147
140ef50c
SM
7148 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
7149 (bug#14274).
7150
e53052d3
SM
7151 * progmodes/octave.el (octave-smie-forward-token): Properly skip
7152 \n and comment, even if it's not an implicit ; (bug#14218).
7153
af80458d 71542013-04-26 Glenn Morris <rgm@gnu.org>
e5271cf2
GM
7155
7156 * subr.el (read-number): Once more use `read' rather than
7157 `string-to-number', to trap non-numeric input. (Bug#14254)
7158
af80458d 71592013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
70203c2e
EC
7160
7161 * emacs-lisp/syntax.el (syntax-propertize-multiline):
7162 Use `syntax-multiline' text property consistently instead of
8a621d53 7163 `font-lock-multiline'. (Bug#14237)
70203c2e 7164
e6ea1f6c
GM
71652013-04-26 Glenn Morris <rgm@gnu.org>
7166
7167 * emacs-lisp/shadow.el (list-load-path-shadows):
7168 No longer necessary to check for duplicate simple.el, since
7169 2012-07-07 change to init_lread to not include installation lisp
7170 directories in load-path when running uninstalled. (Bug#14270)
7171
070ccca4
LL
71722013-04-26 Leo Liu <sdl.web@gmail.com>
7173
7174 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
7175 (octave-mode, inferior-octave-mode): Use setq-local.
e53052d3 7176 (octave-not-in-string-or-comment-p): Rename to
070ccca4
LL
7177 octave-in-string-or-comment-p.
7178 (octave-in-comment-p, octave-in-string-p)
7179 (octave-in-string-or-comment-p): Replace defsubst with defun.
7180
9d1c5fb6
PE
71812013-04-25 Paul Eggert <eggert@cs.ucla.edu>
7182
7183 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
7184
c034abda
BG
71852013-04-25 Bastien Guerry <bzg@gnu.org>
7186
7187 * textmodes/remember.el (remember-data-directory)
7188 (remember-directory-file-name-format): Fix custom types.
7189
584ea277
LL
71902013-04-25 Leo Liu <sdl.web@gmail.com>
7191
e53052d3
SM
7192 * progmodes/octave.el (octave-completion-at-point-function):
7193 Make use of inferior octave process.
584ea277
LL
7194 (octave-initialize-completions): Remove.
7195 (inferior-octave-completion-table): New function.
7196 (inferior-octave-completion-at-point): Use it.
7197 (octave-completion-alist): Remove.
7198
1693b06a
SM
71992013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7200
7201 * progmodes/opascal.el: Use font-lock and syntax-propertize.
7202 (opascal-mode-syntax-table): New var.
7203 (opascal-literal-kind, opascal-is-literal-end)
7204 (opascal-literal-token-at): Rewrite.
7205 (opascal--literal-start-re, opascal-font-lock-keywords)
7206 (opascal--syntax-propertize): New constants.
7207 (opascal-font-lock-defaults): Adjust.
7208 (opascal-mode): Use them. Set comment-<foo> variables as well.
7209 (delphi-comment-face, opascal-comment-face, delphi-string-face)
7210 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
7211 (delphi-other-face, opascal-other-face): Remove face variables.
7212 (opascal-save-state): Remove macro.
7213 (opascal-fontifying-progress-step): Remove constant.
7214 (opascal--ignore-changes): Remove var.
7215 (opascal-set-token-property, opascal-parse-next-literal)
7216 (opascal-is-stable-literal, opascal-complete-literal)
7217 (opascal-is-literal-start, opascal-face-of)
7218 (opascal-parse-region, opascal-parse-region-until-stable)
7219 (opascal-fontify-region, opascal-after-change)
7220 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
7221 (opascal-debug-parse-region, opascal-debug-parse-window)
7222 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
7223 (opascal-debug-fontify-buffer): Remove.
7224 (opascal-debug-mode-map): Adjust accordingly.
7225
be64c05d
LL
72262013-04-25 Leo Liu <sdl.web@gmail.com>
7227
7228 Merge octave-mod.el and octave-inf.el into octave.el with some
7229 cleanups.
7230 * progmodes/octave.el: New file renamed from octave-mod.el.
7231 * progmodes/octave-inf.el: Merged into octave.el.
7232 * progmodes/octave-mod.el: Renamed to octave.el.
7233
d79d37bd
TH
72342013-04-25 Tassilo Horn <tsdh@gnu.org>
7235
7236 * textmodes/reftex-vars.el
7237 (reftex-label-ignored-macros-and-environments): New defcustom.
7238
7239 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
7240
ced3fc5d
SM
72412013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
7242
7243 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
7244 (smie-indent-keyword): Improve the check to ensure that the next
7245 comment is really on the same line.
7246 (smie-indent-comment): Don't align with a subsequent closer (or eob).
7247
7248 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
7249 semi-colons if the line is not otherwise empty (bug#14218).
7250
1c141dad
GM
72512013-04-25 Glenn Morris <rgm@gnu.org>
7252
7253 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
7254
5058062a
SM
72552013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
7256
7257 * progmodes/opascal.el (opascal-set-token-property): Rename from
7258 opascal-set-text-properties and only set `token' (bug#14134).
7259 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
7260 (opascal-literal-text-properties): Remove.
7261 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
7262 Adjust callers.
7263
5db9dace 72642013-04-24 Reuben Thomas <rrt@sc3d.org>
1ffefcf9
BG
7265
7266 * textmodes/remember.el (remember-handler-functions): Add an
7267 option for a new handler `remember-store-in-files'.
7268 (remember-data-directory, remember-directory-file-name-format):
7269 New options.
7270 (remember-store-in-files): New function to store remember notes
7271 as separate files within a directory.
7272
4391916c
MH
72732013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
7274
7275 * progmodes/compile.el (compilation-next-error-function):
7276 Pass "formats" to compilation-find-file (bug#11777).
7277
bb7cdf58
GM
72782013-04-24 Glenn Morris <rgm@gnu.org>
7279
3b8fe752 7280 * vc/vc-bzr.el (vc-bzr-print-log):
90b4237a
GM
7281 * vc/vc-hg.el (vc-hg-print-log):
7282 * vc/vc-svn.el (vc-svn-print-log):
7283 Fix START-REVISION with LIMIT != 1. (Bug#14168)
7284
bb7cdf58
GM
7285 * vc/vc-bzr.el (vc-bzr-print-log):
7286 * vc/vc-cvs.el (vc-cvs-print-log):
7287 * vc/vc-git.el (vc-git-print-log):
7288 * vc/vc-hg.el (vc-hg-print-log):
7289 * vc/vc-mtn.el (vc-mtn-print-log):
7290 * vc/vc-rcs.el (vc-rcs-print-log):
7291 * vc/vc-sccs.el (vc-sccs-print-log):
7292 * vc/vc-svn.el (vc-svn-print-log):
7293 * vc/vc.el (vc-print-log-internal): Doc fixes.
7294
b46a056e
GM
72952013-04-23 Glenn Morris <rgm@gnu.org>
7296
7297 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
7298 Remove venerable code attempting to avoid substitute-command-keys.
7299
0aecf718
TH
73002013-04-23 Tassilo Horn <tsdh@gnu.org>
7301
4391916c
MH
7302 * textmodes/reftex-vars.el (reftex-label-regexps):
7303 Call `reftex-compile-variables' after changes to this variable.
0aecf718 7304
117f94cf
SM
73052013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7306
4391916c 7307 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
117f94cf
SM
7308 Use lexical-binding.
7309 (jit-lock-force-redisplay): Use markers, check buffer's continued
7310 existence and beware narrowed buffers.
7311 (jit-lock-fontify-now): Adjust call accordingly.
7312
1d829c64
SM
73132013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
7314
7315 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
7316 to avoid misleading the user.
7317
72d548a9
LL
73182013-04-22 Leo Liu <sdl.web@gmail.com>
7319
7320 * info-look.el: Prefer latex2e.info. (Bug#14240)
7321
d0853629
MA
73222013-04-22 Michael Albinus <michael.albinus@gmx.de>
7323
7324 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
7325
7326 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
4f405069 7327 * net/tramp.el (tramp-call-process): ... here.
d0853629
MA
7328 (tramp-set-completion-function, tramp-parse-putty):
7329 * net/tramp-adb.el (tramp-adb-execute-adb-command):
7330 * net/tramp-gvfs.el (tramp-gvfs-send-command):
7331 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
7332 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
7333 (tramp-call-local-coding-command): Use `tramp-call-process'
7334 instead of `tramp-compat-call-process'.
7335
7336 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
7337 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
7338 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
7764286e 7339 (tramp-find-inline-compress): Improve traces.
d0853629
MA
7340 (tramp-maybe-send-script): Check for Perl binary.
7341 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
7342
38cc0210
DU
73432013-04-22 Daiki Ueno <ueno@gnu.org>
7344
7345 * epg.el (epg-context-pinentry-mode): New function.
7346 (epg-context-set-pinentry-mode): New function.
7347 (epg--start): Pass --pinentry-mode option to gpg command.
7348
cc641ee1
XF
73492013-04-21 Xue Fuqiao <xfq.free@gmail.com>
7350
02d844b5 7351 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
5d4e5c31 7352 `comint-dynamic-complete' is obsolete since 24.1, replaced by
e7b41c4c 7353 `completion-at-point'. (Bug#13774)
5d4e5c31 7354
cc641ee1
XF
7355 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
7356 default key binding for `describe-distribution' has been moved to
7357 `C-h C-o'. (Bug#13970)
7358
1b42ee43
GM
73592013-04-21 Glenn Morris <rgm@gnu.org>
7360
7361 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
7362 Add doc strings.
7363 (vc-print-log): Clarify interactive prompt.
7364
a6d63d97
GM
73652013-04-20 Glenn Morris <rgm@gnu.org>
7366
7367 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7368 No longer include timestamp etc information.
7369
d7f5c16f
RW
73702013-04-20 Roland Winkler <winkler@gnu.org>
7371
7372 * faces.el (read-face-name): Bug fix, return just one face if arg
7373 multiple is nil. (Bug#14209)
7374
bcd7a0a4
SM
73752013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7376
7377 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
7378 (remove-function): Autoload.
7379
7380 * comint.el (comint-redirect-original-filter-function): Remove.
7381 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
e7b41c4c
JB
7382 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
7383 (vc-cvs-annotate-command):
bcd7a0a4
SM
7384 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
7385 * progmodes/prolog.el (prolog-consult-compile):
7386 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
7387 Use add/remove-function instead.
7388 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
7389 (gud-tooltip-process-output, gud-tooltip-tips):
7390 Use add/remove-function instead.
7391 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
7392 (scheme-interaction-mode, exit-scheme-interaction-mode):
7393 Use add/remove-function instead.
7394
7395 * vc/vc-dispatcher.el: Use lexical-binding.
7396 (vc--process-sentinel): Rename from vc-process-sentinel.
7397 Change last arg to be the code to run. Don't use vc-previous-sentinel
7398 and vc-sentinel-commands any more.
7399 (vc-exec-after): Allow code to be a function. Use add/remove-function.
7400 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
7401
e36b2d20 74022013-04-19 Masatake YAMATO <yamato@redhat.com>
4d3268ba 7403
bcd7a0a4 7404 * progmodes/sh-script.el (sh-imenu-generic-expression):
781b4af6 7405 Handle function names with a single character. (Bug#14111)
4d3268ba 7406
781b4af6 74072013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
863beb27
DK
7408
7409 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
7410 for subroutines defined in an eval (bug#14182).
7411
7d688336
TV
74122013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7413
7414 * bookmark.el (bookmark-completing-read): Improve handling of empty
7415 string (bug#14176).
7416
31dcede0
SM
74172013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7418
7419 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
7420
adc31213
FEG
74212013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
7422
7423 New faster Imenu implementation (bug#14058).
7424 * progmodes/python.el:
7425 (python-imenu-prev-index-position):
7426 (python-imenu-format-item-label-function)
7427 (python-imenu-format-parent-item-label-function)
7428 (python-imenu-format-parent-item-jump-label-function):
7429 New vars.
7430 (python-imenu-format-item-label)
7431 (python-imenu-format-parent-item-label)
7432 (python-imenu-format-parent-item-jump-label)
7433 (python-imenu--put-parent, python-imenu--build-tree)
7434 (python-imenu-create-index, python-imenu-create-flat-index)
7435 (python-util-popn): New functions.
7436 (python-mode): Set imenu-create-index-function to
7437 python-imenu-create-index.
7438
cdca8255
SM
74392013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7440
7441 * winner.el (winner-active-region): Use region-active-p, activate-mark
7442 and deactivate-mark (bug#14225).
7443
7444 * simple.el (deactivate-mark): Don't inline it.
7445
beb42340
MA
74462013-04-18 Michael Albinus <michael.albinus@gmx.de>
7447
7448 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
7449
fc7f4d7e
TH
74502013-04-18 Tassilo Horn <tsdh@gnu.org>
7451
7452 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
7453 file extensions from the archive-mode entry in order to prefer
7454 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
7455
29f47822
LL
74562013-04-18 Leo Liu <sdl.web@gmail.com>
7457
7458 * bindings.el (help-event-list): Add ?\?.
7459
d36ed1c8
SM
74602013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7461
7462 * subr.el (with-wrapper-hook): Declare obsolete.
7463 * simple.el (filter-buffer-substring-function): New hook.
7464 (filter-buffer-substring): Use it.
7465 (filter-buffer-substring-functions): Mark obsolete.
7466 * minibuffer.el (completion-in-region-function): New hook.
7467 (completion-in-region): Use it.
7468 (completion-in-region-functions): Mark obsolete.
7469 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
7470 * abbrev.el (abbrev-expand-function): New hook.
7471 (expand-abbrev): Use it.
7472 (abbrev-expand-functions): Mark obsolete.
7473 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
7474 and :filter-return.
7475
04754d36
FEG
74762013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
7477
7478 * progmodes/python.el (python-nav--syntactically): Fix cornercases
7479 and do not care about match data.
7480
dd8791e9
SM
74812013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
7482
7483 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
7484 completion tables when completing error conditions and
7485 `declare' arguments.
7486 (lisp-complete-symbol, field-complete): Mark as obsolete.
7487 (check-parens): Unmatched parens are user errors.
7488 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
7489
ffe54a13
AM
74902013-04-17 Michal Nazarewicz <mina86@mina86.com>
7491
dd8791e9
SM
7492 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
7493 command changed buffer (ie. `flyspell-pre-buffer' is not current
7494 buffer), which prevents making decisions based on invalid value of
7495 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
7496 cause an error when `flyspell-pre-point' was nil after switching
7497 buffers.
7498 (flyspell-post-command-hook): No longer needs to change buffers when
7499 checking pre-word. While at it remove unnecessary progn.
ffe54a13 7500
ec7e39f2
AM
75012013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
7502
7503 * textmodes/ispell.el (ispell-add-per-file-word-list):
7504 Fix `flyspell-correct-word-before-point' error when accepting
7505 words and `coment-padding' is an integer by using
7506 `comment-normalize-vars' (Bug #14214).
7507
083850a6
FEG
75082013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
7509
7510 New defun movement commands.
7511 * progmodes/python.el (python-nav--syntactically)
7512 (python-nav--forward-defun, python-nav-backward-defun)
7513 (python-nav-forward-defun): New functions.
7514
619ed6e1
FEG
75152013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
7516
7517 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
7518 (python-syntax-context): Use named compiler-macro for backwards
7519 compatibility with Emacs 24.x.
7520
7a1beb6c
LL
75212013-04-17 Leo Liu <sdl.web@gmail.com>
7522
7523 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
7524 octave-hide-process-buffer.
7525
2d3fa3e5
SM
75262013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
7527
7528 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
7529 (bug#14216).
7530
7ce5be54
JPG
75312013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
7532
7533 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
7534 Fix adjustment of offset when receiving incomplete responses from GDB
7535 (bug#14129).
7536
351edece
SM
75372013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
7538
7539 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
7540 python-mode-abbrev-table.
7541 (python-skeleton-define): Adjust accordingly.
7542 (python-mode-abbrev-table): New table that inherits from it so that
7543 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
7544
7545 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
7546 (abbrev-symbol): Use it.
7547 (abbrev--before-point): Use it since we already handle inheritance.
7548
613f9481
LL
75492013-04-16 Leo Liu <sdl.web@gmail.com>
7550
7551 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
7552 binding to info-lookup-symbol.
7553
51646b62
JB
75542013-04-16 Juanma Barranquero <lekktu@gmail.com>
7555
7556 * minibuffer.el (completion--twq-all):
7557 * term/ns-win.el (ns-initialize-window-system):
7558 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
7559
efb3f01d
SM
75602013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
7561
36c0a301
SM
7562 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
7563 global bindings.
7564
efb3f01d
SM
7565 * doc-view.el (doc-view-start-process): Handle url-handler directories.
7566
fb549d64
DG
75672013-04-15 Dmitry Gutov <dgutov@yandex.ru>
7568
7569 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
7570 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
7571 to nil.
7572 (ruby-end-of-defun): Remove the unused arg, change the docstring
7573 to reflect that this function is only used as the value of
7574 `end-of-defun-function'.
7575 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
7576 to reflect an earlier change that beginning/end-of-defun functions
7577 jump between methods in a class definition, as well as top-level
7578 functions.
7579
21e8fe2f
SM
75802013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
7581
7582 * minibuffer.el (minibuffer-complete): Don't just scroll
7583 a *Completions* that's been iconified.
7584 (minibuffer-force-complete): Make sure repetitions do cycle when going
7585 through completion-in-region -> minibuffer-complete.
7586
20e527d0
AM
75872013-04-15 Alan Mackenzie <acm@muc.de>
7588
7589 Correct the placement of c-cpp-delimiters when there're #s not at
7590 col 0.
7591
7592 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
7593 place a submatch around the #.
21e8fe2f
SM
7594 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
7595 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
20e527d0
AM
7596 on the #, not BOL.
7597
dabefae5
SM
75982013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
7599
7600 * emacs-lisp/nadvice.el: Properly test names when adding advice.
7601 (advice--member-p): New arg `name'.
7602 (advice--add-function, advice-member-p): Use it (bug#14202).
7603
85c9ab64
AM
76042013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
7605
7606 Reformulate java imenu-generic-expression.
7607 The old expression contained ill formed regexps.
7608
7609 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
7610 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
7611 (cc-imenu-java-method-arg-regexp): New defconsts.
7612 (cc-imenu-java-build-type-args-regex): New defun.
dabefae5 7613 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
85c9ab64
AM
7614 handling of spaces in the regexp.
7615
0f821d99
AM
76162013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7617
7618 * textmodes/ispell.el (ispell-command-loop): Remove
7619 flyspell highlight of a word when ispell accepts it (bug #14178).
7620
eb922adf
MA
76212013-04-15 Michael Albinus <michael.albinus@gmx.de>
7622
7623 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
7624 uses code from the previous `ange-ftp-run-real-handler'.
7625 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
7626 only in case that function exist. This is needed for proper
7627 unloading of Tramp.
7628
4d9a0979
TH
76292013-04-15 Tassilo Horn <tsdh@gnu.org>
7630
7631 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
7632
7633 * textmodes/reftex.el (reftex-compile-variables): Use it.
7634
a829b0dc
SM
76352013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
7636
91e8293c
SM
7637 * files.el (normal-mode): Only use default major-mode if no other mode
7638 was specified.
7639
830aed4d
SM
7640 * emacs-lisp/trace.el (trace-values): New function.
7641
a829b0dc
SM
7642 * files.el: Allow : in local variables (bug#14089).
7643 (hack-local-variable-regexp): New var.
7644 (hack-local-variables-prop-line, hack-local-variables): Use it.
7645
7ae9f0fb
RW
76462013-04-13 Roland Winkler <winkler@gnu.org>
7647
7648 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
7649 data before it gets modified by bibtex-beginning-of-entry.
7650
6646e848
RW
76512013-04-13 Roland Winkler <winkler@gnu.org>
7652
7653 * textmodes/bibtex.el (bibtex-url): Doc fix.
7654
76552013-04-13 Roland Winkler <winkler@gnu.org>
23a0e159
RW
7656
7657 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
7658 does not visit a BibTeX file, exclude it from the list of buffers
7659 returned by bibtex-initialize.
7660
0aa3616e
SB
76612013-04-13 Stephen Berman <stephen.berman@gmx.net>
7662
7663 * window.el (split-window): Remove interactive form, since as a
7664 command this function is a special case of split-window-below.
7665 Correct doc string.
7666
011cddd6
RW
76672013-04-12 Roland Winkler <winkler@gnu.org>
7668
7669 * faces.el (read-face-name): Do not override value of arg default.
7670 Allow single faces and strings as default values. Remove those
7671 elements from return value that are not faces.
7672 (describe-face): Simplify.
7673 (face-at-point): New optional args thing and multiple so that this
7674 function can provide the same functionality previously provided by
7675 read-face-name.
7676 (make-face-bold, make-face-unbold, make-face-italic)
7677 (make-face-unitalic, make-face-bold-italic, invert-face)
7678 (modify-face, read-face-and-attribute): Use face-at-point.
7679
7680 * cus-edit.el (customize-face, customize-face-other-window)
7681 * cus-theme.el (custom-theme-add-face)
7682 * face-remap.el (buffer-face-set)
7683 * facemenu.el (facemenu-set-face): Use face-at-point.
7684
f24e0036
MA
76852013-04-12 Michael Albinus <michael.albinus@gmx.de>
7686
7687 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
7688
da3cda2d
TH
76892013-04-10 Tassilo Horn <tsdh@gnu.org>
7690
7691 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
7692 off leading { and trailing } from field values.
7693
15e54145
SM
76942013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
7695
78ce603d
SM
7696 * emacs-lisp/timer.el (timer--check): New function.
7697 (timer--time, timer-set-function, timer-event-handler): Use it.
7698 (timer-set-idle-time): Simplify.
7699 (timer--activate): CSE.
7700 (timer-event-handler): Give more info in error message.
7701 (internal-timer-start-idle): New function, moved from C.
7702
15e54145
SM
7703 * mpc.el (mpc-proc): Add `restart' argument.
7704 (mpc-proc-cmd): Use it.
7705 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
7706 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
7707 less often.
7708
7144c627
MY
77092013-04-10 Masatake YAMATO <yamato@redhat.com>
7710
7711 * progmodes/sh-script.el: Implement `sh-mode' own
7712 `add-log-current-defun-function' (bug#14112).
7713 (sh-current-defun-name): New function.
7714 (sh-mode): Use the function.
7715
b39792eb
BG
77162013-04-09 Bastien Guerry <bzg@gnu.org>
7717
7718 * simple.el (choose-completion-string): Fix docstring (bug#14163).
7719
8acdeb71
SM
77202013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
7721
6fcdab68
SM
7722 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
7723
8acdeb71
SM
7724 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
7725 timer (bug#14156).
7726
e3e7b504
NF
77272013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
7728
7729 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
7730 declaration.
7731
201bb296
LL
77322013-04-07 Leo Liu <sdl.web@gmail.com>
7733
7734 * pcmpl-x.el: New file.
7735
ebb19708
DA
77362013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
7737
7738 Do not set x-display-name until X connection is established.
7739 This is needed to prevent from weird situation described at
7740 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
7741 * frame.el (make-frame): Set x-display-name after call to
7742 window system initialization function, not before.
7743 * term/x-win.el (x-initialize-window-system): Add optional
7744 display argument and use it.
7745 * term/w32-win.el (w32-initialize-window-system):
7746 * term/ns-win.el (ns-initialize-window-system):
7747 * term/pc-win.el (msdos-initialize-window-system):
7748 Add compatible optional display argument.
7749
33bb237a
EZ
77502013-04-06 Eli Zaretskii <eliz@gnu.org>
7751
7752 * files.el (normal-backup-enable-predicate): On MS-Windows and
7753 MS-DOS compare truenames of temporary-file-directory and of the
7754 file, so that 8+3 aliases (usually found in $TEMP on Windows)
7755 don't fail comparison by compare-strings. Also, compare file
7756 names case-insensitively on MS-Windows and MS-DOS.
7757
134abf1f
SM
77582013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
7759
7760 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
7761 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
7762
d695cb94
DG
77632013-04-05 Dmitry Gutov <dgutov@yandex.ru>
7764
e3e7b504
NF
7765 * whitespace.el (whitespace-color-on, whitespace-color-off):
7766 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
d695cb94 7767
f4ad7ea1 77682013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
7e268e90
AM
7769
7770 * ispell.el (ispell-set-spellchecker-params):
7771 Really set `ispell-args' for all equivs.
7772
632556e4
SM
77732013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
7774
7775 * ido.el (ido-completions): Use extra elements of ido-decorations
7776 (bug#14143).
7777 (ido-decorations): Update docstring.
7778
2a417372
MA
77792013-04-05 Michael Albinus <michael.albinus@gmx.de>
7780
7781 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7782 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
7783 nil during initialization, in order not to miss changes since the
7784 file was opened. (Bug#14140)
7785
fc164b0c
LL
77862013-04-05 Leo Liu <sdl.web@gmail.com>
7787
7788 * kmacro.el (kmacro-call-macro): Fix bug#14135.
7789
0ccecc08
JB
77902013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
7791
7792 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
7793
51af1aa2
GM
77942013-04-04 Glenn Morris <rgm@gnu.org>
7795
7796 * electric.el (electric-pair-inhibit-predicate): Add :version.
7797
b208ebc6
SM
77982013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
7799
7800 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
7801 when a package is required several times (bug#14082).
7802
f3d3eaf0
RW
78032013-04-04 Roland Winkler <winkler@gnu.org>
7804
7805 * faces.el (read-face-name): Behave as promised by the docstring.
7806 Assume that arg default is a list of faces.
7807 (describe-face): Call read-face-name with list of default faces.
7808
2575da50
TV
78092013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7810
7811 * bookmark.el: Fix deletion of bookmarks (bug#13972).
7812 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
7813 (bookmark-bmenu-execute-deletions): Only skip first line if it's
7814 the header.
7815 (bookmark-exit-hook-internal): Save even if list is empty.
7816
397703b4
YH
78172013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
7818
7819 * emacs-lisp/package.el (package-pinned-packages): New var.
7820 (package--add-to-archive-contents): Obey it (bug#14118).
7821
691e26ae
AM
78222013-04-03 Alan Mackenzie <acm@muc.de>
7823
8a621d53
JB
7824 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
7825 Also adapt to the new values of element 7 of a parse state.
691e26ae
AM
7826
7827 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
7828 parameter `not-in-delimiter'. Handle being inside comment opener.
7829 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
7830 character in case we're typing a '*' after a '/'.
7831 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
7832 instead by passing the parameter to c-state-pp-to-literal.
7833
7834 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
7835 for elt. 7 of a parse state.
7836
4b725a70
PE
78372013-04-01 Paul Eggert <eggert@cs.ucla.edu>
7838
7839 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
7840 * international/latin1-disp.el, international/mule-util.el:
7841 * language/cyril-util.el, language/european.el, language/ind-util.el:
7842 * language/lao-util.el, language/thai.el, language/tibet-util.el:
7843 * language/tibetan.el, language/viet-util.el:
7844 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
7845
15c579f0
SM
78462013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
7847
7848 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
7849 (electric-pair-post-self-insert-function): Use it.
7850 (electric-pair-default-inhibit): New function, extracted from
7851 electric-pair-post-self-insert-function.
7852
a77e2924
RW
78532013-03-31 Roland Winkler <winkler@gnu.org>
7854
7855 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
7856
2bd8a4a8
SM
78572013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7858
7859 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
7860
8d3655be 78612013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
c9886b39
FEG
7862
7863 Un-indent after "pass" and "return" statements (Bug#13888)
7864 * progmodes/python.el (python-indent-block-enders): New var.
7865 (python-indent-calculate-indentation): Use it.
7866
8d3655be 78672013-03-30 Michael Albinus <michael.albinus@gmx.de>
4430bd53
MA
7868
7869 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
7870 defun. Defining it as defalias could introduce too eager
7871 byte-compiler optimization. (Bug#14030)
7872
8d3655be 78732013-03-30 Chong Yidong <cyd@gnu.org>
89468837
CY
7874
7875 * iswitchb.el (iswitchb-read-buffer): Fix typo.
7876
0b1619da
LL
78772013-03-30 Leo Liu <sdl.web@gmail.com>
7878
7879 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
7880 (kmacro-execute-from-register): Pass the keyboard macro to
7881 kmacro-call-macro or repeating won't work correctly.
7882
0b938190
TZ
78832013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
7884
7885 * progmodes/subword.el: Back to using `forward-symbol'.
7886
7887 * subr.el (forward-whitespace, forward-symbol)
7888 (forward-same-syntax): Move from thingatpt.el.
7889
35710234
LL
78902013-03-29 Leo Liu <sdl.web@gmail.com>
7891
7892 * kmacro.el (kmacro-to-register): New command.
7893 (kmacro-execute-from-register): New function.
7894 (kmacro-keymap): Bind to 'x'. (Bug#14071)
7895
efc0bb73
SM
78962013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
7897
7898 * mpc.el: Use defvar-local and setq-local.
7899 (mpc--proc-connect): Connection failures are not bugs.
7900 (mpc-mode-map): `follow-link' only applies to the buffer's content.
7901 (mpc-volume-map): Bind to the up-events.
7902
75a2f981
TZ
79032013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
7904
7905 * progmodes/subword.el (superword-mode): Use `forward-sexp'
7906 instead of `forward-symbol'.
7907
17c781d1
SM
79082013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7909
7910 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
7911 (edebug--recursive-edit): Use it.
7912 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
7913 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
7914
f67bfbcf
LL
79152013-03-28 Leo Liu <sdl.web@gmail.com>
7916
7917 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
7918
b59f639d
EZ
79192013-03-27 Eli Zaretskii <eliz@gnu.org>
7920
7921 * facemenu.el (list-colors-callback): New defvar.
7922 (list-colors-redisplay): New function.
7923 (list-colors-display): Install list-colors-redisplay as the
7924 revert-buffer-function. (Bug#14063)
7925
f557c1b1
SM
79262013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
7927
b1da2957
SM
7928 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
7929 and suffixes don't overlap (bug#14061).
7930
f557c1b1
SM
7931 * case-table.el: Use lexical-binding.
7932 (case-table-get-table): New function.
7933 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
7934
002668e1
TZ
79352013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
7936
7937 * progmodes/subword.el: Add `superword-mode' to do word motion
7938 over symbol_words (parallels and leverages `subword-mode' which
7939 does word motion inside MixedCaseWords).
7940
73572c72
AG
79412013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
7942
78b8f320 7943 * eshell/em-unix.el: Move su and sudo to...
f4ad7ea1 7944 * eshell/em-tramp.el: ...Eshell tramp module.
73572c72 7945
69b2c07e
SM
79462013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
7947
7948 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
7949 Change return value to be a sexp. Delay `get-buffer' to after
7950 restoring the desktop (bug#13951).
7951
08bb5ee2
LL
79522013-03-26 Leo Liu <sdl.web@gmail.com>
7953
7954 * register.el: Move semantic tag handling back to
7955 cedet/semantic/senator.el. (Bug#14052)
7956
8d4c974e
SM
79572013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
7958
7959 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
7960 into the prompt either (bug#13963).
7961
b234d92c
SM
79622013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
7963
7964 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
7965 part of "(error-foo)".
7966
ddfa3cb4
JL
79672013-03-24 Juri Linkov <juri@jurta.org>
7968
7969 * replace.el (list-matching-lines-prefix-face): New defcustom.
7970 (occur-1): Pass `list-matching-lines-prefix-face' to the function
7971 `occur-engine' if `face-differs-from-default-p' returns t.
7972 (occur-engine): Add `,' inside backquote construct to evaluate
7973 `prefix-face'. Propertize the prefix with the `prefix-face' face.
7974 Pass `prefix-face' to the functions `occur-context-lines' and
7975 `occur-engine-add-prefix'.
7976 (occur-engine-add-prefix, occur-context-lines): Add optional arg
7977 `prefix-face' and propertize the prefix with `prefix-face'.
7978 (Bug#14017)
7979
7b0e2f85
LL
79802013-03-24 Leo Liu <sdl.web@gmail.com>
7981
7982 * nxml/rng-valid.el (rng-validate-while-idle)
7983 (rng-validate-quick-while-idle): Guard against deleted buffer.
7984 (Bug#13999)
7985
7986 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
7987 is the last entry in kill-buffer-hook.
7988
7989 * files.el (kill-buffer-hook): Doc fix.
7990
b3082f49
DG
79912013-03-23 Dmitry Gutov <dgutov@yandex.ru>
7992
b234d92c
SM
7993 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
7994 Make it safe-local.
bde73d27 7995
b3082f49
DG
7996 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
7997
a320a2db
LL
79982013-03-23 Leo Liu <sdl.web@gmail.com>
7999
7e74b0fb
LL
8000 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
8001 Remove.
8002
8003 * nxml/rng-valid.el (rng-validate-mode)
8004 (rng-after-change-function, rng-do-some-validation):
8005 * nxml/rng-maint.el (rng-validate-buffer):
8006 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
8007 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
8008 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
8009 (nxml-extend-after-change-region): Use with-silent-modifications.
8010
a320a2db
LL
8011 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
8012 timer-idle-list.
8013
8014 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
8015 (rng-next-error-1, rng-previous-error-1): Do not let-bind
8016 timer-idle-list. (Bug#13999)
8017
e38e6780
JL
80182013-03-23 Juri Linkov <juri@jurta.org>
8019
8020 * info.el (info-index-match): New face.
8021 (Info-index, Info-apropos-matches): Add a nested subgroup to the
8022 main pattern and add text properties with the new face to matches
8023 in index entries relative to the beginning of the index entry.
8024 (Bug#14015)
8025
e8cc7880
DE
80262013-03-21 Eric Ludlam <zappo@gnu.org>
8027
8028 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
8029 Inhibit read only while inserting objects.
8030
9bb0d822
TZ
80312013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
8032
8033 * progmodes/cfengine.el: Update docs to mention
8034 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
8035 symbol motion. Remove "_" from the word syntax.
8036
aa703640
TZ
80372013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
8038
8039 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
8040 syntax for both `cfengine2-mode' and `cfengine3-mode'.
8041
afff09d0
JL
80422013-03-20 Juri Linkov <juri@jurta.org>
8043
8044 * info.el (Info-next-reference-or-link)
8045 (Info-prev-reference-or-link): New functions.
8046 (Info-next-reference, Info-prev-reference): Use them.
8047 (Info-try-follow-nearest-node): Handle footnote navigation.
8048 (Info-fontify-node): Fontify footnotes. (Bug#13989)
8049
9a1ff164
SM
80502013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8051
8052 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
8053 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
8054
2667d15d
PE
80552013-03-20 Paul Eggert <eggert@cs.ucla.edu>
8056
8057 Suppress unnecessary non-ASCII chatter during build process.
8058 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
8059 (batch-skkdic-convert): Suppress most of the chatter.
8060 It's not needed so much now that machines are faster,
8061 and its non-ASCII component was confusing; see Dmitry Gutov in
8062 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
8063
438b0579
LL
80642013-03-20 Leo Liu <sdl.web@gmail.com>
8065
8066 * ido.el (ido-chop): Fix bug#10994.
8067
c128ab07
DG
80682013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8069
8070 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
8071 Remove vars.
9a1ff164
SM
8072 (whitespace-color-on, whitespace-color-off):
8073 Use `font-lock-fontify-buffer' (Bug#13817).
c128ab07 8074
0e6008c5
SM
80752013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
8076
8077 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
8078 remapping in mode-line.
8079 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
8080
627b52b0
DG
80812013-03-19 Dmitry Gutov <dgutov@yandex.ru>
8082
8083 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
8084 value for `whitespace-line' face (Bug#13875).
7ec31b02
DG
8085 (whitespace-font-lock-keywords): Change description.
8086 (whitespace-color-on): Don't save `font-lock-keywords' value, save
8087 the constructed keywords instead.
8088 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
627b52b0 8089
50c3a20b
LL
80902013-03-19 Leo Liu <sdl.web@gmail.com>
8091
8092 * progmodes/compile.el (compilation-display-error): New command.
8093 (compilation-mode-map, compilation-minor-mode-map): Bind it to
8094 C-o. (Bug#13992)
8095
2aa2157b
PE
80962013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8097
8098 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
8099
e477dbfa
JD
81002013-03-18 Jan Djärv <jan.h.d@swipnet.se>
8101
8102 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
8103
64ab82d1
MA
81042013-03-18 Michael Albinus <michael.albinus@gmx.de>
8105
8106 * net/tramp-compat.el (tramp-compat-user-error): New defun.
8107
8108 * net/tramp-adb.el (tramp-adb-handle-shell-command):
8109 * net/tramp-gvfs.el (top):
8110 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
8111 (tramp-handle-shell-command): Use it.
8112 (tramp-dissect-file-name): Raise an error when hostname is a
8113 method name, and neither method nor user is specified.
8114
8115 * net/trampver.el: Update release number.
8116
33cef733
LL
81172013-03-18 Leo Liu <sdl.web@gmail.com>
8118
8119 Make sure eldoc can be turned off properly.
8120 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
8121 eldoc-mode.
8122 (eldoc-display-message-p): Revert last change.
8123 (eldoc-display-message-no-interference-p)
8124 (eldoc-print-current-symbol-info): Tweak.
8125
2167b7b2
TH
81262013-03-18 Tassilo Horn <tsdh@gnu.org>
8127
8128 * doc-view.el (doc-view-new-window-function): Check the new window
8129 overlay's display property instead the char property of the
8130 buffer's first char. Use `with-selected-window' instead of
8131 `save-window-excursion' with `select-window'.
8132 (doc-view-document->bitmap): Check the current doc-view overlay's
9a1ff164 8133 display property instead the char property of the buffer's first char.
2167b7b2 8134
982efbcd
PE
81352013-03-18 Paul Eggert <eggert@cs.ucla.edu>
8136
8137 Automate the build of ja-dic.el (Bug#13984).
8138 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
8139 from the input, rather than assume that it's been done for us by the
8140 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
8141 the current date into a ja-dic.el comment, as that complicates
8142 regression testing.
8143
2fcc7665
SM
81442013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
8145
8146 * whitespace.el: Fix double evaluation.
8147 (whitespace-space, whitespace-hspace, whitespace-tab)
8148 (whitespace-newline, whitespace-trailing, whitespace-line)
8149 (whitespace-space-before-tab, whitespace-indentation)
8150 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
8151 obsolete defvars.
8152 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
8153 (whitespace-color-on): Use a single font-lock-add-keywords call.
8154 Fix double-evaluation of face variables.
8155
67c0a6e6
MA
81562013-03-17 Michael Albinus <michael.albinus@gmx.de>
8157
2fcc7665
SM
8158 * net/tramp-adb.el (tramp-adb-parse-device-names):
8159 Use `start-process' instead of `call-process'. Otherwise, the
8194a705 8160 function might be blocked under MS Windows. (Bug#13299)
67c0a6e6 8161
69489f1d
LL
81622013-03-17 Leo Liu <sdl.web@gmail.com>
8163
8164 Extend eldoc to display info in the mode-line. (Bug#13978)
8165 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
8166 (eldoc-mode-line-string): New variable.
8167 (eldoc-minibuffer-message): New function.
8168 (eldoc-message-function): New variable.
8169 (eldoc-message): Use it.
8170 (eldoc-display-message-p)
2fcc7665
SM
8171 (eldoc-display-message-no-interference-p):
8172 Support eldoc-post-insert-mode.
69489f1d
LL
8173
8174 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
8175 (eval-expression): Run it.
8176
9c44569e
RW
81772013-03-17 Roland Winkler <winkler@gnu.org>
8178
8179 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
8180 strings in the list of return values.
8181
327f1f6f
JB
81822013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
8183
8184 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
8185 radix before checking for HMS forms.
8186
67ed8fcd
LL
81872013-03-16 Leo Liu <sdl.web@gmail.com>
8188
8189 * progmodes/scheme.el: Add indentation and font-locking for λ.
8190 (Bug#13975)
8191
78be8b64 81922013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
efe8bf5d
SM
8193
8194 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
8195 token before point (bug#13942).
8196
78be8b64 81972013-03-16 Leo Liu <sdl.web@gmail.com>
00094c26 8198
95b43468 8199 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
00094c26 8200
98e775e6
EZ
82012013-03-16 Eli Zaretskii <eliz@gnu.org>
8202
8203 * startup.el (command-line-normalize-file-name): Fix handling of
8204 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
8205 <xfq.free@gmail.com> in
8206 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
8207
2edd6029
MA
82082013-03-15 Michael Albinus <michael.albinus@gmx.de>
8209
8210 Sync with Tramp 2.2.7.
8211
8212 * net/trampver.el: Update release number.
8213
d35f5864
TH
82142013-03-14 Tassilo Horn <tsdh@gnu.org>
8215
f35ffe5e
TH
8216 * doc-view.el Fix bug#13887.
8217 (doc-view-insert-image): Don't modify overlay associated to
8218 non-live windows, and implement horizontal centering of image in
8219 case it's smaller than the window.
8220 (doc-view-new-window-function): Force redisplay of new windows on
8221 doc-view buffers.
d35f5864 8222
1c4a85ed
KF
82232013-03-13 Karl Fogel <kfogel@red-bean.com>
8224
8225 * saveplace.el (save-place-alist-to-file): Don't sort
8226 `save-place-alist', just pretty-print it (bug#13882).
8227
85b66a21
MA
82282013-03-13 Michael Albinus <michael.albinus@gmx.de>
8229
a020afb9
JB
8230 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8231 Check whether `default-file-name-coding-system' is bound.
8232 It isn't in XEmacs.
85b66a21 8233
175600da
SM
82342013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
8235
e7f7cb1a
SM
8236 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
8237 backquotes for `obsolete' (bug#13929).
8238
175600da
SM
8239 * international/mule.el (find-auto-coding): Include file name in
8240 obsolescence warning (bug#13922).
8241
ca68a22e
TZ
82422013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
8243
8244 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
8245 for CFEngine 3-specific indentation.
8246 (cfengine3-indent-line): Use it. Fix up category regex.
8247 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
8248
940e5099
SM
82492013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
8250
8251 * type-break.el (type-break-file-name):
8252 * textmodes/remember.el (remember-data-file):
8253 * strokes.el (strokes-file):
8254 * shadowfile.el (shadow-initialize):
8255 * saveplace.el (save-place-file):
8256 * ps-bdf.el (bdf-cache-file):
8257 * progmodes/idlwave.el (idlwave-config-directory):
8258 * net/quickurl.el (quickurl-url-file):
8259 * international/kkc.el (kkc-init-file-name):
8260 * ido.el (ido-save-directory-list-file):
8261 * emulation/viper.el (viper-custom-file-name):
8262 * emulation/vip.el (vip-startup-file):
8263 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
8264 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
8265
cc725808
PE
82662013-03-12 Paul Eggert <eggert@cs.ucla.edu>
8267
8268 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
8269 * language/thai-word.el: Switch to UTF-8.
8270
a020afb9 8271See ChangeLog.16 for earlier changes.
e3d51b27
MR
8272
8273;; Local Variables:
8274;; coding: utf-8
e3d51b27
MR
8275;; End:
8276
ab422c4d 8277 Copyright (C) 2011-2013 Free Software Foundation, Inc.
e3d51b27
MR
8278
8279 This file is part of GNU Emacs.
8280
8281 GNU Emacs is free software: you can redistribute it and/or modify
8282 it under the terms of the GNU General Public License as published by
8283 the Free Software Foundation, either version 3 of the License, or
8284 (at your option) any later version.
8285
8286 GNU Emacs is distributed in the hope that it will be useful,
8287 but WITHOUT ANY WARRANTY; without even the implied warranty of
8288 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8289 GNU General Public License for more details.
8290
8291 You should have received a copy of the GNU General Public License
8292 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.