]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* lisp/progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
[gnu-emacs] / lisp / ChangeLog
1 2013-11-08 Dmitry Gutov <dgutov@yandex.ru>
2
3 * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
4 of "and", "or", "&&" and "||".
5 (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
6 argument. Prohibit opening curly brace because it could only be a
7 block opener in that position.
8 (ruby-smie--forward-token, ruby-smie--backward-token): Separate
9 "|" from "&" or "*" going after it. That can happen in block
10 arguments.
11 (ruby-smie--indent-to-stmt): New function, seeks the end of
12 previous statement or beginning of buffer.
13 (ruby-smie-rules): Use it.
14 (ruby-smie-rules): Check if there's a ":" before a curly block
15 opener candidate; if there is, it's a hash.
16
17 2013-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
18
19 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
20 (cl--block-wrapper): Fix last accidental change.
21
22 2013-11-07 Michael Albinus <michael.albinus@gmx.de>
23
24 * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
25 Instrument, in order to hunt failure on hydra.
26
27 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
28
29 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
30 malformed bindings form (bug#15814).
31
32 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
33
34 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
35 "." compared to " @ ". This incidentally fixes some indentation
36 examples with "do".
37 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
38 (ruby-smie-grammar): New tokens: "and" and "or".
39 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
40 Exclude "and" and "or". Remove "do" in order to work around token
41 priorities.
42 (ruby-smie-rules): Add all infix tokens. Handle the case of
43 beginning-of-buffer.
44
45 2013-11-06 Glenn Morris <rgm@gnu.org>
46
47 * Makefile.in (setwins_almost, setwins_for_subdirs):
48 Avoid accidental matches.
49
50 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
51
52 * menu-bar.el (popup-menu): Use key-binding.
53
54 2013-11-06 Eli Zaretskii <eliz@gnu.org>
55
56 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
57 menus, support also the menus produced by minor modes.
58 (Bug#15817)
59
60 2013-11-06 Leo Liu <sdl.web@gmail.com>
61
62 * thingatpt.el (thing-at-point-looking-at): Add optional arg
63 DISTANCE to bound the search. All uses changed. (Bug#15808)
64
65 2013-11-06 Glenn Morris <rgm@gnu.org>
66
67 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
68 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
69 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
70
71 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
72
73 * electric.el (electric-indent-just-newline): New command.
74 (electric-indent-mode-map): New keymap.
75 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
76 Re-add :group which weren't redundant.
77
78 * electric.el (electric-indent-local-mode): New minor mode.
79 (electric-indent-functions-without-reindent): New var.
80 (electric-indent-post-self-insert-function): Use it.
81 * emacs-lisp/gv.el (buffer-local-value): Add setter.
82
83 2013-11-05 Eli Zaretskii <eliz@gnu.org>
84
85 * international/quail.el (quail-help): Be more explicit about the
86 meaning of the labels shown on the keys. (Bug#15800)
87
88 * startup.el (normal-top-level): Load the subdirs.el files before
89 setting the locale environment. (Bug#15805)
90
91 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
92
93 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
94 via arguments so as to get the right ones (bug#15418).
95
96 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
97
98 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
99
100 Fix problems found while writing a test suite.
101
102 * net/tramp-compat.el (tramp-compat-load): New defun.
103 * net/tramp.el (tramp-handle-load): Use it.
104
105 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
106 "(numberp ok-if-already-exists)" correctly.
107
108 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
109
110 * international/characters.el (glyphless-char-display-control):
111 Add usage note.
112
113 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
114
115 * progmodes/python.el (python-mode):
116 * progmodes/scheme.el (scheme-mode):
117 * progmodes/prolog.el (prolog-mode):
118 * progmodes/ruby-mode.el (ruby-mode):
119 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
120 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
121
122 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
123
124 * rect.el (rectangle--highlight-for-redisplay):
125 * emacs-lisp/smie.el (smie--next-indent-change):
126 Use buffer-chars-modified-tick.
127
128 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
129
130 * electric.el (electric-indent-post-self-insert-function):
131 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
132
133 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
134
135 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
136
137 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
138
139 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
140 (bug#15786).
141
142 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
143
144 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
145
146 * progmodes/python.el: Fix up last change.
147 (python-shell--save-temp-file): New function.
148 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
149 `string' comes from the current buffer.
150 (python-shell-send-string-no-output): Remove `msg' arg.
151 (python--use-fake-loc): New var.
152 (python-shell-buffer-substring): Obey it. Try to compensate for the
153 extra coding line added by python-shell--save-temp-file.
154 (python-shell-send-region): Use python-shell--save-temp-file and
155 python-shell-send-file directly. Add `nomain' argument.
156 (python-shell-send-buffer): Use python-shell-send-region.
157 (python-electric-pair-string-delimiter): New function.
158 (python-mode): Use it.
159
160 2013-11-04 Eli Zaretskii <eliz@gnu.org>
161
162 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
163 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
164 environment and decoding all of the default-directory's to here
165 from command-line.
166 (command-line): Decode also argv[0].
167
168 * loadup.el: Error out if default-directory is a multibyte string
169 when we are dumping.
170
171 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
172
173 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
174
175 * emacs-lisp/package.el (package-menu-mode)
176 (package-menu--print-info, package-menu--archive-predicate):
177 Add Archive column to package list.
178
179 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
180
181 Fix problems found while writing a test suite.
182
183 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
184 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
185 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
186 to nil when running original file name handler. Otherwise,
187 there are problems with constructs like "$$FOO".
188
189 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
190 for `localname'.
191
192 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
193
194 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
195
196 * subr.el (version<, version<=, version=):
197 Update docstrings with information for snapshot versions.
198
199 * helpers.el: New library for misc helper functions.
200 (hash-table-keys): New function returning a list of hash keys.
201 (hash-table-values): New function returning a list of hash values.
202
203 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
204
205 * progmodes/ruby-mode.el (ruby-smie--forward-token)
206 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
207
208 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
209
210 * textmodes/fill.el (fill-single-char-nobreak-p): New function
211 checking whether point is after a 1-letter word.
212
213 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
214
215 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
216 Don't infloop when expanding region over `multiline' syntax-type that
217 begins a line (bug#15778).
218
219 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
220
221 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
222 Make it into a proper minor mode.
223 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
224 (rectangle-mark-mode-map): New keymap.
225 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
226
227 2013-11-04 Glenn Morris <rgm@gnu.org>
228
229 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
230
231 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
232
233 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
234 (ruby-smie-rules): Use smie-rule-parent instead.
235
236 * emacs-lisp/smie.el (smie-rule-parent): Always call
237 smie-indent-virtual rather than only for hanging tokens.
238 (smie--next-indent-change): New helper command.
239
240 2013-11-03 Glenn Morris <rgm@gnu.org>
241
242 * Makefile.in (abs_srcdir): Remove.
243 (emacs): Unset EMACSLOADPATH.
244
245 2013-11-02 Glenn Morris <rgm@gnu.org>
246
247 * Makefile.in (EMACS): Use a relative filename.
248 (abs_top_builddir): Remove.
249 (custom-deps, finder-data, autoloads): Use --chdir.
250
251 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
252
253 Use relative filenames in TAGS files.
254 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
255 (lisptagsfiles4, TAGS): Use relative file names.
256 (TAGS-LISP): Remove.
257 (maintainer-clean): No more TAGS-LISP file.
258
259 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
260 (lisptagsfiles4): Use absolute filenames again.
261 (TAGS, TAGS-LISP): Not everything needs to run in one line.
262 Remove all *loaddefs files, not just the first. Remove esh-groups.
263 (maintainer-clean): Delete TAGS, TAGS-LISP.
264
265 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
266
267 * emacs-lisp/package.el (package-version-join):
268 Recognize snapshot versions.
269
270 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
271
272 * subr.el (version-regexp-alist): Add support for snapshot versions.
273
274 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
275
276 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
277 New function, replacement for `smie-rule-parent' for when we want to
278 skip over our direct parent if it's an assignment token..
279 (ruby-smie-rules): Use it.
280
281 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
282
283 * progmodes/ruby-mode.el Use `syntax-propertize-function'
284 unconditionally. Remove now unnecessary forward declarations.
285 Remove XEmacs-specific setup.
286 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
287 (ruby-font-lock-syntactic-keywords)
288 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
289 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
290 (ruby-here-doc-end-syntax): Remove.
291 (ruby-mode): Don't check whether `syntax-propertize-rules' is
292 defined as function.
293
294 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
295
296 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
297
298 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
299
300 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
301 table and abbrev table, `define-derived-mode' does that for us
302 anyway.
303
304 2013-11-01 Glenn Morris <rgm@gnu.org>
305
306 * Makefile.in: Remove manual mh-e dependencies (writing .elc
307 files is atomic for some time, so no parallel compilation issues).
308
309 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
310
311 * faces.el (face-x-resources): Add :distant-foreground.
312 (region): Use :distant-foreground for gtk and ns.
313
314 2013-11-01 Tassilo Horn <tsdh@gnu.org>
315
316 Allow multiple bibliographies when BibLaTeX is used rather than
317 BibTeX.
318 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
319 (reftex-locate-bibliography-files): Us it.
320
321 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
322
323 * image.el (image-type-header-regexps): Fix the 'pbm' part to
324 allow comments in pbm files.
325
326 * term/w32-win.el (dynamic-library-alist): Support newer versions
327 of libjpeg starting with v7: look only for the DLL from the
328 version against which Emacs was built.
329 Support versions of libpng beyond 1.4.x.
330 Support libtiff v4.x.
331
332 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
333
334 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
335 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
336 Add property :safe.
337 (ruby-deep-arglist): Add property :type.
338
339 2013-10-31 Glenn Morris <rgm@gnu.org>
340
341 * Makefile.in (custom-deps, finder-data): No need to setq the target
342 variables, we are in the right directory and the defaults work fine.
343
344 2013-10-30 Glenn Morris <rgm@gnu.org>
345
346 * Makefile.in (autoloads): Do not use abs_lisp.
347
348 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
349 `newline' does not respect `standard-output', so use `princ'.
350
351 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
352
353 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
354 * buff-menu.el (Buffer-menu--unmark): New function.
355 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
356
357 2013-10-30 Glenn Morris <rgm@gnu.org>
358
359 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
360
361 * emacs-lisp/package.el (lm-homepage): Declare.
362
363 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
364 Fix doc typos.
365
366 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
367
368 * Makefile.in (finder-data, autoloads, update-subdirs)
369 (compile-main, compile-clean, compile-always, bootstrap-clean):
370 Check return value of cd.
371 (compile-calc): Remove.
372
373 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
374
375 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
376
377 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
378 (byte-compile-and-folded): New function.
379 (=, <, >, <=, >=): Use it.
380
381 * dos-w32.el (minibuffer-history-case-insensitive-variables)
382 (path-separator, null-device, buffer-file-coding-system)
383 (lpr-headers-switches): Check system-type before modifying them.
384 (find-buffer-file-type-coding-system): Mark obsolete.
385 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
386 find-file-not-found-set-buffer-file-coding-system.
387 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
388 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
389 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
390 (w32-direct-print-region-helper, w32-direct-print-region-function)
391 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
392 * startup.el (normal-top-level-add-subdirs-to-load-path):
393 * ps-print.el (ps-print-region-function):
394 * lpr.el (print-region-function): Use new name.
395
396 * subr.el (custom-declare-variable-early): Remove function.
397 (custom-declare-variable-list): Remove var.
398 (error, user-error): Remove `while' loop.
399 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
400 (user-emacs-directory-warning, locate-user-emacs-file):
401 Move to files.el.
402 * simple.el (read-quoted-char-radix, read-quoted-char):
403 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
404 Move from subr.el.
405 * custom.el (custom-declare-variable-list): Don't process
406 custom-declare-variable-list.
407
408 * progmodes/python.el (python-shell-get-buffer): New function.
409 (python-shell-get-process): Use it.
410 (python-shell-send-string): Always use utf-8 and add a cookie to tell
411 Python which encoding was used. Don't split-string since we only care
412 about the first line. Return the temp-file, if applicable.
413 (python-shell-send-region): Tell compile.el how to turn locations in
414 the temp-file into locations in the source buffer.
415
416 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
417
418 * subr.el (undefined): Add missing behavior from the C code for
419 unbound keys.
420
421 * rect.el: Use lexical-binding. Add new rectangular region support.
422 (rectangle-mark): New command.
423 (rectangle--region): New var.
424 (deactivate-mark-hook): Reset rectangle--region.
425 (rectangle--extract-region, rectangle--insert-for-yank)
426 (rectangle--highlight-for-redisplay)
427 (rectangle--unhighlight-for-redisplay): New functions.
428 (region-extract-function, redisplay-unhighlight-region-function)
429 (redisplay-highlight-region-function): Use them to handle
430 rectangular region.
431 * simple.el (region-extract-function): New var.
432 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
433 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
434 (kill-region): Replace obsolete `yank-handler' arg with `region'.
435 (copy-region-as-kill, kill-ring-save): Add `region' argument.
436 (redisplay-unhighlight-region-function)
437 (redisplay-highlight-region-function): New vars.
438 (redisplay--update-region-highlight): New function.
439 (pre-redisplay-function): Use it.
440 (exchange-point-and-mark): Don't deactivate the mark before
441 reactivate-it anyway.
442 * comint.el (comint-kill-region): Remove yank-handler argument.
443 * delsel.el (delete-backward-char, backward-delete-char-untabify)
444 (delete-char): Remove property, since it's now part of their
445 default behavior.
446 (self-insert-iso): Remove property since this command doesn't exist.
447
448 * emacs-lisp/package.el (package--download-one-archive)
449 (describe-package-1): Don't query the user about final newline.
450
451 2013-10-29 Daniel Colascione <dancol@dancol.org>
452
453 * net/tramp.el (tramp-methods): Document new functionality.
454 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
455 tramp-hostname-checker if method provides one instead of scanning
456 argument list for "%h" to decide hostname acceptability.
457
458 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
459
460 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
461 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
462 Handle COPY-CONTENTS. (Bug#15737)
463
464 2013-10-28 Daiki Ueno <ueno@gnu.org>
465
466 * epa-file.el
467 (epa-file-cache-passphrase-for-symmetric-encryption):
468 Document that this option has no effect with GnuPG 2.0 (bug#15552).
469
470 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
471
472 * image.el (defimage):
473 (image-load-path): Doc fixes.
474
475 2013-10-27 Alan Mackenzie <acm@muc.de>
476
477 Indent statements in macros following "##" correctly.
478 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
479 Modify the "#" arm of a cond form to handle "#" and "##" operators.
480
481 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
482
483 * linum.el (linum-update-window): Fix boundary test (bug#13446).
484
485 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
486
487 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
488 after `=' is probably a new expression.
489
490 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
491
492 * man.el (man-imenu-title): New option.
493 (Man-mode-map): Add menu. (Bug#15722)
494 (Man-mode): Add imenu to menu.
495
496 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
497
498 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
499 specific in what the first arg can be: a non-keyword word,
500 string/regexp/percent literal opener, opening paren, or unary
501 operator followed directly by word.
502
503 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
504
505 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
506 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
507 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
508 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
509 Remove vars, they do not apply any more.
510 (prolog-mode-abbrev-table): Remove redundant declaration.
511 (prolog-upper-case-string, prolog-lower-case-string): Remove.
512 (prolog-use-smie): Remove.
513 (prolog-smie-rules): Add indentation rule for the if-then-else layout
514 supported by prolog-electric-if-then-else-flag.
515 (prolog-mode-variables, prolog-menu): Use setq-local.
516 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
517 Remove binding to `Backspace' since this key doesn't exist anyway.
518 Remove bindings for electric self-inserting keys.
519 (prog-mode): Assume it's defined.
520 (prolog-post-self-insert): New function.
521 (prolog-mode): Use it.
522 (prolog-indent-line, prolog-indent-level)
523 (prolog-find-indent-of-matching-paren)
524 (prolog-indentation-level-of-line, prolog-goto-comment-column)
525 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
526 (prolog-goto-next-paren, prolog-in-string-or-comment)
527 (prolog-tokenize, prolog-inside-mline-comment)
528 (prolog-find-start-of-mline-comment): Remove functions.
529 (prolog-find-unmatched-paren, prolog-clause-end)
530 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
531 (prolog-electric--if-then-else): Rename from
532 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
533 (prolog-tokenize-searchkey): Remove const.
534 (prolog-clause-info): Use forward-sexp.
535 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
536 (prolog-electric-if-then-else): Remove commands.
537 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
538 for use in post-self-insert-hook.
539 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
540 for use in post-self-insert-hook.
541 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
542 for use in post-self-insert-hook.
543 (prolog-electric--underscore): Rename from prolog-electric--underscore;
544 adapt it for use in post-self-insert-hook.
545
546 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
547
548 * emacs-lisp/ert.el (ert-run-tests-interactively):
549 Use `completing-read'. (Bug#9756)
550
551 2013-10-25 Eli Zaretskii <eliz@gnu.org>
552
553 * simple.el (line-move): Call line-move-1 instead of
554 line-move-visual when the current window hscroll is zero, but
555 temporary-goal-column indicates we will need to hscroll as result
556 of the movement. (Bug#15712)
557
558 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
559
560 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
561 capitalization. Use :visible instead of :active.
562 Fix `ruby-indent-exp' reference. Add menu items for the generic
563 commands that are used with SMIE.
564 (ruby-do-end-to-brace): Insert space after `{'.
565
566 2013-10-25 John Anthony <john@jo.hnanthony.com>
567
568 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
569
570 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
571
572 2013-10-25 Glenn Morris <rgm@gnu.org>
573
574 * vc/vc.el (vc-print-log): Don't use a working revision unless
575 one was explicitly specified. (Bug#15322)
576
577 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
578
579 * subr.el (add-to-list): Preserve return value in compiler-macro
580 (bug#15692).
581
582 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
583
584 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
585 result. Ask user to retry using '-all' flag. (Bug#15701)
586
587 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
588
589 * emacs-lisp/smie.el: New smie-config system.
590 (smie-config): New defcustom.
591 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
592 (smie-config-guess, smie-config-save): New commands.
593 (smie-config--mode-local, smie-config--buffer-local)
594 (smie-config--trace, smie-config--modefuns): New vars.
595 (smie-config--advice, smie-config--mode-hook)
596 (smie-config--setter, smie-config-local, smie-config--get-trace)
597 (smie-config--guess-value, smie-config--guess): New functions.
598 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
599 text properties. Treat "string fence" syntax like string syntax.
600
601 * progmodes/sh-script.el (sh-use-smie): Change default.
602 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
603 (sh-var-value): Simplify by CSE.
604 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
605 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
606 is used.
607 (sh-guess-basic-offset): Use cl-incf.
608 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
609
610 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
611
612 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
613 (bug#15699).
614
615 2013-10-24 Glenn Morris <rgm@gnu.org>
616
617 * Makefile.in (abs_top_srcdir): Remove.
618 (update-subdirs): Use relative path to update-subdirs.
619
620 2013-10-24 Eli Zaretskii <eliz@gnu.org>
621
622 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
623 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
624 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
625 Call unmsys--file-name before expand-file-name, not after it.
626
627 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
628
629 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
630 (ert-test-skipped): New error.
631 (ert-skip, ert-stats-skipped): New defuns.
632 (ert--skip-unless): New macro.
633 (ert-test-skipped): New struct.
634 (ert--run-test-debugger, ert-test-result-type-p)
635 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
636 (ert--stats-set-test-and-result, ert-char-for-test-result)
637 (ert-string-for-test-result, ert-run-tests-batch)
638 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
639 Handle skipped tests. (Bug#9803)
640
641 2013-10-24 Glenn Morris <rgm@gnu.org>
642
643 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
644
645 * Makefile.in (abs_top_srcdir): New, set by configure.
646 (update-subdirs): Correct build-aux location.
647
648 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
649
650 * vc/vc.el (vc-print-root-log): Always set `default-directory'
651 value, whether we could auto-deduce `backend', or not.
652
653 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
654 with parameters" example. Simplify the "is it block or is it
655 hash" check, but also make it more thorough.
656
657 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
658
659 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
660
661 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
662
663 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
664 { if it is hanging.
665
666 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
667 :before ";".
668
669 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
670
671 * progmodes/compile.el (compilation-directory-matcher)
672 (compilation-page-delimiter):
673 Support GNU Make-4.0 directory quoting. (Bug#15678)
674
675 2013-10-23 Leo Liu <sdl.web@gmail.com>
676
677 * ido.el (ido-tidy): Handle read-only text.
678
679 2013-10-23 Glenn Morris <rgm@gnu.org>
680
681 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
682 (emacs, compile, compile-always):
683 Quote entities that might contain whitespace.
684 (custom-deps, finder-data, autoloads): Use abs_lisp.
685 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
686 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
687 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
688
689 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
690
691 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
692 Use `following-char'.
693
694 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
695
696 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
697 * progmodes/ruby-mode.el (ruby-smie-rules):
698 Remove corresponding workaround. Fix indentation rule of ";" so it
699 also applies when ";" is the parent.
700
701 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
702
703 * frame.el (display-screens, display-pixel-height)
704 (display-pixel-width, display-mm-width, display-backing-store)
705 (display-save-under, display-planes, display-color-cells)
706 (display-visual-class, display-monitor-attributes-list):
707 Mention the optional ‘display’ argument in doc strings.
708
709 2013-10-22 Michael Gauland <mikelygee@amuri.net>
710
711 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
712 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
713
714 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
715
716 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
717 TODO. Add "." after " @ ".
718 (ruby-smie--at-dot-call): New function. Checks if point at method
719 call with explicit target.
720 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
721 to the method name tokens when it precedes them.
722 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
723 (ruby-smie-rules): Add rule for indentation before and after "."
724 token.
725
726 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
727
728 * textmodes/remember.el (remember-diary-extract-entries):
729 Avoid add-to-list.
730
731 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
732 an instruction.
733
734 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
735
736 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
737 (ruby-smie--implicit-semi-p): Add new operator chars.
738
739 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
740 `smie-down-list'.
741 (ruby-smie--args-separator-p): Check that there's no newline
742 between method call and its arguments.
743
744 2013-10-20 Alan Mackenzie <acm@muc.de>
745
746 Allow comma separated lists after Java "implements".
747
748 * progmodes/cc-engine.el (c-backward-over-enum-header):
749 Parse commas.
750 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
751 from a "disallowed" list in enum fontification.
752
753 2013-10-20 Johan Bockgård <bojohan@gnu.org>
754
755 * startup.el (default-frame-background-mode): Remove unused defvar.
756
757 * progmodes/verilog-mode.el (verilog-mode): Don't set
758 comment-indent-function globally.
759
760 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
761
762 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
763 Move Info menu item creation to ns-win.el.
764
765 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
766 in menu bar.
767
768 * menu-bar.el: Move GNUStep specific menus...
769
770 * term/ns-win.el (ns-initialize-window-system): ... to here.
771
772 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
773
774 * simple.el (newline): Only run post-self-insert-hook when
775 called interactively.
776
777 2013-10-19 Johan Bockgård <bojohan@gnu.org>
778
779 * icomplete.el (icomplete-with-completion-tables): Add :version.
780
781 2013-10-19 Alan Mackenzie <acm@muc.de>
782
783 Fix fontification bugs with constructors and const.
784
785 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
786 CASE 2) Remove the check for the absence of a suffix construct
787 after a function declaration with only types (no identifiers) in
788 the parentheses. Also, accept a function declaration with just a
789 type inside the parentheses, if this type can be positively
790 recognised as such, or if a prefix keyword like "explicit" nails
791 down the construct as a declaration.
792
793 2013-10-19 Eli Zaretskii <eliz@gnu.org>
794
795 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
796 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
797 the problem whereby selecting a menu item that leads to a
798 minibuffer prompt moves the cursor out of the minibuffer window,
799 making it hard to type at the prompt. Suggested by Stefan Monnier
800 <monnier@iro.umontreal.ca>.
801
802 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
803
804 * menu-bar.el: Don't make Services menu.
805
806 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
807
808 * ffap.el: Handle "/usr/include/c++/<version>" directories.
809 (ffap-alist): Use ffap-c++-mode for c++-mode.
810 (ffap-c++-path): New variable.
811 (ffap-c++-mode): New function.
812
813 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
814
815 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
816
817 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
818
819 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
820 introduced on 2013-09-08, which results in an infinite loop
821 requesting a password.
822
823 2013-10-18 Glenn Morris <rgm@gnu.org>
824
825 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
826
827 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
828
829 Sync with upstream verilog-mode revision 1a6ecec7.
830 * progmodes/verilog-mode.el (verilog-mode-version): Update.
831 (verilog-mode-release-date): Remove.
832 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
833 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
834 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
835 (verilog-auto-tieoff-ignore-regexp)
836 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
837 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
838 (verilog-signals-with, verilog-dir-cache-preserving)
839 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
840 Doc fixes.
841 (verilog-case-fold): New option, to control case folding in
842 regexp searches, bug597.
843 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
844 (verilog-string-match-fold, verilog-in-paren-count)
845 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
846 (verilog-at-close-struct-p): New functions.
847 (verilog-beg-block-re-ordered, verilog-extended-case-re)
848 (verilog-forward-sexp, verilog-set-auto-endcomments):
849 (verilog-leap-to-case-head): Handle "unique0" case.
850 (verilog-in-constraint-re): New constant.
851 (verilog-keywords, verilog-type-font-keywords):
852 Add some SystemVerilog 1800-2012 keywords.
853 (verilog-label-be): Remove unimplemented argument, bug669.
854 (verilog-batch-execute-func): When batch expanding clear
855 create-lockfiles to prevent spurious user locks when a file ends
856 up not changing.
857 (verilog-calculate-indent, verilog-calc-1)
858 (verilog-at-close-constraint-p, verilog-at-constraint-p)
859 (verilog-do-indent): Fix indentation of nested constraints
860 and structures.
861 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
862 (verilog-auto-inst-param): Use verilog-string-match-fold.
863 (verilog-read-inst-module-matcher):
864 Fix AUTOINST on gate primitives with #1.
865 (verilog-read-decls): Fix double-declaring user-defined typed signals.
866 Reads all user-defined typed variables.
867 (verilog-read-defines): Fix reading definitions inside comments, bug647.
868 (verilog-signals-matching-regexp)
869 (verilog-signals-not-matching-regexp, verilog-auto):
870 Respect verilog-case-fold.
871 (verilog-diff-report): Fix line count.
872 (verilog-auto-assign-modport): Remove unused local `modi'.
873 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
874 better handle multidimensional arrays.
875 Fix packed array ports misadding bit index in AUTOINST, bug637.
876 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
877 to not double-declare existing outputs and inputs, respectively.
878 (verilog-template-map): Bind U to verilog-sk-uvm-component.
879 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
880 (verilog-sk-uvm-component): New skeleton.
881 (verilog-submit-bug-report): Add verilog-case-fold,
882 remove verilog-mode-release-date.
883
884 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
885
886 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
887 as before.
888
889 2013-10-18 Reuben Thomas <rrt@sc3d.org>
890
891 * textmodes/remember.el (remember): set buffer-offer-save in
892 remember buffers (bug#13566).
893
894 2013-10-18 Daniel Colascione <dancol@dancol.org>
895
896 When evaluating forms in ielm, direct standard output to ielm
897 buffer. Add new ielm-return-for-effect command. Remove trailing
898 whitespace throughout.
899
900 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
901 (ielm-return-for-effect): New command.
902 (ielm-send-input): Accept optional `for-effect' parameter.
903 (ielm-eval-input): Accept optional `for-effect' parameter.
904 Bind `standard-output' to stream we create using
905 `ielm-standard-output-impl'. Suppress printing result when
906 `for-effect'.
907 (ielm-standard-output-impl): New function.
908 (inferior-emacs-lisp-mode): Explain new features in documentation.
909
910 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
911
912 Code cleanup.
913
914 * net/tramp.el (tramp-debug-message): Do not check for connection
915 buffer.
916 (tramp-message): Use "vector" connection property.
917
918 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
919 (tramp-equal-remote, tramp-eshell-directory-change)
920 * net/tramp-adb.el (tramp-adb-handle-copy-file)
921 (tramp-adb-handle-rename-file)
922 * net/tramp-cmds.el (tramp-list-remote-buffers)
923 (tramp-cleanup-connection, tramp-cleanup-this-connection)
924 * net/tramp-compat.el (tramp-compat-process-running-p)
925 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
926 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
927 (tramp-gvfs-handle-rename-file)
928 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
929 (tramp-set-file-uid-gid)
930 * net/tramp-smb.el (tramp-smb-handle-copy-file)
931 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
932 of `file-remote-p'.
933
934 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
935 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
936 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
937 (tramp-gw-open-network-stream): Suppress unrelated traces.
938
939 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
940 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
941 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
942 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
943 connection property.
944
945 * net/tramp-cache.el (top): Suppress traces when reading
946 persistency file.
947
948 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
949 Refactor common code. Improve debug message.
950 (tramp-maybe-open-connection)
951 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
952 connection buffer too early.
953
954 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
955 from `tramp-smb-actions-with-acl'.
956 (tramp-smb-actions-set-acl): New defconst.
957 (tramp-smb-handle-copy-directory)
958 (tramp-smb-action-get-acl): New defun, renamed from
959 `tramp-smb-action-with-acl'.
960 (tramp-smb-action-set-acl): New defun.
961 (tramp-smb-handle-set-file-acl): Rewrite.
962
963 2013-10-17 Glenn Morris <rgm@gnu.org>
964
965 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
966
967 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
968
969 * skeleton.el (skeleton-newline): Remove.
970 (skeleton-internal-1): Use (insert "\n") instead.
971
972 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
973 let-bindings.
974
975 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
976 forward-sexp-function while we redo its job (bug#15613).
977
978 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
979
980 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
981 represented by lists.
982
983 2013-10-16 Glenn Morris <rgm@gnu.org>
984
985 * tmm.el (tmm--history): New dynamic variable.
986 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
987
988 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
989
990 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
991 (tramp-smb-errors): Add error messages.
992 (tramp-smb-actions-with-acl): New defconst.
993 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
994 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
995 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
996 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
997 (tramp-smb-get-stat-capability): Fix tests.
998
999 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
1000
1001 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
1002 (bug#15580).
1003
1004 2013-10-16 Glenn Morris <rgm@gnu.org>
1005
1006 * ansi-color.el (ansi-color-drop-regexp):
1007 Add 1J, 1K, 2K. (Bug#15617)
1008
1009 * files.el (hack-local-variables--warned-lexical): New.
1010 (hack-local-variables):
1011 Warn about misplaced lexical-binding. (Bug#15616)
1012
1013 * net/eww.el (eww-render): Always set eww-current-url,
1014 and update header line. (Bug#15622)
1015 (eww-display-html): ... Rather than just doing it here.
1016
1017 2013-10-15 Eli Zaretskii <eliz@gnu.org>
1018
1019 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
1020 menu navigations commands.
1021
1022 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
1023
1024 * progmodes/subword.el (subword-capitalize): Be careful when
1025 the search for [[:alpha:]] fails (bug#15580).
1026
1027 2013-10-14 Eli Zaretskii <eliz@gnu.org>
1028
1029 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
1030 to commands that scroll the menu.
1031
1032 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
1033
1034 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
1035 Handle methods ending with `?' and `!'.
1036
1037 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
1038
1039 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
1040 `japanese-cp932' to `cp932' to fix the problem where saving a
1041 source file written in Shift_JIS twice would end up having
1042 `coding: japanese-cp932' which Ruby could not recognize.
1043 (ruby-mode-set-encoding): Add support for encodings mapped to nil
1044 in `ruby-encoding-map'.
1045 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
1046 doesn't need to be explicitly declared in magic comment.
1047 (ruby-encoding-map): Add type declaration for better customize UI.
1048
1049 2013-10-13 Glenn Morris <rgm@gnu.org>
1050
1051 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
1052 Occur buffers are read-only. http://bugs.debian.org/720775
1053
1054 * emacs-lisp/authors.el (authors-fixed-entries):
1055 Comment out old alpha stuff.
1056
1057 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
1058
1059 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
1060 to `after-save-hook' instead of `before-save-hook'.
1061 (ruby-mode-set-encoding): Use the value of coding system used to
1062 write the file. Call `basic-save-buffer-1' after modifying the
1063 buffer.
1064
1065 2013-10-13 Alan Mackenzie <acm@muc.de>
1066
1067 Fix indentation/fontification of Java enum with
1068 "implements"/generic.
1069
1070 * progmodes/cc-engine.el (c-backward-over-enum-header):
1071 Extracted from the three other places and enhanced to handle generics.
1072 (c-inside-bracelist-p): Uses new function above.
1073 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
1074 function above.
1075 (c-font-lock-enum-tail): Uses new function above.
1076
1077 2013-10-13 Kenichi Handa <handa@gnu.org>
1078
1079 * international/mule-cmds.el (select-safe-coding-system): Remove a
1080 superfluous condition in chekcing whether a coding system is safe
1081 or not.
1082
1083 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
1084
1085 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
1086
1087 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
1088
1089 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
1090
1091 2013-10-13 Glenn Morris <rgm@gnu.org>
1092
1093 * menu-bar.el (menu-bar-update-buffers):
1094 Unify Buffers menu prompt string. (Bug#15576)
1095
1096 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
1097
1098 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
1099 Add some entries.
1100 (authors-fixed-entries): Use accented form of name.
1101
1102 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1103
1104 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
1105 method calls (bug#15594).
1106 (ruby-smie--args-separator-p): New function.
1107 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
1108 recognize paren-free method calls.
1109
1110 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
1111 internals of universal-argument.
1112
1113 2013-10-11 Eli Zaretskii <eliz@gnu.org>
1114
1115 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
1116 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
1117 dropped menu on second mouse click on the menu bar.
1118
1119 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1120
1121 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
1122 (explicit-shell-file-name): Declare.
1123 (sh--vars-before-point, sh--cmd-completion-table): New functions.
1124 (sh-completion-at-point-function): New function.
1125 (sh-mode): Use it.
1126 (sh-smie--keyword-p): Remove unused argument.
1127 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
1128 vars.
1129 (sh-set-shell): Always setup SMIE, even if we use the
1130 old indentation code.
1131
1132 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
1133
1134 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
1135 cases of ? and =.
1136 (ruby-smie-rules): Simplify the "do" rule. The cases when the
1137 predicate would return nil are almost non-existent.
1138 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
1139
1140 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
1141 cache also after commands that modify the buffer but don't move
1142 point.
1143
1144 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1145
1146 * env.el (substitute-env-in-file-name): New function.
1147 (substitute-env-vars): Extend the meaning of the optional arg.
1148
1149 2013-10-10 Eli Zaretskii <eliz@gnu.org>
1150
1151 * term/w32-win.el (dynamic-library-alist): Define separate lists
1152 of GIF DLLs for versions before and after 5.0.0 of giflib.
1153 (Bug#15531)
1154
1155 2013-10-10 João Távora <joaotavora@gmail.com>
1156
1157 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
1158 not locked, use last revision and current source as
1159 defaults. (Bug#15569)
1160
1161 2013-10-10 Masatake YAMATO <yamato@redhat.com>
1162
1163 * menu-bar.el (menu-bar-open): Don't use popup-menu if
1164 menu-bar is hidden.
1165
1166 2013-10-10 Martin Rudalics <rudalics@gmx.at>
1167
1168 * window.el (pop-to-buffer-same-window): Fix doc-string.
1169 (Bug#15492)
1170
1171 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1172
1173 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
1174
1175 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
1176
1177 * calendar/icalendar.el (icalendar-import-file):
1178 Fix interactive spec. (Bug#15482)
1179
1180 2013-10-10 Glenn Morris <rgm@gnu.org>
1181
1182 * desktop.el (desktop-save): Default to saving in .emacs.d,
1183 since PWD is no longer in desktop-path by default. (Bug#15319)
1184
1185 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
1186 now that text mode has a menu with the same entry.
1187 (menu-bar-text-mode-auto-fill): Remove now unused func.
1188 * textmodes/text-mode.el (text-mode-map):
1189 Use auto-fill help text from menu-bar.el.
1190
1191 2013-10-10 John Anthony <john@jo.hnanthony.com>
1192
1193 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
1194
1195 2013-10-09 Juri Linkov <juri@jurta.org>
1196
1197 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
1198 instead of this-command-keys. Add universal-argument-more and
1199 universal-argument-minus to the list of prefix commands. (Bug#15568)
1200
1201 2013-10-09 Glenn Morris <rgm@gnu.org>
1202
1203 * vc/vc-svn.el (vc-svn-create-repo):
1204 Expand paths in file://... url. (Bug#15446)
1205
1206 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
1207 Add some entries.
1208 (authors): Remove unused local variables.
1209
1210 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1211
1212 * profiler.el: Create a more coherent calltree from partial backtraces.
1213 (profiler-format): Hide the tail with `invisible' so that C-s can still
1214 find the hidden elements.
1215 (profiler-calltree-depth): Don't recurse so enthusiastically.
1216 (profiler-function-equal): New hash-table-test.
1217 (profiler-calltree-build-unified): New function.
1218 (profiler-calltree-build): Use it.
1219 (profiler-report-make-name-part): Indent the calltree less.
1220 (profiler-report-mode): Add visibility specs for profiler-format.
1221 (profiler-report-expand-entry, profiler-report-toggle-entry):
1222 Expand the whole subtree when provided with a prefix arg.
1223
1224 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
1225
1226 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
1227 iuwu-mod token.
1228 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
1229 hanging iuwu-mod token.
1230 (ruby-smie--forward-token): Do not include a dot after a token in
1231 that token.
1232 (ruby-smie--backward-token): Likewise.
1233
1234 2013-10-08 Juri Linkov <juri@jurta.org>
1235
1236 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
1237 to isearch-other-control-char.
1238 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
1239 and isearch-post-command-hook to post-command-hook.
1240 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
1241 and isearch-post-command-hook from post-command-hook.
1242 (isearch-unread-key-sequence)
1243 (isearch-reread-key-sequence-naturally)
1244 (isearch-lookup-scroll-key, isearch-other-control-char)
1245 (isearch-other-meta-char): Remove functions.
1246 (isearch-pre-command-hook, isearch-post-command-hook):
1247 New functions based on isearch-other-meta-char rewritten
1248 relying on the new behavior of overriding-terminal-local-map
1249 that does not replace the local keymaps any more. (Bug#15200)
1250
1251 2013-10-08 Eli Zaretskii <eliz@gnu.org>
1252
1253 Support menus on text-mode terminals.
1254 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
1255 functionality.
1256
1257 * tooltip.el (tooltip-mode): Don't error out on TTYs.
1258
1259 * menu-bar.el (popup-menu, popup-menu-normalize-position):
1260 Move here from mouse.el.
1261 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
1262 and arrow keys.
1263 (tty-menu-navigation-map): New map for TTY menu navigation.
1264
1265 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
1266
1267 * frame.el (display-mouse-p): Report text-mode mouse as available
1268 on w32.
1269 (display-popup-menus-p): Report availability if mouse is
1270 available; don't condition on window-system.
1271
1272 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
1273 (tty-menu-selected-face): New faces.
1274
1275 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1276
1277 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
1278 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
1279 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
1280 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
1281 New constants.
1282 (lisp-mode-variables): New `elisp' argument.
1283 (emacs-lisp-mode): Use it.
1284 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
1285 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
1286
1287 * indent.el: Use lexical-binding.
1288 (indent-region): Add progress reporter.
1289 (tab-stop-list): Make it implicitly extend to infinity by repeating the
1290 last step.
1291 (indent--next-tab-stop): New function to implement this behavior.
1292 (tab-to-tab-stop, move-to-tab-stop): Use it.
1293
1294 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
1295
1296 * indent.el (indent-rigidly--current-indentation): New function.
1297 (indent-rigidly-map): New var.
1298 (indent-rigidly): Use it to provide interactive mode (bug#8196).
1299
1300 2013-10-08 Bastien Guerry <bzg@gnu.org>
1301
1302 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
1303
1304 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1305
1306 * progmodes/perl-mode.el: Use lexical-binding.
1307 Remove redundant :group args.
1308 (perl-nochange): Change default to be closer to other major modes's
1309 standard behavior.
1310 (perl-indent-line): Don't consider text on current line as a
1311 valid beginning of function from which to indent.
1312
1313 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
1314 with more than one argument (bug#15538).
1315
1316 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
1317
1318 * vc/pcvs.el: Use lexical-binding.
1319 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
1320 environment of `eval'.
1321 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
1322 than a list of expressions. Adjust callers.
1323 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
1324
1325 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
1326
1327 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
1328 case of the dot in a chained method call being on the following line.
1329
1330 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1331
1332 * electric.el (electric-indent-inhibit): New var.
1333 (electric-indent-post-self-insert-function): Use it.
1334 * progmodes/python.el (python-mode): Set it.
1335
1336 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
1337 open braces.
1338
1339 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
1340
1341 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
1342 (css-mode): Use electric-indent-chars.
1343
1344 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
1345 (font-lock-beg, font-lock-end): Move before first use.
1346 (nxml-mode): Use syntax-propertize-function.
1347 (nxml-after-change, nxml-after-change1): Adjust accordingly.
1348 (nxml-extend-after-change-region): Remove.
1349 * nxml/xmltok.el: Use lexical-binding.
1350 (xmltok-save): Use `declare'.
1351 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
1352 * nxml/nxml-util.el: Use lexical-binding.
1353 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
1354 Use `declare'.
1355 * nxml/nxml-ns.el: Use lexical-binding.
1356 (nxml-ns-save): Use `declare'.
1357 (nxml-ns-prefixes-for): Avoid add-to-list.
1358 * nxml/rng-match.el: Use lexical-binding.
1359 (rng--ipattern): Use cl-defstruct.
1360 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
1361 (rng-cons-group-after, rng-subst-group-after)
1362 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
1363 Use closures instead of `(lambda...).
1364
1365 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
1366
1367 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
1368 of BEG and END.
1369
1370 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1371 Use `tramp-handle-insert-file-contents'.
1372 (tramp-gvfs-handle-insert-file-contents): Remove function.
1373
1374 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1375 Use `save-restriction' in order to keep markers.
1376
1377 * net/trampver.el: Update release number.
1378
1379 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1380
1381 * progmodes/compile.el (compilation-parse-errors):
1382 Use compilation--put-prop.
1383 (compilation--ensure-parse): Check compilation-multiline.
1384
1385 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
1386
1387 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
1388 lexical-binding.
1389
1390 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
1391
1392 * progmodes/ruby-mode.el: Fix recently added tests.
1393 (ruby-smie-grammar): Add - and +.
1394 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
1395 (ruby-smie--backward-id): New functions.
1396 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
1397 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
1398 any more.
1399
1400 2013-10-07 Leo Liu <sdl.web@gmail.com>
1401
1402 * register.el (register-preview-delay)
1403 (register-preview-functions): New variables.
1404 (register-read-with-preview, register-preview)
1405 (register-describe-oneline): New functions.
1406 (point-to-register, window-configuration-to-register)
1407 (frame-configuration-to-register, jump-to-register)
1408 (number-to-register, view-register, insert-register)
1409 (copy-to-register, append-to-register, prepend-to-register)
1410 (copy-rectangle-to-register): Use register-read-with-preview to
1411 read register. (Bug#15525)
1412
1413 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
1414
1415 * net/network-stream.el (network-stream-open-starttls): Don't add
1416 --insecure if it's already present, because that gnutls-cli
1417 rejects getting that parameter twice.
1418
1419 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
1420
1421 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
1422 keyword, too.
1423
1424 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
1425
1426 * newcomment.el (comment-use-global-state): Change default value
1427 to t, mark obsolete (Bug#15251).
1428 (comment-beginning): In addition to `comment-to-syntax', check the
1429 value of `comment-use-global-state'.
1430
1431 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1432
1433 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
1434 (ruby-comment-column): Follow the global default, by default.
1435 (ruby-smie-grammar): Add assignment syntax.
1436 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
1437 open-paren, a comma, or a \.
1438 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
1439 and line continuations.
1440 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
1441 followed by implicit semi-colons. Add rule for string concatenation
1442 and for indentation at BOB.
1443 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
1444
1445 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
1446 calling next-sexp, since next-token may have skipped chars which
1447 next-sexp doesn't know should be skipped!
1448
1449 2013-10-05 Leo Liu <sdl.web@gmail.com>
1450
1451 * progmodes/octave.el (octave-send-region):
1452 Call compilation-forget-errors.
1453
1454 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1455
1456 * vc/vc-svn.el (vc-svn-find-admin-dir):
1457 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
1458 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
1459 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
1460 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
1461
1462 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1463
1464 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
1465
1466 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1467
1468 * subr.el (read-passwd): Hide chars even when called within a context
1469 where after-change-functions is disabled (bug#15501).
1470 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
1471 until we removed ourself from overriding-terminal-local-map.
1472
1473 2013-10-04 Leo Liu <sdl.web@gmail.com>
1474
1475 * progmodes/octave.el (inferior-octave-mode):
1476 Call compilation-forget-errors.
1477
1478 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1479
1480 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
1481
1482 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
1483
1484 * net/secrets.el (secrets-create-collection): Add optional
1485 argument ALIAS. Use proper Label keyword. Append ALIAS as
1486 dbus-call-method argument. (Bug#15516)
1487
1488 2013-10-04 Leo Liu <sdl.web@gmail.com>
1489
1490 * progmodes/octave.el (inferior-octave-error-regexp-alist)
1491 (inferior-octave-compilation-font-lock-keywords): New variables.
1492 (compilation-error-regexp-alist)
1493 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
1494 (inferior-octave-mode): Use compilation-shell-minor-mode.
1495
1496 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
1497
1498 * minibuffer.el (completion--replace): Be careful that `end' might be
1499 a marker.
1500
1501 2013-10-03 Daiki Ueno <ueno@gnu.org>
1502
1503 Add support for package signature checking.
1504 * emacs-lisp/package.el (url-http-file-exists-p)
1505 (epg-make-context, epg-context-set-home-directory)
1506 (epg-verify-string, epg-context-result-for)
1507 (epg-signature-status, epg-signature-to-string)
1508 (epg-check-configuration, epg-configuration)
1509 (epg-import-keys-from-file): Declare.
1510 (package-check-signature): New user option.
1511 (package-unsigned-archives): New user option.
1512 (package-desc): Add `signed' field.
1513 (package-load-descriptor): Set `signed' field if .signed file exists.
1514 (package--archive-file-exists-p): New function.
1515 (package--check-signature): New function.
1516 (package-install-from-archive): Check package signature.
1517 (package--download-one-archive): Check archive signature.
1518 (package-delete): Remove .signed file.
1519 (package-import-keyring): New command.
1520 (package-refresh-contents): Import default keyring.
1521 (package-desc-status): Add "unsigned" status.
1522 (describe-package-1, package-menu--print-info)
1523 (package-menu-mark-delete, package-menu--find-upgrades)
1524 (package-menu--status-predicate): Support "unsigned" status.
1525
1526 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1527
1528 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
1529 the new compilation scheme using the new byte-codes.
1530
1531 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
1532 (byte-pophandler): New byte codes.
1533 (byte-goto-ops): Adjust accordingly.
1534 (byte-compile--use-old-handlers): New var.
1535 (byte-compile-catch): Use new byte codes depending on
1536 byte-compile--use-old-handlers.
1537 (byte-compile-condition-case--old): Rename from
1538 byte-compile-condition-case.
1539 (byte-compile-condition-case--new): New function.
1540 (byte-compile-condition-case): New function that dispatches depending
1541 on byte-compile--use-old-handlers.
1542 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
1543 when we can.
1544
1545 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1546 Optimize under `condition-case' and `catch' if
1547 byte-compile--use-old-handlers is nil.
1548 (disassemble-offset): Handle new bytecodes.
1549
1550 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1551
1552 * subr.el (error): Use `declare'.
1553 (decode-char, encode-char): Use advertised-calling-convention instead
1554 of the docstring to discourage use of the `restriction' arg.
1555
1556 2013-10-03 Daiki Ueno <ueno@gnu.org>
1557
1558 * epg.el (epg-verify-file): Add a comment saying that it does not
1559 notify verification error as a return value nor a signal.
1560 (epg-verify-string): Ditto.
1561
1562 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1563
1564 * progmodes/compile.el (compilation-start): Try globbing the arg to
1565 `cd' (bug#15417).
1566
1567 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
1568
1569 Sync with Tramp 2.2.8.
1570
1571 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1572 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
1573 * net/trampver.el: Update release number.
1574
1575 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
1576
1577 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1578 and default-process-coding-system for darwin only.
1579
1580 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1581
1582 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
1583
1584 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
1585
1586 * vc/vc-git.el (vc-git-grep): Disable pager.
1587
1588 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
1589
1590 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
1591 Use :url instead of :homepage, as per
1592 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
1593
1594 * newcomment.el (comment-beginning): When `comment-use-syntax' is
1595 non-nil, use `syntax-ppss' (Bug#15251).
1596
1597 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1598
1599 * progmodes/octave.el (inferior-octave-startup-file):
1600 Prefer ~/.emacs.d/init_octave.m.
1601
1602 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
1603
1604 * emacs-lisp/package.el (package-desc-from-define):
1605 Accept additional arguments as plist, convert them to an alist and store
1606 them in the `extras' slot.
1607 (package-generate-description-file): Convert extras alist back to
1608 plist and append to the `define-package' form arguments.
1609 (package--alist-to-plist): New function.
1610 (package--ac-desc): Add `extras' slot.
1611 (package--add-to-archive-contents): Check if the archive-contents
1612 vector is long enough, and if it is, pass its `extras' slot value
1613 to `package-desc-create'.
1614 (package-buffer-info): Call `lm-homepage', pass the returned value
1615 to `package-desc-from-define'.
1616 (describe-package-1): Render the homepage button (Bug#13291).
1617
1618 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1619 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
1620
1621 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
1622
1623 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1624 and default-process-coding-system to utf-8-unix (Bug#15402).
1625
1626 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
1627
1628 * subr.el (looking-back): Do not recommend using looking-back.
1629
1630 2013-09-28 Alan Mackenzie <acm@muc.de>
1631
1632 Fix indentation/fontification of Java enum with "implements".
1633
1634 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
1635 regexp which matches "implements", etc., in Java.
1636 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
1637 specifier clauses coming after "enum".
1638 * progmodes/cc-fonts.el (c-font-lock-declarations)
1639 (c-font-lock-enum-tail): Check for extra specifier clauses coming
1640 after "enum".
1641
1642 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
1643
1644 * faces.el (region): Change ns_selection_color to
1645 ns_selection_fg_color, add ns_selection_bg_color.
1646
1647 2013-09-28 Leo Liu <sdl.web@gmail.com>
1648
1649 * progmodes/octave.el (inferior-octave-completion-table)
1650 (inferior-octave-completion-at-point): Minor tweaks.
1651
1652 * textmodes/ispell.el (ispell-lookup-words): Rename from
1653 lookup-words. (Bug#15460)
1654 (lookup-words): Obsolete.
1655 (ispell-complete-word, ispell-command-loop): All uses changed.
1656
1657 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1658
1659 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
1660 (octave-mode-menu): Add octave-send-buffer.
1661 (octave-send-buffer): New function.
1662
1663 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1664
1665 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
1666 octave-lookfor.
1667 (octave-mode-menu): Add octave-lookfor.
1668 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
1669 octave-lookfor.
1670 (octave-lookfor): New function.
1671
1672 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1673
1674 * emacs-lisp/cl-macs.el:
1675 (cl--loop-destr-temps): Remove.
1676 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
1677 its convention.
1678 (cl--loop-set-iterator-function): New function.
1679 (cl-loop): Adjust accordingly, so as not to use cl-subst.
1680 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
1681 Bind `it' with `let' instead of substituting it with `cl-subst'.
1682 (cl--unused-var-p): New function.
1683 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
1684 Eliminate some unused variable warnings (bug#15326).
1685
1686 2013-09-27 Tassilo Horn <tsdh@gnu.org>
1687
1688 * doc-view.el (doc-view-scale-reset): Rename from
1689 `doc-view-reset-zoom-level'.
1690 (doc-view-scale-adjust): New command.
1691 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
1692 `doc-view-scale-adjust'.
1693
1694 2013-09-26 Tassilo Horn <tsdh@gnu.org>
1695
1696 * doc-view.el (doc-view-reset-zoom-level): New command.
1697 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
1698 zoom commands (bug#15466).
1699
1700 2013-09-26 Kenichi Handa <handa@gnu.org>
1701
1702 * international/quail.el (quail-help): Make it not a command.
1703
1704 2013-09-26 Leo Liu <sdl.web@gmail.com>
1705
1706 * minibuffer.el (completion-all-sorted-completions): Make args
1707 optional as they are.
1708
1709 2013-09-25 Daniel Colascione <dancol@dancol.org>
1710
1711 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
1712 specs are and that they're not evaluated.
1713
1714 2013-09-24 Sam Steingold <sds@gnu.org>
1715
1716 * midnight.el (clean-buffer-list-kill-regexps)
1717 (clean-buffer-list-kill-buffer-names): Update for the new Man
1718 buffer naming which includes the object name.
1719
1720 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1721
1722 * eshell/esh-cmd.el (eshell--sep-terms): New var.
1723 (eshell-parse-command, eshell-parse-pipeline): Use it since
1724 eshell-separate-commands requires a dynamic scoped var.
1725 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
1726
1727 2013-09-23 Leo Liu <sdl.web@gmail.com>
1728
1729 * autoinsert.el (auto-insert-alist): Make the value of
1730 lexical-binding match its file setting.
1731
1732 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
1733
1734 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1735
1736 * autoarg.el (autoarg-kp-digit-argument):
1737 * electric.el (Electric-command-loop):
1738 * kmacro.el (kmacro-step-edit-insert):
1739 Do not set universal-argument-num-events.
1740
1741 2013-09-22 Leo Liu <sdl.web@gmail.com>
1742
1743 * files.el (interpreter-mode-alist): Add octave.
1744
1745 2013-09-21 Alan Mackenzie <acm@muc.de>
1746
1747 C++: fontify identifier in declaration following "public:" correctly.
1748 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1749 to match "public", etc.
1750 (c-decl-prefix-re): Add ":" into the C++ value.
1751 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1752 bit. Add a check for a ":" preceded by "public", etc.
1753
1754 2013-09-21 Eli Zaretskii <eliz@gnu.org>
1755
1756 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1757 recognized by GDB 7.5 and later.
1758
1759 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1760
1761 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1762
1763 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1764
1765 * subr.el (internal--call-interactively): New const.
1766 (called-interactively-p): Use it (bug#3984).
1767
1768 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1769
1770 * vc/pcvs.el (cvs-mode-ignore):
1771 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1772 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
1773
1774 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1775
1776 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1777 (eshell-ls-orig-insert-directory): Remove.
1778 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1779 (eshell-ls-use-in-dired): Use advice-add/remove.
1780 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1781 Add `orig-fun' arg for use in :around advice.
1782 Make it check (redundantly) eshell-ls-use-in-dired.
1783
1784 2013-09-19 Glenn Morris <rgm@gnu.org>
1785
1786 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1787
1788 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1789
1790 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1791
1792 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
1793
1794 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1795 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1796 (tramp-get-remote-python): New defuns.
1797 (tramp-get-remote-uid-with-perl)
1798 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1799 contributed by yary <not.com@gmail.com> (tiny change).
1800 (tramp-get-remote-uid-with-python)
1801 (tramp-get-remote-gid-with-python): New defuns. Python code
1802 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1803 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1804
1805 2013-09-19 Glenn Morris <rgm@gnu.org>
1806
1807 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1808
1809 * eshell/em-unix.el (eshell-remove-entries):
1810 Rename argument to avoid name-clash with global `top-level'.
1811
1812 * eshell/esh-proc.el (eshell-kill-process-function):
1813 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1814 (eshell-reset-after-proc): Remove unused arg `proc'.
1815
1816 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1817 (directory-files-and-attributes): Mark unused arg.
1818
1819 * eshell/em-unix.el (eshell-remove-entries):
1820 Remove unused arg `path'. Update callers.
1821
1822 * eshell/em-hist.el (eshell-hist-parse-arguments):
1823 Remove unused arg `silent'. Update callers.
1824
1825 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1826 Fix (f)boundp mix-up.
1827
1828 * eshell/em-smart.el (eshell-smart-scroll-window)
1829 (eshell-disable-after-change):
1830 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
1831
1832 2013-09-18 Alan Mackenzie <acm@muc.de>
1833
1834 Fix fontification of type when followed by "const".
1835 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1836 "known" types from fontification.
1837
1838 2013-09-18 Glenn Morris <rgm@gnu.org>
1839
1840 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1841 (chart-face-list): Drop Emacsen without display-color-p.
1842
1843 * net/eww.el (libxml-parse-html-region): Declare.
1844 (eww-display-html): Explicit error if no libxml2 support.
1845
1846 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1847
1848 * image.el (image-type-from-buffer, image-multi-frame-p):
1849 Remove --without-x warning/error.
1850
1851 * mouse.el (mouse-yank-primary):
1852 * term.el (term-mouse-paste):
1853 Reorder to silence --without-x compilation.
1854
1855 * mpc.el (doc-view-mode): Silence --without-x compilation.
1856
1857 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1858 Silence --without-x compilation.
1859
1860 * progmodes/gud.el (gud-find-file, gud-mode):
1861 Silence --without-x compilation.
1862 (tooltip-mode): Declare.
1863
1864 * wdired.el (dired-backup-overwrite): Remove declaration.
1865 (wdired-mode-map): Add doc string.
1866
1867 * custom.el (x-get-resource): Declare.
1868
1869 * eshell/em-glob.el (ange-cache):
1870 * eshell/em-unix.el (ange-cache): Declare.
1871
1872 * faces.el (x-display-list, x-open-connection, x-get-resource):
1873 Declare.
1874
1875 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1876 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1877 Declare.
1878
1879 * frame.el (x-display-grayscale-p, x-display-name): Declare.
1880
1881 * net/gnutls.el (gnutls-log-level): Declare.
1882
1883 * net/shr.el (image-size, image-animate): Declare.
1884
1885 * simple.el (font-info): Declare.
1886
1887 * subr.el (x-popup-dialog): Declare.
1888
1889 * term/common-win.el (x-select-enable-primary)
1890 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1891 Declare.
1892
1893 * term/ns-win.el (x-handle-args): Declare.
1894
1895 * term/x-win.el (x-select-enable-clipboard): Declare.
1896
1897 * term/w32-win.el (create-default-fontset): Declare.
1898
1899 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1900 Declare.
1901
1902 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1903 (fit-frame-to-buffer): Explicit error if --without-x.
1904 (mouse-autoselect-window-select): Silence compiler.
1905
1906 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1907
1908 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1909 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1910 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
1911 * eshell/esh-util.el (eshell-sublist):
1912 Remove unused local variables.
1913
1914 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1915
1916 * textmodes/two-column.el: Make 2C-split work for --without-x.
1917 (scroll-bar-columns): Autoload.
1918 (top-level): Require fringe when compiling.
1919
1920 2013-09-18 Leo Liu <sdl.web@gmail.com>
1921
1922 * subr.el (add-hook): Robustify to handle closure as well.
1923
1924 2013-09-17 Glenn Morris <rgm@gnu.org>
1925
1926 * simple.el (messages-buffer-mode-map): Unbind "g".
1927
1928 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1929
1930 * help-mode.el (help-mode-finish): Use derived-mode-p.
1931 Remove obsolete highlighting.
1932
1933 * play/life.el (life-mode): Use define-derived-mode. Derive from
1934 special-mode.
1935 (life): Let-bind inhibit-read-only.
1936 (life-setup): Avoid `setq'. Use `life-mode'.
1937
1938 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1939 which should not be needed any more.
1940 (package-menu-refresh, package-menu-describe-package): Use user-error.
1941
1942 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1943 (eshell-post-rewrite-command-hook): Make obsolete.
1944 (eshell-parse-command): Simplify.
1945 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1946 (eshell--cmd): Declare.
1947 (eshell-parse-pipeline): Remove unused var `final-p'.
1948 Pass a dynvar to eshell-post-rewrite-command-hook.
1949 Implement the new eshell-post-rewrite-command-function.
1950 (eshell-invoke-directly): Remove unused arg `input'.
1951 * eshell/esh-io.el (eshell-io-initialize):
1952 Use eshell-post-rewrite-command-function (bug#15399).
1953 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1954 adjust to new calling convention.
1955 (eshell-create-handles): Rename args to avoid clashing with dynvar
1956 `standard-output'.
1957
1958 2013-09-17 Glenn Morris <rgm@gnu.org>
1959
1960 * simple.el (messages-buffer-mode): New major mode.
1961 (messages-buffer): New function.
1962 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1963 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
1964 (ert-run-test): Use `messages-buffer' function.
1965 (ert--force-message-log-buffer-truncation): Ignore read-only.
1966 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1967 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
1968
1969 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1970
1971 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1972
1973 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1974
1975 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * icomplete.el (icomplete-in-buffer): New var.
1978 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1979 vars and replace them with functions.
1980 (icomplete-minibuffer-setup): Adjust accordingly.
1981 (icomplete--completion-table, icomplete--completion-predicate)
1982 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1983 New functions.
1984 (icomplete-forward-completions, icomplete-backward-completions)
1985 (icomplete-simple-completing-p, icomplete-exhibit)
1986 (icomplete-completions): Use them.
1987 (icomplete--in-region-buffer): New var.
1988 (icomplete--in-region-setup): New function.
1989 (icomplete-mode): Use it.
1990
1991 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1992 (bug#15379).
1993 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1994 return args and options.
1995 (eshell-eval-using-options): Use the new return value of
1996 eshell--do-opts to set the options's vars in their scope.
1997 (eshell--set-option): Rename from eshell-set-option.
1998 Add arg `opt-vals'.
1999 (eshell--process-option): Rename from eshell-process-option.
2000 Add arg `opt-vals'.
2001 (eshell--process-args): Use an `opt-vals' alist to store the options's
2002 values during their processing and return them additionally to the
2003 remaining args.
2004
2005 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
2006
2007 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
2008 continuation character an operator, as far as indentation is
2009 concerned (Bug#15369).
2010
2011 2013-09-15 Martin Rudalics <rudalics@gmx.at>
2012
2013 * window.el (window--state-put-2): Don't process buffer state
2014 when buffer doesn't exist any more (Bug#15382).
2015
2016 2013-09-15 Glenn Morris <rgm@gnu.org>
2017
2018 * eshell/em-unix.el (eshell/rm):
2019 Make -f ignore missing files. (Bug#15373)
2020
2021 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
2022 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
2023 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
2024
2025 2013-09-14 Glenn Morris <rgm@gnu.org>
2026
2027 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
2028
2029 2013-09-13 Glenn Morris <rgm@gnu.org>
2030
2031 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
2032 (dired-guess-default): Make `file' available in the env. (Bug#15363)
2033
2034 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2035
2036 * frame.el (x-focus-frame): Mark as declared in frame.c.
2037
2038 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2039
2040 * ls-lisp.el: Use advice-add.
2041 (original-insert-directory): Remove.
2042 (ls-lisp--insert-directory): Rename from insert-directory; add
2043 `orig-fun' argument.
2044 (insert-directory): Advise.
2045
2046 2013-09-13 Eli Zaretskii <eliz@gnu.org>
2047
2048 * term.el (term-emulate-terminal): Decode the command string
2049 before passing it to term-command-hook. (Bug#15337)
2050
2051 2013-09-13 Glenn Morris <rgm@gnu.org>
2052
2053 * eshell/esh-util.el (ange-cache): Move declaration earlier.
2054
2055 * eshell/esh-ext.el (eshell-search-path): Declare.
2056
2057 * eshell/em-prompt.el (eshell/pwd): Autoload it.
2058 Otherwise an error occurs if eshell-dirs module not loaded.
2059
2060 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
2061
2062 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
2063
2064 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
2065 `tramp-check-proper-host'. Check for a valid method name.
2066
2067 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2068 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2069 * net/tramp-sh.el (tramp-maybe-open-connection):
2070 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
2071
2072 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
2073 also for hash values.
2074
2075 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2076
2077 * term/ns-win.el (parameters): Don't declare as dynamic.
2078 (before-make-frame-hook): Don't add ineffective function.
2079
2080 * eshell/*.el: Use lexical-binding (bug#15231).
2081
2082 2013-09-12 Kenichi Handa <handa@gnu.org>
2083
2084 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
2085
2086 2013-09-12 Glenn Morris <rgm@gnu.org>
2087
2088 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
2089 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
2090
2091 * subr.el (do-after-load-evaluation): Also give compiler warnings
2092 when obsolete files are used (except by obsolete files).
2093
2094 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
2095 in the status output, assume `filename' is the first. (Bug#15322)
2096
2097 * vc/vc.el (vc-deduce-fileset): Doc fix.
2098
2099 * calc/calc-help.el (Info-goto-node):
2100 * progmodes/cperl-mode.el (Info-find-node):
2101 * vc/ediff.el (Info-goto-node): Update declarations.
2102
2103 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
2104
2105 * vc/vc-bzr.el (vc-compilation-mode): Declare.
2106 (vc-bzr-pull): Require vc-dispatcher.
2107 * vc/vc-git.el (vc-compilation-mode): Declare.
2108 (vc-git-pull): Require vc-dispatcher.
2109
2110 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
2111
2112 * progmodes/octave.el (help-button-action): Declare.
2113
2114 * shell.el (shell-directory-tracker): Output error as a message
2115 rather than just returning it as a string.
2116 (shell-process-pushd): Remove useless use of message.
2117
2118 * dframe.el (dframe-timer-fn):
2119 * files.el (dir-locals-read-from-file):
2120 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
2121 (mpc-format):
2122 * reveal.el (reveal-post-command):
2123 * saveplace.el (load-save-place-alist-from-file):
2124 * shell.el (shell-resync-dirs):
2125 * w32-common-fns.el (x-get-selection-value):
2126 * emacs-lisp/copyright.el (copyright-find-copyright):
2127 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2128 * emulation/tpu-edt.el (tpu-copy-keyfile):
2129 * play/bubbles.el (bubbles--mark-neighbourhood):
2130 * progmodes/executable.el
2131 (executable-make-buffer-file-executable-if-script-p):
2132 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
2133
2134 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2135
2136 Cleanup Eshell to rely less on dynamic scoping.
2137 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
2138 last-value, and ext-command here. Bind `args' closer to `body'.
2139 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
2140 (eshell--args): Declare new dynamic var.
2141 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
2142 last-value, and ext-command. Pass `args' to `body'.
2143 (eshell-process-args): Bind eshell--args.
2144 (eshell-set-option): Use eshell--args.
2145 * eshell/eshell.el (eshell): Use derived-mode-p.
2146 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
2147 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
2148 (eshell-glob-function): Declare.
2149 * eshell/esh-util.el: Require cl-lib.
2150 (eshell-read-hosts-file): Avoid add-to-list.
2151 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
2152 `err'.
2153 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
2154 Declare.
2155 (eshell/diff): Remove unused var `err'.
2156 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
2157 `killflag'.
2158 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
2159 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
2160 first use.
2161 * eshell/em-glob.el (eshell-glob-matches, message-shown):
2162 Move declaration before first use.
2163 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
2164 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
2165 rely on cl-return.
2166
2167 2013-09-12 Glenn Morris <rgm@gnu.org>
2168
2169 * term/ns-win.el (global-map): Remove binding for ispell-next,
2170 deleted 1999-05-29. (Bug#15357)
2171
2172 2013-09-11 Glenn Morris <rgm@gnu.org>
2173
2174 * echistory.el (electric-command-history): Remove call to deleted func.
2175
2176 * play/landmark.el (landmark-mode): Fix typos.
2177
2178 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
2179 Check cvs-sort-ignore-file is bound.
2180
2181 * savehist.el: No need for cl when compiling on Emacs.
2182
2183 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2184
2185 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
2186 (bug#15338).
2187 (eshell-self-insert-command, eshell-send-invisible):
2188 Remove unused argument.
2189 (eshell-handle-control-codes): Remove unused var `orig'.
2190 Avoid delete-backward-char.
2191
2192 * files.el (set-auto-mode): Simplify a bit further.
2193
2194 2013-09-11 Glenn Morris <rgm@gnu.org>
2195
2196 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
2197 (set-auto-mode): Don't regexp-quote elements.
2198 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
2199 * progmodes/cc-mode.el (interpreter-mode-alist):
2200 * progmodes/ruby-mode.el (interpreter-mode-alist):
2201 Revert previous change.
2202
2203 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2204
2205 * play/snake.el (snake-mode):
2206 * play/mpuz.el (mpuz-mode):
2207 * play/landmark.el (lm-mode):
2208 * play/blackbox.el (blackbox-mode):
2209 * play/5x5.el (5x5-mode):
2210 * obsolete/options.el (Edit-options-mode):
2211 * net/quickurl.el (quickurl-list-mode):
2212 * net/newst-treeview.el (newsticker-treeview-mode):
2213 * mail/rmailsum.el (rmail-summary-mode):
2214 * mail/mspools.el (mspools-mode):
2215 * locate.el (locate-mode):
2216 * ibuffer.el (ibuffer-mode):
2217 * emulation/ws-mode.el (wordstar-mode):
2218 * emacs-lisp/debug.el (debugger-mode):
2219 * array.el (array-mode):
2220 * net/eudc.el (eudc-mode): Use define-derived-mode.
2221 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
2222 Move initialization into declaration.
2223 (mairix-searches-mode): Use define-derived-mode.
2224 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
2225 (eudc-edit-hotlist): Use dolist.
2226 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
2227 (Man-mode): Use define-derived-mode.
2228 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
2229 (Info-edit-mode): Use define-derived-mode.
2230 (Info-cease-edit): Use Info-mode.
2231 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
2232 into declaration.
2233 (eshell-mode): Use define-derived-mode.
2234 * chistory.el (command-history-mode-map): Rename from
2235 command-history-map.
2236 (command-history-mode): Use define-derived-mode.
2237 (Command-history-setup): Remove function.
2238 * calc/calc.el (calc-trail-mode-map): New var.
2239 (calc-trail-mode): Use define-derived-mode.
2240 (calc-trail-buffer): Set calc-main-buffer manually.
2241 * bookmark.el (bookmark-insert-annotation): New function.
2242 (bookmark-edit-annotation): Use it.
2243 (bookmark-edit-annotation-mode): Make it a proper major mode.
2244 (bookmark-send-edited-annotation): Use derived-mode-p.
2245 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
2246 closer to its ideal place. Use \' to match EOS.
2247
2248 * profiler.el (profiler-calltree-find): Use function-equal.
2249
2250 2013-09-10 Glenn Morris <rgm@gnu.org>
2251
2252 * files.el (interpreter-mode-alist): Convert to regexps.
2253 (set-auto-mode): Adapt for this. (Bug#15306)
2254 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
2255 Comment out unused variable.
2256 * progmodes/cc-mode.el (interpreter-mode-alist):
2257 * progmodes/python.el (interpreter-mode-alist):
2258 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
2259 * progmodes/sh-script.el (sh-set-shell):
2260 No longer use interpreter-mode-alist to get list of shells.
2261
2262 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
2263
2264 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2265
2266 * simple.el: Use set-temporary-overlay-map for universal-argument.
2267 (universal-argument-map): Don't use default-bindings (bug#15317).
2268 Bind switch-frame explicitly. Replace universal-argument-minus with
2269 a conditional binding.
2270 (universal-argument-num-events, saved-overriding-map): Remove.
2271 (restore-overriding-map): Remove.
2272 (universal-argument--mode): Rename from save&set-overriding-map,
2273 and rewrite.
2274 (universal-argument, universal-argument-more, negative-argument)
2275 (digit-argument): Adjust accordingly.
2276 (universal-argument-minus): Remove.
2277 (universal-argument-other-key): Remove.
2278
2279 * subr.el (with-demoted-errors): Add `format' argument.
2280
2281 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
2282
2283 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
2284 `tramp-cleanup-connection'.
2285
2286 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
2287 parameters KEEP-DEBUG and KEEP-PASSWORD.
2288
2289 * net/tramp.el (tramp-file-name-handler):
2290 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2291 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
2292 (tramp-maybe-open-connection):
2293 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2294 Use `tramp-cleanup-connection'.
2295
2296 * net/tramp-sh.el (tramp-maybe-open-connection):
2297 Catch 'uname-changed inside the progress reporter.
2298
2299 2013-09-10 Glenn Morris <rgm@gnu.org>
2300
2301 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
2302
2303 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
2304 returns "alternate access method" in mode (eg "-rw-r--r--.").
2305
2306 2013-09-08 Glenn Morris <rgm@gnu.org>
2307
2308 * saveplace.el (load-save-place-alist-from-file):
2309 Demote errors. (Bug#15305)
2310
2311 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
2312
2313 Improve compatibility with older Emacsen, and XEmacs.
2314
2315 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
2316 only if it is bound. It isn't for XEmacs.
2317 (with-tramp-progress-reporter): Do not let-bind `result'.
2318 This yields to scoping errors in XEmacs.
2319 (tramp-handle-make-auto-save-file-name): New function, moved from
2320 tramp-sh.el.
2321
2322 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
2323 for `make-auto-save-file-name'.
2324 (tramp-adb--gnu-switches-to-ash):
2325 Use `tramp-compat-replace-regexp-in-string'.
2326
2327 * net/tramp-cache.el (tramp-cache-print): Call
2328 `substring-no-properties' only if it is bound. It isn't for XEmacs.
2329
2330 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
2331 bound. It isn't for XEmacs.
2332
2333 * net/tramp-compat.el (tramp-compat-copy-file):
2334 Catch `wrong-number-of-arguments' error.
2335 (tramp-compat-replace-regexp-in-string): New defun.
2336
2337 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
2338 for `make-auto-save-file-name'.
2339 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
2340 `copy-file'.
2341 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
2342 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
2343 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
2344
2345 * net/tramp-gw.el (tramp-gw-open-network-stream):
2346 Use `tramp-compat-replace-regexp-in-string'.
2347
2348 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2349 Call `tramp-handle-make-auto-save-file-name'.
2350 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
2351 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2352 (tramp-sh-file-inotifywait-process-filter):
2353 Use `tramp-compat-replace-regexp-in-string'.
2354 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
2355
2356 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
2357 for `make-auto-save-file-name'.
2358 (tramp-smb-handle-copy-directory):
2359 Call `tramp-compat-replace-regexp-in-string'.
2360 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
2361 (tramp-smb-handle-copy-file): Improve error message.
2362 (tramp-smb-handle-rename-file): Rename directly only in case
2363 `newname' does not exist yet. This is a restriction of smbclient.
2364 (tramp-smb-maybe-open-connection): Rerun the function only when
2365 `auth-sources' is non-nil.
2366
2367 2013-09-08 Kenichi Handa <handa@gnu.org>
2368
2369 * international/characters.el: Set category "^" (Combining) for
2370 more characters.
2371
2372 2013-09-07 Alan Mackenzie <acm@muc.de>
2373
2374 Correctly fontify Java class constructors.
2375 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
2376 in Java Mode.
2377 (c-recognize-typeless-decls): Set the Java value to t.
2378 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
2379 While handling a "(", add a check for, effectively, Java, and handle a
2380 "typeless" declaration there.
2381
2382 2013-09-07 Roland Winkler <winkler@gnu.org>
2383
2384 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
2385 field subtitle for entry type book.
2386
2387 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2388
2389 * minibuffer.el: Make minibuffer-complete call completion-in-region
2390 rather than other way around.
2391 (completion--some, completion-pcm--find-all-completions):
2392 Don't delay signals when debugging.
2393 (minibuffer-completion-contents): Beware fields within the
2394 minibuffer contents.
2395 (completion-all-sorted-completions): Use defvar-local.
2396 (completion--do-completion, completion--cache-all-sorted-completions)
2397 (completion-all-sorted-completions, minibuffer-force-complete):
2398 Add args `beg' and `end'.
2399 (completion--in-region-1): New fun, extracted from minibuffer-complete.
2400 (minibuffer-complete): Use completion-in-region.
2401 (completion-complete-and-exit): New fun, extracted from
2402 minibuffer-complete-and-exit.
2403 (minibuffer-complete-and-exit): Use it.
2404 (completion--complete-and-exit): Rename from
2405 minibuffer--complete-and-exit.
2406 (completion-in-region--single-word): New function, extracted from
2407 minibuffer-complete-word.
2408 (minibuffer-complete-word): Use it.
2409 (display-completion-list): Make `common-substring' argument obsolete.
2410 (completion--in-region): Call completion--in-region-1 instead of
2411 minibuffer-complete.
2412 (completion-help-at-point): Pass boundaries to
2413 minibuffer-completion-help as args rather than via an overlay.
2414 (completion-pcm--string->pattern): Use `any-delim'.
2415 (completion-pcm--optimize-pattern): New function.
2416 (completion-pcm--pattern->regex): Handle `any-delim'.
2417 * icomplete.el (icomplete-forward-completions)
2418 (icomplete-backward-completions, icomplete-completions):
2419 Adjust calls to completion-all-sorted-completions and
2420 completion--cache-all-sorted-completions.
2421 (icomplete-with-completion-tables): Default to t.
2422 * emacs-lisp/crm.el (crm--current-element): Rename from
2423 crm--select-current-element. Don't put an overlay but return the
2424 boundaries instead.
2425 (crm--completion-command): Take two new args to bind to the boundaries.
2426 (crm-completion-help): Adjust accordingly.
2427 (crm-complete): Use completion-in-region.
2428 (crm-complete-word): Use completion-in-region--single-word.
2429 (crm-complete-and-exit): Use completion-complete-and-exit.
2430
2431 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2432
2433 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
2434 than dynamically.
2435
2436 2013-09-06 Juri Linkov <juri@jurta.org>
2437
2438 * info.el (Info-display-images-node): When image file doesn't exist
2439 display text version of the image if it's provided in the Info file.
2440 Otherwise, display the location of missing image from SRC attribute.
2441 Add help-echo text property from ALT attribute. (Bug#15279)
2442
2443 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2444
2445 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
2446 (edit-abbrevs-mode): Use define-derived-mode.
2447
2448 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
2449 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
2450 that it's defined.
2451 (epa-key-list-mode, epa-key-mode, epa-info-mode):
2452 Use define-derived-mode.
2453
2454 * epg.el (epg-start-encrypt): Minor CSE simplification.
2455
2456 2013-09-06 William Xu <william.xwl@gmail.com>
2457
2458 * arc-mode.el: Add support for 7za (bug#15264).
2459 (archive-7z-program): New var.
2460 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
2461 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
2462 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
2463
2464 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
2465
2466 Remove URL syntax.
2467
2468 * net/tramp.el (tramp-syntax, tramp-prefix-format)
2469 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
2470 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
2471 (tramp-postfix-host-format, tramp-file-name-regexp)
2472 (tramp-completion-file-name-regexp)
2473 (tramp-completion-dissect-file-name)
2474 (tramp-handle-substitute-in-file-name): Remove 'url case.
2475 (tramp-file-name-regexp-url)
2476 (tramp-completion-file-name-regexp-url): Remove constants.
2477
2478 2013-09-06 Glenn Morris <rgm@gnu.org>
2479
2480 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
2481
2482 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
2483
2484 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
2485 keywords" below "here-doc beginnings" (Bug#15270).
2486
2487 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2488
2489 * subr.el (pop): Use `car-safe'.
2490 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
2491 to detect unused `pop' return value.
2492
2493 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
2494 var `block-regexp'.
2495 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
2496 (python-fill-string): Remove unused var `marker'.
2497 (python-skeleton-add-menu-items): Remove unused var `items'.
2498
2499 * international/mule-cmds.el: Require CL.
2500 (find-coding-systems-for-charsets): Avoid add-to-list.
2501 (sanitize-coding-system-list): New function, extracted from
2502 select-safe-coding-system-interactively.
2503 (select-safe-coding-system-interactively): Use it.
2504 (read-input-method-name): Accept symbols for `default'.
2505
2506 * emacs-lisp/advice.el (defadvice): Add indent rule.
2507
2508 2013-09-05 Daniel Hackney <dan@haxney.org>
2509
2510 * dired-x.el:
2511 * net/ange-ftp.el:
2512 * net/browse-url.el:
2513 * net/dbus.el:
2514 * net/eudc.el:
2515 * net/eudcb-ldap.el:
2516 * net/eww.el:
2517 * net/imap.el:
2518 * printing.el:
2519 * vc/ediff-diff.el:
2520 * vc/ediff-init.el:
2521 * vc/ediff-merg.el:
2522 * vc/ediff-mult.el:
2523 * vc/ediff-util.el:
2524 * vc/ediff-wind.el:
2525 * vc/ediff.el:
2526 * vc/emerge.el:
2527 * vc/pcvs.el:
2528 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
2529 byte compiler. Remove some unused let-bound variables.
2530
2531 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2532
2533 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
2534 a "ref-cell", since it gets better optimized (bug#14883).
2535
2536 2013-09-05 Glenn Morris <rgm@gnu.org>
2537
2538 * progmodes/cc-awk.el (c-forward-sws): Declare.
2539
2540 2013-09-04 Glenn Morris <rgm@gnu.org>
2541
2542 * generic-x.el [rul-generic-mode]: Require cc-mode.
2543 (c++-mode-syntax-table): Declare.
2544 (rul-generic-mode-syntax-table): Init in the defvar.
2545
2546 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2547
2548 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
2549 (vc-do-command, vc-set-async-update):
2550 * vc/vc-mtn.el (vc-mtn-dir-status):
2551 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
2552 (vc-hg-pull, vc-hg-merge-branch):
2553 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
2554 (vc-git-merge-branch):
2555 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
2556 (vc-cvs-dir-status-files):
2557 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
2558 (vc-bzr-dir-status-files):
2559 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
2560 * vc/vc-annotate.el: Use lexical-binding.
2561 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
2562 (vc-sentinel-movepoint): Declare.
2563 (vc-annotate): Don't use `goto-line'.
2564 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
2565 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
2566 (vc-sentinel-movepoint): Declare.
2567 * vc/vc-svn.el: Use lexical-binding.
2568 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
2569 * vc/vc-sccs.el:
2570 * vc/vc-rcs.el: Use lexical-binding.
2571
2572 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
2573 `deleted'. Don't drop errors silently.
2574
2575 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
2576
2577 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2578
2579 * vc/vc.el (vc-ignore): Rewrite.
2580 (vc-default-ignore): New function.
2581 (vc-default-ignore-completion-table): Use find-ignore-file.
2582
2583 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
2584 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
2585 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
2586 Remove. Most code moved to vc.el.
2587
2588 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2589
2590 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
2591 * net/tramp-smb.el (tramp-smb-get-file-entries):
2592 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
2593 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
2594
2595 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
2596 Update call to it.
2597 (eww-change-select): Remove unused var `properties'.
2598 (eww-make-unique-file-name): Remove unused var `base'.
2599
2600 * finder.el (finder-compile-keywords): Don't mess with windows.
2601
2602 * calculator.el (calculator-funcall): Fix typo in last change.
2603
2604 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
2605
2606 * emacs-lisp/package.el (package-activate-1): Don't let a missing
2607 <pkg>-autoloads.el file stop us.
2608
2609 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
2610 warnings, and factor out common code.
2611
2612 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
2613
2614 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
2615 two-character operators and whether the character preceding them
2616 changes their meaning (Bug#15208).
2617
2618 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2619
2620 Format code sent to Python shell for robustness.
2621 * progmodes/python.el (python-shell-buffer-substring):
2622 New function.
2623 (python-shell-send-region, python-shell-send-buffer): Use it.
2624
2625 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
2626
2627 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
2628 * net/tramp.el (tramp-user-error): ... here.
2629 (tramp-find-method, tramp-check-proper-host)
2630 (tramp-dissect-file-name, tramp-debug-message)
2631 (tramp-handle-shell-command):
2632 * net/tramp-adb.el (tramp-adb-handle-shell-command):
2633 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
2634
2635 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
2636
2637 2013-09-02 Martin Rudalics <rudalics@gmx.at>
2638
2639 * avoid.el (mouse-avoidance-point-position)
2640 (mouse-avoidance-too-close-p): Handle case where posn-at-point
2641 returns nil.
2642
2643 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2644
2645 * progmodes/python.el (python-shell-completion-get-completions):
2646 Drop use of deleted `comint-last-prompt-overlay'.
2647 (python-nav-if-name-main): New command.
2648
2649 2013-09-01 Glenn Morris <rgm@gnu.org>
2650
2651 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2652 Avoid leading space in $wins. Otherwise the sed command used by
2653 eg compile-main ends up containing "/*.el". (Bug#15170)
2654
2655 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
2656
2657 2013-08-30 Glenn Morris <rgm@gnu.org>
2658
2659 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2660 Fix is-this-a-directory logic. (Bug#15220)
2661
2662 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2663
2664 * textmodes/css-mode.el: Use SMIE.
2665 (css-smie-grammar): New var.
2666 (css-smie--forward-token, css-smie--backward-token)
2667 (css-smie-rules): New functions.
2668 (css-mode): Use them.
2669 (css-navigation-syntax-table): Remove var.
2670 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
2671 (css-indent-calculate, css-indent-line): Remove functions.
2672
2673 Misc changes to reduce use of `(lambda...); and other cleanups.
2674 * cus-edit.el: Use lexical-binding.
2675 (customize-push-and-save, customize-apropos)
2676 (custom-buffer-create-internal): Use closures.
2677 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
2678 * progmodes/ada-xref.el: Use setq.
2679 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
2680 * dframe.el: Use lexical-binding.
2681 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
2682 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
2683 * descr-text.el: Use lexical-binding.
2684 (describe-text-widget, describe-text-sexp, describe-property-list):
2685 Use closures.
2686 * comint.el (comint-history-isearch-push-state): Use a closure.
2687 * calculator.el: Use lexical-binding.
2688 (calculator-number-to-string): Make it work with lexical-binding.
2689 (calculator-funcall): Same and use cl-letf.
2690
2691 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
2692 (lisp--company-doc-string, lisp--company-location): New functions.
2693 (lisp-completion-at-point): Use them to improve Company support.
2694
2695 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
2696 params of lambda expressions.
2697 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
2698 (ruby-smie--opening-pipe-p): New function.
2699 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
2700 symbols and matched |...| for formal params.
2701 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
2702 from being treated as hanging. Handle "rescue".
2703
2704 2013-08-29 Glenn Morris <rgm@gnu.org>
2705
2706 * progmodes/cc-engine.el (c-pull-open-brace):
2707 Move definition before use.
2708
2709 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2710
2711 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
2712 are immutable. Don't use `unsafe' any more.
2713 (cl--defsubst-expand): Don't substitute at the same time as keeping
2714 a residual unused let-binding. Don't use `unsafe' any more.
2715
2716 2013-08-29 Glenn Morris <rgm@gnu.org>
2717
2718 * calendar/cal-china.el (calendar-chinese-year-cache):
2719 Recenter on 2015.
2720
2721 * nxml/nxml-util.el (nxml-debug-clear-inside):
2722 Use cl-loop rather than loop.
2723
2724 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
2725
2726 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
2727
2728 2013-08-28 Glenn Morris <rgm@gnu.org>
2729
2730 * progmodes/antlr-mode.el: No need to require cc-mode twice.
2731
2732 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
2733
2734 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2735
2736 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2737
2738 * simple.el (repeat-complex-command--called-interactively-skip):
2739 New function.
2740 (repeat-complex-command): Use it (bug#14136).
2741
2742 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2743 (c-define-abbrev-table): Add `doc' argument.
2744 (c-mode-abbrev-table, c++-mode-abbrev-table)
2745 (objc-mode-abbrev-table, java-mode-abbrev-table)
2746 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2747 (awk-mode-abbrev-table): Use it.
2748 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2749 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2750 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2751 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2752 Move initialization into the declaration; and remove any
2753 autoload cookie.
2754
2755 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2756 and dynamic let binding.
2757
2758 * vc/smerge-mode.el: Remove redundant :group args.
2759
2760 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2761 to load-path.
2762
2763 2013-08-28 Juri Linkov <juri@jurta.org>
2764
2765 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2766 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2767 (isearch-other-meta-char): Handle an undefined shifted printing
2768 character by downshifting it. (Bug#15200)
2769
2770 2013-08-28 Juri Linkov <juri@jurta.org>
2771
2772 * isearch.el (isearch-search): Change regexp error message for
2773 non-regexp searches. (Bug#15166)
2774
2775 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2776
2777 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2778 for portability to hosts where /bin/sh has problems.
2779
2780 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2781
2782 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2783
2784 2013-08-27 Juri Linkov <juri@jurta.org>
2785
2786 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2787 in the keyboard macro. (Bug#15126)
2788
2789 2013-08-27 Juri Linkov <juri@jurta.org>
2790
2791 * isearch.el (isearch-quote-char): Comment out converting unibyte
2792 to multibyte, thus syncing with its `quoted-insert' counterpart.
2793 (Bug#15166)
2794
2795 2013-08-27 Martin Rudalics <rudalics@gmx.at>
2796
2797 * window.el (display-buffer-use-some-window): Add missing
2798 argument in call of get-largest-window (Bug#15185).
2799 Reported by Stephen Leake.
2800
2801 2013-08-27 Glenn Morris <rgm@gnu.org>
2802
2803 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2804
2805 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2806
2807 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2808 from a matcher-function unless there's no more matches (bug#15161).
2809
2810 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2811
2812 * minibuffer.el: Revert change from 2013-08-20.
2813
2814 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2815 with text property `tramp-default', if appropriate.
2816 (tramp-check-proper-host): New defun.
2817 (tramp-dissect-file-name): Do not check hostname. Revert change
2818 of 2013-03-18.
2819 (tramp-backtrace): Make VEC-OR-PROC optional.
2820
2821 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2822 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2823 * net/tramp-sh.el (tramp-maybe-open-connection):
2824 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2825 Apply `tramp-check-proper-host'.
2826
2827 2013-08-26 Tassilo Horn <tsdh@gnu.org>
2828
2829 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2830 lambda expression in order to have `describe-variable' display it.
2831
2832 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2833
2834 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2835 BUF can be optional. (Bug#15186)
2836
2837 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2838
2839 * progmodes/flymake.el (flymake-get-real-file-name-function):
2840 Fix broken customization. (Bug#15184)
2841
2842 2013-08-25 Alan Mackenzie <acm@muc.de>
2843
2844 Improve indentation of bracelists defined by macros (without "=").
2845
2846 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2847 expansion begins with "{", regard it as bracelist when it doesn't
2848 contain a ";".
2849
2850 Parse C++ inher-intro when there's a template split over 2 lines.
2851
2852 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2853 rigorously the search for "class" etc. followed by ":".
2854
2855 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2856 random languages a regexp which never matches rather than nil.
2857
2858 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2859
2860 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2861 (c-awk-regexp-one-line-possibly-open-char-list-re)
2862 (c-awk-one-line-possibly-open-regexp-re)
2863 (c-awk-one-line-non-syn-ws*-re): Remove.
2864 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2865 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2866 (c-awk-space*-unclosed-regexp-/-re): New constants.
2867 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2868 aren't regexp delimiters.
2869
2870 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2871 handling for a rare situation in AWK Mode involving unterminated
2872 strings/regexps.
2873
2874 2013-08-23 Glenn Morris <rgm@gnu.org>
2875
2876 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2877
2878 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2879
2880 * files.el (create-file-buffer): If the result would begin with
2881 spaces, prepend a "|" instead of removing them. (Bug#15162)
2882
2883 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2884
2885 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2886 text-properties (bug#15155).
2887
2888 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2889 exist any more.
2890 (calc-keypad-redraw): Remove unused var `pad'.
2891 (calc-keypad-press): Remove unused var `menu'.
2892
2893 2013-08-23 Martin Rudalics <rudalics@gmx.at>
2894
2895 * window.el (display-buffer-pop-up-frame):
2896 Call pop-up-frame-function with BUFFER current so `make-frame' will
2897 use it as the new frame's buffer (Bug#15133).
2898
2899 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2900
2901 * calendar/timeclock.el: Minor cleanups.
2902 (timeclock-ask-before-exiting, timeclock-use-display-time):
2903 Use `symbol'.
2904 (timeclock-modeline-display): Define as alias before the
2905 actual definition.
2906 (timeclock-mode-line-display): Use define-minor-mode.
2907 (timeclock-day-list-template): Make it a function, add an argument.
2908 (timeclock-day-list-required, timeclock-day-list-length)
2909 (timeclock-day-list-debt, timeclock-day-list-span)
2910 (timeclock-day-list-break): Adjust calls accordingly.
2911
2912 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2913
2914 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2915 Use read--expression so that completion works again.
2916
2917 2013-08-21 Sam Steingold <sds@gnu.org>
2918
2919 Add rudimentary inferior shell interaction
2920 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2921 (sh-set-shell): Reset it.
2922 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2923 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
2924
2925 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2926
2927 * align.el: Use lexical-binding.
2928 (align-region): Simplify accordingly.
2929
2930 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
2931
2932 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2933
2934 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2935 `non-essential' up.
2936
2937 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
2938
2939 * net/tramp.el:
2940 * net/tramp-adb.el:
2941 * net/tramp-cmds.el:
2942 * net/tramp-ftp.el:
2943 * net/tramp-gvfs.el:
2944 * net/tramp-gw.el:
2945 * net/tramp-sh.el: Don't wrap external variable declarations by
2946 `eval-when-compile'.
2947
2948 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2949
2950 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2951 now that Emacs supports ImageMagick animations.
2952
2953 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
2954
2955 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2956 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2957
2958 2013-08-16 Martin Rudalics <rudalics@gmx.at>
2959
2960 * window.el (mouse-autoselect-window-select): Do autoselect when
2961 mouse pointer is on margin.
2962
2963 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2964
2965 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2966
2967 2013-08-16 Glenn Morris <rgm@gnu.org>
2968
2969 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2970 Handle "Remote Directory" response of some clients. (Bug#15058)
2971
2972 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2973 Tweak warning. (Bug#14926)
2974
2975 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2976 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2977
2978 * image-mode.el (image-mode-map): Add menu items to reverse,
2979 increase, decrease, reset animation speed.
2980 (image--set-speed, image-increase-speed, image-decrease-speed)
2981 (image-reverse-speed, image-reset-speed): New functions.
2982 (image-mode-map): Add bindings for speed commands.
2983
2984 * image.el (image-animate-get-speed, image-animate-set-speed):
2985 New functions.
2986 (image-animate-timeout): Respect image :speed property.
2987
2988 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2989
2990 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2991 previous line (bug#15101).
2992 (debugger-eval-expression, debugger-record-expression):
2993 Use read--expression (bug#15102).
2994
2995 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
2996
2997 Remove byte compiler warnings, visible when compiling with
2998 `byte-compile-force-lexical-warnings' set to t.
2999
3000 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
3001 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
3002 (tramp-handle-unhandled-file-name-directory)
3003 (tramp-handle-file-notify-add-watch, tramp-action-login)
3004 (tramp-action-succeed, tramp-action-permission-denied)
3005 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
3006 arguments with "_".
3007
3008 * net/tramp-adb.el (tramp-adb-parse-device-names)
3009 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
3010 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
3011 (tramp-adb-handle-file-truename): Remove unused arguments.
3012
3013 * net/tramp-cache.el (tramp-flush-directory-property)
3014 (tramp-flush-connection-property, tramp-list-connections)
3015 (tramp-parse-connection-properties): Prefix unused arguments with "_".
3016
3017 * net/tramp-compat.el (tramp-compat-make-temp-file):
3018 Rename FILENAME to F.
3019
3020 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
3021 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
3022 (tramp-zeroconf-parse-workstation-device-names)
3023 (tramp-zeroconf-parse-webdav-device-names)
3024 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
3025
3026 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
3027 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
3028
3029 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
3030 arguments.
3031 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
3032 (tramp-sh-handle-insert-file-contents-literally)
3033 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
3034 with "_".
3035 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
3036 Remove unused variables.
3037
3038 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
3039 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
3040 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
3041
3042 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
3043 Make them a defconst.
3044 (tramp-uuencode-region): Remove unused variable.
3045
3046 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
3047
3048 * frameset.el (frameset--prop-setter): New function.
3049 (frameset-prop): Add gv-setter declaration.
3050 (frameset-filter-minibuffer): Deal with the case that the minibuffer
3051 parameter was already set in FILTERED. Doc fix.
3052 (frameset--record-minibuffer-relationships): Allow saving a
3053 minibufferless frame without its corresponding minibuffer frame.
3054 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
3055 frame, if the frame id matches.
3056 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
3057 frames before orphaned ones.
3058 (frameset-restore): Warn about orphaned windows, instead of error out.
3059
3060 2013-08-14 Martin Rudalics <rudalics@gmx.at>
3061
3062 * window.el (window-make-atom): Don't overwrite parameter
3063 already present.
3064 (display-buffer-in-atom-window): Handle special case where we
3065 split an already atomic window.
3066 (window--major-non-side-window, display-buffer-in-side-window)
3067 (window--side-check): Ignore minibuffer window when walking
3068 window tree.
3069 (window-deletable-p): Return 'frame only if no other frame uses
3070 our minibuffer window.
3071 (record-window-buffer): Run buffer-list-update-hook.
3072 (split-window): Make sure window--check-frame won't destroy an
3073 existing atomic window in case the new window gets nested
3074 inside.
3075 (display-buffer-at-bottom): Ignore minibuffer window when
3076 walking window tree. Don't split a side window.
3077 (pop-to-buffer): Don't set-buffer here, the select-window call
3078 should do that.
3079 (mouse-autoselect-window-select): Autoselect only if we are in the
3080 text portion of the window.
3081
3082 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3083
3084 * net/shr.el (shr-parse-image-data): New function to grab both the
3085 data itself and the Content-Type.
3086 (shr-put-image): Use it.
3087
3088 * net/eww.el (eww-display-image): Ditto.
3089
3090 * image.el (image-content-type-suffixes): New variable.
3091
3092 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3093
3094 * progmodes/python.el (python-imenu--build-tree)
3095 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
3096
3097 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
3098
3099 * simple.el (backward-word): Mention the optional argument.
3100
3101 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3102
3103 * frameset.el (frameset--make): Rename constructor from make-frameset.
3104 (frameset-p, frameset-valid-p): Don't autoload.
3105 (frameset-valid-p): Use normal accessors.
3106
3107 2013-08-13 Glenn Morris <rgm@gnu.org>
3108
3109 * progmodes/compile.el (compile-command): Tweak example in doc.
3110 * obsolete/scribe.el (scribe-mode):
3111 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
3112
3113 * mail/feedmail.el (feedmail-confirm-outgoing)
3114 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
3115
3116 * cus-start.el (truncate-partial-width-windows): Fix type.
3117
3118 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
3119
3120 * net/shr.el (shr-table-horizontal-line): Fix custom type.
3121
3122 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3123
3124 * emacs-lisp/timer.el (timer--time-setter): New function.
3125 (timer--time): Use it as gv-setter.
3126
3127 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
3128 setter is not a symbol.
3129
3130 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
3131
3132 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
3133 if sending fails. This makes debugging easier.
3134
3135 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
3136
3137 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
3138 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
3139 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
3140
3141 2013-08-12 Eli Zaretskii <eliz@gnu.org>
3142
3143 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
3144
3145 2013-08-12 Glenn Morris <rgm@gnu.org>
3146
3147 * format.el (format-annotate-function):
3148 Handle read-only text properties in the source. (Bug#14887)
3149
3150 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3151
3152 * net/eww.el (eww-display-html): Ignore coding system errors.
3153 One web site uses "utf-8lias" as the coding system.
3154
3155 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
3156
3157 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
3158
3159 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
3160
3161 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
3162 (tutorial--detailed-help): Remove unused local variables.
3163 (tutorial--save-tutorial-to): Use ignore-errors.
3164 (help-with-tutorial): Use looking-at-p.
3165
3166 * view.el (view-buffer-other-window, view-buffer-other-frame):
3167 Mark unused arguments.
3168
3169 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
3170 (woman-select-symbol-fonts, woman, woman-find-file)
3171 (woman-insert-file-contents, woman-non-underline-faces):
3172 Use string-match-p.
3173 (woman1-unquote): Move declaration.
3174
3175 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
3176 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
3177 argument. Remove unused local variable.
3178 (xml-parse-elem-type): Use string-match-p.
3179 (xml-substitute-numeric-entities): Use ignore-errors.
3180
3181 * calculator.el (calculator): Mark unused argument.
3182 (calculator-paste, calculator-quit, calculator-integer-p):
3183 Use ignore-errors.
3184 (calculator-string-to-number, calculator-decimal, calculator-exp)
3185 (calculator-op-or-exp): Use string-match-p.
3186
3187 * dired.el (dired-buffer-more-recently-used-p): Declare.
3188 (dired-insert-set-properties, dired-insert-old-subdirs):
3189 Use ignore-errors.
3190
3191 * dired-aux.el (dired-compress): Use ignore-errors.
3192 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
3193 (dired-do-async-shell-command, dired-do-shell-command)
3194 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
3195 (dired-insert-subdir-validate): Use string-match-p.
3196 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
3197 (dired-add-entry): Use string-match-p, looking-at-p.
3198 (dired-insert-subdir-newpos): Remove unused local variable.
3199
3200 * filenotify.el (file-notify-callback): Remove unused local variable.
3201
3202 * filesets.el (filesets-error): Mark unused argument.
3203 (filesets-which-command-p, filesets-filter-dir-names)
3204 (filesets-directory-files, filesets-get-external-viewer)
3205 (filesets-ingroup-get-data): Use string-match-p.
3206
3207 * find-file.el (ff-other-file-name, ff-other-file-name)
3208 (ff-find-the-other-file, ff-cc-hh-converter):
3209 Remove unused local variables.
3210 (ff-get-file-name): Use string-match-p.
3211 (ff-all-dirs-under): Use ignore-errors.
3212
3213 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
3214 (follow-select-if-visible): Remove unused local variable.
3215
3216 * forms.el (read-file-filter): Move declaration.
3217 (forms--make-format, forms--make-parser, forms-insert-record):
3218 Quote function with #'.
3219 (forms--update): Use string-match-p. Quote function with #'.
3220
3221 * help-mode.el (help-dir-local-var-def): Mark unused argument.
3222 (help-make-xrefs): Use looking-at-p.
3223 (help-xref-on-pp): Use looking-at-p, ignore-errors.
3224
3225 * ibuffer.el (ibuffer-ext-visible-p): Declare.
3226 (ibuffer-confirm-operation-on): Use string-match-p.
3227
3228 * msb.el (msb-item-handler, msb-dired-item-handler):
3229 Mark unused arguments.
3230
3231 * ses.el (ses-decode-cell-symbol)
3232 (ses-kill-override): Remove unused local variable.
3233 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
3234 (ses-load): Use ignore-errors, looking-at-p.
3235 (ses-jump-safe): Use ignore-errors.
3236 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
3237
3238 * tabify.el (untabify, tabify): Mark unused arguments.
3239
3240 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
3241 Mark unused argument.
3242 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
3243 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
3244
3245 * emacs-lisp/timer.el (timer--time): Define setter with
3246 gv-define-setter to avoid deprecation warning.
3247
3248 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
3249 (*record-cmpl-statistics-p*): Remove (was commented out).
3250 (cmpl-statistics-block): Remove (body was commented out).
3251 All callers changed.
3252 (add-completions-from-buffer, load-completions-from-file):
3253 Remove unused variables.
3254
3255 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
3256
3257 * filecache.el (file-cache-delete-file-list):
3258 Print message only when told so.
3259 (file-cache-files-matching): Use #' in mapconcat argument.
3260
3261 * ffap.el (ffap-url-at-point): Fix reference to variable
3262 thing-at-point-default-mail-uri-scheme.
3263
3264 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
3265
3266 * subr.el (define-error): New function.
3267 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
3268 error-file-not-found and define with define-error.
3269 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
3270 and define with define-error.
3271 * userlock.el (file-locked, file-supersession):
3272 * simple.el (mark-inactive):
3273 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
3274 * progmodes/ada-mode.el (ada-mode-errors):
3275 * play/life.el (life-extinct):
3276 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
3277 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
3278 * nxml/rng-util.el (rng-error):
3279 * nxml/rng-uri.el (rng-uri-error):
3280 * nxml/rng-match.el (rng-compile-error):
3281 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
3282 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
3283 * nxml/nxml-rap.el (nxml-scan-error):
3284 * nxml/nxml-outln.el (nxml-outline-error):
3285 * net/soap-client.el (soap-error):
3286 * net/gnutls.el (gnutls-error):
3287 * net/ange-ftp.el (ftp-error):
3288 * mpc.el (mpc-proc-error):
3289 * json.el (json-error, json-readtable-error, json-unknown-keyword)
3290 (json-number-format, json-string-escape, json-string-format)
3291 (json-key-format, json-object-format):
3292 * jka-compr.el (compression-error):
3293 * international/quail.el (quail-error):
3294 * international/kkc.el (kkc-error):
3295 * emacs-lisp/ert.el (ert-test-failed):
3296 * calc/calc.el (calc-error, inexact-result, math-overflow)
3297 (math-underflow):
3298 * bookmark.el (bookmark-error-no-filename):
3299 * epg.el (epg-error): Define with define-error.
3300
3301 * time.el (display-time-event-handler)
3302 (display-time-next-load-average): Don't call sit-for since it seems
3303 unnecessary (bug#15045).
3304
3305 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
3306 Use #' instead of ' to quote functions.
3307 (checkdoc-output-mode): Use setq-local.
3308 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
3309 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
3310 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
3311 (checkdoc-ispell, checkdoc-ispell-current-buffer)
3312 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
3313 (checkdoc-ispell-message-text, checkdoc-ispell-start)
3314 (checkdoc-ispell-continue, checkdoc-ispell-comments)
3315 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
3316
3317 * ido.el (ido-completion-help): Fix up compiler warning.
3318
3319 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
3320
3321 * frameset.el (frameset-p): Add autoload cookie.
3322 (frameset--jump-to-register): New function, based on code moved from
3323 register.el.
3324 (frameset-to-register): Move from register.el. Adapt to `registerv'.
3325
3326 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
3327 (frameset-restore, frameset-save, frameset-session-filter-alist):
3328 Remove declarations.
3329 (register-alist): Doc fix.
3330 (frameset-to-register): Move to frameset.el.
3331 (jump-to-register, describe-register-1): Remove frameset-specific code.
3332
3333 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3334
3335 * allout-widgets.el (allout-widgets-pre-command-business)
3336 (allout-widgets-post-command-business)
3337 (allout-widgets-after-change-handler)
3338 (allout-decorate-item-and-context, allout-set-boundary-marker)
3339 (allout-body-modification-handler)
3340 (allout-graphics-modification-handler): Mark ignored arguments.
3341 (allout-widgets-post-command-business)
3342 (allout-widgets-exposure-change-processor)
3343 (allout-widgets-exposure-undo-processor)
3344 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
3345 (allout-parse-item-at-point, allout-decorate-item-guides)
3346 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
3347 * allout.el (epa-passphrase-callback-function): Declare.
3348 (allout-overlay-insert-in-front-handler)
3349 (allout-overlay-interior-modification-handler)
3350 (allout-isearch-end-handler, allout-chart-siblings)
3351 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
3352 (allout-yank-processing, allout-process-exposed)
3353 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
3354 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
3355 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
3356 (lisp-indent-defform): Mark ignored arguments.
3357 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
3358 (calculate-lisp-indent): Remove unused variables.
3359 * international/characters.el (indian-2-column, arabic-2-column)
3360 (tibetan): Mark ignored arguments.
3361 (use-cjk-char-width-table): Mark ignored arguments.
3362 Remove unused variables.
3363 * international/fontset.el (build-default-fontset-data)
3364 (x-compose-font-name, create-fontset-from-fontset-spec):
3365 Mark ignored arguments.
3366 (fontset-plain-name): Remove unused variables.
3367 * international/mule.el (charset-id, charset-bytes, generic-char-p)
3368 (keyboard-coding-system): Mark ignored arguments.
3369 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
3370 * help.el (resize-temp-buffer-window):
3371 * window.el (display-buffer-in-major-side-window)
3372 (display-buffer-in-side-window, display-buffer-in-previous-window):
3373 Remove unused variables.
3374 * isearch.el (isearch-forward-symbol):
3375 * version.el (emacs-bzr-version-bzr):
3376 * international/mule-cmds.el (current-language-environment):
3377 * term/common-win.el (x-handle-iconic, x-handle-geometry)
3378 (x-handle-display):
3379 * term/pc-win.el (x-list-fonts, x-display-planes)
3380 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
3381 (x-server-version, x-display-screens, x-display-mm-height)
3382 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
3383 (x-selection-owner-p, x-own-selection-internal)
3384 (x-disown-selection-internal, x-get-selection-internal)
3385 (msdos-initialize-window-system):
3386 * term/tty-colors.el (tty-color-alist, tty-color-clear):
3387 * term/x-win.el (x-handle-no-bitmap-icon):
3388 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
3389 (vc-default-find-file-hook, vc-default-extra-menu):
3390 Mark ignored arguments.
3391
3392 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3393
3394 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
3395 break-condition in the context of the debugged code (bug#12685).
3396
3397 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
3398
3399 * comint.el:
3400 Do not use an overlay to highlight the last prompt. (Bug#14744)
3401 (comint-mode): Make comint-last-prompt buffer local.
3402 (comint-last-prompt): New variable.
3403 (comint-last-prompt-overlay): Remove. Superseded by
3404 comint-last-prompt.
3405 (comint-snapshot-last-prompt, comint-output-filter):
3406 Use comint-last-prompt.
3407
3408 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3409
3410 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
3411 (frameset-save): Check validity of the resulting frameset.
3412
3413 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
3414
3415 * ido.el (ido-record-command): Add doc string.
3416
3417 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3418
3419 * frameset.el (frameset): Do not disable creation of the default
3420 frameset-p predicate. Doc fix.
3421 (frameset-valid-p): New function, copied from the old predicate-p.
3422 Add additional checks.
3423 (frameset-restore): Check with frameset-valid-p.
3424 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
3425 (frameset-name, frameset-description, frameset-properties)
3426 (frameset-states): Add docstring.
3427 (frameset-session-filter-alist, frameset-persistent-filter-alist)
3428 (frameset-filter-alist): Doc fixes.
3429
3430 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3431
3432 * frameset.el (frameset-p, frameset-prop): Doc fixes.
3433
3434 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3435
3436 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
3437 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
3438 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
3439 (byte-compile-normal-call): Remove obsolescence check.
3440
3441 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3442
3443 * frameset.el (frameset-restore): Doc fix.
3444
3445 * register.el (frameset-frame-id, frameset-frame-with-id)
3446 (frameset-p, frameset-restore, frameset-save): Declare.
3447 (register-alist): Document framesets.
3448 (frameset-session-filter-alist): Declare.
3449 (frameset-to-register): New function.
3450 (jump-to-register): Implement jumping to framesets. Doc fix.
3451 (describe-register-1): Describe framesets.
3452
3453 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
3454
3455 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
3456
3457 * desktop.el (desktop-save-frameset): Use new frameset-save args.
3458 Use lexical-binding.
3459
3460 * frameset.el (frameset): Use type vector, not list (incompatible
3461 change). Do not declare a new constructor, use the default one.
3462 Upgrade suggested properties `app', `name' and `desc' to slots `app',
3463 `name' and `description', respectively, and add read-only slot
3464 `timestamp'. Doc fixes.
3465 (frameset-copy, frameset-persistent-filter-alist)
3466 (frameset-filter-alist, frameset-switch-to-gui-p)
3467 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
3468 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
3469 (frameset-filter-iconified, frameset-keep-original-display-p):
3470 Doc fixes.
3471 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
3472 Rename from frameset-filter-(save|restore)-param. All callers changed.
3473 Doc fix.
3474 (frameset-p): Adapt to change to vector and be more thorough.
3475 Change arg name to OBJECT. Doc fix.
3476 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
3477 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
3478 All callers changed.
3479 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
3480 All callers changed.
3481 (frameset--record-minibuffer-relationships): Rename from
3482 frameset--process-minibuffer-frames. All callers changed.
3483 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
3484 Use new default constructor (again). Doc fix.
3485 (frameset--find-frame-if): Rename from `frameset--find-frame.
3486 All callers changed.
3487 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
3488 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
3489 Doc fix.
3490 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
3491 PARAMETERS and WINDOW-STATE, respectively.
3492 (frameset-restore): Add new keyword argument PREDICATE.
3493 Reset frameset--target-display to nil. Doc fix.
3494
3495 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3496
3497 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
3498 (bat-mode): Use it.
3499 (bat-mode-syntax-table): Mark \n as end-of-comment.
3500 (bat-font-lock-keywords): Remove comment rule.
3501
3502 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
3503 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
3504
3505 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
3506 (byte-compile-callargs-warn): Use `push'.
3507 (byte-compile-arglist-warn): Ignore higher-order "calls".
3508 (byte-compile-file-form-autoload): Use `pcase'.
3509 (byte-compile-function-form): If quoting a symbol, check that it exists.
3510
3511 2013-08-07 Eli Zaretskii <eliz@gnu.org>
3512
3513 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
3514 and add a few popular commands found in batch files.
3515 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
3516 (dos-mode): Doc fixes.
3517
3518 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3519
3520 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
3521 (dos-mode): Use setq-local. Add space after "rem".
3522 (dos-mode-syntax-table): Don't use "w" for symbol chars.
3523 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
3524
3525 2013-08-07 Arni Magnusson <arnima@hafro.is>
3526
3527 * progmodes/dos.el: New file.
3528 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
3529 dos-mode.
3530
3531 2013-08-06 Glenn Morris <rgm@gnu.org>
3532
3533 * calendar/calendar.el: Add new faces, and day-header-array.
3534 (calendar-weekday-header, calendar-weekend-header)
3535 (calendar-month-header): New faces.
3536 (calendar-day-header-construct): New function.
3537 (calendar-day-header-width): Also :set calendar-day-header-array.
3538 (calendar-american-month-header, calendar-european-month-header)
3539 (calendar-iso-month-header): Use calendar- faces.
3540 (calendar-generate-month):
3541 Use calendar-day-header-array for day headers; apply faces to them.
3542 (calendar-mode): Check calendar-font-lock-keywords non-nil.
3543 (calendar-abbrev-construct): Add optional maxlen argument.
3544 (calendar-day-name-array): Doc fix.
3545 (calendar-day-name-array, calendar-abbrev-length)
3546 (calendar-day-abbrev-array):
3547 Also :set calendar-day-header-array, and maybe redraw.
3548 (calendar-day-header-array): New option. (Bug#15007)
3549 (calendar-font-lock-keywords): Set to nil and make obsolete.
3550 (calendar-day-name): Add option to use header array.
3551
3552 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3553
3554 * net/shr.el (shr-render-td): Remove debugging.
3555 (shr-render-td): Make width computation consistent by defaulting
3556 all zero-width columns to 10 characters. This may not be optimal,
3557 but it's at least consistent.
3558 (shr-make-table-1): Redo last change to fix the real problem in
3559 colspan handling.
3560
3561 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3562
3563 * files.el (cache-long-line-scans):
3564 Make obsolete alias to `cache-long-scans'.
3565
3566 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3567
3568 * frameset.el (frameset, frameset-filter-alist)
3569 (frameset-filter-params, frameset-save, frameset--reuse-frame)
3570 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
3571 (frameset-compute-pos): Rename from frameset--compute-pos,
3572 and add docstring.
3573 (frameset-move-onscreen): Use frameset-compute-pos.
3574 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3575
3576 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
3577 Fix typos in docstrings.
3578
3579 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3580
3581 * frame.el (get-other-frame): Tiny cleanup.
3582
3583 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3584
3585 * vc/vc.el (vc-default-ignore-completion-table):
3586 Silence byte-compiler warning.
3587
3588 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
3589 slot , which can indeed be nil.
3590 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3591 Move entry for `left' from persistent to live filter alist.
3592 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
3593 Doc fixes.
3594 (frameset-filter-params): When restoring a frame, copy items added to
3595 `filtered', to avoid unwittingly modifying the original parameters.
3596 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
3597 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
3598
3599 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
3600 to use looking-at-p instead of looking-at. (Bug#15028)
3601
3602 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3603
3604 Revert introduction of isearch-filter-predicates (bug#14714).
3605 Rely on add-function instead.
3606 * isearch.el (isearch-filter-predicates): Rename it back to
3607 isearch-filter-predicate.
3608 (isearch-message-prefix): Use advice-function-mapc and advice
3609 properties to get the isearch-message-prefix.
3610 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
3611 instead of run-hook-with-args-until-failure.
3612 (isearch-filter-visible): Not obsolete any more.
3613 * loadup.el: Preload nadvice.
3614 * replace.el (perform-replace): Revert to funcall
3615 instead of run-hook-with-args-until-failure.
3616 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
3617 * dired-aux.el (dired-isearch-filenames-mode): Rename from
3618 dired-isearch-filenames-toggle; make it into a proper minor mode.
3619 Use add/remove-function.
3620 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
3621 Call the minor-mode rather than add/remove-hook.
3622 (dired-isearch-filter-filenames):
3623 Remove isearch-message-prefix property.
3624 * info.el (Info--search-loop): New function, extracted from Info-search.
3625 Funcall isearch-filter-predicate instead of
3626 run-hook-with-args-until-failure isearch-filter-predicates.
3627 (Info-search): Use it.
3628 (Info-mode): Use isearch-filter-predicate instead of
3629 isearch-filter-predicates.
3630
3631 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3632
3633 Do not call to `selected-window' where it is assumed by default.
3634 Affected functions are `window-minibuffer-p', `window-dedicated-p',
3635 `window-hscroll', `window-width', `window-height', `window-buffer',
3636 `window-frame', `window-start', `window-point', `next-window'
3637 and `window-display-table'.
3638 * abbrev.el (abbrev--default-expand):
3639 * bs.el (bs--show-with-configuration):
3640 * buff-menu.el (Buffer-menu-mouse-select):
3641 * calc/calc.el (calc):
3642 * calendar/calendar.el (calendar-generate-window):
3643 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
3644 (diary-make-entry):
3645 * comint.el (send-invisible, comint-dynamic-complete-filename)
3646 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
3647 * completion.el (complete):
3648 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
3649 * disp-table.el (describe-current-display-table):
3650 * doc-view.el (doc-view-insert-image):
3651 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
3652 * ehelp.el (with-electric-help):
3653 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3654 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
3655 * emacs-lisp/helper.el (Helper-help-scroller):
3656 * emulation/cua-base.el (cua--post-command-handler-1):
3657 * eshell/esh-mode.el (eshell-output-filter):
3658 * ffap.el (ffap-gnus-wrapper):
3659 * help-macro.el (make-help-screen):
3660 * hilit-chg.el (highlight-compare-buffers):
3661 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
3662 * hl-line.el (global-hl-line-highlight):
3663 * icomplete.el (icomplete-simple-completing-p):
3664 * isearch.el (isearch-done):
3665 * jit-lock.el (jit-lock-stealth-fontify):
3666 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
3667 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
3668 * mpc.el (mpc-tagbrowser, mpc):
3669 * net/rcirc.el (rcirc-any-buffer):
3670 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
3671 * play/landmark.el (landmark-max-width, landmark-max-height):
3672 * play/zone.el (zone):
3673 * progmodes/compile.el (compilation-goto-locus):
3674 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
3675 * progmodes/etags.el (find-tag-other-window):
3676 * progmodes/fortran.el (fortran-column-ruler):
3677 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
3678 * progmodes/verilog-mode.el (verilog-point-text):
3679 * reposition.el (reposition-window):
3680 * rot13.el (toggle-rot13-mode):
3681 * server.el (server-switch-buffer):
3682 * shell.el (shell-dynamic-complete-command)
3683 (shell-dynamic-complete-environment-variable):
3684 * simple.el (insert-buffer, set-selective-display)
3685 (delete-completion-window):
3686 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
3687 (speedbar-recenter):
3688 * startup.el (fancy-splash-head):
3689 * textmodes/ispell.el (ispell-command-loop):
3690 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
3691 * tutorial.el (help-with-tutorial):
3692 * vc/add-log.el (add-change-log-entry):
3693 * vc/compare-w.el (compare-windows):
3694 * vc/ediff-help.el (ediff-indent-help-message):
3695 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
3696 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
3697 (ediff-setup-control-frame):
3698 * vc/emerge.el (emerge-position-region):
3699 * vc/pcvs-util.el (cvs-bury-buffer):
3700 * window.el (walk-windows, mouse-autoselect-window-select):
3701 * winner.el (winner-set-conf, winner-undo): Related users changed.
3702
3703 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3704
3705 * frameset.el (frameset--set-id): Doc fix.
3706 (frameset-frame-id, frameset-frame-id-equal-p)
3707 (frameset-locate-frame-id): New functions.
3708 (frameset--process-minibuffer-frames, frameset--reuse-frame)
3709 (frameset-restore): Use them.
3710
3711 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3712
3713 Do not call to `selected-frame' where it is assumed by default.
3714 Affected functions are `raise-frame', `redraw-frame',
3715 `frame-first-window', `frame-terminal' and `delete-frame'.
3716 * calendar/appt.el (appt-disp-window):
3717 * epg.el (epg-wait-for-completion):
3718 * follow.el (follow-delete-other-windows-and-split)
3719 (follow-avoid-tail-recenter):
3720 * international/mule.el (set-terminal-coding-system):
3721 * mail/rmail.el (rmail-mail-return):
3722 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
3723 * progmodes/f90.el (f90-add-imenu-menu):
3724 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
3725 * server.el (server-switch-buffer):
3726 * simple.el (delete-completion-window):
3727 * talk.el (talk):
3728 * term/xterm.el (terminal-init-xterm-modify-other-keys)
3729 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
3730 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
3731 * vc/ediff.el (ediff-documentation): Related users changed.
3732 * frame.el (selected-terminal): Remove the leftover.
3733
3734 2013-08-05 Glenn Morris <rgm@gnu.org>
3735
3736 * calendar/calendar.el (calendar-generate-month):
3737 Fix for calendar-column-width != 1 + calendar-day-digit-width.
3738 (calendar-generate-month, calendar-font-lock-keywords):
3739 Fix for calendar-day-header-width > length of any day name.
3740
3741 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3742
3743 * desktop.el (desktop-clear): Use new name of sort predicate.
3744
3745 * frameset.el (frameset): Add docstring. Move :version property to its
3746 own `version' slot.
3747 (frameset-copy): Rename from copy-frameset.
3748 (frameset-p): Check more thoroughly.
3749 (frameset-prop): Do not check for :version, which is no longer a prop.
3750 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3751 Use new :never value instead of t.
3752 (frameset-filter-alist): Expand and clarify docstring.
3753 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3754 (frameset-filter-minibuffer, frameset-filter-save-param)
3755 (frameset-filter-restore-param, frameset-filter-iconified):
3756 Add pointer to docstring of frameset-filter-alist.
3757 (frameset-filter-params): Rename filter values to be more meaningful:
3758 :never instead of t, and reverse the meanings of :save and :restore.
3759 (frameset--process-minibuffer-frames): Clarify error message.
3760 (frameset-save): Avoid unnecessary and confusing call to framep.
3761 Use new BOA constructor for framesets.
3762 (frameset--reuse-list): Doc fix.
3763 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3764 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3765 (frameset-minibufferless-first-p): Doc fix.
3766 Rename from frameset-sort-frames-for-deletion.
3767 (frameset-restore): Doc fixes. Use new function names.
3768 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3769
3770 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3771
3772 * desktop.el (desktop-restore-forces-onscreen)
3773 (desktop-restore-reuses-frames): Document :keyword constant values.
3774 (desktop-filter-parameters-alist): Remove, now identical to
3775 frameset-filter-alist.
3776 (desktop--filter-tty*): Remove, moved to frameset.el.
3777 (desktop-save-frameset, desktop-restore-frameset):
3778 Do not pass :filters argument.
3779
3780 * frameset.el (frameset-live-filter-alist)
3781 (frameset-persistent-filter-alist): New variables.
3782 (frameset-filter-alist): Use them. Add autoload cookie.
3783 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3784 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3785 `frameset--id' (it's supposed to be internal to frameset.el).
3786 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3787 (frameset--initial-params): New function.
3788 (frameset--get-frame): Use it. Doc fix.
3789 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3790 Accept :all, not 'all.
3791 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3792 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3793 with fbound symbols. Fix frame id matching, and remove matching ids if
3794 the frame being restored is deleted. Obey :delete.
3795
3796 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3797
3798 * subr.el (macrop): New function.
3799 (text-clone--maintaining): New var.
3800 (text-clone--maintain): Rename from text-clone-maintain. Use it
3801 instead of inhibit-modification-hooks.
3802
3803 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3804 a proxy, so as handle autoloads and redefinitions of the target.
3805 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3806
3807 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3808 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3809 (pcase--mutually-exclusive-p): New function.
3810 (pcase--split-consp): Use it.
3811 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3812 mutually exclusive with the current predicate.
3813
3814 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3815 (edebug-macrop): Remove. Use `macrop' instead.
3816 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3817 (ad-macro-p):
3818 * eshell/esh-cmd.el (eshell-macrop):
3819 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3820
3821 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3822
3823 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3824 (advice-mapc): New function, using it.
3825 (advice-function-member-p): New function.
3826 (advice--normalize): Store the cdr in advice--saved-rewrite since
3827 that's the part that will be changed.
3828 (advice--symbol-function): New function.
3829 (advice-remove): Handle removal before the function is defined.
3830 Adjust to new advice--saved-rewrite.
3831 (advice-member-p): Use advice-function-member-p and
3832 advice--symbol-function.
3833
3834 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3835
3836 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3837 (frameset-filter-minibuffer): Doc fix.
3838 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
3839 (frameset--set-id, frameset--process-minibuffer-frames)
3840 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3841 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
3842
3843 * desktop.el (desktop-clear): Only delete frames when called
3844 interactively and desktop-restore-frames is non-nil. Doc fix.
3845 (desktop-read): Set desktop-saved-frameset to nil.
3846
3847 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3848
3849 * vc/vc.el (vc-ignore): Rewrite.
3850 (vc-default-ignore-completion-table):
3851 (vc--read-lines):
3852 (vc--add-line, vc--remove-regexp): New functions.
3853
3854 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3855 (vc-svn-ignore-completion-table): New function.
3856
3857 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3858 (vc-hg-ignore-completion-table):
3859 (vc-hg-find-ignore-file): New functions.
3860
3861 * vc/vc-git.el (vc-git-ignore): Rewrite.
3862 (vc-git-ignore-completion-table):
3863 (vc-git-find-ignore-file): New functions.
3864
3865 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3866
3867 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3868 (vc-bzr-ignore-completion-table):
3869 (vc-bzr-find-ignore-file): New functions.
3870
3871 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
3872
3873 * frameset.el (frameset-prop): New function and setter.
3874 (frameset-save): Do not modify frame list passed by the caller.
3875
3876 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3877
3878 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3879
3880 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3881
3882 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3883 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3884
3885 * custom.el (custom-initialize-default, custom-initialize-set)
3886 (custom-initialize-reset, custom-initialize-changed): Affect the
3887 toplevel-default-value (bug#6275, bug#14586).
3888 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3889 for bug#6275.
3890
3891 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3892
3893 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3894 Add cl-def* expressions.
3895
3896 * frameset.el (frameset-filter-params): Fix order of arguments.
3897
3898 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3899
3900 Move code related to saving frames to frameset.el.
3901 * desktop.el: Require frameset.
3902 (desktop-restore-frames): Doc fix.
3903 (desktop-restore-reuses-frames): Rename from
3904 desktop-restoring-reuses-frames.
3905 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3906 (desktop-clear): Clear frames too.
3907 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3908 (desktop--filter-tty*, desktop-save, desktop-read):
3909 Use frameset functions.
3910 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3911 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3912 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3913 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3914 (desktop--process-minibuffer-frames, desktop-save-frames)
3915 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3916 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3917 (desktop--sort-states, desktop-restoring-frames-p)
3918 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3919 (desktop-restoring-frameset-p, desktop-restore-frameset)
3920 (desktop--check-dont-save, desktop-save-frameset): New functions.
3921 (desktop--app-id): New constant.
3922 (desktop-first-buffer, desktop-buffer-ok-count)
3923 (desktop-buffer-fail-count): Move before first use.
3924 * frameset.el: New file.
3925
3926 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3927
3928 * files.el: Use lexical-binding.
3929 (dir-locals-read-from-file): Remove unused `err' variable.
3930 (hack-dir-local-variables--warned-coding): New var.
3931 (hack-dir-local-variables): Use it to avoid repeated warnings.
3932 (make-backup-file-name--default-function): New function.
3933 (make-backup-file-name-function): Use it as default.
3934 (buffer-stale--default-function): New function.
3935 (buffer-stale-function): Use it as default.
3936 (revert-buffer-insert-file-contents--default-function): New function.
3937 (revert-buffer-insert-file-contents-function): Use it as default.
3938 (insert-directory): Avoid add-to-list.
3939
3940 * autorevert.el (auto-revert-handler): Simplify.
3941 Use buffer-stale--default-function.
3942
3943 2013-08-01 Tassilo Horn <tsdh@gnu.org>
3944
3945 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3946
3947 * whitespace.el (whitespace-ensure-local-variables): New function.
3948 (whitespace-cleanup-region): Call it.
3949 (whitespace-turn-on): Call it.
3950
3951 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
3952
3953 Complete file name handlers.
3954
3955 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3956 (tramp-handle-verify-visited-file-modtime)
3957 (tramp-handle-file-notify-rm-watch): New functions.
3958 (tramp-call-process): Do not bind `default-directory'.
3959
3960 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3961 Order alphabetically.
3962 [access-file, add-name-to-file, dired-call-process]:
3963 [dired-compress-file, file-acl, file-notify-rm-watch]:
3964 [file-ownership-preserved-p, file-selinux-context]:
3965 [make-directory-internal, make-symbolic-link, set-file-acl]:
3966 [set-file-selinux-context, set-visited-file-modtime]:
3967 [verify-visited-file-modtime]: Add handler.
3968 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3969
3970 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3971 [file-notify-add-watch, file-notify-rm-watch]:
3972 [set-file-times, set-visited-file-modtime]:
3973 [verify-visited-file-modtime]: Add handler.
3974 (with-tramp-gvfs-error-message)
3975 (tramp-gvfs-handle-set-visited-file-modtime)
3976 (tramp-gvfs-fuse-file-name): Remove.
3977 (tramp-gvfs-handle-file-notify-add-watch)
3978 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3979 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3980
3981 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3982 Order alphabetically.
3983 [file-notify-rm-watch ]: Use default Tramp handler.
3984 [executable-find]: Remove private handler.
3985 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3986 `default-directory'.
3987 (tramp-sh-handle-executable-find)
3988 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3989 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3990 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3991 Do not use `format' in `tramp-message'.
3992
3993 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3994 [file-notify-rm-watch, set-visited-file-modtime]:
3995 [verify-visited-file-modtime]: Add handler.
3996 (tramp-smb-call-winexe): Do not bind `default-directory'.
3997
3998 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3999
4000 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
4001
4002 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
4003
4004 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
4005 use it.
4006 (log-view-diff-changeset): Same.
4007 (log-view-diff-common): Call backend command `previous-revision'
4008 to find out the previous revision, in both cases. Swap the
4009 variables `to' and `fr', so that `fr' usually refers to the
4010 earlier revision (Bug#14989).
4011
4012 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
4013
4014 * ibuf-ext.el (ibuffer-filter-by-filename):
4015 Make it work with dired buffers too.
4016
4017 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
4018
4019 * emacs-lisp/re-builder.el (reb-color-display-p):
4020 * files.el (save-buffers-kill-terminal):
4021 * net/browse-url.el (browse-url):
4022 * server.el (server-save-buffers-kill-terminal):
4023 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
4024 Prefer nil to selected-frame for the first arg of frame-parameter.
4025
4026 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
4027
4028 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
4029
4030 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
4031
4032 * minibuffer.el (completion--twq-all): Try and preserve each
4033 completion's case choice (bug#14907).
4034
4035 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4036
4037 * net/network-stream.el (open-network-stream): Mention the new
4038 :nogreeting parameter.
4039 (network-stream-open-starttls): Use the :nogreeting parameter
4040 (bug#14938).
4041
4042 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
4043
4044 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
4045 more natural than popping.
4046
4047 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
4048 (shr-urlify): Highlight under mouse.
4049
4050 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
4051
4052 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
4053
4054 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
4055
4056 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
4057 buffer for output.
4058
4059 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
4060 point-min==1. Fix search string. Fix parentheses missing.
4061
4062 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
4063 assume point-min==1. Fix search string. Fix parentheses missing.
4064
4065 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
4066
4067 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
4068 buffer for output.
4069
4070 2013-07-29 Eli Zaretskii <eliz@gnu.org>
4071
4072 * frame.el (frame-notice-user-settings): Avoid inflooping when the
4073 initial frame is minibuffer-less. (Bug#14841)
4074
4075 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
4076
4077 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
4078 option.
4079
4080 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
4081 (tramp-maybe-open-connection): Use it.
4082
4083 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
4084
4085 * desktop.el (desktop--make-frame): Include `minibuffer' in the
4086 minimal set of parameters passed when creating a frame, because
4087 the minibuffer status of a frame cannot be changed later.
4088
4089 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
4090
4091 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
4092 replace-regexp-in-string and inadvertent omissions in previous change.
4093 (todo-filter-items): Ensure only file names are comma-separated in
4094 name of filtered items buffer.
4095
4096 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
4097
4098 * desktop.el: Optionally force offscreen frames back onscreen.
4099 (desktop-restoring-reuses-frames): New option.
4100 (desktop--compute-pos, desktop--move-onscreen): New functions.
4101 (desktop--make-frame): Use desktop--move-onscreen.
4102
4103 2013-07-27 Alan Mackenzie <acm@muc.de>
4104
4105 Fontify a Java generic method as a function.
4106 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
4107 value to t.
4108
4109 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
4110
4111 * calendar/todo-mode.el: Add command to rename todo files.
4112 (todo-rename-file): New command.
4113 (todo-key-bindings-t): Add key binding for it. Change the
4114 bindings of todo-filter-regexp-items(-multifile) to use `x'
4115 instead of `r', since the latter is better suited to the new
4116 renaming command.
4117
4118 2013-07-27 Alan Mackenzie <acm@muc.de>
4119
4120 Make Java try-with-resources statement parse properly.
4121 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
4122 (c-block-stmt-1-2-key): New language constants/variables.
4123 * progmodes/cc-engine.el (c-beginning-of-statement-1)
4124 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
4125 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
4126 with c-block-stmt-1-2-key.
4127
4128 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
4129
4130 * desktop.el (desktop--make-frame): Apply most frame parameters after
4131 creating the frame to force (partially or totally) offscreen frames to
4132 be restored as such.
4133
4134 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
4135
4136 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
4137 (Bug#14948)
4138
4139 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4140
4141 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
4142 `base' arg of backtrace-frame.
4143
4144 2013-07-26 Eli Zaretskii <eliz@gnu.org>
4145
4146 * simple.el (list-processes): Doc fix.
4147
4148 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
4149
4150 * desktop.el (desktop--select-frame):
4151 Try harder to reuse existing frames.
4152
4153 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4154
4155 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
4156 (edebug-eval): Use backtrace-eval.
4157 (edebug--display, edebug--recursive-edit): Don't let-bind the
4158 edebug-outer-* vars that keep track of variables we locally let-bind.
4159 (edebug-outside-excursion): Don't restore outside values of locally
4160 let-bound vars.
4161 (edebug--display): Use user-error.
4162 (cl-lexical-debug, cl-debug-env): Remove.
4163
4164 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
4165
4166 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
4167 are restored to be sure that they are visible before deleting any
4168 remaining ones.
4169
4170 2013-07-26 Matthias Meulien <orontee@gmail.com>
4171
4172 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
4173 vc-print-root-log. (Bug#14948)
4174
4175 2013-07-26 Richard Stallman <rms@gnu.org>
4176
4177 Add aliases for encrypting mail.
4178 * epa.el (epa-mail-aliases): New option.
4179 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
4180 Bind inhibit-read-only so read-only text doesn't ruin everything.
4181 (epa-mail-default-recipients): New subroutine broken out.
4182 Handle epa-mail-aliases.
4183
4184 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4185
4186 Add support for lexical variables to the debugger's `e' command.
4187 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
4188 vars, except for debugger-outer-match-data.
4189 (debugger-frame-number): Move check for "on a function call" from
4190 callers into it. Add `skip-base' argument.
4191 (debugger-frame, debugger-frame-clear): Simplify accordingly.
4192 (debugger-env-macro): Only reset the state stored in non-variables,
4193 i.e. current-buffer and match-data.
4194 (debugger-eval-expression): Rewrite using backtrace-eval.
4195 * subr.el (internal--called-interactively-p--get-frame): Remove.
4196 (called-interactively-p):
4197 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
4198 `base' arg of backtrace-frame instead.
4199
4200 2013-07-26 Glenn Morris <rgm@gnu.org>
4201
4202 * align.el (align-regexp): Doc fix. (Bug#14857)
4203 (align-region): Explicit error if subexpression missing/does not match.
4204
4205 * simple.el (global-visual-line-mode):
4206 Do not duplicate the mode lighter. (Bug#14858)
4207
4208 2013-07-25 Martin Rudalics <rudalics@gmx.at>
4209
4210 * window.el (display-buffer): In display-buffer bind
4211 split-window-keep-point to t, bug#14829.
4212
4213 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
4214
4215 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
4216 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
4217 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
4218 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4219 Change accordingly.
4220 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4221 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
4222
4223 2013-07-25 Glenn Morris <rgm@gnu.org>
4224
4225 * dired-x.el (dired-mark-extension): Convert comment to doc string.
4226
4227 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
4228
4229 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
4230 parameter to modify-frame-parameters if the value has not changed;
4231 this is a workaround for bug#14949.
4232 (desktop--make-frame): On cl-delete-if call, check parameter name,
4233 not full parameter.
4234
4235 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
4236
4237 * vc/vc.el (vc-ignore): New function.
4238
4239 * vc/vc-svn.el (vc-svn-ignore): New function.
4240
4241 * vc/vc-hg.el (vc-hg-ignore): New function.
4242
4243 * vc/vc-git.el (vc-git-ignore): New function.
4244
4245 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
4246 (vc-dir-ignore): New function.
4247
4248 * vc/vc-cvs.el (vc-cvs-ignore): New function.
4249 (cvs-append-to-ignore): Move here from pcvs.el.
4250
4251 * vc/vc-bzr.el (vc-bzr-ignore): New function.
4252
4253 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
4254
4255 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
4256
4257 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
4258 (desktop-restore-frames): Warn when deleting an existing frame failed.
4259
4260 2013-07-24 Glenn Morris <rgm@gnu.org>
4261
4262 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
4263
4264 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
4265
4266 * filenotify.el (file-notify-supported-p):
4267 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4268 Remove functions.
4269
4270 * autorevert.el (auto-revert-use-notify):
4271 (auto-revert-notify-add-watch):
4272 * net/tramp.el (tramp-file-name-for-operation):
4273 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4274 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4275 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4276 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4277 Remove `file-notify-supported-p' entry.
4278
4279 2013-07-24 Glenn Morris <rgm@gnu.org>
4280
4281 * printing.el: Replace all uses of deleted ps-windows-system,
4282 ps-lp-system, ps-flatten-list with lpr- versions.
4283
4284 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4285
4286 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
4287 checked with memq (bug#14935).
4288
4289 * files.el (revert-buffer-function): Use a non-nil default.
4290 (revert-buffer-preserve-modes): Declare var to
4291 provide access to the `preserve-modes' argument.
4292 (revert-buffer): Let-bind it.
4293 (revert-buffer--default): New function, extracted from revert-buffer.
4294
4295 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4296
4297 * lpr.el: Signal print errors more prominently.
4298 (print-region-function): Don't default to nil.
4299 (lpr-print-region): New function, extracted from print-region-1.
4300 Check lpr's return value and signal an error in case of problem.
4301 (print-region-1): Use it.
4302 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
4303 versions instead.
4304 (ps-printer-name): Default to nil.
4305 (ps-printer-name-option): Default to lpr-printer-switch.
4306 (ps-print-region-function): Don't default to nil.
4307 (ps-postscript-code-directory): Simplify default.
4308 (ps-do-despool): Use lpr-print-region to properly check the outcome.
4309 (ps-string-list, ps-eval-switch, ps-flatten-list)
4310 (ps-flatten-list-1): Remove.
4311 (ps-multibyte-buffer): Avoid setq.
4312 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
4313 (print-region-function, ps-print-region-function): Don't set them here.
4314
4315 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
4316
4317 * ido.el (ido-fractionp):
4318 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
4319 (ido-max-file-prompt-width, ido-unc-hosts-cache)
4320 (ido-max-directory-size, ido-max-dir-file-cache)
4321 (ido-decorations): Doc fix.
4322
4323 * ansi-color.el: Fix old URL.
4324
4325 2013-07-23 Michael R. Mauger <michael@mauger.com>
4326
4327 * progmodes/sql.el: Version 3.3
4328 (sql-product-alist): Improve oracle :prompt-cont-regexp.
4329 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
4330 (sql-interactive-remove-continuation-prompt): Rewrite, use
4331 functions above. Fix continuation prompt and complete output line
4332 handling.
4333 (sql-redirect-one, sql-execute): Use `read-only-mode' on
4334 redirected output buffer.
4335 (sql-mode): Restore deleted code (Bug#13591).
4336
4337 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4338
4339 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
4340
4341 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
4342
4343 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
4344
4345 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4346 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4347 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
4348
4349 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4350
4351 * desktop.el (desktop-clear): Simplify; remove useless checks
4352 against invalid buffer names.
4353 (desktop-list*): Use cl-list*.
4354 (desktop-buffer-info, desktop-create-buffer): Simplify.
4355
4356 2013-07-23 Leo Liu <sdl.web@gmail.com>
4357
4358 * bookmark.el (bookmark-make-record): Restore NAME as a default
4359 value. (Bug#14933)
4360
4361 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4362
4363 * emacs-lisp/autoload.el (autoload--setup-output): New function,
4364 extracted from autoload--insert-text.
4365 (autoload--insert-text): Remove.
4366 (autoload--print-cookie-text): New function, extracted from
4367 autoload--insert-cookie-text.
4368 (autoload--insert-cookie-text): Remove.
4369 (autoload-generate-file-autoloads): Adjust calls accordingly.
4370
4371 * winner.el (winner-hook-installed-p): Remove.
4372 (winner-mode): Simplify accordingly.
4373
4374 * subr.el (add-to-list): Fix compiler-macro when `append' is
4375 not constant. Don't use `cl-member' for the base case.
4376
4377 * progmodes/subword.el: Fix boundary case (bug#13758).
4378 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
4379 own group.
4380 (subword-backward-regexp): Make it a constant.
4381 (subword-forward-internal): Don't treat a trailing capital as the
4382 beginning of a word.
4383
4384 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4385
4386 * emacs-lisp/package.el (package-menu-mode): Don't modify the
4387 global value of tabulated-list-revert-hook (bug#14930).
4388
4389 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
4390
4391 * desktop.el: Require 'cl-lib.
4392 (desktop-before-saving-frames-functions): New hook.
4393 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
4394 for frames being saved. Rename from desktop--save-minibuffer-frames.
4395 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
4396 Do not save frames with non-nil `desktop-dont-save' parameter.
4397 Filter out deleted frames.
4398 (desktop--find-frame): Use cl-find-if.
4399 (desktop--select-frame): Use cl-(first|second|third) to access values
4400 of desktop-mini.
4401 (desktop--make-frame): Use cl-delete-if.
4402 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
4403 (desktop-restore-frames): Use cl-(first|second|third) to access values
4404 of desktop-mini. Look for visible frame at the end, not while
4405 restoring frames.
4406
4407 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
4408 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
4409 Use string-match-p, looking-at-p (bug#14927).
4410
4411 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
4412
4413 * desktop.el (desktop-saved-frame-states):
4414 Rename from desktop--saved-states; all users changed.
4415 (desktop-save-frames): Rename from desktop--save-frames.
4416 Do not save state to desktop file.
4417 (desktop-save): Save desktop-saved-frame-states to desktop file
4418 and reset to nil.
4419 (desktop-restoring-frames-p): New function.
4420 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
4421 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
4422 buffer-lists when restoring frames. Suggested by Martin Rudalics.
4423
4424 * desktop.el: Correctly restore iconified frames.
4425 (desktop--filter-iconified-position): New function.
4426 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
4427
4428 2013-07-20 Glenn Morris <rgm@gnu.org>
4429
4430 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
4431 Let `message' do the formatting.
4432 (def-gdb-preempt-display-buffer): Add explicit format.
4433
4434 * image-dired.el (image-dired-track-original-file):
4435 Use with-current-buffer.
4436 (image-dired-track-thumbnail): Use with-current-buffer.
4437 Avoid changing point of wrong window.
4438
4439 * image-dired.el (image-dired-track-original-file):
4440 Avoid changing point of wrong window. (Bug#14909)
4441
4442 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
4443
4444 * progmodes/gdb-mi.el (gdb-done-or-error):
4445 Guard against "%" in gdb output. (Bug#14127)
4446
4447 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
4448
4449 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
4450 (Bug#14826)
4451
4452 * international/mule.el (coding-system-iso-2022-flags): Fix last
4453 change.
4454
4455 2013-07-20 Kenichi Handa <handa@gnu.org>
4456
4457 * international/mule.el (coding-system-iso-2022-flags):
4458 Add `8-bit-level-4'. (Bug#8522)
4459
4460 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4461
4462 * net/shr.el (shr-mouse-browse-url): New command and keystroke
4463 (bug#14815).
4464
4465 * net/eww.el (eww-process-text-input): Allow inputting when the
4466 point is at the start of the line, as the properties aren't
4467 front-sticky.
4468
4469 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
4470 degenerate widths.
4471
4472 2013-07-19 Richard Stallman <rms@gnu.org>
4473
4474 * epa.el (epa-popup-info-window): Doc fix.
4475
4476 * subr.el (split-string): New arg TRIM.
4477
4478 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
4479
4480 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
4481 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
4482
4483 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
4484
4485 * filenotify.el (file-notify--library): Rename from
4486 `file-notify-support'. Do not autoload. Adapt all uses.
4487 (file-notify-supported-p): New defun.
4488
4489 * autorevert.el (auto-revert-use-notify):
4490 Use `file-notify-supported-p' instead of `file-notify-support'.
4491 Adapt docstring.
4492 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
4493
4494 * net/tramp.el (tramp-file-name-for-operation):
4495 Add `file-notify-supported-p'.
4496
4497 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4498 New defun.
4499 (tramp-sh-file-name-handler-alist): Add it as handler for
4500 `file-notify-supported-p '.
4501
4502 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4503 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4504 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4505 Add `ignore' as handler for `file-notify-*' functions.
4506
4507 2013-07-17 Eli Zaretskii <eliz@gnu.org>
4508
4509 * simple.el (line-move-partial, line-move): Don't start vscroll or
4510 scroll-up if the current line is not taller than the window.
4511 (Bug#14881)
4512
4513 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
4514
4515 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
4516 highlight question marks in the method names as strings.
4517 (ruby-block-beg-keywords): Inline.
4518 (ruby-font-lock-keyword-beg-re): Extract from
4519 `ruby-font-lock-keywords'.
4520
4521 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
4522
4523 * frame.el (blink-cursor-blinks): New defcustom.
4524 (blink-cursor-blinks-done): New defvar.
4525 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
4526 (blink-cursor-timer-function): Check if number of blinks has been
4527 done on X and NS.
4528 (blink-cursor-suspend, blink-cursor-check): New defuns.
4529
4530 2013-07-15 Glenn Morris <rgm@gnu.org>
4531
4532 * edmacro.el (edmacro-format-keys): Fix previous change.
4533
4534 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
4535
4536 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
4537 The hack didn't work outside English locales anyway.
4538
4539 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
4540
4541 * simple.el (define-alternatives): Rename from alternatives-define,
4542 per RMS' suggestion.
4543
4544 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
4545
4546 * desktop.el (desktop-restore-frames): Change default to t.
4547 (desktop-restore-in-current-display): Now offer more options.
4548 (desktop-restoring-reuses-frames): New customization option.
4549 (desktop--saved-states): Doc fix.
4550 (desktop-filter-parameters-alist): New variable, renamed and expanded
4551 from desktop--excluded-frame-parameters.
4552 (desktop--target-display): New variable.
4553 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
4554 (desktop--filter-tty*, desktop--filter-*-color)
4555 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
4556 (desktop--filter-save-desktop-parm)
4557 (desktop-restore-in-original-display-p): New functions.
4558 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
4559 (desktop--save-minibuffer-frames): New function, inspired by a similar
4560 function from Martin Rudalics.
4561 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
4562 (desktop--restore-in-this-display-p): Remove.
4563 (desktop--find-frame): Rename from desktop--find-frame-in-display
4564 and add predicate argument.
4565 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
4566 (desktop--reuse-list): New variable.
4567 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
4568 New functions.
4569 (desktop--restore-frames): Add support for "minibuffer-special" frames.
4570
4571 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
4572
4573 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
4574
4575 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
4576
4577 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4578 Highlight conversion methods on Kernel.
4579
4580 2013-07-13 Alan Mackenzie <acm@muc.de>
4581
4582 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
4583 and comment it out. This out-commenting enables certain C++
4584 declarations to be parsed correctly.
4585
4586 2013-07-13 Eli Zaretskii <eliz@gnu.org>
4587
4588 * international/mule.el (define-coding-system): Doc fix.
4589
4590 * simple.el (default-font-height): Don't call font-info if the
4591 frame's default font didn't change since the frame was created.
4592 (Bug#14838)
4593
4594 2013-07-13 Leo Liu <sdl.web@gmail.com>
4595
4596 * ido.el (ido-read-file-name): Guard against non-symbol value.
4597
4598 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4599
4600 * progmodes/python.el (python-imenu--build-tree): Fix corner case
4601 in nested defuns.
4602
4603 2013-07-13 Leo Liu <sdl.web@gmail.com>
4604
4605 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
4606 ido-set-matches call. (Bug#6852)
4607
4608 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
4609
4610 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
4611 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
4612 Ruby 2.0.
4613 (ruby-font-lock-keywords): Distinguish calls to functions with
4614 module-like names from module references. Highlight character
4615 literals.
4616
4617 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4618
4619 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
4620 (gdb-send): Handle continued commands. (Bug#14847)
4621
4622 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4623
4624 * desktop.el (desktop--v2s): Remove unused local variable.
4625 (desktop-save-buffer): Make defvar-local; adjust docstring.
4626 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
4627 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
4628
4629 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
4630
4631 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
4632
4633 2013-07-12 Eli Zaretskii <eliz@gnu.org>
4634
4635 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
4636 (Bug#14842)
4637
4638 2013-07-12 Glenn Morris <rgm@gnu.org>
4639
4640 * doc-view.el: Require cl-lib at runtime too.
4641 (doc-view-remove-if): Remove.
4642 (doc-view-search-next-match, doc-view-search-previous-match):
4643 Use cl-remove-if.
4644
4645 * edmacro.el: Require cl-lib at runtime too.
4646 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
4647 (edmacro-mismatch, edmacro-subseq): Remove.
4648
4649 * shadowfile.el: Require cl-lib.
4650 (shadow-remove-if): Remove.
4651 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
4652 Use cl-remove-if.
4653
4654 * wid-edit.el: Require cl-lib.
4655 (widget-choose): Use cl-remove-if.
4656 (widget-remove-if): Remove.
4657
4658 * progmodes/ebrowse.el: Require cl-lib at runtime too.
4659 (ebrowse-delete-if-not): Remove.
4660 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
4661 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
4662 Use cl-delete-if-not.
4663
4664 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4665
4666 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
4667 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
4668
4669 2013-07-12 Leo Liu <sdl.web@gmail.com>
4670
4671 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
4672
4673 2013-07-11 Glenn Morris <rgm@gnu.org>
4674
4675 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
4676 (edebug-gensym-index, edebug-gensym):
4677 Remove reimplementation of cl-gensym.
4678 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
4679
4680 * thumbs.el: Require cl-lib at run-time too.
4681 (thumbs-gensym-counter, thumbs-gensym):
4682 Remove reimplementation of cl-gensym.
4683 (thumbs-temp-file): Use cl-gensym.
4684
4685 * emacs-lisp/ert.el: Require cl-lib at runtime too.
4686 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
4687 (ert--intersection, ert--set-difference, ert--set-difference-eq)
4688 (ert--union, ert--gensym-counter, ert--gensym-counter)
4689 (ert--coerce-to-vector, ert--remove*, ert--string-position)
4690 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
4691 (ert-make-test-unbound, ert--expand-should-1)
4692 (ert--expand-should, ert--should-error-handle-error)
4693 (should-error, ert--explain-equal-rec)
4694 (ert--plist-difference-explanation, ert-select-tests)
4695 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
4696 Use cl-lib functions rather than reimplementations.
4697
4698 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
4699
4700 * net/tramp.el (tramp-methods): Extend docstring.
4701 (tramp-connection-timeout): New defcustom.
4702 (tramp-error-with-buffer): Reset timestamp only when appropriate.
4703 (with-tramp-progress-reporter): Simplify.
4704 (tramp-process-actions): Improve messages.
4705
4706 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4707 * net/tramp-sh.el (tramp-maybe-open-connection):
4708 Use `tramp-connection-timeout'.
4709 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
4710 (Bug#14808)
4711
4712 2013-07-11 Leo Liu <sdl.web@gmail.com>
4713
4714 * ido.el (ido-read-file-name): Conform to the requirements of
4715 read-file-name. (Bug#11861)
4716 (ido-read-directory-name): Conform to the requirements of
4717 read-directory-name.
4718
4719 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
4720
4721 * subr.el (delay-warning): New function.
4722
4723 2013-07-10 Eli Zaretskii <eliz@gnu.org>
4724
4725 * simple.el (default-line-height): New function.
4726 (line-move-partial, line-move): Use it instead of computing the
4727 line height inline.
4728 (line-move-partial): Always compute ROWH. If the last line is
4729 partially-visible, but its text is completely visible, allow
4730 cursor to enter such a partially-visible line.
4731
4732 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
4733
4734 Improve error messages. (Bug#14808)
4735
4736 * net/tramp.el (tramp-current-connection): New defvar, moved from
4737 tramp-sh.el.
4738 (tramp-message-show-progress-reporter-message): Remove, not
4739 needed anymore.
4740 (tramp-error-with-buffer): Show message in minibuffer.
4741 Discard input before waiting. Reset connection timestamp.
4742 (with-tramp-progress-reporter): Improve messages.
4743 (tramp-process-actions): Use progress reporter. Delete process in
4744 case of error. Improve messages.
4745
4746 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4747 Call `tramp-error-with-buffer' with vector and buffer.
4748 (tramp-current-connection): Remove.
4749 (tramp-maybe-open-connection): The car of
4750 `tramp-current-connection' are the first 3 slots of the vector.
4751
4752 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4753
4754 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4755 inside continued strings.
4756
4757 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4758
4759 Timestamp fixes for undo (Bug#14824).
4760 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4761
4762 2013-07-10 Leo Liu <sdl.web@gmail.com>
4763
4764 * files.el (require-final-newline): Allow safe local value.
4765 (Bug#14834)
4766
4767 2013-07-09 Leo Liu <sdl.web@gmail.com>
4768
4769 * ido.el (ido-read-directory-name): Handle fallback.
4770 (ido-read-file-name): Update DIR to ido-current-directory.
4771 (Bug#1516)
4772 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
4773
4774 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4775
4776 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4777 "autoload". Remove "warn lower camel case" section, previously
4778 commented out. Highlight negation char. Do not highlight the
4779 target in singleton method definitions.
4780
4781 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4782
4783 * faces.el (tty-setup-hook): Declare the hook.
4784
4785 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4786 and detect when a guard/pred depends on local vars (bug#14773).
4787 (pcase--u1): Adjust caller.
4788
4789 2013-07-08 Eli Zaretskii <eliz@gnu.org>
4790
4791 * simple.el (line-move-partial, line-move): Account for
4792 line-spacing.
4793 (line-move-partial): Avoid setting vscroll when the last
4794 partially-visible line in window is of default height.
4795
4796 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4797
4798 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4799 been used a while.
4800
4801 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
4802
4803 * subr.el (read-quoted-char): Remove unused local variable `char'.
4804
4805 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4806
4807 * ediff.el (ediff-version): Version update.
4808 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4809 (ediff-merge-with-ancestor-command, ediff-directories-command)
4810 (ediff-directories3-command, ediff-merge-directories-command)
4811 (ediff-merge-directories-with-ancestor-command): New functions.
4812 All are command-line interfaces to ediff: to facilitate calling
4813 Emacs with the appropriate ediff functions invoked.
4814
4815 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4816 (viper-save-kill-buffer): Check if buffer is modified.
4817
4818 * viper.el (viper-version): Version update.
4819 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
4820
4821 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4822
4823 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4824 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4825 (viper-intercept-ESC-key): Simplify.
4826 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4827 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4828 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4829 (viper-setup-ESC-to-escape): New functions.
4830 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4831 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
4832
4833 2013-07-07 Eli Zaretskii <eliz@gnu.org>
4834
4835 * simple.el (default-font-height, window-screen-lines):
4836 New functions.
4837 (line-move, line-move-partial): Use them instead of
4838 frame-char-height and window-text-height. This makes scrolling
4839 text smoother when the buffer's default face uses a font that is
4840 different from the frame's default font.
4841
4842 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4843
4844 * files.el (write-file): Do not display confirm dialog for NS,
4845 it does its own dialog, which can't be cancelled (Bug#14578).
4846
4847 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4848
4849 * simple.el (line-move-partial): Adjust the row returned by
4850 posn-at-point for the current window-vscroll. (Bug#14567)
4851
4852 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
4853
4854 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4855 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4856 spaces.
4857
4858 2013-07-06 Martin Rudalics <rudalics@gmx.at>
4859
4860 * window.el (window-state-put-stale-windows): New variable.
4861 (window--state-put-2): Save list of windows without matching buffer.
4862 (window-state-put): Remove "bufferless" windows if possible.
4863
4864 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4865
4866 * simple.el (alternatives-define): Remove leftover :group keyword.
4867 Tweak docstring.
4868
4869 2013-07-06 Leo Liu <sdl.web@gmail.com>
4870
4871 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4872 (ido-enable-virtual-buffers): New variable.
4873 (ido-buffer-internal, ido-toggle-virtual-buffers)
4874 (ido-make-buffer-list): Use it.
4875 (ido-exhibit): Support turning on and off virtual buffers
4876 automatically.
4877
4878 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4879
4880 * simple.el (alternatives-define): New macro.
4881
4882 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4883
4884 * subr.el (read-quoted-char): Use read-key.
4885 (sit-for): Let read-event decode tty input (bug#14782).
4886
4887 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
4888
4889 * calendar/todo-mode.el: Add handling of file deletion, both by
4890 mode command and externally. Fix various related bugs.
4891 Clarify Commentary and improve some documentation strings and code.
4892 (todo-delete-file): New command.
4893 (todo-check-file): New function.
4894 (todo-show): Handle external deletion of the file we're trying to
4895 show (bug#14688). Replace called-interactively-p by an optional
4896 prefix argument to avoid problematic interaction with catch form
4897 when byte compiled (bug#14702).
4898 (todo-quit): Handle external deletion of the archive's todo file.
4899 Make sure the buffer that was visiting the archive file is still
4900 live before trying to bury it.
4901 (todo-category-completions): Handle external deletion of any
4902 category completion files.
4903 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4904 of todo files, in case of external deletion.
4905 (todo-add-file): Replace unnecessary setq by let-binding.
4906 (todo-find-archive): Check whether there are any archives.
4907 Replace unnecessary setq by let-binding.
4908 (todo-archive-done-item): Use find-file-noselect to get the
4909 archive buffer whether or not the archive already exists.
4910 Remove superfluous code. Use file size instead of buffer-file-name to
4911 check if the archive is new; if it is, update list of archives.
4912 (todo-default-todo-file): Allow nil to be a valid value for when
4913 there are no todo files.
4914 (todo-reevaluate-default-file-defcustom): Use corrected definition
4915 of todo-default-todo-file.
4916 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4917 (todo-delete-category, todo-show-categories-table)
4918 (todo-category-number): Clarify comment.
4919 (todo-filter-items): Clarify documentation string.
4920 (todo-show-current-file, todo-display-as-todo-file)
4921 (todo-reset-and-enable-done-separator): Tweak documentation string.
4922 (todo-done-separator): Make separator length window-width, since
4923 bug#2749 is now fixed.
4924
4925 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
4926
4927 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4928 Support both "gvfs-monitor-dir" and "inotifywait".
4929 (tramp-sh-file-inotifywait-process-filter): Rename from
4930 `tramp-sh-file-notify-process-filter'.
4931 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4932 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4933
4934 2013-07-05 Leo Liu <sdl.web@gmail.com>
4935
4936 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4937
4938 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4939
4940 * frame.el (display-pixel-height, display-pixel-width)
4941 (display-mm-height, display-mm-width): Mention behavior on
4942 multi-monitor setups in docstrings.
4943 (w32-display-monitor-attributes-list): Declare function.
4944 (display-monitor-attributes-list): Use it.
4945
4946 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
4947
4948 * filenotify.el: New package.
4949
4950 * autorevert.el (top): Require filenotify.el.
4951 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4952 instead.
4953 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4954 (auto-revert-notify-handler): Use `file-notify-*' functions.
4955
4956 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4957
4958 * net/tramp.el (tramp-file-name-for-operation):
4959 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
4960
4961 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4962 for `file-notify-add-watch' and `file-notify-rm-watch'.
4963 (tramp-process-sentinel): Improve trace.
4964 (tramp-sh-handle-file-notify-add-watch)
4965 (tramp-sh-file-notify-process-filter)
4966 (tramp-sh-handle-file-notify-rm-watch)
4967 (tramp-get-remote-inotifywait): New defuns.
4968
4969 2013-07-03 Juri Linkov <juri@jurta.org>
4970
4971 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4972 call of `occur-read-primary-args' to interactive spec.
4973
4974 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4975 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4976
4977 2013-07-03 Matthias Meulien <orontee@gmail.com>
4978
4979 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4980 `Buffer-menu-multi-occur'. Add it to the menu.
4981 (Buffer-menu-mode): Document it in docstring.
4982 (Buffer-menu-multi-occur): New command. (Bug#14673)
4983
4984 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4985
4986 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4987 keywords and built-ins.
4988
4989 2013-07-03 Glenn Morris <rgm@gnu.org>
4990
4991 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4992
4993 Make info-xref checks case-sensitive by default
4994 * info.el (Info-find-node, Info-find-in-tag-table)
4995 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4996 Add option for exact case matching of nodes.
4997 * info-xref.el (info-xref): New custom group.
4998 (info-xref-case-fold): New option.
4999 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
5000
5001 2013-07-03 Leo Liu <sdl.web@gmail.com>
5002
5003 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
5004
5005 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
5006
5007 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
5008 middle of block statement initially, lower the depth. Remove
5009 FIXME comment, not longer valid. Remove middle of block statement
5010 detection, no need to do that anymore since we've been using
5011 `ruby-parse-region' here.
5012
5013 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
5014
5015 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
5016
5017 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
5018
5019 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
5020
5021 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
5022
5023 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
5024 (desktop-restore-in-current-display): New customization option.
5025 (desktop--excluded-frame-parameters): Add `font'.
5026 (desktop--save-frames): Rename from desktop--save-windows.
5027 (desktop--restore-in-this-display-p): New function.
5028 (desktop--make-full-frame): Remove unwanted width/height from
5029 full(width|height) frames.
5030 (desktop--restore-frames): Rename from desktop--restore-windows.
5031 Obey desktop-restore-current-display. Do not delete old frames or
5032 select a new frame unless we were able to restore at least one frame.
5033
5034 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
5035
5036 * files.el (find-file-noselect): Simplify conditional expression.
5037
5038 * remember.el (remember-append-to-file):
5039 Don't mix `find-buffer-visiting' and `get-file-buffer'.
5040
5041 Add `remember-notes' function to store random notes across Emacs
5042 restarts.
5043 * remember.el (remember-data-file): Add :set callback to affect
5044 notes buffer (if any).
5045 (remember-notes): New command.
5046 (remember-notes-buffer-name, bury-remember-notes-on-kill):
5047 New defcustoms for the `remember-notes' function.
5048 (remember-notes-save-and-bury-buffer): New command.
5049 (remember-notes-mode-map): New variable.
5050 (remember-mode): New minor mode.
5051 (remember-notes--kill-buffer-query): New function.
5052 * startup.el (initial-buffer-choice): Add notes to custom type.
5053
5054 2013-06-30 Eli Zaretskii <eliz@gnu.org>
5055
5056 * bindings.el (right-char, left-char): Don't call sit-for, this is
5057 no longer needed. Use arithmetic comparison only for numerical
5058 arguments.
5059
5060 * international/mule-cmds.el (select-safe-coding-system):
5061 Handle the case of FROM being a string correctly. (Bug#14755)
5062
5063 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
5064
5065 * net/shr.el (shr-make-table-1): Add a sanity check that allows
5066 progression on degenerate tables.
5067 (shr-rescale-image): ImageMagick animated images currently don't work.
5068
5069 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
5070
5071 Some fixes and improvements for desktop frame restoration.
5072 It is still experimental and disabled by default.
5073 * desktop.el (desktop--save-windows): Put the selected frame at
5074 the head of the list.
5075 (desktop--make-full-frame): New function.
5076 (desktop--restore-windows): Try to re-select the frame that was
5077 selected upon saving. Do not abort if some frames fail to restore,
5078 just show an error message and continue. Set up maximized frames
5079 so they have default non-maximized dimensions.
5080
5081 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
5082
5083 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
5084 Don't start heredoc inside a string or comment.
5085
5086 2013-06-29 Eli Zaretskii <eliz@gnu.org>
5087
5088 * bindings.el (visual-order-cursor-movement): New defcustom.
5089 (right-char, left-char): Provide visual-order cursor motion by
5090 calling move-point-visually. Update the doc strings.
5091
5092 2013-06-28 Kenichi Handa <handa@gnu.org>
5093
5094 * international/mule.el (define-coding-system): New coding system
5095 properties :inhibit-null-byte-detection,
5096 :inhibit-iso-escape-detection, and :prefer-utf-8.
5097 (set-buffer-file-coding-system): If :charset-list property of
5098 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
5099 appropriate for setting.
5100
5101 * international/mule-cmds.el (select-safe-coding-system):
5102 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
5103 multibyte characters, return utf-8 (or one of its siblings).
5104
5105 * international/mule-conf.el (prefer-utf-8): New coding system.
5106 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
5107 files.
5108
5109 2013-06-28 Ivan Kanis <ivan@kanis.fr>
5110
5111 * net/shr.el (shr-render-region): New function.
5112
5113 * net/eww.el: Autoload `eww-browse-url'.
5114
5115 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
5116
5117 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5118 Adapt to `package-desc-version' being a list.
5119 Use `package--ac-desc-version' to retrieve version from a package
5120 archive element.
5121
5122 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
5123
5124 New experimental feature to save&restore window and frame setup.
5125 * desktop.el (desktop-save-windows): New defcustom.
5126 (desktop--saved-states): New var.
5127 (desktop--excluded-frame-parameters): New defconst.
5128 (desktop--filter-frame-parms, desktop--find-frame-in-display)
5129 (desktop--restore-windows, desktop--save-windows): New functions.
5130 (desktop-save): Call `desktop--save-windows'.
5131 (desktop-read): Call `desktop--restore-windows'.
5132
5133 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5134
5135 * net/shr.el (add-face-text-property): Remove compat definition.
5136
5137 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
5138
5139 * info.el (Info-try-follow-nearest-node): Move search for footnote
5140 above search for node name to prevent missing a footnote (bug#14717).
5141
5142 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
5143
5144 * obsolete/otodo-mode.el: Add obsolescence info to file header.
5145
5146 2013-06-27 Leo Liu <sdl.web@gmail.com>
5147
5148 * net/eww.el (eww-read-bookmarks): Check file size.
5149
5150 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5151
5152 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
5153 advice--pending if newdef is nil or an autoload (bug#13820).
5154 (advice-mapc): New function.
5155
5156 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5157
5158 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
5159 probably.
5160 (eww-mode-map): Add a menu bar.
5161 (eww-add-bookmark): New command.
5162 (eww-bookmark-mode): New mode and commands.
5163 (eww-add-bookmark): Remove newlines from the title.
5164 (eww-bookmark-browse): Don't bug out if it's the only window.
5165
5166 2013-06-26 Glenn Morris <rgm@gnu.org>
5167
5168 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
5169 (hfy-size): Handle ttys. (Bug#14668)
5170
5171 * info-xref.el: Update for Texinfo 5 change in *note format.
5172 (info-xref-node-re, info-xref-note-re): New constants.
5173 (info-xref-check-buffer): Use info-xref-note-re.
5174
5175 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5176
5177 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
5178
5179 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
5180 nil terminate the loop (bug#14718).
5181
5182 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5183
5184 * net/eww.el: Rework history traversal. When going forward/back,
5185 put these actions into the history, too, so that they can be
5186 replayed.
5187 (eww-render): Move the history reset to the correct buffer.
5188
5189 2013-06-25 Juri Linkov <juri@jurta.org>
5190
5191 * files-x.el (modify-dir-local-variable): Change the header comment
5192 in the file with directory local variables. (Bug#14692)
5193
5194 * files-x.el (read-file-local-variable-value): Add `default'.
5195 (Bug#14710)
5196
5197 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5198
5199 * net/eww.el (eww-make-unique-file-name): Create a unique file
5200 name before saving to entering `y' accidentally asynchronously.
5201
5202 2013-06-25 Ivan Kanis <ivan@kanis.fr>
5203
5204 * net/eww.el (eww-download): New command and keystroke.
5205
5206 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5207
5208 * net/eww.el (eww-copy-page-url): Change name of command.
5209
5210 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
5211 be more consistent with Info and dired.
5212
5213 * net/eww.el (eww-mode-map): Ditto.
5214
5215 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5216
5217 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
5218 packages from archives.
5219 (package-archive-contents): Change format; include obsolete packages.
5220 (package-desc): Use `dir' to mark builtin packages.
5221 (package--from-builtin): Set the `dir' field to `builtin'.
5222 (generated-autoload-file, version-control): Declare.
5223 (package-compute-transaction): Change first arg and return value to be
5224 lists of package-descs. Adjust to new package-archive-contents format.
5225 (package--add-to-archive-contents): Adjust to new
5226 package-archive-contents format.
5227 (package-download-transaction): Arg is now a list of package-descs.
5228 (package-install): If `pkg' is a package name, pass it as
5229 a requirement, so it is subject to the usual (e.g. disabled) checks.
5230 (describe-package): Accept package-desc as well.
5231 (describe-package-1): Describe a specific package-desc. Add links to
5232 other package-descs for the same package name.
5233 (package-menu-describe-package): Pass the actual package-desc.
5234 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
5235 works correctly.
5236 (package-desc-status): New function.
5237 (package-menu--refresh): New function, extracted
5238 from package-menu--generate.
5239 (package-menu--generate): Use it.
5240 (package-delete): Update package-alist.
5241 (package-menu-execute): Don't call package-initialize.
5242
5243 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
5244 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
5245 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
5246 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
5247 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
5248 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
5249
5250 2013-06-25 Martin Rudalics <rudalics@gmx.at>
5251
5252 * window.el (window--state-get-1): Workaround for bug#14527.
5253 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
5254
5255 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5256
5257 * net/eww.el (eww-back-url): Implement the history by stashing all
5258 the data into a list.
5259 (eww-forward-url): Allow going forward in the history, too.
5260
5261 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5262
5263 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
5264 for values and use read--expression for expressions (bug#14710).
5265 (read-file-local-variable): Avoid setq.
5266 (read-file-local-variable-mode): Use minor-mode-list.
5267
5268 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5269
5270 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
5271 for DOI URLs.
5272
5273 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5274
5275 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
5276 Update imenu-support when dialect changes.
5277
5278 2013-06-25 Leo Liu <sdl.web@gmail.com>
5279
5280 * ido.el (ido-read-internal): Allow forward slash on windows.
5281
5282 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5283
5284 * net/eww.el (eww): Start of strings is \\`, not ^.
5285
5286 2013-06-24 Ivan Kanis <ivan@kanis.fr>
5287
5288 * net/shr.el (shr-browse-url): Fix interactive spec.
5289
5290 * net/eww.el (eww): Add a trailing slash to domain names.
5291
5292 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
5293
5294 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
5295
5296 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5297
5298 * net/shr.el (shr-browse-url): Use an external browser if given a
5299 prefix.
5300
5301 * net/eww.el (eww-external-browser): Move to shr.
5302
5303 2013-06-24 Ivan Kanis <ivan@kanis.fr>
5304
5305 * net/eww.el (eww): Work more correctly for file: URLs.
5306 (eww-detect-charset): Allow quoted charsets.
5307 (eww-yank-page-url): New command and keystroke.
5308
5309 2013-06-24 Daiki Ueno <ueno@gnu.org>
5310
5311 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
5312 file name of gpg executable.
5313 (epg-context-program): New function.
5314 (epg-context-home-directory): New function.
5315 (epg-context-set-program): New function.
5316 (epg-context-set-home-directory): New function.
5317 (epg--start): Use `epg-context-program' instead of
5318 'epg-gpg-program'.
5319 (epg--list-keys-1): Likewise.
5320
5321 2013-06-24 Leo Liu <sdl.web@gmail.com>
5322
5323 * ido.el (ido-read-internal): Fix bug#14620.
5324
5325 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5326
5327 * faces.el (face-documentation): Simplify.
5328 (read-face-attribute, tty-find-type, x-resolve-font-name):
5329 Use `string-match-p'.
5330 (list-faces-display): Use `string-match-p'. Simplify.
5331 (face-spec-recalc): Check face to avoid face alias loops.
5332 (read-color): Use `string-match-p' and non-capturing parenthesis.
5333
5334 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5335
5336 * net/shr.el (shr-rescale-image): Use the new
5337 :max-width/:max-height functionality.
5338
5339 2013-06-23 Ivan Kanis <ivan@kanis.fr>
5340
5341 * net/eww.el (eww-search-prefix): New variable.
5342 (eww): Use it.
5343 (eww-external-browser): New variable.
5344 (eww-mode-map): New keystroke.
5345 (eww-browse-with-external-browser): New command.
5346
5347 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
5348
5349 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5350
5351 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
5352 Don't skip aligning the next header field when padding is 0;
5353 otherwise, field width is not respected unless the title is as
5354 wide as the field.
5355
5356 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5357
5358 * emacs-lisp/package.el (package-el-version): Remove.
5359 (package-process-define-package): Fix inf-loop.
5360 (package-install): Allow symbols as arguments again.
5361
5362 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5363
5364 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
5365 add some more keyword-like methods.
5366 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
5367
5368 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
5369
5370 * bs.el (bs-buffer-show-mark): Make defvar-local.
5371 (bs-mode): Use setq-local.
5372
5373 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
5374 (emacs-lock--try-unlocking): Make defvar-local.
5375
5376 2013-06-22 Glenn Morris <rgm@gnu.org>
5377
5378 * play/cookie1.el (cookie-apropos): Minor simplification.
5379
5380 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
5381
5382 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5383
5384 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
5385 `regexp-opt', it breaks the build during dumping.
5386
5387 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
5388
5389 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5390 Highlight keyword-like methods on Kernel and Module with
5391 font-lock-builtin-face.
5392 (auto-mode-alist): Consolidate different entries into one regexp
5393 and add more *file-s.
5394
5395 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
5396
5397 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
5398
5399 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
5400 (diary-entry): Use it in the action of this button type instead of
5401 diary-goto-entry.
5402
5403 * calendar/todo-mode.el: New version.
5404 (todo-add-category): Append new category to end of file and give
5405 it the highest number, instead of putting it at the beginning and
5406 giving it 0. Incorporate noninteractive functionality.
5407 (todo-forward-category): Adapt to 1-based category numbering.
5408 Allow skipping over archived categories.
5409 (todo-backward-category): Derive from todo-forward-category.
5410 (todo-backward-item, todo-forward-item): Make noninteractive and
5411 delegate interactive part to new commands. Make sensitive to done items.
5412 (todo-categories): Make value an alist of category names and
5413 vectors of item counts.
5414 (todo-category-beg): Make a defconst.
5415 (todo-category-number): Use 1 instead of 0 as initial value.
5416 (todo-category-select): Make sensitive to overlays, optional item
5417 highlighting and done items.
5418 (todo-delete-item): Make sensitive to overlays and marked and done items.
5419 (todo-edit-item): Make sensitive to overlays and editing of
5420 date/time header optional. Add format checks.
5421 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
5422 no-op if point is not on an item. Advertise using todo-edit-quit.
5423 (todo-edit-mode): Make sensitive to new format, font-locking, and
5424 multiple todo files.
5425 (todo-insert-item, todo-insert-item-here): Derive from
5426 todo-basic-insert-item and extend functionality.
5427 (todo-item-end, todo-item-start): Make sensitive to done items.
5428 (todo-item-string): Don't return text properties. Restore point.
5429 (todo-jump-to-category): Make sensitive to multiple todo files and
5430 todo archives. Use extended category completion.
5431 (todo-lower-item, todo-raise-item): Rename to *-priority and
5432 derive from todo-set-item-priority.
5433 (todo-mode): Derive from special-mode. Make sensitive to new
5434 format, font-locking and multiple todo files. Make read-only.
5435 (todo-mode-map): Don't suppress digit keys, so they can supply
5436 prefix arguments. Add many new key bindings.
5437 (todo-prefix): Insert as an overlay instead of file text.
5438 Change semantics from diary date expression to purely visual mark.
5439 (todo-print): Rename to todo-print-buffer. Make buffer display
5440 features printable. Remove option to restrict number of items
5441 printed. Add option to print to file.
5442 (todo-print-function): Rename to todo-print-buffer-function.
5443 (todo-quit): Extend to handle exiting new todo modes.
5444 (todo-remove-item): Make sensitive to overlays.
5445 (todo-save): Extend to buffers of filtered items.
5446 (todo-show): Make sensitive to done items, multiple todo files and
5447 new todo modes. Offer to convert legacy todo file before creating
5448 first new todo file.
5449 (todo-show-priorities): Rename to todo-top-priorities.
5450 Change semantics of value 0.
5451 (todo-top-priorities): Rename to todo-filter-top-priorities,
5452 derive from todo-filter-items and extend functionality.
5453 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
5454 and extend functionality to other types of filtered items.
5455 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
5456 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
5457 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
5458 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
5459 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
5460 (todo-edit-mode-hook, todo-entry-prefix-function)
5461 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
5462 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
5463 (todo-initials, todo-insert-threshold, todo-item-string-start)
5464 (todo-line-string, todo-menu, todo-mode-hook)
5465 (todo-more-important-p, todo-previous-answer, todo-previous-line)
5466 (todo-print-priorities, todo-remove-separator)
5467 (todo-save-top-priorities-too, todo-string-count-lines)
5468 (todo-string-multiline-p, todo-time-string-format)
5469 (todo-tmp-buffer-name): Remove.
5470 (todo-add-file, todo-archive-done-item, todo-choose-archive)
5471 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
5472 (todo-edit-category-diary-inclusion)
5473 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
5474 (todo-edit-file, todo-edit-item-date-day)
5475 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
5476 (todo-edit-item-date-month, todo-edit-item-date-to-today)
5477 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
5478 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
5479 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
5480 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
5481 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
5482 (todo-filter-top-priorities-multifile, todo-find-archive)
5483 (todo-find-filtered-items-file, todo-go-to-source-item)
5484 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
5485 (todo-jump-to-archive-category, todo-lower-category)
5486 (todo-mark-category, todo-marked-item-p, todo-merge-category)
5487 (todo-move-category, todo-move-item, todo-next-button)
5488 (todo-next-item, todo-padded-string, todo-powerset)
5489 (todo-previous-button, todo-previous-item)
5490 (todo-print-buffer-to-file, todo-raise-category)
5491 (todo-rename-category, todo-repair-categories-sexp, todo-search)
5492 (todo-set-category-number, todo-set-item-priority)
5493 (todo-set-top-priorities-in-category)
5494 (todo-set-top-priorities-in-file, todo-show-categories-table)
5495 (todo-sort-categories-alphabetically-or-numerically)
5496 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
5497 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
5498 (todo-toggle-item-header, todo-toggle-item-highlighting)
5499 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
5500 (todo-toggle-view-done-items, todo-toggle-view-done-only)
5501 (todo-unarchive-items, todo-unmark-category): New commands.
5502 (todo-absolute-file-name, todo-add-to-buffer-list)
5503 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
5504 (todo-basic-insert-item, todo-category-completions)
5505 (todo-category-number, todo-category-string-matcher-1)
5506 (todo-category-string-matcher-2, todo-check-filtered-items-file)
5507 (todo-check-format, todo-clear-matches)
5508 (todo-comment-string-matcher, todo-convert-legacy-date-time)
5509 (todo-current-category, todo-date-string-matcher)
5510 (todo-define-insertion-command, todo-diary-expired-matcher)
5511 (todo-diary-goto-entry, todo-diary-item-p)
5512 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
5513 (todo-display-categories, todo-display-sorted, todo-done-item-p)
5514 (todo-done-item-section-p, todo-done-separator)
5515 (todo-done-string-matcher, todo-files, todo-filter-items)
5516 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
5517 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
5518 (todo-insert-category-line, todo-insert-item-from-calendar)
5519 (todo-insert-sort-button, todo-insert-with-overlays)
5520 (todo-insertion-command-name, todo-insertion-key-bindings)
5521 (todo-label-to-key, todo-longest-category-name-length)
5522 (todo-make-categories-list, todo-mode-external-set)
5523 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
5524 (todo-modes-set-3, todo-multiple-filter-files)
5525 (todo-nondiary-marker-matcher, todo-prefix-overlays)
5526 (todo-read-category, todo-read-date, todo-read-dayname)
5527 (todo-read-file-name, todo-read-time)
5528 (todo-reevaluate-category-completions-files-defcustom)
5529 (todo-reevaluate-default-file-defcustom)
5530 (todo-reevaluate-filelist-defcustoms)
5531 (todo-reevaluate-filter-files-defcustom)
5532 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
5533 (todo-reset-done-separator, todo-reset-done-separator-string)
5534 (todo-reset-done-string, todo-reset-global-current-todo-file)
5535 (todo-reset-highlight-item, todo-reset-nondiary-marker)
5536 (todo-reset-prefix, todo-set-categories)
5537 (todo-set-date-from-calendar, todo-set-show-current-file)
5538 (todo-set-top-priorities, todo-short-file-name)
5539 (todo-show-current-file, todo-sort, todo-time-string-matcher)
5540 (todo-total-item-counts, todo-update-buffer-list)
5541 (todo-update-categories-display, todo-update-categories-sexp)
5542 (todo-update-count, todo-validate-name, todo-y-or-n-p):
5543 New functions.
5544 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
5545 New major modes.
5546 (todo-categories, todo-display, todo-edit, todo-faces)
5547 (todo-filtered): New defgroups.
5548 (todo-archived-only, todo-button, todo-category-string, todo-date)
5549 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
5550 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
5551 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
5552 (todo-add-item-if-new-category, todo-always-add-time-string)
5553 (todo-categories-align, todo-categories-archived-label)
5554 (todo-categories-category-label, todo-categories-diary-label)
5555 (todo-categories-done-label, todo-categories-number-separator)
5556 (todo-categories-todo-label, todo-categories-totals-label)
5557 (todo-category-completions-files, todo-completion-ignore-case)
5558 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
5559 (todo-done-separator-string, todo-done-string)
5560 (todo-files-function, todo-filter-done-items, todo-filter-files)
5561 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
5562 (todo-initial-category, todo-initial-file, todo-item-mark)
5563 (todo-legacy-date-time-regexp, todo-mode-line-function)
5564 (todo-nondiary-marker, todo-number-prefix)
5565 (todo-print-buffer-function, todo-show-current-file)
5566 (todo-show-done-only, todo-show-first, todo-show-with-done)
5567 (todo-skip-archived-categories, todo-top-priorities-overrides)
5568 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
5569 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
5570 New defcustoms.
5571 (todo-category-done, todo-date-pattern, todo-date-string-start)
5572 (todo-diary-items-buffer, todo-done-string-start)
5573 (todo-filtered-items-buffer, todo-item-start)
5574 (todo-month-abbrev-array, todo-month-name-array)
5575 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
5576 (todo-top-priorities-buffer): New defconsts.
5577 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
5578 (todo-categories-with-marks, todo-category-string-face)
5579 (todo-comment-face, todo-comment-string, todo-current-todo-file)
5580 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
5581 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
5582 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
5583 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
5584 (todo-font-lock-keywords, todo-global-current-todo-file)
5585 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
5586 (todo-insertion-commands-args)
5587 (todo-insertion-commands-args-genlist)
5588 (todo-insertion-commands-names, todo-insertion-map)
5589 (todo-key-bindings-t, todo-key-bindings-t+a)
5590 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
5591 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
5592 (todo-nondiary-face, todo-print-buffer, todo-time-face)
5593 (todo-visited): New variables.
5594
5595 2013-06-21 Glenn Morris <rgm@gnu.org>
5596
5597 * play/cookie1.el (cookie-apropos): Add optional display argument.
5598 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
5599 (psychoanalyze-pinhead): Use cookie-doctor.
5600
5601 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5602
5603 * emacs-lisp/package.el (tar-get-file-descriptor)
5604 (tar--extract): Declare.
5605
5606 2013-06-21 Eduard Wiebe <usenet@pusto.de>
5607
5608 Extend flymake's warning predicate to be a function (bug#14217).
5609 * progmodes/flymake.el (flymake-warning-predicate): New.
5610 (flymake-parse-line): Use it.
5611 (flymake-warning-re): Make obsolete alias to
5612 `flymake-warning-predicate'.
5613
5614 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5615
5616 * emacs-lisp/package.el (package-alist): Include obsolete packages.
5617 (package-obsolete-list): Remove.
5618 (package-activate): Remove min-version argument. Add `force' argument.
5619 Adjust to new package-alist format.
5620 (package-mark-obsolete): Remove.
5621 (package-unpack): Force reload of the package's autoloads.
5622 (package-installed-p): Check builtins if the installed package is not
5623 recent enough.
5624 (package-initialize): Don't reset package-obsolete-list.
5625 Don't specify which package version to activate.
5626 (package-process-define-package, describe-package-1)
5627 (package-menu--generate): Adjust to new package-alist format.
5628
5629 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5630
5631 * allout-widgets.el (allout-widgets-mode-off)
5632 (allout-widgets-mode-on, allout-widgets-pre-command-business)
5633 (allout-widgets-post-command-business)
5634 (allout-widgets-after-copy-or-kill-function)
5635 (allout-widgets-after-undo-function, allout-test-range-overlaps)
5636 (allout-decorate-item-and-context)
5637 (allout-graphics-modification-handler): Fix typos in docstrings.
5638 (allout-get-or-create-parent-widget): Use `looking-at-p'.
5639
5640 * cmuscheme.el (scheme-start-file): Doc fix.
5641 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
5642 (scheme-input-filter): Use `string-match-p'.
5643
5644 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
5645
5646 * dired-x.el: Use Dired consistently in docstrings.
5647
5648 * dired.el: Use Dired consistently in docstrings.
5649 (dired-readin, dired-mode): Use `setq-local'.
5650 (dired-switches-alist): Make defvar-local.
5651 (dired-buffers-for-dir): Use `zerop'.
5652 (dired-safe-switches-p, dired-switches-escape-p)
5653 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
5654 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
5655 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
5656 (dired-goto-next-nontrivial-file): Use `string-match-p'.
5657 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
5658 (dired-toggle-marks, dired-mark-files-containing-regexp)
5659 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
5660 (dired-flag-auto-save-files, dired-flag-backup-files):
5661 Use `looking-at-p'.
5662 (dired-mark-files-regexp, dired-build-subdir-alist):
5663 Use `string-match-p', `looking-at-p'.
5664
5665 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
5666 (direct-print-region-helper): Use `string-match-p'.
5667
5668 2013-06-21 Leo Liu <sdl.web@gmail.com>
5669
5670 * comint.el (comint-redirect-results-list-from-process):
5671 Fix infinite loop.
5672
5673 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5674
5675 * net/eww.el (eww-update-header-line-format): Quote % characters.
5676
5677 2013-06-21 Glenn Morris <rgm@gnu.org>
5678
5679 * play/cookie1.el (cookie): New custom group.
5680 (cookie-file): New option.
5681 (cookie-check-file): New function.
5682 (cookie): Make it interactive. Make start and end messages optional.
5683 Interactively, display the result. Default to cookie-file.
5684 (cookie-insert): Default to cookie-file.
5685 (cookie-snarf): Make start and end messages optional.
5686 Default to cookie-file. Use with-temp-buffer.
5687 (cookie-read): Rename from read-cookie.
5688 Make start and end messages optional. Default to cookie-file.
5689 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
5690 Do not autoload it.
5691 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
5692 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
5693
5694 2013-06-21 Leo Liu <sdl.web@gmail.com>
5695
5696 * progmodes/octave.el (octave-mode): Backward compatibility fix.
5697
5698 2013-06-21 Glenn Morris <rgm@gnu.org>
5699
5700 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
5701
5702 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5703 Daniel Hackney <dan@haxney.org>
5704
5705 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
5706 Consolidate the single-file vs tarball code.
5707 (package-desc-suffix): New function.
5708 (package-desc-full-name): Don't bother inlining it.
5709 (package-load-descriptor): Return the new package-desc.
5710 (package-mark-obsolete): Remove unused arg `package'.
5711 (package-unpack): Make it work for single files as well.
5712 Make it update package-alist.
5713 (package--make-autoloads-and-stuff): Rename from
5714 package--make-autoloads-and-compile. Don't compile any more.
5715 (package--compile): New function.
5716 (package-generate-description-file): New function, extracted from
5717 package-unpack-single.
5718 (package-unpack-single): Remove.
5719 (package--with-work-buffer): Add indentation and debugging info.
5720 (package-download-single): Remove.
5721 (package-install-from-archive): Rename from package-download-tar, make
5722 it take a pkg-desc, and make it work for single files as well.
5723 (package-download-transaction): Simplify.
5724 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
5725 external tar program.
5726 (package-install-from-buffer): Remove `pkg-desc' argument.
5727 Use package-tar-file-info for tar-mode buffers.
5728 (package-install-file): Simplify accordingly.
5729 (package-archive-base): Change to take a pkg-desc.
5730 * tar-mode.el (tar--check-descriptor): New function, extracted from
5731 tar-get-descriptor.
5732 (tar-get-descriptor): Use it.
5733 (tar-get-file-descriptor): New function.
5734 (tar--extract): New function, extracted from tar-extract.
5735 (tar--extract): Use it.
5736 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5737 case the summary uses non-ascii. Adjust to new calling convention of
5738 package-tar-file-info.
5739
5740 2013-06-21 Leo Liu <sdl.web@gmail.com>
5741
5742 * comint.el (comint-redirect-results-list-from-process):
5743 Fix random delay. (Bug#14681)
5744
5745 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5746
5747 * profiler.el (profiler-format-number): Use log, not log10.
5748
5749 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5750
5751 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5752
5753 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5754
5755 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5756 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5757 yet available.
5758 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5759 (AUTOGENEL): ... here.
5760 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5761 (cl--defsubst-expand): Use it.
5762
5763 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5764
5765 * subr.el (log10): Move here from C code, and declare as obsolete.
5766 All uses of (log10 X) replaced with (log X 10).
5767
5768 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5769
5770 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5771 Declare with `defvar-local'.
5772 (tabulated-list-use-header-line, tabulated-list-entries)
5773 (tabulated-list-padding, tabulated-list-printer)
5774 (tabulated-list-sort-key): Declare with `defvar-local'.
5775 (tabulated-list-init-header, tabulated-list-print-fake-header):
5776 Use `setq-local'.
5777
5778 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
5779
5780 * arc-mode.el (archive-mode): Add `archive-write-file' to
5781 `write-contents-functions' also for remote files. (Bug#14652)
5782
5783 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5784
5785 * cus-edit.el (custom-commands): Fix typos.
5786 (custom-display): Fix tooltip text.
5787 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5788 Fix typos in docstrings.
5789 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5790 (custom-unlispify-menu-entry, custom-magic-value-create)
5791 (custom-add-see-also, custom-group-value-create): Use ?\s.
5792 (custom-guess-type, customize-apropos, editable-field)
5793 (custom-face-value-create): Use `string-match-p'.
5794 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5795
5796 * custom.el (custom-load-symbol): Use `string-match-p'.
5797
5798 * ansi-color.el: Convert to lexical binding.
5799 (ansi-colors): Fix URL.
5800 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5801 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5802 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5803
5804 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5805
5806 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5807
5808 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5809
5810 2013-06-19 Tom Tromey <tromey@redhat.com>
5811
5812 * net/eww.el (eww-top-url): Remove.
5813 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5814 (eww-render): Set new variables. Don't set eww-top-url.
5815 (eww-handle-link): Handle "prev", "home", and "contents".
5816 Downcase the rel text.
5817 (eww-top-url): Choose best top URL.
5818
5819 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5820
5821 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5822 relying in widget.el. Using widget.el leads to too many
5823 user interface inconsistencies.
5824 (eww-self-insert): Implement entering commands in text fields.
5825 (eww-process-text-input): New function to make text input field editing
5826 work.
5827 (eww-submit): Rewrite to use the new-style form methods.
5828 (eww-select-display): Display the correct selected item.
5829 (eww-change-select): Implement changing the select value.
5830 (eww-toggle-checkbox): Implement radio/checkboxes.
5831 (eww-update-field): Fix compilation error.
5832 (eww-tag-textarea): Implement <textarea>.
5833
5834 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5835 we don't shadow mode-specific bindings.
5836
5837 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5838 nothing to push.
5839
5840 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5841
5842 2013-06-19 Glenn Morris <rgm@gnu.org>
5843
5844 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5845
5846 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5847
5848 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5849 not needed.
5850
5851 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5852
5853 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5854
5855 * net/browse-url.el (browse-url-browser-function):
5856 `eww-browse-url' has the right calling signature, `eww' does not.
5857
5858 2013-06-19 Glenn Morris <rgm@gnu.org>
5859
5860 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5861 Only eval autoloaded macros.
5862 (byte-compile-autoload): Only give the macro warning for macros.
5863
5864 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5865 (ps-underlined-faces): Declare.
5866
5867 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5868 (speedbar-add-supported-extension): Declare.
5869
5870 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5871 Don't include a date stamp in the header of the generated file;
5872 it leads to needless differences between output files.
5873
5874 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5875
5876 * net/secrets.el (secrets-struct-secret-content-type):
5877 Replace check of introspection data by a test call of "CreateItem".
5878 Some servers do not offer introspection.
5879
5880 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5881
5882 * electric.el (electric-pair-mode): Improve interaction with
5883 electric-layout-mode.
5884 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5885 (electric-pair-syntax): Use text-mode-syntax-table in comments
5886 and strings.
5887 (electric-pair--insert): New function.
5888 (electric-pair-post-self-insert-function): Use it and
5889 electric--after-char-pos.
5890
5891 2013-06-19 Leo Liu <sdl.web@gmail.com>
5892
5893 * progmodes/octave.el (octave-help): Fix regexp.
5894
5895 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5896
5897 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5898 (shr-table-horizontal-line): Allow nil as a value, and change the
5899 default.
5900 (shr-insert-table-ruler): Respect the nil value.
5901
5902 2013-06-18 Tom Tromey <tromey@barimba>
5903
5904 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5905 New defvars.
5906 (eww-open-file): New defun.
5907 (eww-render): Initialize new variables.
5908 (eww-display-html): Handle "link" and "a".
5909 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5910 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5911 (eww-back-url): Rename from eww-previous-url.
5912 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5913 New defuns.
5914
5915 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5916
5917 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5918 Distinguish ternary operator tokens from slash symbol and slash
5919 char literal.
5920
5921 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5922
5923 Convert symbol prettification into minor mode and global minor mode.
5924
5925 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5926 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5927 (prettify-symbols--keywords): Rename from
5928 `prog-prettify-symbols-alist' and make a local defvar.
5929 (prettify-symbols--compose-symbol): Rename from
5930 `prog--prettify-font-lock-compose-symbol'.
5931 (prettify-symbols--make-keywords): Rename from
5932 `prog-prettify-font-lock-symbols-keywords' and simplify.
5933 (prog-prettify-install): Remove.
5934 (prettify-symbols-mode): New minor mode, based on
5935 `prog-prettify-install'.
5936 (turn-on-prettify-symbols-mode): New function.
5937 (global-prettify-symbols-mode): New globalized minor mode.
5938
5939 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5940 * progmodes/cfengine.el (cfengine3-mode):
5941 * progmodes/perl-mode.el (perl-mode): Don't call
5942 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5943
5944 2013-06-18 Juri Linkov <juri@jurta.org>
5945
5946 * files-x.el (modify-file-local-variable-message): New function.
5947 (modify-file-local-variable)
5948 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5949 and call `modify-file-local-variable-message' when it's non-nil.
5950 (add-file-local-variable, delete-file-local-variable)
5951 (add-file-local-variable-prop-line)
5952 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5953 and use it. (Bug#9820)
5954
5955 2013-06-18 Juri Linkov <juri@jurta.org>
5956
5957 * emulation/vi.el (vi-shell-op):
5958 * emulation/vip.el (vip-execute-com, ex-command):
5959 * emulation/viper-cmd.el (viper-exec-bang):
5960 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5961 the call of `shell-command-on-region'. (Bug#14637)
5962
5963 * simple.el (shell-command-on-region): Doc fix.
5964
5965 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5966
5967 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5968 (bug#14633).
5969
5970 2013-06-18 Glenn Morris <rgm@gnu.org>
5971
5972 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5973
5974 * newcomment.el (comment-search-forward, comment-search-backward):
5975 Doc fix. (Bug#14376)
5976
5977 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5978
5979 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5980 (buffer-face-mode-invoke): Doc fix.
5981
5982 2013-06-18 Matthias Meulien <orontee@gmail.com>
5983
5984 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
5985 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
5986
5987 2013-06-18 Glenn Morris <rgm@gnu.org>
5988
5989 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5990 Replace obsolete function generic-make-keywords with its expansion.
5991
5992 * progmodes/python.el (ffap-alist): Declare.
5993
5994 * textmodes/reftex.el (bibtex-mode-map): Declare.
5995
5996 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5997
5998 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5999 (package-unpack, package-unpack-single): Return the pkg-dir.
6000 (package-download-transaction): Use it to update package-alist.
6001
6002 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
6003
6004 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
6005 possible choice.
6006
6007 2013-06-17 Juri Linkov <juri@jurta.org>
6008
6009 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
6010
6011 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
6012
6013 * emacs-lisp/package.el (package-load-descriptor):
6014 Remove `with-syntax-table' call, `read' doesn't need it.
6015 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
6016
6017 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
6018
6019 * startup.el (command-line): Expand package name returned by
6020 `package--description-file' (bug#14639).
6021
6022 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
6023
6024 * emacs-lisp/package.el (package-load-descriptor): Do not call
6025 `emacs-lisp-mode', just use its syntax table.
6026
6027 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
6028
6029 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
6030 `font-lock-extra-managed-props' if any prettifying keyword is added.
6031 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
6032 (prog-mode): Use `setq-local'.
6033
6034 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
6035
6036 * international/characters.el (standard-case-table): Set syntax of ?»
6037 and ?« to punctuation.
6038
6039 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
6040
6041 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
6042 Save relevant match data before calling `syntax-ppss' (bug#14595).
6043
6044 2013-06-15 Juri Linkov <juri@jurta.org>
6045
6046 * files-x.el (modify-file-local-variable-prop-line): Add local
6047 variables to the end of the existing comment on the first line.
6048 Use `file-auto-mode-skip' to skip interpreter magic line,
6049 and also skip XML declaration.
6050
6051 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6052
6053 * startup.el (package--builtin-versions): New var.
6054 (package-subdirectory-regexp): Remove.
6055 (package--description-file): Hard code its value instead.
6056
6057 * emacs-lisp/package.el: Don't activate packages older than builtin.
6058 (package-obsolete-list): Rename from package-obsolete-alist, and make
6059 it into a simple list of package-desc.
6060 (package-strip-version): Remove.
6061 (package-built-in-p): Use package--builtin-versions.
6062 (package-mark-obsolete): Simplify.
6063 (package-process-define-package): Mark it obsolete if older than the
6064 builtin version.
6065 (package-handle-response): Use line-end-position.
6066 (package-read-archive-contents, package--download-one-archive):
6067 Simplify.
6068 (package--add-to-archive-contents): Skip if older than the builtin or
6069 installed version.
6070 (package-menu-describe-package): Fix last change.
6071 (package-list-unversioned): New var.
6072 (package-menu--generate): Use it.
6073
6074 * emacs-lisp/autoload.el: Manage package--builtin-versions.
6075 (autoload--insert-text, autoload--insert-cookie-text): New functions.
6076 (autoload-builtin-package-versions): New variable.
6077 (autoload-generate-file-autoloads): Use them.
6078 Remove the list of autoloaded functions/macros from the
6079 (autoload...) comments.
6080
6081 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
6082
6083 2013-06-15 Eli Zaretskii <eliz@gnu.org>
6084
6085 * simple.el (line-move-partial): Don't jump to the next screen
6086 line as soon as it becomes visible. Instead, continue enlarging
6087 the vscroll until the portion of a tall screen line that's left on
6088 display is about the height of the frame's default font.
6089 (Bug#14567)
6090
6091 2013-06-15 Glenn Morris <rgm@gnu.org>
6092
6093 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
6094 compilation-error-regexp-alist void, or local while let-bound.
6095
6096 * progmodes/make-mode.el (makefile-mode-syntax-table):
6097 Treat "=" as punctuation. (Bug#14614)
6098
6099 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
6100
6101 * help-fns.el (describe-variable):
6102 Add extra line for permanent-local variables.
6103
6104 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
6105
6106 * progmodes/scheme.el (scheme-font-lock-keywords-2):
6107 Add export, import, library. (Bug#9164)
6108 (library): Set indent function.
6109
6110 2013-06-14 Glenn Morris <rgm@gnu.org>
6111
6112 * term/xterm.el (xterm--query):
6113 Stop after first matching handler. (Bug#14615)
6114
6115 2013-06-14 Ivan Kanis <ivan@kanis.fr>
6116
6117 Add support for dired in saveplace.
6118 * dired.el (dired-initial-position-hook): New variable.
6119 (dired-initial-position): Call hook to place cursor position.
6120 * saveplace.el (save-place-to-alist): Add dired position.
6121 (save-place-dired-hook): New function.
6122
6123 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
6124
6125 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
6126 through a symbol rather than letrec.
6127
6128 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
6129 (package-desc): Add `dir' field.
6130 (package-desc-full-name): New function.
6131 (package-load-descriptor): Combine the two arguments. Don't use `load'.
6132 (package-maybe-load-descriptor): Remove.
6133 (package-load-all-descriptors): Just call package-load-descriptor.
6134 (package--disabled-p): New function.
6135 (package-desc-vers, package-desc-doc): Remove aliases.
6136 (package--dir): Remove function.
6137 (package-activate): Check if a package is disabled.
6138 (package-process-define-package): New function, extracted from
6139 define-package.
6140 (define-package): Turn into a place holder.
6141 (package-unpack-single, package-tar-file-info):
6142 Use package--description-file.
6143 (package-compute-transaction): Use package--disabled-p.
6144 (package-download-transaction): Don't call
6145 package-maybe-load-descriptor since they're all loaded anyway.
6146 (package-install): Change argument to be a pkg-desc.
6147 (package-delete): Use a single pkg-desc argument.
6148 (describe-package-1): Use package-desc-dir instead of package--dir.
6149 Use package-desc property instead of package-symbol.
6150 (package-install-button-action): Adjust accordingly.
6151 (package--push): Rewrite.
6152 (package-menu--print-info): Adjust accordingly. Change the ID format
6153 to be a pkg-desc.
6154 (package-menu-describe-package, package-menu-get-status)
6155 (package-menu--find-upgrades, package-menu-mark-upgrades)
6156 (package-menu-execute, package-menu--name-predicate):
6157 Adjust accordingly.
6158 * startup.el (package--description-file): New function.
6159 (command-line): Use it.
6160 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6161 Use package-desc-version.
6162
6163 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
6164 (byte-compile-preprocess): Use it.
6165 (byte-compile-file-form-defalias): Try a bit harder to use macros we
6166 can't quite recognize.
6167 (byte-compile-add-to-list): Remove.
6168 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
6169 (cconv-closure-convert): Add assertion.
6170
6171 * emacs-lisp/map-ynp.el: Use lexical-binding.
6172 (map-y-or-n-p): Remove unused vars `tail' and `object'.
6173 Factor out some repeated code.
6174
6175 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6176
6177 * subr.el (with-eval-after-load): New macro.
6178 (eval-after-load): Allow form to be a function.
6179 take advantage of lexical-binding.
6180 (do-after-load-evaluation): Use dolist and adjust to new format.
6181 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
6182
6183 2013-06-13 Juri Linkov <juri@jurta.org>
6184
6185 * replace.el (perform-replace): Display "symbol " and other search
6186 modes from `isearch-message-prefix' in the *Help* buffer.
6187
6188 * isearch.el (isearch-query-replace): Add " symbol" and other
6189 possible search modes from `isearch-message-prefix' to the prompt.
6190 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
6191 when reading a regexp to collect.
6192
6193 2013-06-13 Juri Linkov <juri@jurta.org>
6194
6195 * isearch.el (word-search-regexp): Match whitespace if the search
6196 string begins or ends in whitespace. The LAX arg is applied to
6197 both ends of the search string. Use `regexp-quote' and explicit
6198 \< and \> instead of \b. Use \` and \' instead of ^ and $.
6199 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
6200 boundaries are replaced with symbol boundaries, and characters
6201 between symbols match non-word non-symbol syntax. (Bug#14602)
6202
6203 2013-06-13 Juri Linkov <juri@jurta.org>
6204
6205 * isearch.el (isearch-del-char): Don't exceed the length of
6206 `isearch-string' by the prefix arg. (Bug#14563)
6207
6208 2013-06-13 Juri Linkov <juri@jurta.org>
6209
6210 * isearch.el (isearch-yank-word, isearch-yank-line)
6211 (isearch-char-by-name, isearch-quote-char)
6212 (isearch-printing-char, isearch-process-search-char):
6213 Add optional count prefix arg. (Bug#14563)
6214
6215 * international/isearch-x.el
6216 (isearch-process-search-multibyte-characters):
6217 Add optional count prefix arg.
6218
6219 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6220
6221 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
6222 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
6223 lexical-binding.
6224
6225 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
6226
6227 * subr.el (set-temporary-overlay-map): Add on-exit argument.
6228
6229 2013-06-13 Glenn Morris <rgm@gnu.org>
6230
6231 * startup.el (tty-handle-args):
6232 Don't just discard "--" and anything after. (Bug#14608)
6233
6234 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
6235
6236 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
6237
6238 Implement changes in Secret Service API. Make it backward compatible.
6239 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
6240 (secrets-create-item): Use it. Prefix properties with interface.
6241
6242 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
6243
6244 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
6245 (term-emulate-terminal): Respect term-suppress-hard-newline.
6246
6247 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
6248
6249 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
6250 Only remove a `thumb-file' overlay. (Bug#14548)
6251
6252 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
6253
6254 * mail/reporter.el (reporter-submit-bug-report):
6255 Handle missing package-name. (Bug#14600)
6256
6257 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6258
6259 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
6260 (reftex-citation-prompt, reftex-default-bibliography)
6261 (reftex-bib-or-thebib, reftex-get-bibfile-list)
6262 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6263 (reftex-bib-sort-author, reftex-bib-sort-year)
6264 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
6265 (reftex-extract-bib-entries-from-thebibliography)
6266 (reftex-get-bibkey-default, reftex-get-bib-names)
6267 (reftex-parse-bibtex-entry, reftex-get-bib-field)
6268 (reftex-format-bib-entry, reftex-parse-bibitem)
6269 (reftex-format-bibitem, reftex-do-citation)
6270 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
6271 (reftex-restrict-bib-matches, reftex-extract-bib-file)
6272 (reftex-insert-bib-matches, reftex-format-citation)
6273 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
6274 (reftex-create-bibtex-file): Add docstrings, mostly by converting
6275 existing comments into docstrings.
6276
6277 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6278
6279 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
6280
6281 2013-06-12 Andreas Schwab <schwab@suse.de>
6282
6283 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
6284 for auto-save files.
6285
6286 2013-06-12 Glenn Morris <rgm@gnu.org>
6287
6288 * ido.el (ido-delete-ignored-files): Remove.
6289 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
6290 Go back to calling ido-ignore-item-p directly.
6291
6292 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
6293
6294 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
6295
6296 * ido.el (ido-delete-ignored-files): New function,
6297 split from ido-make-file-list-1.
6298 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
6299 (ido-make-file-list-1): Use ido-delete-ignored-files.
6300
6301 2013-06-12 Leo Liu <sdl.web@gmail.com>
6302
6303 * progmodes/octave.el (inferior-octave-startup)
6304 (inferior-octave-completion-table)
6305 (inferior-octave-track-window-width-change)
6306 (octave-eldoc-function-signatures, octave-help)
6307 (octave-find-definition): Use single quoted strings.
6308 (inferior-octave-startup-args): Change default value.
6309 (inferior-octave-startup): Do not hard code "-i" and
6310 "--no-line-editing".
6311 (inferior-octave-resync-dirs): Add optional arg NOERROR.
6312 (inferior-octave-directory-tracker): Use it.
6313 (octave-goto-function-definition): Robustify.
6314 (octave-help): Support highlighting operators in 'See also'.
6315 (octave-find-definition): Find subfunctions only in Octave mode.
6316
6317 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6318
6319 * help-fns.el (help-fns--compiler-macro): If the handler function is
6320 named, then put a link to it.
6321 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
6322 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
6323 (cl-typep): Use it.
6324 (cl-eval-when): Simplify debug spec.
6325 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
6326 compiler-macro function instead of setting `compiler-macro-file'.
6327
6328 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6329
6330 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
6331 * vc/vc-hooks.el (vc-stay-local): Doc fix.
6332
6333 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6334 Daniel Hackney <dan@haxney.org>
6335
6336 First part of Daniel Hackney's patch to package.el.
6337 * emacs-lisp/package.el: Use defstruct.
6338 (package-desc): New, main struct.
6339 (package--bi-desc, package--ac-desc): New structs, used to describe the
6340 format in external files.
6341 (package-desc-vers): Replace with package-desc-version accessor.
6342 (package-desc-doc): Replace with package-desc-summary accessor.
6343 (package-activate-1): Remove `package' arg since the pkg-vec now
6344 includes the name.
6345 (define-package): Use package-desc-from-define.
6346 (package-unpack-single): Change file-name arg to be a symbol.
6347 (package--add-to-archive-contents): Use package-desc-create and new
6348 accessor functions to package--ac-desc.
6349 (package-buffer-info, package-tar-file-info): Return a package-desc.
6350 (package-install-from-buffer): Remove `type' argument. Change pkg-info
6351 arg to be a package-desc.
6352 (package-install-file): Adjust accordingly. Use \' to match EOS.
6353 (package--from-builtin): New function.
6354 (describe-package-1, package-menu--generate): Use it.
6355 (package--make-autoloads-and-compile): Change name arg to be a symbol.
6356 (package-generate-autoloads): Idem and return the name of the file.
6357 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6358 Change pkg-info arg to be a package-desc.
6359 Use package-make-ac-desc.
6360 (package-upload-file): Use \' to match EOS.
6361 * finder.el (finder-compile-keywords): Use package-make-builtin.
6362
6363 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6364
6365 * vc/vc.el (vc-deduce-fileset): Change error message.
6366 (vc-read-backend): New function.
6367 (vc-next-action): Use it.
6368
6369 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
6370
6371 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
6372 (prolog-font-lock-keywords): Use regexp-opt instead.
6373 Don't manually highlight strings.
6374 (prolog-mode-variables): Simplify comment-start-skip.
6375 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
6376
6377 * emacs-lisp/generic.el (generic--normalise-comments)
6378 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
6379 (generic-mode-set-comments): Use them.
6380 (generic-bracket-support): Use setq-local.
6381 (generic-make-keywords-list): Declare obsolete.
6382
6383 2013-06-11 Glenn Morris <rgm@gnu.org>
6384
6385 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6386 Prettify after setting font-lock-defaults. (Bug#14574)
6387
6388 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
6389
6390 * replace.el (query-replace, occur-read-regexp-defaults-function)
6391 (replace-search):
6392 * subr.el (declare-function, number-sequence, local-set-key)
6393 (substitute-key-definition, locate-user-emacs-file)
6394 (with-silent-modifications, split-string, eval-after-load):
6395 Fix typos, remove unneeded backslashes and reflow some docstrings.
6396
6397 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6398
6399 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
6400 default for Elisp files.
6401
6402 2013-06-11 Glenn Morris <rgm@gnu.org>
6403
6404 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
6405 although define-derived-mode was doing this anyway. (Bug#14583)
6406
6407 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
6408
6409 * allout.el (allout-encryption-plaintext-sanitization-regexps):
6410 Fix make-variable-buffer-local call to refer to the correct variable.
6411
6412 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
6413
6414 * eshell/em-term.el (eshell-visual-commands)
6415 (eshell-visual-subcommands, eshell-visual-options):
6416 Add summary line to docstrings. Add cross-references.
6417
6418 2013-06-10 Glenn Morris <rgm@gnu.org>
6419
6420 * epa.el (epa-read-file-name): New function. (Bug#14510)
6421 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
6422
6423 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6424
6425 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
6426 output redirection to be ignored with visual commands.
6427
6428 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6429
6430 * eshell/em-term.el (eshell-visual-command-p): New function.
6431 (eshell-term-initialize): Move long lambda to separate function
6432 eshell-visual-command-p.
6433 * eshell/em-dirs.el (eshell-dirs-initialise):
6434 * eshell/em-script.el (eshell-script-initialize):
6435 Add missing #' to lambda.
6436
6437 2013-06-08 Leo Liu <sdl.web@gmail.com>
6438
6439 * progmodes/octave.el (octave-add-log-current-defun): New function.
6440 (octave-mode): Set add-log-current-defun-function.
6441 (octave-goto-function-definition): Do not move point if not found.
6442 (octave-find-definition): Enhance to try subfunctions first.
6443
6444 2013-06-08 Glenn Morris <rgm@gnu.org>
6445
6446 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6447 (byte-compile-backward-char, byte-compile-backward-word):
6448 Improve previous change, to handle non-explicit nil.
6449
6450 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6451
6452 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
6453 (smie--opener/closer-at-point): New function.
6454 (smie--matching-block-data): Use it. Don't match from right after an
6455 opener or right before a closer. Obey smie-blink-matching-inners.
6456 Don't signal a mismatch for repeated inners like "switch..case..case".
6457
6458 2013-06-07 Leo Liu <sdl.web@gmail.com>
6459
6460 * progmodes/octave.el (octave-mode): Set comment-use-global-state
6461 to t. (Bug#14303)
6462 (octave-function-header-regexp): Fix. (Bug#14570)
6463 (octave-help-mode-finish-hook, octave-help-mode-finish):
6464 Remove. Just use temp-buffer-show-hook.
6465
6466 * newcomment.el (comment-search-backward): Revert last change.
6467 (Bug#14434)
6468
6469 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
6470
6471 2013-06-07 Eli Zaretskii <eliz@gnu.org>
6472
6473 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
6474 through xargs, to avoid failure due to MS-Windows limitations on
6475 command-line length.
6476
6477 2013-06-06 Glenn Morris <rgm@gnu.org>
6478
6479 * font-lock.el (lisp-font-lock-keywords-2):
6480 Treat user-error like error.
6481
6482 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6483 (byte-compile-backward-char, byte-compile-backward-word):
6484 Handle explicit nil arguments. (Bug#14565)
6485
6486 2013-06-05 Alan Mackenzie <acm@muc.de>
6487
6488 * isearch.el (isearch-allow-prefix): New user option.
6489 (isearch-other-meta-char): Don't exit isearch when a prefix
6490 argument is typed whilst `isearch-allow-prefix' is non-nil.
6491 (Bug#9706)
6492
6493 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6494
6495 * autorevert.el (auto-revert-notify-handler): Use memq.
6496 Hide assertion failure.
6497
6498 * skeleton.el: Use cl-lib.
6499 (skeleton-further-elements): Use defvar-local.
6500 (skeleton-insert): Use cl-progv.
6501
6502 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6503
6504 * progmodes/prog-mode.el (prog-prettify-symbols)
6505 (prog-prettify-install): Update docstrings.
6506
6507 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6508
6509 * simple.el: Move all the prog-mode code to prog-mode.el.
6510 * progmodes/prog-mode.el: New file.
6511 * loadup.el: Add prog-mode.el.
6512
6513 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6514
6515 * simple.el (prog-prettify-symbols): Add version.
6516 (prog-prettify-install): Add convenience function to prettify symbols.
6517
6518 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
6519 (perl--augmented-font-lock-keywords-1)
6520 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
6521 variables and use it.
6522
6523 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6524 (cfengine3-mode): Remove unneeded variable and use it.
6525
6526 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6527 (lisp--augmented-font-lock-keywords-1)
6528 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
6529 Remove unneeded variables and use it.
6530
6531 2013-06-05 João Távora <joaotavora@gmail.com>
6532
6533 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
6534 to point when opening the connection. (Bug#14380)
6535
6536 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6537
6538 * subr.el (load-history-regexp, load-history-filename-element)
6539 (eval-after-load, after-load-functions, do-after-load-evaluation)
6540 (eval-next-after-load, display-delayed-warnings)
6541 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
6542 definition of save-match-data.
6543 (overriding-local-map): Remove accidental obsolescence declaration.
6544
6545 * emacs-lisp/edebug.el (edebug-result): Move before first use.
6546
6547 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6548
6549 Generalize symbol prettify support to prog-mode and implement it
6550 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
6551 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
6552 (prog--prettify-font-lock-compose-symbol)
6553 (prog-prettify-font-lock-symbols-keywords): New variables and
6554 functions to support symbol prettification.
6555 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6556 (lisp--augmented-font-lock-keywords-1)
6557 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
6558 (lisp--prettify-symbols-alist): Implement prettify of lambda.
6559 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6560 (cfengine3--prettify-symbols-alist, cfengine3-mode):
6561 Implement prettify of -> => :: strings.
6562 * progmodes/perl-mode.el (perl-prettify-symbols)
6563 (perl--font-lock-compose-symbol)
6564 (perl--font-lock-symbols-keywords): Move to prog-mode.
6565 (perl--prettify-symbols-alist): Prettify -> => :: strings.
6566 (perl-font-lock-keywords-1)
6567 (perl-font-lock-keywords-2): Remove explicit prettify support.
6568 (perl--augmented-font-lock-keywords)
6569 (perl--augmented-font-lock-keywords-1)
6570 (perl--augmented-font-lock-keywords-2, perl-mode):
6571 Implement prettify support.
6572
6573 2013-06-05 Leo Liu <sdl.web@gmail.com>
6574
6575 Re-implement smie matching block highlight using
6576 show-paren-data-function. (Bug#14395)
6577 * emacs-lisp/smie.el (smie-matching-block-highlight)
6578 (smie--highlight-matching-block-overlay)
6579 (smie--highlight-matching-block-lastpos)
6580 (smie-highlight-matching-block)
6581 (smie-highlight-matching-block-mode): Remove.
6582 (smie--matching-block-data-cache): New variable.
6583 (smie--matching-block-data): New function.
6584 (smie-setup): Use smie--matching-block-data for
6585 show-paren-data-function.
6586
6587 * progmodes/octave.el (octave-mode-menu): Fix.
6588 (octave-find-definition): Skip garbage lines.
6589
6590 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6591
6592 Fix compilation error with simultaneous dynamic+lexical scoping.
6593 Add warning when a defvar appears after the first let-binding.
6594 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
6595 (byte-compile-close-variables): Initialize it.
6596 (byte-compile--declare-var): New function.
6597 (byte-compile-file-form-defvar)
6598 (byte-compile-file-form-define-abbrev-table)
6599 (byte-compile-file-form-custom-declare-variable): Use it.
6600 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
6601 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
6602 (byte-compile-bind): Handle dynamic bindings that shadow
6603 lexical bindings.
6604 (byte-compile-unbind): Make arg non-optional.
6605 (byte-compile-let): Simplify.
6606 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
6607 (cconv--analyse-function, cconv-analyse-form): Populate it.
6608 Protect byte-compile-bound-variables to limit the scope of defvars.
6609 (cconv-analyse-form): Add missing rule for (defvar <foo>).
6610 Remove unneeded rule for `declare'.
6611
6612 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
6613 so as to avoid depending on cl-adjoin at run-time.
6614 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
6615
6616 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
6617 (macroexp--warn-and-return): Use it.
6618
6619 2013-06-05 Leo Liu <sdl.web@gmail.com>
6620
6621 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
6622
6623 2013-06-04 Leo Liu <sdl.web@gmail.com>
6624
6625 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
6626 (compilation-auto-jump): Suppress the "Mark set" message to give
6627 way to exit message.
6628
6629 2013-06-04 Alan Mackenzie <acm@muc.de>
6630
6631 Remove faulty optimisation from indentation calculation.
6632 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
6633 search limit based on 2000 characters back from indent-point.
6634
6635 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6636
6637 * eshell/em-term.el (cl-lib): Require `cl-lib'.
6638
6639 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6640
6641 * emacs-lisp/lisp.el: Use lexical-binding.
6642 (lisp--local-variables-1, lisp--local-variables): New functions.
6643 (lisp--local-variables-completion-table): New var.
6644 (lisp-completion-at-point): Use it complete let-bound vars.
6645
6646 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
6647 eagerly (bug#14422).
6648
6649 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
6650
6651 * autorevert.el (auto-revert-notify-enabled)
6652 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
6653 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
6654 (auto-revert-notify-handler): Handle also gfilenotify.
6655
6656 * subr.el (file-notify-handle-event): New defun. Replacing ...
6657 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
6658 Remove.
6659
6660 2013-06-03 Juri Linkov <juri@jurta.org>
6661
6662 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
6663 `M-s h .'. (Bug#14427)
6664
6665 * hi-lock.el (highlight-symbol-at-point): New alias for the new
6666 command `hi-lock-face-symbol-at-point'.
6667 (hi-lock-face-symbol-at-point): New command.
6668 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
6669 (hi-lock-menu): Add `highlight-symbol-at-point'.
6670 (hi-lock-mode): Doc fix.
6671
6672 * isearch.el (isearch-forward-symbol-at-point): New command.
6673 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
6674 (isearch-highlight-regexp): Add a regexp which matches
6675 words/symbols for word/symbol mode.
6676
6677 * subr.el (find-tag-default-bounds): New function with the body
6678 mostly moved from `find-tag-default'.
6679 (find-tag-default): Move most code to `find-tag-default-bounds',
6680 call it and apply `buffer-substring-no-properties' afterwards.
6681
6682 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6683
6684 * eshell/em-term.el (eshell-term-initialize):
6685 Use `cl-intersection' rather than `intersection'.
6686
6687 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
6688
6689 * vc/log-view.el: Doc fix.
6690 (log-view-mode-map): Copy keymap from `special-mode-map'.
6691
6692 2013-06-02 Eric Ludlam <zappo@gnu.org>
6693
6694 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
6695 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
6696 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
6697 (eieio-unbound, eieio-default-superclass)
6698 (eieio--define-field-accessors, method-static, method-before)
6699 (method-primary, method-after, method-num-lists)
6700 (method-generic-before, method-generic-primary)
6701 (method-generic-after, method-num-slots)
6702 (eieio-specialized-key-to-generic-key)
6703 (eieio--check-type, class-v, class-p)
6704 (eieio-class-name, define-obsolete-function-alias)
6705 (eieio-class-parents-fast, eieio-class-children-fast)
6706 (same-class-fast-p, class-constructor, generic-p)
6707 (generic-primary-only-p, generic-primary-only-one-p)
6708 (class-option-assoc, class-option, eieio-object-p)
6709 (class-abstract-p, class-method-invocation-order)
6710 (eieio-defclass-autoload-map, eieio-defclass-autoload)
6711 (eieio-class-un-autoload, eieio-defclass)
6712 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
6713 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
6714 (eieio--defgeneric-init-form, eieio-defgeneric-form)
6715 (eieio-defgeneric-reset-generic-form)
6716 (eieio-defgeneric-form-primary-only)
6717 (eieio-defgeneric-reset-generic-form-primary-only)
6718 (eieio-defgeneric-form-primary-only-one)
6719 (eieio-defgeneric-reset-generic-form-primary-only-one)
6720 (eieio-unbind-method-implementations)
6721 (eieio--defmethod, eieio--typep)
6722 (eieio-perform-slot-validation, eieio-validate-slot-value)
6723 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
6724 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
6725 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
6726 (eieio-slot-name-index, eieio-class-slot-name-index)
6727 (eieio-set-defaults, eieio-initarg-to-attribute)
6728 (eieio-attribute-to-initarg, eieio-c3-candidate)
6729 (eieio-c3-merge-lists, eieio-class-precedence-c3)
6730 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
6731 (eieio-class-precedence-list, eieio-generic-call-methodname)
6732 (eieio-generic-call-arglst, eieio-generic-call-key)
6733 (eieio-generic-call-next-method-list)
6734 (eieio-pre-method-execution-functions, eieio-generic-call)
6735 (eieio-generic-call-primary-only, eieiomt-method-list)
6736 (eieiomt-optimizing-obarray, eieiomt-install)
6737 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6738 (eieio-generic-form, eieio-defmethod, make-obsolete)
6739 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
6740 (defclass): Remove `eval-and-compile' from macro.
6741 (call-next-method, shared-initialize): Instead of using
6742 `scoped-class' variable, use new eieio--scoped-class, and
6743 eieio--with-scoped-class.
6744 (initialize-instance): Rename local variable 'scoped-class' to
6745 'this-class' to remove ambiguitity from old global.
6746
6747 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6748 eieio.el.
6749 (eieio--scoped-class-stack): New variable.
6750 (eieio--scoped-class): New fcn.
6751 (eieio--with-scoped-class): New scoping macro.
6752 (eieio-defclass): Use pushnew instead of add-to-list.
6753 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6754 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6755 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6756 `scoped-class' variable, use new eieio--scoped-class, and
6757 eieio--with-scoped-class.
6758
6759 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6760
6761 2013-06-02 Tassilo Horn <tsdh@gnu.org>
6762
6763 * eshell/esh-ext.el (eshell-external-command): Pass args to
6764 `eshell-find-interpreter'.
6765 (eshell-find-interpreter): Add new second parameter ARGS.
6766
6767 * eshell/em-script.el (eshell-script-initialize): Add second arg
6768 to the function added as MATCH to `eshell-interpreter-alist'.
6769
6770 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
6771 the function added as MATCH to `eshell-interpreter-alist'.
6772
6773 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6774 (eshell-visual-options): New defcustom.
6775 (eshell-escape-control-x): Adapt docstring.
6776 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6777 `eshell-visual-options' in addition to `eshell-visual-commands'.
6778 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6779
6780 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
6781
6782 * progmodes/python.el (python-indent-block-enders): Add break,
6783 continue and raise keywords.
6784
6785 2013-06-01 Glenn Morris <rgm@gnu.org>
6786
6787 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6788
6789 Plain (f)boundp silences compilation warnings since Emacs 22.1.
6790 * progmodes/cc-cmds.el (delete-forward-p):
6791 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6792 * progmodes/cc-engine.el (buffer-syntactic-context):
6793 * progmodes/cc-fonts.el (face-property-instance):
6794 * progmodes/cc-mode.el (set-keymap-parents):
6795 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6796 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6797 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
6798 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6799 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
6800
6801 * progmodes/cc-vars.el (other): Emacs has this widget since
6802 at least 21.1, so don't (re)define it.
6803
6804 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6805 Replace the obsolete alias pcomplete-arg-quote-list.
6806
6807 2013-06-01 Leo Liu <sdl.web@gmail.com>
6808
6809 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6810 punctuation syntax.
6811 (inferior-octave-minimal-columns)
6812 (inferior-octave-last-column-width): New variables.
6813 (inferior-octave-track-window-width-change): New function.
6814 (inferior-octave-mode): Adjust column width so that Octave output,
6815 for example from 'ls', can fit into the window nicely.
6816
6817 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6818
6819 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6820 Highlight expansions inside regexp literals.
6821
6822 2013-05-31 Glenn Morris <rgm@gnu.org>
6823
6824 * obsolete/sym-comp.el (symbol-complete):
6825 Replace obsolete completion-annotate-function.
6826
6827 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6828
6829 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6830
6831 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6832 New function, checks if point is inside a literal that allows
6833 expression expansion.
6834 (ruby-syntax-propertize-expansion): Use it.
6835 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6836 around the body.
6837
6838 2013-05-30 Juri Linkov <juri@jurta.org>
6839
6840 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6841 to "\M-si".
6842 (isearch-invisible): New variable.
6843 (isearch-forward): Doc fix.
6844 (isearch-mode): Set `isearch-invisible'
6845 to the value of `search-invisible'.
6846 (isearch-toggle-case-fold): Doc fix.
6847 (isearch-toggle-invisible): New command.
6848 (isearch-query-replace): Let-bind `search-invisible'
6849 to the value of `isearch-invisible'.
6850 (isearch-search): Use `isearch-invisible' instead of
6851 `search-invisible'. Let-bind `search-invisible'
6852 to the value of `isearch-invisible'. (Bug#11378)
6853
6854 2013-05-30 Juri Linkov <juri@jurta.org>
6855
6856 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6857 call when `query-flag' is nil and `search-invisible' is non-nil.
6858 (Bug#11746)
6859
6860 2013-05-30 Glenn Morris <rgm@gnu.org>
6861
6862 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6863
6864 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6865 (cc-require): Suppress spurious "noruntime" warnings.
6866 (cc-require-when-compile): Use fboundp, for sake of compiler.
6867
6868 * progmodes/cc-mode.el: Move load of cc-vars before that of
6869 cc-langs (which in turn loads cc-vars), to quieten compiler.
6870
6871 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6872
6873 * paren.el: Simplify the code.
6874 (show-paren-mode): Always start the timer.
6875 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6876 (show-paren--overlay, show-paren--overlay-1): Rename from
6877 show-paren-overlay and show-paren-overlay-1, and initialize to an
6878 overlay rather than to nil.
6879 (show-paren-function): Misc cleanup and simplifications.
6880
6881 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6882
6883 * paren.el (show-paren-data-function): New hook.
6884 (show-paren--default): New function, extracted from show-paren-function.
6885 (show-paren-function): Use show-paren-data-function.
6886
6887 2013-05-30 Glenn Morris <rgm@gnu.org>
6888
6889 * ielm.el (ielm-map, ielm-complete-symbol):
6890 Use completion-at-point rather than obsolete functions.
6891 (inferior-emacs-lisp-mode): Doc fix.
6892 Set completion-at-point-functions, rather than
6893 comint-dynamic-complete-functions.
6894
6895 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6896 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6897 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6898
6899 * image.el (image-animated-p): Tweak definition.
6900
6901 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6902 (rlogin-process-connection-type): Tweak default. Add set-after.
6903 (rlogin-host): Doc fix.
6904 (rlogin): Tweak prompt.
6905 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6906
6907 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6908 * progmodes/tcl.el (inferior-tcl-mode-map):
6909 Use completion-at-point rather than obsolete alias.
6910
6911 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6912
6913 * minibuffer.el (read-file-name-completion-ignore-case):
6914 Move before completion--in-region, for eager macro expansion.
6915
6916 2013-05-29 Juri Linkov <juri@jurta.org>
6917
6918 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6919 for total count of matching lines. Add `global-matches' for total
6920 count of matches. Rename `matches' to `lines' for count of
6921 matching lines. Add `matches' for count of matches.
6922 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6923 to `prev-line' for line number of prev match endpt.
6924 Increment `matches' for every match. Print the number of
6925 matching lines in the header.
6926 (occur-context-lines): Rename `lines' to `curr-line'.
6927 Rename `prev-lines' to `prev-line'. (Bug#14017)
6928
6929 2013-05-29 Juri Linkov <juri@jurta.org>
6930
6931 * replace.el (perform-replace): Add `skip-read-only-count',
6932 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6933 Increment them for corresponding conditions and report the number
6934 of skipped occurrences in the final message. (Bug#11746)
6935 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6936 (replace-string, replace-regexp): Doc fix.
6937
6938 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6939
6940 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6941
6942 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
6943 prog-mode-map (bug#14504).
6944
6945 2013-05-29 Leo Liu <sdl.web@gmail.com>
6946
6947 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6948 (octave-help): Small simplification.
6949
6950 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6951 off the highlight first.
6952
6953 2013-05-29 Glenn Morris <rgm@gnu.org>
6954
6955 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6956 Handle idlwave-last-system-routine-info-cons-cell being nil.
6957
6958 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6959 (idlwave-write-paths): Simplify via with-temp-buffer.
6960
6961 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6962 * emulation/cua-rect.el: Also load cua-base at run time.
6963
6964 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6965 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6966 (cperl-imenu-on-info): Require imenu.
6967
6968 2013-05-28 Alan Mackenzie <acm@muc.de>
6969
6970 Handle "capitalised keywords" correctly.
6971 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
6972
6973 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
6974
6975 * eshell/em-unix.el: Add -r option to cp.
6976
6977 2013-05-28 Glenn Morris <rgm@gnu.org>
6978
6979 * vc/vc-arch.el (vc-exec-after): Declare.
6980 (vc-switches): Autoload.
6981 * vc/vc-bzr.el: No need to require vc when compiling.
6982 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6983 (vc-resynch-buffer, vc-dir-refresh): Declare.
6984 (vc-setup-buffer, vc-switches): Autoload.
6985 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6986 (vc-resynch-buffer): Declare.
6987 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
6988 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
6989 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6990 (grep-read-regexp, grep-read-files, grep-expand-template)
6991 (vc-dir-refresh): Declare.
6992 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6993 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6994 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
6995 * vc/vc-mtn.el (vc-exec-after): Declare.
6996 (vc-switches): Autoload.
6997 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6998 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6999 (vc-file-tree-walk): Declare.
7000 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
7001 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
7002 (vc-tag-precondition, vc-rename-master): Autoload.
7003 * vc/vc-svn.el (vc-exec-after): Declare.
7004 (vc-switches, vc-setup-buffer): Autoload.
7005 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
7006 Autoload.
7007 (vc-resynch-buffer): Declare.
7008
7009 * obsolete/fast-lock.el (byte-compile-warnings):
7010 Don't warn about obsolete features in this obsolete file.
7011
7012 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
7013 Move definition before use.
7014
7015 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
7016 (dun-unix-verbs): Remove dun-zippy.
7017 (dun-zippy): Remove function.
7018
7019 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
7020
7021 2013-05-27 Juri Linkov <juri@jurta.org>
7022
7023 * replace.el (replace-search): New function with code moved out
7024 from `perform-replace'.
7025 (replace-highlight, replace-dehighlight): Move function definitions
7026 up closer to `replace-search'. (Bug#11746)
7027
7028 2013-05-27 Juri Linkov <juri@jurta.org>
7029
7030 * replace.el (perform-replace): Ignore invisible matches.
7031 In addition to checking `query-replace-skip-read-only', also
7032 filter out matches by calling `run-hook-with-args-until-failure'
7033 on `isearch-filter-predicates', and also check `search-invisible'
7034 for t or call `isearch-range-invisible'.
7035 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
7036
7037 2013-05-27 Juri Linkov <juri@jurta.org>
7038
7039 * isearch.el (isearch-filter-predicates): Rename from
7040 `isearch-filter-predicate'. Doc fix. (Bug#11378)
7041 (isearch-message-prefix): Display text from the property
7042 `isearch-message-prefix' of the currently active filters.
7043 (isearch-search): Don't compare `isearch-filter-predicate' with
7044 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
7045 on `isearch-filter-predicates'. Also check `search-invisible' for t
7046 or call `isearch-range-invisible'.
7047 (isearch-filter-visible): Make obsolete.
7048 (isearch-lazy-highlight-search):
7049 Call `run-hook-with-args-until-failure' on
7050 `isearch-filter-predicates' and use `isearch-range-invisible'.
7051
7052 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
7053 `isearch-filter-predicates' instead of `funcall'ing
7054 `isearch-filter-predicate'.
7055 (Info-mode): Set `Info-isearch-filter' to
7056 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
7057
7058 * dired-aux.el (dired-isearch-filter-predicate-orig):
7059 Remove variable.
7060 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
7061 (dired-isearch-filenames-end): Add and remove
7062 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
7063 instead of changing the value of `isearch-filter-predicate'.
7064 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
7065 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
7066 Put property `isearch-message-prefix' to "filename " on
7067 `dired-isearch-filter-filenames'.
7068
7069 * wdired.el (wdired-change-to-wdired-mode):
7070 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
7071 locally instead of changing `isearch-filter-predicate'.
7072 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
7073
7074 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
7075
7076 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
7077 return the commit hash (Bug#14459). Also set the
7078 `vc-git-detached' property.
7079 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
7080 (vc-git-mode-line-string): Use the same help-echo format whether
7081 in detached mode or not, because we know the actual revision now.
7082 When in detached mode, shorten the revision to 7 chars.
7083
7084 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7085
7086 * emacs-lisp/easy-mmode.el (define-minor-mode):
7087 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
7088 mode hook and provide a docstring.
7089
7090 2013-05-27 Alan Mackenzie <acm@muc.de>
7091
7092 Remove spurious syntax-table text properties inserted by C-y.
7093 * progmodes/cc-mode.el (c-after-change): Also clear hard
7094 syntax-table property with value nil.
7095
7096 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
7097
7098 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
7099 when reading the events; the buffer layout shall not be changed.
7100
7101 2013-05-27 Leo Liu <sdl.web@gmail.com>
7102
7103 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
7104 New variable.
7105 (inferior-octave-directory-tracker): Automatically re-sync
7106 default-directory.
7107 (octave-help): Improve handling of 'See also'.
7108
7109 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7110
7111 * doc-view.el: Minor naming convention tweaks.
7112 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
7113
7114 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
7115 even if there's no `display' property yet (bug#14435).
7116
7117 2013-05-25 Eli Zaretskii <eliz@gnu.org>
7118
7119 * subr.el (unmsys--file-name): Rename from reveal-filename.
7120
7121 * Makefile.in (custom-deps, finder-data, autoloads)
7122 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7123 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7124 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
7125
7126 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7127
7128 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
7129 error-completion on the first 2 args of condition-case (bug#14446).
7130 Don't burp at EOB.
7131
7132 2013-05-25 Leo Liu <sdl.web@gmail.com>
7133
7134 * comint.el (comint-previous-matching-input): Do not flood the
7135 *Messages* buffer with trivial messages.
7136
7137 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7138
7139 * progmodes/flymake.el (flymake-nop): Don't return a string.
7140 (flymake-set-at): Fix typo.
7141
7142 * simple.el (read--expression): New function, extracted from
7143 eval-expression. Set completion-at-point-functions (bug#14465).
7144 (eval-expression, eval-minibuffer): Use it.
7145
7146 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
7147
7148 * progmodes/flymake.el (flymake-save-buffer-in-file)
7149 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
7150 (flymake-selected-frame, flymake-log, flymake-ins-after)
7151 (flymake-set-at, flymake-get-buildfile-from-cache)
7152 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
7153 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
7154 Refine the doc string.
7155 (flymake-get-file-name-mode-and-masks): Reformat.
7156 (flymake-get-real-file-name-function): Fix a minor bug.
7157
7158 2013-05-24 Juri Linkov <juri@jurta.org>
7159
7160 * progmodes/grep.el (grep-mode-font-lock-keywords):
7161 Support =linenumber= format used by git-grep for lines with
7162 function names. (Bug#13549)
7163
7164 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7165
7166 * progmodes/octave.el (octave-smie-rules): Return nil rather than
7167 0 after a semi-colon; it works better for smie-auto-fill.
7168 (octave--indent-new-comment-line): New function.
7169 (octave-indent-new-comment-line): Use it (indirectly).
7170 (octave-mode): Don't disable smie-auto-fill. Use add-function to
7171 modify comment-line-break-function.
7172
7173 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
7174 (smie-setup): Use add-function to set it.
7175
7176 2013-05-24 Sam Steingold <sds@gnu.org>
7177
7178 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
7179 argument (before the `interactive' argument).
7180
7181 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7182
7183 * image-mode.el (image-mode-winprops): Add winprops to
7184 image-mode-winprops-alist before running
7185 image-mode-new-window-functions.
7186 * doc-view.el (doc-view-new-window-function): Don't delay
7187 doc-view-goto-page via timers (bug#14435).
7188
7189 2013-05-24 Tassilo Horn <tsdh@gnu.org>
7190
7191 * doc-view.el: Integrate with desktop.el. (Bug#14435)
7192 (doc-view-desktop-save-buffer): New function.
7193 (doc-view-restore-desktop-buffer): New function.
7194 (desktop-buffer-mode-handlers):
7195 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
7196 handler.
7197 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
7198 `desktop-save-buffer' function.
7199
7200 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
7201
7202 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
7203 (tramp-gvfs-file-name-handler): Raise a user error when
7204 `tramp-gvfs-enabled' is nil.
7205 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
7206 Do not raise a user error when loading package. (Bug#14447)
7207
7208 * net/xesam.el: Move to obsolete/.
7209
7210 2013-05-24 Glenn Morris <rgm@gnu.org>
7211
7212 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
7213
7214 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
7215
7216 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
7217 (Info-find-node, Man-getpage-in-background): Declare.
7218
7219 * mail/unrmail.el (unrmail):
7220 Replace obsolete detect-coding-with-priority.
7221
7222 * net/socks.el (socks-split-string): Use this rather than split-string.
7223 (socks-nslookup-host): Update for above change.
7224 (dynamic-choice, s5-dynamic-choice-match)
7225 (s5-dynamic-choice-match-inline, s5-widget-value-create):
7226 Comment out unused code.
7227
7228 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
7229 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
7230 (gud-tooltip-echo-area): Make obsolete.
7231 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
7232
7233 * progmodes/js.el (js--optimize-arglist): Declare.
7234
7235 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
7236
7237 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
7238 (ediff-window-C): Declare.
7239
7240 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
7241 Tweak requires to silence compiler.
7242
7243 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
7244 (he-search-string, he-tried-table, he-expand-list)
7245 (he-init-string, he-string-member, he-substitute-string)
7246 (he-reset-string): Declare.
7247
7248 * obsolete/options.el (list-options): Use custom-variable-p,
7249 rather than obsolete alias.
7250
7251 2013-05-23 Sam Steingold <sds@gnu.org>
7252
7253 * simple.el (shell-command-on-region): Pass the `replace' argument
7254 down to `call-process-region' to comply with the doc as reported on
7255 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
7256
7257 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7258
7259 * emacs-lisp/smie.el (smie-indent-forward-token)
7260 (smie-indent-backward-token): Handle string tokens (bug#14381).
7261
7262 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7263
7264 * ielm.el (ielm-menu): New menu.
7265 (inferior-emacs-lisp-mode): Set comment-start.
7266
7267 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7268
7269 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
7270 Fix deactivate action.
7271
7272 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
7273 Add cleveref macros.
7274
7275 * lisp/textmodes/reftex-parse.el
7276 (reftex-locate-bibliography-files): Accept options for
7277 bibliography commands.
7278 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
7279 Add addbibresource. Basic Biblatex support.
7280
7281 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
7282
7283 * net/tramp-gvfs.el (top):
7284 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
7285 when loading package. (Bug#14447)
7286
7287 2013-05-23 Glenn Morris <rgm@gnu.org>
7288
7289 * progmodes/js.el: No need to load comint when compiling.
7290 (ring-insert, comint-send-string, comint-send-input)
7291 (comint-last-input-end, ido-chop): Declare.
7292
7293 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
7294 * vc/ediff-mult.el: Adjust requires.
7295 (ediff-directories-internal, ediff-directory-revisions-internal)
7296 (ediff-patch-file-internal): Declare.
7297 * vc/ediff-ptch.el: Adjust requires.
7298 (ediff-use-last-dir, ediff-buffers-internal): Declare.
7299 (ediff-find-file): Autoload.
7300 * vc/ediff-util.el: No need to load ediff when compiling.
7301 (ediff-regions-internal): Declare.
7302 * vc/ediff-wind.el: Adjust requires.
7303 (ediff-compute-toolbar-width): Define when compiling.
7304 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
7305 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
7306 (dired-get-filename, dired-get-marked-files)
7307 (ediff-last-dir-patch, ediff-patch-default-directory)
7308 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
7309 (ediff-patch-buffer-internal): Declare.
7310
7311 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
7312 (ispell-process, ispell-buffer-local-words, lm-summary)
7313 (lm-section-start, lm-section-end): Declare.
7314 (checkdoc-ispell-init): Simplify.
7315
7316 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
7317 (he-string-member, he-reset-string, he-substitute-string): Declare.
7318
7319 * eshell/em-ls.el: Adjust requires.
7320 (eshell-glob-regexp): Declare.
7321 * eshell/em-tramp.el: Adjust requires.
7322 (eshell-parse-command): Autoload.
7323 * eshell/em-xtra.el: Adjust requires.
7324 (eshell-parse-command): Autoload.
7325 * eshell/esh-ext.el: Adjust requires.
7326 (eshell-parse-command, eshell-close-handles): Autoload.
7327 * eshell/esh-io.el: Adjust requires.
7328 (eshell-output-filter): Autoload.
7329 * eshell/esh-util.el: No need to load tramp when compiling.
7330 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
7331 Declare.
7332 (eshell-parse-ange-ls): Require ange-ftp and tramp.
7333 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7334 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
7335 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
7336 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
7337 * eshell/esh-opt.el, eshell/esh-proc.el:
7338 * eshell/esh-var.el: Adjust requires.
7339 * eshell/eshell.el: Do not require esh-util twice.
7340 (eshell-add-input-to-history): Declare.
7341 (eshell-command): Check history module is active before using it.
7342
7343 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
7344
7345 2013-05-22 Leo Liu <sdl.web@gmail.com>
7346
7347 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
7348
7349 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
7350
7351 * autorevert.el (auto-revert-notify-add-watch)
7352 (auto-revert-notify-handler): Add `attrib' for the inotify case,
7353 it indicates changes in file modification time.
7354
7355 2013-05-22 Glenn Morris <rgm@gnu.org>
7356
7357 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7358 Always delete the autoloaded function from the noruntime and
7359 unresolved functions lists.
7360
7361 * allout.el: No need to load epa, epg, overlay when compiling.
7362 (epg-context-set-passphrase-callback, epg-list-keys)
7363 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
7364 (epg-key-user-id-list): Declare.
7365
7366 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7367 (viper-set-parsing-style-toggling-macro)
7368 (viper-set-emacs-state-searchstyle-macros):
7369 Use called-interactively-p on Emacs.
7370 (viper-looking-back): Make it an obsolete alias. Update callers.
7371 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
7372 Use looking-back rather than viper-looking-back.
7373 (viper-tmp-insert-at-eob, viper-enlarge-region)
7374 (viper-read-string-with-history, viper-register-to-point)
7375 (viper-append-to-register, viper-change-state-to-vi)
7376 (viper-backward-char-carefully, viper-forward-char-carefully)
7377 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
7378 (viper-change-state-to-emacs): Declare.
7379 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
7380 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
7381 * emulation/viper-mous.el: Do not load viper-cmd.
7382 (viper-backward-char-carefully, viper-forward-char-carefully)
7383 (viper-forward-word, viper-adjust-window): Declare.
7384
7385 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
7386
7387 * progmodes/idlw-help.el (idlwave-help-fontify):
7388 Use called-interactively-p.
7389
7390 * term/w32console.el (w32-get-console-codepage)
7391 (w32-get-console-output-codepage): Declare.
7392
7393 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
7394 Remove unnecessary declarations.
7395 (dframe-message): Doc fix.
7396
7397 * info.el (dframe-select-attached-frame, dframe-current-frame):
7398 Declare.
7399
7400 * speedbar.el (speedbar-message): Make it an obsolete alias.
7401 Update all callers.
7402 (speedbar-with-attached-buffer)
7403 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
7404 (speedbar-with-writable): Use backquote.
7405 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
7406 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
7407 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
7408 rather than speedbar- aliases.
7409 * mail/rmail.el: Load dframe rather than speedbar when compiling.
7410 (speedbar-make-specialized-keymap, speedbar-insert-button)
7411 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
7412 (speedbar-do-function-pointer): Declare.
7413 (rmail-speedbar-button, rmail-speedbar-find-file)
7414 (rmail-speedbar-move-message):
7415 Use dframe-with-attached-buffer rather than speedbar- alias.
7416 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
7417 (dframe-message, speedbar-make-specialized-keymap)
7418 (speedbar-add-expansion-list, speedbar-mode-functions-list)
7419 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
7420 (speedbar-insert-button, dframe-select-attached-frame)
7421 (dframe-maybee-jump-to-attached-frame)
7422 (speedbar-change-initial-expansion-list)
7423 (speedbar-previously-used-expansion-list-name): Declare.
7424 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
7425 Use dframe-message, dframe-with-attached-buffer rather than
7426 speedbar- aliases.
7427 (gud-sentinel): Silence compiler.
7428 * progmodes/vhdl-mode.el (speedbar-refresh)
7429 (speedbar-do-function-pointer, speedbar-add-supported-extension)
7430 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
7431 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
7432 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
7433 (speedbar-file-lists, speedbar-make-tag-line)
7434 (speedbar-line-directory, speedbar-goto-this-file)
7435 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
7436 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
7437 (speedbar-make-button, speedbar-reset-scanners)
7438 (speedbar-files-item-info, speedbar-line-text)
7439 (speedbar-find-file-in-frame, speedbar-set-timer)
7440 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
7441 (speedbar-with-writable): Do not (re)define it.
7442 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
7443 rather than speedbar- alias.
7444
7445 2013-05-21 Leo Liu <sdl.web@gmail.com>
7446
7447 * progmodes/octave.el (octave-mode-menu): Update and re-organize
7448 menu items.
7449 (octave-mode): Tweak fill-nobreak-predicate.
7450 (inferior-octave-startup): Check process to avoid infinite loop.
7451 (inferior-octave): Pop to buffer first to show abornmal process
7452 exit information.
7453
7454 2013-05-21 Glenn Morris <rgm@gnu.org>
7455
7456 * printing.el (pr-menu-bar): Define when compiling.
7457
7458 2013-05-21 Leo Liu <sdl.web@gmail.com>
7459
7460 * progmodes/octave.el (octave-auto-fill): Remove.
7461 (octave-indent-new-comment-line): Improve.
7462 (octave-mode): Use auto fill mode through
7463 comment-line-break-function and fill-nobreak-predicate.
7464 (octave-goto-function-definition): Support DEFUN_DLD.
7465 (octave-beginning-of-defun): Small tweak.
7466 (octave-help): Show parent directory.
7467
7468 2013-05-21 Glenn Morris <rgm@gnu.org>
7469
7470 * files.el (dired-unmark):
7471 * progmodes/gud.el (gdb-input): Update declarations.
7472
7473 * calculator.el (electric, ehelp): No need to load when compiling.
7474 (Electric-command-loop, electric-describe-mode): Declare.
7475
7476 * doc-view.el (doc-view-current-converter-processes): Move before use.
7477
7478 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7479 Move MODE-set-explicitly definition before use.
7480
7481 * international/mule-diag.el (mule-diag):
7482 Don't use obsolete window-system-version.
7483
7484 * mail/feedmail.el (smtpmail): No need to load when compiling.
7485 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
7486
7487 * mail/mail-utils.el (rfc822): No need to load when compiling.
7488 (rfc822-addresses): Autoload it.
7489 (mail-strip-quoted-names): Trivial simplification.
7490
7491 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
7492 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
7493
7494 * net/snmp-mode.el (tempo): Don't duplicate requires.
7495
7496 * progmodes/prolog.el (info): No need to load when compiling.
7497 (comint): Require before shell requires it.
7498 (Info-goto-node): Autoload it.
7499 (Info-follow-nearest-node): Declare.
7500 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
7501
7502 * textmodes/artist.el (picture-mode-exit): Declare.
7503
7504 * textmodes/reftex-parse.el (reftex-parse-from-file):
7505 Trivial rewrite so the compiler can parse it better.
7506
7507 2013-05-20 Leo Liu <sdl.web@gmail.com>
7508
7509 * progmodes/octave.el (octave-help-mode-map)
7510 (octave-help-mode-finish-hook): New variables.
7511 (octave-help-mode, octave-help-mode-finish): New functions.
7512 (octave-help): Use octave-help-mode.
7513
7514 2013-05-20 Glenn Morris <rgm@gnu.org>
7515
7516 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
7517
7518 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
7519
7520 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
7521 start at point, so that expansion starting right after opening
7522 slash in a regexp is recognized.
7523 (ruby-syntax-before-regexp-re): New defvar, extracted from
7524 ruby-syntax-propertize-function. Since the value of this regexp
7525 is looked up at runtime now, we should be able to turn
7526 `ruby-syntax-methods-before-regexp' into a defcustom later.
7527 (ruby-syntax-propertize-function): Split regexp matching into two
7528 parts, for opening and closing slashes. That allows us to skip
7529 over string interpolations and support multiline regexps.
7530 Don't call `ruby-syntax-propertize-expansions', instead use another rule
7531 for them, which calls `ruby-syntax-propertize-expansion'.
7532 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
7533 call to `ruby-syntax-propertize-function'.
7534 (ruby-syntax-propertize-expansion): Extracted from
7535 `ruby-syntax-propertize-expansions'. Handles one expansion.
7536 (ruby-syntax-propertize-percent-literal): Leave point right after
7537 the percent symbol, so that the expression expansion rule can
7538 propertize the contents.
7539 (ruby-syntax-propertize-heredoc): Leave point at bol following the
7540 heredoc openers.
7541 (ruby-syntax-propertize-expansions): Remove.
7542
7543 2013-05-18 Juri Linkov <juri@jurta.org>
7544
7545 * man.el (Man-default-man-entry): Remove `-' from the end
7546 of the default value. (Bug#14400)
7547
7548 2013-05-18 Glenn Morris <rgm@gnu.org>
7549
7550 * comint.el (comint-password-prompt-regexp):
7551 Allow "password for XXX" where XXX contains colons (eg https://...).
7552
7553 2013-05-18 Leo Liu <sdl.web@gmail.com>
7554
7555 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
7556 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
7557 (octave-source-directories): Don't check process.
7558 (octave-source-directories, octave-find-definition): Doc fix.
7559
7560 2013-05-18 Glenn Morris <rgm@gnu.org>
7561
7562 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
7563 Remove backspace/delete bindings. (Bug#14392)
7564
7565 * cus-dep.el (custom-make-dependencies): Sort the output.
7566 (custom-versions-load-alist): Convert comment to doc.
7567
7568 2013-05-17 Leo Liu <sdl.web@gmail.com>
7569
7570 * newcomment.el (comment-search-backward): Stricter in finding
7571 comment start. (Bug#14303)
7572
7573 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
7574 (octave-comment-start-skip): Properly anchored.
7575
7576 2013-05-17 Leo Liu <sdl.web@gmail.com>
7577
7578 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
7579 Clean up when turned off. (Bug#14395)
7580 (smie--highlight-matching-block-overlay): No longer buffer-local.
7581 (smie-highlight-matching-block): Adjust.
7582
7583 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
7584
7585 Doc string fix for "nanoseconds" (Bug#14406).
7586 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
7587 Fix doc string typo that had "nanoseconds" instead of "microseconds".
7588
7589 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
7590
7591 * calc/calc-units.el (math-extract-units): Preserve powers
7592 of units.
7593
7594 2013-05-17 Leo Liu <sdl.web@gmail.com>
7595
7596 * subr.el (delete-consecutive-dups): New function.
7597 * ido.el (ido-set-matches-1): Use it.
7598 * progmodes/octave.el (inferior-octave-completion-table): Use it.
7599 * ido.el (ido-remove-consecutive-dups): Remove.
7600
7601 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7602
7603 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
7604 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
7605 regexp-opt's `words'.
7606
7607 2013-05-16 Leo Liu <sdl.web@gmail.com>
7608
7609 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
7610 (smie--highlight-matching-block-overlay)
7611 (smie--highlight-matching-block-lastpos)
7612 (smie--highlight-matching-block-timer): New variables.
7613 (smie-highlight-matching-block): New function.
7614 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
7615 (smie-setup): Conditionally enable smie-blink-matching-open.
7616
7617 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
7618
7619 Sync with upstream verilog-mode r840.
7620 * progmodes/verilog-mode.el (verilog-mode-version)
7621 (verilog-mode-release-date): Update.
7622 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
7623 (verilog-sig-tieoff): Fix string error on
7624 AUTORESET with colon define, bug594. Reported by Andrew Hou.
7625 (verilog-read-decls): Fix parameters confusing
7626 AUTOINST interfaces, bug565. Reported by Leith Johnson.
7627
7628 2013-05-16 Eli Zaretskii <eliz@gnu.org>
7629
7630 * subr.el (reveal-filename): New function.
7631
7632 * loadup.el: Compute Emacs executable versions on MS-Windows,
7633 where executables have the .exe extension. Add a hard link
7634 emacs-XX.YY.ZZ.exe on MS-Windows.
7635
7636 * Makefile.in (XARGS_LIMIT): New variable.
7637 (custom-deps, finder-data, autoloads)
7638 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7639 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7640 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
7641 (compile-main): Limit xargs according to $(XARGS_LIMIT).
7642
7643 2013-05-16 Leo Liu <sdl.web@gmail.com>
7644
7645 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
7646 (octave-mode-menu, octave-mode-map): Remove its uses.
7647
7648 2013-05-16 Reto Zimmermann <reto@gnu.org>
7649
7650 Sync with upstream vhdl mode v3.34.2.
7651 * progmodes/vhdl-mode.el: Use `push' throughout.
7652 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
7653 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
7654 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
7655 (vhdl-actual-generic-name): New option to derive actual generic name.
7656 (vhdl-port-paste-signals): Replace formal by actual generics.
7657 (vhdl-beautify): New name for old group vhdl-align. Update users.
7658 (vhdl-beautify-options): New option.
7659 (vhdl-last-input-event): New compat alias. Use throughout.
7660 (vhdl-goto-line): Replace user level function `goto-line'.
7661 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
7662 vhdl-fix-statement-buffer.
7663 (vhdl-create-mode-menu): Add some entries.
7664 (vhdl-align-region-groups): Respect vhdl-beautify-options.
7665 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
7666 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
7667 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
7668 to force statements on one line.
7669 (vhdl-remove-trailing-spaces-region):
7670 New, split from vhdl-remove-trailing-spaces.
7671 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
7672 Respect vhdl-beautify-options.
7673 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
7674 (vhdl-update-sensitivity-list): Not add with index if exists without.
7675 Not include array index with signal. Ignore keywords in comments.
7676 (vhdl-get-visible-signals): Regexp tweaks.
7677 (vhdl-template-component-inst): Handle empty library.
7678 (vhdl-template-type): Add template for 'enum' type.
7679 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
7680 Use vhdl-replace-string.
7681 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
7682 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
7683 (vhdl-speedbar-initialize): Update for above name change.
7684 (vhdl-compose-wire-components): Fix in handling of constants.
7685 (vhdl-error-regexp-emacs-alist): New variable.
7686 (vhdl-error-regexp-add-emacs): New function;
7687 adds support for new compile.el (Emacs 22+)
7688 (vhdl-generate-makefile-1): Change target order for single lib. units.
7689 Allow use of absolute file names.
7690
7691 2013-05-16 Leo Liu <sdl.web@gmail.com>
7692
7693 * simple.el (prog-indent-sexp): Indent enclosing defun.
7694
7695 2013-05-15 Glenn Morris <rgm@gnu.org>
7696
7697 * cus-start.el (show-trailing-whitespace): Move to editing basics.
7698 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
7699 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
7700 (whitespace-highlight): Move to whitespace group.
7701
7702 * comint.el (comint-source):
7703 * pcmpl-linux.el (pcmpl-linux):
7704 * shell.el (shell-faces):
7705 * eshell/esh-opt.el (eshell-opt):
7706 * international/ccl.el (ccl): Remove empty custom groups.
7707
7708 * completion.el (dynamic-completion-mode):
7709 * jit-lock.el (jit-lock-debug-mode):
7710 * minibuffer.el (completion-in-region-mode):
7711 * type-break.el (type-break-mode-line-message-mode)
7712 (type-break-query-mode):
7713 * emulation/tpu-edt.el (tpu-edt-mode):
7714 * progmodes/subword.el (global-subword-mode, global-superword-mode):
7715 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7716 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
7717
7718 * term/xterm.el (xterm): Change parent group to terminals.
7719
7720 * master.el (master): Remove empty custom group.
7721 (master-mode): Remove unused :group argument.
7722 * textmodes/refill.el (refill): Remove empty custom group.
7723 (refill-mode): Remove unused :group argument.
7724
7725 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
7726
7727 * cus-dep.el: Provide a feature.
7728 (custom-make-dependencies): Ignore dotfiles (dir-locals).
7729 Don't mistakenly ignore files whose basenames match a basename
7730 from preloaded-file-list (eg cedet/ede/simple.el).
7731 Add a fallback method for getting :group.
7732
7733 2013-05-15 Juri Linkov <juri@jurta.org>
7734
7735 * isearch.el (isearch-char-by-name): Rename from
7736 `isearch-insert-char-by-name'. Doc fix.
7737 (isearch-forward): Mention `isearch-char-by-name' in
7738 the docstring. (Bug#13348)
7739
7740 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7741 `exit-minibuffer' instead of
7742 `isearch-nonincremental-exit-minibuffer'.
7743 (isearch-edit-string): Remove mention of
7744 `isearch-nonincremental-exit-minibuffer' from docstring.
7745 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7746 (isearch-forward-exit-minibuffer)
7747 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7748
7749 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7750
7751 * loadup.el: Just use unversioned DOC.
7752
7753 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7754 literals as extending to EOB.
7755 (nxml-last-fontify-end): Remove unused variable.
7756 (nxml-after-change1): Use with-silent-modifications.
7757 (nxml-extend-after-change-region): Simplify.
7758 (nxml-extend-after-change-region1): Remove function.
7759 (nxml-after-change1): Don't adjust for dependent regions.
7760 (nxml-fontify-matcher): Simplify.
7761 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7762 (xmltok-add-dependent): Remove function.
7763 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7764 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7765 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7766 unclosed <[[, <?, comment, and other literals as extending to EOB.
7767 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7768 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7769 Remove functions.
7770 (rng-do-some-validation-1): Don't mark dependent regions.
7771 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7772 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7773 (nxml-clear-dependent-regions): Remove functions.
7774 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7775 (nxml-ensure-scan-up-to-date):
7776 Don't clear&mark dependent regions.
7777
7778 2013-05-15 Leo Liu <sdl.web@gmail.com>
7779
7780 * progmodes/octave.el (octave-goto-function-definition):
7781 Improve and fix callers.
7782
7783 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7784
7785 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7786 the setter (bug#14387).
7787
7788 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7789 surrounding group (bug#14402).
7790
7791 2013-05-14 Juri Linkov <juri@jurta.org>
7792
7793 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7794 (Bug#14390)
7795
7796 2013-05-14 Glenn Morris <rgm@gnu.org>
7797
7798 * progmodes/f90.el (f90-imenu-generic-expression):
7799 Fix typo in 2013-05-08 change. (Bug#14402)
7800
7801 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7802
7803 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7804 Remove signals for which replies are never received.
7805
7806 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7807
7808 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7809 (gdb-handler-alist, gdb-handler-number): Remove variables.
7810 (gdb-handler-list): New variable.
7811 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7812 (gdb-pending-handler-p, gdb-handle-reply)
7813 (gdb-remove-all-pending-triggers): New functions.
7814 (gdb-discard-unordered-replies): New defcustom.
7815 (gdb-handler): New defstruct.
7816 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7817 instead of gdb-pending-triggers. Update docstring.
7818 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7819 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7820 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7821 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7822 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7823 (gdb-frame-handler): Pending triggers are now automatically managed.
7824 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7825 Remove argument.
7826 (gdb-input): Automatically handles pending triggers. Update docstring.
7827 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7828 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7829 Update comments.
7830 (gdb-done-or-error): Now use gdb-handle-reply.
7831
7832 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7833
7834 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7835 gdb-debug-log.
7836
7837 2013-05-14 Glenn Morris <rgm@gnu.org>
7838
7839 * subr.el (user-emacs-directory-warning): New option.
7840 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7841
7842 2013-05-14 Leo Liu <sdl.web@gmail.com>
7843
7844 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7845 during redisplay.
7846 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
7847 (octave-font-lock-texinfo-comment): Fix invalid search bound
7848 error: wrong side of point.
7849
7850 2013-05-14 Glenn Morris <rgm@gnu.org>
7851
7852 * progmodes/flymake.el (flymake-xml-program): New option.
7853 (flymake-xml-init): Use it.
7854
7855 * term/xterm.el: Provide a feature.
7856
7857 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
7858
7859 2013-05-13 Glenn Morris <rgm@gnu.org>
7860
7861 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7862 Add compat aliases as a hack workaround. (Bug#14384)
7863
7864 2013-05-13 Leo Liu <sdl.web@gmail.com>
7865
7866 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7867 ###, and %!.
7868 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7869 C-M-q.
7870 (octave-comment-start-skip): Include %!.
7871 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
7872
7873 2013-05-12 Leo Liu <sdl.web@gmail.com>
7874
7875 * progmodes/octave.el (inferior-octave-startup): Store the value
7876 of __octave_srcdir__ for octave-source-directories.
7877 (inferior-octave-check-process): New function refactored out of
7878 inferior-octave-send-list-and-digest.
7879 (octave-source-directories)
7880 (octave-find-definition-filename-function): New variables.
7881 (octave-source-directories)
7882 (octave-find-definition-default-filename): New functions.
7883 (octave-find-definition): Improve to find functions implemented in C++.
7884
7885 2013-05-12 Glenn Morris <rgm@gnu.org>
7886
7887 * calendar/diary-lib.el (diary-outlook-format-1):
7888 Don't include dayname in the output. (Bug#14349)
7889
7890 2013-05-11 Glenn Morris <rgm@gnu.org>
7891
7892 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7893
7894 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7895 Treat cc-provide like provide.
7896
7897 2013-05-11 Kevin Ryde <user42@zip.com.au>
7898
7899 * cus-dep.el (custom-make-dependencies):
7900 Use generated-autoload-load-name for the sake of files such
7901 such cedet/semantic/bovine/c.el, where the base file name
7902 is not in load-path. (Bug#5277)
7903
7904 2013-05-11 Glenn Morris <rgm@gnu.org>
7905
7906 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7907 Provide features.
7908
7909 2013-05-11 Leo Liu <sdl.web@gmail.com>
7910
7911 * progmodes/octave.el (octave-indent-comment): Improve.
7912 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
7913 (octave-eldoc-function-signatures, octave-eldoc-function):
7914 New functions.
7915 (octave-mode, inferior-octave-mode): Add eldoc support.
7916
7917 2013-05-11 Richard Stallman <rms@gnu.org>
7918
7919 * epa.el (epa-decrypt-file): Take output file name as argument
7920 and read it using `interactive'.
7921
7922 2013-05-11 Leo Liu <sdl.web@gmail.com>
7923
7924 * progmodes/octave.el (octave-beginning-of-line)
7925 (octave-end-of-line): Check before using up-list because it jumps
7926 out of more syntactic contructs since moving to smie.
7927 (octave-indent-comment): New function.
7928 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
7929 (octave-begin-keywords, octave-end-keywords)
7930 (octave-reserved-words, octave-smie-bnf-table)
7931 (octave-smie-rules): Add new keywords from Octave 3.6.4.
7932
7933 2013-05-11 Glenn Morris <rgm@gnu.org>
7934
7935 * faces.el (internal-face-x-get-resource):
7936 * frame.el (ns-display-monitor-attributes-list):
7937 * calc/calc-aent.el (math-to-radians-2):
7938 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
7939 Fix declarations.
7940
7941 * calc/calc-menu.el: Make it loadable in isolation.
7942
7943 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7944 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7945 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7946 (eudc-bbdb-query-internal): Require 'bbdb.
7947
7948 * lpr.el (lpr-headers-switches):
7949 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7950
7951 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7952
7953 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7954
7955 * term.el (term-set-escape-char): Make it idempotent.
7956
7957 2013-05-10 Leo Liu <sdl.web@gmail.com>
7958
7959 * progmodes/octave.el (inferior-octave-completion-table):
7960 No longer a function and all uses changed. Use cache to speed up
7961 completion due to bug#11906.
7962 (octave-beginning-of-defun): Re-write to be more general.
7963
7964 2013-05-10 Glenn Morris <rgm@gnu.org>
7965
7966 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7967
7968 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7969
7970 * comint.el (comint-redirect-send-command-to-process): Use :around
7971 rather than :override for comint-redirect-filter.
7972 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7973 Call it instead of comint-redirect-original-filter-function (which
7974 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7975
7976 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7977
7978 * frame.el (display-monitor-attributes-list): Add NS case.
7979 (ns-display-monitor-attributes-list): Declare.
7980
7981 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
7982
7983 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7984
7985 2013-05-09 Glenn Morris <rgm@gnu.org>
7986
7987 * international/fontset.el (vertical-centering-font-regexp):
7988 Set standard-value.
7989
7990 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7991
7992 * bookmark.el (bookmark-search-delay):
7993 * cus-start.el (vertical-centering-font-regexp):
7994 * ps-mule.el (ps-mule-font-info-database-default):
7995 * ps-print.el (ps-default-fg, ps-default-bg):
7996 * type-break.el (type-break-good-break-interval):
7997 * whitespace.el (whitespace-indentation-regexp)
7998 (whitespace-space-after-tab-regexp):
7999 * emacs-lisp/testcover.el (testcover-1value-functions)
8000 (testcover-noreturn-functions, testcover-progn-functions)
8001 (testcover-prog1-functions):
8002 * emulation/viper-init.el (viper-emacs-state-cursor-color):
8003 * eshell/em-glob.el (eshell-glob-translate-alist):
8004 * play/tetris.el (tetris-tty-colors):
8005 * progmodes/cpp.el (cpp-face-default-list):
8006 * progmodes/flymake.el (flymake-allowed-file-name-masks):
8007 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
8008 (idlwave-help-browser-generic-args):
8009 * progmodes/make-mode.el (makefile-special-targets-list):
8010 * progmodes/python.el (python-shell-virtualenv-path):
8011 * progmodes/verilog-mode.el (verilog-active-low-regexp)
8012 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
8013 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
8014 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
8015 * textmodes/reftex-vars.el (reftex-format-label-function):
8016 * textmodes/remember.el (remember-diary-file): Fix custom types.
8017
8018 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
8019 Add :version.
8020
8021 2013-05-09 Leo Liu <sdl.web@gmail.com>
8022
8023 * progmodes/octave.el (inferior-octave-completion-at-point):
8024 Restore file completion. (Bug#14300)
8025 (inferior-octave-startup): Fix incorrect highlighting for the
8026 first prompt.
8027
8028 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8029
8030 * progmodes/ruby-mode.el: First cut at SMIE support.
8031 (ruby-use-smie): New var.
8032 (ruby-smie-grammar): New constant.
8033 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
8034 (ruby-smie--forward-token, ruby-smie--backward-token)
8035 (ruby-smie-rules): New functions.
8036 (ruby-mode-variables): Setup SMIE if applicable.
8037
8038 2013-05-08 Eli Zaretskii <eliz@gnu.org>
8039
8040 * simple.el (line-move-visual): Signal beginning/end of buffer
8041 only if vertical-motion moved less than it was requested. Avoids
8042 silly incorrect error messages when there are display strings with
8043 multiple newlines at EOL.
8044
8045 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8046
8047 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
8048 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
8049 (prolog-char-quote-workaround):
8050 * progmodes/cperl-mode.el (cperl-under-as-char):
8051 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
8052 Mark as obsolete.
8053 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
8054 their declaration.
8055 (vhdl-mode-syntax-table-init): Remove.
8056
8057 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
8058 last change.
8059
8060 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
8061 syntax for "_".
8062 (ld-script-font-lock-keywords):
8063 Change regexps to use things like \_< and \_>.
8064
8065 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
8066 Change all regexps to use things like \_< and \_>.
8067
8068 * progmodes/autoconf.el (autoconf-definition-regexp)
8069 (autoconf-font-lock-keywords, autoconf-current-defun-function):
8070 Handle a _ with symbol syntax.
8071 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
8072
8073 * progmodes/ada-mode.el (ada-mode-abbrev-table):
8074 Consolidate declaration.
8075 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
8076 the declaration.
8077 (ada-create-syntax-table): Remove.
8078 (ada-capitalize-word): Don't mess with the syntax of "_" since it
8079 already has the right syntax nowadays.
8080 (ada-goto-next-word): Don't change the syntax of "_".
8081
8082 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
8083 with-wrapper-hook.
8084
8085 2013-05-08 Sam Steingold <sds@gnu.org>
8086
8087 * thingatpt.el (thing-at-point): Accept optional second argument
8088 NO-PROPERTIES to strip the text properties from the return value.
8089 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
8090 to `thing-at-point' instead of stripping the properties ourselves.
8091 Also, when `thing-at-point' fails to find a url, prepend "http://"
8092 to the filename at point on the assumption that the user is
8093 pointing at something like gnu.org/gnu.
8094
8095 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
8096
8097 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8098 * faces.el (crm-separator):
8099 Silence byte-compiler.
8100
8101 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
8102 (tool-bar-map): Remove unneeded defvars.
8103
8104 2013-05-08 Leo Liu <sdl.web@gmail.com>
8105
8106 Re-work a fix for bug#10994 based on Le Wang's patch.
8107 * ido.el (ido-remove-consecutive-dups): New helper.
8108 (ido-completing-read): Use it.
8109 (ido-chop): Revert fix for bug#10994.
8110
8111 2013-05-08 Adam Spiers <emacs@adamspiers.org>
8112
8113 * cus-edit.el (custom-save-variables):
8114 Pretty-print long values. (Bug#14187)
8115
8116 2013-05-08 Glenn Morris <rgm@gnu.org>
8117
8118 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
8119 (m4-mode-syntax-table): Init in the defvar.
8120 (m4-mode-abbrev-table): Let define-derived-mode define it.
8121
8122 2013-05-08 Tom Tromey <tromey@redhat.com>
8123
8124 * progmodes/m4-mode.el (m4-mode-syntax-table):
8125 Do not treat "_" as word constituent. (Bug#14167)
8126
8127 2013-05-07 Glenn Morris <rgm@gnu.org>
8128
8129 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
8130 Remove explicit eshell-isearch-cancel-map.
8131
8132 * progmodes/f90.el (f90-smart-end-names): New option.
8133 (f90-smart-end): Doc fix.
8134 (f90-end-block-optional-name): New constant.
8135 (f90-block-match): Respect f90-smart-end-names.
8136
8137 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8138
8139 * progmodes/octave.el (octave-smie-forward-token): Be more careful
8140 about implicit semi-colons (bug#14218).
8141
8142 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8143
8144 * frame.el (display-monitor-attributes-list)
8145 (frame-monitor-attributes): New functions.
8146
8147 2013-05-06 Leo Liu <sdl.web@gmail.com>
8148
8149 * progmodes/octave.el (octave-syntax-propertize-function): Change
8150 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
8151 (octave-font-lock-keywords): Use octave-operator-regexp.
8152 (octave-completion-at-point): Rename from
8153 octave-completion-at-point-function.
8154 (inferior-octave-directory-tracker): Robustify.
8155 (octave-text-functions): Remove and fix its uses. No such things
8156 any more.
8157
8158 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8159
8160 * emacs-lisp/trace.el (trace--display-buffer): New function.
8161 (trace-make-advice): Use it.
8162
8163 2013-05-06 Juri Linkov <juri@jurta.org>
8164
8165 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
8166 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
8167 Doc fix.
8168 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
8169 in the help string. (Bug#12985)
8170
8171 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
8172
8173 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
8174
8175 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8176
8177 * progmodes/perl-mode.el: Add support for here documents.
8178 (perl-syntax-propertize-function): Match here-doc markers.
8179 (perl-syntax-propertize-special-constructs): Find their end.
8180 (perl-imenu-generic-expression): Use [:alnum:].
8181
8182 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
8183 (advice--add-function): Refresh the advice if already present
8184 (bug#14317).
8185
8186 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
8187
8188 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
8189
8190 2013-05-06 Glenn Morris <rgm@gnu.org>
8191
8192 * w32-fns.el (w32-charset-info-alist): Declare.
8193
8194 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
8195 of its defcustom properties.
8196 (eshell-cmpl-initialize): No need to load pcomplete.
8197
8198 * generic-x.el: No need to require comint when compiling.
8199
8200 * net/eudc-export.el: Make it loadable without bbdb.
8201 (top-level): Use require rather than load-library.
8202 (eudc-create-bbdb-record, eudc-bbdbify-phone)
8203 (eudc-batch-export-records-to-bbdb)
8204 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
8205 Require bbdb.
8206
8207 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8208
8209 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
8210 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
8211 some tweaks, instead.
8212
8213 2013-05-05 Leo Liu <sdl.web@gmail.com>
8214
8215 * progmodes/octave.el (octave-font-lock-keywords)
8216 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
8217 (inferior-octave-send-list-and-digest): Improve error message.
8218 (octave-mode, inferior-octave-mode): Use setq-local.
8219 (octave-help): Set info-lookup-mode.
8220
8221 2013-05-05 Richard Stallman <rms@gnu.org>
8222
8223 * vc/compare-w.el (compare-windows-whitespace):
8224 Treat no-break space as whitespace.
8225
8226 * mail/rmailsum.el (rmail-summary-rmail-update):
8227 Detect empty summary and don't change selected message.
8228 (rmail-summary-goto-msg): Likewise.
8229
8230 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
8231 Doc fixes, rename args.
8232
8233 2013-05-05 Alan Mackenzie <acm@muc.de>
8234
8235 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
8236
8237 2013-05-05 Juri Linkov <juri@jurta.org>
8238
8239 * info.el (Info-read-subfile): Use (point-min) instead of (point)
8240 to not add the length of the summary segment to the return value.
8241 (Bug#14125)
8242
8243 2013-05-05 Leo Liu <sdl.web@gmail.com>
8244
8245 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
8246 (inferior-octave-output-filter): Remove.
8247 (octave-send-region, inferior-octave-startup): Fix callers.
8248 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
8249 (octave-binary-file-extensions): New user variable.
8250 (octave-find-definition): Confirm if opening binary files.
8251 (octave-help-file): Use octave-find-definition to get the binary
8252 confirmation.
8253 (octave-help): Adjust for octave-help-file change.
8254
8255 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8256
8257 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
8258 Merge the two entries that handle function definitions.
8259 (pascal--syntax-propertize): New const.
8260 (pascal-mode): Use it. Use setq-local.
8261
8262 2013-05-04 Glenn Morris <rgm@gnu.org>
8263
8264 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
8265 (diary-from-outlook): Respect diary-from-outlook-function.
8266
8267 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8268
8269 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
8270 Move the declaration from C.
8271 (read-minibuffer, eval-minibuffer): Move from C.
8272 (completion-setup-function): Avoid minibuffer-completion-contents.
8273
8274 2013-05-03 Leo Liu <sdl.web@gmail.com>
8275
8276 * progmodes/octave.el (octave-font-lock-keywords): Do not
8277 dehighlight 'end' in comments or strings.
8278 (octave-completing-read, octave-goto-function-definition):
8279 New helpers.
8280 (octave-help-buffer): New user variable.
8281 (octave-help-file, octave-help-function): New button types.
8282 (octave-help): New command and bind it to C-h ;.
8283 (octave-find-definition): New command and bind it to M-.
8284 (user-error): Alias to error if not defined.
8285
8286 2013-05-02 Leo Liu <sdl.web@gmail.com>
8287
8288 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
8289 for \. (bug#14332)
8290 (octave-font-lock-keywords): Include [ and {.
8291
8292 2013-05-02 Leo Liu <sdl.web@gmail.com>
8293
8294 * progmodes/octave.el (inferior-octave-startup-file): Change default.
8295 (inferior-octave): Remove calling comint-mode and return the buffer.
8296 (inferior-octave-startup): Cosmetic changes.
8297
8298 2013-05-02 Leo Liu <sdl.web@gmail.com>
8299
8300 * progmodes/octave.el (octave-syntax-propertize-function):
8301 Include the case when ' is at line beginning. (Bug#14336)
8302
8303 2013-05-02 Glenn Morris <rgm@gnu.org>
8304
8305 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
8306 * desktop.el (vc-dir-mode): Just autoload it here.
8307
8308 2013-05-02 Alan Mackenzie <acm@muc.de>
8309
8310 Eliminate variable c-standard-font-lock-fontify-region-function.
8311 * progmodes/cc-mode.el
8312 (c-standard-font-lock-fontify-region-function): Remove.
8313 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
8314
8315 2013-05-01 Leo Liu <sdl.web@gmail.com>
8316
8317 * progmodes/octave.el: Compatible with older emacs-24 releases.
8318 (inferior-octave-has-built-in-variables): Remove. Built-in
8319 variables were removed from Octave in 2007.
8320 (inferior-octave-startup): Fix uses.
8321 (comint-line-beginning-position): Remove compatibility code for
8322 emacs 21.
8323
8324 2013-05-01 Juri Linkov <juri@jurta.org>
8325
8326 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
8327
8328 2013-05-01 Juri Linkov <juri@jurta.org>
8329
8330 * comint.el (comint-previous-matching-input): Don't print message
8331 "History item: %d" when `isearch-mode' is active.
8332 (comint-history-isearch-message): Print message "History item: %d"
8333 when `comint-input-ring-index' is not empty and this function is
8334 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
8335
8336 2013-05-01 Leo Liu <sdl.web@gmail.com>
8337
8338 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
8339 definitions. Use completion-at-point to insert keywords.
8340 (octave-abbrev-start): Remove.
8341 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
8342
8343 2013-04-30 Leo Liu <sdl.web@gmail.com>
8344
8345 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
8346 change.
8347
8348 2013-04-30 Alan Mackenzie <acm@muc.de>
8349
8350 Handle arbitrarily long C++ member initialisation lists.
8351 * progmodes/cc-engine.el (c-back-over-member-initializers):
8352 new function.
8353 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
8354 (most) member init lists.
8355
8356 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8357
8358 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
8359 variable.
8360
8361 2013-04-30 Leo Liu <sdl.web@gmail.com>
8362
8363 * progmodes/octave.el (octave-variables): Remove. No builtin
8364 variables any more. All converted to functions.
8365 (octave-font-lock-keywords, octave-completion-at-point-function):
8366 Fix uses.
8367 (octave-font-lock-texinfo-comment): New user variable.
8368 (octave-texinfo-font-lock-keywords): New variable for texinfo
8369 comment block.
8370 (octave-function-comment-block): New face.
8371 (octave-font-lock-texinfo-comment): New function.
8372 (octave-mode): Font lock texinfo comment block.
8373
8374 2013-04-29 Leo Liu <sdl.web@gmail.com>
8375
8376 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
8377 indexing expression.
8378 (octave-continuation-string): Do not use \.
8379 (inferior-octave-complete-impossible): Remove.
8380 (inferior-octave-completion-table)
8381 (inferior-octave-completion-at-point): Remove its uses.
8382 (inferior-octave-startup): completion_matches was introduced to
8383 Octave in 1996 so safe to assume it.
8384 (octave-function-file-comment): Improve to follow how Octave does it.
8385 (octave-update-function-file-comment): Tweak.
8386
8387 2013-04-29 Leo Liu <sdl.web@gmail.com>
8388
8389 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
8390 (inferior-octave-startup): Remove inferior-octave-startup-hook.
8391 (octave-function-file-comment): Fix typo.
8392 (octave-sync-function-file-names): Use read-char-choice.
8393
8394 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
8395
8396 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
8397 to t for the less important warnings.
8398
8399 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
8400
8401 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
8402
8403 2013-04-27 Glenn Morris <rgm@gnu.org>
8404
8405 * vc/log-view.el (log-view-current-entry):
8406 Treat "---" separator lines as part of the following rev. (Bug#14169)
8407
8408 2013-04-27 Juri Linkov <juri@jurta.org>
8409
8410 * subr.el (read-number): Doc fix about using it by interactive
8411 code letter `n'. (Bug#14254)
8412
8413 2013-04-27 Juri Linkov <juri@jurta.org>
8414
8415 * desktop.el (desktop-auto-save-timeout): New option.
8416 (desktop-file-checksum): New variable.
8417 (desktop-save): Add optional arg `auto-save' and don't auto-save
8418 if nothing changed.
8419 (desktop-auto-save-timer): New variable.
8420 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
8421 (after-init-hook): Call `desktop-auto-save-set-timer'.
8422 Suggested by Reuben Thomas <rrt@sc3d.org> in
8423 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
8424
8425 2013-04-27 Leo Liu <sdl.web@gmail.com>
8426
8427 * progmodes/octave.el (octave-function-file-p)
8428 (octave-skip-comment-forward, octave-function-file-comment)
8429 (octave-update-function-file-comment): New functions.
8430 (octave-mode-map): Bind C-c ; to
8431 octave-update-function-file-comment.
8432 (octave-mode-menu): Add octave-update-function-file-comment.
8433 (octave-mode, inferior-octave-mode): Fix doc-string.
8434 (octave-insert-defun): Conform to Octave's coding convention.
8435 (Bug#14285)
8436
8437 * files.el (basic-save-buffer): Don't let errors in
8438 before-save-hook prevent saving buffer.
8439
8440 2013-04-20 Roland Winkler <winkler@gnu.org>
8441
8442 * faces.el (read-face-name): Use completing-read if arg multiple
8443 is nil.
8444
8445 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
8446
8447 * ls-lisp.el (ls-lisp-insert-directory): If no files are
8448 displayed, move point to after the totals line.
8449 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
8450 for the details.
8451
8452 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8453
8454 * emacs-lisp/package.el (package-autoload-ensure-default-file):
8455 Add current dir to the load-path.
8456 (package-generate-autoloads): Don't rely on
8457 autoload-ensure-default-file.
8458
8459 2013-04-26 Reuben Thomas <rrt@sc3d.org>
8460
8461 * textmodes/remember.el (remember-store-in-files): Document that
8462 the file name format is passed to `format-time-string'.
8463
8464 2013-04-26 Leo Liu <sdl.web@gmail.com>
8465
8466 * progmodes/octave.el (octave-sync-function-file-names): New function.
8467 (octave-mode): Use it in before-save-hook.
8468
8469 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8470
8471 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
8472 (bug#14274).
8473
8474 * progmodes/octave.el (octave-smie-forward-token): Properly skip
8475 \n and comment, even if it's not an implicit ; (bug#14218).
8476
8477 2013-04-26 Glenn Morris <rgm@gnu.org>
8478
8479 * subr.el (read-number): Once more use `read' rather than
8480 `string-to-number', to trap non-numeric input. (Bug#14254)
8481
8482 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
8483
8484 * emacs-lisp/syntax.el (syntax-propertize-multiline):
8485 Use `syntax-multiline' text property consistently instead of
8486 `font-lock-multiline'. (Bug#14237)
8487
8488 2013-04-26 Glenn Morris <rgm@gnu.org>
8489
8490 * emacs-lisp/shadow.el (list-load-path-shadows):
8491 No longer necessary to check for duplicate simple.el, since
8492 2012-07-07 change to init_lread to not include installation lisp
8493 directories in load-path when running uninstalled. (Bug#14270)
8494
8495 2013-04-26 Leo Liu <sdl.web@gmail.com>
8496
8497 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
8498 (octave-mode, inferior-octave-mode): Use setq-local.
8499 (octave-not-in-string-or-comment-p): Rename to
8500 octave-in-string-or-comment-p.
8501 (octave-in-comment-p, octave-in-string-p)
8502 (octave-in-string-or-comment-p): Replace defsubst with defun.
8503
8504 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
8505
8506 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
8507
8508 2013-04-25 Bastien Guerry <bzg@gnu.org>
8509
8510 * textmodes/remember.el (remember-data-directory)
8511 (remember-directory-file-name-format): Fix custom types.
8512
8513 2013-04-25 Leo Liu <sdl.web@gmail.com>
8514
8515 * progmodes/octave.el (octave-completion-at-point-function):
8516 Make use of inferior octave process.
8517 (octave-initialize-completions): Remove.
8518 (inferior-octave-completion-table): New function.
8519 (inferior-octave-completion-at-point): Use it.
8520 (octave-completion-alist): Remove.
8521
8522 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8523
8524 * progmodes/opascal.el: Use font-lock and syntax-propertize.
8525 (opascal-mode-syntax-table): New var.
8526 (opascal-literal-kind, opascal-is-literal-end)
8527 (opascal-literal-token-at): Rewrite.
8528 (opascal--literal-start-re, opascal-font-lock-keywords)
8529 (opascal--syntax-propertize): New constants.
8530 (opascal-font-lock-defaults): Adjust.
8531 (opascal-mode): Use them. Set comment-<foo> variables as well.
8532 (delphi-comment-face, opascal-comment-face, delphi-string-face)
8533 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
8534 (delphi-other-face, opascal-other-face): Remove face variables.
8535 (opascal-save-state): Remove macro.
8536 (opascal-fontifying-progress-step): Remove constant.
8537 (opascal--ignore-changes): Remove var.
8538 (opascal-set-token-property, opascal-parse-next-literal)
8539 (opascal-is-stable-literal, opascal-complete-literal)
8540 (opascal-is-literal-start, opascal-face-of)
8541 (opascal-parse-region, opascal-parse-region-until-stable)
8542 (opascal-fontify-region, opascal-after-change)
8543 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
8544 (opascal-debug-parse-region, opascal-debug-parse-window)
8545 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
8546 (opascal-debug-fontify-buffer): Remove.
8547 (opascal-debug-mode-map): Adjust accordingly.
8548
8549 2013-04-25 Leo Liu <sdl.web@gmail.com>
8550
8551 Merge octave-mod.el and octave-inf.el into octave.el with some
8552 cleanups.
8553 * progmodes/octave.el: New file renamed from octave-mod.el.
8554 * progmodes/octave-inf.el: Merged into octave.el.
8555 * progmodes/octave-mod.el: Renamed to octave.el.
8556
8557 2013-04-25 Tassilo Horn <tsdh@gnu.org>
8558
8559 * textmodes/reftex-vars.el
8560 (reftex-label-ignored-macros-and-environments): New defcustom.
8561
8562 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
8563
8564 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8565
8566 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
8567 (smie-indent-keyword): Improve the check to ensure that the next
8568 comment is really on the same line.
8569 (smie-indent-comment): Don't align with a subsequent closer (or eob).
8570
8571 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
8572 semi-colons if the line is not otherwise empty (bug#14218).
8573
8574 2013-04-25 Glenn Morris <rgm@gnu.org>
8575
8576 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
8577
8578 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8579
8580 * progmodes/opascal.el (opascal-set-token-property): Rename from
8581 opascal-set-text-properties and only set `token' (bug#14134).
8582 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
8583 (opascal-literal-text-properties): Remove.
8584 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
8585 Adjust callers.
8586
8587 2013-04-24 Reuben Thomas <rrt@sc3d.org>
8588
8589 * textmodes/remember.el (remember-handler-functions): Add an
8590 option for a new handler `remember-store-in-files'.
8591 (remember-data-directory, remember-directory-file-name-format):
8592 New options.
8593 (remember-store-in-files): New function to store remember notes
8594 as separate files within a directory.
8595
8596 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
8597
8598 * progmodes/compile.el (compilation-next-error-function):
8599 Pass "formats" to compilation-find-file (bug#11777).
8600
8601 2013-04-24 Glenn Morris <rgm@gnu.org>
8602
8603 * vc/vc-bzr.el (vc-bzr-print-log):
8604 * vc/vc-hg.el (vc-hg-print-log):
8605 * vc/vc-svn.el (vc-svn-print-log):
8606 Fix START-REVISION with LIMIT != 1. (Bug#14168)
8607
8608 * vc/vc-bzr.el (vc-bzr-print-log):
8609 * vc/vc-cvs.el (vc-cvs-print-log):
8610 * vc/vc-git.el (vc-git-print-log):
8611 * vc/vc-hg.el (vc-hg-print-log):
8612 * vc/vc-mtn.el (vc-mtn-print-log):
8613 * vc/vc-rcs.el (vc-rcs-print-log):
8614 * vc/vc-sccs.el (vc-sccs-print-log):
8615 * vc/vc-svn.el (vc-svn-print-log):
8616 * vc/vc.el (vc-print-log-internal): Doc fixes.
8617
8618 2013-04-23 Glenn Morris <rgm@gnu.org>
8619
8620 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
8621 Remove venerable code attempting to avoid substitute-command-keys.
8622
8623 2013-04-23 Tassilo Horn <tsdh@gnu.org>
8624
8625 * textmodes/reftex-vars.el (reftex-label-regexps):
8626 Call `reftex-compile-variables' after changes to this variable.
8627
8628 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8629
8630 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
8631 Use lexical-binding.
8632 (jit-lock-force-redisplay): Use markers, check buffer's continued
8633 existence and beware narrowed buffers.
8634 (jit-lock-fontify-now): Adjust call accordingly.
8635
8636 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8637
8638 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
8639 to avoid misleading the user.
8640
8641 2013-04-22 Leo Liu <sdl.web@gmail.com>
8642
8643 * info-look.el: Prefer latex2e.info. (Bug#14240)
8644
8645 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
8646
8647 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
8648
8649 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
8650 * net/tramp.el (tramp-call-process): ... here.
8651 (tramp-set-completion-function, tramp-parse-putty):
8652 * net/tramp-adb.el (tramp-adb-execute-adb-command):
8653 * net/tramp-gvfs.el (tramp-gvfs-send-command):
8654 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8655 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
8656 (tramp-call-local-coding-command): Use `tramp-call-process'
8657 instead of `tramp-compat-call-process'.
8658
8659 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
8660 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
8661 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
8662 (tramp-find-inline-compress): Improve traces.
8663 (tramp-maybe-send-script): Check for Perl binary.
8664 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
8665
8666 2013-04-22 Daiki Ueno <ueno@gnu.org>
8667
8668 * epg.el (epg-context-pinentry-mode): New function.
8669 (epg-context-set-pinentry-mode): New function.
8670 (epg--start): Pass --pinentry-mode option to gpg command.
8671
8672 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
8673
8674 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
8675 `comint-dynamic-complete' is obsolete since 24.1, replaced by
8676 `completion-at-point'. (Bug#13774)
8677
8678 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
8679 default key binding for `describe-distribution' has been moved to
8680 `C-h C-o'. (Bug#13970)
8681
8682 2013-04-21 Glenn Morris <rgm@gnu.org>
8683
8684 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
8685 Add doc strings.
8686 (vc-print-log): Clarify interactive prompt.
8687
8688 2013-04-20 Glenn Morris <rgm@gnu.org>
8689
8690 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8691 No longer include timestamp etc information.
8692
8693 2013-04-20 Roland Winkler <winkler@gnu.org>
8694
8695 * faces.el (read-face-name): Bug fix, return just one face if arg
8696 multiple is nil. (Bug#14209)
8697
8698 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8699
8700 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
8701 (remove-function): Autoload.
8702
8703 * comint.el (comint-redirect-original-filter-function): Remove.
8704 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
8705 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
8706 (vc-cvs-annotate-command):
8707 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
8708 * progmodes/prolog.el (prolog-consult-compile):
8709 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
8710 Use add/remove-function instead.
8711 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
8712 (gud-tooltip-process-output, gud-tooltip-tips):
8713 Use add/remove-function instead.
8714 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
8715 (scheme-interaction-mode, exit-scheme-interaction-mode):
8716 Use add/remove-function instead.
8717
8718 * vc/vc-dispatcher.el: Use lexical-binding.
8719 (vc--process-sentinel): Rename from vc-process-sentinel.
8720 Change last arg to be the code to run. Don't use vc-previous-sentinel
8721 and vc-sentinel-commands any more.
8722 (vc-exec-after): Allow code to be a function. Use add/remove-function.
8723 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
8724
8725 2013-04-19 Masatake YAMATO <yamato@redhat.com>
8726
8727 * progmodes/sh-script.el (sh-imenu-generic-expression):
8728 Handle function names with a single character. (Bug#14111)
8729
8730 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
8731
8732 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
8733 for subroutines defined in an eval (bug#14182).
8734
8735 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8736
8737 * bookmark.el (bookmark-completing-read): Improve handling of empty
8738 string (bug#14176).
8739
8740 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8741
8742 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8743
8744 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8745
8746 New faster Imenu implementation (bug#14058).
8747 * progmodes/python.el:
8748 (python-imenu-prev-index-position):
8749 (python-imenu-format-item-label-function)
8750 (python-imenu-format-parent-item-label-function)
8751 (python-imenu-format-parent-item-jump-label-function):
8752 New vars.
8753 (python-imenu-format-item-label)
8754 (python-imenu-format-parent-item-label)
8755 (python-imenu-format-parent-item-jump-label)
8756 (python-imenu--put-parent, python-imenu--build-tree)
8757 (python-imenu-create-index, python-imenu-create-flat-index)
8758 (python-util-popn): New functions.
8759 (python-mode): Set imenu-create-index-function to
8760 python-imenu-create-index.
8761
8762 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8763
8764 * winner.el (winner-active-region): Use region-active-p, activate-mark
8765 and deactivate-mark (bug#14225).
8766
8767 * simple.el (deactivate-mark): Don't inline it.
8768
8769 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
8770
8771 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8772
8773 2013-04-18 Tassilo Horn <tsdh@gnu.org>
8774
8775 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8776 file extensions from the archive-mode entry in order to prefer
8777 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8778
8779 2013-04-18 Leo Liu <sdl.web@gmail.com>
8780
8781 * bindings.el (help-event-list): Add ?\?.
8782
8783 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8784
8785 * subr.el (with-wrapper-hook): Declare obsolete.
8786 * simple.el (filter-buffer-substring-function): New hook.
8787 (filter-buffer-substring): Use it.
8788 (filter-buffer-substring-functions): Mark obsolete.
8789 * minibuffer.el (completion-in-region-function): New hook.
8790 (completion-in-region): Use it.
8791 (completion-in-region-functions): Mark obsolete.
8792 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8793 * abbrev.el (abbrev-expand-function): New hook.
8794 (expand-abbrev): Use it.
8795 (abbrev-expand-functions): Mark obsolete.
8796 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8797 and :filter-return.
8798
8799 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8800
8801 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8802 and do not care about match data.
8803
8804 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8805
8806 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8807 completion tables when completing error conditions and
8808 `declare' arguments.
8809 (lisp-complete-symbol, field-complete): Mark as obsolete.
8810 (check-parens): Unmatched parens are user errors.
8811 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8812
8813 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
8814
8815 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8816 command changed buffer (ie. `flyspell-pre-buffer' is not current
8817 buffer), which prevents making decisions based on invalid value of
8818 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8819 cause an error when `flyspell-pre-point' was nil after switching
8820 buffers.
8821 (flyspell-post-command-hook): No longer needs to change buffers when
8822 checking pre-word. While at it remove unnecessary progn.
8823
8824 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8825
8826 * textmodes/ispell.el (ispell-add-per-file-word-list):
8827 Fix `flyspell-correct-word-before-point' error when accepting
8828 words and `coment-padding' is an integer by using
8829 `comment-normalize-vars' (Bug #14214).
8830
8831 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8832
8833 New defun movement commands.
8834 * progmodes/python.el (python-nav--syntactically)
8835 (python-nav--forward-defun, python-nav-backward-defun)
8836 (python-nav-forward-defun): New functions.
8837
8838 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8839
8840 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8841 (python-syntax-context): Use named compiler-macro for backwards
8842 compatibility with Emacs 24.x.
8843
8844 2013-04-17 Leo Liu <sdl.web@gmail.com>
8845
8846 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8847 octave-hide-process-buffer.
8848
8849 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8850
8851 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8852 (bug#14216).
8853
8854 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8855
8856 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8857 Fix adjustment of offset when receiving incomplete responses from GDB
8858 (bug#14129).
8859
8860 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8861
8862 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8863 python-mode-abbrev-table.
8864 (python-skeleton-define): Adjust accordingly.
8865 (python-mode-abbrev-table): New table that inherits from it so that
8866 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8867
8868 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8869 (abbrev-symbol): Use it.
8870 (abbrev--before-point): Use it since we already handle inheritance.
8871
8872 2013-04-16 Leo Liu <sdl.web@gmail.com>
8873
8874 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8875 binding to info-lookup-symbol.
8876
8877 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
8878
8879 * minibuffer.el (completion--twq-all):
8880 * term/ns-win.el (ns-initialize-window-system):
8881 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8882
8883 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8884
8885 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8886 global bindings.
8887
8888 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8889
8890 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8891
8892 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8893 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8894 to nil.
8895 (ruby-end-of-defun): Remove the unused arg, change the docstring
8896 to reflect that this function is only used as the value of
8897 `end-of-defun-function'.
8898 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8899 to reflect an earlier change that beginning/end-of-defun functions
8900 jump between methods in a class definition, as well as top-level
8901 functions.
8902
8903 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8904
8905 * minibuffer.el (minibuffer-complete): Don't just scroll
8906 a *Completions* that's been iconified.
8907 (minibuffer-force-complete): Make sure repetitions do cycle when going
8908 through completion-in-region -> minibuffer-complete.
8909
8910 2013-04-15 Alan Mackenzie <acm@muc.de>
8911
8912 Correct the placement of c-cpp-delimiters when there're #s not at
8913 col 0.
8914
8915 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8916 place a submatch around the #.
8917 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8918 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
8919 on the #, not BOL.
8920
8921 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8922
8923 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8924 (advice--member-p): New arg `name'.
8925 (advice--add-function, advice-member-p): Use it (bug#14202).
8926
8927 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8928
8929 Reformulate java imenu-generic-expression.
8930 The old expression contained ill formed regexps.
8931
8932 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8933 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8934 (cc-imenu-java-method-arg-regexp): New defconsts.
8935 (cc-imenu-java-build-type-args-regex): New defun.
8936 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
8937 handling of spaces in the regexp.
8938
8939 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8940
8941 * textmodes/ispell.el (ispell-command-loop): Remove
8942 flyspell highlight of a word when ispell accepts it (bug #14178).
8943
8944 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
8945
8946 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8947 uses code from the previous `ange-ftp-run-real-handler'.
8948 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8949 only in case that function exist. This is needed for proper
8950 unloading of Tramp.
8951
8952 2013-04-15 Tassilo Horn <tsdh@gnu.org>
8953
8954 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8955
8956 * textmodes/reftex.el (reftex-compile-variables): Use it.
8957
8958 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8959
8960 * files.el (normal-mode): Only use default major-mode if no other mode
8961 was specified.
8962
8963 * emacs-lisp/trace.el (trace-values): New function.
8964
8965 * files.el: Allow : in local variables (bug#14089).
8966 (hack-local-variable-regexp): New var.
8967 (hack-local-variables-prop-line, hack-local-variables): Use it.
8968
8969 2013-04-13 Roland Winkler <winkler@gnu.org>
8970
8971 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8972 data before it gets modified by bibtex-beginning-of-entry.
8973
8974 2013-04-13 Roland Winkler <winkler@gnu.org>
8975
8976 * textmodes/bibtex.el (bibtex-url): Doc fix.
8977
8978 2013-04-13 Roland Winkler <winkler@gnu.org>
8979
8980 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8981 does not visit a BibTeX file, exclude it from the list of buffers
8982 returned by bibtex-initialize.
8983
8984 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
8985
8986 * window.el (split-window): Remove interactive form, since as a
8987 command this function is a special case of split-window-below.
8988 Correct doc string.
8989
8990 2013-04-12 Roland Winkler <winkler@gnu.org>
8991
8992 * faces.el (read-face-name): Do not override value of arg default.
8993 Allow single faces and strings as default values. Remove those
8994 elements from return value that are not faces.
8995 (describe-face): Simplify.
8996 (face-at-point): New optional args thing and multiple so that this
8997 function can provide the same functionality previously provided by
8998 read-face-name.
8999 (make-face-bold, make-face-unbold, make-face-italic)
9000 (make-face-unitalic, make-face-bold-italic, invert-face)
9001 (modify-face, read-face-and-attribute): Use face-at-point.
9002
9003 * cus-edit.el (customize-face, customize-face-other-window)
9004 * cus-theme.el (custom-theme-add-face)
9005 * face-remap.el (buffer-face-set)
9006 * facemenu.el (facemenu-set-face): Use face-at-point.
9007
9008 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
9009
9010 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
9011
9012 2013-04-10 Tassilo Horn <tsdh@gnu.org>
9013
9014 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
9015 off leading { and trailing } from field values.
9016
9017 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9018
9019 * emacs-lisp/timer.el (timer--check): New function.
9020 (timer--time, timer-set-function, timer-event-handler): Use it.
9021 (timer-set-idle-time): Simplify.
9022 (timer--activate): CSE.
9023 (timer-event-handler): Give more info in error message.
9024 (internal-timer-start-idle): New function, moved from C.
9025
9026 * mpc.el (mpc-proc): Add `restart' argument.
9027 (mpc-proc-cmd): Use it.
9028 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
9029 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
9030 less often.
9031
9032 2013-04-10 Masatake YAMATO <yamato@redhat.com>
9033
9034 * progmodes/sh-script.el: Implement `sh-mode' own
9035 `add-log-current-defun-function' (bug#14112).
9036 (sh-current-defun-name): New function.
9037 (sh-mode): Use the function.
9038
9039 2013-04-09 Bastien Guerry <bzg@gnu.org>
9040
9041 * simple.el (choose-completion-string): Fix docstring (bug#14163).
9042
9043 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
9044
9045 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
9046
9047 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
9048 timer (bug#14156).
9049
9050 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
9051
9052 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
9053 declaration.
9054
9055 2013-04-07 Leo Liu <sdl.web@gmail.com>
9056
9057 * pcmpl-x.el: New file.
9058
9059 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
9060
9061 Do not set x-display-name until X connection is established.
9062 This is needed to prevent from weird situation described at
9063 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
9064 * frame.el (make-frame): Set x-display-name after call to
9065 window system initialization function, not before.
9066 * term/x-win.el (x-initialize-window-system): Add optional
9067 display argument and use it.
9068 * term/w32-win.el (w32-initialize-window-system):
9069 * term/ns-win.el (ns-initialize-window-system):
9070 * term/pc-win.el (msdos-initialize-window-system):
9071 Add compatible optional display argument.
9072
9073 2013-04-06 Eli Zaretskii <eliz@gnu.org>
9074
9075 * files.el (normal-backup-enable-predicate): On MS-Windows and
9076 MS-DOS compare truenames of temporary-file-directory and of the
9077 file, so that 8+3 aliases (usually found in $TEMP on Windows)
9078 don't fail comparison by compare-strings. Also, compare file
9079 names case-insensitively on MS-Windows and MS-DOS.
9080
9081 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
9082
9083 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
9084 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
9085
9086 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
9087
9088 * whitespace.el (whitespace-color-on, whitespace-color-off):
9089 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
9090
9091 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
9092
9093 * ispell.el (ispell-set-spellchecker-params):
9094 Really set `ispell-args' for all equivs.
9095
9096 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
9097
9098 * ido.el (ido-completions): Use extra elements of ido-decorations
9099 (bug#14143).
9100 (ido-decorations): Update docstring.
9101
9102 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
9103
9104 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
9105 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
9106 nil during initialization, in order not to miss changes since the
9107 file was opened. (Bug#14140)
9108
9109 2013-04-05 Leo Liu <sdl.web@gmail.com>
9110
9111 * kmacro.el (kmacro-call-macro): Fix bug#14135.
9112
9113 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
9114
9115 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
9116
9117 2013-04-04 Glenn Morris <rgm@gnu.org>
9118
9119 * electric.el (electric-pair-inhibit-predicate): Add :version.
9120
9121 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9122
9123 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
9124 when a package is required several times (bug#14082).
9125
9126 2013-04-04 Roland Winkler <winkler@gnu.org>
9127
9128 * faces.el (read-face-name): Behave as promised by the docstring.
9129 Assume that arg default is a list of faces.
9130 (describe-face): Call read-face-name with list of default faces.
9131
9132 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9133
9134 * bookmark.el: Fix deletion of bookmarks (bug#13972).
9135 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
9136 (bookmark-bmenu-execute-deletions): Only skip first line if it's
9137 the header.
9138 (bookmark-exit-hook-internal): Save even if list is empty.
9139
9140 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
9141
9142 * emacs-lisp/package.el (package-pinned-packages): New var.
9143 (package--add-to-archive-contents): Obey it (bug#14118).
9144
9145 2013-04-03 Alan Mackenzie <acm@muc.de>
9146
9147 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
9148 Also adapt to the new values of element 7 of a parse state.
9149
9150 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
9151 parameter `not-in-delimiter'. Handle being inside comment opener.
9152 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
9153 character in case we're typing a '*' after a '/'.
9154 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
9155 instead by passing the parameter to c-state-pp-to-literal.
9156
9157 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
9158 for elt. 7 of a parse state.
9159
9160 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
9161
9162 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
9163 * international/latin1-disp.el, international/mule-util.el:
9164 * language/cyril-util.el, language/european.el, language/ind-util.el:
9165 * language/lao-util.el, language/thai.el, language/tibet-util.el:
9166 * language/tibetan.el, language/viet-util.el:
9167 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
9168
9169 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
9170
9171 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
9172 (electric-pair-post-self-insert-function): Use it.
9173 (electric-pair-default-inhibit): New function, extracted from
9174 electric-pair-post-self-insert-function.
9175
9176 2013-03-31 Roland Winkler <winkler@gnu.org>
9177
9178 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
9179
9180 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9181
9182 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
9183
9184 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
9185
9186 Un-indent after "pass" and "return" statements (Bug#13888)
9187 * progmodes/python.el (python-indent-block-enders): New var.
9188 (python-indent-calculate-indentation): Use it.
9189
9190 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
9191
9192 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
9193 defun. Defining it as defalias could introduce too eager
9194 byte-compiler optimization. (Bug#14030)
9195
9196 2013-03-30 Chong Yidong <cyd@gnu.org>
9197
9198 * iswitchb.el (iswitchb-read-buffer): Fix typo.
9199
9200 2013-03-30 Leo Liu <sdl.web@gmail.com>
9201
9202 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
9203 (kmacro-execute-from-register): Pass the keyboard macro to
9204 kmacro-call-macro or repeating won't work correctly.
9205
9206 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
9207
9208 * progmodes/subword.el: Back to using `forward-symbol'.
9209
9210 * subr.el (forward-whitespace, forward-symbol)
9211 (forward-same-syntax): Move from thingatpt.el.
9212
9213 2013-03-29 Leo Liu <sdl.web@gmail.com>
9214
9215 * kmacro.el (kmacro-to-register): New command.
9216 (kmacro-execute-from-register): New function.
9217 (kmacro-keymap): Bind to 'x'. (Bug#14071)
9218
9219 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
9220
9221 * mpc.el: Use defvar-local and setq-local.
9222 (mpc--proc-connect): Connection failures are not bugs.
9223 (mpc-mode-map): `follow-link' only applies to the buffer's content.
9224 (mpc-volume-map): Bind to the up-events.
9225
9226 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
9227
9228 * progmodes/subword.el (superword-mode): Use `forward-sexp'
9229 instead of `forward-symbol'.
9230
9231 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9232
9233 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
9234 (edebug--recursive-edit): Use it.
9235 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
9236 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
9237
9238 2013-03-28 Leo Liu <sdl.web@gmail.com>
9239
9240 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
9241
9242 2013-03-27 Eli Zaretskii <eliz@gnu.org>
9243
9244 * facemenu.el (list-colors-callback): New defvar.
9245 (list-colors-redisplay): New function.
9246 (list-colors-display): Install list-colors-redisplay as the
9247 revert-buffer-function. (Bug#14063)
9248
9249 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9250
9251 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
9252 and suffixes don't overlap (bug#14061).
9253
9254 * case-table.el: Use lexical-binding.
9255 (case-table-get-table): New function.
9256 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
9257
9258 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
9259
9260 * progmodes/subword.el: Add `superword-mode' to do word motion
9261 over symbol_words (parallels and leverages `subword-mode' which
9262 does word motion inside MixedCaseWords).
9263
9264 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
9265
9266 * eshell/em-unix.el: Move su and sudo to...
9267 * eshell/em-tramp.el: ...Eshell tramp module.
9268
9269 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9270
9271 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
9272 Change return value to be a sexp. Delay `get-buffer' to after
9273 restoring the desktop (bug#13951).
9274
9275 2013-03-26 Leo Liu <sdl.web@gmail.com>
9276
9277 * register.el: Move semantic tag handling back to
9278 cedet/semantic/senator.el. (Bug#14052)
9279
9280 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9281
9282 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
9283 into the prompt either (bug#13963).
9284
9285 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
9286
9287 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
9288 part of "(error-foo)".
9289
9290 2013-03-24 Juri Linkov <juri@jurta.org>
9291
9292 * replace.el (list-matching-lines-prefix-face): New defcustom.
9293 (occur-1): Pass `list-matching-lines-prefix-face' to the function
9294 `occur-engine' if `face-differs-from-default-p' returns t.
9295 (occur-engine): Add `,' inside backquote construct to evaluate
9296 `prefix-face'. Propertize the prefix with the `prefix-face' face.
9297 Pass `prefix-face' to the functions `occur-context-lines' and
9298 `occur-engine-add-prefix'.
9299 (occur-engine-add-prefix, occur-context-lines): Add optional arg
9300 `prefix-face' and propertize the prefix with `prefix-face'.
9301 (Bug#14017)
9302
9303 2013-03-24 Leo Liu <sdl.web@gmail.com>
9304
9305 * nxml/rng-valid.el (rng-validate-while-idle)
9306 (rng-validate-quick-while-idle): Guard against deleted buffer.
9307 (Bug#13999)
9308
9309 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
9310 is the last entry in kill-buffer-hook.
9311
9312 * files.el (kill-buffer-hook): Doc fix.
9313
9314 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
9315
9316 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
9317 Make it safe-local.
9318
9319 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
9320
9321 2013-03-23 Leo Liu <sdl.web@gmail.com>
9322
9323 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
9324 Remove.
9325
9326 * nxml/rng-valid.el (rng-validate-mode)
9327 (rng-after-change-function, rng-do-some-validation):
9328 * nxml/rng-maint.el (rng-validate-buffer):
9329 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
9330 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
9331 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
9332 (nxml-extend-after-change-region): Use with-silent-modifications.
9333
9334 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
9335 timer-idle-list.
9336
9337 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
9338 (rng-next-error-1, rng-previous-error-1): Do not let-bind
9339 timer-idle-list. (Bug#13999)
9340
9341 2013-03-23 Juri Linkov <juri@jurta.org>
9342
9343 * info.el (info-index-match): New face.
9344 (Info-index, Info-apropos-matches): Add a nested subgroup to the
9345 main pattern and add text properties with the new face to matches
9346 in index entries relative to the beginning of the index entry.
9347 (Bug#14015)
9348
9349 2013-03-21 Eric Ludlam <zappo@gnu.org>
9350
9351 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
9352 Inhibit read only while inserting objects.
9353
9354 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
9355
9356 * progmodes/cfengine.el: Update docs to mention
9357 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
9358 symbol motion. Remove "_" from the word syntax.
9359
9360 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
9361
9362 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
9363 syntax for both `cfengine2-mode' and `cfengine3-mode'.
9364
9365 2013-03-20 Juri Linkov <juri@jurta.org>
9366
9367 * info.el (Info-next-reference-or-link)
9368 (Info-prev-reference-or-link): New functions.
9369 (Info-next-reference, Info-prev-reference): Use them.
9370 (Info-try-follow-nearest-node): Handle footnote navigation.
9371 (Info-fontify-node): Fontify footnotes. (Bug#13989)
9372
9373 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9374
9375 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
9376 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
9377
9378 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
9379
9380 Suppress unnecessary non-ASCII chatter during build process.
9381 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
9382 (batch-skkdic-convert): Suppress most of the chatter.
9383 It's not needed so much now that machines are faster,
9384 and its non-ASCII component was confusing; see Dmitry Gutov in
9385 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
9386
9387 2013-03-20 Leo Liu <sdl.web@gmail.com>
9388
9389 * ido.el (ido-chop): Fix bug#10994.
9390
9391 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9392
9393 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
9394 Remove vars.
9395 (whitespace-color-on, whitespace-color-off):
9396 Use `font-lock-fontify-buffer' (Bug#13817).
9397
9398 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
9399
9400 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
9401 remapping in mode-line.
9402 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
9403
9404 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9405
9406 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
9407 value for `whitespace-line' face (Bug#13875).
9408 (whitespace-font-lock-keywords): Change description.
9409 (whitespace-color-on): Don't save `font-lock-keywords' value, save
9410 the constructed keywords instead.
9411 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
9412
9413 2013-03-19 Leo Liu <sdl.web@gmail.com>
9414
9415 * progmodes/compile.el (compilation-display-error): New command.
9416 (compilation-mode-map, compilation-minor-mode-map): Bind it to
9417 C-o. (Bug#13992)
9418
9419 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9420
9421 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
9422
9423 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
9424
9425 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
9426
9427 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
9428
9429 * net/tramp-compat.el (tramp-compat-user-error): New defun.
9430
9431 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9432 * net/tramp-gvfs.el (top):
9433 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
9434 (tramp-handle-shell-command): Use it.
9435 (tramp-dissect-file-name): Raise an error when hostname is a
9436 method name, and neither method nor user is specified.
9437
9438 * net/trampver.el: Update release number.
9439
9440 2013-03-18 Leo Liu <sdl.web@gmail.com>
9441
9442 Make sure eldoc can be turned off properly.
9443 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
9444 eldoc-mode.
9445 (eldoc-display-message-p): Revert last change.
9446 (eldoc-display-message-no-interference-p)
9447 (eldoc-print-current-symbol-info): Tweak.
9448
9449 2013-03-18 Tassilo Horn <tsdh@gnu.org>
9450
9451 * doc-view.el (doc-view-new-window-function): Check the new window
9452 overlay's display property instead the char property of the
9453 buffer's first char. Use `with-selected-window' instead of
9454 `save-window-excursion' with `select-window'.
9455 (doc-view-document->bitmap): Check the current doc-view overlay's
9456 display property instead the char property of the buffer's first char.
9457
9458 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9459
9460 Automate the build of ja-dic.el (Bug#13984).
9461 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
9462 from the input, rather than assume that it's been done for us by the
9463 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
9464 the current date into a ja-dic.el comment, as that complicates
9465 regression testing.
9466
9467 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9468
9469 * whitespace.el: Fix double evaluation.
9470 (whitespace-space, whitespace-hspace, whitespace-tab)
9471 (whitespace-newline, whitespace-trailing, whitespace-line)
9472 (whitespace-space-before-tab, whitespace-indentation)
9473 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
9474 obsolete defvars.
9475 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
9476 (whitespace-color-on): Use a single font-lock-add-keywords call.
9477 Fix double-evaluation of face variables.
9478
9479 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
9480
9481 * net/tramp-adb.el (tramp-adb-parse-device-names):
9482 Use `start-process' instead of `call-process'. Otherwise, the
9483 function might be blocked under MS Windows. (Bug#13299)
9484
9485 2013-03-17 Leo Liu <sdl.web@gmail.com>
9486
9487 Extend eldoc to display info in the mode-line. (Bug#13978)
9488 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
9489 (eldoc-mode-line-string): New variable.
9490 (eldoc-minibuffer-message): New function.
9491 (eldoc-message-function): New variable.
9492 (eldoc-message): Use it.
9493 (eldoc-display-message-p)
9494 (eldoc-display-message-no-interference-p):
9495 Support eldoc-post-insert-mode.
9496
9497 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
9498 (eval-expression): Run it.
9499
9500 2013-03-17 Roland Winkler <winkler@gnu.org>
9501
9502 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
9503 strings in the list of return values.
9504
9505 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9506
9507 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
9508 radix before checking for HMS forms.
9509
9510 2013-03-16 Leo Liu <sdl.web@gmail.com>
9511
9512 * progmodes/scheme.el: Add indentation and font-locking for λ.
9513 (Bug#13975)
9514
9515 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
9516
9517 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
9518 token before point (bug#13942).
9519
9520 2013-03-16 Leo Liu <sdl.web@gmail.com>
9521
9522 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
9523
9524 2013-03-16 Eli Zaretskii <eliz@gnu.org>
9525
9526 * startup.el (command-line-normalize-file-name): Fix handling of
9527 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
9528 <xfq.free@gmail.com> in
9529 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
9530
9531 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
9532
9533 Sync with Tramp 2.2.7.
9534
9535 * net/trampver.el: Update release number.
9536
9537 2013-03-14 Tassilo Horn <tsdh@gnu.org>
9538
9539 * doc-view.el: Fix bug#13887.
9540 (doc-view-insert-image): Don't modify overlay associated to
9541 non-live windows, and implement horizontal centering of image in
9542 case it's smaller than the window.
9543 (doc-view-new-window-function): Force redisplay of new windows on
9544 doc-view buffers.
9545
9546 2013-03-13 Karl Fogel <kfogel@red-bean.com>
9547
9548 * saveplace.el (save-place-alist-to-file): Don't sort
9549 `save-place-alist', just pretty-print it (bug#13882).
9550
9551 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
9552
9553 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9554 Check whether `default-file-name-coding-system' is bound.
9555 It isn't in XEmacs.
9556
9557 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
9558
9559 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
9560 backquotes for `obsolete' (bug#13929).
9561
9562 * international/mule.el (find-auto-coding): Include file name in
9563 obsolescence warning (bug#13922).
9564
9565 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
9566
9567 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
9568 for CFEngine 3-specific indentation.
9569 (cfengine3-indent-line): Use it. Fix up category regex.
9570 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
9571
9572 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9573
9574 * type-break.el (type-break-file-name):
9575 * textmodes/remember.el (remember-data-file):
9576 * strokes.el (strokes-file):
9577 * shadowfile.el (shadow-initialize):
9578 * saveplace.el (save-place-file):
9579 * ps-bdf.el (bdf-cache-file):
9580 * progmodes/idlwave.el (idlwave-config-directory):
9581 * net/quickurl.el (quickurl-url-file):
9582 * international/kkc.el (kkc-init-file-name):
9583 * ido.el (ido-save-directory-list-file):
9584 * emulation/viper.el (viper-custom-file-name):
9585 * emulation/vip.el (vip-startup-file):
9586 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9587 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
9588
9589 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
9590
9591 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
9592 * language/thai-word.el: Switch to UTF-8.
9593
9594 See ChangeLog.16 for earlier changes.
9595
9596 ;; Local Variables:
9597 ;; coding: utf-8
9598 ;; End:
9599
9600 Copyright (C) 2011-2013 Free Software Foundation, Inc.
9601
9602 This file is part of GNU Emacs.
9603
9604 GNU Emacs is free software: you can redistribute it and/or modify
9605 it under the terms of the GNU General Public License as published by
9606 the Free Software Foundation, either version 3 of the License, or
9607 (at your option) any later version.
9608
9609 GNU Emacs is distributed in the hope that it will be useful,
9610 but WITHOUT ANY WARRANTY; without even the implied warranty of
9611 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9612 GNU General Public License for more details.
9613
9614 You should have received a copy of the GNU General Public License
9615 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.