* lisp/progmodes/ruby-mode.el (ruby-mode): Remove incorrect text from docstring.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
ae93bc74
BB
12013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
2
3 * progmodes/ruby-mode.el (ruby-mode): Remove incorrect text from docstring.
4
0ade65b5
SM
52013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
6
a0d5f7a4
SM
7 * rect.el (rectangle--highlight-for-redisplay):
8 * emacs-lisp/smie.el (smie--next-indent-change):
9 Use buffer-chars-modified-tick.
10
c93f3f5c
SM
11 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
12
0ade65b5
SM
13 * electric.el (electric-indent-post-self-insert-function):
14 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
15
ef9dd188
HE
162013-11-04 Helmut Eller <eller.helmut@gmail.com>
17
18 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
19
306e7308
NT
202013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
21
22 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
23 (bug#15786).
24
e5afbcac
SM
252013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
26
1d01ad41
SM
27 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
28
e5afbcac
SM
29 * progmodes/python.el: Fix up last change.
30 (python-shell--save-temp-file): New function.
31 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
32 `string' comes from the current buffer.
33 (python-shell-send-string-no-output): Remove `msg' arg.
34 (python--use-fake-loc): New var.
35 (python-shell-buffer-substring): Obey it. Try to compensate for the
36 extra coding line added by python-shell--save-temp-file.
37 (python-shell-send-region): Use python-shell--save-temp-file and
38 python-shell-send-file directly. Add `nomain' argument.
39 (python-shell-send-buffer): Use python-shell-send-region.
40 (python-electric-pair-string-delimiter): New function.
41 (python-mode): Use it.
42
d0065ff1
EZ
432013-11-04 Eli Zaretskii <eliz@gnu.org>
44
45 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
46 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
47 environment and decoding all of the default-directory's to here
48 from command-line.
49 (command-line): Decode also argv[0].
50
51 * loadup.el: Error out if default-directory is a multibyte string
52 when we are dumping.
53
54 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
55
7397c587
TZ
562013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
57
58 * emacs-lisp/package.el (package-menu-mode)
e5afbcac
SM
59 (package-menu--print-info, package-menu--archive-predicate):
60 Add Archive column to package list.
7397c587 61
b27cc9fc
MA
622013-11-04 Michael Albinus <michael.albinus@gmx.de>
63
64 Fix problems found while writing a test suite.
65
66 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
67 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
68 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
69 to nil when running original file name handler. Otherwise,
70 there are problems with constructs like "$$FOO".
71
72 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
73 for `localname'.
74
d8c4f18a
BB
752013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
76
7b530552
BB
77 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
78
79 * subr.el (version<, version<=, version=):
80 Update docstrings with information for snapshot versions.
81
d8c4f18a
BB
82 * helpers.el: New library for misc helper functions.
83 (hash-table-keys): New function returning a list of hash keys.
84 (hash-table-values): New function returning a list of hash values.
85
dca01b09
DG
862013-11-04 Dmitry Gutov <dgutov@yandex.ru>
87
88 * progmodes/ruby-mode.el (ruby-smie--forward-token)
89 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
90
0a749fa0
MN
912013-11-04 Michal Nazarewicz <mina86@mina86.com>
92
93 * textmodes/fill.el (fill-single-char-nobreak-p): New function
94 checking whether point is after a 1-letter word.
95
962013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
ec79b92b
NT
97
98 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
99 Don't infloop when expanding region over `multiline' syntax-type that
100 begins a line (bug#15778).
101
4aca7145
SM
1022013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
103
104 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
105 Make it into a proper minor mode.
106 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
107 (rectangle-mark-mode-map): New keymap.
108 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
109
a0833f62
GM
1102013-11-04 Glenn Morris <rgm@gnu.org>
111
112 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
113
e61845c1
SM
1142013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
115
116 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
117 (ruby-smie-rules): Use smie-rule-parent instead.
118
119 * emacs-lisp/smie.el (smie-rule-parent): Always call
120 smie-indent-virtual rather than only for hanging tokens.
121 (smie--next-indent-change): New helper command.
122
62942f89
GM
1232013-11-03 Glenn Morris <rgm@gnu.org>
124
125 * Makefile.in (abs_srcdir): Remove.
126 (emacs): Unset EMACSLOADPATH.
127
b0b9e592
GM
1282013-11-02 Glenn Morris <rgm@gnu.org>
129
18ba6a33 130 * Makefile.in (EMACS): Use a relative filename.
8061810d 131 (abs_top_builddir): Remove.
18ba6a33
GM
132 (custom-deps, finder-data, autoloads): Use --chdir.
133
6a8b929e
GM
134 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
135
c617f3d0
GM
136 Use relative filenames in TAGS files.
137 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
138 (lisptagsfiles4, TAGS): Use relative file names.
139 (TAGS-LISP): Remove.
140 (maintainer-clean): No more TAGS-LISP file.
141
b0b9e592
GM
142 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
143 (lisptagsfiles4): Use absolute filenames again.
144 (TAGS, TAGS-LISP): Not everything needs to run in one line.
145 Remove all *loaddefs files, not just the first. Remove esh-groups.
146 (maintainer-clean): Delete TAGS, TAGS-LISP.
147
d1c0ea6a
BB
1482013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
149
e61845c1
SM
150 * emacs-lisp/package.el (package-version-join):
151 Recognize snapshot versions.
d1c0ea6a 152
684d71c6
BB
1532013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
154
155 * subr.el (version-regexp-alist): Add support for snapshot versions.
156
3d42b968
DG
1572013-11-02 Dmitry Gutov <dgutov@yandex.ru>
158
e61845c1
SM
159 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
160 New function, replacement for `smie-rule-parent' for when we want to
3d42b968
DG
161 skip over our direct parent if it's an assignment token..
162 (ruby-smie-rules): Use it.
163
7ffd3721
DG
1642013-11-02 Dmitry Gutov <dgutov@yandex.ru>
165
166 * progmodes/ruby-mode.el Use `syntax-propertize-function'
167 unconditionally. Remove now unnecessary forward declarations.
168 Remove XEmacs-specific setup.
169 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
170 (ruby-font-lock-syntactic-keywords)
171 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
172 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
173 (ruby-here-doc-end-syntax): Remove.
174 (ruby-mode): Don't check whether `syntax-propertize-rules' is
175 defined as function.
176
a3996a2e
BB
1772013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
178
179 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
180
6f9260e8
BB
1812013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
182
183 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
184 table and abbrev table, `define-derived-mode' does that for us
185 anyway.
186
6014de84
GM
1872013-11-01 Glenn Morris <rgm@gnu.org>
188
189 * Makefile.in: Remove manual mh-e dependencies (writing .elc
190 files is atomic for some time, so no parallel compilation issues).
191
3c334c14
JD
1922013-11-01 Jan Djärv <jan.h.d@swipnet.se>
193
194 * faces.el (face-x-resources): Add :distant-foreground.
195 (region): Use :distant-foreground for gtk and ns.
196
9bc236c8
TH
1972013-11-01 Tassilo Horn <tsdh@gnu.org>
198
5246583b 199 Allow multiple bibliographies when BibLaTeX is used rather than
9bc236c8
TH
200 BibTeX.
201 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
202 (reftex-locate-bibliography-files): Us it.
203
d14c81ee
CB
2042013-11-01 Claudio Bley <claudio.bley@googlemail.com>
205
0e7690de
CB
206 * image.el (image-type-header-regexps): Fix the 'pbm' part to
207 allow comments in pbm files.
208
d14c81ee
CB
209 * term/w32-win.el (dynamic-library-alist): Support newer versions
210 of libjpeg starting with v7: look only for the DLL from the
211 version against which Emacs was built.
ac1bf374 212 Support versions of libpng beyond 1.4.x.
019c8218 213 Support libtiff v4.x.
d14c81ee 214
983d0df5
BB
2152013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
216
217 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
218 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
219 Add property :safe.
220 (ruby-deep-arglist): Add property :type.
221
47f58d85
GM
2222013-10-31 Glenn Morris <rgm@gnu.org>
223
224 * Makefile.in (custom-deps, finder-data): No need to setq the target
225 variables, we are in the right directory and the defaults work fine.
226
4f85b479
GM
2272013-10-30 Glenn Morris <rgm@gnu.org>
228
ca7dd4cd
GM
229 * Makefile.in (autoloads): Do not use abs_lisp.
230
4f85b479
GM
231 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
232 `newline' does not respect `standard-output', so use `princ'.
233
cf59e41c
AA
2342013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
235
236 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
237 * buff-menu.el (Buffer-menu--unmark): New function.
238 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
239
74cf04fb
GM
2402013-10-30 Glenn Morris <rgm@gnu.org>
241
b040b60e
GM
242 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
243
f53d3815
GM
244 * emacs-lisp/package.el (lm-homepage): Declare.
245
5413d873
GM
246 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
247 Fix doc typos.
248
cecedb36
GM
249 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
250
74cf04fb
GM
251 * Makefile.in (finder-data, autoloads, update-subdirs)
252 (compile-main, compile-clean, compile-always, bootstrap-clean):
253 Check return value of cd.
254 (compile-calc): Remove.
255
195ee2f0
SM
2562013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
257
ae4002ce
SM
258 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
259
260 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
261 (byte-compile-and-folded): New function.
262 (=, <, >, <=, >=): Use it.
263
264 * dos-w32.el (minibuffer-history-case-insensitive-variables)
265 (path-separator, null-device, buffer-file-coding-system)
266 (lpr-headers-switches): Check system-type before modifying them.
267 (find-buffer-file-type-coding-system): Mark obsolete.
268 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
269 find-file-not-found-set-buffer-file-coding-system.
270 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
271 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
272 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
273 (w32-direct-print-region-helper, w32-direct-print-region-function)
274 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
275 * startup.el (normal-top-level-add-subdirs-to-load-path):
276 * ps-print.el (ps-print-region-function):
277 * lpr.el (print-region-function): Use new name.
278
53b39e89
SM
279 * subr.el (custom-declare-variable-early): Remove function.
280 (custom-declare-variable-list): Remove var.
281 (error, user-error): Remove `while' loop.
282 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
283 (user-emacs-directory-warning, locate-user-emacs-file):
284 Move to files.el.
285 * simple.el (read-quoted-char-radix, read-quoted-char):
286 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
287 Move from subr.el.
288 * custom.el (custom-declare-variable-list): Don't process
289 custom-declare-variable-list.
290
195ee2f0
SM
291 * progmodes/python.el (python-shell-get-buffer): New function.
292 (python-shell-get-process): Use it.
293 (python-shell-send-string): Always use utf-8 and add a cookie to tell
294 Python which encoding was used. Don't split-string since we only care
295 about the first line. Return the temp-file, if applicable.
296 (python-shell-send-region): Tell compile.el how to turn locations in
297 the temp-file into locations in the source buffer.
298
7e3561ee
SM
2992013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
300
4c9797cb
SM
301 * subr.el (undefined): Add missing behavior from the C code for
302 unbound keys.
303
3472b6c6
SM
304 * rect.el: Use lexical-binding. Add new rectangular region support.
305 (rectangle-mark): New command.
306 (rectangle--region): New var.
307 (deactivate-mark-hook): Reset rectangle--region.
308 (rectangle--extract-region, rectangle--insert-for-yank)
309 (rectangle--highlight-for-redisplay)
310 (rectangle--unhighlight-for-redisplay): New functions.
311 (region-extract-function, redisplay-unhighlight-region-function)
312 (redisplay-highlight-region-function): Use them to handle
313 rectangular region.
314 * simple.el (region-extract-function): New var.
315 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
316 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
317 (kill-region): Replace obsolete `yank-handler' arg with `region'.
318 (copy-region-as-kill, kill-ring-save): Add `region' argument.
319 (redisplay-unhighlight-region-function)
320 (redisplay-highlight-region-function): New vars.
321 (redisplay--update-region-highlight): New function.
322 (pre-redisplay-function): Use it.
323 (exchange-point-and-mark): Don't deactivate the mark before
324 reactivate-it anyway.
325 * comint.el (comint-kill-region): Remove yank-handler argument.
326 * delsel.el (delete-backward-char, backward-delete-char-untabify)
327 (delete-char): Remove property, since it's now part of their
328 default behavior.
329 (self-insert-iso): Remove property since this command doesn't exist.
330
7e3561ee
SM
331 * emacs-lisp/package.el (package--download-one-archive)
332 (describe-package-1): Don't query the user about final newline.
333
b9bef71f
DC
3342013-10-29 Daniel Colascione <dancol@dancol.org>
335
336 * net/tramp.el (tramp-methods): Document new functionality.
337 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
338 tramp-hostname-checker if method provides one instead of scanning
339 argument list for "%h" to decide hostname acceptability.
340
4efc33f0
MA
3412013-10-28 Michael Albinus <michael.albinus@gmx.de>
342
343 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
344 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
345 Handle COPY-CONTENTS. (Bug#15737)
346
ed42a877
DU
3472013-10-28 Daiki Ueno <ueno@gnu.org>
348
349 * epa-file.el
7e3561ee
SM
350 (epa-file-cache-passphrase-for-symmetric-encryption):
351 Document that this option has no effect with GnuPG 2.0 (bug#15552).
ed42a877 352
18c9f8a2
XF
3532013-10-27 Xue Fuqiao <xfq.free@gmail.com>
354
7a4bc7be
XF
355 * image.el (defimage):
356 (image-load-path): Doc fixes.
18c9f8a2 357
b1e8e010
AM
3582013-10-27 Alan Mackenzie <acm@muc.de>
359
360 Indent statements in macros following "##" correctly.
7e3561ee
SM
361 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
362 Modify the "#" arm of a cond form to handle "#" and "##" operators.
b1e8e010 363
73d40d1e 3642013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
fdab3d0b
NT
365
366 * linum.el (linum-update-window): Fix boundary test (bug#13446).
367
c8c605ac
DG
3682013-10-27 Dmitry Gutov <dgutov@yandex.ru>
369
370 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
371 after `=' is probably a new expression.
372
ca7e59d4
RS
3732013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
374
375 * man.el (man-imenu-title): New option.
376 (Man-mode-map): Add menu. (Bug#15722)
377 (Man-mode): Add imenu to menu.
378
bae91342
DG
3792013-10-26 Dmitry Gutov <dgutov@yandex.ru>
380
381 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
382 specific in what the first arg can be: a non-keyword word,
383 string/regexp/percent literal opener, opening paren, or unary
384 operator followed directly by word.
385
eb89dc14
SM
3862013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
387
388 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
389 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
390 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
391 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
392 Remove vars, they do not apply any more.
393 (prolog-mode-abbrev-table): Remove redundant declaration.
394 (prolog-upper-case-string, prolog-lower-case-string): Remove.
395 (prolog-use-smie): Remove.
396 (prolog-smie-rules): Add indentation rule for the if-then-else layout
397 supported by prolog-electric-if-then-else-flag.
398 (prolog-mode-variables, prolog-menu): Use setq-local.
399 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
400 Remove binding to `Backspace' since this key doesn't exist anyway.
401 Remove bindings for electric self-inserting keys.
402 (prog-mode): Assume it's defined.
403 (prolog-post-self-insert): New function.
404 (prolog-mode): Use it.
405 (prolog-indent-line, prolog-indent-level)
406 (prolog-find-indent-of-matching-paren)
407 (prolog-indentation-level-of-line, prolog-goto-comment-column)
408 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
409 (prolog-goto-next-paren, prolog-in-string-or-comment)
410 (prolog-tokenize, prolog-inside-mline-comment)
411 (prolog-find-start-of-mline-comment): Remove functions.
412 (prolog-find-unmatched-paren, prolog-clause-end)
413 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
414 (prolog-electric--if-then-else): Rename from
415 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
416 (prolog-tokenize-searchkey): Remove const.
417 (prolog-clause-info): Use forward-sexp.
418 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
419 (prolog-electric-if-then-else): Remove commands.
420 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
421 for use in post-self-insert-hook.
422 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
423 for use in post-self-insert-hook.
424 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
425 for use in post-self-insert-hook.
426 (prolog-electric--underscore): Rename from prolog-electric--underscore;
427 adapt it for use in post-self-insert-hook.
428
3dab0a83
MA
4292013-10-25 Michael Albinus <michael.albinus@gmx.de>
430
431 * emacs-lisp/ert.el (ert-run-tests-interactively):
432 Use `completing-read'. (Bug#9756)
433
fbfd0e1d
EZ
4342013-10-25 Eli Zaretskii <eliz@gnu.org>
435
436 * simple.el (line-move): Call line-move-1 instead of
437 line-move-visual when the current window hscroll is zero, but
438 temporary-goal-column indicates we will need to hscroll as result
439 of the movement. (Bug#15712)
440
963ce636
DG
4412013-10-25 Dmitry Gutov <dgutov@yandex.ru>
442
443 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
eb89dc14
SM
444 capitalization. Use :visible instead of :active.
445 Fix `ruby-indent-exp' reference. Add menu items for the generic
963ce636
DG
446 commands that are used with SMIE.
447 (ruby-do-end-to-brace): Insert space after `{'.
448
a0be396a
JA
4492013-10-25 John Anthony <john@jo.hnanthony.com>
450
f73754c9
JA
451 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
452
453 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
a0be396a 454
f5bf77df
GM
4552013-10-25 Glenn Morris <rgm@gnu.org>
456
457 * vc/vc.el (vc-print-log): Don't use a working revision unless
458 one was explicitly specified. (Bug#15322)
459
37241f62
SM
4602013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
461
462 * subr.el (add-to-list): Preserve return value in compiler-macro
463 (bug#15692).
464
6408a65d
RS
4652013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
466
467 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
468 result. Ask user to retry using '-all' flag. (Bug#15701)
469
71e3276b
SM
4702013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
471
472 * emacs-lisp/smie.el: New smie-config system.
473 (smie-config): New defcustom.
474 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
475 (smie-config-guess, smie-config-save): New commands.
476 (smie-config--mode-local, smie-config--buffer-local)
477 (smie-config--trace, smie-config--modefuns): New vars.
478 (smie-config--advice, smie-config--mode-hook)
479 (smie-config--setter, smie-config-local, smie-config--get-trace)
480 (smie-config--guess-value, smie-config--guess): New functions.
481 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
482 text properties. Treat "string fence" syntax like string syntax.
483
484 * progmodes/sh-script.el (sh-use-smie): Change default.
485 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
486 (sh-var-value): Simplify by CSE.
487 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
488 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
489 is used.
490 (sh-guess-basic-offset): Use cl-incf.
491 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
492
60db713e
HE
4932013-10-24 Helmut Eller <eller.helmut@gmail.com>
494
495 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
496 (bug#15699).
497
8b251df6
GM
4982013-10-24 Glenn Morris <rgm@gnu.org>
499
500 * Makefile.in (abs_top_srcdir): Remove.
501 (update-subdirs): Use relative path to update-subdirs.
502
6be0e22b
EZ
5032013-10-24 Eli Zaretskii <eliz@gnu.org>
504
505 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
506 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
60db713e
HE
507 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
508 Call unmsys--file-name before expand-file-name, not after it.
6be0e22b 509
50b5b857
MA
5102013-10-24 Michael Albinus <michael.albinus@gmx.de>
511
512 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
513 (ert-test-skipped): New error.
514 (ert-skip, ert-stats-skipped): New defuns.
515 (ert--skip-unless): New macro.
516 (ert-test-skipped): New struct.
517 (ert--run-test-debugger, ert-test-result-type-p)
518 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
519 (ert--stats-set-test-and-result, ert-char-for-test-result)
520 (ert-string-for-test-result, ert-run-tests-batch)
60db713e 521 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
3dab0a83 522 Handle skipped tests. (Bug#9803)
50b5b857 523
6f317c2f
GM
5242013-10-24 Glenn Morris <rgm@gnu.org>
525
e43817c1
GM
526 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
527
6f317c2f
GM
528 * Makefile.in (abs_top_srcdir): New, set by configure.
529 (update-subdirs): Correct build-aux location.
530
369bbf71
DG
5312013-10-24 Dmitry Gutov <dgutov@yandex.ru>
532
8297b2cf
DG
533 * vc/vc.el (vc-print-root-log): Always set `default-directory'
534 value, whether we could auto-deduce `backend', or not.
535
369bbf71
DG
536 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
537 with parameters" example. Simplify the "is it block or is it
538 hash" check, but also make it more thorough.
539
d5f1282f
MF
5402013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
541
542 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
543
bc4aaa31
SM
5442013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
545
03d44565
SM
546 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
547 { if it is hanging.
548
bc4aaa31
SM
549 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
550 :before ";".
551
f493ff19
JB
5522013-10-23 Jed Brown <jed@59A2.org> (tiny change)
553
554 * progmodes/compile.el (compilation-directory-matcher)
555 (compilation-page-delimiter):
556 Support GNU Make-4.0 directory quoting. (Bug#15678)
557
c744a3b9
LL
5582013-10-23 Leo Liu <sdl.web@gmail.com>
559
560 * ido.el (ido-tidy): Handle read-only text.
561
b8e3b0a9
GM
5622013-10-23 Glenn Morris <rgm@gnu.org>
563
564 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
565 (emacs, compile, compile-always):
566 Quote entities that might contain whitespace.
567 (custom-deps, finder-data, autoloads): Use abs_lisp.
568 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
569 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
570 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
571
ee4282cd
DG
5722013-10-23 Dmitry Gutov <dgutov@yandex.ru>
573
bc4aaa31
SM
574 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
575 Use `following-char'.
7790a270 576
ee4282cd 5772013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
7790a270
SM
578
579 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
580 * progmodes/ruby-mode.el (ruby-smie-rules):
581 Remove corresponding workaround. Fix indentation rule of ";" so it
582 also applies when ";" is the parent.
583
d40a46d7
XF
5842013-10-22 Xue Fuqiao <xfq.free@gmail.com>
585
586 * frame.el (display-screens, display-pixel-height)
587 (display-pixel-width, display-mm-width, display-backing-store)
588 (display-save-under, display-planes, display-color-cells)
7790a270
SM
589 (display-visual-class, display-monitor-attributes-list):
590 Mention the optional ‘display’ argument in doc strings.
d40a46d7 591
a0f143c9
MG
5922013-10-22 Michael Gauland <mikelygee@amuri.net>
593
594 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
595 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
596
18cacc39
DG
5972013-10-21 Dmitry Gutov <dgutov@yandex.ru>
598
599 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
600 TODO. Add "." after " @ ".
601 (ruby-smie--at-dot-call): New function. Checks if point at method
602 call with explicit target.
603 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
604 to the method name tokens when it precedes them.
605 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
606 (ruby-smie-rules): Add rule for indentation before and after "."
607 token.
608
df74c4be
SM
6092013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
610
c6dab55f
SM
611 * textmodes/remember.el (remember-diary-extract-entries):
612 Avoid add-to-list.
613
df74c4be
SM
614 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
615 an instruction.
616
8c1ae481
DG
6172013-10-21 Dmitry Gutov <dgutov@yandex.ru>
618
cfef16c0
DG
619 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
620 (ruby-smie--implicit-semi-p): Add new operator chars.
621
8c1ae481
DG
622 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
623 `smie-down-list'.
624 (ruby-smie--args-separator-p): Check that there's no newline
625 between method call and its arguments.
626
87756ca9
AM
6272013-10-20 Alan Mackenzie <acm@muc.de>
628
629 Allow comma separated lists after Java "implements".
630
df74c4be
SM
631 * progmodes/cc-engine.el (c-backward-over-enum-header):
632 Parse commas.
87756ca9
AM
633 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
634 from a "disallowed" list in enum fontification.
635
c25f8957
JB
6362013-10-20 Johan Bockgård <bojohan@gnu.org>
637
df74c4be 638 * startup.el (default-frame-background-mode): Remove unused defvar.
4a5da22b 639
c25f8957
JB
640 * progmodes/verilog-mode.el (verilog-mode): Don't set
641 comment-indent-function globally.
642
aca5fcdc
JD
6432013-10-20 Jan Djärv <jan.h.d@swipnet.se>
644
5f161884
JD
645 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
646 Move Info menu item creation to ns-win.el.
647
648 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
649 in menu bar.
650
aca5fcdc
JD
651 * menu-bar.el: Move GNUStep specific menus...
652
653 * term/ns-win.el (ns-initialize-window-system): ... to here.
654
914b7f98
SM
6552013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
656
657 * simple.el (newline): Only run post-self-insert-hook when
658 called interactively.
659
846ffe77
JB
6602013-10-19 Johan Bockgård <bojohan@gnu.org>
661
662 * icomplete.el (icomplete-with-completion-tables): Add :version.
663
033f22dd
AM
6642013-10-19 Alan Mackenzie <acm@muc.de>
665
666 Fix fontification bugs with constructors and const.
667
668 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
669 CASE 2) Remove the check for the absence of a suffix construct
670 after a function declaration with only types (no identifiers) in
671 the parentheses. Also, accept a function declaration with just a
672 type inside the parentheses, if this type can be positively
673 recognised as such, or if a prefix keyword like "explicit" nails
674 down the construct as a declaration.
675
58ce0cfc
EZ
6762013-10-19 Eli Zaretskii <eliz@gnu.org>
677
678 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
679 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
680 the problem whereby selecting a menu item that leads to a
681 minibuffer prompt moves the cursor out of the minibuffer window,
682 making it hard to type at the prompt. Suggested by Stefan Monnier
683 <monnier@iro.umontreal.ca>.
684
50e28e7d
JD
6852013-10-19 Jan Djärv <jan.h.d@swipnet.se>
686
687 * menu-bar.el: Don't make Services menu.
688
7deed4bf
RS
6892013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
690
691 * ffap.el: Handle "/usr/include/c++/<version>" directories.
692 (ffap-alist): Use ffap-c++-mode for c++-mode.
693 (ffap-c++-path): New variable.
694 (ffap-c++-mode): New function.
695
7bcb455b
JVJ
6962013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
697
698 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
699
f0ff1cd5
MA
7002013-10-18 Michael Albinus <michael.albinus@gmx.de>
701
702 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
703 introduced on 2013-09-08, which results in an infinite loop
704 requesting a password.
705
d64da4b7
GM
7062013-10-18 Glenn Morris <rgm@gnu.org>
707
708 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
709
ea89ff08
WS
7102013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
711
712 Sync with upstream verilog-mode revision 1a6ecec7.
713 * progmodes/verilog-mode.el (verilog-mode-version): Update.
714 (verilog-mode-release-date): Remove.
715 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
716 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
717 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
718 (verilog-auto-tieoff-ignore-regexp)
719 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
720 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
721 (verilog-signals-with, verilog-dir-cache-preserving)
722 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
723 Doc fixes.
724 (verilog-case-fold): New option, to control case folding in
725 regexp searches, bug597.
726 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
727 (verilog-string-match-fold, verilog-in-paren-count)
728 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
729 (verilog-at-close-struct-p): New functions.
730 (verilog-beg-block-re-ordered, verilog-extended-case-re)
731 (verilog-forward-sexp, verilog-set-auto-endcomments):
732 (verilog-leap-to-case-head): Handle "unique0" case.
733 (verilog-in-constraint-re): New constant.
734 (verilog-keywords, verilog-type-font-keywords):
735 Add some SystemVerilog 1800-2012 keywords.
736 (verilog-label-be): Remove unimplemented argument, bug669.
737 (verilog-batch-execute-func): When batch expanding clear
738 create-lockfiles to prevent spurious user locks when a file ends
739 up not changing.
740 (verilog-calculate-indent, verilog-calc-1)
741 (verilog-at-close-constraint-p, verilog-at-constraint-p)
742 (verilog-do-indent): Fix indentation of nested constraints
743 and structures.
744 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
745 (verilog-auto-inst-param): Use verilog-string-match-fold.
746 (verilog-read-inst-module-matcher):
747 Fix AUTOINST on gate primitives with #1.
748 (verilog-read-decls): Fix double-declaring user-defined typed signals.
749 Reads all user-defined typed variables.
750 (verilog-read-defines): Fix reading definitions inside comments, bug647.
751 (verilog-signals-matching-regexp)
752 (verilog-signals-not-matching-regexp, verilog-auto):
753 Respect verilog-case-fold.
754 (verilog-diff-report): Fix line count.
755 (verilog-auto-assign-modport): Remove unused local `modi'.
756 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
757 better handle multidimensional arrays.
758 Fix packed array ports misadding bit index in AUTOINST, bug637.
759 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
760 to not double-declare existing outputs and inputs, respectively.
761 (verilog-template-map): Bind U to verilog-sk-uvm-component.
762 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
763 (verilog-sk-uvm-component): New skeleton.
764 (verilog-submit-bug-report): Add verilog-case-fold,
765 remove verilog-mode-release-date.
766
ef566920
BR
7672013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
768
769 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
770 as before.
771
29df8a0b
RT
7722013-10-18 Reuben Thomas <rrt@sc3d.org>
773
774 * textmodes/remember.el (remember): set buffer-offer-save in
775 remember buffers (bug#13566).
776
04a19a79
DC
7772013-10-18 Daniel Colascione <dancol@dancol.org>
778
779 When evaluating forms in ielm, direct standard output to ielm
780 buffer. Add new ielm-return-for-effect command. Remove trailing
781 whitespace throughout.
782
783 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
784 (ielm-return-for-effect): New command.
785 (ielm-send-input): Accept optional `for-effect' parameter.
df74c4be
SM
786 (ielm-eval-input): Accept optional `for-effect' parameter.
787 Bind `standard-output' to stream we create using
04a19a79
DC
788 `ielm-standard-output-impl'. Suppress printing result when
789 `for-effect'.
790 (ielm-standard-output-impl): New function.
791 (inferior-emacs-lisp-mode): Explain new features in documentation.
792
4c1f03ef
MA
7932013-10-17 Michael Albinus <michael.albinus@gmx.de>
794
795 Code cleanup.
796
797 * net/tramp.el (tramp-debug-message): Do not check for connection
798 buffer.
799 (tramp-message): Use "vector" connection property.
800
801 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
802 (tramp-equal-remote, tramp-eshell-directory-change)
803 * net/tramp-adb.el (tramp-adb-handle-copy-file)
804 (tramp-adb-handle-rename-file)
805 * net/tramp-cmds.el (tramp-list-remote-buffers)
806 (tramp-cleanup-connection, tramp-cleanup-this-connection)
807 * net/tramp-compat.el (tramp-compat-process-running-p)
808 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
809 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
810 (tramp-gvfs-handle-rename-file)
811 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
812 (tramp-set-file-uid-gid)
813 * net/tramp-smb.el (tramp-smb-handle-copy-file)
814 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
815 of `file-remote-p'.
816
817 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
818 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
819 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
820 (tramp-gw-open-network-stream): Suppress unrelated traces.
821
822 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
823 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
824 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
825 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
826 connection property.
827
828 * net/tramp-cache.el (top): Suppress traces when reading
f0ff1cd5 829 persistency file.
4c1f03ef
MA
830
831 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
832 Refactor common code. Improve debug message.
833 (tramp-maybe-open-connection)
834 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
835 connection buffer too early.
836
837 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
838 from `tramp-smb-actions-with-acl'.
839 (tramp-smb-actions-set-acl): New defconst.
840 (tramp-smb-handle-copy-directory)
841 (tramp-smb-action-get-acl): New defun, renamed from
842 `tramp-smb-action-with-acl'.
843 (tramp-smb-action-set-acl): New defun.
844 (tramp-smb-handle-set-file-acl): Rewrite.
845
642eb8b6
GM
8462013-10-17 Glenn Morris <rgm@gnu.org>
847
848 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
849
85527ff3
SM
8502013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
851
921c1d62
SM
852 * skeleton.el (skeleton-newline): Remove.
853 (skeleton-internal-1): Use (insert "\n") instead.
854
e333fb10
SM
855 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
856 let-bindings.
857
85527ff3
SM
858 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
859 forward-sexp-function while we redo its job (bug#15613).
860
c8722a97
JB
8612013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
862
863 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
864 represented by lists.
865
7a550bbb
GM
8662013-10-16 Glenn Morris <rgm@gnu.org>
867
868 * tmm.el (tmm--history): New dynamic variable.
869 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
870
f19da8ad
MA
8712013-10-16 Michael Albinus <michael.albinus@gmx.de>
872
873 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
874 (tramp-smb-errors): Add error messages.
875 (tramp-smb-actions-with-acl): New defconst.
876 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
877 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
878 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
879 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
880 (tramp-smb-get-stat-capability): Fix tests.
881
a24b9961
DK
8822013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
883
884 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
885 (bug#15580).
886
62ad85e6
GM
8872013-10-16 Glenn Morris <rgm@gnu.org>
888
0283d6b0
GM
889 * ansi-color.el (ansi-color-drop-regexp):
890 Add 1J, 1K, 2K. (Bug#15617)
891
012e2f9f
GM
892 * files.el (hack-local-variables--warned-lexical): New.
893 (hack-local-variables):
894 Warn about misplaced lexical-binding. (Bug#15616)
895
62ad85e6
GM
896 * net/eww.el (eww-render): Always set eww-current-url,
897 and update header line. (Bug#15622)
898 (eww-display-html): ... Rather than just doing it here.
899
6456c0ea
EZ
9002013-10-15 Eli Zaretskii <eliz@gnu.org>
901
902 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
903 menu navigations commands.
904
c2de5588
DK
9052013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
906
907 * progmodes/subword.el (subword-capitalize): Be careful when
908 the search for [[:alpha:]] fails (bug#15580).
909
ccd4a783
EZ
9102013-10-14 Eli Zaretskii <eliz@gnu.org>
911
912 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
913 to commands that scroll the menu.
914
1eda1d8d
DG
9152013-10-14 Dmitry Gutov <dgutov@yandex.ru>
916
c2de5588
DK
917 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
918 Handle methods ending with `?' and `!'.
1eda1d8d 919
e70181b8
AM
9202013-10-14 Akinori MUSHA <knu@iDaemons.org>
921
922 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
923 `japanese-cp932' to `cp932' to fix the problem where saving a
924 source file written in Shift_JIS twice would end up having
925 `coding: japanese-cp932' which Ruby could not recognize.
926 (ruby-mode-set-encoding): Add support for encodings mapped to nil
927 in `ruby-encoding-map'.
928 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
929 doesn't need to be explicitly declared in magic comment.
930 (ruby-encoding-map): Add type declaration for better customize UI.
931
9148ee92
GM
9322013-10-13 Glenn Morris <rgm@gnu.org>
933
a5d38e34
GM
934 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
935 Occur buffers are read-only. http://bugs.debian.org/720775
936
9148ee92
GM
937 * emacs-lisp/authors.el (authors-fixed-entries):
938 Comment out old alpha stuff.
939
a9ba094b
DG
9402013-10-13 Dmitry Gutov <dgutov@yandex.ru>
941
942 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
943 to `after-save-hook' instead of `before-save-hook'.
944 (ruby-mode-set-encoding): Use the value of coding system used to
945 write the file. Call `basic-save-buffer-1' after modifying the
946 buffer.
947
7a068717
AM
9482013-10-13 Alan Mackenzie <acm@muc.de>
949
950 Fix indentation/fontification of Java enum with
951 "implements"/generic.
952
c2de5588
DK
953 * progmodes/cc-engine.el (c-backward-over-enum-header):
954 Extracted from the three other places and enhanced to handle generics.
7a068717
AM
955 (c-inside-bracelist-p): Uses new function above.
956 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
957 function above.
958 (c-font-lock-enum-tail): Uses new function above.
959
85b64f02
KH
9602013-10-13 Kenichi Handa <handa@gnu.org>
961
962 * international/mule-cmds.el (select-safe-coding-system): Remove a
963 superfluous condition in chekcing whether a coding system is safe
964 or not.
965
fc7f501b
OK
9662013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
967
968 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
969
fdcb2049
AP
9702013-10-13 Andreas Politz <politza@hochschule-trier.de>
971
972 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
973
8c106d17
GM
9742013-10-13 Glenn Morris <rgm@gnu.org>
975
feab892d
GM
976 * menu-bar.el (menu-bar-update-buffers):
977 Unify Buffers menu prompt string. (Bug#15576)
978
b22d0686
GM
979 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
980
8c106d17
GM
981 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
982 Add some entries.
983 (authors-fixed-entries): Use accented form of name.
984
1b12c797
SM
9852013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
986
650fa7bf 987 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
e70181b8 988 method calls (bug#15594).
650fa7bf
SM
989 (ruby-smie--args-separator-p): New function.
990 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
991 recognize paren-free method calls.
992
1b12c797
SM
993 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
994 internals of universal-argument.
995
029619c8
EZ
9962013-10-11 Eli Zaretskii <eliz@gnu.org>
997
998 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
f747170f
EZ
999 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
1000 dropped menu on second mouse click on the menu bar.
029619c8 1001
dd070019
SM
10022013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1003
1004 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
1005 (explicit-shell-file-name): Declare.
1006 (sh--vars-before-point, sh--cmd-completion-table): New functions.
1007 (sh-completion-at-point-function): New function.
1008 (sh-mode): Use it.
1009 (sh-smie--keyword-p): Remove unused argument.
1010 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
1011 vars.
1012 (sh-set-shell): Always setup SMIE, even if we use the
1013 old indentation code.
1014
0922b826
DG
10152013-10-11 Dmitry Gutov <dgutov@yandex.ru>
1016
b68e2926
DG
1017 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
1018 cases of ? and =.
1019 (ruby-smie-rules): Simplify the "do" rule. The cases when the
1020 predicate would return nil are almost non-existent.
1021 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
1022
0922b826
DG
1023 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
1024 cache also after commands that modify the buffer but don't move
1025 point.
1026
ee041f2d
SM
10272013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1028
1029 * env.el (substitute-env-in-file-name): New function.
1030 (substitute-env-vars): Extend the meaning of the optional arg.
1031
a5dab159
EZ
10322013-10-10 Eli Zaretskii <eliz@gnu.org>
1033
1034 * term/w32-win.el (dynamic-library-alist): Define separate lists
1035 of GIF DLLs for versions before and after 5.0.0 of giflib.
1036 (Bug#15531)
1037
db138698
JT
10382013-10-10 João Távora <joaotavora@gmail.com>
1039
1040 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
1041 not locked, use last revision and current source as
1042 defaults. (Bug#15569)
1043
2f6e161e
MY
10442013-10-10 Masatake YAMATO <yamato@redhat.com>
1045
1046 * menu-bar.el (menu-bar-open): Don't use popup-menu if
1047 menu-bar is hidden.
1048
6c8413fc
MR
10492013-10-10 Martin Rudalics <rudalics@gmx.at>
1050
1051 * window.el (pop-to-buffer-same-window): Fix doc-string.
1052 (Bug#15492)
1053
20832de0
SM
10542013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1055
1056 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
1057
c6e8ae77
AC
10582013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
1059
1060 * calendar/icalendar.el (icalendar-import-file):
1061 Fix interactive spec. (Bug#15482)
1062
9db13baf
GM
10632013-10-10 Glenn Morris <rgm@gnu.org>
1064
9271e90e
GM
1065 * desktop.el (desktop-save): Default to saving in .emacs.d,
1066 since PWD is no longer in desktop-path by default. (Bug#15319)
1067
9db13baf
GM
1068 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
1069 now that text mode has a menu with the same entry.
1070 (menu-bar-text-mode-auto-fill): Remove now unused func.
1071 * textmodes/text-mode.el (text-mode-map):
1072 Use auto-fill help text from menu-bar.el.
1073
a0be396a 10742013-10-10 John Anthony <john@jo.hnanthony.com>
a066720c
JA
1075
1076 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
1077
2edcd3c7
JL
10782013-10-09 Juri Linkov <juri@jurta.org>
1079
1080 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
1081 instead of this-command-keys. Add universal-argument-more and
1082 universal-argument-minus to the list of prefix commands. (Bug#15568)
1083
574411d0
GM
10842013-10-09 Glenn Morris <rgm@gnu.org>
1085
14afa541
GM
1086 * vc/vc-svn.el (vc-svn-create-repo):
1087 Expand paths in file://... url. (Bug#15446)
1088
574411d0
GM
1089 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
1090 Add some entries.
1091 (authors): Remove unused local variables.
1092
79804536
SM
10932013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1094
1095 * profiler.el: Create a more coherent calltree from partial backtraces.
1096 (profiler-format): Hide the tail with `invisible' so that C-s can still
1097 find the hidden elements.
1098 (profiler-calltree-depth): Don't recurse so enthusiastically.
1099 (profiler-function-equal): New hash-table-test.
1100 (profiler-calltree-build-unified): New function.
1101 (profiler-calltree-build): Use it.
1102 (profiler-report-make-name-part): Indent the calltree less.
1103 (profiler-report-mode): Add visibility specs for profiler-format.
1104 (profiler-report-expand-entry, profiler-report-toggle-entry):
1105 Expand the whole subtree when provided with a prefix arg.
1106
238150c8
DG
11072013-10-09 Dmitry Gutov <dgutov@yandex.ru>
1108
1109 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
1110 iuwu-mod token.
1111 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
1112 hanging iuwu-mod token.
1113 (ruby-smie--forward-token): Do not include a dot after a token in
1114 that token.
1115 (ruby-smie--backward-token): Likewise.
1116
b0949cc4
JL
11172013-10-08 Juri Linkov <juri@jurta.org>
1118
1119 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
1120 to isearch-other-control-char.
1121 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
1122 and isearch-post-command-hook to post-command-hook.
1123 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
1124 and isearch-post-command-hook from post-command-hook.
1125 (isearch-unread-key-sequence)
1126 (isearch-reread-key-sequence-naturally)
1127 (isearch-lookup-scroll-key, isearch-other-control-char)
1128 (isearch-other-meta-char): Remove functions.
1129 (isearch-pre-command-hook, isearch-post-command-hook):
1130 New functions based on isearch-other-meta-char rewritten
1131 relying on the new behavior of overriding-terminal-local-map
1132 that does not replace the local keymaps any more. (Bug#15200)
1133
4ed77415
EZ
11342013-10-08 Eli Zaretskii <eliz@gnu.org>
1135
1136 Support menus on text-mode terminals.
1137 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
1138 functionality.
1139
1140 * tooltip.el (tooltip-mode): Don't error out on TTYs.
1141
c2de5588
DK
1142 * menu-bar.el (popup-menu, popup-menu-normalize-position):
1143 Move here from mouse.el.
4ed77415
EZ
1144 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
1145 and arrow keys.
1146 (tty-menu-navigation-map): New map for TTY menu navigation.
1147
1148 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
1149
1150 * frame.el (display-mouse-p): Report text-mode mouse as available
1151 on w32.
1152 (display-popup-menus-p): Report availability if mouse is
1153 available; don't condition on window-system.
1154
1155 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
1156 (tty-menu-selected-face): New faces.
1157
b7d5bd82
TL
11582013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1159
06286513
SM
1160 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
1161 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
1162 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
1163 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
1164 New constants.
1165 (lisp-mode-variables): New `elisp' argument.
1166 (emacs-lisp-mode): Use it.
1167 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
1168 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
1169
b7d5bd82
TL
1170 * indent.el: Use lexical-binding.
1171 (indent-region): Add progress reporter.
1172 (tab-stop-list): Make it implicitly extend to infinity by repeating the
1173 last step.
1174 (indent--next-tab-stop): New function to implement this behavior.
1175 (tab-to-tab-stop, move-to-tab-stop): Use it.
1176
11772013-10-08 Teemu Likonen <tlikonen@iki.fi>
1178
1179 * indent.el (indent-rigidly--current-indentation): New function.
1180 (indent-rigidly-map): New var.
1181 (indent-rigidly): Use it to provide interactive mode (bug#8196).
1182
5ea75d23
BG
11832013-10-08 Bastien Guerry <bzg@gnu.org>
1184
1185 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
1186
cc5da1ec
SM
11872013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1188
8ffa1a0b
SM
1189 * progmodes/perl-mode.el: Use lexical-binding.
1190 Remove redundant :group args.
1191 (perl-nochange): Change default to be closer to other major modes's
1192 standard behavior.
1193 (perl-indent-line): Don't consider text on current line as a
1194 valid beginning of function from which to indent.
1195
f2223371
SM
1196 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
1197 with more than one argument (bug#15538).
1198
44256060
SM
1199 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
1200
cc5da1ec
SM
1201 * vc/pcvs.el: Use lexical-binding.
1202 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
1203 environment of `eval'.
1204 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
1205 than a list of expressions. Adjust callers.
1206 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
1207
0ea1599d
DG
12082013-10-07 Dmitry Gutov <dgutov@yandex.ru>
1209
1210 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
cc5da1ec 1211 case of the dot in a chained method call being on the following line.
0ea1599d 1212
da3e5ebb
SM
12132013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1214
2abb4e65
SM
1215 * electric.el (electric-indent-inhibit): New var.
1216 (electric-indent-post-self-insert-function): Use it.
1217 * progmodes/python.el (python-mode): Set it.
1218
d2e0e795
SM
1219 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
1220 open braces.
1221
1222 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
1223
bdc6b4c8
SM
1224 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
1225 (css-mode): Use electric-indent-chars.
1226
da3e5ebb
SM
1227 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
1228 (font-lock-beg, font-lock-end): Move before first use.
1229 (nxml-mode): Use syntax-propertize-function.
1230 (nxml-after-change, nxml-after-change1): Adjust accordingly.
1231 (nxml-extend-after-change-region): Remove.
1232 * nxml/xmltok.el: Use lexical-binding.
1233 (xmltok-save): Use `declare'.
1234 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
1235 * nxml/nxml-util.el: Use lexical-binding.
1236 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
1237 Use `declare'.
1238 * nxml/nxml-ns.el: Use lexical-binding.
1239 (nxml-ns-save): Use `declare'.
1240 (nxml-ns-prefixes-for): Avoid add-to-list.
1241 * nxml/rng-match.el: Use lexical-binding.
1242 (rng--ipattern): Use cl-defstruct.
1243 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
1244 (rng-cons-group-after, rng-subst-group-after)
1245 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
1246 Use closures instead of `(lambda...).
1247
f8f91d5d
MA
12482013-10-07 Michael Albinus <michael.albinus@gmx.de>
1249
1250 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
1251 of BEG and END.
1252
da3e5ebb
SM
1253 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1254 Use `tramp-handle-insert-file-contents'.
f8f91d5d
MA
1255 (tramp-gvfs-handle-insert-file-contents): Remove function.
1256
da3e5ebb
SM
1257 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1258 Use `save-restriction' in order to keep markers.
f8f91d5d
MA
1259
1260 * net/trampver.el: Update release number.
1261
7ccae3b1
SM
12622013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1263
55ca2c0d
SM
1264 * progmodes/compile.el (compilation-parse-errors):
1265 Use compilation--put-prop.
1266 (compilation--ensure-parse): Check compilation-multiline.
1267
731fc3ae
SM
1268 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
1269
da3e5ebb
SM
1270 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
1271 lexical-binding.
a5833280 1272
2e7ba2c2
SM
1273 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
1274
7ccae3b1
SM
1275 * progmodes/ruby-mode.el: Fix recently added tests.
1276 (ruby-smie-grammar): Add - and +.
1277 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
1278 (ruby-smie--backward-id): New functions.
1279 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
1280 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
1281 any more.
1282
85698d63
LL
12832013-10-07 Leo Liu <sdl.web@gmail.com>
1284
1285 * register.el (register-preview-delay)
1286 (register-preview-functions): New variables.
1287 (register-read-with-preview, register-preview)
1288 (register-describe-oneline): New functions.
1289 (point-to-register, window-configuration-to-register)
1290 (frame-configuration-to-register, jump-to-register)
1291 (number-to-register, view-register, insert-register)
1292 (copy-to-register, append-to-register, prepend-to-register)
1293 (copy-rectangle-to-register): Use register-read-with-preview to
1294 read register. (Bug#15525)
1295
3986af6c
DS
12962013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
1297
1298 * net/network-stream.el (network-stream-open-starttls): Don't add
1299 --insecure if it's already present, because that gnutls-cli
1300 rejects getting that parameter twice.
1301
5cd9cda9
DG
13022013-10-06 Dmitry Gutov <dgutov@yandex.ru>
1303
1304 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
1305 keyword, too.
1306
da9ea6d9
DG
13072013-10-05 Dmitry Gutov <dgutov@yandex.ru>
1308
1309 * newcomment.el (comment-use-global-state): Change default value
1310 to t, mark obsolete (Bug#15251).
1311 (comment-beginning): In addition to `comment-to-syntax', check the
1312 value of `comment-use-global-state'.
1313
34d1a133
SM
13142013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1315
1316 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
1317 (ruby-comment-column): Follow the global default, by default.
1318 (ruby-smie-grammar): Add assignment syntax.
1319 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
1320 open-paren, a comma, or a \.
1321 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
1322 and line continuations.
1323 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
1324 followed by implicit semi-colons. Add rule for string concatenation
1325 and for indentation at BOB.
1326 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
1327
1328 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
1329 calling next-sexp, since next-token may have skipped chars which
1330 next-sexp doesn't know should be skipped!
1331
6f6ab820
LL
13322013-10-05 Leo Liu <sdl.web@gmail.com>
1333
34d1a133
SM
1334 * progmodes/octave.el (octave-send-region):
1335 Call compilation-forget-errors.
6f6ab820 1336
34ca0f4c
XF
13372013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1338
1339 * vc/vc-svn.el (vc-svn-find-admin-dir):
1340 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
1341 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
1342 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
1343 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
1344
a27c1b72
SM
13452013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1346
1347 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
1348
258ab3bc
SM
13492013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1350
1351 * subr.el (read-passwd): Hide chars even when called within a context
1352 where after-change-functions is disabled (bug#15501).
1353 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
1354 until we removed ourself from overriding-terminal-local-map.
1355
939fb29c
LL
13562013-10-04 Leo Liu <sdl.web@gmail.com>
1357
258ab3bc
SM
1358 * progmodes/octave.el (inferior-octave-mode):
1359 Call compilation-forget-errors.
939fb29c 1360
63bd7f35
XF
13612013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1362
1363 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
1364
9e6229fa
MA
13652013-10-04 Michael Albinus <michael.albinus@gmx.de>
1366
1367 * net/secrets.el (secrets-create-collection): Add optional
1368 argument ALIAS. Use proper Label keyword. Append ALIAS as
1369 dbus-call-method argument. (Bug#15516)
1370
1dab32a3
LL
13712013-10-04 Leo Liu <sdl.web@gmail.com>
1372
1373 * progmodes/octave.el (inferior-octave-error-regexp-alist)
1374 (inferior-octave-compilation-font-lock-keywords): New variables.
1375 (compilation-error-regexp-alist)
1376 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
1377 (inferior-octave-mode): Use compilation-shell-minor-mode.
1378
6cad7ba3
JS
13792013-10-04 Jorgen Schaefer <forcer@forcix.cx>
1380
1381 * minibuffer.el (completion--replace): Be careful that `end' might be
1382 a marker.
1383
acbadd00
DU
13842013-10-03 Daiki Ueno <ueno@gnu.org>
1385
1386 Add support for package signature checking.
1387 * emacs-lisp/package.el (url-http-file-exists-p)
1388 (epg-make-context, epg-context-set-home-directory)
1389 (epg-verify-string, epg-context-result-for)
1390 (epg-signature-status, epg-signature-to-string)
1391 (epg-check-configuration, epg-configuration)
1392 (epg-import-keys-from-file): Declare.
1393 (package-check-signature): New user option.
1394 (package-unsigned-archives): New user option.
1395 (package-desc): Add `signed' field.
1396 (package-load-descriptor): Set `signed' field if .signed file exists.
1397 (package--archive-file-exists-p): New function.
1398 (package--check-signature): New function.
1399 (package-install-from-archive): Check package signature.
1400 (package--download-one-archive): Check archive signature.
1401 (package-delete): Remove .signed file.
1402 (package-import-keyring): New command.
1403 (package-refresh-contents): Import default keyring.
1404 (package-desc-status): Add "unsigned" status.
1405 (describe-package-1, package-menu--print-info)
1406 (package-menu-mark-delete, package-menu--find-upgrades)
1407 (package-menu--status-predicate): Support "unsigned" status.
1408
adf2aa61
SM
14092013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1410
1411 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
1412 the new compilation scheme using the new byte-codes.
1413
1414 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
1415 (byte-pophandler): New byte codes.
1416 (byte-goto-ops): Adjust accordingly.
1417 (byte-compile--use-old-handlers): New var.
1418 (byte-compile-catch): Use new byte codes depending on
1419 byte-compile--use-old-handlers.
1420 (byte-compile-condition-case--old): Rename from
1421 byte-compile-condition-case.
1422 (byte-compile-condition-case--new): New function.
1423 (byte-compile-condition-case): New function that dispatches depending
1424 on byte-compile--use-old-handlers.
1425 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
1426 when we can.
1427
1428 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1429 Optimize under `condition-case' and `catch' if
1430 byte-compile--use-old-handlers is nil.
1431 (disassemble-offset): Handle new bytecodes.
1432
328a8179
SM
14332013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1434
1435 * subr.el (error): Use `declare'.
1436 (decode-char, encode-char): Use advertised-calling-convention instead
1437 of the docstring to discourage use of the `restriction' arg.
1438
15a1e936
DU
14392013-10-03 Daiki Ueno <ueno@gnu.org>
1440
1441 * epg.el (epg-verify-file): Add a comment saying that it does not
1442 notify verification error as a return value nor a signal.
1443 (epg-verify-string): Ditto.
1444
376f862a
KR
14452013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1446
1447 * progmodes/compile.el (compilation-start): Try globbing the arg to
1448 `cd' (bug#15417).
1449
a2f93a5f
MA
14502013-10-02 Michael Albinus <michael.albinus@gmx.de>
1451
1452 Sync with Tramp 2.2.8.
1453
1454 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1455 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
1456 * net/trampver.el: Update release number.
1457
0daa0804
JD
14582013-10-01 Jan Djärv <jan.h.d@swipnet.se>
1459
1460 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1461 and default-process-coding-system for darwin only.
1462
abd1ae34
SM
14632013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1464
1465 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
1466
be4e325d
MH
14672013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
1468
1469 * vc/vc-git.el (vc-git-grep): Disable pager.
1470
e9155c4a
DG
14712013-10-01 Dmitry Gutov <dgutov@yandex.ru>
1472
494e898b
DG
1473 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
1474 Use :url instead of :homepage, as per
1475 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
1476
e9155c4a
DG
1477 * newcomment.el (comment-beginning): When `comment-use-syntax' is
1478 non-nil, use `syntax-ppss' (Bug#15251).
1479
481a8e0f
RS
14802013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1481
be4e325d
MH
1482 * progmodes/octave.el (inferior-octave-startup-file):
1483 Prefer ~/.emacs.d/init_octave.m.
481a8e0f 1484
056453c6
DG
14852013-09-29 Dmitry Gutov <dgutov@yandex.ru>
1486
be4e325d
MH
1487 * emacs-lisp/package.el (package-desc-from-define):
1488 Accept additional arguments as plist, convert them to an alist and store
1489 them in the `extras' slot.
056453c6
DG
1490 (package-generate-description-file): Convert extras alist back to
1491 plist and append to the `define-package' form arguments.
1492 (package--alist-to-plist): New function.
1493 (package--ac-desc): Add `extras' slot.
1494 (package--add-to-archive-contents): Check if the archive-contents
1495 vector is long enough, and if it is, pass its `extras' slot value
1496 to `package-desc-create'.
1497 (package-buffer-info): Call `lm-homepage', pass the returned value
1498 to `package-desc-from-define'.
1499 (describe-package-1): Render the homepage button (Bug#13291).
1500
be4e325d
MH
1501 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1502 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
056453c6 1503
832966e5
JD
15042013-09-29 Jan Djärv <jan.h.d@swipnet.se>
1505
1506 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1507 and default-process-coding-system to utf-8-unix (Bug#15402).
1508
6cfe977d
XF
15092013-09-29 Xue Fuqiao <xfq.free@gmail.com>
1510
1511 * subr.el (looking-back): Do not recommend using looking-back.
1512
38de11bd
AM
15132013-09-28 Alan Mackenzie <acm@muc.de>
1514
1515 Fix indentation/fontification of Java enum with "implements".
1516
1517 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
1518 regexp which matches "implements", etc., in Java.
1519 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
1520 specifier clauses coming after "enum".
1521 * progmodes/cc-fonts.el (c-font-lock-declarations)
1522 (c-font-lock-enum-tail): Check for extra specifier clauses coming
1523 after "enum".
1524
1610938f
JD
15252013-09-28 Jan Djärv <jan.h.d@swipnet.se>
1526
1527 * faces.el (region): Change ns_selection_color to
1528 ns_selection_fg_color, add ns_selection_bg_color.
1529
e090f499
LL
15302013-09-28 Leo Liu <sdl.web@gmail.com>
1531
4d2e94d1
LL
1532 * progmodes/octave.el (inferior-octave-completion-table)
1533 (inferior-octave-completion-at-point): Minor tweaks.
1534
e090f499
LL
1535 * textmodes/ispell.el (ispell-lookup-words): Rename from
1536 lookup-words. (Bug#15460)
1537 (lookup-words): Obsolete.
1538 (ispell-complete-word, ispell-command-loop): All uses changed.
1539
7e138a62
RS
15402013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1541
1542 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
1543 (octave-mode-menu): Add octave-send-buffer.
1544 (octave-send-buffer): New function.
1545
5af5ed08
RS
15462013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1547
1548 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
1549 octave-lookfor.
1550 (octave-mode-menu): Add octave-lookfor.
1551 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
1552 octave-lookfor.
1553 (octave-lookfor): New function.
1554
3b7b2692
SM
15552013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1556
1557 * emacs-lisp/cl-macs.el:
1558 (cl--loop-destr-temps): Remove.
1559 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
1560 its convention.
1561 (cl--loop-set-iterator-function): New function.
1562 (cl-loop): Adjust accordingly, so as not to use cl-subst.
1563 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
1564 Bind `it' with `let' instead of substituting it with `cl-subst'.
1565 (cl--unused-var-p): New function.
1566 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
1567 Eliminate some unused variable warnings (bug#15326).
1568
529fb53f
TH
15692013-09-27 Tassilo Horn <tsdh@gnu.org>
1570
1571 * doc-view.el (doc-view-scale-reset): Rename from
1572 `doc-view-reset-zoom-level'.
1573 (doc-view-scale-adjust): New command.
1574 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
1575 `doc-view-scale-adjust'.
1576
0550c95a
TH
15772013-09-26 Tassilo Horn <tsdh@gnu.org>
1578
1579 * doc-view.el (doc-view-reset-zoom-level): New command.
1580 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
1581 zoom commands (bug#15466).
1582
6950f152
KH
15832013-09-26 Kenichi Handa <handa@gnu.org>
1584
1585 * international/quail.el (quail-help): Make it not a command.
1586
39587580
LL
15872013-09-26 Leo Liu <sdl.web@gmail.com>
1588
1589 * minibuffer.el (completion-all-sorted-completions): Make args
1590 optional as they are.
1591
00578659
DC
15922013-09-25 Daniel Colascione <dancol@dancol.org>
1593
1594 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
1595 specs are and that they're not evaluated.
1596
0c173878
SS
15972013-09-24 Sam Steingold <sds@gnu.org>
1598
1599 * midnight.el (clean-buffer-list-kill-regexps)
1600 (clean-buffer-list-kill-buffer-names): Update for the new Man
1601 buffer naming which includes the object name.
1602
84998447
SM
16032013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1604
1605 * eshell/esh-cmd.el (eshell--sep-terms): New var.
1606 (eshell-parse-command, eshell-parse-pipeline): Use it since
1607 eshell-separate-commands requires a dynamic scoped var.
1608 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
1609
33215353
LL
16102013-09-23 Leo Liu <sdl.web@gmail.com>
1611
1612 * autoinsert.el (auto-insert-alist): Make the value of
1613 lexical-binding match its file setting.
1614
57b16162
JB
16152013-09-23 Juanma Barranquero <lekktu@gmail.com>
1616
c8af4e67
JB
1617 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1618
57b16162
JB
1619 * autoarg.el (autoarg-kp-digit-argument):
1620 * electric.el (Electric-command-loop):
1621 * kmacro.el (kmacro-step-edit-insert):
1622 Do not set universal-argument-num-events.
1623
7186ba60
LL
16242013-09-22 Leo Liu <sdl.web@gmail.com>
1625
1626 * files.el (interpreter-mode-alist): Add octave.
1627
ece15004
AM
16282013-09-21 Alan Mackenzie <acm@muc.de>
1629
1630 C++: fontify identifier in declaration following "public:" correctly.
1631 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1632 to match "public", etc.
1633 (c-decl-prefix-re): Add ":" into the C++ value.
1634 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1635 bit. Add a check for a ":" preceded by "public", etc.
1636
75d83e22
EZ
16372013-09-21 Eli Zaretskii <eliz@gnu.org>
1638
1639 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1640 recognized by GDB 7.5 and later.
1641
d052d3bd
XF
16422013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1643
1644 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1645
31dca772
R
16462013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1647
1648 * subr.el (internal--call-interactively): New const.
1649 (called-interactively-p): Use it (bug#3984).
1650
98ccf24e
XF
16512013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1652
1653 * vc/pcvs.el (cvs-mode-ignore):
be4e325d
MH
1654 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1655 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
98ccf24e 1656
c39cc7d1
SM
16572013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1658
1659 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1660 (eshell-ls-orig-insert-directory): Remove.
1661 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1662 (eshell-ls-use-in-dired): Use advice-add/remove.
1663 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1664 Add `orig-fun' arg for use in :around advice.
1665 Make it check (redundantly) eshell-ls-use-in-dired.
1666
9a0289a2
GM
16672013-09-19 Glenn Morris <rgm@gnu.org>
1668
a2c501b8
GM
1669 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1670
c440407a
GM
1671 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1672
9a0289a2
GM
1673 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1674
85e05915
MA
16752013-09-19 Michael Albinus <michael.albinus@gmx.de>
1676
1677 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1678 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1679 (tramp-get-remote-python): New defuns.
1680 (tramp-get-remote-uid-with-perl)
1681 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1682 contributed by yary <not.com@gmail.com> (tiny change).
1683 (tramp-get-remote-uid-with-python)
1684 (tramp-get-remote-gid-with-python): New defuns. Python code
1685 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1686 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1687
ce503312
GM
16882013-09-19 Glenn Morris <rgm@gnu.org>
1689
f7544773
GM
1690 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1691
72fd2877
GM
1692 * eshell/em-unix.el (eshell-remove-entries):
1693 Rename argument to avoid name-clash with global `top-level'.
1694
336b5a56
GM
1695 * eshell/esh-proc.el (eshell-kill-process-function):
1696 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1697 (eshell-reset-after-proc): Remove unused arg `proc'.
1698
57a3a53d
GM
1699 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1700 (directory-files-and-attributes): Mark unused arg.
1701
3261d4af
GM
1702 * eshell/em-unix.el (eshell-remove-entries):
1703 Remove unused arg `path'. Update callers.
1704
8e51b5d0
GM
1705 * eshell/em-hist.el (eshell-hist-parse-arguments):
1706 Remove unused arg `silent'. Update callers.
1707
ce503312
GM
1708 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1709 Fix (f)boundp mix-up.
1710
1711 * eshell/em-smart.el (eshell-smart-scroll-window)
1712 (eshell-disable-after-change):
336b5a56 1713 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
ce503312 1714
ee3ce8a7
AM
17152013-09-18 Alan Mackenzie <acm@muc.de>
1716
1717 Fix fontification of type when followed by "const".
1718 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1719 "known" types from fontification.
1720
ec9177ba
GM
17212013-09-18 Glenn Morris <rgm@gnu.org>
1722
7bb3e768
GM
1723 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1724 (chart-face-list): Drop Emacsen without display-color-p.
1725
5148da15
GM
1726 * net/eww.el (libxml-parse-html-region): Declare.
1727 (eww-display-html): Explicit error if no libxml2 support.
1728
2f68e157
GM
1729 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1730
9019d095
GM
1731 * image.el (image-type-from-buffer, image-multi-frame-p):
1732 Remove --without-x warning/error.
67645389 1733
5f30349b 1734 * mouse.el (mouse-yank-primary):
45069b2e 1735 * term.el (term-mouse-paste):
5f30349b
GM
1736 Reorder to silence --without-x compilation.
1737
cd8edbbe
GM
1738 * mpc.el (doc-view-mode): Silence --without-x compilation.
1739
8a78544e
GM
1740 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1741 Silence --without-x compilation.
1742
12679bfd
GM
1743 * progmodes/gud.el (gud-find-file, gud-mode):
1744 Silence --without-x compilation.
1745 (tooltip-mode): Declare.
30810a05 1746
f0047cb9
GM
1747 * wdired.el (dired-backup-overwrite): Remove declaration.
1748 (wdired-mode-map): Add doc string.
1749
e740f9d2
GM
1750 * custom.el (x-get-resource): Declare.
1751
92d77c89
GM
1752 * eshell/em-glob.el (ange-cache):
1753 * eshell/em-unix.el (ange-cache): Declare.
1754
76e69577
GM
1755 * faces.el (x-display-list, x-open-connection, x-get-resource):
1756 Declare.
7e58af4b
GM
1757
1758 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1759 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1760 Declare.
76e69577 1761
4bd4c0af 1762 * frame.el (x-display-grayscale-p, x-display-name): Declare.
e740f9d2 1763
ffb82dbd
GM
1764 * net/gnutls.el (gnutls-log-level): Declare.
1765
986ed135
GM
1766 * net/shr.el (image-size, image-animate): Declare.
1767
e740f9d2
GM
1768 * simple.el (font-info): Declare.
1769
d2f3e9f8
GM
1770 * subr.el (x-popup-dialog): Declare.
1771
047a1a4c
GM
1772 * term/common-win.el (x-select-enable-primary)
1773 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1774 Declare.
1775
f4a1d572
GM
1776 * term/ns-win.el (x-handle-args): Declare.
1777
e843de77
GM
1778 * term/x-win.el (x-select-enable-clipboard): Declare.
1779
5fa89513
GM
1780 * term/w32-win.el (create-default-fontset): Declare.
1781
38702b5b
GM
1782 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1783 Declare.
1784
e740f9d2
GM
1785 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1786 (fit-frame-to-buffer): Explicit error if --without-x.
1787 (mouse-autoselect-window-select): Silence compiler.
1788
49a053fc
GM
1789 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1790
1791 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1792 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1793 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
91c837fe 1794 * eshell/esh-util.el (eshell-sublist):
49a053fc
GM
1795 Remove unused local variables.
1796
1797 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1798
ec9177ba
GM
1799 * textmodes/two-column.el: Make 2C-split work for --without-x.
1800 (scroll-bar-columns): Autoload.
1801 (top-level): Require fringe when compiling.
1802
9f25cb77
LL
18032013-09-18 Leo Liu <sdl.web@gmail.com>
1804
1805 * subr.el (add-hook): Robustify to handle closure as well.
1806
2b42da98
GM
18072013-09-17 Glenn Morris <rgm@gnu.org>
1808
1809 * simple.el (messages-buffer-mode-map): Unbind "g".
1810
e8b66a6a
SM
18112013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1812
9c0ad4f7
SM
1813 * help-mode.el (help-mode-finish): Use derived-mode-p.
1814 Remove obsolete highlighting.
1815
7a806dfb
SM
1816 * play/life.el (life-mode): Use define-derived-mode. Derive from
1817 special-mode.
1818 (life): Let-bind inhibit-read-only.
1819 (life-setup): Avoid `setq'. Use `life-mode'.
1820
96dbf5a8
SM
1821 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1822 which should not be needed any more.
1823 (package-menu-refresh, package-menu-describe-package): Use user-error.
1824
e8b66a6a
SM
1825 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1826 (eshell-post-rewrite-command-hook): Make obsolete.
1827 (eshell-parse-command): Simplify.
1828 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1829 (eshell--cmd): Declare.
1830 (eshell-parse-pipeline): Remove unused var `final-p'.
1831 Pass a dynvar to eshell-post-rewrite-command-hook.
1832 Implement the new eshell-post-rewrite-command-function.
1833 (eshell-invoke-directly): Remove unused arg `input'.
1834 * eshell/esh-io.el (eshell-io-initialize):
1835 Use eshell-post-rewrite-command-function (bug#15399).
1836 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1837 adjust to new calling convention.
1838 (eshell-create-handles): Rename args to avoid clashing with dynvar
1839 `standard-output'.
1840
90582f05
GM
18412013-09-17 Glenn Morris <rgm@gnu.org>
1842
1843 * simple.el (messages-buffer-mode): New major mode.
1844 (messages-buffer): New function.
1845 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1846 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
f804aa63 1847 (ert-run-test): Use `messages-buffer' function.
90582f05 1848 (ert--force-message-log-buffer-truncation): Ignore read-only.
f804aa63
GM
1849 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1850 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
90582f05 1851
39eb0cb5 18522013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1809eef8
SM
1853
1854 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1855
1f1e06e2
SM
1856 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1857
70568a90
SM
18582013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1859
504a0381
SM
1860 * icomplete.el (icomplete-in-buffer): New var.
1861 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1862 vars and replace them with functions.
1863 (icomplete-minibuffer-setup): Adjust accordingly.
1864 (icomplete--completion-table, icomplete--completion-predicate)
1865 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1866 New functions.
1867 (icomplete-forward-completions, icomplete-backward-completions)
1868 (icomplete-simple-completing-p, icomplete-exhibit)
1869 (icomplete-completions): Use them.
1870 (icomplete--in-region-buffer): New var.
1871 (icomplete--in-region-setup): New function.
1872 (icomplete-mode): Use it.
1873
70568a90
SM
1874 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1875 (bug#15379).
1876 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1877 return args and options.
1878 (eshell-eval-using-options): Use the new return value of
1879 eshell--do-opts to set the options's vars in their scope.
1880 (eshell--set-option): Rename from eshell-set-option.
1881 Add arg `opt-vals'.
1882 (eshell--process-option): Rename from eshell-process-option.
1883 Add arg `opt-vals'.
1884 (eshell--process-args): Use an `opt-vals' alist to store the options's
1885 values during their processing and return them additionally to the
1886 remaining args.
1887
578c21bc
DG
18882013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1889
1890 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1891 continuation character an operator, as far as indentation is
1892 concerned (Bug#15369).
1893
c089653d
MR
18942013-09-15 Martin Rudalics <rudalics@gmx.at>
1895
1896 * window.el (window--state-put-2): Don't process buffer state
1897 when buffer doesn't exist any more (Bug#15382).
1898
1e53bb4b
GM
18992013-09-15 Glenn Morris <rgm@gnu.org>
1900
30753242
GM
1901 * eshell/em-unix.el (eshell/rm):
1902 Make -f ignore missing files. (Bug#15373)
1903
1e53bb4b
GM
1904 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1905 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1906 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1907
0d8863b3
GM
19082013-09-14 Glenn Morris <rgm@gnu.org>
1909
1910 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
1911
d3fc6549
GM
19122013-09-13 Glenn Morris <rgm@gnu.org>
1913
1914 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
1915 (dired-guess-default): Make `file' available in the env. (Bug#15363)
1916
fcd42c11
DA
19172013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1918
1919 * frame.el (x-focus-frame): Mark as declared in frame.c.
1920
7830899f
SM
19212013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
1922
1923 * ls-lisp.el: Use advice-add.
1924 (original-insert-directory): Remove.
1925 (ls-lisp--insert-directory): Rename from insert-directory; add
1926 `orig-fun' argument.
1927 (insert-directory): Advise.
1928
84387cd2
EZ
19292013-09-13 Eli Zaretskii <eliz@gnu.org>
1930
1931 * term.el (term-emulate-terminal): Decode the command string
1932 before passing it to term-command-hook. (Bug#15337)
1933
35ffc6ba
GM
19342013-09-13 Glenn Morris <rgm@gnu.org>
1935
5c3f9bcc
GM
1936 * eshell/esh-util.el (ange-cache): Move declaration earlier.
1937
2ada368a
GM
1938 * eshell/esh-ext.el (eshell-search-path): Declare.
1939
fcef2e13
GM
1940 * eshell/em-prompt.el (eshell/pwd): Autoload it.
1941 Otherwise an error occurs if eshell-dirs module not loaded.
1942
35ffc6ba
GM
1943 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
1944
35c3d36e
MA
19452013-09-13 Michael Albinus <michael.albinus@gmx.de>
1946
1947 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
1948 `tramp-check-proper-host'. Check for a valid method name.
1949
1950 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1951 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1952 * net/tramp-sh.el (tramp-maybe-open-connection):
1953 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
1954
1955 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
1956 also for hash values.
1957
ae5e4c48
SM
19582013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1959
379add74
SM
1960 * term/ns-win.el (parameters): Don't declare as dynamic.
1961 (before-make-frame-hook): Don't add ineffective function.
1962
ae5e4c48
SM
1963 * eshell/*.el: Use lexical-binding (bug#15231).
1964
b5623270
KH
19652013-09-12 Kenichi Handa <handa@gnu.org>
1966
ae5e4c48 1967 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
b5623270 1968
30213927
GM
19692013-09-12 Glenn Morris <rgm@gnu.org>
1970
be94d713 1971 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
aa30fa6f 1972 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
be94d713 1973
44915370
GM
1974 * subr.el (do-after-load-evaluation): Also give compiler warnings
1975 when obsolete files are used (except by obsolete files).
1976
a6ae021f
GM
1977 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
1978 in the status output, assume `filename' is the first. (Bug#15322)
1979
40e64f0c
GM
1980 * vc/vc.el (vc-deduce-fileset): Doc fix.
1981
16d9f896
GM
1982 * calc/calc-help.el (Info-goto-node):
1983 * progmodes/cperl-mode.el (Info-find-node):
1984 * vc/ediff.el (Info-goto-node): Update declarations.
1985
dea01c6e
GM
1986 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
1987
759880bf 1988 * vc/vc-bzr.el (vc-compilation-mode): Declare.
96b3f75a
GM
1989 (vc-bzr-pull): Require vc-dispatcher.
1990 * vc/vc-git.el (vc-compilation-mode): Declare.
1991 (vc-git-pull): Require vc-dispatcher.
1992
08d66420
GM
1993 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
1994
30b626e9
GM
1995 * progmodes/octave.el (help-button-action): Declare.
1996
8c05cb10
GM
1997 * shell.el (shell-directory-tracker): Output error as a message
1998 rather than just returning it as a string.
1999 (shell-process-pushd): Remove useless use of message.
2000
30213927
GM
2001 * dframe.el (dframe-timer-fn):
2002 * files.el (dir-locals-read-from-file):
2003 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
2004 (mpc-format):
2005 * reveal.el (reveal-post-command):
2006 * saveplace.el (load-save-place-alist-from-file):
2007 * shell.el (shell-resync-dirs):
2008 * w32-common-fns.el (x-get-selection-value):
2009 * emacs-lisp/copyright.el (copyright-find-copyright):
2010 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2011 * emulation/tpu-edt.el (tpu-copy-keyfile):
2012 * play/bubbles.el (bubbles--mark-neighbourhood):
2013 * progmodes/executable.el
2014 (executable-make-buffer-file-executable-if-script-p):
2015 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
2016
d3b049e6
SM
20172013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2018
170266d0
SM
2019 Cleanup Eshell to rely less on dynamic scoping.
2020 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
2021 last-value, and ext-command here. Bind `args' closer to `body'.
2022 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
2023 (eshell--args): Declare new dynamic var.
2024 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
2025 last-value, and ext-command. Pass `args' to `body'.
2026 (eshell-process-args): Bind eshell--args.
2027 (eshell-set-option): Use eshell--args.
2028 * eshell/eshell.el (eshell): Use derived-mode-p.
2029 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
2030 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
2031 (eshell-glob-function): Declare.
2032 * eshell/esh-util.el: Require cl-lib.
2033 (eshell-read-hosts-file): Avoid add-to-list.
2034 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
2035 `err'.
2036 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
2037 Declare.
2038 (eshell/diff): Remove unused var `err'.
2039 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
2040 `killflag'.
2041 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
2042 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
2043 first use.
2044 * eshell/em-glob.el (eshell-glob-matches, message-shown):
2045 Move declaration before first use.
2046 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
d3b049e6
SM
2047 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
2048 rely on cl-return.
2049
56834f3b
GM
20502013-09-12 Glenn Morris <rgm@gnu.org>
2051
2052 * term/ns-win.el (global-map): Remove binding for ispell-next,
2053 deleted 1999-05-29. (Bug#15357)
2054
5c91a2b8
GM
20552013-09-11 Glenn Morris <rgm@gnu.org>
2056
da712f22
GM
2057 * echistory.el (electric-command-history): Remove call to deleted func.
2058
512e4cdc
GM
2059 * play/landmark.el (landmark-mode): Fix typos.
2060
d3506ca5
GM
2061 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
2062 Check cvs-sort-ignore-file is bound.
2063
5c91a2b8
GM
2064 * savehist.el: No need for cl when compiling on Emacs.
2065
feeff482
SM
20662013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2067
656bd483
SM
2068 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
2069 (bug#15338).
d3b049e6
SM
2070 (eshell-self-insert-command, eshell-send-invisible):
2071 Remove unused argument.
656bd483
SM
2072 (eshell-handle-control-codes): Remove unused var `orig'.
2073 Avoid delete-backward-char.
2074
feeff482
SM
2075 * files.el (set-auto-mode): Simplify a bit further.
2076
2a08047a
GM
20772013-09-11 Glenn Morris <rgm@gnu.org>
2078
2079 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
2080 (set-auto-mode): Don't regexp-quote elements.
2081 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
2082 * progmodes/cc-mode.el (interpreter-mode-alist):
2083 * progmodes/ruby-mode.el (interpreter-mode-alist):
2084 Revert previous change.
2085
34675540
SM
20862013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2087
1b3b87df
SM
2088 * play/snake.el (snake-mode):
2089 * play/mpuz.el (mpuz-mode):
2090 * play/landmark.el (lm-mode):
2091 * play/blackbox.el (blackbox-mode):
2092 * play/5x5.el (5x5-mode):
2093 * obsolete/options.el (Edit-options-mode):
2094 * net/quickurl.el (quickurl-list-mode):
2095 * net/newst-treeview.el (newsticker-treeview-mode):
2096 * mail/rmailsum.el (rmail-summary-mode):
2097 * mail/mspools.el (mspools-mode):
2098 * locate.el (locate-mode):
2099 * ibuffer.el (ibuffer-mode):
2100 * emulation/ws-mode.el (wordstar-mode):
2101 * emacs-lisp/debug.el (debugger-mode):
2102 * array.el (array-mode):
2103 * net/eudc.el (eudc-mode): Use define-derived-mode.
2104 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
2105 Move initialization into declaration.
2106 (mairix-searches-mode): Use define-derived-mode.
2107 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
2108 (eudc-edit-hotlist): Use dolist.
2109 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
2110 (Man-mode): Use define-derived-mode.
2111 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
2112 (Info-edit-mode): Use define-derived-mode.
2113 (Info-cease-edit): Use Info-mode.
2114 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
2115 into declaration.
2116 (eshell-mode): Use define-derived-mode.
2117 * chistory.el (command-history-mode-map): Rename from
2118 command-history-map.
2119 (command-history-mode): Use define-derived-mode.
da712f22 2120 (Command-history-setup): Remove function.
1b3b87df
SM
2121 * calc/calc.el (calc-trail-mode-map): New var.
2122 (calc-trail-mode): Use define-derived-mode.
2123 (calc-trail-buffer): Set calc-main-buffer manually.
2124 * bookmark.el (bookmark-insert-annotation): New function.
2125 (bookmark-edit-annotation): Use it.
2126 (bookmark-edit-annotation-mode): Make it a proper major mode.
2127 (bookmark-send-edited-annotation): Use derived-mode-p.
2128 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
2129 closer to its ideal place. Use \' to match EOS.
2130
34675540
SM
2131 * profiler.el (profiler-calltree-find): Use function-equal.
2132
6a5c15d9
GM
21332013-09-10 Glenn Morris <rgm@gnu.org>
2134
1af4c220
GM
2135 * files.el (interpreter-mode-alist): Convert to regexps.
2136 (set-auto-mode): Adapt for this. (Bug#15306)
2137 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
2138 Comment out unused variable.
2139 * progmodes/cc-mode.el (interpreter-mode-alist):
2140 * progmodes/python.el (interpreter-mode-alist):
2141 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
2142 * progmodes/sh-script.el (sh-set-shell):
2143 No longer use interpreter-mode-alist to get list of shells.
2144
6a5c15d9
GM
2145 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
2146
8c27f5ff
SM
21472013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2148
02ef6c1a 2149 * simple.el: Use set-temporary-overlay-map for universal-argument.
656bd483 2150 (universal-argument-map): Don't use default-bindings (bug#15317).
02ef6c1a
SM
2151 Bind switch-frame explicitly. Replace universal-argument-minus with
2152 a conditional binding.
2153 (universal-argument-num-events, saved-overriding-map): Remove.
2154 (restore-overriding-map): Remove.
2155 (universal-argument--mode): Rename from save&set-overriding-map,
2156 and rewrite.
2157 (universal-argument, universal-argument-more, negative-argument)
2158 (digit-argument): Adjust accordingly.
2159 (universal-argument-minus): Remove.
2160 (universal-argument-other-key): Remove.
2161
8c27f5ff
SM
2162 * subr.el (with-demoted-errors): Add `format' argument.
2163
6480194c
MA
21642013-09-10 Michael Albinus <michael.albinus@gmx.de>
2165
2166 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
2167 `tramp-cleanup-connection'.
2168
2169 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
2170 parameters KEEP-DEBUG and KEEP-PASSWORD.
2171
2172 * net/tramp.el (tramp-file-name-handler):
2173 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2174 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
2175 (tramp-maybe-open-connection):
8c27f5ff
SM
2176 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2177 Use `tramp-cleanup-connection'.
6480194c 2178
8c27f5ff
SM
2179 * net/tramp-sh.el (tramp-maybe-open-connection):
2180 Catch 'uname-changed inside the progress reporter.
6480194c 2181
e5e916d8
GM
21822013-09-10 Glenn Morris <rgm@gnu.org>
2183
9a2c9b47
GM
2184 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
2185
e5e916d8
GM
2186 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
2187 returns "alternate access method" in mode (eg "-rw-r--r--.").
2188
144e38fe
GM
21892013-09-08 Glenn Morris <rgm@gnu.org>
2190
2191 * saveplace.el (load-save-place-alist-from-file):
2192 Demote errors. (Bug#15305)
2193
af9ff9e8
MA
21942013-09-08 Michael Albinus <michael.albinus@gmx.de>
2195
2196 Improve compatibility with older Emacsen, and XEmacs.
2197
2198 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
2199 only if it is bound. It isn't for XEmacs.
8c27f5ff
SM
2200 (with-tramp-progress-reporter): Do not let-bind `result'.
2201 This yields to scoping errors in XEmacs.
af9ff9e8
MA
2202 (tramp-handle-make-auto-save-file-name): New function, moved from
2203 tramp-sh.el.
2204
2205 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
2206 for `make-auto-save-file-name'.
8c27f5ff
SM
2207 (tramp-adb--gnu-switches-to-ash):
2208 Use `tramp-compat-replace-regexp-in-string'.
af9ff9e8
MA
2209
2210 * net/tramp-cache.el (tramp-cache-print): Call
2211 `substring-no-properties' only if it is bound. It isn't for XEmacs.
2212
2213 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
2214 bound. It isn't for XEmacs.
2215
8c27f5ff
SM
2216 * net/tramp-compat.el (tramp-compat-copy-file):
2217 Catch `wrong-number-of-arguments' error.
af9ff9e8
MA
2218 (tramp-compat-replace-regexp-in-string): New defun.
2219
2220 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
2221 for `make-auto-save-file-name'.
2222 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
2223 `copy-file'.
2224 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
2225 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
2226 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
2227
8c27f5ff
SM
2228 * net/tramp-gw.el (tramp-gw-open-network-stream):
2229 Use `tramp-compat-replace-regexp-in-string'.
af9ff9e8 2230
8c27f5ff
SM
2231 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2232 Call `tramp-handle-make-auto-save-file-name'.
af9ff9e8
MA
2233 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
2234 (tramp-sh-file-gvfs-monitor-dir-process-filter)
8c27f5ff
SM
2235 (tramp-sh-file-inotifywait-process-filter):
2236 Use `tramp-compat-replace-regexp-in-string'.
af9ff9e8
MA
2237 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
2238
2239 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
2240 for `make-auto-save-file-name'.
8c27f5ff
SM
2241 (tramp-smb-handle-copy-directory):
2242 Call `tramp-compat-replace-regexp-in-string'.
af9ff9e8
MA
2243 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
2244 (tramp-smb-handle-copy-file): Improve error message.
2245 (tramp-smb-handle-rename-file): Rename directly only in case
2246 `newname' does not exist yet. This is a restriction of smbclient.
2247 (tramp-smb-maybe-open-connection): Rerun the function only when
2248 `auth-sources' is non-nil.
2249
0ca754d0
KH
22502013-09-08 Kenichi Handa <handa@gnu.org>
2251
2252 * international/characters.el: Set category "^" (Combining) for
2253 more characters.
2254
e8dd0787
AM
22552013-09-07 Alan Mackenzie <acm@muc.de>
2256
2257 Correctly fontify Java class constructors.
2258 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
2259 in Java Mode.
2260 (c-recognize-typeless-decls): Set the Java value to t.
8c27f5ff
SM
2261 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
2262 While handling a "(", add a check for, effectively, Java, and handle a
e8dd0787
AM
2263 "typeless" declaration there.
2264
f2f248e7
RW
22652013-09-07 Roland Winkler <winkler@gnu.org>
2266
2267 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
2268 field subtitle for entry type book.
2269
67982e2b
SM
22702013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2271
2272 * minibuffer.el: Make minibuffer-complete call completion-in-region
2273 rather than other way around.
2274 (completion--some, completion-pcm--find-all-completions):
2275 Don't delay signals when debugging.
2276 (minibuffer-completion-contents): Beware fields within the
2277 minibuffer contents.
2278 (completion-all-sorted-completions): Use defvar-local.
2279 (completion--do-completion, completion--cache-all-sorted-completions)
2280 (completion-all-sorted-completions, minibuffer-force-complete):
2281 Add args `beg' and `end'.
2282 (completion--in-region-1): New fun, extracted from minibuffer-complete.
2283 (minibuffer-complete): Use completion-in-region.
2284 (completion-complete-and-exit): New fun, extracted from
2285 minibuffer-complete-and-exit.
2286 (minibuffer-complete-and-exit): Use it.
2287 (completion--complete-and-exit): Rename from
2288 minibuffer--complete-and-exit.
2289 (completion-in-region--single-word): New function, extracted from
2290 minibuffer-complete-word.
2291 (minibuffer-complete-word): Use it.
2292 (display-completion-list): Make `common-substring' argument obsolete.
2293 (completion--in-region): Call completion--in-region-1 instead of
2294 minibuffer-complete.
2295 (completion-help-at-point): Pass boundaries to
2296 minibuffer-completion-help as args rather than via an overlay.
2297 (completion-pcm--string->pattern): Use `any-delim'.
2298 (completion-pcm--optimize-pattern): New function.
2299 (completion-pcm--pattern->regex): Handle `any-delim'.
2300 * icomplete.el (icomplete-forward-completions)
2301 (icomplete-backward-completions, icomplete-completions):
2302 Adjust calls to completion-all-sorted-completions and
2303 completion--cache-all-sorted-completions.
2304 (icomplete-with-completion-tables): Default to t.
2305 * emacs-lisp/crm.el (crm--current-element): Rename from
2306 crm--select-current-element. Don't put an overlay but return the
2307 boundaries instead.
2308 (crm--completion-command): Take two new args to bind to the boundaries.
2309 (crm-completion-help): Adjust accordingly.
2310 (crm-complete): Use completion-in-region.
2311 (crm-complete-word): Use completion-in-region--single-word.
2312 (crm-complete-and-exit): Use completion-complete-and-exit.
2313
e17d94a5
SM
23142013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2315
2316 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
2317 than dynamically.
2318
96727100
JL
23192013-09-06 Juri Linkov <juri@jurta.org>
2320
2321 * info.el (Info-display-images-node): When image file doesn't exist
2322 display text version of the image if it's provided in the Info file.
2323 Otherwise, display the location of missing image from SRC attribute.
2324 Add help-echo text property from ALT attribute. (Bug#15279)
2325
86cf7329
SM
23262013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2327
2328 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
2329 (edit-abbrevs-mode): Use define-derived-mode.
2330
2331 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
2332 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
2333 that it's defined.
2334 (epa-key-list-mode, epa-key-mode, epa-info-mode):
2335 Use define-derived-mode.
2336
2337 * epg.el (epg-start-encrypt): Minor CSE simplification.
2338
816244a2
WX
23392013-09-06 William Xu <william.xwl@gmail.com>
2340
2341 * arc-mode.el: Add support for 7za (bug#15264).
2342 (archive-7z-program): New var.
2343 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
2344 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
2345 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
2346
1486fa31
MA
23472013-09-06 Michael Albinus <michael.albinus@gmx.de>
2348
2349 Remove URL syntax.
2350
2351 * net/tramp.el (tramp-syntax, tramp-prefix-format)
2352 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
2353 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
2354 (tramp-postfix-host-format, tramp-file-name-regexp)
2355 (tramp-completion-file-name-regexp)
2356 (tramp-completion-dissect-file-name)
2357 (tramp-handle-substitute-in-file-name): Remove 'url case.
2358 (tramp-file-name-regexp-url)
2359 (tramp-completion-file-name-regexp-url): Remove constants.
2360
39785324
GM
23612013-09-06 Glenn Morris <rgm@gnu.org>
2362
2363 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
2364
1f896cb7
DG
23652013-09-05 Dmitry Gutov <dgutov@yandex.ru>
2366
2367 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
2368 keywords" below "here-doc beginnings" (Bug#15270).
2369
c0458e0b
SM
23702013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2371
2372 * subr.el (pop): Use `car-safe'.
2373 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
2374 to detect unused `pop' return value.
2375
2376 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
2377 var `block-regexp'.
2378 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
2379 (python-fill-string): Remove unused var `marker'.
2380 (python-skeleton-add-menu-items): Remove unused var `items'.
2381
2382 * international/mule-cmds.el: Require CL.
2383 (find-coding-systems-for-charsets): Avoid add-to-list.
2384 (sanitize-coding-system-list): New function, extracted from
2385 select-safe-coding-system-interactively.
2386 (select-safe-coding-system-interactively): Use it.
2387 (read-input-method-name): Accept symbols for `default'.
2388
2389 * emacs-lisp/advice.el (defadvice): Add indent rule.
2390
6c42fc3e
DH
23912013-09-05 Daniel Hackney <dan@haxney.org>
2392
2393 * dired-x.el:
2394 * net/ange-ftp.el:
2395 * net/browse-url.el:
2396 * net/dbus.el:
2397 * net/eudc.el:
2398 * net/eudcb-ldap.el:
2399 * net/eww.el:
2400 * net/imap.el:
2401 * printing.el:
2402 * vc/ediff-diff.el:
2403 * vc/ediff-init.el:
2404 * vc/ediff-merg.el:
2405 * vc/ediff-mult.el:
2406 * vc/ediff-util.el:
2407 * vc/ediff-wind.el:
2408 * vc/ediff.el:
2409 * vc/emerge.el:
2410 * vc/pcvs.el:
2411 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
2412 byte compiler. Remove some unused let-bound variables.
2413
4c528aab
SM
24142013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
2417 a "ref-cell", since it gets better optimized (bug#14883).
2418
bd15c390
GM
24192013-09-05 Glenn Morris <rgm@gnu.org>
2420
2421 * progmodes/cc-awk.el (c-forward-sws): Declare.
2422
1c3ac2e5
GM
24232013-09-04 Glenn Morris <rgm@gnu.org>
2424
2425 * generic-x.el [rul-generic-mode]: Require cc-mode.
2426 (c++-mode-syntax-table): Declare.
2427 (rul-generic-mode-syntax-table): Init in the defvar.
2428
52b1cc79
SM
24292013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2430
c828af56
SM
2431 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
2432 (vc-do-command, vc-set-async-update):
2433 * vc/vc-mtn.el (vc-mtn-dir-status):
2434 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
2435 (vc-hg-pull, vc-hg-merge-branch):
2436 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
2437 (vc-git-merge-branch):
2438 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
2439 (vc-cvs-dir-status-files):
2440 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
2441 (vc-bzr-dir-status-files):
2442 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
2443 * vc/vc-annotate.el: Use lexical-binding.
2444 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
2445 (vc-sentinel-movepoint): Declare.
2446 (vc-annotate): Don't use `goto-line'.
2447 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
2448 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
2449 (vc-sentinel-movepoint): Declare.
2450 * vc/vc-svn.el: Use lexical-binding.
2451 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
2452 * vc/vc-sccs.el:
2453 * vc/vc-rcs.el: Use lexical-binding.
2454
abae272c
SM
2455 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
2456 `deleted'. Don't drop errors silently.
2457
52b1cc79
SM
2458 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
2459
63191d9f
XF
24602013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2461
2462 * vc/vc.el (vc-ignore): Rewrite.
2463 (vc-default-ignore): New function.
2464 (vc-default-ignore-completion-table): Use find-ignore-file.
2465
2466 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
2467 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
2468 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
2469 Remove. Most code moved to vc.el.
2470
9d3f707c
SM
24712013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2472
abae272c 2473 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
38726039
SM
2474 * net/tramp-smb.el (tramp-smb-get-file-entries):
2475 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
2476 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
2477
fde38d49
SM
2478 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
2479 Update call to it.
2480 (eww-change-select): Remove unused var `properties'.
2481 (eww-make-unique-file-name): Remove unused var `base'.
2482
2483 * finder.el (finder-compile-keywords): Don't mess with windows.
2484
84032db7
SM
2485 * calculator.el (calculator-funcall): Fix typo in last change.
2486
724f5e41
SM
2487 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
2488
14b511d4
SM
2489 * emacs-lisp/package.el (package-activate-1): Don't let a missing
2490 <pkg>-autoloads.el file stop us.
2491
9d3f707c 2492 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
14b511d4 2493 warnings, and factor out common code.
9d3f707c 2494
88527bc0
DG
24952013-09-03 Dmitry Gutov <dgutov@yandex.ru>
2496
2497 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
2498 two-character operators and whether the character preceding them
2499 changes their meaning (Bug#15208).
2500
96edb677
FEG
25012013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2502
2503 Format code sent to Python shell for robustness.
9d3f707c
SM
2504 * progmodes/python.el (python-shell-buffer-substring):
2505 New function.
96edb677
FEG
2506 (python-shell-send-region, python-shell-send-buffer): Use it.
2507
95beaef3
MA
25082013-09-02 Michael Albinus <michael.albinus@gmx.de>
2509
2510 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
2511 * net/tramp.el (tramp-user-error): ... here.
2512 (tramp-find-method, tramp-check-proper-host)
2513 (tramp-dissect-file-name, tramp-debug-message)
2514 (tramp-handle-shell-command):
2515 * net/tramp-adb.el (tramp-adb-handle-shell-command):
2516 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
2517
2518 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
2519
f167c27b
MR
25202013-09-02 Martin Rudalics <rudalics@gmx.at>
2521
2522 * avoid.el (mouse-avoidance-point-position)
2523 (mouse-avoidance-too-close-p): Handle case where posn-at-point
2524 returns nil.
2525
cd16c5f1
FEG
25262013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2527
2528 * progmodes/python.el (python-shell-completion-get-completions):
2529 Drop use of deleted `comint-last-prompt-overlay'.
e5c144d6 2530 (python-nav-if-name-main): New command.
cd16c5f1 2531
e73c3a0d
GM
25322013-09-01 Glenn Morris <rgm@gnu.org>
2533
f8ccce03
GM
2534 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2535 Avoid leading space in $wins. Otherwise the sed command used by
2536 eg compile-main ends up containing "/*.el". (Bug#15170)
2537
e73c3a0d
GM
2538 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
2539
415f808e
GM
25402013-08-30 Glenn Morris <rgm@gnu.org>
2541
2542 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2543 Fix is-this-a-directory logic. (Bug#15220)
2544
f069bba8
SM
25452013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2546
112798c1
SM
2547 * textmodes/css-mode.el: Use SMIE.
2548 (css-smie-grammar): New var.
2549 (css-smie--forward-token, css-smie--backward-token)
2550 (css-smie-rules): New functions.
2551 (css-mode): Use them.
2552 (css-navigation-syntax-table): Remove var.
2553 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
2554 (css-indent-calculate, css-indent-line): Remove functions.
2555
2556 Misc changes to reduce use of `(lambda...); and other cleanups.
2557 * cus-edit.el: Use lexical-binding.
2558 (customize-push-and-save, customize-apropos)
2559 (custom-buffer-create-internal): Use closures.
2560 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
2561 * progmodes/ada-xref.el: Use setq.
2562 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
2563 * dframe.el: Use lexical-binding.
2564 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
2565 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
2566 * descr-text.el: Use lexical-binding.
2567 (describe-text-widget, describe-text-sexp, describe-property-list):
2568 Use closures.
2569 * comint.el (comint-history-isearch-push-state): Use a closure.
2570 * calculator.el: Use lexical-binding.
2571 (calculator-number-to-string): Make it work with lexical-binding.
2572 (calculator-funcall): Same and use cl-letf.
2573
2da4c3ab
SM
2574 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
2575 (lisp--company-doc-string, lisp--company-location): New functions.
2576 (lisp-completion-at-point): Use them to improve Company support.
2577
f069bba8
SM
2578 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
2579 params of lambda expressions.
2580 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
2581 (ruby-smie--opening-pipe-p): New function.
2582 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
2583 symbols and matched |...| for formal params.
2584 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
2585 from being treated as hanging. Handle "rescue".
2586
6758b6a8
GM
25872013-08-29 Glenn Morris <rgm@gnu.org>
2588
2589 * progmodes/cc-engine.el (c-pull-open-brace):
2590 Move definition before use.
2591
e8dfd197
SM
25922013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2593
2594 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
2595 are immutable. Don't use `unsafe' any more.
2596 (cl--defsubst-expand): Don't substitute at the same time as keeping
2597 a residual unused let-binding. Don't use `unsafe' any more.
2598
cc585c96
GM
25992013-08-29 Glenn Morris <rgm@gnu.org>
2600
ba579ea6
GM
2601 * calendar/cal-china.el (calendar-chinese-year-cache):
2602 Recenter on 2015.
2603
8201a87e
GM
2604 * nxml/nxml-util.el (nxml-debug-clear-inside):
2605 Use cl-loop rather than loop.
2606
6ee877c7
GM
2607 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
2608
cc585c96
GM
2609 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
2610
27be8d39
GM
26112013-08-28 Glenn Morris <rgm@gnu.org>
2612
397440a1
GM
2613 * progmodes/antlr-mode.el: No need to require cc-mode twice.
2614
2bb762d4
GM
2615 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
2616
27be8d39
GM
2617 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2618
2d69b99e
SM
26192013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2620
f663baa7
SM
2621 * simple.el (repeat-complex-command--called-interactively-skip):
2622 New function.
2623 (repeat-complex-command): Use it (bug#14136).
2624
dd4f8b74
SM
2625 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2626 (c-define-abbrev-table): Add `doc' argument.
2627 (c-mode-abbrev-table, c++-mode-abbrev-table)
2628 (objc-mode-abbrev-table, java-mode-abbrev-table)
2629 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2630 (awk-mode-abbrev-table): Use it.
2631 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2632 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2633 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2634 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2635 Move initialization into the declaration; and remove any
2636 autoload cookie.
2637
b58969f7
SM
2638 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2639 and dynamic let binding.
2640
4021d6a6
SM
2641 * vc/smerge-mode.el: Remove redundant :group args.
2642
2d69b99e
SM
2643 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2644 to load-path.
2645
274919fd
JL
26462013-08-28 Juri Linkov <juri@jurta.org>
2647
2648 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2649 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2650 (isearch-other-meta-char): Handle an undefined shifted printing
2651 character by downshifting it. (Bug#15200)
2652
121f8c95
JL
26532013-08-28 Juri Linkov <juri@jurta.org>
2654
2655 * isearch.el (isearch-search): Change regexp error message for
2656 non-regexp searches. (Bug#15166)
2657
50b13cde
PE
26582013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2659
2660 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2661 for portability to hosts where /bin/sh has problems.
2662
95888bca
SM
26632013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2664
2665 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2666
bbe558f1
JL
26672013-08-27 Juri Linkov <juri@jurta.org>
2668
2669 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2670 in the keyboard macro. (Bug#15126)
2671
26f98a7d
JL
26722013-08-27 Juri Linkov <juri@jurta.org>
2673
2674 * isearch.el (isearch-quote-char): Comment out converting unibyte
2675 to multibyte, thus syncing with its `quoted-insert' counterpart.
2676 (Bug#15166)
2677
7c97d35e
MR
26782013-08-27 Martin Rudalics <rudalics@gmx.at>
2679
2680 * window.el (display-buffer-use-some-window): Add missing
95888bca
SM
2681 argument in call of get-largest-window (Bug#15185).
2682 Reported by Stephen Leake.
7c97d35e 2683
a0b5606e 26842013-08-27 Glenn Morris <rgm@gnu.org>
d96ad422
GM
2685
2686 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2687
9e89d835
SM
26882013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2689
2690 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2691 from a matcher-function unless there's no more matches (bug#15161).
2692
78fc2530
MA
26932013-08-26 Michael Albinus <michael.albinus@gmx.de>
2694
2695 * minibuffer.el: Revert change from 2013-08-20.
2696
2697 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2698 with text property `tramp-default', if appropriate.
2699 (tramp-check-proper-host): New defun.
2700 (tramp-dissect-file-name): Do not check hostname. Revert change
2701 of 2013-03-18.
2702 (tramp-backtrace): Make VEC-OR-PROC optional.
2703
2704 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2705 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2706 * net/tramp-sh.el (tramp-maybe-open-connection):
95888bca
SM
2707 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2708 Apply `tramp-check-proper-host'.
78fc2530 2709
edca97cd
TH
27102013-08-26 Tassilo Horn <tsdh@gnu.org>
2711
2712 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2713 lambda expression in order to have `describe-variable' display it.
2714
df54bcbd
MA
27152013-08-26 Michael Albinus <michael.albinus@gmx.de>
2716
2717 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2718 BUF can be optional. (Bug#15186)
2719
eed99101
XF
27202013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2721
2722 * progmodes/flymake.el (flymake-get-real-file-name-function):
2723 Fix broken customization. (Bug#15184)
2724
b5eb9035
AM
27252013-08-25 Alan Mackenzie <acm@muc.de>
2726
8a51e842
AM
2727 Improve indentation of bracelists defined by macros (without "=").
2728
2729 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2730 expansion begins with "{", regard it as bracelist when it doesn't
2731 contain a ";".
2732
869455d4
AM
2733 Parse C++ inher-intro when there's a template split over 2 lines.
2734
2735 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2736 rigorously the search for "class" etc. followed by ":".
2737
2738 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2739 random languages a regexp which never matches rather than nil.
2740
b5eb9035
AM
2741 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2742
2743 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2744 (c-awk-regexp-one-line-possibly-open-char-list-re)
2745 (c-awk-one-line-possibly-open-regexp-re)
2746 (c-awk-one-line-non-syn-ws*-re): Remove.
2747 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2748 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2749 (c-awk-space*-unclosed-regexp-/-re): New constants.
2750 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2751 aren't regexp delimiters.
2752
2753 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2754 handling for a rare situation in AWK Mode involving unterminated
2755 strings/regexps.
2756
61611d54
GM
27572013-08-23 Glenn Morris <rgm@gnu.org>
2758
2d85dc34
GM
2759 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2760
cb8d2612
GM
2761 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2762
bb35f42f
GM
2763 * files.el (create-file-buffer): If the result would begin with
2764 spaces, prepend a "|" instead of removing them. (Bug#15162)
61611d54 2765
b9808e77
SM
27662013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2767
e3a66363
SM
2768 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2769 text-properties (bug#15155).
2770
b9808e77
SM
2771 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2772 exist any more.
2773 (calc-keypad-redraw): Remove unused var `pad'.
2774 (calc-keypad-press): Remove unused var `menu'.
2775
7fd5f65e
MR
27762013-08-23 Martin Rudalics <rudalics@gmx.at>
2777
b9808e77
SM
2778 * window.el (display-buffer-pop-up-frame):
2779 Call pop-up-frame-function with BUFFER current so `make-frame' will
7fd5f65e
MR
2780 use it as the new frame's buffer (Bug#15133).
2781
8352b530
SM
27822013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2783
2784 * calendar/timeclock.el: Minor cleanups.
2785 (timeclock-ask-before-exiting, timeclock-use-display-time):
2786 Use `symbol'.
2787 (timeclock-modeline-display): Define as alias before the
2788 actual definition.
2789 (timeclock-mode-line-display): Use define-minor-mode.
2790 (timeclock-day-list-template): Make it a function, add an argument.
2791 (timeclock-day-list-required, timeclock-day-list-length)
2792 (timeclock-day-list-debt, timeclock-day-list-span)
2793 (timeclock-day-list-break): Adjust calls accordingly.
2794
9f7b1925
SM
27952013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2796
2797 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2798 Use read--expression so that completion works again.
2799
6e50e983
SS
28002013-08-21 Sam Steingold <sds@gnu.org>
2801
2802 Add rudimentary inferior shell interaction
2803 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2804 (sh-set-shell): Reset it.
9f7b1925
SM
2805 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2806 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
6e50e983 2807
dbb0d350
SM
28082013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2809
2810 * align.el: Use lexical-binding.
2811 (align-region): Simplify accordingly.
2812
c88586a9
MA
28132013-08-20 Michael Albinus <michael.albinus@gmx.de>
2814
2815 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2816
2817 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2818 `non-essential' up.
2819
f95527c8
MA
28202013-08-17 Michael Albinus <michael.albinus@gmx.de>
2821
2822 * net/tramp.el:
2823 * net/tramp-adb.el:
2824 * net/tramp-cmds.el:
2825 * net/tramp-ftp.el:
2826 * net/tramp-gvfs.el:
2827 * net/tramp-gw.el:
2828 * net/tramp-sh.el: Don't wrap external variable declarations by
2829 `eval-when-compile'.
2830
4b5fe4ee
LMI
28312013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2832
2833 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2834 now that Emacs supports ImageMagick animations.
2835
13c366c9
MA
28362013-08-16 Michael Albinus <michael.albinus@gmx.de>
2837
2838 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2839 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2840
3dfc5cd6
MR
28412013-08-16 Martin Rudalics <rudalics@gmx.at>
2842
2843 * window.el (mouse-autoselect-window-select): Do autoselect when
2844 mouse pointer is on margin.
2845
4bbb4381
WP
28462013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2847
2848 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2849
3a2ddc2d
GM
28502013-08-16 Glenn Morris <rgm@gnu.org>
2851
e8bedf5a
GM
2852 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2853 Handle "Remote Directory" response of some clients. (Bug#15058)
2854
58c4682f
GM
2855 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2856 Tweak warning. (Bug#14926)
2857
57953f49
GM
2858 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2859 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2860
3a2ddc2d
GM
2861 * image-mode.el (image-mode-map): Add menu items to reverse,
2862 increase, decrease, reset animation speed.
2863 (image--set-speed, image-increase-speed, image-decrease-speed)
2864 (image-reverse-speed, image-reset-speed): New functions.
2865 (image-mode-map): Add bindings for speed commands.
2866
2867 * image.el (image-animate-get-speed, image-animate-set-speed):
2868 New functions.
2869 (image-animate-timeout): Respect image :speed property.
2870
10fa0ed3
SM
28712013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2872
2873 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2874 previous line (bug#15101).
2875 (debugger-eval-expression, debugger-record-expression):
2876 Use read--expression (bug#15102).
2877
5d89d9d2
MA
28782013-08-15 Michael Albinus <michael.albinus@gmx.de>
2879
2880 Remove byte compiler warnings, visible when compiling with
2881 `byte-compile-force-lexical-warnings' set to t.
2882
2883 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
2884 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
2885 (tramp-handle-unhandled-file-name-directory)
2886 (tramp-handle-file-notify-add-watch, tramp-action-login)
2887 (tramp-action-succeed, tramp-action-permission-denied)
2888 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2889 arguments with "_".
2890
2891 * net/tramp-adb.el (tramp-adb-parse-device-names)
2892 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2893 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2894 (tramp-adb-handle-file-truename): Remove unused arguments.
2895
2896 * net/tramp-cache.el (tramp-flush-directory-property)
2897 (tramp-flush-connection-property, tramp-list-connections)
2898 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2899
10fa0ed3
SM
2900 * net/tramp-compat.el (tramp-compat-make-temp-file):
2901 Rename FILENAME to F.
5d89d9d2
MA
2902
2903 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2904 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2905 (tramp-zeroconf-parse-workstation-device-names)
2906 (tramp-zeroconf-parse-webdav-device-names)
2907 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2908
2909 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
2910 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
2911
2912 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
2913 arguments.
2914 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
2915 (tramp-sh-handle-insert-file-contents-literally)
2916 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
2917 with "_".
2918 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
2919 Remove unused variables.
2920
2921 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
2922 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
2923 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
2924
2925 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
2926 Make them a defconst.
2927 (tramp-uuencode-region): Remove unused variable.
2928
62f33bae
JB
29292013-08-14 Juanma Barranquero <lekktu@gmail.com>
2930
2931 * frameset.el (frameset--prop-setter): New function.
2932 (frameset-prop): Add gv-setter declaration.
14d1e463
JB
2933 (frameset-filter-minibuffer): Deal with the case that the minibuffer
2934 parameter was already set in FILTERED. Doc fix.
2935 (frameset--record-minibuffer-relationships): Allow saving a
2936 minibufferless frame without its corresponding minibuffer frame.
2937 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
2938 frame, if the frame id matches.
2939 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
2940 frames before orphaned ones.
2941 (frameset-restore): Warn about orphaned windows, instead of error out.
62f33bae 2942
c660a885
MR
29432013-08-14 Martin Rudalics <rudalics@gmx.at>
2944
2945 * window.el (window-make-atom): Don't overwrite parameter
2946 already present.
2947 (display-buffer-in-atom-window): Handle special case where we
2948 split an already atomic window.
2949 (window--major-non-side-window, display-buffer-in-side-window)
2950 (window--side-check): Ignore minibuffer window when walking
2951 window tree.
2952 (window-deletable-p): Return 'frame only if no other frame uses
2953 our minibuffer window.
2954 (record-window-buffer): Run buffer-list-update-hook.
2955 (split-window): Make sure window--check-frame won't destroy an
2956 existing atomic window in case the new window gets nested
2957 inside.
2958 (display-buffer-at-bottom): Ignore minibuffer window when
2959 walking window tree. Don't split a side window.
2960 (pop-to-buffer): Don't set-buffer here, the select-window call
2961 should do that.
2962 (mouse-autoselect-window-select): Autoselect only if we are in the
2963 text portion of the window.
2964
8259030d
LMI
29652013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2966
21c58ae2
LMI
2967 * net/shr.el (shr-parse-image-data): New function to grab both the
2968 data itself and the Content-Type.
2969 (shr-put-image): Use it.
2970
2971 * net/eww.el (eww-display-image): Ditto.
2972
8259030d
LMI
2973 * image.el (image-content-type-suffixes): New variable.
2974
ad756449
FEG
29752013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2976
2977 * progmodes/python.el (python-imenu--build-tree)
2978 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
2979
f73f4ce6
XF
29802013-08-13 Xue Fuqiao <xfq.free@gmail.com>
2981
2982 * simple.el (backward-word): Mention the optional argument.
2983
1f585e65
SM
29842013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2985
2986 * frameset.el (frameset--make): Rename constructor from make-frameset.
2987 (frameset-p, frameset-valid-p): Don't autoload.
2988 (frameset-valid-p): Use normal accessors.
2989
af1c6c84
GM
29902013-08-13 Glenn Morris <rgm@gnu.org>
2991
55e47f95
GM
2992 * progmodes/compile.el (compile-command): Tweak example in doc.
2993 * obsolete/scribe.el (scribe-mode):
2994 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
2995
f0024d8c
GM
2996 * mail/feedmail.el (feedmail-confirm-outgoing)
2997 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
2998
2999 * cus-start.el (truncate-partial-width-windows): Fix type.
3000
3001 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
3002
af1c6c84
GM
3003 * net/shr.el (shr-table-horizontal-line): Fix custom type.
3004
5514cc4c
SM
30052013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3006
3007 * emacs-lisp/timer.el (timer--time-setter): New function.
3008 (timer--time): Use it as gv-setter.
3009
3010 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
3011 setter is not a symbol.
3012
7997a2f1
GJ
30132013-08-12 Grégoire Jadi <daimrod@gmail.com>
3014
3015 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
3016 if sending fails. This makes debugging easier.
3017
01f1a9ab
JB
30182013-08-12 Juanma Barranquero <lekktu@gmail.com>
3019
3020 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
3021 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
3022 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
3023
594a4307
EZ
30242013-08-12 Eli Zaretskii <eliz@gnu.org>
3025
3026 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
3027
7a22490f 30282013-08-12 Glenn Morris <rgm@gnu.org>
f26afdb0
GM
3029
3030 * format.el (format-annotate-function):
3031 Handle read-only text properties in the source. (Bug#14887)
3032
3e41a054
LMI
30332013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3034
5514cc4c
SM
3035 * net/eww.el (eww-display-html): Ignore coding system errors.
3036 One web site uses "utf-8lias" as the coding system.
3e41a054 3037
7ec326db
JB
30382013-08-11 Juanma Barranquero <lekktu@gmail.com>
3039
3040 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
3041
5660113b
JB
30422013-08-10 Juanma Barranquero <lekktu@gmail.com>
3043
9a4ebc74
JB
3044 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
3045 (tutorial--detailed-help): Remove unused local variables.
3046 (tutorial--save-tutorial-to): Use ignore-errors.
3047 (help-with-tutorial): Use looking-at-p.
3048
3049 * view.el (view-buffer-other-window, view-buffer-other-frame):
3050 Mark unused arguments.
3051
3052 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
3053 (woman-select-symbol-fonts, woman, woman-find-file)
3054 (woman-insert-file-contents, woman-non-underline-faces):
3055 Use string-match-p.
3056 (woman1-unquote): Move declaration.
3057
3058 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
3059 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
3060 argument. Remove unused local variable.
3061 (xml-parse-elem-type): Use string-match-p.
3062 (xml-substitute-numeric-entities): Use ignore-errors.
3063
45fdb482
JB
3064 * calculator.el (calculator): Mark unused argument.
3065 (calculator-paste, calculator-quit, calculator-integer-p):
3066 Use ignore-errors.
3067 (calculator-string-to-number, calculator-decimal, calculator-exp)
3068 (calculator-op-or-exp): Use string-match-p.
3069
3070 * dired.el (dired-buffer-more-recently-used-p): Declare.
3071 (dired-insert-set-properties, dired-insert-old-subdirs):
3072 Use ignore-errors.
3073
3074 * dired-aux.el (dired-compress): Use ignore-errors.
3075 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
3076 (dired-do-async-shell-command, dired-do-shell-command)
3077 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
3078 (dired-insert-subdir-validate): Use string-match-p.
3079 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
3080 (dired-add-entry): Use string-match-p, looking-at-p.
3081 (dired-insert-subdir-newpos): Remove unused local variable.
3082
3083 * filenotify.el (file-notify-callback): Remove unused local variable.
3084
3085 * filesets.el (filesets-error): Mark unused argument.
3086 (filesets-which-command-p, filesets-filter-dir-names)
3087 (filesets-directory-files, filesets-get-external-viewer)
3088 (filesets-ingroup-get-data): Use string-match-p.
3089
3090 * find-file.el (ff-other-file-name, ff-other-file-name)
3091 (ff-find-the-other-file, ff-cc-hh-converter):
3092 Remove unused local variables.
3093 (ff-get-file-name): Use string-match-p.
3094 (ff-all-dirs-under): Use ignore-errors.
3095
3096 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
3097 (follow-select-if-visible): Remove unused local variable.
3098
3099 * forms.el (read-file-filter): Move declaration.
3100 (forms--make-format, forms--make-parser, forms-insert-record):
3101 Quote function with #'.
3102 (forms--update): Use string-match-p. Quote function with #'.
3103
3104 * help-mode.el (help-dir-local-var-def): Mark unused argument.
3105 (help-make-xrefs): Use looking-at-p.
3106 (help-xref-on-pp): Use looking-at-p, ignore-errors.
3107
3108 * ibuffer.el (ibuffer-ext-visible-p): Declare.
3109 (ibuffer-confirm-operation-on): Use string-match-p.
3110
3111 * msb.el (msb-item-handler, msb-dired-item-handler):
3112 Mark unused arguments.
3113
3114 * ses.el (ses-decode-cell-symbol)
3115 (ses-kill-override): Remove unused local variable.
3116 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
3117 (ses-load): Use ignore-errors, looking-at-p.
3118 (ses-jump-safe): Use ignore-errors.
3119 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
3120
3121 * tabify.el (untabify, tabify): Mark unused arguments.
3122
3123 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
3124 Mark unused argument.
3125 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
3126 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
3127
c880af52
JB
3128 * emacs-lisp/timer.el (timer--time): Define setter with
3129 gv-define-setter to avoid deprecation warning.
3130
5660113b 3131 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
c880af52 3132 (*record-cmpl-statistics-p*): Remove (was commented out).
5660113b
JB
3133 (cmpl-statistics-block): Remove (body was commented out).
3134 All callers changed.
3135 (add-completions-from-buffer, load-completions-from-file):
3136 Remove unused variables.
3137
156aab80
JB
31382013-08-09 Juanma Barranquero <lekktu@gmail.com>
3139
5c5dee78
JB
3140 * filecache.el (file-cache-delete-file-list):
3141 Print message only when told so.
3142 (file-cache-files-matching): Use #' in mapconcat argument.
3143
156aab80
JB
3144 * ffap.el (ffap-url-at-point): Fix reference to variable
3145 thing-at-point-default-mail-uri-scheme.
3146
ad9dcd70
SM
31472013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
3148
54bd972f
SM
3149 * subr.el (define-error): New function.
3150 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
3151 error-file-not-found and define with define-error.
3152 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
3153 and define with define-error.
3154 * userlock.el (file-locked, file-supersession):
3155 * simple.el (mark-inactive):
3156 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
3157 * progmodes/ada-mode.el (ada-mode-errors):
3158 * play/life.el (life-extinct):
3159 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
3160 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
3161 * nxml/rng-util.el (rng-error):
3162 * nxml/rng-uri.el (rng-uri-error):
3163 * nxml/rng-match.el (rng-compile-error):
3164 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
3165 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
3166 * nxml/nxml-rap.el (nxml-scan-error):
3167 * nxml/nxml-outln.el (nxml-outline-error):
3168 * net/soap-client.el (soap-error):
3169 * net/gnutls.el (gnutls-error):
3170 * net/ange-ftp.el (ftp-error):
3171 * mpc.el (mpc-proc-error):
3172 * json.el (json-error, json-readtable-error, json-unknown-keyword)
3173 (json-number-format, json-string-escape, json-string-format)
3174 (json-key-format, json-object-format):
3175 * jka-compr.el (compression-error):
3176 * international/quail.el (quail-error):
3177 * international/kkc.el (kkc-error):
3178 * emacs-lisp/ert.el (ert-test-failed):
3179 * calc/calc.el (calc-error, inexact-result, math-overflow)
3180 (math-underflow):
3181 * bookmark.el (bookmark-error-no-filename):
3182 * epg.el (epg-error): Define with define-error.
3183
0ea9e53a
SM
3184 * time.el (display-time-event-handler)
3185 (display-time-next-load-average): Don't call sit-for since it seems
3186 unnecessary (bug#15045).
3187
b0429158
SM
3188 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
3189 Use #' instead of ' to quote functions.
3190 (checkdoc-output-mode): Use setq-local.
3191 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
3192 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
3193 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
3194 (checkdoc-ispell, checkdoc-ispell-current-buffer)
3195 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
3196 (checkdoc-ispell-message-text, checkdoc-ispell-start)
3197 (checkdoc-ispell-continue, checkdoc-ispell-comments)
3198 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
3199
ad9dcd70
SM
3200 * ido.el (ido-completion-help): Fix up compiler warning.
3201
77187e6f
JB
32022013-08-09 Juanma Barranquero <lekktu@gmail.com>
3203
3204 * frameset.el (frameset-p): Add autoload cookie.
3205 (frameset--jump-to-register): New function, based on code moved from
3206 register.el.
3207 (frameset-to-register): Move from register.el. Adapt to `registerv'.
3208
3209 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
3210 (frameset-restore, frameset-save, frameset-session-filter-alist):
3211 Remove declarations.
3212 (register-alist): Doc fix.
3213 (frameset-to-register): Move to frameset.el.
3214 (jump-to-register, describe-register-1): Remove frameset-specific code.
3215
9d3aa82c
JB
32162013-08-08 Juanma Barranquero <lekktu@gmail.com>
3217
3218 * allout-widgets.el (allout-widgets-pre-command-business)
3219 (allout-widgets-post-command-business)
3220 (allout-widgets-after-change-handler)
3221 (allout-decorate-item-and-context, allout-set-boundary-marker)
3222 (allout-body-modification-handler)
3223 (allout-graphics-modification-handler): Mark ignored arguments.
3224 (allout-widgets-post-command-business)
3225 (allout-widgets-exposure-change-processor)
3226 (allout-widgets-exposure-undo-processor)
3227 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
3228 (allout-parse-item-at-point, allout-decorate-item-guides)
3229 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
3230 * allout.el (epa-passphrase-callback-function): Declare.
3231 (allout-overlay-insert-in-front-handler)
3232 (allout-overlay-interior-modification-handler)
3233 (allout-isearch-end-handler, allout-chart-siblings)
3234 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
3235 (allout-yank-processing, allout-process-exposed)
3236 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
5514cc4c 3237 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
9d3aa82c
JB
3238 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
3239 (lisp-indent-defform): Mark ignored arguments.
3240 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
3241 (calculate-lisp-indent): Remove unused variables.
3242 * international/characters.el (indian-2-column, arabic-2-column)
3243 (tibetan): Mark ignored arguments.
3244 (use-cjk-char-width-table): Mark ignored arguments.
3245 Remove unused variables.
3246 * international/fontset.el (build-default-fontset-data)
3247 (x-compose-font-name, create-fontset-from-fontset-spec):
3248 Mark ignored arguments.
3249 (fontset-plain-name): Remove unused variables.
3250 * international/mule.el (charset-id, charset-bytes, generic-char-p)
3251 (keyboard-coding-system): Mark ignored arguments.
3252 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
3253 * help.el (resize-temp-buffer-window):
3254 * window.el (display-buffer-in-major-side-window)
3255 (display-buffer-in-side-window, display-buffer-in-previous-window):
3256 Remove unused variables.
3257 * isearch.el (isearch-forward-symbol):
3258 * version.el (emacs-bzr-version-bzr):
3259 * international/mule-cmds.el (current-language-environment):
3260 * term/common-win.el (x-handle-iconic, x-handle-geometry)
3261 (x-handle-display):
3262 * term/pc-win.el (x-list-fonts, x-display-planes)
3263 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
3264 (x-server-version, x-display-screens, x-display-mm-height)
3265 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
3266 (x-selection-owner-p, x-own-selection-internal)
3267 (x-disown-selection-internal, x-get-selection-internal)
3268 (msdos-initialize-window-system):
3269 * term/tty-colors.el (tty-color-alist, tty-color-clear):
3270 * term/x-win.el (x-handle-no-bitmap-icon):
3271 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
3272 (vc-default-find-file-hook, vc-default-extra-menu):
3273 Mark ignored arguments.
3274
0ca3f70e
SM
32752013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3276
3277 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
3278 break-condition in the context of the debugged code (bug#12685).
3279
74c5d24c
CS
32802013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
3281
3282 * comint.el:
3283 Do not use an overlay to highlight the last prompt. (Bug#14744)
3284 (comint-mode): Make comint-last-prompt buffer local.
3285 (comint-last-prompt): New variable.
3286 (comint-last-prompt-overlay): Remove. Superseded by
3287 comint-last-prompt.
0ca3f70e
SM
3288 (comint-snapshot-last-prompt, comint-output-filter):
3289 Use comint-last-prompt.
74c5d24c 3290
c03c02ee
JB
32912013-08-08 Juanma Barranquero <lekktu@gmail.com>
3292
a3738d20 3293 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
c03c02ee
JB
3294 (frameset-save): Check validity of the resulting frameset.
3295
04263d23
XF
32962013-08-08 Xue Fuqiao <xfq.free@gmail.com>
3297
3298 * ido.el (ido-record-command): Add doc string.
3299
76c5e5ab
JB
33002013-08-08 Juanma Barranquero <lekktu@gmail.com>
3301
3302 * frameset.el (frameset): Do not disable creation of the default
3303 frameset-p predicate. Doc fix.
3304 (frameset-valid-p): New function, copied from the old predicate-p.
3305 Add additional checks.
3306 (frameset-restore): Check with frameset-valid-p.
3307 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
3308 (frameset-name, frameset-description, frameset-properties)
3309 (frameset-states): Add docstring.
f9dbf1cb
JB
3310 (frameset-session-filter-alist, frameset-persistent-filter-alist)
3311 (frameset-filter-alist): Doc fixes.
76c5e5ab 3312
bd0c3c0b
JB
33132013-08-08 Juanma Barranquero <lekktu@gmail.com>
3314
3315 * frameset.el (frameset-p, frameset-prop): Doc fixes.
3316
c735544c
SM
33172013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3318
3319 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
3320 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
3321 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
3322 (byte-compile-normal-call): Remove obsolescence check.
3323
2805a651
JB
33242013-08-08 Juanma Barranquero <lekktu@gmail.com>
3325
3677ffeb
JB
3326 * frameset.el (frameset-restore): Doc fix.
3327
2805a651
JB
3328 * register.el (frameset-frame-id, frameset-frame-with-id)
3329 (frameset-p, frameset-restore, frameset-save): Declare.
3330 (register-alist): Document framesets.
3331 (frameset-session-filter-alist): Declare.
3332 (frameset-to-register): New function.
3333 (jump-to-register): Implement jumping to framesets. Doc fix.
3334 (describe-register-1): Describe framesets.
3335
3336 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
3337
a912c016
JB
33382013-08-07 Juanma Barranquero <lekktu@gmail.com>
3339
3340 * desktop.el (desktop-save-frameset): Use new frameset-save args.
3341 Use lexical-binding.
3342
3343 * frameset.el (frameset): Use type vector, not list (incompatible
3344 change). Do not declare a new constructor, use the default one.
3345 Upgrade suggested properties `app', `name' and `desc' to slots `app',
3346 `name' and `description', respectively, and add read-only slot
3347 `timestamp'. Doc fixes.
3348 (frameset-copy, frameset-persistent-filter-alist)
3349 (frameset-filter-alist, frameset-switch-to-gui-p)
3350 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
3351 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
3352 (frameset-filter-iconified, frameset-keep-original-display-p):
3353 Doc fixes.
3354 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
3355 Rename from frameset-filter-(save|restore)-param. All callers changed.
3356 Doc fix.
3357 (frameset-p): Adapt to change to vector and be more thorough.
3358 Change arg name to OBJECT. Doc fix.
3359 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
3360 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
3361 All callers changed.
3362 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
3363 All callers changed.
3364 (frameset--record-minibuffer-relationships): Rename from
3365 frameset--process-minibuffer-frames. All callers changed.
3366 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
3367 Use new default constructor (again). Doc fix.
3368 (frameset--find-frame-if): Rename from `frameset--find-frame.
3369 All callers changed.
3370 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
3371 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
3372 Doc fix.
3373 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
3374 PARAMETERS and WINDOW-STATE, respectively.
3375 (frameset-restore): Add new keyword argument PREDICATE.
3376 Reset frameset--target-display to nil. Doc fix.
3377
bb41480a
SM
33782013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3379
f001e98e
SM
3380 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
3381 (bat-mode): Use it.
3382 (bat-mode-syntax-table): Mark \n as end-of-comment.
3383 (bat-font-lock-keywords): Remove comment rule.
3384
7679edb1
SM
3385 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
3386 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
3387
bb41480a
SM
3388 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
3389 (byte-compile-callargs-warn): Use `push'.
3390 (byte-compile-arglist-warn): Ignore higher-order "calls".
3391 (byte-compile-file-form-autoload): Use `pcase'.
3392 (byte-compile-function-form): If quoting a symbol, check that it exists.
3393
cdc1ebb9
EZ
33942013-08-07 Eli Zaretskii <eliz@gnu.org>
3395
3396 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
3397 and add a few popular commands found in batch files.
3398 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
3399 (dos-mode): Doc fixes.
3400
312b1740
SM
34012013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3402
3403 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
3404 (dos-mode): Use setq-local. Add space after "rem".
3405 (dos-mode-syntax-table): Don't use "w" for symbol chars.
3406 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
3407
400a3178
AM
34082013-08-07 Arni Magnusson <arnima@hafro.is>
3409
3410 * progmodes/dos.el: New file.
3411 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
3412 dos-mode.
3413
3b5c03d3
GM
34142013-08-06 Glenn Morris <rgm@gnu.org>
3415
3416 * calendar/calendar.el: Add new faces, and day-header-array.
3417 (calendar-weekday-header, calendar-weekend-header)
3418 (calendar-month-header): New faces.
3419 (calendar-day-header-construct): New function.
3420 (calendar-day-header-width): Also :set calendar-day-header-array.
3421 (calendar-american-month-header, calendar-european-month-header)
3422 (calendar-iso-month-header): Use calendar- faces.
3423 (calendar-generate-month):
3424 Use calendar-day-header-array for day headers; apply faces to them.
3425 (calendar-mode): Check calendar-font-lock-keywords non-nil.
3426 (calendar-abbrev-construct): Add optional maxlen argument.
3427 (calendar-day-name-array): Doc fix.
3428 (calendar-day-name-array, calendar-abbrev-length)
3429 (calendar-day-abbrev-array):
3430 Also :set calendar-day-header-array, and maybe redraw.
3431 (calendar-day-header-array): New option. (Bug#15007)
8a806f04 3432 (calendar-font-lock-keywords): Set to nil and make obsolete.
3b5c03d3
GM
3433 (calendar-day-name): Add option to use header array.
3434
ec6a2d7a
LMI
34352013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3436
3437 * net/shr.el (shr-render-td): Remove debugging.
3438 (shr-render-td): Make width computation consistent by defaulting
3439 all zero-width columns to 10 characters. This may not be optimal,
3440 but it's at least consistent.
2122cb6d
LMI
3441 (shr-make-table-1): Redo last change to fix the real problem in
3442 colspan handling.
ec6a2d7a 3443
ed4fd9c5
DA
34442013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3445
0ca3f70e
SM
3446 * files.el (cache-long-line-scans):
3447 Make obsolete alias to `cache-long-scans'.
ed4fd9c5 3448
64e22afe
JB
34492013-08-06 Juanma Barranquero <lekktu@gmail.com>
3450
024b38fc
JB
3451 * frameset.el (frameset, frameset-filter-alist)
3452 (frameset-filter-params, frameset-save, frameset--reuse-frame)
3453 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
3454 (frameset-compute-pos): Rename from frameset--compute-pos,
3455 and add docstring.
3456 (frameset-move-onscreen): Use frameset-compute-pos.
3457 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3458
64e22afe
JB
3459 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
3460 Fix typos in docstrings.
3461
c8c2aca8
DA
34622013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3463
3464 * frame.el (get-other-frame): Tiny cleanup.
3465
1d237bba
JB
34662013-08-06 Juanma Barranquero <lekktu@gmail.com>
3467
8951efef
JB
3468 * vc/vc.el (vc-default-ignore-completion-table):
3469 Silence byte-compiler warning.
3470
307764cc
JB
3471 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
3472 slot , which can indeed be nil.
3473 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3474 Move entry for `left' from persistent to live filter alist.
3475 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
3476 Doc fixes.
3477 (frameset-filter-params): When restoring a frame, copy items added to
3478 `filtered', to avoid unwittingly modifying the original parameters.
3479 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
3480 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
3481
1d237bba
JB
3482 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
3483 to use looking-at-p instead of looking-at. (Bug#15028)
3484
dc6c0eda
SM
34852013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3486
3487 Revert introduction of isearch-filter-predicates (bug#14714).
3488 Rely on add-function instead.
3489 * isearch.el (isearch-filter-predicates): Rename it back to
3490 isearch-filter-predicate.
3491 (isearch-message-prefix): Use advice-function-mapc and advice
3492 properties to get the isearch-message-prefix.
3493 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
3494 instead of run-hook-with-args-until-failure.
3495 (isearch-filter-visible): Not obsolete any more.
3496 * loadup.el: Preload nadvice.
3497 * replace.el (perform-replace): Revert to funcall
3498 instead of run-hook-with-args-until-failure.
3499 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
3500 * dired-aux.el (dired-isearch-filenames-mode): Rename from
3501 dired-isearch-filenames-toggle; make it into a proper minor mode.
3502 Use add/remove-function.
3503 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
3504 Call the minor-mode rather than add/remove-hook.
3505 (dired-isearch-filter-filenames):
3506 Remove isearch-message-prefix property.
3507 * info.el (Info--search-loop): New function, extracted from Info-search.
3508 Funcall isearch-filter-predicate instead of
3509 run-hook-with-args-until-failure isearch-filter-predicates.
3510 (Info-search): Use it.
3511 (Info-mode): Use isearch-filter-predicate instead of
3512 isearch-filter-predicates.
3513
290d5b58
DA
35142013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3515
3516 Do not call to `selected-window' where it is assumed by default.
3517 Affected functions are `window-minibuffer-p', `window-dedicated-p',
3518 `window-hscroll', `window-width', `window-height', `window-buffer',
3519 `window-frame', `window-start', `window-point', `next-window'
3520 and `window-display-table'.
3521 * abbrev.el (abbrev--default-expand):
3522 * bs.el (bs--show-with-configuration):
3523 * buff-menu.el (Buffer-menu-mouse-select):
3524 * calc/calc.el (calc):
3525 * calendar/calendar.el (calendar-generate-window):
3526 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
3527 (diary-make-entry):
3528 * comint.el (send-invisible, comint-dynamic-complete-filename)
3529 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
3530 * completion.el (complete):
3531 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
3532 * disp-table.el (describe-current-display-table):
3533 * doc-view.el (doc-view-insert-image):
3534 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
3535 * ehelp.el (with-electric-help):
3536 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3537 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
3538 * emacs-lisp/helper.el (Helper-help-scroller):
3539 * emulation/cua-base.el (cua--post-command-handler-1):
3540 * eshell/esh-mode.el (eshell-output-filter):
3541 * ffap.el (ffap-gnus-wrapper):
3542 * help-macro.el (make-help-screen):
3543 * hilit-chg.el (highlight-compare-buffers):
3544 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
3545 * hl-line.el (global-hl-line-highlight):
3546 * icomplete.el (icomplete-simple-completing-p):
3547 * isearch.el (isearch-done):
3548 * jit-lock.el (jit-lock-stealth-fontify):
3549 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
3550 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
3551 * mpc.el (mpc-tagbrowser, mpc):
3552 * net/rcirc.el (rcirc-any-buffer):
3553 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
3554 * play/landmark.el (landmark-max-width, landmark-max-height):
3555 * play/zone.el (zone):
3556 * progmodes/compile.el (compilation-goto-locus):
3557 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
3558 * progmodes/etags.el (find-tag-other-window):
3559 * progmodes/fortran.el (fortran-column-ruler):
3560 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
3561 * progmodes/verilog-mode.el (verilog-point-text):
3562 * reposition.el (reposition-window):
3563 * rot13.el (toggle-rot13-mode):
3564 * server.el (server-switch-buffer):
3565 * shell.el (shell-dynamic-complete-command)
3566 (shell-dynamic-complete-environment-variable):
3567 * simple.el (insert-buffer, set-selective-display)
3568 (delete-completion-window):
3569 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
3570 (speedbar-recenter):
3571 * startup.el (fancy-splash-head):
3572 * textmodes/ispell.el (ispell-command-loop):
3573 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
3574 * tutorial.el (help-with-tutorial):
3575 * vc/add-log.el (add-change-log-entry):
3576 * vc/compare-w.el (compare-windows):
3577 * vc/ediff-help.el (ediff-indent-help-message):
3578 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
3579 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
3580 (ediff-setup-control-frame):
3581 * vc/emerge.el (emerge-position-region):
3582 * vc/pcvs-util.el (cvs-bury-buffer):
3583 * window.el (walk-windows, mouse-autoselect-window-select):
3584 * winner.el (winner-set-conf, winner-undo): Related users changed.
3585
38276e01
JB
35862013-08-05 Juanma Barranquero <lekktu@gmail.com>
3587
3588 * frameset.el (frameset--set-id): Doc fix.
3589 (frameset-frame-id, frameset-frame-id-equal-p)
3590 (frameset-locate-frame-id): New functions.
3591 (frameset--process-minibuffer-frames, frameset--reuse-frame)
3592 (frameset-restore): Use them.
3593
12b4c0ea
DA
35942013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3595
3596 Do not call to `selected-frame' where it is assumed by default.
3597 Affected functions are `raise-frame', `redraw-frame',
3598 `frame-first-window', `frame-terminal' and `delete-frame'.
3599 * calendar/appt.el (appt-disp-window):
3600 * epg.el (epg-wait-for-completion):
3601 * follow.el (follow-delete-other-windows-and-split)
3602 (follow-avoid-tail-recenter):
3603 * international/mule.el (set-terminal-coding-system):
3604 * mail/rmail.el (rmail-mail-return):
3605 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
3606 * progmodes/f90.el (f90-add-imenu-menu):
3607 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
3608 * server.el (server-switch-buffer):
3609 * simple.el (delete-completion-window):
3610 * talk.el (talk):
3611 * term/xterm.el (terminal-init-xterm-modify-other-keys)
3612 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
3613 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
3614 * vc/ediff.el (ediff-documentation): Related users changed.
3615 * frame.el (selected-terminal): Remove the leftover.
3616
17f25e76
GM
36172013-08-05 Glenn Morris <rgm@gnu.org>
3618
3619 * calendar/calendar.el (calendar-generate-month):
3620 Fix for calendar-column-width != 1 + calendar-day-digit-width.
09e6d547
GM
3621 (calendar-generate-month, calendar-font-lock-keywords):
3622 Fix for calendar-day-header-width > length of any day name.
17f25e76 3623
063233c3
JB
36242013-08-05 Juanma Barranquero <lekktu@gmail.com>
3625
3626 * desktop.el (desktop-clear): Use new name of sort predicate.
3627
3628 * frameset.el (frameset): Add docstring. Move :version property to its
3629 own `version' slot.
3630 (frameset-copy): Rename from copy-frameset.
3631 (frameset-p): Check more thoroughly.
3632 (frameset-prop): Do not check for :version, which is no longer a prop.
3633 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3634 Use new :never value instead of t.
3635 (frameset-filter-alist): Expand and clarify docstring.
3636 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3637 (frameset-filter-minibuffer, frameset-filter-save-param)
3638 (frameset-filter-restore-param, frameset-filter-iconified):
3639 Add pointer to docstring of frameset-filter-alist.
3640 (frameset-filter-params): Rename filter values to be more meaningful:
3641 :never instead of t, and reverse the meanings of :save and :restore.
3642 (frameset--process-minibuffer-frames): Clarify error message.
3643 (frameset-save): Avoid unnecessary and confusing call to framep.
3644 Use new BOA constructor for framesets.
3645 (frameset--reuse-list): Doc fix.
3646 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3647 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3648 (frameset-minibufferless-first-p): Doc fix.
3649 Rename from frameset-sort-frames-for-deletion.
3650 (frameset-restore): Doc fixes. Use new function names.
3651 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3652
d5671a82
JB
36532013-08-04 Juanma Barranquero <lekktu@gmail.com>
3654
3655 * desktop.el (desktop-restore-forces-onscreen)
3656 (desktop-restore-reuses-frames): Document :keyword constant values.
3657 (desktop-filter-parameters-alist): Remove, now identical to
3658 frameset-filter-alist.
3659 (desktop--filter-tty*): Remove, moved to frameset.el.
3660 (desktop-save-frameset, desktop-restore-frameset):
3661 Do not pass :filters argument.
3662
3663 * frameset.el (frameset-live-filter-alist)
3664 (frameset-persistent-filter-alist): New variables.
3665 (frameset-filter-alist): Use them. Add autoload cookie.
3666 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3667 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3668 `frameset--id' (it's supposed to be internal to frameset.el).
3669 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3670 (frameset--initial-params): New function.
3671 (frameset--get-frame): Use it. Doc fix.
3672 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3673 Accept :all, not 'all.
3674 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3675 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3676 with fbound symbols. Fix frame id matching, and remove matching ids if
3677 the frame being restored is deleted. Obey :delete.
3678
671d5c16
SM
36792013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3680
3681 * subr.el (macrop): New function.
3682 (text-clone--maintaining): New var.
3683 (text-clone--maintain): Rename from text-clone-maintain. Use it
3684 instead of inhibit-modification-hooks.
3685
3686 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3687 a proxy, so as handle autoloads and redefinitions of the target.
3688 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3689
3690 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3691 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3692 (pcase--mutually-exclusive-p): New function.
3693 (pcase--split-consp): Use it.
3694 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3695 mutually exclusive with the current predicate.
3696
3697 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3698 (edebug-macrop): Remove. Use `macrop' instead.
3699 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3700 (ad-macro-p):
3701 * eshell/esh-cmd.el (eshell-macrop):
3702 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3703
1d44e9dc
SM
37042013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3705
3706 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3707 (advice-mapc): New function, using it.
3708 (advice-function-member-p): New function.
3709 (advice--normalize): Store the cdr in advice--saved-rewrite since
3710 that's the part that will be changed.
3711 (advice--symbol-function): New function.
3712 (advice-remove): Handle removal before the function is defined.
3713 Adjust to new advice--saved-rewrite.
3714 (advice-member-p): Use advice-function-member-p and
3715 advice--symbol-function.
3716
5414a283
JB
37172013-08-04 Juanma Barranquero <lekktu@gmail.com>
3718
51d30f2c
JB
3719 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3720 (frameset-filter-minibuffer): Doc fix.
3721 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
a04d36a0
JB
3722 (frameset--set-id, frameset--process-minibuffer-frames)
3723 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3724 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
51d30f2c 3725
5414a283
JB
3726 * desktop.el (desktop-clear): Only delete frames when called
3727 interactively and desktop-restore-frames is non-nil. Doc fix.
3728 (desktop-read): Set desktop-saved-frameset to nil.
3729
ab419665
XF
37302013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3731
3732 * vc/vc.el (vc-ignore): Rewrite.
3733 (vc-default-ignore-completion-table):
3734 (vc--read-lines):
3735 (vc--add-line, vc--remove-regexp): New functions.
3736
3737 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3738 (vc-svn-ignore-completion-table): New function.
3739
3740 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3741 (vc-hg-ignore-completion-table):
3742 (vc-hg-find-ignore-file): New functions.
3743
3744 * vc/vc-git.el (vc-git-ignore): Rewrite.
3745 (vc-git-ignore-completion-table):
3746 (vc-git-find-ignore-file): New functions.
3747
3748 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3749
3750 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3751 (vc-bzr-ignore-completion-table):
3752 (vc-bzr-find-ignore-file): New functions.
3753
2613dea2
JB
37542013-08-03 Juanma Barranquero <lekktu@gmail.com>
3755
3756 * frameset.el (frameset-prop): New function and setter.
3757 (frameset-save): Do not modify frame list passed by the caller.
3758
9c959872
SM
37592013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3760
3761 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3762
a104f656
SM
37632013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3764
70122acf
SM
3765 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3766 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3767
a104f656
SM
3768 * custom.el (custom-initialize-default, custom-initialize-set)
3769 (custom-initialize-reset, custom-initialize-changed): Affect the
3770 toplevel-default-value (bug#6275, bug#14586).
3771 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3772 for bug#6275.
3773
f078d570
JB
37742013-08-02 Juanma Barranquero <lekktu@gmail.com>
3775
185e3b5a
JB
3776 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3777 Add cl-def* expressions.
3778
f078d570
JB
3779 * frameset.el (frameset-filter-params): Fix order of arguments.
3780
9421876d
JB
37812013-08-02 Juanma Barranquero <lekktu@gmail.com>
3782
3783 Move code related to saving frames to frameset.el.
3784 * desktop.el: Require frameset.
3785 (desktop-restore-frames): Doc fix.
3786 (desktop-restore-reuses-frames): Rename from
3787 desktop-restoring-reuses-frames.
3788 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3789 (desktop-clear): Clear frames too.
3790 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3791 (desktop--filter-tty*, desktop-save, desktop-read):
3792 Use frameset functions.
3793 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3794 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3795 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3796 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3797 (desktop--process-minibuffer-frames, desktop-save-frames)
3798 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3799 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3800 (desktop--sort-states, desktop-restoring-frames-p)
3801 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3802 (desktop-restoring-frameset-p, desktop-restore-frameset)
3803 (desktop--check-dont-save, desktop-save-frameset): New functions.
3804 (desktop--app-id): New constant.
3805 (desktop-first-buffer, desktop-buffer-ok-count)
3806 (desktop-buffer-fail-count): Move before first use.
3807 * frameset.el: New file.
3808
76dc5996
SM
38092013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3810
3811 * files.el: Use lexical-binding.
3812 (dir-locals-read-from-file): Remove unused `err' variable.
3813 (hack-dir-local-variables--warned-coding): New var.
3814 (hack-dir-local-variables): Use it to avoid repeated warnings.
3815 (make-backup-file-name--default-function): New function.
3816 (make-backup-file-name-function): Use it as default.
3817 (buffer-stale--default-function): New function.
3818 (buffer-stale-function): Use it as default.
3819 (revert-buffer-insert-file-contents--default-function): New function.
3820 (revert-buffer-insert-file-contents-function): Use it as default.
3821 (insert-directory): Avoid add-to-list.
3822
3823 * autorevert.el (auto-revert-handler): Simplify.
3824 Use buffer-stale--default-function.
3825
06d36e2b
TH
38262013-08-01 Tassilo Horn <tsdh@gnu.org>
3827
5f648ab4
TH
3828 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3829
06d36e2b
TH
3830 * whitespace.el (whitespace-ensure-local-variables): New function.
3831 (whitespace-cleanup-region): Call it.
3832 (whitespace-turn-on): Call it.
3833
a43dc424
MA
38342013-08-01 Michael Albinus <michael.albinus@gmx.de>
3835
3836 Complete file name handlers.
3837
3838 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3839 (tramp-handle-verify-visited-file-modtime)
3840 (tramp-handle-file-notify-rm-watch): New functions.
3841 (tramp-call-process): Do not bind `default-directory'.
3842
44e18199
JB
3843 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3844 Order alphabetically.
a43dc424
MA
3845 [access-file, add-name-to-file, dired-call-process]:
3846 [dired-compress-file, file-acl, file-notify-rm-watch]:
3847 [file-ownership-preserved-p, file-selinux-context]:
3848 [make-directory-internal, make-symbolic-link, set-file-acl]:
3849 [set-file-selinux-context, set-visited-file-modtime]:
3850 [verify-visited-file-modtime]: Add handler.
3851 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3852
3853 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3854 [file-notify-add-watch, file-notify-rm-watch]:
3855 [set-file-times, set-visited-file-modtime]:
3856 [verify-visited-file-modtime]: Add handler.
3857 (with-tramp-gvfs-error-message)
3858 (tramp-gvfs-handle-set-visited-file-modtime)
3859 (tramp-gvfs-fuse-file-name): Remove.
3860 (tramp-gvfs-handle-file-notify-add-watch)
3861 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3862 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3863
44e18199
JB
3864 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3865 Order alphabetically.
a43dc424
MA
3866 [file-notify-rm-watch ]: Use default Tramp handler.
3867 [executable-find]: Remove private handler.
3868 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3869 `default-directory'.
3870 (tramp-sh-handle-executable-find)
3871 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3872 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3873 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3874 Do not use `format' in `tramp-message'.
3875
3876 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3877 [file-notify-rm-watch, set-visited-file-modtime]:
3878 [verify-visited-file-modtime]: Add handler.
3879 (tramp-smb-call-winexe): Do not bind `default-directory'.
3880
7188b515
XF
38812013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3882
3883 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
3884
2412ee1a
DG
38852013-07-31 Dmitry Gutov <dgutov@yandex.ru>
3886
3887 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
3888 use it.
3889 (log-view-diff-changeset): Same.
3890 (log-view-diff-common): Call backend command `previous-revision'
3891 to find out the previous revision, in both cases. Swap the
3892 variables `to' and `fr', so that `fr' usually refers to the
3893 earlier revision (Bug#14989).
3894
5002a754
KRC
38952013-07-31 Kan-Ru Chen <kanru@kanru.info>
3896
3897 * ibuf-ext.el (ibuffer-filter-by-filename):
3898 Make it work with dired buffers too.
3899
44e18199 39002013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3b734d1c
DA
3901
3902 * emacs-lisp/re-builder.el (reb-color-display-p):
3903 * files.el (save-buffers-kill-terminal):
3904 * net/browse-url.el (browse-url):
3905 * server.el (server-save-buffers-kill-terminal):
3906 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3907 Prefer nil to selected-frame for the first arg of frame-parameter.
3908
aeca3fbb
XF
39092013-07-31 Xue Fuqiao <xfq.free@gmail.com>
3910
3911 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
3912
158bc55c
SB
39132013-07-30 Stephen Berman <stephen.berman@gmx.net>
3914
3915 * minibuffer.el (completion--twq-all): Try and preserve each
3916 completion's case choice (bug#14907).
3917
d50fceab
LMI
39182013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3919
ac38e731
LMI
3920 * net/network-stream.el (open-network-stream): Mention the new
3921 :nogreeting parameter.
3922 (network-stream-open-starttls): Use the :nogreeting parameter
3923 (bug#14938).
3924
1211de50
LMI
3925 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
3926
997798bf
LMI
3927 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
3928 more natural than popping.
3929
d50fceab 3930 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
5a2a7735 3931 (shr-urlify): Highlight under mouse.
d50fceab 3932
5c09de04
XF
39332013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3934
207d1d04
XF
3935 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
3936
3937 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
3938
5c09de04
XF
3939 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
3940 buffer for output.
3941
3cd51eaa
XF
3942 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
3943 point-min==1. Fix search string. Fix parentheses missing.
5c09de04 3944
44e18199 3945 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3cd51eaa 3946 assume point-min==1. Fix search string. Fix parentheses missing.
5c09de04
XF
3947
3948 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
3949
3950 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
3951 buffer for output.
3952
35a89bdd
EZ
39532013-07-29 Eli Zaretskii <eliz@gnu.org>
3954
3955 * frame.el (frame-notice-user-settings): Avoid inflooping when the
3956 initial frame is minibuffer-less. (Bug#14841)
3957
78822e94
MA
39582013-07-29 Michael Albinus <michael.albinus@gmx.de>
3959
3960 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
3961 option.
3962
3963 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3964 (tramp-maybe-open-connection): Use it.
3965
9503c190
JB
39662013-07-28 Juanma Barranquero <lekktu@gmail.com>
3967
3968 * desktop.el (desktop--make-frame): Include `minibuffer' in the
3969 minimal set of parameters passed when creating a frame, because
3970 the minibuffer status of a frame cannot be changed later.
3971
d5a845b4
SB
39722013-07-28 Stephen Berman <stephen.berman@gmx.net>
3973
3974 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
3975 replace-regexp-in-string and inadvertent omissions in previous change.
3976 (todo-filter-items): Ensure only file names are comma-separated in
42ee6f55 3977 name of filtered items buffer.
d5a845b4 3978
ddeffb17
JB
39792013-07-28 Juanma Barranquero <lekktu@gmail.com>
3980
3981 * desktop.el: Optionally force offscreen frames back onscreen.
3982 (desktop-restoring-reuses-frames): New option.
3983 (desktop--compute-pos, desktop--move-onscreen): New functions.
3984 (desktop--make-frame): Use desktop--move-onscreen.
3985
f5950f7a
AM
39862013-07-27 Alan Mackenzie <acm@muc.de>
3987
3988 Fontify a Java generic method as a function.
3989 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
3990 value to t.
3991
ae43b66a
SB
39922013-07-27 Stephen Berman <stephen.berman@gmx.net>
3993
3994 * calendar/todo-mode.el: Add command to rename todo files.
3995 (todo-rename-file): New command.
3996 (todo-key-bindings-t): Add key binding for it. Change the
3997 bindings of todo-filter-regexp-items(-multifile) to use `x'
3998 instead of `r', since the latter is better suited to the new
3999 renaming command.
4000
5ab78d3d
AM
40012013-07-27 Alan Mackenzie <acm@muc.de>
4002
4003 Make Java try-with-resources statement parse properly.
4004 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
4005 (c-block-stmt-1-2-key): New language constants/variables.
4006 * progmodes/cc-engine.el (c-beginning-of-statement-1)
4007 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
4008 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
44e18199 4009 with c-block-stmt-1-2-key.
5ab78d3d 4010
d85c4d50
JB
40112013-07-27 Juanma Barranquero <lekktu@gmail.com>
4012
4013 * desktop.el (desktop--make-frame): Apply most frame parameters after
4014 creating the frame to force (partially or totally) offscreen frames to
4015 be restored as such.
4016
e4c467f9
XF
40172013-07-26 Xue Fuqiao <xfq.free@gmail.com>
4018
4019 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
742a3501 4020 (Bug#14948)
e4c467f9 4021
7ced0d04
SM
40222013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4023
4024 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
4025 `base' arg of backtrace-frame.
4026
fec92060
EZ
40272013-07-26 Eli Zaretskii <eliz@gnu.org>
4028
4029 * simple.el (list-processes): Doc fix.
4030
d58d31fb
JB
40312013-07-26 Juanma Barranquero <lekktu@gmail.com>
4032
4033 * desktop.el (desktop--select-frame):
d85c4d50 4034 Try harder to reuse existing frames.
d58d31fb 4035
53ff3e77
SM
40362013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4037
4038 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
4039 (edebug-eval): Use backtrace-eval.
4040 (edebug--display, edebug--recursive-edit): Don't let-bind the
4041 edebug-outer-* vars that keep track of variables we locally let-bind.
4042 (edebug-outside-excursion): Don't restore outside values of locally
4043 let-bound vars.
4044 (edebug--display): Use user-error.
4045 (cl-lexical-debug, cl-debug-env): Remove.
4046
045f7a53
JB
40472013-07-26 Juanma Barranquero <lekktu@gmail.com>
4048
4049 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
4050 are restored to be sure that they are visible before deleting any
4051 remaining ones.
4052
59070b32
MM
40532013-07-26 Matthias Meulien <orontee@gmail.com>
4054
742a3501
XF
4055 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
4056 vc-print-root-log. (Bug#14948)
59070b32 4057
b1fb3596
RS
40582013-07-26 Richard Stallman <rms@gnu.org>
4059
4060 Add aliases for encrypting mail.
4061 * epa.el (epa-mail-aliases): New option.
4062 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
4063 Bind inhibit-read-only so read-only text doesn't ruin everything.
4064 (epa-mail-default-recipients): New subroutine broken out.
4065 Handle epa-mail-aliases.
4066
56ea7291
SM
40672013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4068
4069 Add support for lexical variables to the debugger's `e' command.
4070 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
4071 vars, except for debugger-outer-match-data.
4072 (debugger-frame-number): Move check for "on a function call" from
4073 callers into it. Add `skip-base' argument.
4074 (debugger-frame, debugger-frame-clear): Simplify accordingly.
4075 (debugger-env-macro): Only reset the state stored in non-variables,
4076 i.e. current-buffer and match-data.
4077 (debugger-eval-expression): Rewrite using backtrace-eval.
4078 * subr.el (internal--called-interactively-p--get-frame): Remove.
4079 (called-interactively-p):
4080 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
4081 `base' arg of backtrace-frame instead.
4082
15ac32d5
GM
40832013-07-26 Glenn Morris <rgm@gnu.org>
4084
8358a09d
GM
4085 * align.el (align-regexp): Doc fix. (Bug#14857)
4086 (align-region): Explicit error if subexpression missing/does not match.
4087
15ac32d5
GM
4088 * simple.el (global-visual-line-mode):
4089 Do not duplicate the mode lighter. (Bug#14858)
4090
f47ad11b
MR
40912013-07-25 Martin Rudalics <rudalics@gmx.at>
4092
4093 * window.el (display-buffer): In display-buffer bind
4094 split-window-keep-point to t, bug#14829.
4095
02530987
JB
40962013-07-25 Juanma Barranquero <lekktu@gmail.com>
4097
4098 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
4099 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
4100 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
4101 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4102 Change accordingly.
f63ebeb5
JB
4103 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4104 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
02530987 4105
6ccb9cab 41062013-07-25 Glenn Morris <rgm@gnu.org>
29bbcfa7 4107
6ccb9cab 4108 * dired-x.el (dired-mark-extension): Convert comment to doc string.
ce887515 4109
cb3a56d2
JB
41102013-07-25 Juanma Barranquero <lekktu@gmail.com>
4111
4112 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
4113 parameter to modify-frame-parameters if the value has not changed;
4114 this is a workaround for bug#14949.
4115 (desktop--make-frame): On cl-delete-if call, check parameter name,
4116 not full parameter.
4117
7aa7fff0
XF
41182013-07-30 Xue Fuqiao <xfq.free@gmail.com>
4119
4120 * vc/vc.el (vc-ignore): New function.
4121
4122 * vc/vc-svn.el (vc-svn-ignore): New function.
4123
4124 * vc/vc-hg.el (vc-hg-ignore): New function.
4125
4126 * vc/vc-git.el (vc-git-ignore): New function.
4127
4128 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
4129 (vc-dir-ignore): New function.
4130
4131 * vc/vc-cvs.el (vc-cvs-ignore): New function.
1e6c6007 4132 (cvs-append-to-ignore): Move here from pcvs.el.
7aa7fff0
XF
4133
4134 * vc/vc-bzr.el (vc-bzr-ignore): New function.
4135
4136 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
4137
889acc5c
JB
41382013-07-24 Juanma Barranquero <lekktu@gmail.com>
4139
4140 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
4141 (desktop-restore-frames): Warn when deleting an existing frame failed.
4142
86c40970
GM
41432013-07-24 Glenn Morris <rgm@gnu.org>
4144
4145 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
4146
d5d3c58a
MA
41472013-07-24 Michael Albinus <michael.albinus@gmx.de>
4148
4149 * filenotify.el (file-notify-supported-p):
4150 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4151 Remove functions.
4152
4153 * autorevert.el (auto-revert-use-notify):
4154 (auto-revert-notify-add-watch):
4155 * net/tramp.el (tramp-file-name-for-operation):
4156 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4157 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4158 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4159 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4160 Remove `file-notify-supported-p' entry.
4161
d100084b
GM
41622013-07-24 Glenn Morris <rgm@gnu.org>
4163
4164 * printing.el: Replace all uses of deleted ps-windows-system,
ff65ca0d 4165 ps-lp-system, ps-flatten-list with lpr- versions.
d100084b 4166
ac93e56b
SM
41672013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4168
249eea30
SM
4169 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
4170 checked with memq (bug#14935).
4171
ac93e56b
SM
4172 * files.el (revert-buffer-function): Use a non-nil default.
4173 (revert-buffer-preserve-modes): Declare var to
4174 provide access to the `preserve-modes' argument.
4175 (revert-buffer): Let-bind it.
4176 (revert-buffer--default): New function, extracted from revert-buffer.
4177
2cdeb903
SM
41782013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4179
4180 * lpr.el: Signal print errors more prominently.
4181 (print-region-function): Don't default to nil.
4182 (lpr-print-region): New function, extracted from print-region-1.
4183 Check lpr's return value and signal an error in case of problem.
4184 (print-region-1): Use it.
4185 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
4186 versions instead.
4187 (ps-printer-name): Default to nil.
4188 (ps-printer-name-option): Default to lpr-printer-switch.
4189 (ps-print-region-function): Don't default to nil.
4190 (ps-postscript-code-directory): Simplify default.
4191 (ps-do-despool): Use lpr-print-region to properly check the outcome.
4192 (ps-string-list, ps-eval-switch, ps-flatten-list)
4193 (ps-flatten-list-1): Remove.
4194 (ps-multibyte-buffer): Avoid setq.
4195 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
4196 (print-region-function, ps-print-region-function): Don't set them here.
4197
73600831
XF
41982013-07-24 Xue Fuqiao <xfq.free@gmail.com>
4199
0e55c076
XF
4200 * ido.el (ido-fractionp):
4201 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
4202 (ido-max-file-prompt-width, ido-unc-hosts-cache)
4203 (ido-max-directory-size, ido-max-dir-file-cache)
4204 (ido-decorations): Doc fix.
4205
73600831
XF
4206 * ansi-color.el: Fix old URL.
4207
3d012865
MM
42082013-07-23 Michael R. Mauger <michael@mauger.com>
4209
e903c210 4210 * progmodes/sql.el: Version 3.3
3d012865
MM
4211 (sql-product-alist): Improve oracle :prompt-cont-regexp.
4212 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
4213 (sql-interactive-remove-continuation-prompt): Rewrite, use
4214 functions above. Fix continuation prompt and complete output line
4215 handling.
4216 (sql-redirect-one, sql-execute): Use `read-only-mode' on
4217 redirected output buffer.
4218 (sql-mode): Restore deleted code (Bug#13591).
4219
da77a2e2
JB
42202013-07-23 Juanma Barranquero <lekktu@gmail.com>
4221
4222 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
4223
80ff0c71
MA
42242013-07-23 Michael Albinus <michael.albinus@gmx.de>
4225
4226 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
4227
4228 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4229 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4230 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
4231
b61d71e4
JB
42322013-07-23 Juanma Barranquero <lekktu@gmail.com>
4233
4234 * desktop.el (desktop-clear): Simplify; remove useless checks
4235 against invalid buffer names.
4236 (desktop-list*): Use cl-list*.
4237 (desktop-buffer-info, desktop-create-buffer): Simplify.
4238
c3512092
LL
42392013-07-23 Leo Liu <sdl.web@gmail.com>
4240
4241 * bookmark.el (bookmark-make-record): Restore NAME as a default
4242 value. (Bug#14933)
4243
0ac26976
SM
42442013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4245
7d22ce18
SM
4246 * emacs-lisp/autoload.el (autoload--setup-output): New function,
4247 extracted from autoload--insert-text.
4248 (autoload--insert-text): Remove.
4249 (autoload--print-cookie-text): New function, extracted from
4250 autoload--insert-cookie-text.
4251 (autoload--insert-cookie-text): Remove.
4252 (autoload-generate-file-autoloads): Adjust calls accordingly.
4253
9b2607e8
SM
4254 * winner.el (winner-hook-installed-p): Remove.
4255 (winner-mode): Simplify accordingly.
4256
c43a8618
SM
4257 * subr.el (add-to-list): Fix compiler-macro when `append' is
4258 not constant. Don't use `cl-member' for the base case.
4259
0ac26976
SM
4260 * progmodes/subword.el: Fix boundary case (bug#13758).
4261 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
4262 own group.
4263 (subword-backward-regexp): Make it a constant.
4264 (subword-forward-internal): Don't treat a trailing capital as the
4265 beginning of a word.
4266
6874724a
AR
42672013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4268
4269 * emacs-lisp/package.el (package-menu-mode): Don't modify the
4270 global value of tabulated-list-revert-hook (bug#14930).
4271
70f1b5e8
JB
42722013-07-22 Juanma Barranquero <lekktu@gmail.com>
4273
a1c80d9d
JB
4274 * desktop.el: Require 'cl-lib.
4275 (desktop-before-saving-frames-functions): New hook.
4276 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
4277 for frames being saved. Rename from desktop--save-minibuffer-frames.
4278 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
0ac26976
SM
4279 Do not save frames with non-nil `desktop-dont-save' parameter.
4280 Filter out deleted frames.
a1c80d9d
JB
4281 (desktop--find-frame): Use cl-find-if.
4282 (desktop--select-frame): Use cl-(first|second|third) to access values
4283 of desktop-mini.
4284 (desktop--make-frame): Use cl-delete-if.
4285 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
4286 (desktop-restore-frames): Use cl-(first|second|third) to access values
4287 of desktop-mini. Look for visible frame at the end, not while
4288 restoring frames.
4289
70f1b5e8
JB
4290 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
4291 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
4292 Use string-match-p, looking-at-p (bug#14927).
4293
728dc3cc
JB
42942013-07-21 Juanma Barranquero <lekktu@gmail.com>
4295
56bc453c
JB
4296 * desktop.el (desktop-saved-frame-states):
4297 Rename from desktop--saved-states; all users changed.
4298 (desktop-save-frames): Rename from desktop--save-frames.
4299 Do not save state to desktop file.
4300 (desktop-save): Save desktop-saved-frame-states to desktop file
4301 and reset to nil.
4302 (desktop-restoring-frames-p): New function.
4303 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
4304 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
4305 buffer-lists when restoring frames. Suggested by Martin Rudalics.
4306
728dc3cc
JB
4307 * desktop.el: Correctly restore iconified frames.
4308 (desktop--filter-iconified-position): New function.
4309 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
4310
862f1c9c
GM
43112013-07-20 Glenn Morris <rgm@gnu.org>
4312
c4074c9f
GM
4313 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
4314 Let `message' do the formatting.
4315 (def-gdb-preempt-display-buffer): Add explicit format.
4316
d828e5f9
GM
4317 * image-dired.el (image-dired-track-original-file):
4318 Use with-current-buffer.
4319 (image-dired-track-thumbnail): Use with-current-buffer.
4320 Avoid changing point of wrong window.
4321
862f1c9c
GM
4322 * image-dired.el (image-dired-track-original-file):
4323 Avoid changing point of wrong window. (Bug#14909)
4324
f0398ec1 43252013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
188c1ae6
RC
4326
4327 * progmodes/gdb-mi.el (gdb-done-or-error):
4328 Guard against "%" in gdb output. (Bug#14127)
4329
1451928f
AS
43302013-07-20 Andreas Schwab <schwab@linux-m68k.org>
4331
763a086d
JB
4332 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
4333 (Bug#14826)
f7a03897 4334
1451928f
AS
4335 * international/mule.el (coding-system-iso-2022-flags): Fix last
4336 change.
4337
99107004
KH
43382013-07-20 Kenichi Handa <handa@gnu.org>
4339
763a086d
JB
4340 * international/mule.el (coding-system-iso-2022-flags):
4341 Add `8-bit-level-4'. (Bug#8522)
99107004 4342
48494e06
LMI
43432013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4344
8ba8eec5
LMI
4345 * net/shr.el (shr-mouse-browse-url): New command and keystroke
4346 (bug#14815).
4347
dfbc66e3
LMI
4348 * net/eww.el (eww-process-text-input): Allow inputting when the
4349 point is at the start of the line, as the properties aren't
4350 front-sticky.
4351
48494e06
LMI
4352 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
4353 degenerate widths.
4354
77c92cb9
RS
43552013-07-19 Richard Stallman <rms@gnu.org>
4356
aec7da77
RS
4357 * epa.el (epa-popup-info-window): Doc fix.
4358
77c92cb9
RS
4359 * subr.el (split-string): New arg TRIM.
4360
945c5bb1
JB
43612013-07-18 Juanma Barranquero <lekktu@gmail.com>
4362
4363 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
4364 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
4365
e06ec67f
MA
43662013-07-18 Michael Albinus <michael.albinus@gmx.de>
4367
c7064f05 4368 * filenotify.el (file-notify--library): Rename from
e06ec67f
MA
4369 `file-notify-support'. Do not autoload. Adapt all uses.
4370 (file-notify-supported-p): New defun.
4371
c7064f05
JB
4372 * autorevert.el (auto-revert-use-notify):
4373 Use `file-notify-supported-p' instead of `file-notify-support'.
4374 Adapt docstring.
e06ec67f
MA
4375 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
4376
4377 * net/tramp.el (tramp-file-name-for-operation):
4378 Add `file-notify-supported-p'.
4379
4380 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4381 New defun.
4382 (tramp-sh-file-name-handler-alist): Add it as handler for
4383 `file-notify-supported-p '.
4384
4385 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4386 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4387 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4388 Add `ignore' as handler for `file-notify-*' functions.
4389
5dc8a629
EZ
43902013-07-17 Eli Zaretskii <eliz@gnu.org>
4391
4392 * simple.el (line-move-partial, line-move): Don't start vscroll or
4393 scroll-up if the current line is not taller than the window.
4394 (Bug#14881)
4395
77aea2fb
DG
43962013-07-16 Dmitry Gutov <dgutov@yandex.ru>
4397
4398 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
4399 highlight question marks in the method names as strings.
ac72c08d
DG
4400 (ruby-block-beg-keywords): Inline.
4401 (ruby-font-lock-keyword-beg-re): Extract from
4402 `ruby-font-lock-keywords'.
77aea2fb 4403
18c26d81
JD
44042013-07-16 Jan Djärv <jan.h.d@swipnet.se>
4405
4406 * frame.el (blink-cursor-blinks): New defcustom.
4407 (blink-cursor-blinks-done): New defvar.
4408 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
4409 (blink-cursor-timer-function): Check if number of blinks has been
4410 done on X and NS.
4411 (blink-cursor-suspend, blink-cursor-check): New defuns.
4412
da48522e
GM
44132013-07-15 Glenn Morris <rgm@gnu.org>
4414
4415 * edmacro.el (edmacro-format-keys): Fix previous change.
4416
0463c1ef
PE
44172013-07-15 Paul Eggert <eggert@cs.ucla.edu>
4418
4419 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
4420 The hack didn't work outside English locales anyway.
4421
b43f6451
JB
44222013-07-15 Juanma Barranquero <lekktu@gmail.com>
4423
4424 * simple.el (define-alternatives): Rename from alternatives-define,
4425 per RMS' suggestion.
4426
b958c0ad
JB
44272013-07-14 Juanma Barranquero <lekktu@gmail.com>
4428
4429 * desktop.el (desktop-restore-frames): Change default to t.
4430 (desktop-restore-in-current-display): Now offer more options.
4431 (desktop-restoring-reuses-frames): New customization option.
4432 (desktop--saved-states): Doc fix.
4433 (desktop-filter-parameters-alist): New variable, renamed and expanded
4434 from desktop--excluded-frame-parameters.
4435 (desktop--target-display): New variable.
4436 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
4437 (desktop--filter-tty*, desktop--filter-*-color)
4438 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
4439 (desktop--filter-save-desktop-parm)
4440 (desktop-restore-in-original-display-p): New functions.
4441 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
4442 (desktop--save-minibuffer-frames): New function, inspired by a similar
4443 function from Martin Rudalics.
4444 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
4445 (desktop--restore-in-this-display-p): Remove.
4446 (desktop--find-frame): Rename from desktop--find-frame-in-display
4447 and add predicate argument.
4448 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
4449 (desktop--reuse-list): New variable.
4450 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
4451 New functions.
4452 (desktop--restore-frames): Add support for "minibuffer-special" frames.
4453
f6dd8b36
MA
44542013-07-14 Michael Albinus <michael.albinus@gmx.de>
4455
4456 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
4457
2ce3c565
DG
44582013-07-13 Dmitry Gutov <dgutov@yandex.ru>
4459
763a086d
JB
4460 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4461 Highlight conversion methods on Kernel.
2ce3c565 4462
2cdb7698
AM
44632013-07-13 Alan Mackenzie <acm@muc.de>
4464
4465 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
4466 and comment it out. This out-commenting enables certain C++
4467 declarations to be parsed correctly.
4468
1a67b811
EZ
44692013-07-13 Eli Zaretskii <eliz@gnu.org>
4470
1b796d6b
EZ
4471 * international/mule.el (define-coding-system): Doc fix.
4472
1a67b811
EZ
4473 * simple.el (default-font-height): Don't call font-info if the
4474 frame's default font didn't change since the frame was created.
4475 (Bug#14838)
4476
58fbe886
LL
44772013-07-13 Leo Liu <sdl.web@gmail.com>
4478
4479 * ido.el (ido-read-file-name): Guard against non-symbol value.
4480
1f0480d4
FEG
44812013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4482
4483 * progmodes/python.el (python-imenu--build-tree): Fix corner case
4484 in nested defuns.
4485
97ead0e5
LL
44862013-07-13 Leo Liu <sdl.web@gmail.com>
4487
4488 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
4489 ido-set-matches call. (Bug#6852)
4490
0880a952
DG
44912013-07-12 Dmitry Gutov <dgutov@yandex.ru>
4492
4493 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
4494 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
4495 Ruby 2.0.
4496 (ruby-font-lock-keywords): Distinguish calls to functions with
4497 module-like names from module references. Highlight character
4498 literals.
4499
a7d8babb
SDJ
45002013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4501
4502 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
6741ad6c 4503 (gdb-send): Handle continued commands. (Bug#14847)
a7d8babb 4504
acfcc8c5
JB
45052013-07-12 Juanma Barranquero <lekktu@gmail.com>
4506
4507 * desktop.el (desktop--v2s): Remove unused local variable.
4508 (desktop-save-buffer): Make defvar-local; adjust docstring.
4509 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
4510 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
4511
051f2775
AS
45122013-07-12 Andreas Schwab <schwab@linux-m68k.org>
4513
4514 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
4515
f24e7572
GM
45162013-07-12 Eli Zaretskii <eliz@gnu.org>
4517
4518 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
4519 (Bug#14842)
4520
539a920c
GM
45212013-07-12 Glenn Morris <rgm@gnu.org>
4522
4523 * doc-view.el: Require cl-lib at runtime too.
4524 (doc-view-remove-if): Remove.
4525 (doc-view-search-next-match, doc-view-search-previous-match):
4526 Use cl-remove-if.
4527
4528 * edmacro.el: Require cl-lib at runtime too.
4529 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
4530 (edmacro-mismatch, edmacro-subseq): Remove.
4531
4532 * shadowfile.el: Require cl-lib.
4533 (shadow-remove-if): Remove.
4534 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
4535 Use cl-remove-if.
4536
4537 * wid-edit.el: Require cl-lib.
4538 (widget-choose): Use cl-remove-if.
4539 (widget-remove-if): Remove.
4540
4541 * progmodes/ebrowse.el: Require cl-lib at runtime too.
4542 (ebrowse-delete-if-not): Remove.
4543 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
4544 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
4545 Use cl-delete-if-not.
4546
1048af7c
JB
45472013-07-12 Juanma Barranquero <lekktu@gmail.com>
4548
4549 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
4550 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
4551
6c0674ee
LL
45522013-07-12 Leo Liu <sdl.web@gmail.com>
4553
4554 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
4555
a19b3c2d
GM
45562013-07-11 Glenn Morris <rgm@gnu.org>
4557
4582a01c
GM
4558 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
4559 (edebug-gensym-index, edebug-gensym):
4560 Remove reimplementation of cl-gensym.
4561 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
4562
4563 * thumbs.el: Require cl-lib at run-time too.
4564 (thumbs-gensym-counter, thumbs-gensym):
4565 Remove reimplementation of cl-gensym.
4566 (thumbs-temp-file): Use cl-gensym.
4567
a19b3c2d
GM
4568 * emacs-lisp/ert.el: Require cl-lib at runtime too.
4569 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
4570 (ert--intersection, ert--set-difference, ert--set-difference-eq)
4571 (ert--union, ert--gensym-counter, ert--gensym-counter)
4572 (ert--coerce-to-vector, ert--remove*, ert--string-position)
4573 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
4574 (ert-make-test-unbound, ert--expand-should-1)
4575 (ert--expand-should, ert--should-error-handle-error)
4576 (should-error, ert--explain-equal-rec)
4577 (ert--plist-difference-explanation, ert-select-tests)
4578 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
4579 Use cl-lib functions rather than reimplementations.
4580
88f6a933
MA
45812013-07-11 Michael Albinus <michael.albinus@gmx.de>
4582
4583 * net/tramp.el (tramp-methods): Extend docstring.
4584 (tramp-connection-timeout): New defcustom.
4585 (tramp-error-with-buffer): Reset timestamp only when appropriate.
4586 (with-tramp-progress-reporter): Simplify.
4587 (tramp-process-actions): Improve messages.
4588
4589 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4590 * net/tramp-sh.el (tramp-maybe-open-connection):
4591 Use `tramp-connection-timeout'.
4592 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
4593 (Bug#14808)
4594
a43d577e
LL
45952013-07-11 Leo Liu <sdl.web@gmail.com>
4596
4597 * ido.el (ido-read-file-name): Conform to the requirements of
4598 read-file-name. (Bug#11861)
4599 (ido-read-directory-name): Conform to the requirements of
4600 read-directory-name.
4601
d77974bf
JB
46022013-07-11 Juanma Barranquero <lekktu@gmail.com>
4603
4604 * subr.el (delay-warning): New function.
4605
35cb8a3e
EZ
46062013-07-10 Eli Zaretskii <eliz@gnu.org>
4607
4608 * simple.el (default-line-height): New function.
4609 (line-move-partial, line-move): Use it instead of computing the
4610 line height inline.
4611 (line-move-partial): Always compute ROWH. If the last line is
4612 partially-visible, but its text is completely visible, allow
4613 cursor to enter such a partially-visible line.
4614
525c5c77
MA
46152013-07-10 Michael Albinus <michael.albinus@gmx.de>
4616
4617 Improve error messages. (Bug#14808)
4618
4619 * net/tramp.el (tramp-current-connection): New defvar, moved from
4620 tramp-sh.el.
0ac26976 4621 (tramp-message-show-progress-reporter-message): Remove, not
525c5c77 4622 needed anymore.
0ac26976
SM
4623 (tramp-error-with-buffer): Show message in minibuffer.
4624 Discard input before waiting. Reset connection timestamp.
525c5c77
MA
4625 (with-tramp-progress-reporter): Improve messages.
4626 (tramp-process-actions): Use progress reporter. Delete process in
4627 case of error. Improve messages.
4628
763a086d
JB
4629 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4630 Call `tramp-error-with-buffer' with vector and buffer.
0ac26976 4631 (tramp-current-connection): Remove.
525c5c77
MA
4632 (tramp-maybe-open-connection): The car of
4633 `tramp-current-connection' are the first 3 slots of the vector.
4634
c7a4d368
TZ
46352013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4636
4637 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4638 inside continued strings.
4639
954b166e
PE
46402013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4641
4642 Timestamp fixes for undo (Bug#14824).
4643 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4644
56973319
LL
46452013-07-10 Leo Liu <sdl.web@gmail.com>
4646
4647 * files.el (require-final-newline): Allow safe local value.
4648 (Bug#14834)
4649
5550a72c
LL
46502013-07-09 Leo Liu <sdl.web@gmail.com>
4651
4652 * ido.el (ido-read-directory-name): Handle fallback.
4653 (ido-read-file-name): Update DIR to ido-current-directory.
4654 (Bug#1516)
c28b9050 4655 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
5550a72c 4656
70c46b28
DG
46572013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4658
4659 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4660 "autoload". Remove "warn lower camel case" section, previously
4661 commented out. Highlight negation char. Do not highlight the
4662 target in singleton method definitions.
4663
0b64b838
SM
46642013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4665
7fd72e2c
SM
4666 * faces.el (tty-setup-hook): Declare the hook.
4667
0b64b838
SM
4668 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4669 and detect when a guard/pred depends on local vars (bug#14773).
4670 (pcase--u1): Adjust caller.
4671
ab49d60b
EZ
46722013-07-08 Eli Zaretskii <eliz@gnu.org>
4673
4674 * simple.el (line-move-partial, line-move): Account for
4675 line-spacing.
701d79aa
EZ
4676 (line-move-partial): Avoid setting vscroll when the last
4677 partially-visible line in window is of default height.
ab49d60b 4678
2d756ae0
LMI
46792013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4680
4681 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4682 been used a while.
4683
ed095bd7
JB
46842013-07-07 Juanma Barranquero <lekktu@gmail.com>
4685
4686 * subr.el (read-quoted-char): Remove unused local variable `char'.
4687
f1e6674b
MK
46882013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4689
584ee3fc
GM
4690 * ediff.el (ediff-version): Version update.
4691 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4692 (ediff-merge-with-ancestor-command, ediff-directories-command)
4693 (ediff-directories3-command, ediff-merge-directories-command)
4694 (ediff-merge-directories-with-ancestor-command): New functions.
4695 All are command-line interfaces to ediff: to facilitate calling
4696 Emacs with the appropriate ediff functions invoked.
5165d44a
JB
4697
4698 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4699 (viper-save-kill-buffer): Check if buffer is modified.
5165d44a 4700
584ee3fc
GM
4701 * viper.el (viper-version): Version update.
4702 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
5165d44a 4703
584ee3fc
GM
47042013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4705
4706 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4707 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4708 (viper-intercept-ESC-key): Simplify.
4709 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4710 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4711 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4712 (viper-setup-ESC-to-escape): New functions.
4713 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4714 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
ed095bd7 4715
9aff9b38
EZ
47162013-07-07 Eli Zaretskii <eliz@gnu.org>
4717
5165d44a
JB
4718 * simple.el (default-font-height, window-screen-lines):
4719 New functions.
9aff9b38
EZ
4720 (line-move, line-move-partial): Use them instead of
4721 frame-char-height and window-text-height. This makes scrolling
4722 text smoother when the buffer's default face uses a font that is
4723 different from the frame's default font.
4724
1afb1d07
JD
47252013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4726
4727 * files.el (write-file): Do not display confirm dialog for NS,
4728 it does its own dialog, which can't be cancelled (Bug#14578).
4729
23de972a
EZ
47302013-07-06 Eli Zaretskii <eliz@gnu.org>
4731
4732 * simple.el (line-move-partial): Adjust the row returned by
4733 posn-at-point for the current window-vscroll. (Bug#14567)
4734
54a42486
MA
47352013-07-06 Michael Albinus <michael.albinus@gmx.de>
4736
4737 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4738 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4739 spaces.
4740
34ada5f4
MR
47412013-07-06 Martin Rudalics <rudalics@gmx.at>
4742
4743 * window.el (window-state-put-stale-windows): New variable.
4744 (window--state-put-2): Save list of windows without matching buffer.
4745 (window-state-put): Remove "bufferless" windows if possible.
4746
11e03d89
JB
47472013-07-06 Juanma Barranquero <lekktu@gmail.com>
4748
4749 * simple.el (alternatives-define): Remove leftover :group keyword.
4750 Tweak docstring.
4751
3504a4be
LL
47522013-07-06 Leo Liu <sdl.web@gmail.com>
4753
4754 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4755 (ido-enable-virtual-buffers): New variable.
4756 (ido-buffer-internal, ido-toggle-virtual-buffers)
4757 (ido-make-buffer-list): Use it.
4758 (ido-exhibit): Support turning on and off virtual buffers
4759 automatically.
4760
61e56e2c
JB
47612013-07-06 Juanma Barranquero <lekktu@gmail.com>
4762
4763 * simple.el (alternatives-define): New macro.
4764
321e1a9c
SM
47652013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4766
4767 * subr.el (read-quoted-char): Use read-key.
4768 (sit-for): Let read-event decode tty input (bug#14782).
4769
d610f6dd
SB
47702013-07-05 Stephen Berman <stephen.berman@gmx.net>
4771
4772 * calendar/todo-mode.el: Add handling of file deletion, both by
321e1a9c
SM
4773 mode command and externally. Fix various related bugs.
4774 Clarify Commentary and improve some documentation strings and code.
d610f6dd
SB
4775 (todo-delete-file): New command.
4776 (todo-check-file): New function.
4777 (todo-show): Handle external deletion of the file we're trying to
4778 show (bug#14688). Replace called-interactively-p by an optional
4779 prefix argument to avoid problematic interaction with catch form
4780 when byte compiled (bug#14702).
4781 (todo-quit): Handle external deletion of the archive's todo file.
4782 Make sure the buffer that was visiting the archive file is still
4783 live before trying to bury it.
4784 (todo-category-completions): Handle external deletion of any
4785 category completion files.
4786 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4787 of todo files, in case of external deletion.
4788 (todo-add-file): Replace unnecessary setq by let-binding.
4789 (todo-find-archive): Check whether there are any archives.
4790 Replace unnecessary setq by let-binding.
4791 (todo-archive-done-item): Use find-file-noselect to get the
321e1a9c
SM
4792 archive buffer whether or not the archive already exists.
4793 Remove superfluous code. Use file size instead of buffer-file-name to
d610f6dd
SB
4794 check if the archive is new; if it is, update list of archives.
4795 (todo-default-todo-file): Allow nil to be a valid value for when
4796 there are no todo files.
4797 (todo-reevaluate-default-file-defcustom): Use corrected definition
4798 of todo-default-todo-file.
4799 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4800 (todo-delete-category, todo-show-categories-table)
4801 (todo-category-number): Clarify comment.
4802 (todo-filter-items): Clarify documentation string.
4803 (todo-show-current-file, todo-display-as-todo-file)
4804 (todo-reset-and-enable-done-separator): Tweak documentation string.
4805 (todo-done-separator): Make separator length window-width, since
4806 bug#2749 is now fixed.
4807
ddbdfd6f
MA
48082013-07-05 Michael Albinus <michael.albinus@gmx.de>
4809
321e1a9c
SM
4810 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4811 Support both "gvfs-monitor-dir" and "inotifywait".
4812 (tramp-sh-file-inotifywait-process-filter): Rename from
ddbdfd6f
MA
4813 `tramp-sh-file-notify-process-filter'.
4814 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4815 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4816
96eb829a
LL
48172013-07-05 Leo Liu <sdl.web@gmail.com>
4818
4819 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4820
cf13177e
YM
48212013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4822
4823 * frame.el (display-pixel-height, display-pixel-width)
4824 (display-mm-height, display-mm-width): Mention behavior on
4825 multi-monitor setups in docstrings.
4826 (w32-display-monitor-attributes-list): Declare function.
4827 (display-monitor-attributes-list): Use it.
4828
864c58ca
MA
48292013-07-04 Michael Albinus <michael.albinus@gmx.de>
4830
4831 * filenotify.el: New package.
4832
4833 * autorevert.el (top): Require filenotify.el.
4834 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4835 instead.
4836 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4837 (auto-revert-notify-handler): Use `file-notify-*' functions.
4838
4839 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4840
321e1a9c
SM
4841 * net/tramp.el (tramp-file-name-for-operation):
4842 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
864c58ca
MA
4843
4844 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4845 for `file-notify-add-watch' and `file-notify-rm-watch'.
4846 (tramp-process-sentinel): Improve trace.
4847 (tramp-sh-handle-file-notify-add-watch)
4848 (tramp-sh-file-notify-process-filter)
4849 (tramp-sh-handle-file-notify-rm-watch)
4850 (tramp-get-remote-inotifywait): New defuns.
4851
96673afe
JL
48522013-07-03 Juri Linkov <juri@jurta.org>
4853
4854 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4855 call of `occur-read-primary-args' to interactive spec.
4856
4857 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4858 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4859
924494f4
MM
48602013-07-03 Matthias Meulien <orontee@gmail.com>
4861
4862 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4863 `Buffer-menu-multi-occur'. Add it to the menu.
4864 (Buffer-menu-mode): Document it in docstring.
4865 (Buffer-menu-multi-occur): New command. (Bug#14673)
4866
56f75efc
DG
48672013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4868
4869 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4870 keywords and built-ins.
4871
9b057d61
GM
48722013-07-03 Glenn Morris <rgm@gnu.org>
4873
208dee4d
GM
4874 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4875
9b057d61
GM
4876 Make info-xref checks case-sensitive by default
4877 * info.el (Info-find-node, Info-find-in-tag-table)
4878 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4879 Add option for exact case matching of nodes.
4880 * info-xref.el (info-xref): New custom group.
4881 (info-xref-case-fold): New option.
4882 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
4883
e01aa29c
LL
48842013-07-03 Leo Liu <sdl.web@gmail.com>
4885
4886 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
4887
3086ca2e
DG
48882013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4889
4890 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4891 middle of block statement initially, lower the depth. Remove
4892 FIXME comment, not longer valid. Remove middle of block statement
4893 detection, no need to do that anymore since we've been using
4894 `ruby-parse-region' here.
4895
a3b49114
JD
48962013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4897
4898 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4899
08e5c823 49002013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
c737dcb1
KY
4901
4902 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4903
2addf922
JB
49042013-07-01 Juanma Barranquero <lekktu@gmail.com>
4905
4906 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4907 (desktop-restore-in-current-display): New customization option.
4908 (desktop--excluded-frame-parameters): Add `font'.
4909 (desktop--save-frames): Rename from desktop--save-windows.
4910 (desktop--restore-in-this-display-p): New function.
4911 (desktop--make-full-frame): Remove unwanted width/height from
4912 full(width|height) frames.
4913 (desktop--restore-frames): Rename from desktop--restore-windows.
4914 Obey desktop-restore-current-display. Do not delete old frames or
4915 select a new frame unless we were able to restore at least one frame.
4916
ef099a94
MN
49172013-06-30 Michal Nazarewicz <mina86@mina86.com>
4918
4919 * files.el (find-file-noselect): Simplify conditional expression.
4920
4921 * remember.el (remember-append-to-file):
4922 Don't mix `find-buffer-visiting' and `get-file-buffer'.
4923
4924 Add `remember-notes' function to store random notes across Emacs
4925 restarts.
4926 * remember.el (remember-data-file): Add :set callback to affect
4927 notes buffer (if any).
4928 (remember-notes): New command.
4929 (remember-notes-buffer-name, bury-remember-notes-on-kill):
4930 New defcustoms for the `remember-notes' function.
4931 (remember-notes-save-and-bury-buffer): New command.
4932 (remember-notes-mode-map): New variable.
4933 (remember-mode): New minor mode.
4934 (remember-notes--kill-buffer-query): New function.
4935 * startup.el (initial-buffer-choice): Add notes to custom type.
4936
0865d506
EZ
49372013-06-30 Eli Zaretskii <eliz@gnu.org>
4938
0ba54312
EZ
4939 * bindings.el (right-char, left-char): Don't call sit-for, this is
4940 no longer needed. Use arithmetic comparison only for numerical
4941 arguments.
4942
ef099a94
MN
4943 * international/mule-cmds.el (select-safe-coding-system):
4944 Handle the case of FROM being a string correctly. (Bug#14755)
0865d506 4945
2fae38e5
LMI
49462013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4947
4948 * net/shr.el (shr-make-table-1): Add a sanity check that allows
4949 progression on degenerate tables.
ef099a94 4950 (shr-rescale-image): ImageMagick animated images currently don't work.
2fae38e5 4951
a47cbd64
JB
49522013-06-30 Juanma Barranquero <lekktu@gmail.com>
4953
4954 Some fixes and improvements for desktop frame restoration.
4955 It is still experimental and disabled by default.
4956 * desktop.el (desktop--save-windows): Put the selected frame at
4957 the head of the list.
4958 (desktop--make-full-frame): New function.
4959 (desktop--restore-windows): Try to re-select the frame that was
4960 selected upon saving. Do not abort if some frames fail to restore,
7a3518fa
JB
4961 just show an error message and continue. Set up maximized frames
4962 so they have default non-maximized dimensions.
a47cbd64 4963
6dbafa30
DG
49642013-06-30 Dmitry Gutov <dgutov@yandex.ru>
4965
ef099a94
MN
4966 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4967 Don't start heredoc inside a string or comment.
6dbafa30 4968
4c672a0f
EZ
49692013-06-29 Eli Zaretskii <eliz@gnu.org>
4970
4971 * bindings.el (visual-order-cursor-movement): New defcustom.
4972 (right-char, left-char): Provide visual-order cursor motion by
4973 calling move-point-visually. Update the doc strings.
4974
50960f36
KH
49752013-06-28 Kenichi Handa <handa@gnu.org>
4976
4977 * international/mule.el (define-coding-system): New coding system
4978 properties :inhibit-null-byte-detection,
4979 :inhibit-iso-escape-detection, and :prefer-utf-8.
4980 (set-buffer-file-coding-system): If :charset-list property of
4981 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
4982 appropriate for setting.
4983
c1ea3abf
JB
4984 * international/mule-cmds.el (select-safe-coding-system):
4985 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
4986 multibyte characters, return utf-8 (or one of its siblings).
50960f36
KH
4987
4988 * international/mule-conf.el (prefer-utf-8): New coding system.
4989 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
4990 files.
4991
75dbaf9d
IK
49922013-06-28 Ivan Kanis <ivan@kanis.fr>
4993
eadb6068
IK
4994 * net/shr.el (shr-render-region): New function.
4995
75dbaf9d
IK
4996 * net/eww.el: Autoload `eww-browse-url'.
4997
9ea5cf9f
DG
49982013-06-27 Dmitry Gutov <dgutov@yandex.ru>
4999
c1ea3abf
JB
5000 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5001 Adapt to `package-desc-version' being a list.
5002 Use `package--ac-desc-version' to retrieve version from a package
9ea5cf9f
DG
5003 archive element.
5004
39c0e36f
JB
50052013-06-27 Juanma Barranquero <lekktu@gmail.com>
5006
5007 New experimental feature to save&restore window and frame setup.
5008 * desktop.el (desktop-save-windows): New defcustom.
5009 (desktop--saved-states): New var.
5010 (desktop--excluded-frame-parameters): New defconst.
5011 (desktop--filter-frame-parms, desktop--find-frame-in-display)
5012 (desktop--restore-windows, desktop--save-windows): New functions.
5013 (desktop-save): Call `desktop--save-windows'.
5014 (desktop-read): Call `desktop--restore-windows'.
5015
7f13406b
LMI
50162013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5017
ef099a94 5018 * net/shr.el (add-face-text-property): Remove compat definition.
7f13406b 5019
1e072639
SB
50202013-06-27 Stephen Berman <stephen.berman@gmx.net>
5021
5022 * info.el (Info-try-follow-nearest-node): Move search for footnote
5023 above search for node name to prevent missing a footnote (bug#14717).
5024
f3e2cbde
SB
50252013-06-27 Stephen Berman <stephen.berman@gmx.net>
5026
5027 * obsolete/otodo-mode.el: Add obsolescence info to file header.
5028
99906aa0
LL
50292013-06-27 Leo Liu <sdl.web@gmail.com>
5030
5031 * net/eww.el (eww-read-bookmarks): Check file size.
5032
539f75f4
SM
50332013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5034
5035 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
5036 advice--pending if newdef is nil or an autoload (bug#13820).
5037 (advice-mapc): New function.
5038
843571cb
LMI
50392013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5040
5041 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
5042 probably.
23a75d7f 5043 (eww-mode-map): Add a menu bar.
2b4f0506
LMI
5044 (eww-add-bookmark): New command.
5045 (eww-bookmark-mode): New mode and commands.
a285ce99 5046 (eww-add-bookmark): Remove newlines from the title.
47fd571b 5047 (eww-bookmark-browse): Don't bug out if it's the only window.
843571cb 5048
f2136e1e
GM
50492013-06-26 Glenn Morris <rgm@gnu.org>
5050
eab35f39
GM
5051 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
5052 (hfy-size): Handle ttys. (Bug#14668)
5053
f2136e1e
GM
5054 * info-xref.el: Update for Texinfo 5 change in *note format.
5055 (info-xref-node-re, info-xref-note-re): New constants.
5056 (info-xref-check-buffer): Use info-xref-note-re.
5057
a49ff80c
SM
50582013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5059
a343d218
SM
5060 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
5061
a49ff80c
SM
5062 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
5063 nil terminate the loop (bug#14718).
5064
8308f184
LMI
50652013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5066
5067 * net/eww.el: Rework history traversal. When going forward/back,
5068 put these actions into the history, too, so that they can be
5069 replayed.
26bf2b82 5070 (eww-render): Move the history reset to the correct buffer.
8308f184 5071
ec64c273
JL
50722013-06-25 Juri Linkov <juri@jurta.org>
5073
5074 * files-x.el (modify-dir-local-variable): Change the header comment
5075 in the file with directory local variables. (Bug#14692)
5076
e080a9d7
JL
5077 * files-x.el (read-file-local-variable-value): Add `default'.
5078 (Bug#14710)
5079
bfbc93a1
IK
50802013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5081
5082 * net/eww.el (eww-make-unique-file-name): Create a unique file
5083 name before saving to entering `y' accidentally asynchronously.
5084
50852013-06-25 Ivan Kanis <ivan@kanis.fr>
5086
5087 * net/eww.el (eww-download): New command and keystroke.
5088
16f74f10
LMI
50892013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5090
a49ff80c 5091 * net/eww.el (eww-copy-page-url): Change name of command.
16f74f10
LMI
5092
5093 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
5094 be more consistent with Info and dired.
5095
5096 * net/eww.el (eww-mode-map): Ditto.
5097
12059709
SM
50982013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5099
5100 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
5101 packages from archives.
5102 (package-archive-contents): Change format; include obsolete packages.
5103 (package-desc): Use `dir' to mark builtin packages.
5104 (package--from-builtin): Set the `dir' field to `builtin'.
5105 (generated-autoload-file, version-control): Declare.
5106 (package-compute-transaction): Change first arg and return value to be
5107 lists of package-descs. Adjust to new package-archive-contents format.
5108 (package--add-to-archive-contents): Adjust to new
5109 package-archive-contents format.
5110 (package-download-transaction): Arg is now a list of package-descs.
5111 (package-install): If `pkg' is a package name, pass it as
5112 a requirement, so it is subject to the usual (e.g. disabled) checks.
5113 (describe-package): Accept package-desc as well.
5114 (describe-package-1): Describe a specific package-desc. Add links to
5115 other package-descs for the same package name.
5116 (package-menu-describe-package): Pass the actual package-desc.
5117 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
5118 works correctly.
5119 (package-desc-status): New function.
5120 (package-menu--refresh): New function, extracted
5121 from package-menu--generate.
5122 (package-menu--generate): Use it.
5123 (package-delete): Update package-alist.
5124 (package-menu-execute): Don't call package-initialize.
5125
5126 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
5127 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
5128 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
5129 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
5130 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
5131 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
5132
8bbdea0f
MR
51332013-06-25 Martin Rudalics <rudalics@gmx.at>
5134
5135 * window.el (window--state-get-1): Workaround for bug#14527.
5136 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
5137
e82b0991
LMI
51382013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5139
5140 * net/eww.el (eww-back-url): Implement the history by stashing all
5141 the data into a list.
d3f0f918 5142 (eww-forward-url): Allow going forward in the history, too.
e82b0991 5143
c763842b
SM
51442013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5145
5146 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
5147 for values and use read--expression for expressions (bug#14710).
5148 (read-file-local-variable): Avoid setq.
5149 (read-file-local-variable-mode): Use minor-mode-list.
5150
bceff189
RW
51512013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5152
864c58ca 5153 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
bceff189
RW
5154 for DOI URLs.
5155
45f431c6
RW
51562013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5157
864c58ca 5158 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
45f431c6
RW
5159 Update imenu-support when dialect changes.
5160
f42d8237
LL
51612013-06-25 Leo Liu <sdl.web@gmail.com>
5162
5163 * ido.el (ido-read-internal): Allow forward slash on windows.
5164
be549ce6
LMI
51652013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5166
5167 * net/eww.el (eww): Start of strings is \\`, not ^.
5168
71d4c19d
IK
51692013-06-24 Ivan Kanis <ivan@kanis.fr>
5170
5196f88a
IK
5171 * net/shr.el (shr-browse-url): Fix interactive spec.
5172
71d4c19d
IK
5173 * net/eww.el (eww): Add a trailing slash to domain names.
5174
ae36ca55
JB
51752013-06-24 Juanma Barranquero <lekktu@gmail.com>
5176
5177 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
5178
0ebd92a3
LMI
51792013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5180
bdaa086b
LMI
5181 * net/shr.el (shr-browse-url): Use an external browser if given a
5182 prefix.
5183
c763842b 5184 * net/eww.el (eww-external-browser): Move to shr.
0ebd92a3 5185
b89fc156
IK
51862013-06-24 Ivan Kanis <ivan@kanis.fr>
5187
5188 * net/eww.el (eww): Work more correctly for file: URLs.
5189 (eww-detect-charset): Allow quoted charsets.
5190 (eww-yank-page-url): New command and keystroke.
5191
18eb4bca
DU
51922013-06-24 Daiki Ueno <ueno@gnu.org>
5193
5194 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
5195 file name of gpg executable.
5196 (epg-context-program): New function.
5197 (epg-context-home-directory): New function.
5198 (epg-context-set-program): New function.
5199 (epg-context-set-home-directory): New function.
5200 (epg--start): Use `epg-context-program' instead of
5201 'epg-gpg-program'.
5202 (epg--list-keys-1): Likewise.
5203
6c6268c8
LL
52042013-06-24 Leo Liu <sdl.web@gmail.com>
5205
5206 * ido.el (ido-read-internal): Fix bug#14620.
5207
5e400cb3
JB
52082013-06-23 Juanma Barranquero <lekktu@gmail.com>
5209
5210 * faces.el (face-documentation): Simplify.
5211 (read-face-attribute, tty-find-type, x-resolve-font-name):
5212 Use `string-match-p'.
5213 (list-faces-display): Use `string-match-p'. Simplify.
5214 (face-spec-recalc): Check face to avoid face alias loops.
5215 (read-color): Use `string-match-p' and non-capturing parenthesis.
5216
f3f9606c
LMI
52172013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5218
5219 * net/shr.el (shr-rescale-image): Use the new
5220 :max-width/:max-height functionality.
5221
a3ca09b9
IK
52222013-06-23 Ivan Kanis <ivan@kanis.fr>
5223
5224 * net/eww.el (eww-search-prefix): New variable.
5225 (eww): Use it.
f865b474
IK
5226 (eww-external-browser): New variable.
5227 (eww-mode-map): New keystroke.
5228 (eww-browse-with-external-browser): New command.
a3ca09b9 5229
e854cfc7
IK
5230 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
5231
18bb9e21
JB
52322013-06-23 Juanma Barranquero <lekktu@gmail.com>
5233
5234 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
5235 Don't skip aligning the next header field when padding is 0;
5236 otherwise, field width is not respected unless the title is as
5237 wide as the field.
5238
5b165ade
SM
52392013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5240
5241 * emacs-lisp/package.el (package-el-version): Remove.
5242 (package-process-define-package): Fix inf-loop.
5243 (package-install): Allow symbols as arguments again.
5244
12adebe9
DG
52452013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5246
5247 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
5248 add some more keyword-like methods.
5249 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
5250
388573ee
JB
52512013-06-22 Juanma Barranquero <lekktu@gmail.com>
5252
5253 * bs.el (bs-buffer-show-mark): Make defvar-local.
5254 (bs-mode): Use setq-local.
5255
5256 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
5257 (emacs-lock--try-unlocking): Make defvar-local.
5258
4582a01c 52592013-06-22 Glenn Morris <rgm@gnu.org>
3d94f3ad 5260
2663dd23
GM
5261 * play/cookie1.el (cookie-apropos): Minor simplification.
5262
3d94f3ad
GM
5263 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
5264
f72e2fdb
DG
52652013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5266
5267 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
5268 `regexp-opt', it breaks the build during dumping.
5269
73eab938
DG
52702013-06-21 Dmitry Gutov <dgutov@yandex.ru>
5271
c763842b
SM
5272 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5273 Highlight keyword-like methods on Kernel and Module with
73eab938 5274 font-lock-builtin-face.
5cf8176d
DG
5275 (auto-mode-alist): Consolidate different entries into one regexp
5276 and add more *file-s.
73eab938 5277
d26255f6
SB
52782013-06-21 Stephen Berman <stephen.berman@gmx.net>
5279
5280 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
5281
5282 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
5283 (diary-entry): Use it in the action of this button type instead of
5284 diary-goto-entry.
5285
5286 * calendar/todo-mode.el: New version.
5287 (todo-add-category): Append new category to end of file and give
5288 it the highest number, instead of putting it at the beginning and
5289 giving it 0. Incorporate noninteractive functionality.
5290 (todo-forward-category): Adapt to 1-based category numbering.
5291 Allow skipping over archived categories.
5292 (todo-backward-category): Derive from todo-forward-category.
5293 (todo-backward-item, todo-forward-item): Make noninteractive and
5294 delegate interactive part to new commands. Make sensitive to done items.
5295 (todo-categories): Make value an alist of category names and
5296 vectors of item counts.
5297 (todo-category-beg): Make a defconst.
5298 (todo-category-number): Use 1 instead of 0 as initial value.
5299 (todo-category-select): Make sensitive to overlays, optional item
5300 highlighting and done items.
5301 (todo-delete-item): Make sensitive to overlays and marked and done items.
5302 (todo-edit-item): Make sensitive to overlays and editing of
5303 date/time header optional. Add format checks.
5304 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
5305 no-op if point is not on an item. Advertise using todo-edit-quit.
5306 (todo-edit-mode): Make sensitive to new format, font-locking, and
5307 multiple todo files.
5308 (todo-insert-item, todo-insert-item-here): Derive from
5309 todo-basic-insert-item and extend functionality.
5310 (todo-item-end, todo-item-start): Make sensitive to done items.
5311 (todo-item-string): Don't return text properties. Restore point.
5312 (todo-jump-to-category): Make sensitive to multiple todo files and
5313 todo archives. Use extended category completion.
5314 (todo-lower-item, todo-raise-item): Rename to *-priority and
5315 derive from todo-set-item-priority.
5316 (todo-mode): Derive from special-mode. Make sensitive to new
5317 format, font-locking and multiple todo files. Make read-only.
5318 (todo-mode-map): Don't suppress digit keys, so they can supply
5319 prefix arguments. Add many new key bindings.
5320 (todo-prefix): Insert as an overlay instead of file text.
5321 Change semantics from diary date expression to purely visual mark.
5322 (todo-print): Rename to todo-print-buffer. Make buffer display
5323 features printable. Remove option to restrict number of items
5324 printed. Add option to print to file.
5325 (todo-print-function): Rename to todo-print-buffer-function.
5326 (todo-quit): Extend to handle exiting new todo modes.
5327 (todo-remove-item): Make sensitive to overlays.
5328 (todo-save): Extend to buffers of filtered items.
5329 (todo-show): Make sensitive to done items, multiple todo files and
5330 new todo modes. Offer to convert legacy todo file before creating
5331 first new todo file.
5332 (todo-show-priorities): Rename to todo-top-priorities.
5333 Change semantics of value 0.
5334 (todo-top-priorities): Rename to todo-filter-top-priorities,
5335 derive from todo-filter-items and extend functionality.
5336 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
5337 and extend functionality to other types of filtered items.
5338 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
5339 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
5340 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
5341 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
5342 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
5343 (todo-edit-mode-hook, todo-entry-prefix-function)
5344 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
5345 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
5346 (todo-initials, todo-insert-threshold, todo-item-string-start)
5347 (todo-line-string, todo-menu, todo-mode-hook)
5348 (todo-more-important-p, todo-previous-answer, todo-previous-line)
5349 (todo-print-priorities, todo-remove-separator)
5350 (todo-save-top-priorities-too, todo-string-count-lines)
5351 (todo-string-multiline-p, todo-time-string-format)
5352 (todo-tmp-buffer-name): Remove.
5353 (todo-add-file, todo-archive-done-item, todo-choose-archive)
5354 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
5355 (todo-edit-category-diary-inclusion)
5356 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
5357 (todo-edit-file, todo-edit-item-date-day)
5358 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
5359 (todo-edit-item-date-month, todo-edit-item-date-to-today)
5360 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
5361 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
5362 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
5363 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
5364 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
5365 (todo-filter-top-priorities-multifile, todo-find-archive)
5366 (todo-find-filtered-items-file, todo-go-to-source-item)
5367 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
5368 (todo-jump-to-archive-category, todo-lower-category)
5369 (todo-mark-category, todo-marked-item-p, todo-merge-category)
5370 (todo-move-category, todo-move-item, todo-next-button)
5371 (todo-next-item, todo-padded-string, todo-powerset)
5372 (todo-previous-button, todo-previous-item)
5373 (todo-print-buffer-to-file, todo-raise-category)
5374 (todo-rename-category, todo-repair-categories-sexp, todo-search)
5375 (todo-set-category-number, todo-set-item-priority)
5376 (todo-set-top-priorities-in-category)
5377 (todo-set-top-priorities-in-file, todo-show-categories-table)
5378 (todo-sort-categories-alphabetically-or-numerically)
5379 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
5380 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
5381 (todo-toggle-item-header, todo-toggle-item-highlighting)
5382 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
5383 (todo-toggle-view-done-items, todo-toggle-view-done-only)
5384 (todo-unarchive-items, todo-unmark-category): New commands.
5385 (todo-absolute-file-name, todo-add-to-buffer-list)
5386 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
5387 (todo-basic-insert-item, todo-category-completions)
5388 (todo-category-number, todo-category-string-matcher-1)
5389 (todo-category-string-matcher-2, todo-check-filtered-items-file)
5390 (todo-check-format, todo-clear-matches)
5391 (todo-comment-string-matcher, todo-convert-legacy-date-time)
5392 (todo-current-category, todo-date-string-matcher)
5393 (todo-define-insertion-command, todo-diary-expired-matcher)
5394 (todo-diary-goto-entry, todo-diary-item-p)
5395 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
5396 (todo-display-categories, todo-display-sorted, todo-done-item-p)
5397 (todo-done-item-section-p, todo-done-separator)
5398 (todo-done-string-matcher, todo-files, todo-filter-items)
5399 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
5400 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
5401 (todo-insert-category-line, todo-insert-item-from-calendar)
5402 (todo-insert-sort-button, todo-insert-with-overlays)
5403 (todo-insertion-command-name, todo-insertion-key-bindings)
5404 (todo-label-to-key, todo-longest-category-name-length)
5405 (todo-make-categories-list, todo-mode-external-set)
5406 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
5407 (todo-modes-set-3, todo-multiple-filter-files)
5408 (todo-nondiary-marker-matcher, todo-prefix-overlays)
5409 (todo-read-category, todo-read-date, todo-read-dayname)
5410 (todo-read-file-name, todo-read-time)
5411 (todo-reevaluate-category-completions-files-defcustom)
5412 (todo-reevaluate-default-file-defcustom)
5413 (todo-reevaluate-filelist-defcustoms)
5414 (todo-reevaluate-filter-files-defcustom)
5415 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
5416 (todo-reset-done-separator, todo-reset-done-separator-string)
5417 (todo-reset-done-string, todo-reset-global-current-todo-file)
5418 (todo-reset-highlight-item, todo-reset-nondiary-marker)
5419 (todo-reset-prefix, todo-set-categories)
5420 (todo-set-date-from-calendar, todo-set-show-current-file)
5421 (todo-set-top-priorities, todo-short-file-name)
5422 (todo-show-current-file, todo-sort, todo-time-string-matcher)
5423 (todo-total-item-counts, todo-update-buffer-list)
5424 (todo-update-categories-display, todo-update-categories-sexp)
5425 (todo-update-count, todo-validate-name, todo-y-or-n-p):
5426 New functions.
5427 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
5428 New major modes.
5429 (todo-categories, todo-display, todo-edit, todo-faces)
5430 (todo-filtered): New defgroups.
5431 (todo-archived-only, todo-button, todo-category-string, todo-date)
5432 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
5433 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
5434 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
5435 (todo-add-item-if-new-category, todo-always-add-time-string)
5436 (todo-categories-align, todo-categories-archived-label)
5437 (todo-categories-category-label, todo-categories-diary-label)
5438 (todo-categories-done-label, todo-categories-number-separator)
5439 (todo-categories-todo-label, todo-categories-totals-label)
5440 (todo-category-completions-files, todo-completion-ignore-case)
5441 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
5442 (todo-done-separator-string, todo-done-string)
5443 (todo-files-function, todo-filter-done-items, todo-filter-files)
5444 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
5445 (todo-initial-category, todo-initial-file, todo-item-mark)
5446 (todo-legacy-date-time-regexp, todo-mode-line-function)
5447 (todo-nondiary-marker, todo-number-prefix)
5448 (todo-print-buffer-function, todo-show-current-file)
5449 (todo-show-done-only, todo-show-first, todo-show-with-done)
5450 (todo-skip-archived-categories, todo-top-priorities-overrides)
5451 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
5452 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
5453 New defcustoms.
5454 (todo-category-done, todo-date-pattern, todo-date-string-start)
5455 (todo-diary-items-buffer, todo-done-string-start)
5456 (todo-filtered-items-buffer, todo-item-start)
5457 (todo-month-abbrev-array, todo-month-name-array)
5458 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
5459 (todo-top-priorities-buffer): New defconsts.
5460 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
5461 (todo-categories-with-marks, todo-category-string-face)
5462 (todo-comment-face, todo-comment-string, todo-current-todo-file)
5463 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
5464 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
5465 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
5466 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
5467 (todo-font-lock-keywords, todo-global-current-todo-file)
5468 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
5469 (todo-insertion-commands-args)
5470 (todo-insertion-commands-args-genlist)
5471 (todo-insertion-commands-names, todo-insertion-map)
5472 (todo-key-bindings-t, todo-key-bindings-t+a)
5473 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
5474 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
5475 (todo-nondiary-face, todo-print-buffer, todo-time-face)
5476 (todo-visited): New variables.
5477
cad5d1cb
GM
54782013-06-21 Glenn Morris <rgm@gnu.org>
5479
5480 * play/cookie1.el (cookie-apropos): Add optional display argument.
5481 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
5482 (psychoanalyze-pinhead): Use cookie-doctor.
5483
9e277302
JB
54842013-06-21 Juanma Barranquero <lekktu@gmail.com>
5485
5486 * emacs-lisp/package.el (tar-get-file-descriptor)
5487 (tar--extract): Declare.
5488
c5b0993e
EW
54892013-06-21 Eduard Wiebe <usenet@pusto.de>
5490
5491 Extend flymake's warning predicate to be a function (bug#14217).
5492 * progmodes/flymake.el (flymake-warning-predicate): New.
5493 (flymake-parse-line): Use it.
5494 (flymake-warning-re): Make obsolete alias to
5495 `flymake-warning-predicate'.
5496
a7d2d465
SM
54972013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5498
5499 * emacs-lisp/package.el (package-alist): Include obsolete packages.
5500 (package-obsolete-list): Remove.
5501 (package-activate): Remove min-version argument. Add `force' argument.
5502 Adjust to new package-alist format.
5503 (package-mark-obsolete): Remove.
5504 (package-unpack): Force reload of the package's autoloads.
5505 (package-installed-p): Check builtins if the installed package is not
5506 recent enough.
5507 (package-initialize): Don't reset package-obsolete-list.
5508 Don't specify which package version to activate.
5509 (package-process-define-package, describe-package-1)
5510 (package-menu--generate): Adjust to new package-alist format.
5511
cedf5c9d
JB
55122013-06-21 Juanma Barranquero <lekktu@gmail.com>
5513
5514 * allout-widgets.el (allout-widgets-mode-off)
5515 (allout-widgets-mode-on, allout-widgets-pre-command-business)
5516 (allout-widgets-post-command-business)
5517 (allout-widgets-after-copy-or-kill-function)
5518 (allout-widgets-after-undo-function, allout-test-range-overlaps)
5519 (allout-decorate-item-and-context)
5520 (allout-graphics-modification-handler): Fix typos in docstrings.
5521 (allout-get-or-create-parent-widget): Use `looking-at-p'.
5522
5523 * cmuscheme.el (scheme-start-file): Doc fix.
5524 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
5525 (scheme-input-filter): Use `string-match-p'.
5526
5527 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
5528
5529 * dired-x.el: Use Dired consistently in docstrings.
5530
5531 * dired.el: Use Dired consistently in docstrings.
5532 (dired-readin, dired-mode): Use `setq-local'.
5533 (dired-switches-alist): Make defvar-local.
5534 (dired-buffers-for-dir): Use `zerop'.
5535 (dired-safe-switches-p, dired-switches-escape-p)
5536 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
5537 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
5538 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
5539 (dired-goto-next-nontrivial-file): Use `string-match-p'.
5540 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
5541 (dired-toggle-marks, dired-mark-files-containing-regexp)
5542 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
5543 (dired-flag-auto-save-files, dired-flag-backup-files):
5544 Use `looking-at-p'.
5545 (dired-mark-files-regexp, dired-build-subdir-alist):
5546 Use `string-match-p', `looking-at-p'.
5547
5548 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
5549 (direct-print-region-helper): Use `string-match-p'.
5550
aed838b5
LL
55512013-06-21 Leo Liu <sdl.web@gmail.com>
5552
cedf5c9d
JB
5553 * comint.el (comint-redirect-results-list-from-process):
5554 Fix infinite loop.
aed838b5 5555
d80a808f
LMI
55562013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5557
5558 * net/eww.el (eww-update-header-line-format): Quote % characters.
5559
e7a526e3
GM
55602013-06-21 Glenn Morris <rgm@gnu.org>
5561
5562 * play/cookie1.el (cookie): New custom group.
5563 (cookie-file): New option.
5564 (cookie-check-file): New function.
5565 (cookie): Make it interactive. Make start and end messages optional.
5566 Interactively, display the result. Default to cookie-file.
5567 (cookie-insert): Default to cookie-file.
5568 (cookie-snarf): Make start and end messages optional.
5569 Default to cookie-file. Use with-temp-buffer.
5570 (cookie-read): Rename from read-cookie.
5571 Make start and end messages optional. Default to cookie-file.
5572 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
7f8e3b22 5573 Do not autoload it.
e7a526e3
GM
5574 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
5575 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
5576
62efb35e
LL
55772013-06-21 Leo Liu <sdl.web@gmail.com>
5578
5579 * progmodes/octave.el (octave-mode): Backward compatibility fix.
5580
21e3f963
GM
55812013-06-21 Glenn Morris <rgm@gnu.org>
5582
5583 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
5584
fd846ab4
SM
55852013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5586 Daniel Hackney <dan@haxney.org>
5587
5588 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
5589 Consolidate the single-file vs tarball code.
5590 (package-desc-suffix): New function.
5591 (package-desc-full-name): Don't bother inlining it.
5592 (package-load-descriptor): Return the new package-desc.
5593 (package-mark-obsolete): Remove unused arg `package'.
5594 (package-unpack): Make it work for single files as well.
5595 Make it update package-alist.
5596 (package--make-autoloads-and-stuff): Rename from
5597 package--make-autoloads-and-compile. Don't compile any more.
5598 (package--compile): New function.
5599 (package-generate-description-file): New function, extracted from
5600 package-unpack-single.
5601 (package-unpack-single): Remove.
5602 (package--with-work-buffer): Add indentation and debugging info.
5603 (package-download-single): Remove.
5604 (package-install-from-archive): Rename from package-download-tar, make
5605 it take a pkg-desc, and make it work for single files as well.
5606 (package-download-transaction): Simplify.
5607 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
5608 external tar program.
5609 (package-install-from-buffer): Remove `pkg-desc' argument.
5610 Use package-tar-file-info for tar-mode buffers.
5611 (package-install-file): Simplify accordingly.
5612 (package-archive-base): Change to take a pkg-desc.
5613 * tar-mode.el (tar--check-descriptor): New function, extracted from
5614 tar-get-descriptor.
5615 (tar-get-descriptor): Use it.
5616 (tar-get-file-descriptor): New function.
5617 (tar--extract): New function, extracted from tar-extract.
5618 (tar--extract): Use it.
5619 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5620 case the summary uses non-ascii. Adjust to new calling convention of
5621 package-tar-file-info.
5622
b7deae5e
LL
56232013-06-21 Leo Liu <sdl.web@gmail.com>
5624
fd846ab4
SM
5625 * comint.el (comint-redirect-results-list-from-process):
5626 Fix random delay. (Bug#14681)
b7deae5e 5627
7a65a0b2
JB
56282013-06-21 Juanma Barranquero <lekktu@gmail.com>
5629
5630 * profiler.el (profiler-format-number): Use log, not log10.
5631
1493c2af
JB
56322013-06-20 Juanma Barranquero <lekktu@gmail.com>
5633
5634 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5635
aff6371e
SM
56362013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5637
5638 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5639 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5640 yet available.
5641 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5642 (AUTOGENEL): ... here.
5643 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5644 (cl--defsubst-expand): Use it.
5645
89561f72
PE
56462013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5647
5648 * subr.el (log10): Move here from C code, and declare as obsolete.
5649 All uses of (log10 X) replaced with (log X 10).
5650
47199123
JB
56512013-06-20 Juanma Barranquero <lekktu@gmail.com>
5652
5653 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5654 Declare with `defvar-local'.
5655 (tabulated-list-use-header-line, tabulated-list-entries)
5656 (tabulated-list-padding, tabulated-list-printer)
5657 (tabulated-list-sort-key): Declare with `defvar-local'.
5658 (tabulated-list-init-header, tabulated-list-print-fake-header):
5659 Use `setq-local'.
5660
4a172eab
MA
56612013-06-20 Michael Albinus <michael.albinus@gmx.de>
5662
47199123
JB
5663 * arc-mode.el (archive-mode): Add `archive-write-file' to
5664 `write-contents-functions' also for remote files. (Bug#14652)
4a172eab 5665
5fc0acc0
JB
56662013-06-20 Juanma Barranquero <lekktu@gmail.com>
5667
d5b27848
JB
5668 * cus-edit.el (custom-commands): Fix typos.
5669 (custom-display): Fix tooltip text.
5670 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5671 Fix typos in docstrings.
5672 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5673 (custom-unlispify-menu-entry, custom-magic-value-create)
5674 (custom-add-see-also, custom-group-value-create): Use ?\s.
5675 (custom-guess-type, customize-apropos, editable-field)
5676 (custom-face-value-create): Use `string-match-p'.
5677 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5678
5679 * custom.el (custom-load-symbol): Use `string-match-p'.
5680
a5c581d8
JB
5681 * ansi-color.el: Convert to lexical binding.
5682 (ansi-colors): Fix URL.
5683 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5684 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5685 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5686
970ad972
G
56872013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5688
5689 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5690
5691 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5692
56932013-06-19 Tom Tromey <tromey@redhat.com>
5694
5695 * net/eww.el (eww-top-url): Remove.
5696 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5697 (eww-render): Set new variables. Don't set eww-top-url.
5698 (eww-handle-link): Handle "prev", "home", and "contents".
5699 Downcase the rel text.
5700 (eww-top-url): Choose best top URL.
5701
57022013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5703
5704 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5705 relying in widget.el. Using widget.el leads to too many
5706 user interface inconsistencies.
5707 (eww-self-insert): Implement entering commands in text fields.
5708 (eww-process-text-input): New function to make text input field editing
5709 work.
5710 (eww-submit): Rewrite to use the new-style form methods.
5711 (eww-select-display): Display the correct selected item.
5712 (eww-change-select): Implement changing the select value.
5713 (eww-toggle-checkbox): Implement radio/checkboxes.
5714 (eww-update-field): Fix compilation error.
5715 (eww-tag-textarea): Implement <textarea>.
5716
5717 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5718 we don't shadow mode-specific bindings.
5719
5720 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5721 nothing to push.
5722
5723 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5724
4582a01c 57252013-06-19 Glenn Morris <rgm@gnu.org>
3db52056
GM
5726
5727 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5728
15b263dc
MA
57292013-06-19 Michael Albinus <michael.albinus@gmx.de>
5730
5731 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5732 not needed.
5733
5734 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5735
8f5297f7
LMI
57362013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5737
5738 * net/browse-url.el (browse-url-browser-function):
5739 `eww-browse-url' has the right calling signature, `eww' does not.
5740
011c4552
GM
57412013-06-19 Glenn Morris <rgm@gnu.org>
5742
2285bd27
GM
5743 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5744 Only eval autoloaded macros.
5745 (byte-compile-autoload): Only give the macro warning for macros.
5746
1d653303
GM
5747 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5748 (ps-underlined-faces): Declare.
5749
bdd779ec
GM
5750 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5751 (speedbar-add-supported-extension): Declare.
5752
011c4552
GM
5753 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5754 Don't include a date stamp in the header of the generated file;
5755 it leads to needless differences between output files.
5756
e59dfb0e
MA
57572013-06-19 Michael Albinus <michael.albinus@gmx.de>
5758
c763842b
SM
5759 * net/secrets.el (secrets-struct-secret-content-type):
5760 Replace check of introspection data by a test call of "CreateItem".
fd846ab4 5761 Some servers do not offer introspection.
e59dfb0e 5762
102626e2
SM
57632013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5764
5765 * electric.el (electric-pair-mode): Improve interaction with
5766 electric-layout-mode.
5767 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5768 (electric-pair-syntax): Use text-mode-syntax-table in comments
5769 and strings.
5770 (electric-pair--insert): New function.
5771 (electric-pair-post-self-insert-function): Use it and
5772 electric--after-char-pos.
5773
ad528125
LL
57742013-06-19 Leo Liu <sdl.web@gmail.com>
5775
5776 * progmodes/octave.el (octave-help): Fix regexp.
5777
924d6997
G
57782013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5779
5780 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5781 (shr-table-horizontal-line): Allow nil as a value, and change the
5782 default.
5783 (shr-insert-table-ruler): Respect the nil value.
5784
57852013-06-18 Tom Tromey <tromey@barimba>
5786
5787 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5788 New defvars.
5789 (eww-open-file): New defun.
5790 (eww-render): Initialize new variables.
5791 (eww-display-html): Handle "link" and "a".
5792 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5793 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5794 (eww-back-url): Rename from eww-previous-url.
102626e2
SM
5795 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5796 New defuns.
924d6997 5797
d1bbba4f
DG
57982013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5799
5800 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5801 Distinguish ternary operator tokens from slash symbol and slash
5802 char literal.
5803
14dd22d2
JB
58042013-06-18 Juanma Barranquero <lekktu@gmail.com>
5805
5806 Convert symbol prettification into minor mode and global minor mode.
5807
5808 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5809 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5810 (prettify-symbols--keywords): Rename from
5811 `prog-prettify-symbols-alist' and make a local defvar.
5812 (prettify-symbols--compose-symbol): Rename from
5813 `prog--prettify-font-lock-compose-symbol'.
5814 (prettify-symbols--make-keywords): Rename from
5815 `prog-prettify-font-lock-symbols-keywords' and simplify.
5816 (prog-prettify-install): Remove.
5817 (prettify-symbols-mode): New minor mode, based on
5818 `prog-prettify-install'.
5819 (turn-on-prettify-symbols-mode): New function.
5820 (global-prettify-symbols-mode): New globalized minor mode.
5821
5822 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5823 * progmodes/cfengine.el (cfengine3-mode):
5824 * progmodes/perl-mode.el (perl-mode): Don't call
5825 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5826
292c880c
JL
58272013-06-18 Juri Linkov <juri@jurta.org>
5828
5829 * files-x.el (modify-file-local-variable-message): New function.
5830 (modify-file-local-variable)
5831 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5832 and call `modify-file-local-variable-message' when it's non-nil.
5833 (add-file-local-variable, delete-file-local-variable)
5834 (add-file-local-variable-prop-line)
5835 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5836 and use it. (Bug#9820)
5837
0950aa27
JL
58382013-06-18 Juri Linkov <juri@jurta.org>
5839
5840 * emulation/vi.el (vi-shell-op):
5841 * emulation/vip.el (vip-execute-com, ex-command):
5842 * emulation/viper-cmd.el (viper-exec-bang):
5843 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5844 the call of `shell-command-on-region'. (Bug#14637)
5845
5846 * simple.el (shell-command-on-region): Doc fix.
5847
8fbcca16
SM
58482013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5849
5850 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5851 (bug#14633).
5852
dd7426ea
GM
58532013-06-18 Glenn Morris <rgm@gnu.org>
5854
4ba54f7d
GM
5855 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5856
dd7426ea
GM
5857 * newcomment.el (comment-search-forward, comment-search-backward):
5858 Doc fix. (Bug#14376)
5859
58aa805b
JB
58602013-06-18 Juanma Barranquero <lekktu@gmail.com>
5861
5862 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5863 (buffer-face-mode-invoke): Doc fix.
5864
9a08a617
MM
58652013-06-18 Matthias Meulien <orontee@gmail.com>
5866
5867 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
924494f4 5868 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
9a08a617 5869
f2f426ca
GM
58702013-06-18 Glenn Morris <rgm@gnu.org>
5871
9445f99b
GM
5872 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5873 Replace obsolete function generic-make-keywords with its expansion.
5874
e0df2d14
GM
5875 * progmodes/python.el (ffap-alist): Declare.
5876
f2f426ca
GM
5877 * textmodes/reftex.el (bibtex-mode-map): Declare.
5878
f7f9a720
SM
58792013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5880
5881 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5882 (package-unpack, package-unpack-single): Return the pkg-dir.
5883 (package-download-transaction): Use it to update package-alist.
5884
57ff04e0
LMI
58852013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5886
5887 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
5888 possible choice.
5889
c048c022
JL
58902013-06-17 Juri Linkov <juri@jurta.org>
5891
5892 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5893
b5bcaee5
DG
58942013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5895
a020afb9
JB
5896 * emacs-lisp/package.el (package-load-descriptor):
5897 Remove `with-syntax-table' call, `read' doesn't need it.
b5bcaee5
DG
5898 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5899
551e07e5
JB
59002013-06-17 Juanma Barranquero <lekktu@gmail.com>
5901
5902 * startup.el (command-line): Expand package name returned by
5903 `package--description-file' (bug#14639).
5904
d363bffb
DG
59052013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5906
5907 * emacs-lisp/package.el (package-load-descriptor): Do not call
5908 `emacs-lisp-mode', just use its syntax table.
5909
f612933b
JB
59102013-06-17 Juanma Barranquero <lekktu@gmail.com>
5911
5912 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
5913 `font-lock-extra-managed-props' if any prettifying keyword is added.
5914 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
5915 (prog-mode): Use `setq-local'.
5916
db3b7db5
SM
59172013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5918
5919 * international/characters.el (standard-case-table): Set syntax of ?»
5920 and ?« to punctuation.
5921
f3d674df
JB
59222013-06-16 Juanma Barranquero <lekktu@gmail.com>
5923
5924 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
5925 Save relevant match data before calling `syntax-ppss' (bug#14595).
5926
31489a32
JL
59272013-06-15 Juri Linkov <juri@jurta.org>
5928
5929 * files-x.el (modify-file-local-variable-prop-line): Add local
5930 variables to the end of the existing comment on the first line.
5931 Use `file-auto-mode-skip' to skip interpreter magic line,
5932 and also skip XML declaration.
5933
66bd25ab
SM
59342013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5935
5936 * startup.el (package--builtin-versions): New var.
5937 (package-subdirectory-regexp): Remove.
5938 (package--description-file): Hard code its value instead.
5939
5940 * emacs-lisp/package.el: Don't activate packages older than builtin.
5941 (package-obsolete-list): Rename from package-obsolete-alist, and make
5942 it into a simple list of package-desc.
5943 (package-strip-version): Remove.
5944 (package-built-in-p): Use package--builtin-versions.
5945 (package-mark-obsolete): Simplify.
5946 (package-process-define-package): Mark it obsolete if older than the
5947 builtin version.
5948 (package-handle-response): Use line-end-position.
5949 (package-read-archive-contents, package--download-one-archive):
5950 Simplify.
5951 (package--add-to-archive-contents): Skip if older than the builtin or
5952 installed version.
5953 (package-menu-describe-package): Fix last change.
5954 (package-list-unversioned): New var.
5955 (package-menu--generate): Use it.
5956
5957 * emacs-lisp/autoload.el: Manage package--builtin-versions.
5958 (autoload--insert-text, autoload--insert-cookie-text): New functions.
5959 (autoload-builtin-package-versions): New variable.
5960 (autoload-generate-file-autoloads): Use them.
5961 Remove the list of autoloaded functions/macros from the
5962 (autoload...) comments.
5963
5964 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
5965
9583ec36
EZ
59662013-06-15 Eli Zaretskii <eliz@gnu.org>
5967
5968 * simple.el (line-move-partial): Don't jump to the next screen
5969 line as soon as it becomes visible. Instead, continue enlarging
5970 the vscroll until the portion of a tall screen line that's left on
5971 display is about the height of the frame's default font.
5972 (Bug#14567)
5973
f0100d8a
GM
59742013-06-15 Glenn Morris <rgm@gnu.org>
5975
b86a85ca
GM
5976 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
5977 compilation-error-regexp-alist void, or local while let-bound.
5978
f0100d8a
GM
5979 * progmodes/make-mode.el (makefile-mode-syntax-table):
5980 Treat "=" as punctuation. (Bug#14614)
5981
05e7ce90
JB
59822013-06-15 Juanma Barranquero <lekktu@gmail.com>
5983
5984 * help-fns.el (describe-variable):
5985 Add extra line for permanent-local variables.
5986
12e5e86e
SH
59872013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
5988
5989 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5990 Add export, import, library. (Bug#9164)
5991 (library): Set indent function.
5992
230dcbaf
GM
59932013-06-14 Glenn Morris <rgm@gnu.org>
5994
5995 * term/xterm.el (xterm--query):
5996 Stop after first matching handler. (Bug#14615)
5997
e36b2d20 59982013-06-14 Ivan Kanis <ivan@kanis.fr>
d4466a91
IK
5999
6000 Add support for dired in saveplace.
6001 * dired.el (dired-initial-position-hook): New variable.
6002 (dired-initial-position): Call hook to place cursor position.
6003 * saveplace.el (save-place-to-alist): Add dired position.
6004 (save-place-dired-hook): New function.
6005
0b31660d
SM
60062013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
6007
bf1e6ae8
SM
6008 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
6009 through a symbol rather than letrec.
6010
1b8dff23
SM
6011 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
6012 (package-desc): Add `dir' field.
6013 (package-desc-full-name): New function.
6014 (package-load-descriptor): Combine the two arguments. Don't use `load'.
6015 (package-maybe-load-descriptor): Remove.
6016 (package-load-all-descriptors): Just call package-load-descriptor.
6017 (package--disabled-p): New function.
6018 (package-desc-vers, package-desc-doc): Remove aliases.
6019 (package--dir): Remove function.
6020 (package-activate): Check if a package is disabled.
6021 (package-process-define-package): New function, extracted from
6022 define-package.
6023 (define-package): Turn into a place holder.
6024 (package-unpack-single, package-tar-file-info):
6025 Use package--description-file.
6026 (package-compute-transaction): Use package--disabled-p.
6027 (package-download-transaction): Don't call
6028 package-maybe-load-descriptor since they're all loaded anyway.
6029 (package-install): Change argument to be a pkg-desc.
6030 (package-delete): Use a single pkg-desc argument.
6031 (describe-package-1): Use package-desc-dir instead of package--dir.
6032 Use package-desc property instead of package-symbol.
6033 (package-install-button-action): Adjust accordingly.
6034 (package--push): Rewrite.
6035 (package-menu--print-info): Adjust accordingly. Change the ID format
6036 to be a pkg-desc.
6037 (package-menu-describe-package, package-menu-get-status)
6038 (package-menu--find-upgrades, package-menu-mark-upgrades)
6039 (package-menu-execute, package-menu--name-predicate):
6040 Adjust accordingly.
6041 * startup.el (package--description-file): New function.
6042 (command-line): Use it.
6043 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6044 Use package-desc-version.
6045
0b31660d
SM
6046 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
6047 (byte-compile-preprocess): Use it.
6048 (byte-compile-file-form-defalias): Try a bit harder to use macros we
6049 can't quite recognize.
6050 (byte-compile-add-to-list): Remove.
6051 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
6052 (cconv-closure-convert): Add assertion.
6053
6054 * emacs-lisp/map-ynp.el: Use lexical-binding.
6055 (map-y-or-n-p): Remove unused vars `tail' and `object'.
6056 Factor out some repeated code.
6057
de0503df
SM
60582013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6059
6060 * subr.el (with-eval-after-load): New macro.
6061 (eval-after-load): Allow form to be a function.
6062 take advantage of lexical-binding.
6063 (do-after-load-evaluation): Use dolist and adjust to new format.
6064 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
6065
bc5c8c5a
JL
60662013-06-13 Juri Linkov <juri@jurta.org>
6067
6068 * replace.el (perform-replace): Display "symbol " and other search
6069 modes from `isearch-message-prefix' in the *Help* buffer.
6070
6071 * isearch.el (isearch-query-replace): Add " symbol" and other
6072 possible search modes from `isearch-message-prefix' to the prompt.
6073 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
6074 when reading a regexp to collect.
6075
a22289f7
JL
60762013-06-13 Juri Linkov <juri@jurta.org>
6077
6078 * isearch.el (word-search-regexp): Match whitespace if the search
6079 string begins or ends in whitespace. The LAX arg is applied to
6080 both ends of the search string. Use `regexp-quote' and explicit
6081 \< and \> instead of \b. Use \` and \' instead of ^ and $.
6082 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
6083 boundaries are replaced with symbol boundaries, and characters
6084 between symbols match non-word non-symbol syntax. (Bug#14602)
6085
cb89acab
JL
60862013-06-13 Juri Linkov <juri@jurta.org>
6087
6088 * isearch.el (isearch-del-char): Don't exceed the length of
6089 `isearch-string' by the prefix arg. (Bug#14563)
6090
6e8cfc81
JL
60912013-06-13 Juri Linkov <juri@jurta.org>
6092
6093 * isearch.el (isearch-yank-word, isearch-yank-line)
6094 (isearch-char-by-name, isearch-quote-char)
6095 (isearch-printing-char, isearch-process-search-char):
6096 Add optional count prefix arg. (Bug#14563)
6097
6098 * international/isearch-x.el
6099 (isearch-process-search-multibyte-characters):
6100 Add optional count prefix arg.
6101
c23d55f4
VS
61022013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6103
6104 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
6105 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
6106 lexical-binding.
6107
61082013-06-13 Vitalie Spinu <spinuvit@gmail.com>
6109
6110 * subr.el (set-temporary-overlay-map): Add on-exit argument.
6111
ba947bc4
GM
61122013-06-13 Glenn Morris <rgm@gnu.org>
6113
8baeb37a
GM
6114 * startup.el (tty-handle-args):
6115 Don't just discard "--" and anything after. (Bug#14608)
6116
ba947bc4
GM
6117 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
6118
9abefce4
MA
61192013-06-13 Michael Albinus <michael.albinus@gmx.de>
6120
6121 Implement changes in Secret Service API. Make it backward compatible.
6122 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
6123 (secrets-create-item): Use it. Prefix properties with interface.
6124
5755011f
MH
61252013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
6126
6127 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
6128 (term-emulate-terminal): Respect term-suppress-hard-newline.
6129
1261d2da
S
61302013-06-13 E Sabof <esabof@gmail.com> (tiny change)
6131
6132 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
6133 Only remove a `thumb-file' overlay. (Bug#14548)
6134
868490bb
GJ
61352013-06-12 Grégoire Jadi <daimrod@gmail.com>
6136
6137 * mail/reporter.el (reporter-submit-bug-report):
6138 Handle missing package-name. (Bug#14600)
6139
79d7167f
TH
61402013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6141
6142 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
6143 (reftex-citation-prompt, reftex-default-bibliography)
6144 (reftex-bib-or-thebib, reftex-get-bibfile-list)
6145 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6146 (reftex-bib-sort-author, reftex-bib-sort-year)
6147 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
6148 (reftex-extract-bib-entries-from-thebibliography)
6149 (reftex-get-bibkey-default, reftex-get-bib-names)
6150 (reftex-parse-bibtex-entry, reftex-get-bib-field)
6151 (reftex-format-bib-entry, reftex-parse-bibitem)
6152 (reftex-format-bibitem, reftex-do-citation)
6153 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
6154 (reftex-restrict-bib-matches, reftex-extract-bib-file)
6155 (reftex-insert-bib-matches, reftex-format-citation)
6156 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
6157 (reftex-create-bibtex-file): Add docstrings, mostly by converting
6158 existing comments into docstrings.
6159
5f9dbd7a
XF
61602013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6161
6162 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
6163
94df41ab
AS
61642013-06-12 Andreas Schwab <schwab@suse.de>
6165
6166 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
6167 for auto-save files.
6168
a7f3fecc
GM
61692013-06-12 Glenn Morris <rgm@gnu.org>
6170
001809f6
GM
6171 * ido.el (ido-delete-ignored-files): Remove.
6172 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
6173 Go back to calling ido-ignore-item-p directly.
a7f3fecc 6174
834b5ded
EL
61752013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
6176
08c73ed2
EL
6177 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
6178
834b5ded
EL
6179 * ido.el (ido-delete-ignored-files): New function,
6180 split from ido-make-file-list-1.
6181 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
6182 (ido-make-file-list-1): Use ido-delete-ignored-files.
6183
daabf15a
LL
61842013-06-12 Leo Liu <sdl.web@gmail.com>
6185
6186 * progmodes/octave.el (inferior-octave-startup)
6187 (inferior-octave-completion-table)
6188 (inferior-octave-track-window-width-change)
6189 (octave-eldoc-function-signatures, octave-help)
6190 (octave-find-definition): Use single quoted strings.
6191 (inferior-octave-startup-args): Change default value.
6192 (inferior-octave-startup): Do not hard code "-i" and
6193 "--no-line-editing".
6194 (inferior-octave-resync-dirs): Add optional arg NOERROR.
6195 (inferior-octave-directory-tracker): Use it.
6196 (octave-goto-function-definition): Robustify.
6197 (octave-help): Support highlighting operators in 'See also'.
6198 (octave-find-definition): Find subfunctions only in Octave mode.
6199
cf4e5178
SM
62002013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6201
6202 * help-fns.el (help-fns--compiler-macro): If the handler function is
6203 named, then put a link to it.
6204 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
6205 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
6206 (cl-typep): Use it.
6207 (cl-eval-when): Simplify debug spec.
6208 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
6209 compiler-macro function instead of setting `compiler-macro-file'.
6210
99c81280 62112013-06-12 Xue Fuqiao <xfq.free@gmail.com>
cd0527a4
XF
6212
6213 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
6214 * vc/vc-hooks.el (vc-stay-local): Doc fix.
6215
f56be016
SM
62162013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6217 Daniel Hackney <dan@haxney.org>
6218
6219 First part of Daniel Hackney's patch to package.el.
6220 * emacs-lisp/package.el: Use defstruct.
6221 (package-desc): New, main struct.
6222 (package--bi-desc, package--ac-desc): New structs, used to describe the
6223 format in external files.
6224 (package-desc-vers): Replace with package-desc-version accessor.
6225 (package-desc-doc): Replace with package-desc-summary accessor.
6226 (package-activate-1): Remove `package' arg since the pkg-vec now
6227 includes the name.
6228 (define-package): Use package-desc-from-define.
6229 (package-unpack-single): Change file-name arg to be a symbol.
6230 (package--add-to-archive-contents): Use package-desc-create and new
6231 accessor functions to package--ac-desc.
6232 (package-buffer-info, package-tar-file-info): Return a package-desc.
6233 (package-install-from-buffer): Remove `type' argument. Change pkg-info
6234 arg to be a package-desc.
6235 (package-install-file): Adjust accordingly. Use \' to match EOS.
6236 (package--from-builtin): New function.
6237 (describe-package-1, package-menu--generate): Use it.
6238 (package--make-autoloads-and-compile): Change name arg to be a symbol.
6239 (package-generate-autoloads): Idem and return the name of the file.
6240 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6241 Change pkg-info arg to be a package-desc.
6242 Use package-make-ac-desc.
6243 (package-upload-file): Use \' to match EOS.
6244 * finder.el (finder-compile-keywords): Use package-make-builtin.
6245
31119d63
SM
62462013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6247
931a2762
SM
6248 * vc/vc.el (vc-deduce-fileset): Change error message.
6249 (vc-read-backend): New function.
6250 (vc-next-action): Use it.
6251
5a3eb0c6
SM
6252 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
6253
e3eb1bb7
SM
6254 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
6255 (prolog-font-lock-keywords): Use regexp-opt instead.
6256 Don't manually highlight strings.
6257 (prolog-mode-variables): Simplify comment-start-skip.
6258 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
6259
31119d63
SM
6260 * emacs-lisp/generic.el (generic--normalise-comments)
6261 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
6262 (generic-mode-set-comments): Use them.
6263 (generic-bracket-support): Use setq-local.
6264 (generic-make-keywords-list): Declare obsolete.
6265
7de135d0
GM
62662013-06-11 Glenn Morris <rgm@gnu.org>
6267
6268 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6269 Prettify after setting font-lock-defaults. (Bug#14574)
6270
fa6bc6fd
JB
62712013-06-11 Juanma Barranquero <lekktu@gmail.com>
6272
6273 * replace.el (query-replace, occur-read-regexp-defaults-function)
6274 (replace-search):
6275 * subr.el (declare-function, number-sequence, local-set-key)
6276 (substitute-key-definition, locate-user-emacs-file)
6277 (with-silent-modifications, split-string, eval-after-load):
6278 Fix typos, remove unneeded backslashes and reflow some docstrings.
6279
cf1f9b9a
SM
62802013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6281
6282 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
6283 default for Elisp files.
6284
56602a4b
GM
62852013-06-11 Glenn Morris <rgm@gnu.org>
6286
6287 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
6288 although define-derived-mode was doing this anyway. (Bug#14583)
6289
30ae0b2c
JB
62902013-06-10 Juanma Barranquero <lekktu@gmail.com>
6291
6292 * allout.el (allout-encryption-plaintext-sanitization-regexps):
6293 Fix make-variable-buffer-local call to refer to the correct variable.
6294
fa472906
AG
62952013-06-10 Aidan Gauland <aidalgol@amuri.net>
6296
6297 * eshell/em-term.el (eshell-visual-commands)
e7b41c4c
JB
6298 (eshell-visual-subcommands, eshell-visual-options):
6299 Add summary line to docstrings. Add cross-references.
fa472906 6300
ff4871b9
GM
63012013-06-10 Glenn Morris <rgm@gnu.org>
6302
6303 * epa.el (epa-read-file-name): New function. (Bug#14510)
6304 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
6305
04fcf1b0
AG
63062013-06-09 Aidan Gauland <aidalgol@amuri.net>
6307
6308 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
6309 output redirection to be ignored with visual commands.
6310
88b00caa
AG
63112013-06-09 Aidan Gauland <aidalgol@amuri.net>
6312
6313 * eshell/em-term.el (eshell-visual-command-p): New function.
f71b3317
AG
6314 (eshell-term-initialize): Move long lambda to separate function
6315 eshell-visual-command-p.
e7b41c4c
JB
6316 * eshell/em-dirs.el (eshell-dirs-initialise):
6317 * eshell/em-script.el (eshell-script-initialize):
6318 Add missing #' to lambda.
88b00caa 6319
fda74125
LL
63202013-06-08 Leo Liu <sdl.web@gmail.com>
6321
6322 * progmodes/octave.el (octave-add-log-current-defun): New function.
6323 (octave-mode): Set add-log-current-defun-function.
6324 (octave-goto-function-definition): Do not move point if not found.
6325 (octave-find-definition): Enhance to try subfunctions first.
6326
467f3b33
GM
63272013-06-08 Glenn Morris <rgm@gnu.org>
6328
6329 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6330 (byte-compile-backward-char, byte-compile-backward-word):
6331 Improve previous change, to handle non-explicit nil.
6332
544badc3
SM
63332013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6334
6335 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
6336 (smie--opener/closer-at-point): New function.
6337 (smie--matching-block-data): Use it. Don't match from right after an
6338 opener or right before a closer. Obey smie-blink-matching-inners.
6339 Don't signal a mismatch for repeated inners like "switch..case..case".
6340
a175bf33
LL
63412013-06-07 Leo Liu <sdl.web@gmail.com>
6342
6343 * progmodes/octave.el (octave-mode): Set comment-use-global-state
6344 to t. (Bug#14303)
ce8209d4
LL
6345 (octave-function-header-regexp): Fix. (Bug#14570)
6346 (octave-help-mode-finish-hook, octave-help-mode-finish):
6347 Remove. Just use temp-buffer-show-hook.
a175bf33
LL
6348
6349 * newcomment.el (comment-search-backward): Revert last change.
6350 (Bug#14434)
6351
6352 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
6353
a822acff
EZ
63542013-06-07 Eli Zaretskii <eliz@gnu.org>
6355
6356 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
6357 through xargs, to avoid failure due to MS-Windows limitations on
6358 command-line length.
6359
961166f5
GM
63602013-06-06 Glenn Morris <rgm@gnu.org>
6361
d0341459
GM
6362 * font-lock.el (lisp-font-lock-keywords-2):
6363 Treat user-error like error.
6364
961166f5
GM
6365 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6366 (byte-compile-backward-char, byte-compile-backward-word):
6367 Handle explicit nil arguments. (Bug#14565)
6368
80fa505f
AM
63692013-06-05 Alan Mackenzie <acm@muc.de>
6370
6371 * isearch.el (isearch-allow-prefix): New user option.
d2bf7a98 6372 (isearch-other-meta-char): Don't exit isearch when a prefix
80fa505f 6373 argument is typed whilst `isearch-allow-prefix' is non-nil.
d2bf7a98 6374 (Bug#9706)
80fa505f 6375
fccdc796
SM
63762013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6377
6378 * autorevert.el (auto-revert-notify-handler): Use memq.
6379 Hide assertion failure.
6380
6381 * skeleton.el: Use cl-lib.
6382 (skeleton-further-elements): Use defvar-local.
6383 (skeleton-insert): Use cl-progv.
6384
9bfff84b
TZ
63852013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6386
6387 * progmodes/prog-mode.el (prog-prettify-symbols)
6388 (prog-prettify-install): Update docstrings.
6389
55577e7c
SM
63902013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6391
6392 * simple.el: Move all the prog-mode code to prog-mode.el.
6393 * progmodes/prog-mode.el: New file.
6394 * loadup.el: Add prog-mode.el.
6395
8fc57765
TZ
63962013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6397
6398 * simple.el (prog-prettify-symbols): Add version.
6399 (prog-prettify-install): Add convenience function to prettify symbols.
6400
6401 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
6402 (perl--augmented-font-lock-keywords-1)
6403 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
6404 variables and use it.
6405
6406 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6407 (cfengine3-mode): Remove unneeded variable and use it.
6408
6409 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6410 (lisp--augmented-font-lock-keywords-1)
6411 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
6412 Remove unneeded variables and use it.
6413
650645d5 64142013-06-05 João Távora <joaotavora@gmail.com>
28f5da6d
TZ
6415
6416 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
650645d5 6417 to point when opening the connection. (Bug#14380)
28f5da6d 6418
781b4af6
SM
64192013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6420
6421 * subr.el (load-history-regexp, load-history-filename-element)
6422 (eval-after-load, after-load-functions, do-after-load-evaluation)
6423 (eval-next-after-load, display-delayed-warnings)
6424 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
6425 definition of save-match-data.
6426 (overriding-local-map): Remove accidental obsolescence declaration.
6427
6428 * emacs-lisp/edebug.el (edebug-result): Move before first use.
6429
3ca0d0b4
TZ
64302013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6431
6432 Generalize symbol prettify support to prog-mode and implement it
6433 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
6434 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
6435 (prog--prettify-font-lock-compose-symbol)
6436 (prog-prettify-font-lock-symbols-keywords): New variables and
6437 functions to support symbol prettification.
6438 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6439 (lisp--augmented-font-lock-keywords-1)
6440 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
6441 (lisp--prettify-symbols-alist): Implement prettify of lambda.
6442 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
781b4af6
SM
6443 (cfengine3--prettify-symbols-alist, cfengine3-mode):
6444 Implement prettify of -> => :: strings.
3ca0d0b4
TZ
6445 * progmodes/perl-mode.el (perl-prettify-symbols)
6446 (perl--font-lock-compose-symbol)
6447 (perl--font-lock-symbols-keywords): Move to prog-mode.
6448 (perl--prettify-symbols-alist): Prettify -> => :: strings.
6449 (perl-font-lock-keywords-1)
6450 (perl-font-lock-keywords-2): Remove explicit prettify support.
6451 (perl--augmented-font-lock-keywords)
6452 (perl--augmented-font-lock-keywords-1)
781b4af6
SM
6453 (perl--augmented-font-lock-keywords-2, perl-mode):
6454 Implement prettify support.
3ca0d0b4 6455
976cb066
LL
64562013-06-05 Leo Liu <sdl.web@gmail.com>
6457
6458 Re-implement smie matching block highlight using
6459 show-paren-data-function. (Bug#14395)
6460 * emacs-lisp/smie.el (smie-matching-block-highlight)
6461 (smie--highlight-matching-block-overlay)
6462 (smie--highlight-matching-block-lastpos)
6463 (smie-highlight-matching-block)
6464 (smie-highlight-matching-block-mode): Remove.
6465 (smie--matching-block-data-cache): New variable.
6466 (smie--matching-block-data): New function.
6467 (smie-setup): Use smie--matching-block-data for
6468 show-paren-data-function.
6469
6470 * progmodes/octave.el (octave-mode-menu): Fix.
6471 (octave-find-definition): Skip garbage lines.
6472
208d0342
SM
64732013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6474
6475 Fix compilation error with simultaneous dynamic+lexical scoping.
6476 Add warning when a defvar appears after the first let-binding.
6477 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
6478 (byte-compile-close-variables): Initialize it.
6479 (byte-compile--declare-var): New function.
6480 (byte-compile-file-form-defvar)
6481 (byte-compile-file-form-define-abbrev-table)
6482 (byte-compile-file-form-custom-declare-variable): Use it.
6483 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
6484 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
6485 (byte-compile-bind): Handle dynamic bindings that shadow
6486 lexical bindings.
6487 (byte-compile-unbind): Make arg non-optional.
6488 (byte-compile-let): Simplify.
6489 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
6490 (cconv--analyse-function, cconv-analyse-form): Populate it.
6491 Protect byte-compile-bound-variables to limit the scope of defvars.
6492 (cconv-analyse-form): Add missing rule for (defvar <foo>).
6493 Remove unneeded rule for `declare'.
6494
6495 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
6496 so as to avoid depending on cl-adjoin at run-time.
6497 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
6498
6499 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
6500 (macroexp--warn-and-return): Use it.
6501
2587b005
LL
65022013-06-05 Leo Liu <sdl.web@gmail.com>
6503
6504 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
6505
f1da3c88
LL
65062013-06-04 Leo Liu <sdl.web@gmail.com>
6507
6508 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
6509 (compilation-auto-jump): Suppress the "Mark set" message to give
6510 way to exit message.
6511
3caa391f
AM
65122013-06-04 Alan Mackenzie <acm@muc.de>
6513
6514 Remove faulty optimisation from indentation calculation.
6515 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
6516 search limit based on 2000 characters back from indent-point.
6517
068922a2
TH
65182013-06-03 Tassilo Horn <tsdh@gnu.org>
6519
6520 * eshell/em-term.el (cl-lib): Require `cl-lib'.
6521
1f8fdd53
SM
65222013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6523
bbcc4d97
SM
6524 * emacs-lisp/lisp.el: Use lexical-binding.
6525 (lisp--local-variables-1, lisp--local-variables): New functions.
6526 (lisp--local-variables-completion-table): New var.
208d0342 6527 (lisp-completion-at-point): Use it complete let-bound vars.
bbcc4d97 6528
1f8fdd53
SM
6529 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
6530 eagerly (bug#14422).
6531
c9628c79
MA
65322013-06-03 Michael Albinus <michael.albinus@gmx.de>
6533
6534 * autorevert.el (auto-revert-notify-enabled)
6535 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
6536 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
6537 (auto-revert-notify-handler): Handle also gfilenotify.
6538
e7b41c4c 6539 * subr.el (file-notify-handle-event): New defun. Replacing ...
c9628c79 6540 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
781b4af6 6541 Remove.
c9628c79 6542
e5e4a942
JL
65432013-06-03 Juri Linkov <juri@jurta.org>
6544
6545 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
6546 `M-s h .'. (Bug#14427)
6547
6548 * hi-lock.el (highlight-symbol-at-point): New alias for the new
6549 command `hi-lock-face-symbol-at-point'.
6550 (hi-lock-face-symbol-at-point): New command.
6551 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
6552 (hi-lock-menu): Add `highlight-symbol-at-point'.
6553 (hi-lock-mode): Doc fix.
6554
6555 * isearch.el (isearch-forward-symbol-at-point): New command.
6556 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
6557 (isearch-highlight-regexp): Add a regexp which matches
6558 words/symbols for word/symbol mode.
6559
6560 * subr.el (find-tag-default-bounds): New function with the body
6561 mostly moved from `find-tag-default'.
6562 (find-tag-default): Move most code to `find-tag-default-bounds',
6563 call it and apply `buffer-substring-no-properties' afterwards.
6564
26b3353a
TH
65652013-06-03 Tassilo Horn <tsdh@gnu.org>
6566
781b4af6
SM
6567 * eshell/em-term.el (eshell-term-initialize):
6568 Use `cl-intersection' rather than `intersection'.
26b3353a 6569
51b60f53
XF
65702013-06-02 Xue Fuqiao <xfq.free@gmail.com>
6571
fe054b63 6572 * vc/log-view.el: Doc fix.
d3ffe17c 6573 (log-view-mode-map): Copy keymap from `special-mode-map'.
51b60f53 6574
a0eb10b3 65752013-06-02 Eric Ludlam <zappo@gnu.org>
890f7890
DE
6576
6577 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
6578 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
6579 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
6580 (eieio-unbound, eieio-default-superclass)
6581 (eieio--define-field-accessors, method-static, method-before)
6582 (method-primary, method-after, method-num-lists)
6583 (method-generic-before, method-generic-primary)
6584 (method-generic-after, method-num-slots)
6585 (eieio-specialized-key-to-generic-key)
6586 (eieio--check-type, class-v, class-p)
6587 (eieio-class-name, define-obsolete-function-alias)
6588 (eieio-class-parents-fast, eieio-class-children-fast)
6589 (same-class-fast-p, class-constructor, generic-p)
6590 (generic-primary-only-p, generic-primary-only-one-p)
6591 (class-option-assoc, class-option, eieio-object-p)
6592 (class-abstract-p, class-method-invocation-order)
6593 (eieio-defclass-autoload-map, eieio-defclass-autoload)
6594 (eieio-class-un-autoload, eieio-defclass)
6595 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
6596 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
6597 (eieio--defgeneric-init-form, eieio-defgeneric-form)
6598 (eieio-defgeneric-reset-generic-form)
6599 (eieio-defgeneric-form-primary-only)
6600 (eieio-defgeneric-reset-generic-form-primary-only)
6601 (eieio-defgeneric-form-primary-only-one)
6602 (eieio-defgeneric-reset-generic-form-primary-only-one)
6603 (eieio-unbind-method-implementations)
6604 (eieio--defmethod, eieio--typep)
6605 (eieio-perform-slot-validation, eieio-validate-slot-value)
6606 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
6607 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
6608 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
6609 (eieio-slot-name-index, eieio-class-slot-name-index)
6610 (eieio-set-defaults, eieio-initarg-to-attribute)
6611 (eieio-attribute-to-initarg, eieio-c3-candidate)
6612 (eieio-c3-merge-lists, eieio-class-precedence-c3)
6613 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
6614 (eieio-class-precedence-list, eieio-generic-call-methodname)
6615 (eieio-generic-call-arglst, eieio-generic-call-key)
6616 (eieio-generic-call-next-method-list)
6617 (eieio-pre-method-execution-functions, eieio-generic-call)
6618 (eieio-generic-call-primary-only, eieiomt-method-list)
6619 (eieiomt-optimizing-obarray, eieiomt-install)
6620 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6621 (eieio-generic-form, eieio-defmethod, make-obsolete)
4f405069 6622 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
890f7890
DE
6623 (defclass): Remove `eval-and-compile' from macro.
6624 (call-next-method, shared-initialize): Instead of using
6625 `scoped-class' variable, use new eieio--scoped-class, and
6626 eieio--with-scoped-class.
6627 (initialize-instance): Rename local variable 'scoped-class' to
6628 'this-class' to remove ambiguitity from old global.
6629
6630 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6631 eieio.el.
4f405069
JB
6632 (eieio--scoped-class-stack): New variable.
6633 (eieio--scoped-class): New fcn.
890f7890
DE
6634 (eieio--with-scoped-class): New scoping macro.
6635 (eieio-defclass): Use pushnew instead of add-to-list.
6636 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6637 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6638 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6639 `scoped-class' variable, use new eieio--scoped-class, and
6640 eieio--with-scoped-class.
6641
6642 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6643
d105b0e2
TH
66442013-06-02 Tassilo Horn <tsdh@gnu.org>
6645
6646 * eshell/esh-ext.el (eshell-external-command): Pass args to
6647 `eshell-find-interpreter'.
6648 (eshell-find-interpreter): Add new second parameter ARGS.
6649
6650 * eshell/em-script.el (eshell-script-initialize): Add second arg
e7b41c4c 6651 to the function added as MATCH to `eshell-interpreter-alist'.
d105b0e2
TH
6652
6653 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
e7b41c4c 6654 the function added as MATCH to `eshell-interpreter-alist'.
d105b0e2
TH
6655
6656 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6657 (eshell-visual-options): New defcustom.
6658 (eshell-escape-control-x): Adapt docstring.
6659 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6660 `eshell-visual-options' in addition to `eshell-visual-commands'.
6661 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6662
f46305c8 66632013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
f782d531
FEG
6664
6665 * progmodes/python.el (python-indent-block-enders): Add break,
6666 continue and raise keywords.
6667
d870df21
GM
66682013-06-01 Glenn Morris <rgm@gnu.org>
6669
9133b82e
GM
6670 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6671
02c992ec 6672 Plain (f)boundp silences compilation warnings since Emacs 22.1.
683853b9
GM
6673 * progmodes/cc-cmds.el (delete-forward-p):
6674 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6675 * progmodes/cc-engine.el (buffer-syntactic-context):
6676 * progmodes/cc-fonts.el (face-property-instance):
6677 * progmodes/cc-mode.el (set-keymap-parents):
6678 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6679 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6680 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
02c992ec
GM
6681 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6682 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
683853b9 6683
31e7b090
GM
6684 * progmodes/cc-vars.el (other): Emacs has this widget since
6685 at least 21.1, so don't (re)define it.
6686
d870df21
GM
6687 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6688 Replace the obsolete alias pcomplete-arg-quote-list.
6689
c75c93c7
LL
66902013-06-01 Leo Liu <sdl.web@gmail.com>
6691
6692 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6693 punctuation syntax.
6694 (inferior-octave-minimal-columns)
6695 (inferior-octave-last-column-width): New variables.
6696 (inferior-octave-track-window-width-change): New function.
6697 (inferior-octave-mode): Adjust column width so that Octave output,
6698 for example from 'ls', can fit into the window nicely.
6699
973d1e12
DG
67002013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6701
6702 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6703 Highlight expansions inside regexp literals.
6704
0888c286
GM
67052013-05-31 Glenn Morris <rgm@gnu.org>
6706
e26aac1f
GM
6707 * obsolete/sym-comp.el (symbol-complete):
6708 Replace obsolete completion-annotate-function.
6709
0888c286
GM
6710 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6711
19bb8e62
DG
67122013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6713
781b4af6
SM
6714 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6715 New function, checks if point is inside a literal that allows
19bb8e62
DG
6716 expression expansion.
6717 (ruby-syntax-propertize-expansion): Use it.
6718 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6719 around the body.
6720
01dea85f
JL
67212013-05-30 Juri Linkov <juri@jurta.org>
6722
6723 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6724 to "\M-si".
6725 (isearch-invisible): New variable.
6726 (isearch-forward): Doc fix.
6727 (isearch-mode): Set `isearch-invisible'
6728 to the value of `search-invisible'.
6729 (isearch-toggle-case-fold): Doc fix.
6730 (isearch-toggle-invisible): New command.
6731 (isearch-query-replace): Let-bind `search-invisible'
6732 to the value of `isearch-invisible'.
6733 (isearch-search): Use `isearch-invisible' instead of
6734 `search-invisible'. Let-bind `search-invisible'
6735 to the value of `isearch-invisible'. (Bug#11378)
6736
ab1bdce5
JL
67372013-05-30 Juri Linkov <juri@jurta.org>
6738
6739 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6740 call when `query-flag' is nil and `search-invisible' is non-nil.
6741 (Bug#11746)
6742
d6d236e2
GM
67432013-05-30 Glenn Morris <rgm@gnu.org>
6744
8accd027
GM
6745 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6746
2a8bed1c
GM
6747 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6748 (cc-require): Suppress spurious "noruntime" warnings.
6749 (cc-require-when-compile): Use fboundp, for sake of compiler.
6750
d6d236e2
GM
6751 * progmodes/cc-mode.el: Move load of cc-vars before that of
6752 cc-langs (which in turn loads cc-vars), to quieten compiler.
6753
9190b35b
SM
67542013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6755
6756 * paren.el: Simplify the code.
6757 (show-paren-mode): Always start the timer.
6758 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6759 (show-paren--overlay, show-paren--overlay-1): Rename from
6760 show-paren-overlay and show-paren-overlay-1, and initialize to an
6761 overlay rather than to nil.
6762 (show-paren-function): Misc cleanup and simplifications.
6763
4f8d1cf6
SM
67642013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6765
6766 * paren.el (show-paren-data-function): New hook.
6767 (show-paren--default): New function, extracted from show-paren-function.
6768 (show-paren-function): Use show-paren-data-function.
6769
02d844b5
GM
67702013-05-30 Glenn Morris <rgm@gnu.org>
6771
d209d4a9
GM
6772 * ielm.el (ielm-map, ielm-complete-symbol):
6773 Use completion-at-point rather than obsolete functions.
6774 (inferior-emacs-lisp-mode): Doc fix.
6775 Set completion-at-point-functions, rather than
6776 comint-dynamic-complete-functions.
6777
2082faa6
GM
6778 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6779 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6780 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6781
dd8620de
GM
6782 * image.el (image-animated-p): Tweak definition.
6783
ceca95b1
GM
6784 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6785 (rlogin-process-connection-type): Tweak default. Add set-after.
6786 (rlogin-host): Doc fix.
6787 (rlogin): Tweak prompt.
6788 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6789
ee9f1acc
GM
6790 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6791 * progmodes/tcl.el (inferior-tcl-mode-map):
6792 Use completion-at-point rather than obsolete alias.
6793
45ce222e
GM
6794 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6795
02d844b5
GM
6796 * minibuffer.el (read-file-name-completion-ignore-case):
6797 Move before completion--in-region, for eager macro expansion.
6798
ac44d6c1
JL
67992013-05-29 Juri Linkov <juri@jurta.org>
6800
6801 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6802 for total count of matching lines. Add `global-matches' for total
6803 count of matches. Rename `matches' to `lines' for count of
6804 matching lines. Add `matches' for count of matches.
6805 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6806 to `prev-line' for line number of prev match endpt.
6807 Increment `matches' for every match. Print the number of
6808 matching lines in the header.
6809 (occur-context-lines): Rename `lines' to `curr-line'.
6810 Rename `prev-lines' to `prev-line'. (Bug#14017)
6811
3c9c9d38
JL
68122013-05-29 Juri Linkov <juri@jurta.org>
6813
6814 * replace.el (perform-replace): Add `skip-read-only-count',
6815 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6816 Increment them for corresponding conditions and report the number
6817 of skipped occurrences in the final message. (Bug#11746)
6818 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6819 (replace-string, replace-regexp): Doc fix.
6820
33e249a2
SM
68212013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6822
8e399682
SM
6823 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6824
33e249a2 6825 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
781b4af6 6826 prog-mode-map (bug#14504).
33e249a2 6827
f236dd84
LL
68282013-05-29 Leo Liu <sdl.web@gmail.com>
6829
6830 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6831 (octave-help): Small simplification.
6832
6833 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6834 off the highlight first.
6835
3694d13f
GM
68362013-05-29 Glenn Morris <rgm@gnu.org>
6837
03983bdc
GM
6838 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6839 Handle idlwave-last-system-routine-info-cons-cell being nil.
6840
bc74a74a
GM
6841 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6842 (idlwave-write-paths): Simplify via with-temp-buffer.
6843
8b394200
GM
6844 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6845 * emulation/cua-rect.el: Also load cua-base at run time.
6846
3694d13f
GM
6847 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6848 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6849 (cperl-imenu-on-info): Require imenu.
6850
336d7284
AM
68512013-05-28 Alan Mackenzie <acm@muc.de>
6852
6853 Handle "capitalised keywords" correctly.
33e249a2 6854 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
336d7284 6855
cb29c582
AG
68562013-05-28 Aidan Gauland <aidalgol@amuri.net>
6857
781b4af6 6858 * eshell/em-unix.el: Add -r option to cp.
cb29c582 6859
690e44b2
GM
68602013-05-28 Glenn Morris <rgm@gnu.org>
6861
e658d75c
GM
6862 * vc/vc-arch.el (vc-exec-after): Declare.
6863 (vc-switches): Autoload.
6864 * vc/vc-bzr.el: No need to require vc when compiling.
6865 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6866 (vc-resynch-buffer, vc-dir-refresh): Declare.
6867 (vc-setup-buffer, vc-switches): Autoload.
712b9732
GM
6868 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6869 (vc-resynch-buffer): Declare.
6870 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
e658d75c 6871 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
712b9732
GM
6872 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6873 (grep-read-regexp, grep-read-files, grep-expand-template)
6874 (vc-dir-refresh): Declare.
6875 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6876 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6877 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
e658d75c
GM
6878 * vc/vc-mtn.el (vc-exec-after): Declare.
6879 (vc-switches): Autoload.
6880 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6881 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6882 (vc-file-tree-walk): Declare.
712b9732
GM
6883 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
6884 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
6885 (vc-tag-precondition, vc-rename-master): Autoload.
e658d75c
GM
6886 * vc/vc-svn.el (vc-exec-after): Declare.
6887 (vc-switches, vc-setup-buffer): Autoload.
6888 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6889 Autoload.
6890 (vc-resynch-buffer): Declare.
6891
98e87fb3
GM
6892 * obsolete/fast-lock.el (byte-compile-warnings):
6893 Don't warn about obsolete features in this obsolete file.
6894
f5379553
GM
6895 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6896 Move definition before use.
6897
7a20ef83
GM
6898 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6899 (dun-unix-verbs): Remove dun-zippy.
6900 (dun-zippy): Remove function.
6901
690e44b2
GM
6902 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6903
3a52ccf7
JL
69042013-05-27 Juri Linkov <juri@jurta.org>
6905
6906 * replace.el (replace-search): New function with code moved out
6907 from `perform-replace'.
6908 (replace-highlight, replace-dehighlight): Move function definitions
6909 up closer to `replace-search'. (Bug#11746)
6910
d289938a
JL
69112013-05-27 Juri Linkov <juri@jurta.org>
6912
6913 * replace.el (perform-replace): Ignore invisible matches.
6914 In addition to checking `query-replace-skip-read-only', also
6915 filter out matches by calling `run-hook-with-args-until-failure'
6916 on `isearch-filter-predicates', and also check `search-invisible'
6917 for t or call `isearch-range-invisible'.
6918 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
6919
66fc57e3
JL
69202013-05-27 Juri Linkov <juri@jurta.org>
6921
6922 * isearch.el (isearch-filter-predicates): Rename from
6923 `isearch-filter-predicate'. Doc fix. (Bug#11378)
6924 (isearch-message-prefix): Display text from the property
6925 `isearch-message-prefix' of the currently active filters.
6926 (isearch-search): Don't compare `isearch-filter-predicate' with
6927 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
6928 on `isearch-filter-predicates'. Also check `search-invisible' for t
6929 or call `isearch-range-invisible'.
6930 (isearch-filter-visible): Make obsolete.
6931 (isearch-lazy-highlight-search):
6932 Call `run-hook-with-args-until-failure' on
6933 `isearch-filter-predicates' and use `isearch-range-invisible'.
6934
6935 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
6936 `isearch-filter-predicates' instead of `funcall'ing
6937 `isearch-filter-predicate'.
6938 (Info-mode): Set `Info-isearch-filter' to
6939 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
6940
6941 * dired-aux.el (dired-isearch-filter-predicate-orig):
6942 Remove variable.
6943 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
6944 (dired-isearch-filenames-end): Add and remove
6945 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
6946 instead of changing the value of `isearch-filter-predicate'.
6947 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
6948 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
6949 Put property `isearch-message-prefix' to "filename " on
6950 `dired-isearch-filter-filenames'.
6951
6952 * wdired.el (wdired-change-to-wdired-mode):
6953 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
6954 locally instead of changing `isearch-filter-predicate'.
6955 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
6956
f1a60a0f
DG
69572013-05-27 Dmitry Gutov <dgutov@yandex.ru>
6958
6959 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
6960 return the commit hash (Bug#14459). Also set the
6961 `vc-git-detached' property.
6962 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
6963 (vc-git-mode-line-string): Use the same help-echo format whether
6964 in detached mode or not, because we know the actual revision now.
6965 When in detached mode, shorten the revision to 7 chars.
6966
7f17cc40
SM
69672013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6968
6969 * emacs-lisp/easy-mmode.el (define-minor-mode):
6970 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
6971 mode hook and provide a docstring.
6972
25c8401c
AM
69732013-05-27 Alan Mackenzie <acm@muc.de>
6974
6975 Remove spurious syntax-table text properties inserted by C-y.
6976 * progmodes/cc-mode.el (c-after-change): Also clear hard
6977 syntax-table property with value nil.
6978
dde84790
MA
69792013-05-27 Michael Albinus <michael.albinus@gmx.de>
6980
6981 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
6982 when reading the events; the buffer layout shall not be changed.
6983
837fd9af
LL
69842013-05-27 Leo Liu <sdl.web@gmail.com>
6985
6986 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
6987 New variable.
6988 (inferior-octave-directory-tracker): Automatically re-sync
6989 default-directory.
6990 (octave-help): Improve handling of 'See also'.
6991
4fd996b3
SM
69922013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6993
416f1802
SM
6994 * doc-view.el: Minor naming convention tweaks.
6995 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
6996
4fd996b3
SM
6997 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
6998 even if there's no `display' property yet (bug#14435).
6999
a052ef3b
EZ
70002013-05-25 Eli Zaretskii <eliz@gnu.org>
7001
4fd996b3 7002 * subr.el (unmsys--file-name): Rename from reveal-filename.
a052ef3b
EZ
7003
7004 * Makefile.in (custom-deps, finder-data, autoloads)
7005 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7006 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7007 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
7008
c9023370
SM
70092013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7010
7011 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
7012 error-completion on the first 2 args of condition-case (bug#14446).
df76dacb 7013 Don't burp at EOB.
c9023370 7014
24d699fa
LL
70152013-05-25 Leo Liu <sdl.web@gmail.com>
7016
7017 * comint.el (comint-previous-matching-input): Do not flood the
7018 *Messages* buffer with trivial messages.
7019
17e5c0cc
SM
70202013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7021
7022 * progmodes/flymake.el (flymake-nop): Don't return a string.
7023 (flymake-set-at): Fix typo.
7024
7025 * simple.el (read--expression): New function, extracted from
7026 eval-expression. Set completion-at-point-functions (bug#14465).
7027 (eval-expression, eval-minibuffer): Use it.
7028
5d028165
XF
70292013-05-25 Xue Fuqiao <xfq.free@gmail.com>
7030
7031 * progmodes/flymake.el (flymake-save-buffer-in-file)
7032 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
7033 (flymake-selected-frame, flymake-log, flymake-ins-after)
7034 (flymake-set-at, flymake-get-buildfile-from-cache)
7035 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
7036 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
7037 Refine the doc string.
7038 (flymake-get-file-name-mode-and-masks): Reformat.
7039 (flymake-get-real-file-name-function): Fix a minor bug.
7040
7a1d7ba7
JL
70412013-05-24 Juri Linkov <juri@jurta.org>
7042
7043 * progmodes/grep.el (grep-mode-font-lock-keywords):
7044 Support =linenumber= format used by git-grep for lines with
7045 function names. (Bug#13549)
7046
650cff3d
SM
70472013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7048
7049 * progmodes/octave.el (octave-smie-rules): Return nil rather than
7050 0 after a semi-colon; it works better for smie-auto-fill.
7051 (octave--indent-new-comment-line): New function.
7052 (octave-indent-new-comment-line): Use it (indirectly).
7053 (octave-mode): Don't disable smie-auto-fill. Use add-function to
7054 modify comment-line-break-function.
7055
7056 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
7057 (smie-setup): Use add-function to set it.
7058
9631677d
SS
70592013-05-24 Sam Steingold <sds@gnu.org>
7060
7061 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
7062 argument (before the `interactive' argument).
7063
50105835
SM
70642013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7065
7066 * image-mode.el (image-mode-winprops): Add winprops to
7067 image-mode-winprops-alist before running
7068 image-mode-new-window-functions.
7069 * doc-view.el (doc-view-new-window-function): Don't delay
7070 doc-view-goto-page via timers (bug#14435).
7071
57b9823e
TH
70722013-05-24 Tassilo Horn <tsdh@gnu.org>
7073
7074 * doc-view.el: Integrate with desktop.el. (Bug#14435)
7075 (doc-view-desktop-save-buffer): New function.
7076 (doc-view-restore-desktop-buffer): New function.
50105835
SM
7077 (desktop-buffer-mode-handlers):
7078 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
57b9823e
TH
7079 handler.
7080 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
7081 `desktop-save-buffer' function.
7082
91aafa16
MA
70832013-05-24 Michael Albinus <michael.albinus@gmx.de>
7084
7085 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
7086 (tramp-gvfs-file-name-handler): Raise a user error when
7087 `tramp-gvfs-enabled' is nil.
7088 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
7089 Do not raise a user error when loading package. (Bug#14447)
7090
ec076379
MA
7091 * net/xesam.el: Move to obsolete/.
7092
db785726
GM
70932013-05-24 Glenn Morris <rgm@gnu.org>
7094
af5c7606
GM
7095 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
7096
e5d1916a
GM
7097 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
7098
ded62b08
GM
7099 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
7100 (Info-find-node, Man-getpage-in-background): Declare.
7101
9e614a3f
GM
7102 * mail/unrmail.el (unrmail):
7103 Replace obsolete detect-coding-with-priority.
7104
892f8ca3
GM
7105 * net/socks.el (socks-split-string): Use this rather than split-string.
7106 (socks-nslookup-host): Update for above change.
7107 (dynamic-choice, s5-dynamic-choice-match)
7108 (s5-dynamic-choice-match-inline, s5-widget-value-create):
7109 Comment out unused code.
7110
3c291973
GM
7111 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
7112 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
7113 (gud-tooltip-echo-area): Make obsolete.
7114 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
7115
43cc956b
GM
7116 * progmodes/js.el (js--optimize-arglist): Declare.
7117
dab49a3b
GM
7118 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
7119
36b9d085
GM
7120 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
7121 (ediff-window-C): Declare.
7122
e354ae76
GM
7123 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
7124 Tweak requires to silence compiler.
7125
b8e57bf4
GM
7126 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
7127 (he-search-string, he-tried-table, he-expand-list)
7128 (he-init-string, he-string-member, he-substitute-string)
7129 (he-reset-string): Declare.
7130
db785726
GM
7131 * obsolete/options.el (list-options): Use custom-variable-p,
7132 rather than obsolete alias.
7133
b3531901
SS
71342013-05-23 Sam Steingold <sds@gnu.org>
7135
7136 * simple.el (shell-command-on-region): Pass the `replace' argument
db785726 7137 down to `call-process-region' to comply with the doc as reported on
b3531901
SS
7138 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
7139
bdda4c66
SM
71402013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7141
7142 * emacs-lisp/smie.el (smie-indent-forward-token)
7143 (smie-indent-backward-token): Handle string tokens (bug#14381).
7144
c43d45f9
TH
71452013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7146
fe1eb856
RS
7147 * ielm.el (ielm-menu): New menu.
7148 (inferior-emacs-lisp-mode): Set comment-start.
96172128 7149
fe1eb856
RS
71502013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7151
7152 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
7153 Fix deactivate action.
7154
7155 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
7156 Add cleveref macros.
074dd971 7157
c43d45f9
TH
7158 * lisp/textmodes/reftex-parse.el
7159 (reftex-locate-bibliography-files): Accept options for
7160 bibliography commands.
7161 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
7162 Add addbibresource. Basic Biblatex support.
7163
7764286e
MA
71642013-05-23 Michael Albinus <michael.albinus@gmx.de>
7165
7166 * net/tramp-gvfs.el (top):
7167 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
7168 when loading package. (Bug#14447)
7169
d361bc10
GM
71702013-05-23 Glenn Morris <rgm@gnu.org>
7171
8fa23984
GM
7172 * progmodes/js.el: No need to load comint when compiling.
7173 (ring-insert, comint-send-string, comint-send-input)
7174 (comint-last-input-end, ido-chop): Declare.
7175
a5c7df1a
GM
7176 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
7177 * vc/ediff-mult.el: Adjust requires.
7178 (ediff-directories-internal, ediff-directory-revisions-internal)
7179 (ediff-patch-file-internal): Declare.
7180 * vc/ediff-ptch.el: Adjust requires.
7181 (ediff-use-last-dir, ediff-buffers-internal): Declare.
7182 (ediff-find-file): Autoload.
7183 * vc/ediff-util.el: No need to load ediff when compiling.
7184 (ediff-regions-internal): Declare.
7185 * vc/ediff-wind.el: Adjust requires.
7186 (ediff-compute-toolbar-width): Define when compiling.
7187 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
7188 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
7189 (dired-get-filename, dired-get-marked-files)
7190 (ediff-last-dir-patch, ediff-patch-default-directory)
7191 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
7192 (ediff-patch-buffer-internal): Declare.
7193
e2aec513
GM
7194 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
7195 (ispell-process, ispell-buffer-local-words, lm-summary)
7196 (lm-section-start, lm-section-end): Declare.
7197 (checkdoc-ispell-init): Simplify.
7198
e68bbd7c
GM
7199 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
7200 (he-string-member, he-reset-string, he-substitute-string): Declare.
7201
7efe0991
GM
7202 * eshell/em-ls.el: Adjust requires.
7203 (eshell-glob-regexp): Declare.
f87b1284
GM
7204 * eshell/em-tramp.el: Adjust requires.
7205 (eshell-parse-command): Autoload.
7206 * eshell/em-xtra.el: Adjust requires.
7207 (eshell-parse-command): Autoload.
7208 * eshell/esh-ext.el: Adjust requires.
7209 (eshell-parse-command, eshell-close-handles): Autoload.
7210 * eshell/esh-io.el: Adjust requires.
7211 (eshell-output-filter): Autoload.
7212 * eshell/esh-util.el: No need to load tramp when compiling.
7213 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
7214 Declare.
7215 (eshell-parse-ange-ls): Require ange-ftp and tramp.
7216 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7217 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
7218 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
7219 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
7220 * eshell/esh-opt.el, eshell/esh-proc.el:
7221 * eshell/esh-var.el: Adjust requires.
7222 * eshell/eshell.el: Do not require esh-util twice.
7223 (eshell-add-input-to-history): Declare.
7224 (eshell-command): Check history module is active before using it.
7225
d361bc10
GM
7226 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
7227
85d090a9
LL
72282013-05-22 Leo Liu <sdl.web@gmail.com>
7229
7230 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
7231
5d0acd9d
MA
72322013-05-22 Michael Albinus <michael.albinus@gmx.de>
7233
7234 * autorevert.el (auto-revert-notify-add-watch)
7235 (auto-revert-notify-handler): Add `attrib' for the inotify case,
7236 it indicates changes in file modification time.
7237
0cdffd7d
GM
72382013-05-22 Glenn Morris <rgm@gnu.org>
7239
ca5995ec
GM
7240 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7241 Always delete the autoloaded function from the noruntime and
7242 unresolved functions lists.
7243
6450907e
GM
7244 * allout.el: No need to load epa, epg, overlay when compiling.
7245 (epg-context-set-passphrase-callback, epg-list-keys)
7246 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
7247 (epg-key-user-id-list): Declare.
7248
9c6906f6
GM
7249 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7250 (viper-set-parsing-style-toggling-macro)
7251 (viper-set-emacs-state-searchstyle-macros):
7252 Use called-interactively-p on Emacs.
7253 (viper-looking-back): Make it an obsolete alias. Update callers.
7254 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
7255 Use looking-back rather than viper-looking-back.
7256 (viper-tmp-insert-at-eob, viper-enlarge-region)
7257 (viper-read-string-with-history, viper-register-to-point)
7258 (viper-append-to-register, viper-change-state-to-vi)
7259 (viper-backward-char-carefully, viper-forward-char-carefully)
7260 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
7261 (viper-change-state-to-emacs): Declare.
7262 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
7263 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
7264 * emulation/viper-mous.el: Do not load viper-cmd.
7265 (viper-backward-char-carefully, viper-forward-char-carefully)
7266 (viper-forward-word, viper-adjust-window): Declare.
7267
5f70c169
GM
7268 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
7269
b1b7f300
GM
7270 * progmodes/idlw-help.el (idlwave-help-fontify):
7271 Use called-interactively-p.
7272
f6ebbb46
GM
7273 * term/w32console.el (w32-get-console-codepage)
7274 (w32-get-console-output-codepage): Declare.
7275
0cdffd7d
GM
7276 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
7277 Remove unnecessary declarations.
7278 (dframe-message): Doc fix.
7279
7280 * info.el (dframe-select-attached-frame, dframe-current-frame):
7281 Declare.
7282
7283 * speedbar.el (speedbar-message): Make it an obsolete alias.
7284 Update all callers.
7285 (speedbar-with-attached-buffer)
7286 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
7287 (speedbar-with-writable): Use backquote.
7288 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
7289 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
7290 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
7291 rather than speedbar- aliases.
7292 * mail/rmail.el: Load dframe rather than speedbar when compiling.
7293 (speedbar-make-specialized-keymap, speedbar-insert-button)
7294 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
7295 (speedbar-do-function-pointer): Declare.
7296 (rmail-speedbar-button, rmail-speedbar-find-file)
7297 (rmail-speedbar-move-message):
7298 Use dframe-with-attached-buffer rather than speedbar- alias.
7299 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
7300 (dframe-message, speedbar-make-specialized-keymap)
7301 (speedbar-add-expansion-list, speedbar-mode-functions-list)
7302 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
7303 (speedbar-insert-button, dframe-select-attached-frame)
7304 (dframe-maybee-jump-to-attached-frame)
7305 (speedbar-change-initial-expansion-list)
7306 (speedbar-previously-used-expansion-list-name): Declare.
7307 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
7308 Use dframe-message, dframe-with-attached-buffer rather than
7309 speedbar- aliases.
7310 (gud-sentinel): Silence compiler.
7311 * progmodes/vhdl-mode.el (speedbar-refresh)
7312 (speedbar-do-function-pointer, speedbar-add-supported-extension)
7313 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
7314 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
7315 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
7316 (speedbar-file-lists, speedbar-make-tag-line)
7317 (speedbar-line-directory, speedbar-goto-this-file)
7318 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
7319 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
7320 (speedbar-make-button, speedbar-reset-scanners)
7321 (speedbar-files-item-info, speedbar-line-text)
7322 (speedbar-find-file-in-frame, speedbar-set-timer)
7323 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
7324 (speedbar-with-writable): Do not (re)define it.
7325 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
7326 rather than speedbar- alias.
7327
ee44b62a
LL
73282013-05-21 Leo Liu <sdl.web@gmail.com>
7329
7330 * progmodes/octave.el (octave-mode-menu): Update and re-organize
7331 menu items.
7332 (octave-mode): Tweak fill-nobreak-predicate.
7333 (inferior-octave-startup): Check process to avoid infinite loop.
7334 (inferior-octave): Pop to buffer first to show abornmal process
7335 exit information.
7336
640f050f
GM
73372013-05-21 Glenn Morris <rgm@gnu.org>
7338
79458038
GM
7339 * printing.el (pr-menu-bar): Define when compiling.
7340
9cc3e83f
LL
73412013-05-21 Leo Liu <sdl.web@gmail.com>
7342
7343 * progmodes/octave.el (octave-auto-fill): Remove.
7344 (octave-indent-new-comment-line): Improve.
7345 (octave-mode): Use auto fill mode through
4f405069 7346 comment-line-break-function and fill-nobreak-predicate.
9cc3e83f 7347 (octave-goto-function-definition): Support DEFUN_DLD.
4f405069 7348 (octave-beginning-of-defun): Small tweak.
9cc3e83f
LL
7349 (octave-help): Show parent directory.
7350
f440830d
GM
73512013-05-21 Glenn Morris <rgm@gnu.org>
7352
7353 * files.el (dired-unmark):
7354 * progmodes/gud.el (gdb-input): Update declarations.
7355
7356 * calculator.el (electric, ehelp): No need to load when compiling.
7357 (Electric-command-loop, electric-describe-mode): Declare.
7358
7359 * doc-view.el (doc-view-current-converter-processes): Move before use.
7360
7361 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7362 Move MODE-set-explicitly definition before use.
7363
7364 * international/mule-diag.el (mule-diag):
7365 Don't use obsolete window-system-version.
7366
7367 * mail/feedmail.el (smtpmail): No need to load when compiling.
7368 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
7369
7370 * mail/mail-utils.el (rfc822): No need to load when compiling.
7371 (rfc822-addresses): Autoload it.
7372 (mail-strip-quoted-names): Trivial simplification.
7373
7374 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
7375 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
7376
7377 * net/snmp-mode.el (tempo): Don't duplicate requires.
7378
7379 * progmodes/prolog.el (info): No need to load when compiling.
7380 (comint): Require before shell requires it.
7381 (Info-goto-node): Autoload it.
7382 (Info-follow-nearest-node): Declare.
7383 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
7384
7385 * textmodes/artist.el (picture-mode-exit): Declare.
7386
7387 * textmodes/reftex-parse.el (reftex-parse-from-file):
7388 Trivial rewrite so the compiler can parse it better.
7389
b4da2cbb
LL
73902013-05-20 Leo Liu <sdl.web@gmail.com>
7391
7392 * progmodes/octave.el (octave-help-mode-map)
7393 (octave-help-mode-finish-hook): New variables.
7394 (octave-help-mode, octave-help-mode-finish): New functions.
7395 (octave-help): Use octave-help-mode.
7396
33c0f65b
GM
73972013-05-20 Glenn Morris <rgm@gnu.org>
7398
7399 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
7400
1a0a0a8a
DG
74012013-05-19 Dmitry Gutov <dgutov@yandex.ru>
7402
7403 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
7404 start at point, so that expansion starting right after opening
7405 slash in a regexp is recognized.
7406 (ruby-syntax-before-regexp-re): New defvar, extracted from
7407 ruby-syntax-propertize-function. Since the value of this regexp
7408 is looked up at runtime now, we should be able to turn
7409 `ruby-syntax-methods-before-regexp' into a defcustom later.
7410 (ruby-syntax-propertize-function): Split regexp matching into two
7411 parts, for opening and closing slashes. That allows us to skip
7412 over string interpolations and support multiline regexps.
7413 Don't call `ruby-syntax-propertize-expansions', instead use another rule
7414 for them, which calls `ruby-syntax-propertize-expansion'.
7415 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
7416 call to `ruby-syntax-propertize-function'.
7417 (ruby-syntax-propertize-expansion): Extracted from
7418 `ruby-syntax-propertize-expansions'. Handles one expansion.
1a0a0a8a
DG
7419 (ruby-syntax-propertize-percent-literal): Leave point right after
7420 the percent symbol, so that the expression expansion rule can
7421 propertize the contents.
462388b6
DG
7422 (ruby-syntax-propertize-heredoc): Leave point at bol following the
7423 heredoc openers.
7424 (ruby-syntax-propertize-expansions): Remove.
1a0a0a8a 7425
c1a6c0a4
JL
74262013-05-18 Juri Linkov <juri@jurta.org>
7427
7428 * man.el (Man-default-man-entry): Remove `-' from the end
7429 of the default value. (Bug#14400)
7430
8051fccd
GM
74312013-05-18 Glenn Morris <rgm@gnu.org>
7432
7433 * comint.el (comint-password-prompt-regexp):
7434 Allow "password for XXX" where XXX contains colons (eg https://...).
7435
5e80b74f
LL
74362013-05-18 Leo Liu <sdl.web@gmail.com>
7437
7438 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
f6f87d33 7439 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
5e80b74f
LL
7440 (octave-source-directories): Don't check process.
7441 (octave-source-directories, octave-find-definition): Doc fix.
7442
521a54c5
GM
74432013-05-18 Glenn Morris <rgm@gnu.org>
7444
86a94b05
GM
7445 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
7446 Remove backspace/delete bindings. (Bug#14392)
7447
521a54c5
GM
7448 * cus-dep.el (custom-make-dependencies): Sort the output.
7449 (custom-versions-load-alist): Convert comment to doc.
7450
42caeb89
LL
74512013-05-17 Leo Liu <sdl.web@gmail.com>
7452
7453 * newcomment.el (comment-search-backward): Stricter in finding
7454 comment start. (Bug#14303)
7455
7456 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
7457 (octave-comment-start-skip): Properly anchored.
7458
e219dd97
LL
74592013-05-17 Leo Liu <sdl.web@gmail.com>
7460
fe1eb856
RS
7461 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
7462 Clean up when turned off. (Bug#14395)
e219dd97
LL
7463 (smie--highlight-matching-block-overlay): No longer buffer-local.
7464 (smie-highlight-matching-block): Adjust.
7465
dc5dcb4b
PE
74662013-05-17 Paul Eggert <eggert@cs.ucla.edu>
7467
7468 Doc string fix for "nanoseconds" (Bug#14406).
7469 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
7470 Fix doc string typo that had "nanoseconds" instead of "microseconds".
7471
1db165f0
JB
74722013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
7473
7474 * calc/calc-units.el (math-extract-units): Preserve powers
7475 of units.
7476
c7a8fcac
LL
74772013-05-17 Leo Liu <sdl.web@gmail.com>
7478
7479 * subr.el (delete-consecutive-dups): New function.
7480 * ido.el (ido-set-matches-1): Use it.
7481 * progmodes/octave.el (inferior-octave-completion-table): Use it.
7482 * ido.el (ido-remove-consecutive-dups): Remove.
7483
f678b18a
SM
74842013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7485
7486 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
7487 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
7488 regexp-opt's `words'.
7489
ebfe68e8
LL
74902013-05-16 Leo Liu <sdl.web@gmail.com>
7491
7492 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
7493 (smie--highlight-matching-block-overlay)
7494 (smie--highlight-matching-block-lastpos)
7495 (smie--highlight-matching-block-timer): New variables.
7496 (smie-highlight-matching-block): New function.
7497 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
7498 (smie-setup): Conditionally enable smie-blink-matching-open.
7499
bc8bc17d
WS
75002013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
7501
7502 Sync with upstream verilog-mode r840.
7503 * progmodes/verilog-mode.el (verilog-mode-version)
7504 (verilog-mode-release-date): Update.
7505 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
7506 (verilog-sig-tieoff): Fix string error on
7507 AUTORESET with colon define, bug594. Reported by Andrew Hou.
7508 (verilog-read-decls): Fix parameters confusing
7509 AUTOINST interfaces, bug565. Reported by Leith Johnson.
7510
df065a0b
EZ
75112013-05-16 Eli Zaretskii <eliz@gnu.org>
7512
7513 * subr.el (reveal-filename): New function.
7514
7515 * loadup.el: Compute Emacs executable versions on MS-Windows,
7516 where executables have the .exe extension. Add a hard link
7517 emacs-XX.YY.ZZ.exe on MS-Windows.
7518
7519 * Makefile.in (XARGS_LIMIT): New variable.
7520 (custom-deps, finder-data, autoloads)
7521 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7522 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7523 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
7524 (compile-main): Limit xargs according to $(XARGS_LIMIT).
7525
2d4bf34b
LL
75262013-05-16 Leo Liu <sdl.web@gmail.com>
7527
7528 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
7529 (octave-mode-menu, octave-mode-map): Remove its uses.
7530
6b9c2d85
RZ
75312013-05-16 Reto Zimmermann <reto@gnu.org>
7532
7533 Sync with upstream vhdl mode v3.34.2.
7534 * progmodes/vhdl-mode.el: Use `push' throughout.
7535 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
7536 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
7537 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
7538 (vhdl-actual-generic-name): New option to derive actual generic name.
7539 (vhdl-port-paste-signals): Replace formal by actual generics.
7540 (vhdl-beautify): New name for old group vhdl-align. Update users.
7541 (vhdl-beautify-options): New option.
7542 (vhdl-last-input-event): New compat alias. Use throughout.
7543 (vhdl-goto-line): Replace user level function `goto-line'.
7544 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
7545 vhdl-fix-statement-buffer.
7546 (vhdl-create-mode-menu): Add some entries.
7547 (vhdl-align-region-groups): Respect vhdl-beautify-options.
7548 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
7549 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
7550 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
7551 to force statements on one line.
7552 (vhdl-remove-trailing-spaces-region):
7553 New, split from vhdl-remove-trailing-spaces.
7554 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
7555 Respect vhdl-beautify-options.
7556 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
7557 (vhdl-update-sensitivity-list): Not add with index if exists without.
7558 Not include array index with signal. Ignore keywords in comments.
7559 (vhdl-get-visible-signals): Regexp tweaks.
7560 (vhdl-template-component-inst): Handle empty library.
7561 (vhdl-template-type): Add template for 'enum' type.
7562 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
7563 Use vhdl-replace-string.
7564 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
7565 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
7566 (vhdl-speedbar-initialize): Update for above name change.
7567 (vhdl-compose-wire-components): Fix in handling of constants.
7568 (vhdl-error-regexp-emacs-alist): New variable.
7569 (vhdl-error-regexp-add-emacs): New function;
7570 adds support for new compile.el (Emacs 22+)
7571 (vhdl-generate-makefile-1): Change target order for single lib. units.
7572 Allow use of absolute file names.
7573
9df4ec5e
LL
75742013-05-16 Leo Liu <sdl.web@gmail.com>
7575
7576 * simple.el (prog-indent-sexp): Indent enclosing defun.
7577
f5ba00a6
GM
75782013-05-15 Glenn Morris <rgm@gnu.org>
7579
ed8be7ff
GM
7580 * cus-start.el (show-trailing-whitespace): Move to editing basics.
7581 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
7582 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
7583 (whitespace-highlight): Move to whitespace group.
7584
7585 * comint.el (comint-source):
7586 * pcmpl-linux.el (pcmpl-linux):
7587 * shell.el (shell-faces):
7588 * eshell/esh-opt.el (eshell-opt):
7589 * international/ccl.el (ccl): Remove empty custom groups.
7590
7591 * completion.el (dynamic-completion-mode):
7592 * jit-lock.el (jit-lock-debug-mode):
7593 * minibuffer.el (completion-in-region-mode):
7594 * type-break.el (type-break-mode-line-message-mode)
7595 (type-break-query-mode):
7596 * emulation/tpu-edt.el (tpu-edt-mode):
7597 * progmodes/subword.el (global-subword-mode, global-superword-mode):
7598 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7599 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
7600
7601 * term/xterm.el (xterm): Change parent group to terminals.
7602
7603 * master.el (master): Remove empty custom group.
7604 (master-mode): Remove unused :group argument.
7605 * textmodes/refill.el (refill): Remove empty custom group.
7606 (refill-mode): Remove unused :group argument.
7607
7608 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
7609
82a7c41b
GM
7610 * cus-dep.el: Provide a feature.
7611 (custom-make-dependencies): Ignore dotfiles (dir-locals).
f5ba00a6
GM
7612 Don't mistakenly ignore files whose basenames match a basename
7613 from preloaded-file-list (eg cedet/ede/simple.el).
82a7c41b 7614 Add a fallback method for getting :group.
f5ba00a6 7615
6d65486d
JL
76162013-05-15 Juri Linkov <juri@jurta.org>
7617
da547b32
JL
7618 * isearch.el (isearch-char-by-name): Rename from
7619 `isearch-insert-char-by-name'. Doc fix.
7620 (isearch-forward): Mention `isearch-char-by-name' in
7621 the docstring. (Bug#13348)
7622
6d65486d
JL
7623 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7624 `exit-minibuffer' instead of
7625 `isearch-nonincremental-exit-minibuffer'.
7626 (isearch-edit-string): Remove mention of
7627 `isearch-nonincremental-exit-minibuffer' from docstring.
7628 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7629 (isearch-forward-exit-minibuffer)
7630 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7631
c9990474
SM
76322013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7633
6e911150
SM
7634 * loadup.el: Just use unversioned DOC.
7635
c9990474
SM
7636 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7637 literals as extending to EOB.
7638 (nxml-last-fontify-end): Remove unused variable.
7639 (nxml-after-change1): Use with-silent-modifications.
7640 (nxml-extend-after-change-region): Simplify.
7641 (nxml-extend-after-change-region1): Remove function.
7642 (nxml-after-change1): Don't adjust for dependent regions.
7643 (nxml-fontify-matcher): Simplify.
7644 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7645 (xmltok-add-dependent): Remove function.
7646 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7647 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7648 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7649 unclosed <[[, <?, comment, and other literals as extending to EOB.
7650 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7651 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7652 Remove functions.
7653 (rng-do-some-validation-1): Don't mark dependent regions.
7654 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7655 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7656 (nxml-clear-dependent-regions): Remove functions.
7657 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7658 (nxml-ensure-scan-up-to-date):
7659 Don't clear&mark dependent regions.
7660
e3772e98
LL
76612013-05-15 Leo Liu <sdl.web@gmail.com>
7662
c9990474
SM
7663 * progmodes/octave.el (octave-goto-function-definition):
7664 Improve and fix callers.
e3772e98 7665
5ac2eb34
SM
76662013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7667
c46c57b0
SM
7668 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7669 the setter (bug#14387).
7670
5ac2eb34
SM
7671 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7672 surrounding group (bug#14402).
7673
180ed218
JL
76742013-05-14 Juri Linkov <juri@jurta.org>
7675
7676 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7677 (Bug#14390)
7678
0ac0fecb
GM
76792013-05-14 Glenn Morris <rgm@gnu.org>
7680
7681 * progmodes/f90.el (f90-imenu-generic-expression):
7682 Fix typo in 2013-05-08 change. (Bug#14402)
7683
2e78e6a7
JPG
76842013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7685
5ac2eb34
SM
7686 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7687 Remove signals for which replies are never received.
2e78e6a7 7688
53267cca
JPG
76892013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7690
7691 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7692 (gdb-handler-alist, gdb-handler-number): Remove variables.
7693 (gdb-handler-list): New variable.
7694 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7695 (gdb-pending-handler-p, gdb-handle-reply)
7696 (gdb-remove-all-pending-triggers): New functions.
7697 (gdb-discard-unordered-replies): New defcustom.
7698 (gdb-handler): New defstruct.
7699 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7700 instead of gdb-pending-triggers. Update docstring.
7701 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7702 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7703 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7704 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7705 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7706 (gdb-frame-handler): Pending triggers are now automatically managed.
7707 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7708 Remove argument.
7709 (gdb-input): Automatically handles pending triggers. Update docstring.
7710 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7711 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7712 Update comments.
7713 (gdb-done-or-error): Now use gdb-handle-reply.
7714
d04ce803
JPG
77152013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7716
7717 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7718 gdb-debug-log.
7719
0114073a
GM
77202013-05-14 Glenn Morris <rgm@gnu.org>
7721
7722 * subr.el (user-emacs-directory-warning): New option.
7723 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7724
4d25fd7e
LL
77252013-05-14 Leo Liu <sdl.web@gmail.com>
7726
7727 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7728 during redisplay.
7729 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
6073d8f4
LL
7730 (octave-font-lock-texinfo-comment): Fix invalid search bound
7731 error: wrong side of point.
4d25fd7e 7732
27c8b6eb
GM
77332013-05-14 Glenn Morris <rgm@gnu.org>
7734
61aaeb01
GM
7735 * progmodes/flymake.el (flymake-xml-program): New option.
7736 (flymake-xml-init): Use it.
7737
5bf90bc5
GM
7738 * term/xterm.el: Provide a feature.
7739
7740 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
27c8b6eb 7741
f4c7dfd2
GM
77422013-05-13 Glenn Morris <rgm@gnu.org>
7743
7744 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7745 Add compat aliases as a hack workaround. (Bug#14384)
7746
2aeb3a1d
LL
77472013-05-13 Leo Liu <sdl.web@gmail.com>
7748
b0e069c2
LL
7749 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7750 ###, and %!.
f5a9432f
LL
7751 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7752 C-M-q.
b0e069c2
LL
7753 (octave-comment-start-skip): Include %!.
7754 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
2aeb3a1d 7755
30ea8374
LL
77562013-05-12 Leo Liu <sdl.web@gmail.com>
7757
7758 * progmodes/octave.el (inferior-octave-startup): Store the value
7759 of __octave_srcdir__ for octave-source-directories.
7760 (inferior-octave-check-process): New function refactored out of
7761 inferior-octave-send-list-and-digest.
7762 (octave-source-directories)
7763 (octave-find-definition-filename-function): New variables.
7764 (octave-source-directories)
7765 (octave-find-definition-default-filename): New functions.
7766 (octave-find-definition): Improve to find functions implemented in C++.
7767
472a3834
GM
77682013-05-12 Glenn Morris <rgm@gnu.org>
7769
7770 * calendar/diary-lib.el (diary-outlook-format-1):
7771 Don't include dayname in the output. (Bug#14349)
7772
3191b52f
GM
77732013-05-11 Glenn Morris <rgm@gnu.org>
7774
0060ac73
GM
7775 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7776
3191b52f
GM
7777 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7778 Treat cc-provide like provide.
7779
e065ba74
KR
77802013-05-11 Kevin Ryde <user42@zip.com.au>
7781
7782 * cus-dep.el (custom-make-dependencies):
7783 Use generated-autoload-load-name for the sake of files such
7784 such cedet/semantic/bovine/c.el, where the base file name
7785 is not in load-path. (Bug#5277)
7786
36f84c37
GM
77872013-05-11 Glenn Morris <rgm@gnu.org>
7788
7789 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7790 Provide features.
7791
c8730c3a
LL
77922013-05-11 Leo Liu <sdl.web@gmail.com>
7793
7794 * progmodes/octave.el (octave-indent-comment): Improve.
7795 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
5ac2eb34
SM
7796 (octave-eldoc-function-signatures, octave-eldoc-function):
7797 New functions.
c8730c3a
LL
7798 (octave-mode, inferior-octave-mode): Add eldoc support.
7799
212e29f2
RS
78002013-05-11 Richard Stallman <rms@gnu.org>
7801
7802 * epa.el (epa-decrypt-file): Take output file name as argument
7803 and read it using `interactive'.
7804
083fe0d7
LL
78052013-05-11 Leo Liu <sdl.web@gmail.com>
7806
7807 * progmodes/octave.el (octave-beginning-of-line)
7808 (octave-end-of-line): Check before using up-list because it jumps
7809 out of more syntactic contructs since moving to smie.
9dbdb67e
LL
7810 (octave-indent-comment): New function.
7811 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
6980b0ca
LL
7812 (octave-begin-keywords, octave-end-keywords)
7813 (octave-reserved-words, octave-smie-bnf-table)
7814 (octave-smie-rules): Add new keywords from Octave 3.6.4.
083fe0d7 7815
8582e4c4
GM
78162013-05-11 Glenn Morris <rgm@gnu.org>
7817
f20def1f
GM
7818 * faces.el (internal-face-x-get-resource):
7819 * frame.el (ns-display-monitor-attributes-list):
d78abe37 7820 * calc/calc-aent.el (math-to-radians-2):
f20def1f 7821 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
d78abe37 7822 Fix declarations.
f20def1f 7823
445f95e2
GM
7824 * calc/calc-menu.el: Make it loadable in isolation.
7825
7826 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7827 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7828 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7829 (eudc-bbdb-query-internal): Require 'bbdb.
7830
99fb2756
GM
7831 * lpr.el (lpr-headers-switches):
7832 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7833
7834 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7835
0da7ad96
GM
7836 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7837
8582e4c4
GM
7838 * term.el (term-set-escape-char): Make it idempotent.
7839
f71c50d0
LL
78402013-05-10 Leo Liu <sdl.web@gmail.com>
7841
5ac2eb34
SM
7842 * progmodes/octave.el (inferior-octave-completion-table):
7843 No longer a function and all uses changed. Use cache to speed up
f71c50d0
LL
7844 completion due to bug#11906.
7845 (octave-beginning-of-defun): Re-write to be more general.
7846
d5837773
GM
78472013-05-10 Glenn Morris <rgm@gnu.org>
7848
7849 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7850
027c0f75
SM
78512013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7852
7853 * comint.el (comint-redirect-send-command-to-process): Use :around
7854 rather than :override for comint-redirect-filter.
7855 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7856 Call it instead of comint-redirect-original-filter-function (which
7857 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7858
4465bfb4
JD
78592013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7860
7861 * frame.el (display-monitor-attributes-list): Add NS case.
7862 (ns-display-monitor-attributes-list): Declare.
7863
2d809ffa 78642013-05-09 Ulrich Mueller <ulm@gentoo.org>
b01682fb
UM
7865
7866 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7867
e54eeb9b
GM
78682013-05-09 Glenn Morris <rgm@gnu.org>
7869
56cd351d
GM
7870 * international/fontset.el (vertical-centering-font-regexp):
7871 Set standard-value.
7872
d84b6108
GM
7873 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7874
a931698a
GM
7875 * bookmark.el (bookmark-search-delay):
7876 * cus-start.el (vertical-centering-font-regexp):
7877 * ps-mule.el (ps-mule-font-info-database-default):
7878 * ps-print.el (ps-default-fg, ps-default-bg):
7879 * type-break.el (type-break-good-break-interval):
7880 * whitespace.el (whitespace-indentation-regexp)
7881 (whitespace-space-after-tab-regexp):
7882 * emacs-lisp/testcover.el (testcover-1value-functions)
7883 (testcover-noreturn-functions, testcover-progn-functions)
7884 (testcover-prog1-functions):
7885 * emulation/viper-init.el (viper-emacs-state-cursor-color):
7886 * eshell/em-glob.el (eshell-glob-translate-alist):
7887 * play/tetris.el (tetris-tty-colors):
7888 * progmodes/cpp.el (cpp-face-default-list):
7889 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7890 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7891 (idlwave-help-browser-generic-args):
7892 * progmodes/make-mode.el (makefile-special-targets-list):
7893 * progmodes/python.el (python-shell-virtualenv-path):
7894 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7895 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7896 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7897 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7898 * textmodes/reftex-vars.el (reftex-format-label-function):
7899 * textmodes/remember.el (remember-diary-file): Fix custom types.
7900
e54eeb9b
GM
7901 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7902 Add :version.
7903
455851dd
LL
79042013-05-09 Leo Liu <sdl.web@gmail.com>
7905
7906 * progmodes/octave.el (inferior-octave-completion-at-point):
083fe0d7 7907 Restore file completion. (Bug#14300)
455851dd
LL
7908 (inferior-octave-startup): Fix incorrect highlighting for the
7909 first prompt.
7910
a9e4425b
SM
79112013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7912
7913 * progmodes/ruby-mode.el: First cut at SMIE support.
7914 (ruby-use-smie): New var.
7915 (ruby-smie-grammar): New constant.
7916 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
7917 (ruby-smie--forward-token, ruby-smie--backward-token)
7918 (ruby-smie-rules): New functions.
7919 (ruby-mode-variables): Setup SMIE if applicable.
7920
060ca408
EZ
79212013-05-08 Eli Zaretskii <eliz@gnu.org>
7922
7923 * simple.el (line-move-visual): Signal beginning/end of buffer
7924 only if vertical-motion moved less than it was requested. Avoids
7925 silly incorrect error messages when there are display strings with
7926 multiple newlines at EOL.
7927
1d5963cc
SM
79282013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7929
7930 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
7931 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
7932 (prolog-char-quote-workaround):
7933 * progmodes/cperl-mode.el (cperl-under-as-char):
7934 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
c7064f05
JB
7935 Mark as obsolete.
7936 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
1d5963cc
SM
7937 their declaration.
7938 (vhdl-mode-syntax-table-init): Remove.
7939
c9990474
SM
7940 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
7941 last change.
1d5963cc
SM
7942
7943 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
7944 syntax for "_".
7945 (ld-script-font-lock-keywords):
7946 Change regexps to use things like \_< and \_>.
7947
7948 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
7949 Change all regexps to use things like \_< and \_>.
7950
7951 * progmodes/autoconf.el (autoconf-definition-regexp)
7952 (autoconf-font-lock-keywords, autoconf-current-defun-function):
7953 Handle a _ with symbol syntax.
7954 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
7955
c9990474
SM
7956 * progmodes/ada-mode.el (ada-mode-abbrev-table):
7957 Consolidate declaration.
1d5963cc
SM
7958 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
7959 the declaration.
7960 (ada-create-syntax-table): Remove.
7961 (ada-capitalize-word): Don't mess with the syntax of "_" since it
7962 already has the right syntax nowadays.
7963 (ada-goto-next-word): Don't change the syntax of "_".
7964
7965 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
7966 with-wrapper-hook.
7967
72d3cfca
SS
79682013-05-08 Sam Steingold <sds@gnu.org>
7969
7970 * thingatpt.el (thing-at-point): Accept optional second argument
7971 NO-PROPERTIES to strip the text properties from the return value.
7972 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
7973 to `thing-at-point' instead of stripping the properties ourselves.
7974 Also, when `thing-at-point' fails to find a url, prepend "http://"
7975 to the filename at point on the assumption that the user is
7976 pointing at something like gnu.org/gnu.
7977
5cb15713
JB
79782013-05-08 Juanma Barranquero <lekktu@gmail.com>
7979
7980 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7981 * faces.el (crm-separator):
7982 Silence byte-compiler.
7983
7984 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
7985 (tool-bar-map): Remove unneeded defvars.
7986
ea78b95b
LL
79872013-05-08 Leo Liu <sdl.web@gmail.com>
7988
7989 Re-work a fix for bug#10994 based on Le Wang's patch.
7990 * ido.el (ido-remove-consecutive-dups): New helper.
7991 (ido-completing-read): Use it.
7992 (ido-chop): Revert fix for bug#10994.
7993
dc7466df
AS
79942013-05-08 Adam Spiers <emacs@adamspiers.org>
7995
7996 * cus-edit.el (custom-save-variables):
7997 Pretty-print long values. (Bug#14187)
7998
9ecf672a
GM
79992013-05-08 Glenn Morris <rgm@gnu.org>
8000
8001 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
8002 (m4-mode-syntax-table): Init in the defvar.
8003 (m4-mode-abbrev-table): Let define-derived-mode define it.
8004
3f555be8
TT
80052013-05-08 Tom Tromey <tromey@redhat.com>
8006
8007 * progmodes/m4-mode.el (m4-mode-syntax-table):
8008 Do not treat "_" as word constituent. (Bug#14167)
8009
7cc8ae06
GM
80102013-05-07 Glenn Morris <rgm@gnu.org>
8011
4f58bc06
GM
8012 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
8013 Remove explicit eshell-isearch-cancel-map.
8014
7cc8ae06
GM
8015 * progmodes/f90.el (f90-smart-end-names): New option.
8016 (f90-smart-end): Doc fix.
8017 (f90-end-block-optional-name): New constant.
8018 (f90-block-match): Respect f90-smart-end-names.
8019
ceb57e59
SM
80202013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8021
8022 * progmodes/octave.el (octave-smie-forward-token): Be more careful
8023 about implicit semi-colons (bug#14218).
8024
4e3f9230
YM
80252013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8026
8027 * frame.el (display-monitor-attributes-list)
8028 (frame-monitor-attributes): New functions.
8029
203a5572
LL
80302013-05-06 Leo Liu <sdl.web@gmail.com>
8031
8032 * progmodes/octave.el (octave-syntax-propertize-function): Change
8033 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
8034 (octave-font-lock-keywords): Use octave-operator-regexp.
5ac2eb34 8035 (octave-completion-at-point): Rename from
203a5572
LL
8036 octave-completion-at-point-function.
8037 (inferior-octave-directory-tracker): Robustify.
8038 (octave-text-functions): Remove and fix its uses. No such things
8039 any more.
8040
ee6cff99
SM
80412013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8042
8043 * emacs-lisp/trace.el (trace--display-buffer): New function.
8044 (trace-make-advice): Use it.
8045
32985194
JL
80462013-05-06 Juri Linkov <juri@jurta.org>
8047
8048 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
8049 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
8050 Doc fix.
8051 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
8052 in the help string. (Bug#12985)
8053
a1c700de
KD
80542013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
8055
8056 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
8057
c67c0839
SM
80582013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8059
323885fd
SM
8060 * progmodes/perl-mode.el: Add support for here documents.
8061 (perl-syntax-propertize-function): Match here-doc markers.
8062 (perl-syntax-propertize-special-constructs): Find their end.
8063 (perl-imenu-generic-expression): Use [:alnum:].
8064
c67c0839
SM
8065 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
8066 (advice--add-function): Refresh the advice if already present
8067 (bug#14317).
8068
d491e7a8
IA
80692013-05-06 Ivan Andrus <darthandrus@gmail.com>
8070
8071 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
8072
ddf9925e
GM
80732013-05-06 Glenn Morris <rgm@gnu.org>
8074
7cc3af27
GM
8075 * w32-fns.el (w32-charset-info-alist): Declare.
8076
16e343d6
GM
8077 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
8078 of its defcustom properties.
8079 (eshell-cmpl-initialize): No need to load pcomplete.
8080
7d889a47
GM
8081 * generic-x.el: No need to require comint when compiling.
8082
ddf9925e
GM
8083 * net/eudc-export.el: Make it loadable without bbdb.
8084 (top-level): Use require rather than load-library.
8085 (eudc-create-bbdb-record, eudc-bbdbify-phone)
8086 (eudc-batch-export-records-to-bbdb)
8087 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
8088 Require bbdb.
8089
1e2c18df
SM
80902013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8091
8092 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
8093 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
8094 some tweaks, instead.
8095
02502a5f
LL
80962013-05-05 Leo Liu <sdl.web@gmail.com>
8097
8098 * progmodes/octave.el (octave-font-lock-keywords)
8099 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
8100 (inferior-octave-send-list-and-digest): Improve error message.
8101 (octave-mode, inferior-octave-mode): Use setq-local.
8102 (octave-help): Set info-lookup-mode.
8103
0dc04f42
RS
81042013-05-05 Richard Stallman <rms@gnu.org>
8105
6c54491c
RS
8106 * vc/compare-w.el (compare-windows-whitespace):
8107 Treat no-break space as whitespace.
8108
0dc04f42
RS
8109 * mail/rmailsum.el (rmail-summary-rmail-update):
8110 Detect empty summary and don't change selected message.
8111 (rmail-summary-goto-msg): Likewise.
8112
df8f35df
RS
8113 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
8114 Doc fixes, rename args.
8115
5356e1a3
AM
81162013-05-05 Alan Mackenzie <acm@muc.de>
8117
8118 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
8119
d44014cb
JL
81202013-05-05 Juri Linkov <juri@jurta.org>
8121
8122 * info.el (Info-read-subfile): Use (point-min) instead of (point)
8123 to not add the length of the summary segment to the return value.
8124 (Bug#14125)
8125
c129b51f
LL
81262013-05-05 Leo Liu <sdl.web@gmail.com>
8127
8128 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
8129 (inferior-octave-output-filter): Remove.
8130 (octave-send-region, inferior-octave-startup): Fix callers.
8131 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
8132 (octave-binary-file-extensions): New user variable.
8133 (octave-find-definition): Confirm if opening binary files.
8134 (octave-help-file): Use octave-find-definition to get the binary
8135 confirmation.
8136 (octave-help): Adjust for octave-help-file change.
8137
aa7dab97
SM
81382013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8139
8140 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
8141 Merge the two entries that handle function definitions.
8142 (pascal--syntax-propertize): New const.
8143 (pascal-mode): Use it. Use setq-local.
8144
fd3a9a6b
GM
81452013-05-04 Glenn Morris <rgm@gnu.org>
8146
8147 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
8148 (diary-from-outlook): Respect diary-from-outlook-function.
8149
30c7e542
SM
81502013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8151
8152 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
8153 Move the declaration from C.
8154 (read-minibuffer, eval-minibuffer): Move from C.
8155 (completion-setup-function): Avoid minibuffer-completion-contents.
8156
b54f978b
LL
81572013-05-03 Leo Liu <sdl.web@gmail.com>
8158
8159 * progmodes/octave.el (octave-font-lock-keywords): Do not
8160 dehighlight 'end' in comments or strings.
30c7e542
SM
8161 (octave-completing-read, octave-goto-function-definition):
8162 New helpers.
d4d0f9b3
LL
8163 (octave-help-buffer): New user variable.
8164 (octave-help-file, octave-help-function): New button types.
8165 (octave-help): New command and bind it to C-h ;.
8166 (octave-find-definition): New command and bind it to M-.
d74a1581 8167 (user-error): Alias to error if not defined.
b54f978b 8168
27135018
LL
81692013-05-02 Leo Liu <sdl.web@gmail.com>
8170
8171 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
8172 for \. (bug#14332)
8173 (octave-font-lock-keywords): Include [ and {.
8174
0d634d3a
LL
81752013-05-02 Leo Liu <sdl.web@gmail.com>
8176
8177 * progmodes/octave.el (inferior-octave-startup-file): Change default.
8178 (inferior-octave): Remove calling comint-mode and return the buffer.
8179 (inferior-octave-startup): Cosmetic changes.
8180
b4c8295e
LL
81812013-05-02 Leo Liu <sdl.web@gmail.com>
8182
30c7e542
SM
8183 * progmodes/octave.el (octave-syntax-propertize-function):
8184 Include the case when ' is at line beginning. (Bug#14336)
b4c8295e 8185
f12ad6ec
GM
81862013-05-02 Glenn Morris <rgm@gnu.org>
8187
8188 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
8189 * desktop.el (vc-dir-mode): Just autoload it here.
8190
30cac1e0
AM
81912013-05-02 Alan Mackenzie <acm@muc.de>
8192
8193 Eliminate variable c-standard-font-lock-fontify-region-function.
8194 * progmodes/cc-mode.el
8195 (c-standard-font-lock-fontify-region-function): Remove.
8196 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
8197
d8ef28b1
LL
81982013-05-01 Leo Liu <sdl.web@gmail.com>
8199
2640d52e 8200 * progmodes/octave.el: Compatible with older emacs-24 releases.
27135018 8201 (inferior-octave-has-built-in-variables): Remove. Built-in
2640d52e 8202 variables were removed from Octave in 2007.
d8ef28b1
LL
8203 (inferior-octave-startup): Fix uses.
8204 (comint-line-beginning-position): Remove compatibility code for
8205 emacs 21.
8206
ac63ec89
JL
82072013-05-01 Juri Linkov <juri@jurta.org>
8208
8209 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
8210
9e9be37c
JL
82112013-05-01 Juri Linkov <juri@jurta.org>
8212
8213 * comint.el (comint-previous-matching-input): Don't print message
8214 "History item: %d" when `isearch-mode' is active.
8215 (comint-history-isearch-message): Print message "History item: %d"
8216 when `comint-input-ring-index' is not empty and this function is
8217 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
8218
9b92c13b
LL
82192013-05-01 Leo Liu <sdl.web@gmail.com>
8220
8221 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
8222 definitions. Use completion-at-point to insert keywords.
8223 (octave-abbrev-start): Remove.
8224 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
8225
b12d33d7
LL
82262013-04-30 Leo Liu <sdl.web@gmail.com>
8227
8228 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
8229 change.
8230
3d1c39fa
AM
82312013-04-30 Alan Mackenzie <acm@muc.de>
8232
8233 Handle arbitrarily long C++ member initialisation lists.
30c7e542
SM
8234 * progmodes/cc-engine.el (c-back-over-member-initializers):
8235 new function.
3d1c39fa
AM
8236 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
8237 (most) member init lists.
8238
5147fc17
RS
82392013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8240
8241 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
8242 variable.
8243
5b78d7fc
LL
82442013-04-30 Leo Liu <sdl.web@gmail.com>
8245
8246 * progmodes/octave.el (octave-variables): Remove. No builtin
8247 variables any more. All converted to functions.
8248 (octave-font-lock-keywords, octave-completion-at-point-function):
8249 Fix uses.
8250 (octave-font-lock-texinfo-comment): New user variable.
8251 (octave-texinfo-font-lock-keywords): New variable for texinfo
8252 comment block.
8253 (octave-function-comment-block): New face.
8254 (octave-font-lock-texinfo-comment): New function.
8255 (octave-mode): Font lock texinfo comment block.
8256
38d8527b
LL
82572013-04-29 Leo Liu <sdl.web@gmail.com>
8258
8259 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
8260 indexing expression.
8261 (octave-continuation-string): Do not use \.
8262 (inferior-octave-complete-impossible): Remove.
8263 (inferior-octave-completion-table)
8264 (inferior-octave-completion-at-point): Remove its uses.
8265 (inferior-octave-startup): completion_matches was introduced to
8266 Octave in 1996 so safe to assume it.
8267 (octave-function-file-comment): Improve to follow how Octave does it.
8268 (octave-update-function-file-comment): Tweak.
8269
2ec12cb0
LL
82702013-04-29 Leo Liu <sdl.web@gmail.com>
8271
8272 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
8273 (inferior-octave-startup): Remove inferior-octave-startup-hook.
8274 (octave-function-file-comment): Fix typo.
8275 (octave-sync-function-file-names): Use read-char-choice.
8276
6eaed048
JB
82772013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
8278
8279 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
8280 to t for the less important warnings.
8281
3ffa2d4f
DH
82822013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
8283
8284 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
8285
685c9501
GM
82862013-04-27 Glenn Morris <rgm@gnu.org>
8287
8288 * vc/log-view.el (log-view-current-entry):
8289 Treat "---" separator lines as part of the following rev. (Bug#14169)
8290
0208ede7
JL
82912013-04-27 Juri Linkov <juri@jurta.org>
8292
8293 * subr.el (read-number): Doc fix about using it by interactive
8294 code letter `n'. (Bug#14254)
8295
5db9dace
JL
82962013-04-27 Juri Linkov <juri@jurta.org>
8297
8298 * desktop.el (desktop-auto-save-timeout): New option.
8299 (desktop-file-checksum): New variable.
8300 (desktop-save): Add optional arg `auto-save' and don't auto-save
8301 if nothing changed.
8302 (desktop-auto-save-timer): New variable.
8303 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
8304 (after-init-hook): Call `desktop-auto-save-set-timer'.
8305 Suggested by Reuben Thomas <rrt@sc3d.org> in
8306 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
8307
b7260dd4
LL
83082013-04-27 Leo Liu <sdl.web@gmail.com>
8309
8310 * progmodes/octave.el (octave-function-file-p)
8311 (octave-skip-comment-forward, octave-function-file-comment)
8312 (octave-update-function-file-comment): New functions.
8313 (octave-mode-map): Bind C-c ; to
8314 octave-update-function-file-comment.
8315 (octave-mode-menu): Add octave-update-function-file-comment.
8316 (octave-mode, inferior-octave-mode): Fix doc-string.
8317 (octave-insert-defun): Conform to Octave's coding convention.
8318 (Bug#14285)
8319
8320 * files.el (basic-save-buffer): Don't let errors in
8321 before-save-hook prevent saving buffer.
8322
c46da669
RW
83232013-04-20 Roland Winkler <winkler@gnu.org>
8324
8325 * faces.el (read-face-name): Use completing-read if arg multiple
8326 is nil.
8327
a81ee1eb
IL
83282013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
8329
8330 * ls-lisp.el (ls-lisp-insert-directory): If no files are
30c7e542
SM
8331 displayed, move point to after the totals line.
8332 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
a81ee1eb
IL
8333 for the details.
8334
4fac34ce
SM
83352013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8336
8337 * emacs-lisp/package.el (package-autoload-ensure-default-file):
8338 Add current dir to the load-path.
8339 (package-generate-autoloads): Don't rely on
8340 autoload-ensure-default-file.
8341
f6bfc063
RT
83422013-04-26 Reuben Thomas <rrt@sc3d.org>
8343
d40ab5cf
BG
8344 * textmodes/remember.el (remember-store-in-files): Document that
8345 the file name format is passed to `format-time-string'.
f6bfc063 8346
e55d3b04
LL
83472013-04-26 Leo Liu <sdl.web@gmail.com>
8348
8349 * progmodes/octave.el (octave-sync-function-file-names): New function.
8350 (octave-mode): Use it in before-save-hook.
8351
e53052d3
SM
83522013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8353
140ef50c
SM
8354 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
8355 (bug#14274).
8356
e53052d3
SM
8357 * progmodes/octave.el (octave-smie-forward-token): Properly skip
8358 \n and comment, even if it's not an implicit ; (bug#14218).
8359
af80458d 83602013-04-26 Glenn Morris <rgm@gnu.org>
e5271cf2
GM
8361
8362 * subr.el (read-number): Once more use `read' rather than
8363 `string-to-number', to trap non-numeric input. (Bug#14254)
8364
af80458d 83652013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
70203c2e
EC
8366
8367 * emacs-lisp/syntax.el (syntax-propertize-multiline):
8368 Use `syntax-multiline' text property consistently instead of
8a621d53 8369 `font-lock-multiline'. (Bug#14237)
70203c2e 8370
e6ea1f6c
GM
83712013-04-26 Glenn Morris <rgm@gnu.org>
8372
8373 * emacs-lisp/shadow.el (list-load-path-shadows):
8374 No longer necessary to check for duplicate simple.el, since
8375 2012-07-07 change to init_lread to not include installation lisp
8376 directories in load-path when running uninstalled. (Bug#14270)
8377
070ccca4
LL
83782013-04-26 Leo Liu <sdl.web@gmail.com>
8379
8380 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
8381 (octave-mode, inferior-octave-mode): Use setq-local.
e53052d3 8382 (octave-not-in-string-or-comment-p): Rename to
070ccca4
LL
8383 octave-in-string-or-comment-p.
8384 (octave-in-comment-p, octave-in-string-p)
8385 (octave-in-string-or-comment-p): Replace defsubst with defun.
8386
9d1c5fb6
PE
83872013-04-25 Paul Eggert <eggert@cs.ucla.edu>
8388
8389 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
8390
c034abda
BG
83912013-04-25 Bastien Guerry <bzg@gnu.org>
8392
8393 * textmodes/remember.el (remember-data-directory)
8394 (remember-directory-file-name-format): Fix custom types.
8395
584ea277
LL
83962013-04-25 Leo Liu <sdl.web@gmail.com>
8397
e53052d3
SM
8398 * progmodes/octave.el (octave-completion-at-point-function):
8399 Make use of inferior octave process.
584ea277
LL
8400 (octave-initialize-completions): Remove.
8401 (inferior-octave-completion-table): New function.
8402 (inferior-octave-completion-at-point): Use it.
8403 (octave-completion-alist): Remove.
8404
1693b06a
SM
84052013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8406
8407 * progmodes/opascal.el: Use font-lock and syntax-propertize.
8408 (opascal-mode-syntax-table): New var.
8409 (opascal-literal-kind, opascal-is-literal-end)
8410 (opascal-literal-token-at): Rewrite.
8411 (opascal--literal-start-re, opascal-font-lock-keywords)
8412 (opascal--syntax-propertize): New constants.
8413 (opascal-font-lock-defaults): Adjust.
8414 (opascal-mode): Use them. Set comment-<foo> variables as well.
8415 (delphi-comment-face, opascal-comment-face, delphi-string-face)
8416 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
8417 (delphi-other-face, opascal-other-face): Remove face variables.
8418 (opascal-save-state): Remove macro.
8419 (opascal-fontifying-progress-step): Remove constant.
8420 (opascal--ignore-changes): Remove var.
8421 (opascal-set-token-property, opascal-parse-next-literal)
8422 (opascal-is-stable-literal, opascal-complete-literal)
8423 (opascal-is-literal-start, opascal-face-of)
8424 (opascal-parse-region, opascal-parse-region-until-stable)
8425 (opascal-fontify-region, opascal-after-change)
8426 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
8427 (opascal-debug-parse-region, opascal-debug-parse-window)
8428 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
8429 (opascal-debug-fontify-buffer): Remove.
8430 (opascal-debug-mode-map): Adjust accordingly.
8431
be64c05d
LL
84322013-04-25 Leo Liu <sdl.web@gmail.com>
8433
8434 Merge octave-mod.el and octave-inf.el into octave.el with some
8435 cleanups.
8436 * progmodes/octave.el: New file renamed from octave-mod.el.
8437 * progmodes/octave-inf.el: Merged into octave.el.
8438 * progmodes/octave-mod.el: Renamed to octave.el.
8439
d79d37bd
TH
84402013-04-25 Tassilo Horn <tsdh@gnu.org>
8441
8442 * textmodes/reftex-vars.el
8443 (reftex-label-ignored-macros-and-environments): New defcustom.
8444
8445 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
8446
ced3fc5d
SM
84472013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8448
8449 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
8450 (smie-indent-keyword): Improve the check to ensure that the next
8451 comment is really on the same line.
8452 (smie-indent-comment): Don't align with a subsequent closer (or eob).
8453
8454 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
8455 semi-colons if the line is not otherwise empty (bug#14218).
8456
1c141dad
GM
84572013-04-25 Glenn Morris <rgm@gnu.org>
8458
8459 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
8460
5058062a
SM
84612013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8462
8463 * progmodes/opascal.el (opascal-set-token-property): Rename from
8464 opascal-set-text-properties and only set `token' (bug#14134).
8465 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
8466 (opascal-literal-text-properties): Remove.
8467 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
8468 Adjust callers.
8469
5db9dace 84702013-04-24 Reuben Thomas <rrt@sc3d.org>
1ffefcf9
BG
8471
8472 * textmodes/remember.el (remember-handler-functions): Add an
8473 option for a new handler `remember-store-in-files'.
8474 (remember-data-directory, remember-directory-file-name-format):
8475 New options.
8476 (remember-store-in-files): New function to store remember notes
8477 as separate files within a directory.
8478
4391916c
MH
84792013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
8480
8481 * progmodes/compile.el (compilation-next-error-function):
8482 Pass "formats" to compilation-find-file (bug#11777).
8483
bb7cdf58
GM
84842013-04-24 Glenn Morris <rgm@gnu.org>
8485
3b8fe752 8486 * vc/vc-bzr.el (vc-bzr-print-log):
90b4237a
GM
8487 * vc/vc-hg.el (vc-hg-print-log):
8488 * vc/vc-svn.el (vc-svn-print-log):
8489 Fix START-REVISION with LIMIT != 1. (Bug#14168)
8490
bb7cdf58
GM
8491 * vc/vc-bzr.el (vc-bzr-print-log):
8492 * vc/vc-cvs.el (vc-cvs-print-log):
8493 * vc/vc-git.el (vc-git-print-log):
8494 * vc/vc-hg.el (vc-hg-print-log):
8495 * vc/vc-mtn.el (vc-mtn-print-log):
8496 * vc/vc-rcs.el (vc-rcs-print-log):
8497 * vc/vc-sccs.el (vc-sccs-print-log):
8498 * vc/vc-svn.el (vc-svn-print-log):
8499 * vc/vc.el (vc-print-log-internal): Doc fixes.
8500
b46a056e
GM
85012013-04-23 Glenn Morris <rgm@gnu.org>
8502
8503 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
8504 Remove venerable code attempting to avoid substitute-command-keys.
8505
0aecf718
TH
85062013-04-23 Tassilo Horn <tsdh@gnu.org>
8507
4391916c
MH
8508 * textmodes/reftex-vars.el (reftex-label-regexps):
8509 Call `reftex-compile-variables' after changes to this variable.
0aecf718 8510
117f94cf
SM
85112013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8512
4391916c 8513 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
117f94cf
SM
8514 Use lexical-binding.
8515 (jit-lock-force-redisplay): Use markers, check buffer's continued
8516 existence and beware narrowed buffers.
8517 (jit-lock-fontify-now): Adjust call accordingly.
8518
1d829c64
SM
85192013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8520
8521 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
8522 to avoid misleading the user.
8523
72d548a9
LL
85242013-04-22 Leo Liu <sdl.web@gmail.com>
8525
8526 * info-look.el: Prefer latex2e.info. (Bug#14240)
8527
d0853629
MA
85282013-04-22 Michael Albinus <michael.albinus@gmx.de>
8529
8530 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
8531
8532 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
4f405069 8533 * net/tramp.el (tramp-call-process): ... here.
d0853629
MA
8534 (tramp-set-completion-function, tramp-parse-putty):
8535 * net/tramp-adb.el (tramp-adb-execute-adb-command):
8536 * net/tramp-gvfs.el (tramp-gvfs-send-command):
8537 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8538 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
8539 (tramp-call-local-coding-command): Use `tramp-call-process'
8540 instead of `tramp-compat-call-process'.
8541
8542 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
8543 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
8544 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
7764286e 8545 (tramp-find-inline-compress): Improve traces.
d0853629
MA
8546 (tramp-maybe-send-script): Check for Perl binary.
8547 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
8548
38cc0210
DU
85492013-04-22 Daiki Ueno <ueno@gnu.org>
8550
8551 * epg.el (epg-context-pinentry-mode): New function.
8552 (epg-context-set-pinentry-mode): New function.
8553 (epg--start): Pass --pinentry-mode option to gpg command.
8554
cc641ee1
XF
85552013-04-21 Xue Fuqiao <xfq.free@gmail.com>
8556
02d844b5 8557 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
5d4e5c31 8558 `comint-dynamic-complete' is obsolete since 24.1, replaced by
e7b41c4c 8559 `completion-at-point'. (Bug#13774)
5d4e5c31 8560
cc641ee1
XF
8561 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
8562 default key binding for `describe-distribution' has been moved to
8563 `C-h C-o'. (Bug#13970)
8564
1b42ee43
GM
85652013-04-21 Glenn Morris <rgm@gnu.org>
8566
8567 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
8568 Add doc strings.
8569 (vc-print-log): Clarify interactive prompt.
8570
a6d63d97
GM
85712013-04-20 Glenn Morris <rgm@gnu.org>
8572
8573 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8574 No longer include timestamp etc information.
8575
d7f5c16f
RW
85762013-04-20 Roland Winkler <winkler@gnu.org>
8577
8578 * faces.el (read-face-name): Bug fix, return just one face if arg
8579 multiple is nil. (Bug#14209)
8580
bcd7a0a4
SM
85812013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8582
8583 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
8584 (remove-function): Autoload.
8585
8586 * comint.el (comint-redirect-original-filter-function): Remove.
8587 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
e7b41c4c
JB
8588 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
8589 (vc-cvs-annotate-command):
bcd7a0a4
SM
8590 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
8591 * progmodes/prolog.el (prolog-consult-compile):
8592 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
8593 Use add/remove-function instead.
8594 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
8595 (gud-tooltip-process-output, gud-tooltip-tips):
8596 Use add/remove-function instead.
8597 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
8598 (scheme-interaction-mode, exit-scheme-interaction-mode):
8599 Use add/remove-function instead.
8600
8601 * vc/vc-dispatcher.el: Use lexical-binding.
8602 (vc--process-sentinel): Rename from vc-process-sentinel.
8603 Change last arg to be the code to run. Don't use vc-previous-sentinel
8604 and vc-sentinel-commands any more.
8605 (vc-exec-after): Allow code to be a function. Use add/remove-function.
8606 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
8607
e36b2d20 86082013-04-19 Masatake YAMATO <yamato@redhat.com>
4d3268ba 8609
bcd7a0a4 8610 * progmodes/sh-script.el (sh-imenu-generic-expression):
781b4af6 8611 Handle function names with a single character. (Bug#14111)
4d3268ba 8612
781b4af6 86132013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
863beb27
DK
8614
8615 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
8616 for subroutines defined in an eval (bug#14182).
8617
7d688336
TV
86182013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8619
8620 * bookmark.el (bookmark-completing-read): Improve handling of empty
8621 string (bug#14176).
8622
31dcede0
SM
86232013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8624
8625 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8626
adc31213
FEG
86272013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8628
8629 New faster Imenu implementation (bug#14058).
8630 * progmodes/python.el:
8631 (python-imenu-prev-index-position):
8632 (python-imenu-format-item-label-function)
8633 (python-imenu-format-parent-item-label-function)
8634 (python-imenu-format-parent-item-jump-label-function):
8635 New vars.
8636 (python-imenu-format-item-label)
8637 (python-imenu-format-parent-item-label)
8638 (python-imenu-format-parent-item-jump-label)
8639 (python-imenu--put-parent, python-imenu--build-tree)
8640 (python-imenu-create-index, python-imenu-create-flat-index)
8641 (python-util-popn): New functions.
8642 (python-mode): Set imenu-create-index-function to
8643 python-imenu-create-index.
8644
cdca8255
SM
86452013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8646
8647 * winner.el (winner-active-region): Use region-active-p, activate-mark
8648 and deactivate-mark (bug#14225).
8649
8650 * simple.el (deactivate-mark): Don't inline it.
8651
beb42340
MA
86522013-04-18 Michael Albinus <michael.albinus@gmx.de>
8653
8654 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8655
fc7f4d7e
TH
86562013-04-18 Tassilo Horn <tsdh@gnu.org>
8657
8658 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8659 file extensions from the archive-mode entry in order to prefer
8660 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8661
29f47822
LL
86622013-04-18 Leo Liu <sdl.web@gmail.com>
8663
8664 * bindings.el (help-event-list): Add ?\?.
8665
d36ed1c8
SM
86662013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8667
8668 * subr.el (with-wrapper-hook): Declare obsolete.
8669 * simple.el (filter-buffer-substring-function): New hook.
8670 (filter-buffer-substring): Use it.
8671 (filter-buffer-substring-functions): Mark obsolete.
8672 * minibuffer.el (completion-in-region-function): New hook.
8673 (completion-in-region): Use it.
8674 (completion-in-region-functions): Mark obsolete.
8675 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8676 * abbrev.el (abbrev-expand-function): New hook.
8677 (expand-abbrev): Use it.
8678 (abbrev-expand-functions): Mark obsolete.
8679 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8680 and :filter-return.
8681
04754d36
FEG
86822013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8683
8684 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8685 and do not care about match data.
8686
dd8791e9
SM
86872013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8688
8689 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8690 completion tables when completing error conditions and
8691 `declare' arguments.
8692 (lisp-complete-symbol, field-complete): Mark as obsolete.
8693 (check-parens): Unmatched parens are user errors.
8694 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8695
ffe54a13
AM
86962013-04-17 Michal Nazarewicz <mina86@mina86.com>
8697
dd8791e9
SM
8698 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8699 command changed buffer (ie. `flyspell-pre-buffer' is not current
8700 buffer), which prevents making decisions based on invalid value of
8701 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8702 cause an error when `flyspell-pre-point' was nil after switching
8703 buffers.
8704 (flyspell-post-command-hook): No longer needs to change buffers when
8705 checking pre-word. While at it remove unnecessary progn.
ffe54a13 8706
ec7e39f2
AM
87072013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8708
8709 * textmodes/ispell.el (ispell-add-per-file-word-list):
8710 Fix `flyspell-correct-word-before-point' error when accepting
8711 words and `coment-padding' is an integer by using
8712 `comment-normalize-vars' (Bug #14214).
8713
083850a6
FEG
87142013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8715
8716 New defun movement commands.
8717 * progmodes/python.el (python-nav--syntactically)
8718 (python-nav--forward-defun, python-nav-backward-defun)
8719 (python-nav-forward-defun): New functions.
8720
619ed6e1
FEG
87212013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8722
8723 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8724 (python-syntax-context): Use named compiler-macro for backwards
8725 compatibility with Emacs 24.x.
8726
7a1beb6c
LL
87272013-04-17 Leo Liu <sdl.web@gmail.com>
8728
8729 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8730 octave-hide-process-buffer.
8731
2d3fa3e5
SM
87322013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8733
8734 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8735 (bug#14216).
8736
7ce5be54
JPG
87372013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8738
8739 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8740 Fix adjustment of offset when receiving incomplete responses from GDB
8741 (bug#14129).
8742
351edece
SM
87432013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8744
8745 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8746 python-mode-abbrev-table.
8747 (python-skeleton-define): Adjust accordingly.
8748 (python-mode-abbrev-table): New table that inherits from it so that
8749 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8750
8751 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8752 (abbrev-symbol): Use it.
8753 (abbrev--before-point): Use it since we already handle inheritance.
8754
613f9481
LL
87552013-04-16 Leo Liu <sdl.web@gmail.com>
8756
8757 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8758 binding to info-lookup-symbol.
8759
51646b62
JB
87602013-04-16 Juanma Barranquero <lekktu@gmail.com>
8761
8762 * minibuffer.el (completion--twq-all):
8763 * term/ns-win.el (ns-initialize-window-system):
8764 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8765
efb3f01d
SM
87662013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8767
36c0a301
SM
8768 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8769 global bindings.
8770
efb3f01d
SM
8771 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8772
fb549d64
DG
87732013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8774
8775 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8776 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8777 to nil.
8778 (ruby-end-of-defun): Remove the unused arg, change the docstring
8779 to reflect that this function is only used as the value of
8780 `end-of-defun-function'.
8781 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8782 to reflect an earlier change that beginning/end-of-defun functions
8783 jump between methods in a class definition, as well as top-level
8784 functions.
8785
21e8fe2f
SM
87862013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8787
8788 * minibuffer.el (minibuffer-complete): Don't just scroll
8789 a *Completions* that's been iconified.
8790 (minibuffer-force-complete): Make sure repetitions do cycle when going
8791 through completion-in-region -> minibuffer-complete.
8792
20e527d0
AM
87932013-04-15 Alan Mackenzie <acm@muc.de>
8794
8795 Correct the placement of c-cpp-delimiters when there're #s not at
8796 col 0.
8797
8798 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8799 place a submatch around the #.
21e8fe2f
SM
8800 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8801 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
20e527d0
AM
8802 on the #, not BOL.
8803
dabefae5
SM
88042013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8805
8806 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8807 (advice--member-p): New arg `name'.
8808 (advice--add-function, advice-member-p): Use it (bug#14202).
8809
85c9ab64
AM
88102013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8811
8812 Reformulate java imenu-generic-expression.
8813 The old expression contained ill formed regexps.
8814
8815 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8816 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8817 (cc-imenu-java-method-arg-regexp): New defconsts.
8818 (cc-imenu-java-build-type-args-regex): New defun.
dabefae5 8819 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
85c9ab64
AM
8820 handling of spaces in the regexp.
8821
0f821d99
AM
88222013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8823
8824 * textmodes/ispell.el (ispell-command-loop): Remove
8825 flyspell highlight of a word when ispell accepts it (bug #14178).
8826
eb922adf
MA
88272013-04-15 Michael Albinus <michael.albinus@gmx.de>
8828
8829 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8830 uses code from the previous `ange-ftp-run-real-handler'.
8831 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8832 only in case that function exist. This is needed for proper
8833 unloading of Tramp.
8834
4d9a0979
TH
88352013-04-15 Tassilo Horn <tsdh@gnu.org>
8836
8837 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8838
8839 * textmodes/reftex.el (reftex-compile-variables): Use it.
8840
a829b0dc
SM
88412013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8842
91e8293c
SM
8843 * files.el (normal-mode): Only use default major-mode if no other mode
8844 was specified.
8845
830aed4d
SM
8846 * emacs-lisp/trace.el (trace-values): New function.
8847
a829b0dc
SM
8848 * files.el: Allow : in local variables (bug#14089).
8849 (hack-local-variable-regexp): New var.
8850 (hack-local-variables-prop-line, hack-local-variables): Use it.
8851
7ae9f0fb
RW
88522013-04-13 Roland Winkler <winkler@gnu.org>
8853
8854 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8855 data before it gets modified by bibtex-beginning-of-entry.
8856
6646e848
RW
88572013-04-13 Roland Winkler <winkler@gnu.org>
8858
8859 * textmodes/bibtex.el (bibtex-url): Doc fix.
8860
88612013-04-13 Roland Winkler <winkler@gnu.org>
23a0e159
RW
8862
8863 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8864 does not visit a BibTeX file, exclude it from the list of buffers
8865 returned by bibtex-initialize.
8866
0aa3616e
SB
88672013-04-13 Stephen Berman <stephen.berman@gmx.net>
8868
8869 * window.el (split-window): Remove interactive form, since as a
8870 command this function is a special case of split-window-below.
8871 Correct doc string.
8872
011cddd6
RW
88732013-04-12 Roland Winkler <winkler@gnu.org>
8874
8875 * faces.el (read-face-name): Do not override value of arg default.
8876 Allow single faces and strings as default values. Remove those
8877 elements from return value that are not faces.
8878 (describe-face): Simplify.
8879 (face-at-point): New optional args thing and multiple so that this
8880 function can provide the same functionality previously provided by
8881 read-face-name.
8882 (make-face-bold, make-face-unbold, make-face-italic)
8883 (make-face-unitalic, make-face-bold-italic, invert-face)
8884 (modify-face, read-face-and-attribute): Use face-at-point.
8885
8886 * cus-edit.el (customize-face, customize-face-other-window)
8887 * cus-theme.el (custom-theme-add-face)
8888 * face-remap.el (buffer-face-set)
8889 * facemenu.el (facemenu-set-face): Use face-at-point.
8890
f24e0036
MA
88912013-04-12 Michael Albinus <michael.albinus@gmx.de>
8892
8893 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8894
da3cda2d
TH
88952013-04-10 Tassilo Horn <tsdh@gnu.org>
8896
8897 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8898 off leading { and trailing } from field values.
8899
15e54145
SM
89002013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8901
78ce603d
SM
8902 * emacs-lisp/timer.el (timer--check): New function.
8903 (timer--time, timer-set-function, timer-event-handler): Use it.
8904 (timer-set-idle-time): Simplify.
8905 (timer--activate): CSE.
8906 (timer-event-handler): Give more info in error message.
8907 (internal-timer-start-idle): New function, moved from C.
8908
15e54145
SM
8909 * mpc.el (mpc-proc): Add `restart' argument.
8910 (mpc-proc-cmd): Use it.
8911 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
8912 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
8913 less often.
8914
7144c627
MY
89152013-04-10 Masatake YAMATO <yamato@redhat.com>
8916
8917 * progmodes/sh-script.el: Implement `sh-mode' own
8918 `add-log-current-defun-function' (bug#14112).
8919 (sh-current-defun-name): New function.
8920 (sh-mode): Use the function.
8921
b39792eb
BG
89222013-04-09 Bastien Guerry <bzg@gnu.org>
8923
8924 * simple.el (choose-completion-string): Fix docstring (bug#14163).
8925
8acdeb71
SM
89262013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8927
6fcdab68
SM
8928 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
8929
8acdeb71
SM
8930 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
8931 timer (bug#14156).
8932
e3e7b504
NF
89332013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
8934
8935 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
8936 declaration.
8937
201bb296
LL
89382013-04-07 Leo Liu <sdl.web@gmail.com>
8939
8940 * pcmpl-x.el: New file.
8941
ebb19708
DA
89422013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
8943
8944 Do not set x-display-name until X connection is established.
8945 This is needed to prevent from weird situation described at
8946 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
8947 * frame.el (make-frame): Set x-display-name after call to
8948 window system initialization function, not before.
8949 * term/x-win.el (x-initialize-window-system): Add optional
8950 display argument and use it.
8951 * term/w32-win.el (w32-initialize-window-system):
8952 * term/ns-win.el (ns-initialize-window-system):
8953 * term/pc-win.el (msdos-initialize-window-system):
8954 Add compatible optional display argument.
8955
33bb237a
EZ
89562013-04-06 Eli Zaretskii <eliz@gnu.org>
8957
8958 * files.el (normal-backup-enable-predicate): On MS-Windows and
8959 MS-DOS compare truenames of temporary-file-directory and of the
8960 file, so that 8+3 aliases (usually found in $TEMP on Windows)
8961 don't fail comparison by compare-strings. Also, compare file
8962 names case-insensitively on MS-Windows and MS-DOS.
8963
134abf1f
SM
89642013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8965
8966 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
8967 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
8968
d695cb94
DG
89692013-04-05 Dmitry Gutov <dgutov@yandex.ru>
8970
e3e7b504
NF
8971 * whitespace.el (whitespace-color-on, whitespace-color-off):
8972 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
d695cb94 8973
f4ad7ea1 89742013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
7e268e90
AM
8975
8976 * ispell.el (ispell-set-spellchecker-params):
8977 Really set `ispell-args' for all equivs.
8978
632556e4
SM
89792013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8980
8981 * ido.el (ido-completions): Use extra elements of ido-decorations
8982 (bug#14143).
8983 (ido-decorations): Update docstring.
8984
2a417372
MA
89852013-04-05 Michael Albinus <michael.albinus@gmx.de>
8986
8987 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8988 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
8989 nil during initialization, in order not to miss changes since the
8990 file was opened. (Bug#14140)
8991
fc164b0c
LL
89922013-04-05 Leo Liu <sdl.web@gmail.com>
8993
8994 * kmacro.el (kmacro-call-macro): Fix bug#14135.
8995
0ccecc08
JB
89962013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
8997
8998 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
8999
51af1aa2
GM
90002013-04-04 Glenn Morris <rgm@gnu.org>
9001
9002 * electric.el (electric-pair-inhibit-predicate): Add :version.
9003
b208ebc6
SM
90042013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9005
9006 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
9007 when a package is required several times (bug#14082).
9008
f3d3eaf0
RW
90092013-04-04 Roland Winkler <winkler@gnu.org>
9010
9011 * faces.el (read-face-name): Behave as promised by the docstring.
9012 Assume that arg default is a list of faces.
9013 (describe-face): Call read-face-name with list of default faces.
9014
2575da50
TV
90152013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9016
9017 * bookmark.el: Fix deletion of bookmarks (bug#13972).
9018 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
9019 (bookmark-bmenu-execute-deletions): Only skip first line if it's
9020 the header.
9021 (bookmark-exit-hook-internal): Save even if list is empty.
9022
397703b4
YH
90232013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
9024
9025 * emacs-lisp/package.el (package-pinned-packages): New var.
9026 (package--add-to-archive-contents): Obey it (bug#14118).
9027
691e26ae
AM
90282013-04-03 Alan Mackenzie <acm@muc.de>
9029
8a621d53
JB
9030 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
9031 Also adapt to the new values of element 7 of a parse state.
691e26ae
AM
9032
9033 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
9034 parameter `not-in-delimiter'. Handle being inside comment opener.
9035 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
9036 character in case we're typing a '*' after a '/'.
9037 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
9038 instead by passing the parameter to c-state-pp-to-literal.
9039
9040 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
9041 for elt. 7 of a parse state.
9042
4b725a70
PE
90432013-04-01 Paul Eggert <eggert@cs.ucla.edu>
9044
9045 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
9046 * international/latin1-disp.el, international/mule-util.el:
9047 * language/cyril-util.el, language/european.el, language/ind-util.el:
9048 * language/lao-util.el, language/thai.el, language/tibet-util.el:
9049 * language/tibetan.el, language/viet-util.el:
9050 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
9051
15c579f0
SM
90522013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
9053
9054 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
9055 (electric-pair-post-self-insert-function): Use it.
9056 (electric-pair-default-inhibit): New function, extracted from
9057 electric-pair-post-self-insert-function.
9058
a77e2924
RW
90592013-03-31 Roland Winkler <winkler@gnu.org>
9060
9061 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
9062
2bd8a4a8
SM
90632013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9064
9065 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
9066
8d3655be 90672013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
c9886b39
FEG
9068
9069 Un-indent after "pass" and "return" statements (Bug#13888)
9070 * progmodes/python.el (python-indent-block-enders): New var.
9071 (python-indent-calculate-indentation): Use it.
9072
8d3655be 90732013-03-30 Michael Albinus <michael.albinus@gmx.de>
4430bd53
MA
9074
9075 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
9076 defun. Defining it as defalias could introduce too eager
9077 byte-compiler optimization. (Bug#14030)
9078
8d3655be 90792013-03-30 Chong Yidong <cyd@gnu.org>
89468837
CY
9080
9081 * iswitchb.el (iswitchb-read-buffer): Fix typo.
9082
0b1619da
LL
90832013-03-30 Leo Liu <sdl.web@gmail.com>
9084
9085 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
9086 (kmacro-execute-from-register): Pass the keyboard macro to
9087 kmacro-call-macro or repeating won't work correctly.
9088
0b938190
TZ
90892013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
9090
9091 * progmodes/subword.el: Back to using `forward-symbol'.
9092
9093 * subr.el (forward-whitespace, forward-symbol)
9094 (forward-same-syntax): Move from thingatpt.el.
9095
35710234
LL
90962013-03-29 Leo Liu <sdl.web@gmail.com>
9097
9098 * kmacro.el (kmacro-to-register): New command.
9099 (kmacro-execute-from-register): New function.
9100 (kmacro-keymap): Bind to 'x'. (Bug#14071)
9101
efc0bb73
SM
91022013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
9103
9104 * mpc.el: Use defvar-local and setq-local.
9105 (mpc--proc-connect): Connection failures are not bugs.
9106 (mpc-mode-map): `follow-link' only applies to the buffer's content.
9107 (mpc-volume-map): Bind to the up-events.
9108
75a2f981
TZ
91092013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
9110
9111 * progmodes/subword.el (superword-mode): Use `forward-sexp'
9112 instead of `forward-symbol'.
9113
17c781d1
SM
91142013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9115
9116 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
9117 (edebug--recursive-edit): Use it.
9118 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
9119 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
9120
f67bfbcf
LL
91212013-03-28 Leo Liu <sdl.web@gmail.com>
9122
9123 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
9124
b59f639d
EZ
91252013-03-27 Eli Zaretskii <eliz@gnu.org>
9126
9127 * facemenu.el (list-colors-callback): New defvar.
9128 (list-colors-redisplay): New function.
9129 (list-colors-display): Install list-colors-redisplay as the
9130 revert-buffer-function. (Bug#14063)
9131
f557c1b1
SM
91322013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9133
b1da2957
SM
9134 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
9135 and suffixes don't overlap (bug#14061).
9136
f557c1b1
SM
9137 * case-table.el: Use lexical-binding.
9138 (case-table-get-table): New function.
9139 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
9140
002668e1
TZ
91412013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
9142
9143 * progmodes/subword.el: Add `superword-mode' to do word motion
9144 over symbol_words (parallels and leverages `subword-mode' which
9145 does word motion inside MixedCaseWords).
9146
73572c72
AG
91472013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
9148
78b8f320 9149 * eshell/em-unix.el: Move su and sudo to...
f4ad7ea1 9150 * eshell/em-tramp.el: ...Eshell tramp module.
73572c72 9151
69b2c07e
SM
91522013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9153
9154 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
9155 Change return value to be a sexp. Delay `get-buffer' to after
9156 restoring the desktop (bug#13951).
9157
08bb5ee2
LL
91582013-03-26 Leo Liu <sdl.web@gmail.com>
9159
9160 * register.el: Move semantic tag handling back to
9161 cedet/semantic/senator.el. (Bug#14052)
9162
8d4c974e
SM
91632013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9164
9165 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
9166 into the prompt either (bug#13963).
9167
b234d92c
SM
91682013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
9169
9170 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
9171 part of "(error-foo)".
9172
ddfa3cb4
JL
91732013-03-24 Juri Linkov <juri@jurta.org>
9174
9175 * replace.el (list-matching-lines-prefix-face): New defcustom.
9176 (occur-1): Pass `list-matching-lines-prefix-face' to the function
9177 `occur-engine' if `face-differs-from-default-p' returns t.
9178 (occur-engine): Add `,' inside backquote construct to evaluate
9179 `prefix-face'. Propertize the prefix with the `prefix-face' face.
9180 Pass `prefix-face' to the functions `occur-context-lines' and
9181 `occur-engine-add-prefix'.
9182 (occur-engine-add-prefix, occur-context-lines): Add optional arg
9183 `prefix-face' and propertize the prefix with `prefix-face'.
9184 (Bug#14017)
9185
7b0e2f85
LL
91862013-03-24 Leo Liu <sdl.web@gmail.com>
9187
9188 * nxml/rng-valid.el (rng-validate-while-idle)
9189 (rng-validate-quick-while-idle): Guard against deleted buffer.
9190 (Bug#13999)
9191
9192 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
9193 is the last entry in kill-buffer-hook.
9194
9195 * files.el (kill-buffer-hook): Doc fix.
9196
b3082f49
DG
91972013-03-23 Dmitry Gutov <dgutov@yandex.ru>
9198
b234d92c
SM
9199 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
9200 Make it safe-local.
bde73d27 9201
b3082f49
DG
9202 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
9203
a320a2db
LL
92042013-03-23 Leo Liu <sdl.web@gmail.com>
9205
7e74b0fb
LL
9206 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
9207 Remove.
9208
9209 * nxml/rng-valid.el (rng-validate-mode)
9210 (rng-after-change-function, rng-do-some-validation):
9211 * nxml/rng-maint.el (rng-validate-buffer):
9212 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
9213 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
9214 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
9215 (nxml-extend-after-change-region): Use with-silent-modifications.
9216
a320a2db
LL
9217 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
9218 timer-idle-list.
9219
9220 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
9221 (rng-next-error-1, rng-previous-error-1): Do not let-bind
9222 timer-idle-list. (Bug#13999)
9223
e38e6780
JL
92242013-03-23 Juri Linkov <juri@jurta.org>
9225
9226 * info.el (info-index-match): New face.
9227 (Info-index, Info-apropos-matches): Add a nested subgroup to the
9228 main pattern and add text properties with the new face to matches
9229 in index entries relative to the beginning of the index entry.
9230 (Bug#14015)
9231
e8cc7880
DE
92322013-03-21 Eric Ludlam <zappo@gnu.org>
9233
9234 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
9235 Inhibit read only while inserting objects.
9236
9bb0d822
TZ
92372013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
9238
9239 * progmodes/cfengine.el: Update docs to mention
9240 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
9241 symbol motion. Remove "_" from the word syntax.
9242
aa703640
TZ
92432013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
9244
9245 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
9246 syntax for both `cfengine2-mode' and `cfengine3-mode'.
9247
afff09d0
JL
92482013-03-20 Juri Linkov <juri@jurta.org>
9249
9250 * info.el (Info-next-reference-or-link)
9251 (Info-prev-reference-or-link): New functions.
9252 (Info-next-reference, Info-prev-reference): Use them.
9253 (Info-try-follow-nearest-node): Handle footnote navigation.
9254 (Info-fontify-node): Fontify footnotes. (Bug#13989)
9255
9a1ff164
SM
92562013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9257
9258 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
9259 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
9260
2667d15d
PE
92612013-03-20 Paul Eggert <eggert@cs.ucla.edu>
9262
9263 Suppress unnecessary non-ASCII chatter during build process.
9264 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
9265 (batch-skkdic-convert): Suppress most of the chatter.
9266 It's not needed so much now that machines are faster,
9267 and its non-ASCII component was confusing; see Dmitry Gutov in
9268 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
9269
438b0579
LL
92702013-03-20 Leo Liu <sdl.web@gmail.com>
9271
9272 * ido.el (ido-chop): Fix bug#10994.
9273
c128ab07
DG
92742013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9275
9276 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
9277 Remove vars.
9a1ff164
SM
9278 (whitespace-color-on, whitespace-color-off):
9279 Use `font-lock-fontify-buffer' (Bug#13817).
c128ab07 9280
0e6008c5
SM
92812013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
9282
9283 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
9284 remapping in mode-line.
9285 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
9286
627b52b0
DG
92872013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9288
9289 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
9290 value for `whitespace-line' face (Bug#13875).
7ec31b02
DG
9291 (whitespace-font-lock-keywords): Change description.
9292 (whitespace-color-on): Don't save `font-lock-keywords' value, save
9293 the constructed keywords instead.
9294 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
627b52b0 9295
50c3a20b
LL
92962013-03-19 Leo Liu <sdl.web@gmail.com>
9297
9298 * progmodes/compile.el (compilation-display-error): New command.
9299 (compilation-mode-map, compilation-minor-mode-map): Bind it to
9300 C-o. (Bug#13992)
9301
2aa2157b
PE
93022013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9303
9304 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
9305
e477dbfa
JD
93062013-03-18 Jan Djärv <jan.h.d@swipnet.se>
9307
9308 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
9309
64ab82d1
MA
93102013-03-18 Michael Albinus <michael.albinus@gmx.de>
9311
9312 * net/tramp-compat.el (tramp-compat-user-error): New defun.
9313
9314 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9315 * net/tramp-gvfs.el (top):
9316 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
9317 (tramp-handle-shell-command): Use it.
9318 (tramp-dissect-file-name): Raise an error when hostname is a
9319 method name, and neither method nor user is specified.
9320
9321 * net/trampver.el: Update release number.
9322
33cef733
LL
93232013-03-18 Leo Liu <sdl.web@gmail.com>
9324
9325 Make sure eldoc can be turned off properly.
9326 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
9327 eldoc-mode.
9328 (eldoc-display-message-p): Revert last change.
9329 (eldoc-display-message-no-interference-p)
9330 (eldoc-print-current-symbol-info): Tweak.
9331
2167b7b2
TH
93322013-03-18 Tassilo Horn <tsdh@gnu.org>
9333
9334 * doc-view.el (doc-view-new-window-function): Check the new window
9335 overlay's display property instead the char property of the
9336 buffer's first char. Use `with-selected-window' instead of
9337 `save-window-excursion' with `select-window'.
9338 (doc-view-document->bitmap): Check the current doc-view overlay's
9a1ff164 9339 display property instead the char property of the buffer's first char.
2167b7b2 9340
982efbcd
PE
93412013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9342
9343 Automate the build of ja-dic.el (Bug#13984).
9344 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
9345 from the input, rather than assume that it's been done for us by the
9346 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
9347 the current date into a ja-dic.el comment, as that complicates
9348 regression testing.
9349
2fcc7665
SM
93502013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9351
9352 * whitespace.el: Fix double evaluation.
9353 (whitespace-space, whitespace-hspace, whitespace-tab)
9354 (whitespace-newline, whitespace-trailing, whitespace-line)
9355 (whitespace-space-before-tab, whitespace-indentation)
9356 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
9357 obsolete defvars.
9358 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
9359 (whitespace-color-on): Use a single font-lock-add-keywords call.
9360 Fix double-evaluation of face variables.
9361
67c0a6e6
MA
93622013-03-17 Michael Albinus <michael.albinus@gmx.de>
9363
2fcc7665
SM
9364 * net/tramp-adb.el (tramp-adb-parse-device-names):
9365 Use `start-process' instead of `call-process'. Otherwise, the
8194a705 9366 function might be blocked under MS Windows. (Bug#13299)
67c0a6e6 9367
69489f1d
LL
93682013-03-17 Leo Liu <sdl.web@gmail.com>
9369
9370 Extend eldoc to display info in the mode-line. (Bug#13978)
9371 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
9372 (eldoc-mode-line-string): New variable.
9373 (eldoc-minibuffer-message): New function.
9374 (eldoc-message-function): New variable.
9375 (eldoc-message): Use it.
9376 (eldoc-display-message-p)
2fcc7665
SM
9377 (eldoc-display-message-no-interference-p):
9378 Support eldoc-post-insert-mode.
69489f1d
LL
9379
9380 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
9381 (eval-expression): Run it.
9382
9c44569e
RW
93832013-03-17 Roland Winkler <winkler@gnu.org>
9384
9385 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
9386 strings in the list of return values.
9387
327f1f6f
JB
93882013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9389
9390 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
9391 radix before checking for HMS forms.
9392
67ed8fcd
LL
93932013-03-16 Leo Liu <sdl.web@gmail.com>
9394
9395 * progmodes/scheme.el: Add indentation and font-locking for λ.
9396 (Bug#13975)
9397
78be8b64 93982013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
efe8bf5d
SM
9399
9400 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
9401 token before point (bug#13942).
9402
78be8b64 94032013-03-16 Leo Liu <sdl.web@gmail.com>
00094c26 9404
95b43468 9405 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
00094c26 9406
98e775e6
EZ
94072013-03-16 Eli Zaretskii <eliz@gnu.org>
9408
9409 * startup.el (command-line-normalize-file-name): Fix handling of
9410 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
9411 <xfq.free@gmail.com> in
9412 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
9413
2edd6029
MA
94142013-03-15 Michael Albinus <michael.albinus@gmx.de>
9415
9416 Sync with Tramp 2.2.7.
9417
9418 * net/trampver.el: Update release number.
9419
d35f5864
TH
94202013-03-14 Tassilo Horn <tsdh@gnu.org>
9421
e903c210 9422 * doc-view.el: Fix bug#13887.
f35ffe5e
TH
9423 (doc-view-insert-image): Don't modify overlay associated to
9424 non-live windows, and implement horizontal centering of image in
9425 case it's smaller than the window.
9426 (doc-view-new-window-function): Force redisplay of new windows on
9427 doc-view buffers.
d35f5864 9428
1c4a85ed
KF
94292013-03-13 Karl Fogel <kfogel@red-bean.com>
9430
9431 * saveplace.el (save-place-alist-to-file): Don't sort
9432 `save-place-alist', just pretty-print it (bug#13882).
9433
85b66a21
MA
94342013-03-13 Michael Albinus <michael.albinus@gmx.de>
9435
a020afb9
JB
9436 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9437 Check whether `default-file-name-coding-system' is bound.
9438 It isn't in XEmacs.
85b66a21 9439
175600da
SM
94402013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
9441
e7f7cb1a
SM
9442 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
9443 backquotes for `obsolete' (bug#13929).
9444
175600da
SM
9445 * international/mule.el (find-auto-coding): Include file name in
9446 obsolescence warning (bug#13922).
9447
ca68a22e
TZ
94482013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
9449
9450 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
9451 for CFEngine 3-specific indentation.
9452 (cfengine3-indent-line): Use it. Fix up category regex.
9453 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
9454
940e5099
SM
94552013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9456
9457 * type-break.el (type-break-file-name):
9458 * textmodes/remember.el (remember-data-file):
9459 * strokes.el (strokes-file):
9460 * shadowfile.el (shadow-initialize):
9461 * saveplace.el (save-place-file):
9462 * ps-bdf.el (bdf-cache-file):
9463 * progmodes/idlwave.el (idlwave-config-directory):
9464 * net/quickurl.el (quickurl-url-file):
9465 * international/kkc.el (kkc-init-file-name):
9466 * ido.el (ido-save-directory-list-file):
9467 * emulation/viper.el (viper-custom-file-name):
9468 * emulation/vip.el (vip-startup-file):
9469 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9470 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
9471
cc725808
PE
94722013-03-12 Paul Eggert <eggert@cs.ucla.edu>
9473
9474 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
9475 * language/thai-word.el: Switch to UTF-8.
9476
a020afb9 9477See ChangeLog.16 for earlier changes.
e3d51b27
MR
9478
9479;; Local Variables:
9480;; coding: utf-8
e3d51b27
MR
9481;; End:
9482
ab422c4d 9483 Copyright (C) 2011-2013 Free Software Foundation, Inc.
e3d51b27
MR
9484
9485 This file is part of GNU Emacs.
9486
9487 GNU Emacs is free software: you can redistribute it and/or modify
9488 it under the terms of the GNU General Public License as published by
9489 the Free Software Foundation, either version 3 of the License, or
9490 (at your option) any later version.
9491
9492 GNU Emacs is distributed in the hope that it will be useful,
9493 but WITHOUT ANY WARRANTY; without even the implied warranty of
9494 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9495 GNU General Public License for more details.
9496
9497 You should have received a copy of the GNU General Public License
9498 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.