* admin/unidata/unidata-gen.el (unidata-gen-files): Update Unicode copyright
[bpt/emacs.git] / lisp / ChangeLog
1 2013-11-05 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
2
3 * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
4 malformed bindings form (bug#15814).
5
6 2013-11-07 Dmitry Gutov <dgutov@yandex.ru>
7
8 * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
9 "." compared to " @ ". This incidentally fixes some indentation
10 examples with "do".
11 (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
12 (ruby-smie-grammar): New tokens: "and" and "or".
13 (ruby-smie--args-separator-p): Fix the check for tokens at POS.
14 Exclude "and" and "or". Remove "do" in order to work around token
15 priorities.
16 (ruby-smie-rules): Add all infix tokens. Handle the case of
17 beginning-of-buffer.
18
19 2013-11-06 Glenn Morris <rgm@gnu.org>
20
21 * Makefile.in (setwins_almost, setwins_for_subdirs):
22 Avoid accidental matches.
23
24 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
25
26 * menu-bar.el (popup-menu): Use key-binding.
27
28 2013-11-06 Eli Zaretskii <eliz@gnu.org>
29
30 * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
31 menus, support also the menus produced by minor modes.
32 (Bug#15817)
33
34 2013-11-06 Leo Liu <sdl.web@gmail.com>
35
36 * thingatpt.el (thing-at-point-looking-at): Add optional arg
37 DISTANCE to bound the search. All uses changed. (Bug#15808)
38
39 2013-11-06 Glenn Morris <rgm@gnu.org>
40
41 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
42 (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
43 (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
44
45 2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
46
47 * electric.el (electric-indent-just-newline): New command.
48 (electric-indent-mode-map): New keymap.
49 (electric-indent-mode, electric-pair-mode, electric-layout-mode):
50 Re-add :group which weren't redundant.
51
52 * electric.el (electric-indent-local-mode): New minor mode.
53 (electric-indent-functions-without-reindent): New var.
54 (electric-indent-post-self-insert-function): Use it.
55 * emacs-lisp/gv.el (buffer-local-value): Add setter.
56
57 2013-11-05 Eli Zaretskii <eliz@gnu.org>
58
59 * international/quail.el (quail-help): Be more explicit about the
60 meaning of the labels shown on the keys. (Bug#15800)
61
62 * startup.el (normal-top-level): Load the subdirs.el files before
63 setting the locale environment. (Bug#15805)
64
65 2013-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
66
67 * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
68 via arguments so as to get the right ones (bug#15418).
69
70 * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
71
72 2013-11-05 Michael Albinus <michael.albinus@gmx.de>
73
74 Fix problems found while writing a test suite.
75
76 * net/tramp-compat.el (tramp-compat-load): New defun.
77 * net/tramp.el (tramp-handle-load): Use it.
78
79 * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
80 "(numberp ok-if-already-exists)" correctly.
81
82 2013-11-05 Xue Fuqiao <xfq.free@gmail.com>
83
84 * international/characters.el (glyphless-char-display-control):
85 Add usage note.
86
87 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
88
89 * progmodes/python.el (python-mode):
90 * progmodes/scheme.el (scheme-mode):
91 * progmodes/prolog.el (prolog-mode):
92 * progmodes/ruby-mode.el (ruby-mode):
93 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
94 (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
95
96 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
97
98 * rect.el (rectangle--highlight-for-redisplay):
99 * emacs-lisp/smie.el (smie--next-indent-change):
100 Use buffer-chars-modified-tick.
101
102 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
103
104 * electric.el (electric-indent-post-self-insert-function):
105 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
106
107 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
108
109 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
110
111 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
112
113 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
114 (bug#15786).
115
116 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
117
118 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
119
120 * progmodes/python.el: Fix up last change.
121 (python-shell--save-temp-file): New function.
122 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
123 `string' comes from the current buffer.
124 (python-shell-send-string-no-output): Remove `msg' arg.
125 (python--use-fake-loc): New var.
126 (python-shell-buffer-substring): Obey it. Try to compensate for the
127 extra coding line added by python-shell--save-temp-file.
128 (python-shell-send-region): Use python-shell--save-temp-file and
129 python-shell-send-file directly. Add `nomain' argument.
130 (python-shell-send-buffer): Use python-shell-send-region.
131 (python-electric-pair-string-delimiter): New function.
132 (python-mode): Use it.
133
134 2013-11-04 Eli Zaretskii <eliz@gnu.org>
135
136 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
137 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
138 environment and decoding all of the default-directory's to here
139 from command-line.
140 (command-line): Decode also argv[0].
141
142 * loadup.el: Error out if default-directory is a multibyte string
143 when we are dumping.
144
145 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
146
147 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
148
149 * emacs-lisp/package.el (package-menu-mode)
150 (package-menu--print-info, package-menu--archive-predicate):
151 Add Archive column to package list.
152
153 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
154
155 Fix problems found while writing a test suite.
156
157 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
158 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
159 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
160 to nil when running original file name handler. Otherwise,
161 there are problems with constructs like "$$FOO".
162
163 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
164 for `localname'.
165
166 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
167
168 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
169
170 * subr.el (version<, version<=, version=):
171 Update docstrings with information for snapshot versions.
172
173 * helpers.el: New library for misc helper functions.
174 (hash-table-keys): New function returning a list of hash keys.
175 (hash-table-values): New function returning a list of hash values.
176
177 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
178
179 * progmodes/ruby-mode.el (ruby-smie--forward-token)
180 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
181
182 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
183
184 * textmodes/fill.el (fill-single-char-nobreak-p): New function
185 checking whether point is after a 1-letter word.
186
187 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
188
189 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
190 Don't infloop when expanding region over `multiline' syntax-type that
191 begins a line (bug#15778).
192
193 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
194
195 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
196 Make it into a proper minor mode.
197 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
198 (rectangle-mark-mode-map): New keymap.
199 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
200
201 2013-11-04 Glenn Morris <rgm@gnu.org>
202
203 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
204
205 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
206
207 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
208 (ruby-smie-rules): Use smie-rule-parent instead.
209
210 * emacs-lisp/smie.el (smie-rule-parent): Always call
211 smie-indent-virtual rather than only for hanging tokens.
212 (smie--next-indent-change): New helper command.
213
214 2013-11-03 Glenn Morris <rgm@gnu.org>
215
216 * Makefile.in (abs_srcdir): Remove.
217 (emacs): Unset EMACSLOADPATH.
218
219 2013-11-02 Glenn Morris <rgm@gnu.org>
220
221 * Makefile.in (EMACS): Use a relative filename.
222 (abs_top_builddir): Remove.
223 (custom-deps, finder-data, autoloads): Use --chdir.
224
225 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
226
227 Use relative filenames in TAGS files.
228 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
229 (lisptagsfiles4, TAGS): Use relative file names.
230 (TAGS-LISP): Remove.
231 (maintainer-clean): No more TAGS-LISP file.
232
233 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
234 (lisptagsfiles4): Use absolute filenames again.
235 (TAGS, TAGS-LISP): Not everything needs to run in one line.
236 Remove all *loaddefs files, not just the first. Remove esh-groups.
237 (maintainer-clean): Delete TAGS, TAGS-LISP.
238
239 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
240
241 * emacs-lisp/package.el (package-version-join):
242 Recognize snapshot versions.
243
244 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
245
246 * subr.el (version-regexp-alist): Add support for snapshot versions.
247
248 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
249
250 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
251 New function, replacement for `smie-rule-parent' for when we want to
252 skip over our direct parent if it's an assignment token..
253 (ruby-smie-rules): Use it.
254
255 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
256
257 * progmodes/ruby-mode.el Use `syntax-propertize-function'
258 unconditionally. Remove now unnecessary forward declarations.
259 Remove XEmacs-specific setup.
260 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
261 (ruby-font-lock-syntactic-keywords)
262 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
263 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
264 (ruby-here-doc-end-syntax): Remove.
265 (ruby-mode): Don't check whether `syntax-propertize-rules' is
266 defined as function.
267
268 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
269
270 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
271
272 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
273
274 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
275 table and abbrev table, `define-derived-mode' does that for us
276 anyway.
277
278 2013-11-01 Glenn Morris <rgm@gnu.org>
279
280 * Makefile.in: Remove manual mh-e dependencies (writing .elc
281 files is atomic for some time, so no parallel compilation issues).
282
283 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
284
285 * faces.el (face-x-resources): Add :distant-foreground.
286 (region): Use :distant-foreground for gtk and ns.
287
288 2013-11-01 Tassilo Horn <tsdh@gnu.org>
289
290 Allow multiple bibliographies when BibLaTeX is used rather than
291 BibTeX.
292 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
293 (reftex-locate-bibliography-files): Us it.
294
295 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
296
297 * image.el (image-type-header-regexps): Fix the 'pbm' part to
298 allow comments in pbm files.
299
300 * term/w32-win.el (dynamic-library-alist): Support newer versions
301 of libjpeg starting with v7: look only for the DLL from the
302 version against which Emacs was built.
303 Support versions of libpng beyond 1.4.x.
304 Support libtiff v4.x.
305
306 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
307
308 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
309 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
310 Add property :safe.
311 (ruby-deep-arglist): Add property :type.
312
313 2013-10-31 Glenn Morris <rgm@gnu.org>
314
315 * Makefile.in (custom-deps, finder-data): No need to setq the target
316 variables, we are in the right directory and the defaults work fine.
317
318 2013-10-30 Glenn Morris <rgm@gnu.org>
319
320 * Makefile.in (autoloads): Do not use abs_lisp.
321
322 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
323 `newline' does not respect `standard-output', so use `princ'.
324
325 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
326
327 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
328 * buff-menu.el (Buffer-menu--unmark): New function.
329 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
330
331 2013-10-30 Glenn Morris <rgm@gnu.org>
332
333 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
334
335 * emacs-lisp/package.el (lm-homepage): Declare.
336
337 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
338 Fix doc typos.
339
340 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
341
342 * Makefile.in (finder-data, autoloads, update-subdirs)
343 (compile-main, compile-clean, compile-always, bootstrap-clean):
344 Check return value of cd.
345 (compile-calc): Remove.
346
347 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
348
349 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
350
351 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
352 (byte-compile-and-folded): New function.
353 (=, <, >, <=, >=): Use it.
354
355 * dos-w32.el (minibuffer-history-case-insensitive-variables)
356 (path-separator, null-device, buffer-file-coding-system)
357 (lpr-headers-switches): Check system-type before modifying them.
358 (find-buffer-file-type-coding-system): Mark obsolete.
359 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
360 find-file-not-found-set-buffer-file-coding-system.
361 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
362 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
363 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
364 (w32-direct-print-region-helper, w32-direct-print-region-function)
365 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
366 * startup.el (normal-top-level-add-subdirs-to-load-path):
367 * ps-print.el (ps-print-region-function):
368 * lpr.el (print-region-function): Use new name.
369
370 * subr.el (custom-declare-variable-early): Remove function.
371 (custom-declare-variable-list): Remove var.
372 (error, user-error): Remove `while' loop.
373 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
374 (user-emacs-directory-warning, locate-user-emacs-file):
375 Move to files.el.
376 * simple.el (read-quoted-char-radix, read-quoted-char):
377 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
378 Move from subr.el.
379 * custom.el (custom-declare-variable-list): Don't process
380 custom-declare-variable-list.
381
382 * progmodes/python.el (python-shell-get-buffer): New function.
383 (python-shell-get-process): Use it.
384 (python-shell-send-string): Always use utf-8 and add a cookie to tell
385 Python which encoding was used. Don't split-string since we only care
386 about the first line. Return the temp-file, if applicable.
387 (python-shell-send-region): Tell compile.el how to turn locations in
388 the temp-file into locations in the source buffer.
389
390 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
391
392 * subr.el (undefined): Add missing behavior from the C code for
393 unbound keys.
394
395 * rect.el: Use lexical-binding. Add new rectangular region support.
396 (rectangle-mark): New command.
397 (rectangle--region): New var.
398 (deactivate-mark-hook): Reset rectangle--region.
399 (rectangle--extract-region, rectangle--insert-for-yank)
400 (rectangle--highlight-for-redisplay)
401 (rectangle--unhighlight-for-redisplay): New functions.
402 (region-extract-function, redisplay-unhighlight-region-function)
403 (redisplay-highlight-region-function): Use them to handle
404 rectangular region.
405 * simple.el (region-extract-function): New var.
406 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
407 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
408 (kill-region): Replace obsolete `yank-handler' arg with `region'.
409 (copy-region-as-kill, kill-ring-save): Add `region' argument.
410 (redisplay-unhighlight-region-function)
411 (redisplay-highlight-region-function): New vars.
412 (redisplay--update-region-highlight): New function.
413 (pre-redisplay-function): Use it.
414 (exchange-point-and-mark): Don't deactivate the mark before
415 reactivate-it anyway.
416 * comint.el (comint-kill-region): Remove yank-handler argument.
417 * delsel.el (delete-backward-char, backward-delete-char-untabify)
418 (delete-char): Remove property, since it's now part of their
419 default behavior.
420 (self-insert-iso): Remove property since this command doesn't exist.
421
422 * emacs-lisp/package.el (package--download-one-archive)
423 (describe-package-1): Don't query the user about final newline.
424
425 2013-10-29 Daniel Colascione <dancol@dancol.org>
426
427 * net/tramp.el (tramp-methods): Document new functionality.
428 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
429 tramp-hostname-checker if method provides one instead of scanning
430 argument list for "%h" to decide hostname acceptability.
431
432 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
433
434 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
435 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
436 Handle COPY-CONTENTS. (Bug#15737)
437
438 2013-10-28 Daiki Ueno <ueno@gnu.org>
439
440 * epa-file.el
441 (epa-file-cache-passphrase-for-symmetric-encryption):
442 Document that this option has no effect with GnuPG 2.0 (bug#15552).
443
444 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
445
446 * image.el (defimage):
447 (image-load-path): Doc fixes.
448
449 2013-10-27 Alan Mackenzie <acm@muc.de>
450
451 Indent statements in macros following "##" correctly.
452 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
453 Modify the "#" arm of a cond form to handle "#" and "##" operators.
454
455 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
456
457 * linum.el (linum-update-window): Fix boundary test (bug#13446).
458
459 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
460
461 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
462 after `=' is probably a new expression.
463
464 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
465
466 * man.el (man-imenu-title): New option.
467 (Man-mode-map): Add menu. (Bug#15722)
468 (Man-mode): Add imenu to menu.
469
470 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
471
472 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
473 specific in what the first arg can be: a non-keyword word,
474 string/regexp/percent literal opener, opening paren, or unary
475 operator followed directly by word.
476
477 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
478
479 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
480 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
481 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
482 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
483 Remove vars, they do not apply any more.
484 (prolog-mode-abbrev-table): Remove redundant declaration.
485 (prolog-upper-case-string, prolog-lower-case-string): Remove.
486 (prolog-use-smie): Remove.
487 (prolog-smie-rules): Add indentation rule for the if-then-else layout
488 supported by prolog-electric-if-then-else-flag.
489 (prolog-mode-variables, prolog-menu): Use setq-local.
490 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
491 Remove binding to `Backspace' since this key doesn't exist anyway.
492 Remove bindings for electric self-inserting keys.
493 (prog-mode): Assume it's defined.
494 (prolog-post-self-insert): New function.
495 (prolog-mode): Use it.
496 (prolog-indent-line, prolog-indent-level)
497 (prolog-find-indent-of-matching-paren)
498 (prolog-indentation-level-of-line, prolog-goto-comment-column)
499 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
500 (prolog-goto-next-paren, prolog-in-string-or-comment)
501 (prolog-tokenize, prolog-inside-mline-comment)
502 (prolog-find-start-of-mline-comment): Remove functions.
503 (prolog-find-unmatched-paren, prolog-clause-end)
504 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
505 (prolog-electric--if-then-else): Rename from
506 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
507 (prolog-tokenize-searchkey): Remove const.
508 (prolog-clause-info): Use forward-sexp.
509 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
510 (prolog-electric-if-then-else): Remove commands.
511 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
512 for use in post-self-insert-hook.
513 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
514 for use in post-self-insert-hook.
515 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
516 for use in post-self-insert-hook.
517 (prolog-electric--underscore): Rename from prolog-electric--underscore;
518 adapt it for use in post-self-insert-hook.
519
520 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
521
522 * emacs-lisp/ert.el (ert-run-tests-interactively):
523 Use `completing-read'. (Bug#9756)
524
525 2013-10-25 Eli Zaretskii <eliz@gnu.org>
526
527 * simple.el (line-move): Call line-move-1 instead of
528 line-move-visual when the current window hscroll is zero, but
529 temporary-goal-column indicates we will need to hscroll as result
530 of the movement. (Bug#15712)
531
532 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
533
534 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
535 capitalization. Use :visible instead of :active.
536 Fix `ruby-indent-exp' reference. Add menu items for the generic
537 commands that are used with SMIE.
538 (ruby-do-end-to-brace): Insert space after `{'.
539
540 2013-10-25 John Anthony <john@jo.hnanthony.com>
541
542 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
543
544 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
545
546 2013-10-25 Glenn Morris <rgm@gnu.org>
547
548 * vc/vc.el (vc-print-log): Don't use a working revision unless
549 one was explicitly specified. (Bug#15322)
550
551 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
552
553 * subr.el (add-to-list): Preserve return value in compiler-macro
554 (bug#15692).
555
556 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
557
558 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
559 result. Ask user to retry using '-all' flag. (Bug#15701)
560
561 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
562
563 * emacs-lisp/smie.el: New smie-config system.
564 (smie-config): New defcustom.
565 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
566 (smie-config-guess, smie-config-save): New commands.
567 (smie-config--mode-local, smie-config--buffer-local)
568 (smie-config--trace, smie-config--modefuns): New vars.
569 (smie-config--advice, smie-config--mode-hook)
570 (smie-config--setter, smie-config-local, smie-config--get-trace)
571 (smie-config--guess-value, smie-config--guess): New functions.
572 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
573 text properties. Treat "string fence" syntax like string syntax.
574
575 * progmodes/sh-script.el (sh-use-smie): Change default.
576 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
577 (sh-var-value): Simplify by CSE.
578 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
579 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
580 is used.
581 (sh-guess-basic-offset): Use cl-incf.
582 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
583
584 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
585
586 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
587 (bug#15699).
588
589 2013-10-24 Glenn Morris <rgm@gnu.org>
590
591 * Makefile.in (abs_top_srcdir): Remove.
592 (update-subdirs): Use relative path to update-subdirs.
593
594 2013-10-24 Eli Zaretskii <eliz@gnu.org>
595
596 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
597 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
598 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
599 Call unmsys--file-name before expand-file-name, not after it.
600
601 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
602
603 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
604 (ert-test-skipped): New error.
605 (ert-skip, ert-stats-skipped): New defuns.
606 (ert--skip-unless): New macro.
607 (ert-test-skipped): New struct.
608 (ert--run-test-debugger, ert-test-result-type-p)
609 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
610 (ert--stats-set-test-and-result, ert-char-for-test-result)
611 (ert-string-for-test-result, ert-run-tests-batch)
612 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
613 Handle skipped tests. (Bug#9803)
614
615 2013-10-24 Glenn Morris <rgm@gnu.org>
616
617 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
618
619 * Makefile.in (abs_top_srcdir): New, set by configure.
620 (update-subdirs): Correct build-aux location.
621
622 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
623
624 * vc/vc.el (vc-print-root-log): Always set `default-directory'
625 value, whether we could auto-deduce `backend', or not.
626
627 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
628 with parameters" example. Simplify the "is it block or is it
629 hash" check, but also make it more thorough.
630
631 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
632
633 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
634
635 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
636
637 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
638 { if it is hanging.
639
640 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
641 :before ";".
642
643 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
644
645 * progmodes/compile.el (compilation-directory-matcher)
646 (compilation-page-delimiter):
647 Support GNU Make-4.0 directory quoting. (Bug#15678)
648
649 2013-10-23 Leo Liu <sdl.web@gmail.com>
650
651 * ido.el (ido-tidy): Handle read-only text.
652
653 2013-10-23 Glenn Morris <rgm@gnu.org>
654
655 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
656 (emacs, compile, compile-always):
657 Quote entities that might contain whitespace.
658 (custom-deps, finder-data, autoloads): Use abs_lisp.
659 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
660 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
661 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
662
663 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
664
665 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
666 Use `following-char'.
667
668 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
669
670 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
671 * progmodes/ruby-mode.el (ruby-smie-rules):
672 Remove corresponding workaround. Fix indentation rule of ";" so it
673 also applies when ";" is the parent.
674
675 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
676
677 * frame.el (display-screens, display-pixel-height)
678 (display-pixel-width, display-mm-width, display-backing-store)
679 (display-save-under, display-planes, display-color-cells)
680 (display-visual-class, display-monitor-attributes-list):
681 Mention the optional ‘display’ argument in doc strings.
682
683 2013-10-22 Michael Gauland <mikelygee@amuri.net>
684
685 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
686 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
687
688 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
689
690 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
691 TODO. Add "." after " @ ".
692 (ruby-smie--at-dot-call): New function. Checks if point at method
693 call with explicit target.
694 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
695 to the method name tokens when it precedes them.
696 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
697 (ruby-smie-rules): Add rule for indentation before and after "."
698 token.
699
700 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
701
702 * textmodes/remember.el (remember-diary-extract-entries):
703 Avoid add-to-list.
704
705 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
706 an instruction.
707
708 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
709
710 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
711 (ruby-smie--implicit-semi-p): Add new operator chars.
712
713 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
714 `smie-down-list'.
715 (ruby-smie--args-separator-p): Check that there's no newline
716 between method call and its arguments.
717
718 2013-10-20 Alan Mackenzie <acm@muc.de>
719
720 Allow comma separated lists after Java "implements".
721
722 * progmodes/cc-engine.el (c-backward-over-enum-header):
723 Parse commas.
724 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
725 from a "disallowed" list in enum fontification.
726
727 2013-10-20 Johan Bockgård <bojohan@gnu.org>
728
729 * startup.el (default-frame-background-mode): Remove unused defvar.
730
731 * progmodes/verilog-mode.el (verilog-mode): Don't set
732 comment-indent-function globally.
733
734 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
735
736 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
737 Move Info menu item creation to ns-win.el.
738
739 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
740 in menu bar.
741
742 * menu-bar.el: Move GNUStep specific menus...
743
744 * term/ns-win.el (ns-initialize-window-system): ... to here.
745
746 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
747
748 * simple.el (newline): Only run post-self-insert-hook when
749 called interactively.
750
751 2013-10-19 Johan Bockgård <bojohan@gnu.org>
752
753 * icomplete.el (icomplete-with-completion-tables): Add :version.
754
755 2013-10-19 Alan Mackenzie <acm@muc.de>
756
757 Fix fontification bugs with constructors and const.
758
759 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
760 CASE 2) Remove the check for the absence of a suffix construct
761 after a function declaration with only types (no identifiers) in
762 the parentheses. Also, accept a function declaration with just a
763 type inside the parentheses, if this type can be positively
764 recognised as such, or if a prefix keyword like "explicit" nails
765 down the construct as a declaration.
766
767 2013-10-19 Eli Zaretskii <eliz@gnu.org>
768
769 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
770 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
771 the problem whereby selecting a menu item that leads to a
772 minibuffer prompt moves the cursor out of the minibuffer window,
773 making it hard to type at the prompt. Suggested by Stefan Monnier
774 <monnier@iro.umontreal.ca>.
775
776 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
777
778 * menu-bar.el: Don't make Services menu.
779
780 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
781
782 * ffap.el: Handle "/usr/include/c++/<version>" directories.
783 (ffap-alist): Use ffap-c++-mode for c++-mode.
784 (ffap-c++-path): New variable.
785 (ffap-c++-mode): New function.
786
787 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
788
789 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
790
791 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
792
793 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
794 introduced on 2013-09-08, which results in an infinite loop
795 requesting a password.
796
797 2013-10-18 Glenn Morris <rgm@gnu.org>
798
799 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
800
801 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
802
803 Sync with upstream verilog-mode revision 1a6ecec7.
804 * progmodes/verilog-mode.el (verilog-mode-version): Update.
805 (verilog-mode-release-date): Remove.
806 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
807 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
808 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
809 (verilog-auto-tieoff-ignore-regexp)
810 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
811 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
812 (verilog-signals-with, verilog-dir-cache-preserving)
813 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
814 Doc fixes.
815 (verilog-case-fold): New option, to control case folding in
816 regexp searches, bug597.
817 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
818 (verilog-string-match-fold, verilog-in-paren-count)
819 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
820 (verilog-at-close-struct-p): New functions.
821 (verilog-beg-block-re-ordered, verilog-extended-case-re)
822 (verilog-forward-sexp, verilog-set-auto-endcomments):
823 (verilog-leap-to-case-head): Handle "unique0" case.
824 (verilog-in-constraint-re): New constant.
825 (verilog-keywords, verilog-type-font-keywords):
826 Add some SystemVerilog 1800-2012 keywords.
827 (verilog-label-be): Remove unimplemented argument, bug669.
828 (verilog-batch-execute-func): When batch expanding clear
829 create-lockfiles to prevent spurious user locks when a file ends
830 up not changing.
831 (verilog-calculate-indent, verilog-calc-1)
832 (verilog-at-close-constraint-p, verilog-at-constraint-p)
833 (verilog-do-indent): Fix indentation of nested constraints
834 and structures.
835 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
836 (verilog-auto-inst-param): Use verilog-string-match-fold.
837 (verilog-read-inst-module-matcher):
838 Fix AUTOINST on gate primitives with #1.
839 (verilog-read-decls): Fix double-declaring user-defined typed signals.
840 Reads all user-defined typed variables.
841 (verilog-read-defines): Fix reading definitions inside comments, bug647.
842 (verilog-signals-matching-regexp)
843 (verilog-signals-not-matching-regexp, verilog-auto):
844 Respect verilog-case-fold.
845 (verilog-diff-report): Fix line count.
846 (verilog-auto-assign-modport): Remove unused local `modi'.
847 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
848 better handle multidimensional arrays.
849 Fix packed array ports misadding bit index in AUTOINST, bug637.
850 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
851 to not double-declare existing outputs and inputs, respectively.
852 (verilog-template-map): Bind U to verilog-sk-uvm-component.
853 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
854 (verilog-sk-uvm-component): New skeleton.
855 (verilog-submit-bug-report): Add verilog-case-fold,
856 remove verilog-mode-release-date.
857
858 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
859
860 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
861 as before.
862
863 2013-10-18 Reuben Thomas <rrt@sc3d.org>
864
865 * textmodes/remember.el (remember): set buffer-offer-save in
866 remember buffers (bug#13566).
867
868 2013-10-18 Daniel Colascione <dancol@dancol.org>
869
870 When evaluating forms in ielm, direct standard output to ielm
871 buffer. Add new ielm-return-for-effect command. Remove trailing
872 whitespace throughout.
873
874 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
875 (ielm-return-for-effect): New command.
876 (ielm-send-input): Accept optional `for-effect' parameter.
877 (ielm-eval-input): Accept optional `for-effect' parameter.
878 Bind `standard-output' to stream we create using
879 `ielm-standard-output-impl'. Suppress printing result when
880 `for-effect'.
881 (ielm-standard-output-impl): New function.
882 (inferior-emacs-lisp-mode): Explain new features in documentation.
883
884 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
885
886 Code cleanup.
887
888 * net/tramp.el (tramp-debug-message): Do not check for connection
889 buffer.
890 (tramp-message): Use "vector" connection property.
891
892 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
893 (tramp-equal-remote, tramp-eshell-directory-change)
894 * net/tramp-adb.el (tramp-adb-handle-copy-file)
895 (tramp-adb-handle-rename-file)
896 * net/tramp-cmds.el (tramp-list-remote-buffers)
897 (tramp-cleanup-connection, tramp-cleanup-this-connection)
898 * net/tramp-compat.el (tramp-compat-process-running-p)
899 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
900 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
901 (tramp-gvfs-handle-rename-file)
902 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
903 (tramp-set-file-uid-gid)
904 * net/tramp-smb.el (tramp-smb-handle-copy-file)
905 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
906 of `file-remote-p'.
907
908 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
909 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
910 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
911 (tramp-gw-open-network-stream): Suppress unrelated traces.
912
913 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
914 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
915 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
916 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
917 connection property.
918
919 * net/tramp-cache.el (top): Suppress traces when reading
920 persistency file.
921
922 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
923 Refactor common code. Improve debug message.
924 (tramp-maybe-open-connection)
925 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
926 connection buffer too early.
927
928 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
929 from `tramp-smb-actions-with-acl'.
930 (tramp-smb-actions-set-acl): New defconst.
931 (tramp-smb-handle-copy-directory)
932 (tramp-smb-action-get-acl): New defun, renamed from
933 `tramp-smb-action-with-acl'.
934 (tramp-smb-action-set-acl): New defun.
935 (tramp-smb-handle-set-file-acl): Rewrite.
936
937 2013-10-17 Glenn Morris <rgm@gnu.org>
938
939 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
940
941 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
942
943 * skeleton.el (skeleton-newline): Remove.
944 (skeleton-internal-1): Use (insert "\n") instead.
945
946 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
947 let-bindings.
948
949 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
950 forward-sexp-function while we redo its job (bug#15613).
951
952 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
953
954 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
955 represented by lists.
956
957 2013-10-16 Glenn Morris <rgm@gnu.org>
958
959 * tmm.el (tmm--history): New dynamic variable.
960 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
961
962 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
963
964 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
965 (tramp-smb-errors): Add error messages.
966 (tramp-smb-actions-with-acl): New defconst.
967 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
968 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
969 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
970 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
971 (tramp-smb-get-stat-capability): Fix tests.
972
973 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
974
975 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
976 (bug#15580).
977
978 2013-10-16 Glenn Morris <rgm@gnu.org>
979
980 * ansi-color.el (ansi-color-drop-regexp):
981 Add 1J, 1K, 2K. (Bug#15617)
982
983 * files.el (hack-local-variables--warned-lexical): New.
984 (hack-local-variables):
985 Warn about misplaced lexical-binding. (Bug#15616)
986
987 * net/eww.el (eww-render): Always set eww-current-url,
988 and update header line. (Bug#15622)
989 (eww-display-html): ... Rather than just doing it here.
990
991 2013-10-15 Eli Zaretskii <eliz@gnu.org>
992
993 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
994 menu navigations commands.
995
996 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
997
998 * progmodes/subword.el (subword-capitalize): Be careful when
999 the search for [[:alpha:]] fails (bug#15580).
1000
1001 2013-10-14 Eli Zaretskii <eliz@gnu.org>
1002
1003 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
1004 to commands that scroll the menu.
1005
1006 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
1007
1008 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
1009 Handle methods ending with `?' and `!'.
1010
1011 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
1012
1013 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
1014 `japanese-cp932' to `cp932' to fix the problem where saving a
1015 source file written in Shift_JIS twice would end up having
1016 `coding: japanese-cp932' which Ruby could not recognize.
1017 (ruby-mode-set-encoding): Add support for encodings mapped to nil
1018 in `ruby-encoding-map'.
1019 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
1020 doesn't need to be explicitly declared in magic comment.
1021 (ruby-encoding-map): Add type declaration for better customize UI.
1022
1023 2013-10-13 Glenn Morris <rgm@gnu.org>
1024
1025 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
1026 Occur buffers are read-only. http://bugs.debian.org/720775
1027
1028 * emacs-lisp/authors.el (authors-fixed-entries):
1029 Comment out old alpha stuff.
1030
1031 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
1032
1033 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
1034 to `after-save-hook' instead of `before-save-hook'.
1035 (ruby-mode-set-encoding): Use the value of coding system used to
1036 write the file. Call `basic-save-buffer-1' after modifying the
1037 buffer.
1038
1039 2013-10-13 Alan Mackenzie <acm@muc.de>
1040
1041 Fix indentation/fontification of Java enum with
1042 "implements"/generic.
1043
1044 * progmodes/cc-engine.el (c-backward-over-enum-header):
1045 Extracted from the three other places and enhanced to handle generics.
1046 (c-inside-bracelist-p): Uses new function above.
1047 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
1048 function above.
1049 (c-font-lock-enum-tail): Uses new function above.
1050
1051 2013-10-13 Kenichi Handa <handa@gnu.org>
1052
1053 * international/mule-cmds.el (select-safe-coding-system): Remove a
1054 superfluous condition in chekcing whether a coding system is safe
1055 or not.
1056
1057 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
1058
1059 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
1060
1061 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
1062
1063 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
1064
1065 2013-10-13 Glenn Morris <rgm@gnu.org>
1066
1067 * menu-bar.el (menu-bar-update-buffers):
1068 Unify Buffers menu prompt string. (Bug#15576)
1069
1070 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
1071
1072 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
1073 Add some entries.
1074 (authors-fixed-entries): Use accented form of name.
1075
1076 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1077
1078 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
1079 method calls (bug#15594).
1080 (ruby-smie--args-separator-p): New function.
1081 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
1082 recognize paren-free method calls.
1083
1084 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
1085 internals of universal-argument.
1086
1087 2013-10-11 Eli Zaretskii <eliz@gnu.org>
1088
1089 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
1090 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
1091 dropped menu on second mouse click on the menu bar.
1092
1093 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1094
1095 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
1096 (explicit-shell-file-name): Declare.
1097 (sh--vars-before-point, sh--cmd-completion-table): New functions.
1098 (sh-completion-at-point-function): New function.
1099 (sh-mode): Use it.
1100 (sh-smie--keyword-p): Remove unused argument.
1101 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
1102 vars.
1103 (sh-set-shell): Always setup SMIE, even if we use the
1104 old indentation code.
1105
1106 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
1107
1108 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
1109 cases of ? and =.
1110 (ruby-smie-rules): Simplify the "do" rule. The cases when the
1111 predicate would return nil are almost non-existent.
1112 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
1113
1114 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
1115 cache also after commands that modify the buffer but don't move
1116 point.
1117
1118 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1119
1120 * env.el (substitute-env-in-file-name): New function.
1121 (substitute-env-vars): Extend the meaning of the optional arg.
1122
1123 2013-10-10 Eli Zaretskii <eliz@gnu.org>
1124
1125 * term/w32-win.el (dynamic-library-alist): Define separate lists
1126 of GIF DLLs for versions before and after 5.0.0 of giflib.
1127 (Bug#15531)
1128
1129 2013-10-10 João Távora <joaotavora@gmail.com>
1130
1131 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
1132 not locked, use last revision and current source as
1133 defaults. (Bug#15569)
1134
1135 2013-10-10 Masatake YAMATO <yamato@redhat.com>
1136
1137 * menu-bar.el (menu-bar-open): Don't use popup-menu if
1138 menu-bar is hidden.
1139
1140 2013-10-10 Martin Rudalics <rudalics@gmx.at>
1141
1142 * window.el (pop-to-buffer-same-window): Fix doc-string.
1143 (Bug#15492)
1144
1145 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1146
1147 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
1148
1149 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
1150
1151 * calendar/icalendar.el (icalendar-import-file):
1152 Fix interactive spec. (Bug#15482)
1153
1154 2013-10-10 Glenn Morris <rgm@gnu.org>
1155
1156 * desktop.el (desktop-save): Default to saving in .emacs.d,
1157 since PWD is no longer in desktop-path by default. (Bug#15319)
1158
1159 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
1160 now that text mode has a menu with the same entry.
1161 (menu-bar-text-mode-auto-fill): Remove now unused func.
1162 * textmodes/text-mode.el (text-mode-map):
1163 Use auto-fill help text from menu-bar.el.
1164
1165 2013-10-10 John Anthony <john@jo.hnanthony.com>
1166
1167 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
1168
1169 2013-10-09 Juri Linkov <juri@jurta.org>
1170
1171 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
1172 instead of this-command-keys. Add universal-argument-more and
1173 universal-argument-minus to the list of prefix commands. (Bug#15568)
1174
1175 2013-10-09 Glenn Morris <rgm@gnu.org>
1176
1177 * vc/vc-svn.el (vc-svn-create-repo):
1178 Expand paths in file://... url. (Bug#15446)
1179
1180 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
1181 Add some entries.
1182 (authors): Remove unused local variables.
1183
1184 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1185
1186 * profiler.el: Create a more coherent calltree from partial backtraces.
1187 (profiler-format): Hide the tail with `invisible' so that C-s can still
1188 find the hidden elements.
1189 (profiler-calltree-depth): Don't recurse so enthusiastically.
1190 (profiler-function-equal): New hash-table-test.
1191 (profiler-calltree-build-unified): New function.
1192 (profiler-calltree-build): Use it.
1193 (profiler-report-make-name-part): Indent the calltree less.
1194 (profiler-report-mode): Add visibility specs for profiler-format.
1195 (profiler-report-expand-entry, profiler-report-toggle-entry):
1196 Expand the whole subtree when provided with a prefix arg.
1197
1198 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
1199
1200 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
1201 iuwu-mod token.
1202 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
1203 hanging iuwu-mod token.
1204 (ruby-smie--forward-token): Do not include a dot after a token in
1205 that token.
1206 (ruby-smie--backward-token): Likewise.
1207
1208 2013-10-08 Juri Linkov <juri@jurta.org>
1209
1210 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
1211 to isearch-other-control-char.
1212 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
1213 and isearch-post-command-hook to post-command-hook.
1214 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
1215 and isearch-post-command-hook from post-command-hook.
1216 (isearch-unread-key-sequence)
1217 (isearch-reread-key-sequence-naturally)
1218 (isearch-lookup-scroll-key, isearch-other-control-char)
1219 (isearch-other-meta-char): Remove functions.
1220 (isearch-pre-command-hook, isearch-post-command-hook):
1221 New functions based on isearch-other-meta-char rewritten
1222 relying on the new behavior of overriding-terminal-local-map
1223 that does not replace the local keymaps any more. (Bug#15200)
1224
1225 2013-10-08 Eli Zaretskii <eliz@gnu.org>
1226
1227 Support menus on text-mode terminals.
1228 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
1229 functionality.
1230
1231 * tooltip.el (tooltip-mode): Don't error out on TTYs.
1232
1233 * menu-bar.el (popup-menu, popup-menu-normalize-position):
1234 Move here from mouse.el.
1235 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
1236 and arrow keys.
1237 (tty-menu-navigation-map): New map for TTY menu navigation.
1238
1239 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
1240
1241 * frame.el (display-mouse-p): Report text-mode mouse as available
1242 on w32.
1243 (display-popup-menus-p): Report availability if mouse is
1244 available; don't condition on window-system.
1245
1246 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
1247 (tty-menu-selected-face): New faces.
1248
1249 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1250
1251 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
1252 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
1253 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
1254 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
1255 New constants.
1256 (lisp-mode-variables): New `elisp' argument.
1257 (emacs-lisp-mode): Use it.
1258 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
1259 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
1260
1261 * indent.el: Use lexical-binding.
1262 (indent-region): Add progress reporter.
1263 (tab-stop-list): Make it implicitly extend to infinity by repeating the
1264 last step.
1265 (indent--next-tab-stop): New function to implement this behavior.
1266 (tab-to-tab-stop, move-to-tab-stop): Use it.
1267
1268 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
1269
1270 * indent.el (indent-rigidly--current-indentation): New function.
1271 (indent-rigidly-map): New var.
1272 (indent-rigidly): Use it to provide interactive mode (bug#8196).
1273
1274 2013-10-08 Bastien Guerry <bzg@gnu.org>
1275
1276 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
1277
1278 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1279
1280 * progmodes/perl-mode.el: Use lexical-binding.
1281 Remove redundant :group args.
1282 (perl-nochange): Change default to be closer to other major modes's
1283 standard behavior.
1284 (perl-indent-line): Don't consider text on current line as a
1285 valid beginning of function from which to indent.
1286
1287 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
1288 with more than one argument (bug#15538).
1289
1290 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
1291
1292 * vc/pcvs.el: Use lexical-binding.
1293 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
1294 environment of `eval'.
1295 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
1296 than a list of expressions. Adjust callers.
1297 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
1298
1299 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
1300
1301 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
1302 case of the dot in a chained method call being on the following line.
1303
1304 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1305
1306 * electric.el (electric-indent-inhibit): New var.
1307 (electric-indent-post-self-insert-function): Use it.
1308 * progmodes/python.el (python-mode): Set it.
1309
1310 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
1311 open braces.
1312
1313 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
1314
1315 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
1316 (css-mode): Use electric-indent-chars.
1317
1318 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
1319 (font-lock-beg, font-lock-end): Move before first use.
1320 (nxml-mode): Use syntax-propertize-function.
1321 (nxml-after-change, nxml-after-change1): Adjust accordingly.
1322 (nxml-extend-after-change-region): Remove.
1323 * nxml/xmltok.el: Use lexical-binding.
1324 (xmltok-save): Use `declare'.
1325 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
1326 * nxml/nxml-util.el: Use lexical-binding.
1327 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
1328 Use `declare'.
1329 * nxml/nxml-ns.el: Use lexical-binding.
1330 (nxml-ns-save): Use `declare'.
1331 (nxml-ns-prefixes-for): Avoid add-to-list.
1332 * nxml/rng-match.el: Use lexical-binding.
1333 (rng--ipattern): Use cl-defstruct.
1334 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
1335 (rng-cons-group-after, rng-subst-group-after)
1336 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
1337 Use closures instead of `(lambda...).
1338
1339 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
1340
1341 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
1342 of BEG and END.
1343
1344 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1345 Use `tramp-handle-insert-file-contents'.
1346 (tramp-gvfs-handle-insert-file-contents): Remove function.
1347
1348 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1349 Use `save-restriction' in order to keep markers.
1350
1351 * net/trampver.el: Update release number.
1352
1353 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1354
1355 * progmodes/compile.el (compilation-parse-errors):
1356 Use compilation--put-prop.
1357 (compilation--ensure-parse): Check compilation-multiline.
1358
1359 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
1360
1361 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
1362 lexical-binding.
1363
1364 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
1365
1366 * progmodes/ruby-mode.el: Fix recently added tests.
1367 (ruby-smie-grammar): Add - and +.
1368 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
1369 (ruby-smie--backward-id): New functions.
1370 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
1371 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
1372 any more.
1373
1374 2013-10-07 Leo Liu <sdl.web@gmail.com>
1375
1376 * register.el (register-preview-delay)
1377 (register-preview-functions): New variables.
1378 (register-read-with-preview, register-preview)
1379 (register-describe-oneline): New functions.
1380 (point-to-register, window-configuration-to-register)
1381 (frame-configuration-to-register, jump-to-register)
1382 (number-to-register, view-register, insert-register)
1383 (copy-to-register, append-to-register, prepend-to-register)
1384 (copy-rectangle-to-register): Use register-read-with-preview to
1385 read register. (Bug#15525)
1386
1387 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
1388
1389 * net/network-stream.el (network-stream-open-starttls): Don't add
1390 --insecure if it's already present, because that gnutls-cli
1391 rejects getting that parameter twice.
1392
1393 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
1394
1395 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
1396 keyword, too.
1397
1398 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
1399
1400 * newcomment.el (comment-use-global-state): Change default value
1401 to t, mark obsolete (Bug#15251).
1402 (comment-beginning): In addition to `comment-to-syntax', check the
1403 value of `comment-use-global-state'.
1404
1405 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1406
1407 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
1408 (ruby-comment-column): Follow the global default, by default.
1409 (ruby-smie-grammar): Add assignment syntax.
1410 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
1411 open-paren, a comma, or a \.
1412 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
1413 and line continuations.
1414 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
1415 followed by implicit semi-colons. Add rule for string concatenation
1416 and for indentation at BOB.
1417 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
1418
1419 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
1420 calling next-sexp, since next-token may have skipped chars which
1421 next-sexp doesn't know should be skipped!
1422
1423 2013-10-05 Leo Liu <sdl.web@gmail.com>
1424
1425 * progmodes/octave.el (octave-send-region):
1426 Call compilation-forget-errors.
1427
1428 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1429
1430 * vc/vc-svn.el (vc-svn-find-admin-dir):
1431 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
1432 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
1433 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
1434 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
1435
1436 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1437
1438 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
1439
1440 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1441
1442 * subr.el (read-passwd): Hide chars even when called within a context
1443 where after-change-functions is disabled (bug#15501).
1444 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
1445 until we removed ourself from overriding-terminal-local-map.
1446
1447 2013-10-04 Leo Liu <sdl.web@gmail.com>
1448
1449 * progmodes/octave.el (inferior-octave-mode):
1450 Call compilation-forget-errors.
1451
1452 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1453
1454 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
1455
1456 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
1457
1458 * net/secrets.el (secrets-create-collection): Add optional
1459 argument ALIAS. Use proper Label keyword. Append ALIAS as
1460 dbus-call-method argument. (Bug#15516)
1461
1462 2013-10-04 Leo Liu <sdl.web@gmail.com>
1463
1464 * progmodes/octave.el (inferior-octave-error-regexp-alist)
1465 (inferior-octave-compilation-font-lock-keywords): New variables.
1466 (compilation-error-regexp-alist)
1467 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
1468 (inferior-octave-mode): Use compilation-shell-minor-mode.
1469
1470 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
1471
1472 * minibuffer.el (completion--replace): Be careful that `end' might be
1473 a marker.
1474
1475 2013-10-03 Daiki Ueno <ueno@gnu.org>
1476
1477 Add support for package signature checking.
1478 * emacs-lisp/package.el (url-http-file-exists-p)
1479 (epg-make-context, epg-context-set-home-directory)
1480 (epg-verify-string, epg-context-result-for)
1481 (epg-signature-status, epg-signature-to-string)
1482 (epg-check-configuration, epg-configuration)
1483 (epg-import-keys-from-file): Declare.
1484 (package-check-signature): New user option.
1485 (package-unsigned-archives): New user option.
1486 (package-desc): Add `signed' field.
1487 (package-load-descriptor): Set `signed' field if .signed file exists.
1488 (package--archive-file-exists-p): New function.
1489 (package--check-signature): New function.
1490 (package-install-from-archive): Check package signature.
1491 (package--download-one-archive): Check archive signature.
1492 (package-delete): Remove .signed file.
1493 (package-import-keyring): New command.
1494 (package-refresh-contents): Import default keyring.
1495 (package-desc-status): Add "unsigned" status.
1496 (describe-package-1, package-menu--print-info)
1497 (package-menu-mark-delete, package-menu--find-upgrades)
1498 (package-menu--status-predicate): Support "unsigned" status.
1499
1500 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
1503 the new compilation scheme using the new byte-codes.
1504
1505 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
1506 (byte-pophandler): New byte codes.
1507 (byte-goto-ops): Adjust accordingly.
1508 (byte-compile--use-old-handlers): New var.
1509 (byte-compile-catch): Use new byte codes depending on
1510 byte-compile--use-old-handlers.
1511 (byte-compile-condition-case--old): Rename from
1512 byte-compile-condition-case.
1513 (byte-compile-condition-case--new): New function.
1514 (byte-compile-condition-case): New function that dispatches depending
1515 on byte-compile--use-old-handlers.
1516 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
1517 when we can.
1518
1519 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1520 Optimize under `condition-case' and `catch' if
1521 byte-compile--use-old-handlers is nil.
1522 (disassemble-offset): Handle new bytecodes.
1523
1524 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1525
1526 * subr.el (error): Use `declare'.
1527 (decode-char, encode-char): Use advertised-calling-convention instead
1528 of the docstring to discourage use of the `restriction' arg.
1529
1530 2013-10-03 Daiki Ueno <ueno@gnu.org>
1531
1532 * epg.el (epg-verify-file): Add a comment saying that it does not
1533 notify verification error as a return value nor a signal.
1534 (epg-verify-string): Ditto.
1535
1536 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1537
1538 * progmodes/compile.el (compilation-start): Try globbing the arg to
1539 `cd' (bug#15417).
1540
1541 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
1542
1543 Sync with Tramp 2.2.8.
1544
1545 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1546 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
1547 * net/trampver.el: Update release number.
1548
1549 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
1550
1551 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1552 and default-process-coding-system for darwin only.
1553
1554 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1555
1556 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
1557
1558 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
1559
1560 * vc/vc-git.el (vc-git-grep): Disable pager.
1561
1562 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
1563
1564 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
1565 Use :url instead of :homepage, as per
1566 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
1567
1568 * newcomment.el (comment-beginning): When `comment-use-syntax' is
1569 non-nil, use `syntax-ppss' (Bug#15251).
1570
1571 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1572
1573 * progmodes/octave.el (inferior-octave-startup-file):
1574 Prefer ~/.emacs.d/init_octave.m.
1575
1576 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
1577
1578 * emacs-lisp/package.el (package-desc-from-define):
1579 Accept additional arguments as plist, convert them to an alist and store
1580 them in the `extras' slot.
1581 (package-generate-description-file): Convert extras alist back to
1582 plist and append to the `define-package' form arguments.
1583 (package--alist-to-plist): New function.
1584 (package--ac-desc): Add `extras' slot.
1585 (package--add-to-archive-contents): Check if the archive-contents
1586 vector is long enough, and if it is, pass its `extras' slot value
1587 to `package-desc-create'.
1588 (package-buffer-info): Call `lm-homepage', pass the returned value
1589 to `package-desc-from-define'.
1590 (describe-package-1): Render the homepage button (Bug#13291).
1591
1592 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1593 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
1594
1595 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
1596
1597 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1598 and default-process-coding-system to utf-8-unix (Bug#15402).
1599
1600 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
1601
1602 * subr.el (looking-back): Do not recommend using looking-back.
1603
1604 2013-09-28 Alan Mackenzie <acm@muc.de>
1605
1606 Fix indentation/fontification of Java enum with "implements".
1607
1608 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
1609 regexp which matches "implements", etc., in Java.
1610 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
1611 specifier clauses coming after "enum".
1612 * progmodes/cc-fonts.el (c-font-lock-declarations)
1613 (c-font-lock-enum-tail): Check for extra specifier clauses coming
1614 after "enum".
1615
1616 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
1617
1618 * faces.el (region): Change ns_selection_color to
1619 ns_selection_fg_color, add ns_selection_bg_color.
1620
1621 2013-09-28 Leo Liu <sdl.web@gmail.com>
1622
1623 * progmodes/octave.el (inferior-octave-completion-table)
1624 (inferior-octave-completion-at-point): Minor tweaks.
1625
1626 * textmodes/ispell.el (ispell-lookup-words): Rename from
1627 lookup-words. (Bug#15460)
1628 (lookup-words): Obsolete.
1629 (ispell-complete-word, ispell-command-loop): All uses changed.
1630
1631 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1632
1633 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
1634 (octave-mode-menu): Add octave-send-buffer.
1635 (octave-send-buffer): New function.
1636
1637 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1638
1639 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
1640 octave-lookfor.
1641 (octave-mode-menu): Add octave-lookfor.
1642 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
1643 octave-lookfor.
1644 (octave-lookfor): New function.
1645
1646 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1647
1648 * emacs-lisp/cl-macs.el:
1649 (cl--loop-destr-temps): Remove.
1650 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
1651 its convention.
1652 (cl--loop-set-iterator-function): New function.
1653 (cl-loop): Adjust accordingly, so as not to use cl-subst.
1654 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
1655 Bind `it' with `let' instead of substituting it with `cl-subst'.
1656 (cl--unused-var-p): New function.
1657 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
1658 Eliminate some unused variable warnings (bug#15326).
1659
1660 2013-09-27 Tassilo Horn <tsdh@gnu.org>
1661
1662 * doc-view.el (doc-view-scale-reset): Rename from
1663 `doc-view-reset-zoom-level'.
1664 (doc-view-scale-adjust): New command.
1665 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
1666 `doc-view-scale-adjust'.
1667
1668 2013-09-26 Tassilo Horn <tsdh@gnu.org>
1669
1670 * doc-view.el (doc-view-reset-zoom-level): New command.
1671 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
1672 zoom commands (bug#15466).
1673
1674 2013-09-26 Kenichi Handa <handa@gnu.org>
1675
1676 * international/quail.el (quail-help): Make it not a command.
1677
1678 2013-09-26 Leo Liu <sdl.web@gmail.com>
1679
1680 * minibuffer.el (completion-all-sorted-completions): Make args
1681 optional as they are.
1682
1683 2013-09-25 Daniel Colascione <dancol@dancol.org>
1684
1685 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
1686 specs are and that they're not evaluated.
1687
1688 2013-09-24 Sam Steingold <sds@gnu.org>
1689
1690 * midnight.el (clean-buffer-list-kill-regexps)
1691 (clean-buffer-list-kill-buffer-names): Update for the new Man
1692 buffer naming which includes the object name.
1693
1694 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1695
1696 * eshell/esh-cmd.el (eshell--sep-terms): New var.
1697 (eshell-parse-command, eshell-parse-pipeline): Use it since
1698 eshell-separate-commands requires a dynamic scoped var.
1699 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
1700
1701 2013-09-23 Leo Liu <sdl.web@gmail.com>
1702
1703 * autoinsert.el (auto-insert-alist): Make the value of
1704 lexical-binding match its file setting.
1705
1706 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
1707
1708 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1709
1710 * autoarg.el (autoarg-kp-digit-argument):
1711 * electric.el (Electric-command-loop):
1712 * kmacro.el (kmacro-step-edit-insert):
1713 Do not set universal-argument-num-events.
1714
1715 2013-09-22 Leo Liu <sdl.web@gmail.com>
1716
1717 * files.el (interpreter-mode-alist): Add octave.
1718
1719 2013-09-21 Alan Mackenzie <acm@muc.de>
1720
1721 C++: fontify identifier in declaration following "public:" correctly.
1722 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1723 to match "public", etc.
1724 (c-decl-prefix-re): Add ":" into the C++ value.
1725 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1726 bit. Add a check for a ":" preceded by "public", etc.
1727
1728 2013-09-21 Eli Zaretskii <eliz@gnu.org>
1729
1730 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1731 recognized by GDB 7.5 and later.
1732
1733 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1734
1735 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1736
1737 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1738
1739 * subr.el (internal--call-interactively): New const.
1740 (called-interactively-p): Use it (bug#3984).
1741
1742 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1743
1744 * vc/pcvs.el (cvs-mode-ignore):
1745 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1746 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
1747
1748 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1749
1750 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1751 (eshell-ls-orig-insert-directory): Remove.
1752 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1753 (eshell-ls-use-in-dired): Use advice-add/remove.
1754 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1755 Add `orig-fun' arg for use in :around advice.
1756 Make it check (redundantly) eshell-ls-use-in-dired.
1757
1758 2013-09-19 Glenn Morris <rgm@gnu.org>
1759
1760 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1761
1762 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1763
1764 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1765
1766 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
1767
1768 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1769 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1770 (tramp-get-remote-python): New defuns.
1771 (tramp-get-remote-uid-with-perl)
1772 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1773 contributed by yary <not.com@gmail.com> (tiny change).
1774 (tramp-get-remote-uid-with-python)
1775 (tramp-get-remote-gid-with-python): New defuns. Python code
1776 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1777 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1778
1779 2013-09-19 Glenn Morris <rgm@gnu.org>
1780
1781 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1782
1783 * eshell/em-unix.el (eshell-remove-entries):
1784 Rename argument to avoid name-clash with global `top-level'.
1785
1786 * eshell/esh-proc.el (eshell-kill-process-function):
1787 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1788 (eshell-reset-after-proc): Remove unused arg `proc'.
1789
1790 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1791 (directory-files-and-attributes): Mark unused arg.
1792
1793 * eshell/em-unix.el (eshell-remove-entries):
1794 Remove unused arg `path'. Update callers.
1795
1796 * eshell/em-hist.el (eshell-hist-parse-arguments):
1797 Remove unused arg `silent'. Update callers.
1798
1799 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1800 Fix (f)boundp mix-up.
1801
1802 * eshell/em-smart.el (eshell-smart-scroll-window)
1803 (eshell-disable-after-change):
1804 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
1805
1806 2013-09-18 Alan Mackenzie <acm@muc.de>
1807
1808 Fix fontification of type when followed by "const".
1809 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1810 "known" types from fontification.
1811
1812 2013-09-18 Glenn Morris <rgm@gnu.org>
1813
1814 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1815 (chart-face-list): Drop Emacsen without display-color-p.
1816
1817 * net/eww.el (libxml-parse-html-region): Declare.
1818 (eww-display-html): Explicit error if no libxml2 support.
1819
1820 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1821
1822 * image.el (image-type-from-buffer, image-multi-frame-p):
1823 Remove --without-x warning/error.
1824
1825 * mouse.el (mouse-yank-primary):
1826 * term.el (term-mouse-paste):
1827 Reorder to silence --without-x compilation.
1828
1829 * mpc.el (doc-view-mode): Silence --without-x compilation.
1830
1831 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1832 Silence --without-x compilation.
1833
1834 * progmodes/gud.el (gud-find-file, gud-mode):
1835 Silence --without-x compilation.
1836 (tooltip-mode): Declare.
1837
1838 * wdired.el (dired-backup-overwrite): Remove declaration.
1839 (wdired-mode-map): Add doc string.
1840
1841 * custom.el (x-get-resource): Declare.
1842
1843 * eshell/em-glob.el (ange-cache):
1844 * eshell/em-unix.el (ange-cache): Declare.
1845
1846 * faces.el (x-display-list, x-open-connection, x-get-resource):
1847 Declare.
1848
1849 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1850 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1851 Declare.
1852
1853 * frame.el (x-display-grayscale-p, x-display-name): Declare.
1854
1855 * net/gnutls.el (gnutls-log-level): Declare.
1856
1857 * net/shr.el (image-size, image-animate): Declare.
1858
1859 * simple.el (font-info): Declare.
1860
1861 * subr.el (x-popup-dialog): Declare.
1862
1863 * term/common-win.el (x-select-enable-primary)
1864 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1865 Declare.
1866
1867 * term/ns-win.el (x-handle-args): Declare.
1868
1869 * term/x-win.el (x-select-enable-clipboard): Declare.
1870
1871 * term/w32-win.el (create-default-fontset): Declare.
1872
1873 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1874 Declare.
1875
1876 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1877 (fit-frame-to-buffer): Explicit error if --without-x.
1878 (mouse-autoselect-window-select): Silence compiler.
1879
1880 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1881
1882 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1883 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1884 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
1885 * eshell/esh-util.el (eshell-sublist):
1886 Remove unused local variables.
1887
1888 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1889
1890 * textmodes/two-column.el: Make 2C-split work for --without-x.
1891 (scroll-bar-columns): Autoload.
1892 (top-level): Require fringe when compiling.
1893
1894 2013-09-18 Leo Liu <sdl.web@gmail.com>
1895
1896 * subr.el (add-hook): Robustify to handle closure as well.
1897
1898 2013-09-17 Glenn Morris <rgm@gnu.org>
1899
1900 * simple.el (messages-buffer-mode-map): Unbind "g".
1901
1902 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1903
1904 * help-mode.el (help-mode-finish): Use derived-mode-p.
1905 Remove obsolete highlighting.
1906
1907 * play/life.el (life-mode): Use define-derived-mode. Derive from
1908 special-mode.
1909 (life): Let-bind inhibit-read-only.
1910 (life-setup): Avoid `setq'. Use `life-mode'.
1911
1912 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1913 which should not be needed any more.
1914 (package-menu-refresh, package-menu-describe-package): Use user-error.
1915
1916 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1917 (eshell-post-rewrite-command-hook): Make obsolete.
1918 (eshell-parse-command): Simplify.
1919 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1920 (eshell--cmd): Declare.
1921 (eshell-parse-pipeline): Remove unused var `final-p'.
1922 Pass a dynvar to eshell-post-rewrite-command-hook.
1923 Implement the new eshell-post-rewrite-command-function.
1924 (eshell-invoke-directly): Remove unused arg `input'.
1925 * eshell/esh-io.el (eshell-io-initialize):
1926 Use eshell-post-rewrite-command-function (bug#15399).
1927 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1928 adjust to new calling convention.
1929 (eshell-create-handles): Rename args to avoid clashing with dynvar
1930 `standard-output'.
1931
1932 2013-09-17 Glenn Morris <rgm@gnu.org>
1933
1934 * simple.el (messages-buffer-mode): New major mode.
1935 (messages-buffer): New function.
1936 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1937 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
1938 (ert-run-test): Use `messages-buffer' function.
1939 (ert--force-message-log-buffer-truncation): Ignore read-only.
1940 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1941 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
1942
1943 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1944
1945 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1946
1947 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1948
1949 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1950
1951 * icomplete.el (icomplete-in-buffer): New var.
1952 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1953 vars and replace them with functions.
1954 (icomplete-minibuffer-setup): Adjust accordingly.
1955 (icomplete--completion-table, icomplete--completion-predicate)
1956 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1957 New functions.
1958 (icomplete-forward-completions, icomplete-backward-completions)
1959 (icomplete-simple-completing-p, icomplete-exhibit)
1960 (icomplete-completions): Use them.
1961 (icomplete--in-region-buffer): New var.
1962 (icomplete--in-region-setup): New function.
1963 (icomplete-mode): Use it.
1964
1965 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1966 (bug#15379).
1967 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1968 return args and options.
1969 (eshell-eval-using-options): Use the new return value of
1970 eshell--do-opts to set the options's vars in their scope.
1971 (eshell--set-option): Rename from eshell-set-option.
1972 Add arg `opt-vals'.
1973 (eshell--process-option): Rename from eshell-process-option.
1974 Add arg `opt-vals'.
1975 (eshell--process-args): Use an `opt-vals' alist to store the options's
1976 values during their processing and return them additionally to the
1977 remaining args.
1978
1979 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1980
1981 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1982 continuation character an operator, as far as indentation is
1983 concerned (Bug#15369).
1984
1985 2013-09-15 Martin Rudalics <rudalics@gmx.at>
1986
1987 * window.el (window--state-put-2): Don't process buffer state
1988 when buffer doesn't exist any more (Bug#15382).
1989
1990 2013-09-15 Glenn Morris <rgm@gnu.org>
1991
1992 * eshell/em-unix.el (eshell/rm):
1993 Make -f ignore missing files. (Bug#15373)
1994
1995 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1996 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1997 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1998
1999 2013-09-14 Glenn Morris <rgm@gnu.org>
2000
2001 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
2002
2003 2013-09-13 Glenn Morris <rgm@gnu.org>
2004
2005 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
2006 (dired-guess-default): Make `file' available in the env. (Bug#15363)
2007
2008 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2009
2010 * frame.el (x-focus-frame): Mark as declared in frame.c.
2011
2012 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2013
2014 * ls-lisp.el: Use advice-add.
2015 (original-insert-directory): Remove.
2016 (ls-lisp--insert-directory): Rename from insert-directory; add
2017 `orig-fun' argument.
2018 (insert-directory): Advise.
2019
2020 2013-09-13 Eli Zaretskii <eliz@gnu.org>
2021
2022 * term.el (term-emulate-terminal): Decode the command string
2023 before passing it to term-command-hook. (Bug#15337)
2024
2025 2013-09-13 Glenn Morris <rgm@gnu.org>
2026
2027 * eshell/esh-util.el (ange-cache): Move declaration earlier.
2028
2029 * eshell/esh-ext.el (eshell-search-path): Declare.
2030
2031 * eshell/em-prompt.el (eshell/pwd): Autoload it.
2032 Otherwise an error occurs if eshell-dirs module not loaded.
2033
2034 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
2035
2036 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
2037
2038 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
2039 `tramp-check-proper-host'. Check for a valid method name.
2040
2041 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2042 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2043 * net/tramp-sh.el (tramp-maybe-open-connection):
2044 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
2045
2046 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
2047 also for hash values.
2048
2049 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2050
2051 * term/ns-win.el (parameters): Don't declare as dynamic.
2052 (before-make-frame-hook): Don't add ineffective function.
2053
2054 * eshell/*.el: Use lexical-binding (bug#15231).
2055
2056 2013-09-12 Kenichi Handa <handa@gnu.org>
2057
2058 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
2059
2060 2013-09-12 Glenn Morris <rgm@gnu.org>
2061
2062 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
2063 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
2064
2065 * subr.el (do-after-load-evaluation): Also give compiler warnings
2066 when obsolete files are used (except by obsolete files).
2067
2068 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
2069 in the status output, assume `filename' is the first. (Bug#15322)
2070
2071 * vc/vc.el (vc-deduce-fileset): Doc fix.
2072
2073 * calc/calc-help.el (Info-goto-node):
2074 * progmodes/cperl-mode.el (Info-find-node):
2075 * vc/ediff.el (Info-goto-node): Update declarations.
2076
2077 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
2078
2079 * vc/vc-bzr.el (vc-compilation-mode): Declare.
2080 (vc-bzr-pull): Require vc-dispatcher.
2081 * vc/vc-git.el (vc-compilation-mode): Declare.
2082 (vc-git-pull): Require vc-dispatcher.
2083
2084 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
2085
2086 * progmodes/octave.el (help-button-action): Declare.
2087
2088 * shell.el (shell-directory-tracker): Output error as a message
2089 rather than just returning it as a string.
2090 (shell-process-pushd): Remove useless use of message.
2091
2092 * dframe.el (dframe-timer-fn):
2093 * files.el (dir-locals-read-from-file):
2094 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
2095 (mpc-format):
2096 * reveal.el (reveal-post-command):
2097 * saveplace.el (load-save-place-alist-from-file):
2098 * shell.el (shell-resync-dirs):
2099 * w32-common-fns.el (x-get-selection-value):
2100 * emacs-lisp/copyright.el (copyright-find-copyright):
2101 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2102 * emulation/tpu-edt.el (tpu-copy-keyfile):
2103 * play/bubbles.el (bubbles--mark-neighbourhood):
2104 * progmodes/executable.el
2105 (executable-make-buffer-file-executable-if-script-p):
2106 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
2107
2108 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2109
2110 Cleanup Eshell to rely less on dynamic scoping.
2111 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
2112 last-value, and ext-command here. Bind `args' closer to `body'.
2113 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
2114 (eshell--args): Declare new dynamic var.
2115 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
2116 last-value, and ext-command. Pass `args' to `body'.
2117 (eshell-process-args): Bind eshell--args.
2118 (eshell-set-option): Use eshell--args.
2119 * eshell/eshell.el (eshell): Use derived-mode-p.
2120 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
2121 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
2122 (eshell-glob-function): Declare.
2123 * eshell/esh-util.el: Require cl-lib.
2124 (eshell-read-hosts-file): Avoid add-to-list.
2125 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
2126 `err'.
2127 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
2128 Declare.
2129 (eshell/diff): Remove unused var `err'.
2130 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
2131 `killflag'.
2132 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
2133 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
2134 first use.
2135 * eshell/em-glob.el (eshell-glob-matches, message-shown):
2136 Move declaration before first use.
2137 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
2138 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
2139 rely on cl-return.
2140
2141 2013-09-12 Glenn Morris <rgm@gnu.org>
2142
2143 * term/ns-win.el (global-map): Remove binding for ispell-next,
2144 deleted 1999-05-29. (Bug#15357)
2145
2146 2013-09-11 Glenn Morris <rgm@gnu.org>
2147
2148 * echistory.el (electric-command-history): Remove call to deleted func.
2149
2150 * play/landmark.el (landmark-mode): Fix typos.
2151
2152 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
2153 Check cvs-sort-ignore-file is bound.
2154
2155 * savehist.el: No need for cl when compiling on Emacs.
2156
2157 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2158
2159 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
2160 (bug#15338).
2161 (eshell-self-insert-command, eshell-send-invisible):
2162 Remove unused argument.
2163 (eshell-handle-control-codes): Remove unused var `orig'.
2164 Avoid delete-backward-char.
2165
2166 * files.el (set-auto-mode): Simplify a bit further.
2167
2168 2013-09-11 Glenn Morris <rgm@gnu.org>
2169
2170 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
2171 (set-auto-mode): Don't regexp-quote elements.
2172 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
2173 * progmodes/cc-mode.el (interpreter-mode-alist):
2174 * progmodes/ruby-mode.el (interpreter-mode-alist):
2175 Revert previous change.
2176
2177 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2178
2179 * play/snake.el (snake-mode):
2180 * play/mpuz.el (mpuz-mode):
2181 * play/landmark.el (lm-mode):
2182 * play/blackbox.el (blackbox-mode):
2183 * play/5x5.el (5x5-mode):
2184 * obsolete/options.el (Edit-options-mode):
2185 * net/quickurl.el (quickurl-list-mode):
2186 * net/newst-treeview.el (newsticker-treeview-mode):
2187 * mail/rmailsum.el (rmail-summary-mode):
2188 * mail/mspools.el (mspools-mode):
2189 * locate.el (locate-mode):
2190 * ibuffer.el (ibuffer-mode):
2191 * emulation/ws-mode.el (wordstar-mode):
2192 * emacs-lisp/debug.el (debugger-mode):
2193 * array.el (array-mode):
2194 * net/eudc.el (eudc-mode): Use define-derived-mode.
2195 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
2196 Move initialization into declaration.
2197 (mairix-searches-mode): Use define-derived-mode.
2198 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
2199 (eudc-edit-hotlist): Use dolist.
2200 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
2201 (Man-mode): Use define-derived-mode.
2202 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
2203 (Info-edit-mode): Use define-derived-mode.
2204 (Info-cease-edit): Use Info-mode.
2205 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
2206 into declaration.
2207 (eshell-mode): Use define-derived-mode.
2208 * chistory.el (command-history-mode-map): Rename from
2209 command-history-map.
2210 (command-history-mode): Use define-derived-mode.
2211 (Command-history-setup): Remove function.
2212 * calc/calc.el (calc-trail-mode-map): New var.
2213 (calc-trail-mode): Use define-derived-mode.
2214 (calc-trail-buffer): Set calc-main-buffer manually.
2215 * bookmark.el (bookmark-insert-annotation): New function.
2216 (bookmark-edit-annotation): Use it.
2217 (bookmark-edit-annotation-mode): Make it a proper major mode.
2218 (bookmark-send-edited-annotation): Use derived-mode-p.
2219 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
2220 closer to its ideal place. Use \' to match EOS.
2221
2222 * profiler.el (profiler-calltree-find): Use function-equal.
2223
2224 2013-09-10 Glenn Morris <rgm@gnu.org>
2225
2226 * files.el (interpreter-mode-alist): Convert to regexps.
2227 (set-auto-mode): Adapt for this. (Bug#15306)
2228 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
2229 Comment out unused variable.
2230 * progmodes/cc-mode.el (interpreter-mode-alist):
2231 * progmodes/python.el (interpreter-mode-alist):
2232 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
2233 * progmodes/sh-script.el (sh-set-shell):
2234 No longer use interpreter-mode-alist to get list of shells.
2235
2236 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
2237
2238 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2239
2240 * simple.el: Use set-temporary-overlay-map for universal-argument.
2241 (universal-argument-map): Don't use default-bindings (bug#15317).
2242 Bind switch-frame explicitly. Replace universal-argument-minus with
2243 a conditional binding.
2244 (universal-argument-num-events, saved-overriding-map): Remove.
2245 (restore-overriding-map): Remove.
2246 (universal-argument--mode): Rename from save&set-overriding-map,
2247 and rewrite.
2248 (universal-argument, universal-argument-more, negative-argument)
2249 (digit-argument): Adjust accordingly.
2250 (universal-argument-minus): Remove.
2251 (universal-argument-other-key): Remove.
2252
2253 * subr.el (with-demoted-errors): Add `format' argument.
2254
2255 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
2256
2257 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
2258 `tramp-cleanup-connection'.
2259
2260 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
2261 parameters KEEP-DEBUG and KEEP-PASSWORD.
2262
2263 * net/tramp.el (tramp-file-name-handler):
2264 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2265 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
2266 (tramp-maybe-open-connection):
2267 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2268 Use `tramp-cleanup-connection'.
2269
2270 * net/tramp-sh.el (tramp-maybe-open-connection):
2271 Catch 'uname-changed inside the progress reporter.
2272
2273 2013-09-10 Glenn Morris <rgm@gnu.org>
2274
2275 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
2276
2277 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
2278 returns "alternate access method" in mode (eg "-rw-r--r--.").
2279
2280 2013-09-08 Glenn Morris <rgm@gnu.org>
2281
2282 * saveplace.el (load-save-place-alist-from-file):
2283 Demote errors. (Bug#15305)
2284
2285 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
2286
2287 Improve compatibility with older Emacsen, and XEmacs.
2288
2289 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
2290 only if it is bound. It isn't for XEmacs.
2291 (with-tramp-progress-reporter): Do not let-bind `result'.
2292 This yields to scoping errors in XEmacs.
2293 (tramp-handle-make-auto-save-file-name): New function, moved from
2294 tramp-sh.el.
2295
2296 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
2297 for `make-auto-save-file-name'.
2298 (tramp-adb--gnu-switches-to-ash):
2299 Use `tramp-compat-replace-regexp-in-string'.
2300
2301 * net/tramp-cache.el (tramp-cache-print): Call
2302 `substring-no-properties' only if it is bound. It isn't for XEmacs.
2303
2304 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
2305 bound. It isn't for XEmacs.
2306
2307 * net/tramp-compat.el (tramp-compat-copy-file):
2308 Catch `wrong-number-of-arguments' error.
2309 (tramp-compat-replace-regexp-in-string): New defun.
2310
2311 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
2312 for `make-auto-save-file-name'.
2313 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
2314 `copy-file'.
2315 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
2316 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
2317 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
2318
2319 * net/tramp-gw.el (tramp-gw-open-network-stream):
2320 Use `tramp-compat-replace-regexp-in-string'.
2321
2322 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2323 Call `tramp-handle-make-auto-save-file-name'.
2324 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
2325 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2326 (tramp-sh-file-inotifywait-process-filter):
2327 Use `tramp-compat-replace-regexp-in-string'.
2328 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
2329
2330 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
2331 for `make-auto-save-file-name'.
2332 (tramp-smb-handle-copy-directory):
2333 Call `tramp-compat-replace-regexp-in-string'.
2334 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
2335 (tramp-smb-handle-copy-file): Improve error message.
2336 (tramp-smb-handle-rename-file): Rename directly only in case
2337 `newname' does not exist yet. This is a restriction of smbclient.
2338 (tramp-smb-maybe-open-connection): Rerun the function only when
2339 `auth-sources' is non-nil.
2340
2341 2013-09-08 Kenichi Handa <handa@gnu.org>
2342
2343 * international/characters.el: Set category "^" (Combining) for
2344 more characters.
2345
2346 2013-09-07 Alan Mackenzie <acm@muc.de>
2347
2348 Correctly fontify Java class constructors.
2349 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
2350 in Java Mode.
2351 (c-recognize-typeless-decls): Set the Java value to t.
2352 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
2353 While handling a "(", add a check for, effectively, Java, and handle a
2354 "typeless" declaration there.
2355
2356 2013-09-07 Roland Winkler <winkler@gnu.org>
2357
2358 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
2359 field subtitle for entry type book.
2360
2361 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2362
2363 * minibuffer.el: Make minibuffer-complete call completion-in-region
2364 rather than other way around.
2365 (completion--some, completion-pcm--find-all-completions):
2366 Don't delay signals when debugging.
2367 (minibuffer-completion-contents): Beware fields within the
2368 minibuffer contents.
2369 (completion-all-sorted-completions): Use defvar-local.
2370 (completion--do-completion, completion--cache-all-sorted-completions)
2371 (completion-all-sorted-completions, minibuffer-force-complete):
2372 Add args `beg' and `end'.
2373 (completion--in-region-1): New fun, extracted from minibuffer-complete.
2374 (minibuffer-complete): Use completion-in-region.
2375 (completion-complete-and-exit): New fun, extracted from
2376 minibuffer-complete-and-exit.
2377 (minibuffer-complete-and-exit): Use it.
2378 (completion--complete-and-exit): Rename from
2379 minibuffer--complete-and-exit.
2380 (completion-in-region--single-word): New function, extracted from
2381 minibuffer-complete-word.
2382 (minibuffer-complete-word): Use it.
2383 (display-completion-list): Make `common-substring' argument obsolete.
2384 (completion--in-region): Call completion--in-region-1 instead of
2385 minibuffer-complete.
2386 (completion-help-at-point): Pass boundaries to
2387 minibuffer-completion-help as args rather than via an overlay.
2388 (completion-pcm--string->pattern): Use `any-delim'.
2389 (completion-pcm--optimize-pattern): New function.
2390 (completion-pcm--pattern->regex): Handle `any-delim'.
2391 * icomplete.el (icomplete-forward-completions)
2392 (icomplete-backward-completions, icomplete-completions):
2393 Adjust calls to completion-all-sorted-completions and
2394 completion--cache-all-sorted-completions.
2395 (icomplete-with-completion-tables): Default to t.
2396 * emacs-lisp/crm.el (crm--current-element): Rename from
2397 crm--select-current-element. Don't put an overlay but return the
2398 boundaries instead.
2399 (crm--completion-command): Take two new args to bind to the boundaries.
2400 (crm-completion-help): Adjust accordingly.
2401 (crm-complete): Use completion-in-region.
2402 (crm-complete-word): Use completion-in-region--single-word.
2403 (crm-complete-and-exit): Use completion-complete-and-exit.
2404
2405 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2406
2407 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
2408 than dynamically.
2409
2410 2013-09-06 Juri Linkov <juri@jurta.org>
2411
2412 * info.el (Info-display-images-node): When image file doesn't exist
2413 display text version of the image if it's provided in the Info file.
2414 Otherwise, display the location of missing image from SRC attribute.
2415 Add help-echo text property from ALT attribute. (Bug#15279)
2416
2417 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2418
2419 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
2420 (edit-abbrevs-mode): Use define-derived-mode.
2421
2422 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
2423 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
2424 that it's defined.
2425 (epa-key-list-mode, epa-key-mode, epa-info-mode):
2426 Use define-derived-mode.
2427
2428 * epg.el (epg-start-encrypt): Minor CSE simplification.
2429
2430 2013-09-06 William Xu <william.xwl@gmail.com>
2431
2432 * arc-mode.el: Add support for 7za (bug#15264).
2433 (archive-7z-program): New var.
2434 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
2435 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
2436 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
2437
2438 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
2439
2440 Remove URL syntax.
2441
2442 * net/tramp.el (tramp-syntax, tramp-prefix-format)
2443 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
2444 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
2445 (tramp-postfix-host-format, tramp-file-name-regexp)
2446 (tramp-completion-file-name-regexp)
2447 (tramp-completion-dissect-file-name)
2448 (tramp-handle-substitute-in-file-name): Remove 'url case.
2449 (tramp-file-name-regexp-url)
2450 (tramp-completion-file-name-regexp-url): Remove constants.
2451
2452 2013-09-06 Glenn Morris <rgm@gnu.org>
2453
2454 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
2455
2456 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
2457
2458 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
2459 keywords" below "here-doc beginnings" (Bug#15270).
2460
2461 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2462
2463 * subr.el (pop): Use `car-safe'.
2464 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
2465 to detect unused `pop' return value.
2466
2467 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
2468 var `block-regexp'.
2469 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
2470 (python-fill-string): Remove unused var `marker'.
2471 (python-skeleton-add-menu-items): Remove unused var `items'.
2472
2473 * international/mule-cmds.el: Require CL.
2474 (find-coding-systems-for-charsets): Avoid add-to-list.
2475 (sanitize-coding-system-list): New function, extracted from
2476 select-safe-coding-system-interactively.
2477 (select-safe-coding-system-interactively): Use it.
2478 (read-input-method-name): Accept symbols for `default'.
2479
2480 * emacs-lisp/advice.el (defadvice): Add indent rule.
2481
2482 2013-09-05 Daniel Hackney <dan@haxney.org>
2483
2484 * dired-x.el:
2485 * net/ange-ftp.el:
2486 * net/browse-url.el:
2487 * net/dbus.el:
2488 * net/eudc.el:
2489 * net/eudcb-ldap.el:
2490 * net/eww.el:
2491 * net/imap.el:
2492 * printing.el:
2493 * vc/ediff-diff.el:
2494 * vc/ediff-init.el:
2495 * vc/ediff-merg.el:
2496 * vc/ediff-mult.el:
2497 * vc/ediff-util.el:
2498 * vc/ediff-wind.el:
2499 * vc/ediff.el:
2500 * vc/emerge.el:
2501 * vc/pcvs.el:
2502 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
2503 byte compiler. Remove some unused let-bound variables.
2504
2505 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2506
2507 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
2508 a "ref-cell", since it gets better optimized (bug#14883).
2509
2510 2013-09-05 Glenn Morris <rgm@gnu.org>
2511
2512 * progmodes/cc-awk.el (c-forward-sws): Declare.
2513
2514 2013-09-04 Glenn Morris <rgm@gnu.org>
2515
2516 * generic-x.el [rul-generic-mode]: Require cc-mode.
2517 (c++-mode-syntax-table): Declare.
2518 (rul-generic-mode-syntax-table): Init in the defvar.
2519
2520 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2521
2522 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
2523 (vc-do-command, vc-set-async-update):
2524 * vc/vc-mtn.el (vc-mtn-dir-status):
2525 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
2526 (vc-hg-pull, vc-hg-merge-branch):
2527 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
2528 (vc-git-merge-branch):
2529 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
2530 (vc-cvs-dir-status-files):
2531 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
2532 (vc-bzr-dir-status-files):
2533 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
2534 * vc/vc-annotate.el: Use lexical-binding.
2535 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
2536 (vc-sentinel-movepoint): Declare.
2537 (vc-annotate): Don't use `goto-line'.
2538 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
2539 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
2540 (vc-sentinel-movepoint): Declare.
2541 * vc/vc-svn.el: Use lexical-binding.
2542 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
2543 * vc/vc-sccs.el:
2544 * vc/vc-rcs.el: Use lexical-binding.
2545
2546 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
2547 `deleted'. Don't drop errors silently.
2548
2549 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
2550
2551 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2552
2553 * vc/vc.el (vc-ignore): Rewrite.
2554 (vc-default-ignore): New function.
2555 (vc-default-ignore-completion-table): Use find-ignore-file.
2556
2557 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
2558 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
2559 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
2560 Remove. Most code moved to vc.el.
2561
2562 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2563
2564 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
2565 * net/tramp-smb.el (tramp-smb-get-file-entries):
2566 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
2567 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
2568
2569 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
2570 Update call to it.
2571 (eww-change-select): Remove unused var `properties'.
2572 (eww-make-unique-file-name): Remove unused var `base'.
2573
2574 * finder.el (finder-compile-keywords): Don't mess with windows.
2575
2576 * calculator.el (calculator-funcall): Fix typo in last change.
2577
2578 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
2579
2580 * emacs-lisp/package.el (package-activate-1): Don't let a missing
2581 <pkg>-autoloads.el file stop us.
2582
2583 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
2584 warnings, and factor out common code.
2585
2586 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
2587
2588 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
2589 two-character operators and whether the character preceding them
2590 changes their meaning (Bug#15208).
2591
2592 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2593
2594 Format code sent to Python shell for robustness.
2595 * progmodes/python.el (python-shell-buffer-substring):
2596 New function.
2597 (python-shell-send-region, python-shell-send-buffer): Use it.
2598
2599 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
2600
2601 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
2602 * net/tramp.el (tramp-user-error): ... here.
2603 (tramp-find-method, tramp-check-proper-host)
2604 (tramp-dissect-file-name, tramp-debug-message)
2605 (tramp-handle-shell-command):
2606 * net/tramp-adb.el (tramp-adb-handle-shell-command):
2607 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
2608
2609 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
2610
2611 2013-09-02 Martin Rudalics <rudalics@gmx.at>
2612
2613 * avoid.el (mouse-avoidance-point-position)
2614 (mouse-avoidance-too-close-p): Handle case where posn-at-point
2615 returns nil.
2616
2617 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2618
2619 * progmodes/python.el (python-shell-completion-get-completions):
2620 Drop use of deleted `comint-last-prompt-overlay'.
2621 (python-nav-if-name-main): New command.
2622
2623 2013-09-01 Glenn Morris <rgm@gnu.org>
2624
2625 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2626 Avoid leading space in $wins. Otherwise the sed command used by
2627 eg compile-main ends up containing "/*.el". (Bug#15170)
2628
2629 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
2630
2631 2013-08-30 Glenn Morris <rgm@gnu.org>
2632
2633 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2634 Fix is-this-a-directory logic. (Bug#15220)
2635
2636 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2637
2638 * textmodes/css-mode.el: Use SMIE.
2639 (css-smie-grammar): New var.
2640 (css-smie--forward-token, css-smie--backward-token)
2641 (css-smie-rules): New functions.
2642 (css-mode): Use them.
2643 (css-navigation-syntax-table): Remove var.
2644 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
2645 (css-indent-calculate, css-indent-line): Remove functions.
2646
2647 Misc changes to reduce use of `(lambda...); and other cleanups.
2648 * cus-edit.el: Use lexical-binding.
2649 (customize-push-and-save, customize-apropos)
2650 (custom-buffer-create-internal): Use closures.
2651 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
2652 * progmodes/ada-xref.el: Use setq.
2653 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
2654 * dframe.el: Use lexical-binding.
2655 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
2656 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
2657 * descr-text.el: Use lexical-binding.
2658 (describe-text-widget, describe-text-sexp, describe-property-list):
2659 Use closures.
2660 * comint.el (comint-history-isearch-push-state): Use a closure.
2661 * calculator.el: Use lexical-binding.
2662 (calculator-number-to-string): Make it work with lexical-binding.
2663 (calculator-funcall): Same and use cl-letf.
2664
2665 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
2666 (lisp--company-doc-string, lisp--company-location): New functions.
2667 (lisp-completion-at-point): Use them to improve Company support.
2668
2669 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
2670 params of lambda expressions.
2671 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
2672 (ruby-smie--opening-pipe-p): New function.
2673 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
2674 symbols and matched |...| for formal params.
2675 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
2676 from being treated as hanging. Handle "rescue".
2677
2678 2013-08-29 Glenn Morris <rgm@gnu.org>
2679
2680 * progmodes/cc-engine.el (c-pull-open-brace):
2681 Move definition before use.
2682
2683 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2684
2685 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
2686 are immutable. Don't use `unsafe' any more.
2687 (cl--defsubst-expand): Don't substitute at the same time as keeping
2688 a residual unused let-binding. Don't use `unsafe' any more.
2689
2690 2013-08-29 Glenn Morris <rgm@gnu.org>
2691
2692 * calendar/cal-china.el (calendar-chinese-year-cache):
2693 Recenter on 2015.
2694
2695 * nxml/nxml-util.el (nxml-debug-clear-inside):
2696 Use cl-loop rather than loop.
2697
2698 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
2699
2700 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
2701
2702 2013-08-28 Glenn Morris <rgm@gnu.org>
2703
2704 * progmodes/antlr-mode.el: No need to require cc-mode twice.
2705
2706 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
2707
2708 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2709
2710 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2711
2712 * simple.el (repeat-complex-command--called-interactively-skip):
2713 New function.
2714 (repeat-complex-command): Use it (bug#14136).
2715
2716 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2717 (c-define-abbrev-table): Add `doc' argument.
2718 (c-mode-abbrev-table, c++-mode-abbrev-table)
2719 (objc-mode-abbrev-table, java-mode-abbrev-table)
2720 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2721 (awk-mode-abbrev-table): Use it.
2722 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2723 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2724 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2725 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2726 Move initialization into the declaration; and remove any
2727 autoload cookie.
2728
2729 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2730 and dynamic let binding.
2731
2732 * vc/smerge-mode.el: Remove redundant :group args.
2733
2734 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2735 to load-path.
2736
2737 2013-08-28 Juri Linkov <juri@jurta.org>
2738
2739 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2740 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2741 (isearch-other-meta-char): Handle an undefined shifted printing
2742 character by downshifting it. (Bug#15200)
2743
2744 2013-08-28 Juri Linkov <juri@jurta.org>
2745
2746 * isearch.el (isearch-search): Change regexp error message for
2747 non-regexp searches. (Bug#15166)
2748
2749 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2750
2751 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2752 for portability to hosts where /bin/sh has problems.
2753
2754 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2755
2756 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2757
2758 2013-08-27 Juri Linkov <juri@jurta.org>
2759
2760 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2761 in the keyboard macro. (Bug#15126)
2762
2763 2013-08-27 Juri Linkov <juri@jurta.org>
2764
2765 * isearch.el (isearch-quote-char): Comment out converting unibyte
2766 to multibyte, thus syncing with its `quoted-insert' counterpart.
2767 (Bug#15166)
2768
2769 2013-08-27 Martin Rudalics <rudalics@gmx.at>
2770
2771 * window.el (display-buffer-use-some-window): Add missing
2772 argument in call of get-largest-window (Bug#15185).
2773 Reported by Stephen Leake.
2774
2775 2013-08-27 Glenn Morris <rgm@gnu.org>
2776
2777 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2778
2779 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2780
2781 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2782 from a matcher-function unless there's no more matches (bug#15161).
2783
2784 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2785
2786 * minibuffer.el: Revert change from 2013-08-20.
2787
2788 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2789 with text property `tramp-default', if appropriate.
2790 (tramp-check-proper-host): New defun.
2791 (tramp-dissect-file-name): Do not check hostname. Revert change
2792 of 2013-03-18.
2793 (tramp-backtrace): Make VEC-OR-PROC optional.
2794
2795 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2796 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2797 * net/tramp-sh.el (tramp-maybe-open-connection):
2798 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2799 Apply `tramp-check-proper-host'.
2800
2801 2013-08-26 Tassilo Horn <tsdh@gnu.org>
2802
2803 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2804 lambda expression in order to have `describe-variable' display it.
2805
2806 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2807
2808 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2809 BUF can be optional. (Bug#15186)
2810
2811 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2812
2813 * progmodes/flymake.el (flymake-get-real-file-name-function):
2814 Fix broken customization. (Bug#15184)
2815
2816 2013-08-25 Alan Mackenzie <acm@muc.de>
2817
2818 Improve indentation of bracelists defined by macros (without "=").
2819
2820 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2821 expansion begins with "{", regard it as bracelist when it doesn't
2822 contain a ";".
2823
2824 Parse C++ inher-intro when there's a template split over 2 lines.
2825
2826 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2827 rigorously the search for "class" etc. followed by ":".
2828
2829 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2830 random languages a regexp which never matches rather than nil.
2831
2832 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2833
2834 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2835 (c-awk-regexp-one-line-possibly-open-char-list-re)
2836 (c-awk-one-line-possibly-open-regexp-re)
2837 (c-awk-one-line-non-syn-ws*-re): Remove.
2838 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2839 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2840 (c-awk-space*-unclosed-regexp-/-re): New constants.
2841 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2842 aren't regexp delimiters.
2843
2844 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2845 handling for a rare situation in AWK Mode involving unterminated
2846 strings/regexps.
2847
2848 2013-08-23 Glenn Morris <rgm@gnu.org>
2849
2850 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2851
2852 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2853
2854 * files.el (create-file-buffer): If the result would begin with
2855 spaces, prepend a "|" instead of removing them. (Bug#15162)
2856
2857 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2858
2859 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2860 text-properties (bug#15155).
2861
2862 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2863 exist any more.
2864 (calc-keypad-redraw): Remove unused var `pad'.
2865 (calc-keypad-press): Remove unused var `menu'.
2866
2867 2013-08-23 Martin Rudalics <rudalics@gmx.at>
2868
2869 * window.el (display-buffer-pop-up-frame):
2870 Call pop-up-frame-function with BUFFER current so `make-frame' will
2871 use it as the new frame's buffer (Bug#15133).
2872
2873 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2874
2875 * calendar/timeclock.el: Minor cleanups.
2876 (timeclock-ask-before-exiting, timeclock-use-display-time):
2877 Use `symbol'.
2878 (timeclock-modeline-display): Define as alias before the
2879 actual definition.
2880 (timeclock-mode-line-display): Use define-minor-mode.
2881 (timeclock-day-list-template): Make it a function, add an argument.
2882 (timeclock-day-list-required, timeclock-day-list-length)
2883 (timeclock-day-list-debt, timeclock-day-list-span)
2884 (timeclock-day-list-break): Adjust calls accordingly.
2885
2886 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2887
2888 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2889 Use read--expression so that completion works again.
2890
2891 2013-08-21 Sam Steingold <sds@gnu.org>
2892
2893 Add rudimentary inferior shell interaction
2894 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2895 (sh-set-shell): Reset it.
2896 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2897 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
2898
2899 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2900
2901 * align.el: Use lexical-binding.
2902 (align-region): Simplify accordingly.
2903
2904 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
2905
2906 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2907
2908 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2909 `non-essential' up.
2910
2911 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
2912
2913 * net/tramp.el:
2914 * net/tramp-adb.el:
2915 * net/tramp-cmds.el:
2916 * net/tramp-ftp.el:
2917 * net/tramp-gvfs.el:
2918 * net/tramp-gw.el:
2919 * net/tramp-sh.el: Don't wrap external variable declarations by
2920 `eval-when-compile'.
2921
2922 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2923
2924 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2925 now that Emacs supports ImageMagick animations.
2926
2927 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
2928
2929 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2930 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2931
2932 2013-08-16 Martin Rudalics <rudalics@gmx.at>
2933
2934 * window.el (mouse-autoselect-window-select): Do autoselect when
2935 mouse pointer is on margin.
2936
2937 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2938
2939 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2940
2941 2013-08-16 Glenn Morris <rgm@gnu.org>
2942
2943 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2944 Handle "Remote Directory" response of some clients. (Bug#15058)
2945
2946 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2947 Tweak warning. (Bug#14926)
2948
2949 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2950 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2951
2952 * image-mode.el (image-mode-map): Add menu items to reverse,
2953 increase, decrease, reset animation speed.
2954 (image--set-speed, image-increase-speed, image-decrease-speed)
2955 (image-reverse-speed, image-reset-speed): New functions.
2956 (image-mode-map): Add bindings for speed commands.
2957
2958 * image.el (image-animate-get-speed, image-animate-set-speed):
2959 New functions.
2960 (image-animate-timeout): Respect image :speed property.
2961
2962 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2963
2964 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2965 previous line (bug#15101).
2966 (debugger-eval-expression, debugger-record-expression):
2967 Use read--expression (bug#15102).
2968
2969 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
2970
2971 Remove byte compiler warnings, visible when compiling with
2972 `byte-compile-force-lexical-warnings' set to t.
2973
2974 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
2975 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
2976 (tramp-handle-unhandled-file-name-directory)
2977 (tramp-handle-file-notify-add-watch, tramp-action-login)
2978 (tramp-action-succeed, tramp-action-permission-denied)
2979 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2980 arguments with "_".
2981
2982 * net/tramp-adb.el (tramp-adb-parse-device-names)
2983 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2984 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2985 (tramp-adb-handle-file-truename): Remove unused arguments.
2986
2987 * net/tramp-cache.el (tramp-flush-directory-property)
2988 (tramp-flush-connection-property, tramp-list-connections)
2989 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2990
2991 * net/tramp-compat.el (tramp-compat-make-temp-file):
2992 Rename FILENAME to F.
2993
2994 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2995 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2996 (tramp-zeroconf-parse-workstation-device-names)
2997 (tramp-zeroconf-parse-webdav-device-names)
2998 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2999
3000 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
3001 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
3002
3003 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
3004 arguments.
3005 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
3006 (tramp-sh-handle-insert-file-contents-literally)
3007 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
3008 with "_".
3009 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
3010 Remove unused variables.
3011
3012 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
3013 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
3014 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
3015
3016 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
3017 Make them a defconst.
3018 (tramp-uuencode-region): Remove unused variable.
3019
3020 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
3021
3022 * frameset.el (frameset--prop-setter): New function.
3023 (frameset-prop): Add gv-setter declaration.
3024 (frameset-filter-minibuffer): Deal with the case that the minibuffer
3025 parameter was already set in FILTERED. Doc fix.
3026 (frameset--record-minibuffer-relationships): Allow saving a
3027 minibufferless frame without its corresponding minibuffer frame.
3028 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
3029 frame, if the frame id matches.
3030 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
3031 frames before orphaned ones.
3032 (frameset-restore): Warn about orphaned windows, instead of error out.
3033
3034 2013-08-14 Martin Rudalics <rudalics@gmx.at>
3035
3036 * window.el (window-make-atom): Don't overwrite parameter
3037 already present.
3038 (display-buffer-in-atom-window): Handle special case where we
3039 split an already atomic window.
3040 (window--major-non-side-window, display-buffer-in-side-window)
3041 (window--side-check): Ignore minibuffer window when walking
3042 window tree.
3043 (window-deletable-p): Return 'frame only if no other frame uses
3044 our minibuffer window.
3045 (record-window-buffer): Run buffer-list-update-hook.
3046 (split-window): Make sure window--check-frame won't destroy an
3047 existing atomic window in case the new window gets nested
3048 inside.
3049 (display-buffer-at-bottom): Ignore minibuffer window when
3050 walking window tree. Don't split a side window.
3051 (pop-to-buffer): Don't set-buffer here, the select-window call
3052 should do that.
3053 (mouse-autoselect-window-select): Autoselect only if we are in the
3054 text portion of the window.
3055
3056 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
3057
3058 * net/shr.el (shr-parse-image-data): New function to grab both the
3059 data itself and the Content-Type.
3060 (shr-put-image): Use it.
3061
3062 * net/eww.el (eww-display-image): Ditto.
3063
3064 * image.el (image-content-type-suffixes): New variable.
3065
3066 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
3067
3068 * progmodes/python.el (python-imenu--build-tree)
3069 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
3070
3071 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
3072
3073 * simple.el (backward-word): Mention the optional argument.
3074
3075 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * frameset.el (frameset--make): Rename constructor from make-frameset.
3078 (frameset-p, frameset-valid-p): Don't autoload.
3079 (frameset-valid-p): Use normal accessors.
3080
3081 2013-08-13 Glenn Morris <rgm@gnu.org>
3082
3083 * progmodes/compile.el (compile-command): Tweak example in doc.
3084 * obsolete/scribe.el (scribe-mode):
3085 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
3086
3087 * mail/feedmail.el (feedmail-confirm-outgoing)
3088 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
3089
3090 * cus-start.el (truncate-partial-width-windows): Fix type.
3091
3092 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
3093
3094 * net/shr.el (shr-table-horizontal-line): Fix custom type.
3095
3096 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3097
3098 * emacs-lisp/timer.el (timer--time-setter): New function.
3099 (timer--time): Use it as gv-setter.
3100
3101 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
3102 setter is not a symbol.
3103
3104 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
3105
3106 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
3107 if sending fails. This makes debugging easier.
3108
3109 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
3110
3111 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
3112 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
3113 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
3114
3115 2013-08-12 Eli Zaretskii <eliz@gnu.org>
3116
3117 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
3118
3119 2013-08-12 Glenn Morris <rgm@gnu.org>
3120
3121 * format.el (format-annotate-function):
3122 Handle read-only text properties in the source. (Bug#14887)
3123
3124 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3125
3126 * net/eww.el (eww-display-html): Ignore coding system errors.
3127 One web site uses "utf-8lias" as the coding system.
3128
3129 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
3130
3131 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
3132
3133 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
3134
3135 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
3136 (tutorial--detailed-help): Remove unused local variables.
3137 (tutorial--save-tutorial-to): Use ignore-errors.
3138 (help-with-tutorial): Use looking-at-p.
3139
3140 * view.el (view-buffer-other-window, view-buffer-other-frame):
3141 Mark unused arguments.
3142
3143 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
3144 (woman-select-symbol-fonts, woman, woman-find-file)
3145 (woman-insert-file-contents, woman-non-underline-faces):
3146 Use string-match-p.
3147 (woman1-unquote): Move declaration.
3148
3149 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
3150 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
3151 argument. Remove unused local variable.
3152 (xml-parse-elem-type): Use string-match-p.
3153 (xml-substitute-numeric-entities): Use ignore-errors.
3154
3155 * calculator.el (calculator): Mark unused argument.
3156 (calculator-paste, calculator-quit, calculator-integer-p):
3157 Use ignore-errors.
3158 (calculator-string-to-number, calculator-decimal, calculator-exp)
3159 (calculator-op-or-exp): Use string-match-p.
3160
3161 * dired.el (dired-buffer-more-recently-used-p): Declare.
3162 (dired-insert-set-properties, dired-insert-old-subdirs):
3163 Use ignore-errors.
3164
3165 * dired-aux.el (dired-compress): Use ignore-errors.
3166 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
3167 (dired-do-async-shell-command, dired-do-shell-command)
3168 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
3169 (dired-insert-subdir-validate): Use string-match-p.
3170 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
3171 (dired-add-entry): Use string-match-p, looking-at-p.
3172 (dired-insert-subdir-newpos): Remove unused local variable.
3173
3174 * filenotify.el (file-notify-callback): Remove unused local variable.
3175
3176 * filesets.el (filesets-error): Mark unused argument.
3177 (filesets-which-command-p, filesets-filter-dir-names)
3178 (filesets-directory-files, filesets-get-external-viewer)
3179 (filesets-ingroup-get-data): Use string-match-p.
3180
3181 * find-file.el (ff-other-file-name, ff-other-file-name)
3182 (ff-find-the-other-file, ff-cc-hh-converter):
3183 Remove unused local variables.
3184 (ff-get-file-name): Use string-match-p.
3185 (ff-all-dirs-under): Use ignore-errors.
3186
3187 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
3188 (follow-select-if-visible): Remove unused local variable.
3189
3190 * forms.el (read-file-filter): Move declaration.
3191 (forms--make-format, forms--make-parser, forms-insert-record):
3192 Quote function with #'.
3193 (forms--update): Use string-match-p. Quote function with #'.
3194
3195 * help-mode.el (help-dir-local-var-def): Mark unused argument.
3196 (help-make-xrefs): Use looking-at-p.
3197 (help-xref-on-pp): Use looking-at-p, ignore-errors.
3198
3199 * ibuffer.el (ibuffer-ext-visible-p): Declare.
3200 (ibuffer-confirm-operation-on): Use string-match-p.
3201
3202 * msb.el (msb-item-handler, msb-dired-item-handler):
3203 Mark unused arguments.
3204
3205 * ses.el (ses-decode-cell-symbol)
3206 (ses-kill-override): Remove unused local variable.
3207 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
3208 (ses-load): Use ignore-errors, looking-at-p.
3209 (ses-jump-safe): Use ignore-errors.
3210 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
3211
3212 * tabify.el (untabify, tabify): Mark unused arguments.
3213
3214 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
3215 Mark unused argument.
3216 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
3217 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
3218
3219 * emacs-lisp/timer.el (timer--time): Define setter with
3220 gv-define-setter to avoid deprecation warning.
3221
3222 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
3223 (*record-cmpl-statistics-p*): Remove (was commented out).
3224 (cmpl-statistics-block): Remove (body was commented out).
3225 All callers changed.
3226 (add-completions-from-buffer, load-completions-from-file):
3227 Remove unused variables.
3228
3229 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
3230
3231 * filecache.el (file-cache-delete-file-list):
3232 Print message only when told so.
3233 (file-cache-files-matching): Use #' in mapconcat argument.
3234
3235 * ffap.el (ffap-url-at-point): Fix reference to variable
3236 thing-at-point-default-mail-uri-scheme.
3237
3238 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
3239
3240 * subr.el (define-error): New function.
3241 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
3242 error-file-not-found and define with define-error.
3243 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
3244 and define with define-error.
3245 * userlock.el (file-locked, file-supersession):
3246 * simple.el (mark-inactive):
3247 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
3248 * progmodes/ada-mode.el (ada-mode-errors):
3249 * play/life.el (life-extinct):
3250 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
3251 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
3252 * nxml/rng-util.el (rng-error):
3253 * nxml/rng-uri.el (rng-uri-error):
3254 * nxml/rng-match.el (rng-compile-error):
3255 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
3256 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
3257 * nxml/nxml-rap.el (nxml-scan-error):
3258 * nxml/nxml-outln.el (nxml-outline-error):
3259 * net/soap-client.el (soap-error):
3260 * net/gnutls.el (gnutls-error):
3261 * net/ange-ftp.el (ftp-error):
3262 * mpc.el (mpc-proc-error):
3263 * json.el (json-error, json-readtable-error, json-unknown-keyword)
3264 (json-number-format, json-string-escape, json-string-format)
3265 (json-key-format, json-object-format):
3266 * jka-compr.el (compression-error):
3267 * international/quail.el (quail-error):
3268 * international/kkc.el (kkc-error):
3269 * emacs-lisp/ert.el (ert-test-failed):
3270 * calc/calc.el (calc-error, inexact-result, math-overflow)
3271 (math-underflow):
3272 * bookmark.el (bookmark-error-no-filename):
3273 * epg.el (epg-error): Define with define-error.
3274
3275 * time.el (display-time-event-handler)
3276 (display-time-next-load-average): Don't call sit-for since it seems
3277 unnecessary (bug#15045).
3278
3279 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
3280 Use #' instead of ' to quote functions.
3281 (checkdoc-output-mode): Use setq-local.
3282 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
3283 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
3284 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
3285 (checkdoc-ispell, checkdoc-ispell-current-buffer)
3286 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
3287 (checkdoc-ispell-message-text, checkdoc-ispell-start)
3288 (checkdoc-ispell-continue, checkdoc-ispell-comments)
3289 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
3290
3291 * ido.el (ido-completion-help): Fix up compiler warning.
3292
3293 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
3294
3295 * frameset.el (frameset-p): Add autoload cookie.
3296 (frameset--jump-to-register): New function, based on code moved from
3297 register.el.
3298 (frameset-to-register): Move from register.el. Adapt to `registerv'.
3299
3300 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
3301 (frameset-restore, frameset-save, frameset-session-filter-alist):
3302 Remove declarations.
3303 (register-alist): Doc fix.
3304 (frameset-to-register): Move to frameset.el.
3305 (jump-to-register, describe-register-1): Remove frameset-specific code.
3306
3307 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3308
3309 * allout-widgets.el (allout-widgets-pre-command-business)
3310 (allout-widgets-post-command-business)
3311 (allout-widgets-after-change-handler)
3312 (allout-decorate-item-and-context, allout-set-boundary-marker)
3313 (allout-body-modification-handler)
3314 (allout-graphics-modification-handler): Mark ignored arguments.
3315 (allout-widgets-post-command-business)
3316 (allout-widgets-exposure-change-processor)
3317 (allout-widgets-exposure-undo-processor)
3318 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
3319 (allout-parse-item-at-point, allout-decorate-item-guides)
3320 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
3321 * allout.el (epa-passphrase-callback-function): Declare.
3322 (allout-overlay-insert-in-front-handler)
3323 (allout-overlay-interior-modification-handler)
3324 (allout-isearch-end-handler, allout-chart-siblings)
3325 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
3326 (allout-yank-processing, allout-process-exposed)
3327 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
3328 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
3329 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
3330 (lisp-indent-defform): Mark ignored arguments.
3331 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
3332 (calculate-lisp-indent): Remove unused variables.
3333 * international/characters.el (indian-2-column, arabic-2-column)
3334 (tibetan): Mark ignored arguments.
3335 (use-cjk-char-width-table): Mark ignored arguments.
3336 Remove unused variables.
3337 * international/fontset.el (build-default-fontset-data)
3338 (x-compose-font-name, create-fontset-from-fontset-spec):
3339 Mark ignored arguments.
3340 (fontset-plain-name): Remove unused variables.
3341 * international/mule.el (charset-id, charset-bytes, generic-char-p)
3342 (keyboard-coding-system): Mark ignored arguments.
3343 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
3344 * help.el (resize-temp-buffer-window):
3345 * window.el (display-buffer-in-major-side-window)
3346 (display-buffer-in-side-window, display-buffer-in-previous-window):
3347 Remove unused variables.
3348 * isearch.el (isearch-forward-symbol):
3349 * version.el (emacs-bzr-version-bzr):
3350 * international/mule-cmds.el (current-language-environment):
3351 * term/common-win.el (x-handle-iconic, x-handle-geometry)
3352 (x-handle-display):
3353 * term/pc-win.el (x-list-fonts, x-display-planes)
3354 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
3355 (x-server-version, x-display-screens, x-display-mm-height)
3356 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
3357 (x-selection-owner-p, x-own-selection-internal)
3358 (x-disown-selection-internal, x-get-selection-internal)
3359 (msdos-initialize-window-system):
3360 * term/tty-colors.el (tty-color-alist, tty-color-clear):
3361 * term/x-win.el (x-handle-no-bitmap-icon):
3362 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
3363 (vc-default-find-file-hook, vc-default-extra-menu):
3364 Mark ignored arguments.
3365
3366 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3367
3368 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
3369 break-condition in the context of the debugged code (bug#12685).
3370
3371 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
3372
3373 * comint.el:
3374 Do not use an overlay to highlight the last prompt. (Bug#14744)
3375 (comint-mode): Make comint-last-prompt buffer local.
3376 (comint-last-prompt): New variable.
3377 (comint-last-prompt-overlay): Remove. Superseded by
3378 comint-last-prompt.
3379 (comint-snapshot-last-prompt, comint-output-filter):
3380 Use comint-last-prompt.
3381
3382 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3383
3384 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
3385 (frameset-save): Check validity of the resulting frameset.
3386
3387 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
3388
3389 * ido.el (ido-record-command): Add doc string.
3390
3391 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3392
3393 * frameset.el (frameset): Do not disable creation of the default
3394 frameset-p predicate. Doc fix.
3395 (frameset-valid-p): New function, copied from the old predicate-p.
3396 Add additional checks.
3397 (frameset-restore): Check with frameset-valid-p.
3398 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
3399 (frameset-name, frameset-description, frameset-properties)
3400 (frameset-states): Add docstring.
3401 (frameset-session-filter-alist, frameset-persistent-filter-alist)
3402 (frameset-filter-alist): Doc fixes.
3403
3404 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3405
3406 * frameset.el (frameset-p, frameset-prop): Doc fixes.
3407
3408 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3409
3410 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
3411 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
3412 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
3413 (byte-compile-normal-call): Remove obsolescence check.
3414
3415 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3416
3417 * frameset.el (frameset-restore): Doc fix.
3418
3419 * register.el (frameset-frame-id, frameset-frame-with-id)
3420 (frameset-p, frameset-restore, frameset-save): Declare.
3421 (register-alist): Document framesets.
3422 (frameset-session-filter-alist): Declare.
3423 (frameset-to-register): New function.
3424 (jump-to-register): Implement jumping to framesets. Doc fix.
3425 (describe-register-1): Describe framesets.
3426
3427 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
3428
3429 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
3430
3431 * desktop.el (desktop-save-frameset): Use new frameset-save args.
3432 Use lexical-binding.
3433
3434 * frameset.el (frameset): Use type vector, not list (incompatible
3435 change). Do not declare a new constructor, use the default one.
3436 Upgrade suggested properties `app', `name' and `desc' to slots `app',
3437 `name' and `description', respectively, and add read-only slot
3438 `timestamp'. Doc fixes.
3439 (frameset-copy, frameset-persistent-filter-alist)
3440 (frameset-filter-alist, frameset-switch-to-gui-p)
3441 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
3442 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
3443 (frameset-filter-iconified, frameset-keep-original-display-p):
3444 Doc fixes.
3445 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
3446 Rename from frameset-filter-(save|restore)-param. All callers changed.
3447 Doc fix.
3448 (frameset-p): Adapt to change to vector and be more thorough.
3449 Change arg name to OBJECT. Doc fix.
3450 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
3451 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
3452 All callers changed.
3453 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
3454 All callers changed.
3455 (frameset--record-minibuffer-relationships): Rename from
3456 frameset--process-minibuffer-frames. All callers changed.
3457 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
3458 Use new default constructor (again). Doc fix.
3459 (frameset--find-frame-if): Rename from `frameset--find-frame.
3460 All callers changed.
3461 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
3462 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
3463 Doc fix.
3464 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
3465 PARAMETERS and WINDOW-STATE, respectively.
3466 (frameset-restore): Add new keyword argument PREDICATE.
3467 Reset frameset--target-display to nil. Doc fix.
3468
3469 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3470
3471 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
3472 (bat-mode): Use it.
3473 (bat-mode-syntax-table): Mark \n as end-of-comment.
3474 (bat-font-lock-keywords): Remove comment rule.
3475
3476 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
3477 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
3478
3479 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
3480 (byte-compile-callargs-warn): Use `push'.
3481 (byte-compile-arglist-warn): Ignore higher-order "calls".
3482 (byte-compile-file-form-autoload): Use `pcase'.
3483 (byte-compile-function-form): If quoting a symbol, check that it exists.
3484
3485 2013-08-07 Eli Zaretskii <eliz@gnu.org>
3486
3487 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
3488 and add a few popular commands found in batch files.
3489 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
3490 (dos-mode): Doc fixes.
3491
3492 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3493
3494 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
3495 (dos-mode): Use setq-local. Add space after "rem".
3496 (dos-mode-syntax-table): Don't use "w" for symbol chars.
3497 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
3498
3499 2013-08-07 Arni Magnusson <arnima@hafro.is>
3500
3501 * progmodes/dos.el: New file.
3502 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
3503 dos-mode.
3504
3505 2013-08-06 Glenn Morris <rgm@gnu.org>
3506
3507 * calendar/calendar.el: Add new faces, and day-header-array.
3508 (calendar-weekday-header, calendar-weekend-header)
3509 (calendar-month-header): New faces.
3510 (calendar-day-header-construct): New function.
3511 (calendar-day-header-width): Also :set calendar-day-header-array.
3512 (calendar-american-month-header, calendar-european-month-header)
3513 (calendar-iso-month-header): Use calendar- faces.
3514 (calendar-generate-month):
3515 Use calendar-day-header-array for day headers; apply faces to them.
3516 (calendar-mode): Check calendar-font-lock-keywords non-nil.
3517 (calendar-abbrev-construct): Add optional maxlen argument.
3518 (calendar-day-name-array): Doc fix.
3519 (calendar-day-name-array, calendar-abbrev-length)
3520 (calendar-day-abbrev-array):
3521 Also :set calendar-day-header-array, and maybe redraw.
3522 (calendar-day-header-array): New option. (Bug#15007)
3523 (calendar-font-lock-keywords): Set to nil and make obsolete.
3524 (calendar-day-name): Add option to use header array.
3525
3526 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3527
3528 * net/shr.el (shr-render-td): Remove debugging.
3529 (shr-render-td): Make width computation consistent by defaulting
3530 all zero-width columns to 10 characters. This may not be optimal,
3531 but it's at least consistent.
3532 (shr-make-table-1): Redo last change to fix the real problem in
3533 colspan handling.
3534
3535 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3536
3537 * files.el (cache-long-line-scans):
3538 Make obsolete alias to `cache-long-scans'.
3539
3540 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3541
3542 * frameset.el (frameset, frameset-filter-alist)
3543 (frameset-filter-params, frameset-save, frameset--reuse-frame)
3544 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
3545 (frameset-compute-pos): Rename from frameset--compute-pos,
3546 and add docstring.
3547 (frameset-move-onscreen): Use frameset-compute-pos.
3548 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3549
3550 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
3551 Fix typos in docstrings.
3552
3553 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3554
3555 * frame.el (get-other-frame): Tiny cleanup.
3556
3557 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3558
3559 * vc/vc.el (vc-default-ignore-completion-table):
3560 Silence byte-compiler warning.
3561
3562 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
3563 slot , which can indeed be nil.
3564 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3565 Move entry for `left' from persistent to live filter alist.
3566 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
3567 Doc fixes.
3568 (frameset-filter-params): When restoring a frame, copy items added to
3569 `filtered', to avoid unwittingly modifying the original parameters.
3570 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
3571 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
3572
3573 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
3574 to use looking-at-p instead of looking-at. (Bug#15028)
3575
3576 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3577
3578 Revert introduction of isearch-filter-predicates (bug#14714).
3579 Rely on add-function instead.
3580 * isearch.el (isearch-filter-predicates): Rename it back to
3581 isearch-filter-predicate.
3582 (isearch-message-prefix): Use advice-function-mapc and advice
3583 properties to get the isearch-message-prefix.
3584 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
3585 instead of run-hook-with-args-until-failure.
3586 (isearch-filter-visible): Not obsolete any more.
3587 * loadup.el: Preload nadvice.
3588 * replace.el (perform-replace): Revert to funcall
3589 instead of run-hook-with-args-until-failure.
3590 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
3591 * dired-aux.el (dired-isearch-filenames-mode): Rename from
3592 dired-isearch-filenames-toggle; make it into a proper minor mode.
3593 Use add/remove-function.
3594 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
3595 Call the minor-mode rather than add/remove-hook.
3596 (dired-isearch-filter-filenames):
3597 Remove isearch-message-prefix property.
3598 * info.el (Info--search-loop): New function, extracted from Info-search.
3599 Funcall isearch-filter-predicate instead of
3600 run-hook-with-args-until-failure isearch-filter-predicates.
3601 (Info-search): Use it.
3602 (Info-mode): Use isearch-filter-predicate instead of
3603 isearch-filter-predicates.
3604
3605 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3606
3607 Do not call to `selected-window' where it is assumed by default.
3608 Affected functions are `window-minibuffer-p', `window-dedicated-p',
3609 `window-hscroll', `window-width', `window-height', `window-buffer',
3610 `window-frame', `window-start', `window-point', `next-window'
3611 and `window-display-table'.
3612 * abbrev.el (abbrev--default-expand):
3613 * bs.el (bs--show-with-configuration):
3614 * buff-menu.el (Buffer-menu-mouse-select):
3615 * calc/calc.el (calc):
3616 * calendar/calendar.el (calendar-generate-window):
3617 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
3618 (diary-make-entry):
3619 * comint.el (send-invisible, comint-dynamic-complete-filename)
3620 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
3621 * completion.el (complete):
3622 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
3623 * disp-table.el (describe-current-display-table):
3624 * doc-view.el (doc-view-insert-image):
3625 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
3626 * ehelp.el (with-electric-help):
3627 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3628 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
3629 * emacs-lisp/helper.el (Helper-help-scroller):
3630 * emulation/cua-base.el (cua--post-command-handler-1):
3631 * eshell/esh-mode.el (eshell-output-filter):
3632 * ffap.el (ffap-gnus-wrapper):
3633 * help-macro.el (make-help-screen):
3634 * hilit-chg.el (highlight-compare-buffers):
3635 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
3636 * hl-line.el (global-hl-line-highlight):
3637 * icomplete.el (icomplete-simple-completing-p):
3638 * isearch.el (isearch-done):
3639 * jit-lock.el (jit-lock-stealth-fontify):
3640 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
3641 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
3642 * mpc.el (mpc-tagbrowser, mpc):
3643 * net/rcirc.el (rcirc-any-buffer):
3644 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
3645 * play/landmark.el (landmark-max-width, landmark-max-height):
3646 * play/zone.el (zone):
3647 * progmodes/compile.el (compilation-goto-locus):
3648 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
3649 * progmodes/etags.el (find-tag-other-window):
3650 * progmodes/fortran.el (fortran-column-ruler):
3651 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
3652 * progmodes/verilog-mode.el (verilog-point-text):
3653 * reposition.el (reposition-window):
3654 * rot13.el (toggle-rot13-mode):
3655 * server.el (server-switch-buffer):
3656 * shell.el (shell-dynamic-complete-command)
3657 (shell-dynamic-complete-environment-variable):
3658 * simple.el (insert-buffer, set-selective-display)
3659 (delete-completion-window):
3660 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
3661 (speedbar-recenter):
3662 * startup.el (fancy-splash-head):
3663 * textmodes/ispell.el (ispell-command-loop):
3664 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
3665 * tutorial.el (help-with-tutorial):
3666 * vc/add-log.el (add-change-log-entry):
3667 * vc/compare-w.el (compare-windows):
3668 * vc/ediff-help.el (ediff-indent-help-message):
3669 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
3670 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
3671 (ediff-setup-control-frame):
3672 * vc/emerge.el (emerge-position-region):
3673 * vc/pcvs-util.el (cvs-bury-buffer):
3674 * window.el (walk-windows, mouse-autoselect-window-select):
3675 * winner.el (winner-set-conf, winner-undo): Related users changed.
3676
3677 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3678
3679 * frameset.el (frameset--set-id): Doc fix.
3680 (frameset-frame-id, frameset-frame-id-equal-p)
3681 (frameset-locate-frame-id): New functions.
3682 (frameset--process-minibuffer-frames, frameset--reuse-frame)
3683 (frameset-restore): Use them.
3684
3685 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3686
3687 Do not call to `selected-frame' where it is assumed by default.
3688 Affected functions are `raise-frame', `redraw-frame',
3689 `frame-first-window', `frame-terminal' and `delete-frame'.
3690 * calendar/appt.el (appt-disp-window):
3691 * epg.el (epg-wait-for-completion):
3692 * follow.el (follow-delete-other-windows-and-split)
3693 (follow-avoid-tail-recenter):
3694 * international/mule.el (set-terminal-coding-system):
3695 * mail/rmail.el (rmail-mail-return):
3696 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
3697 * progmodes/f90.el (f90-add-imenu-menu):
3698 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
3699 * server.el (server-switch-buffer):
3700 * simple.el (delete-completion-window):
3701 * talk.el (talk):
3702 * term/xterm.el (terminal-init-xterm-modify-other-keys)
3703 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
3704 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
3705 * vc/ediff.el (ediff-documentation): Related users changed.
3706 * frame.el (selected-terminal): Remove the leftover.
3707
3708 2013-08-05 Glenn Morris <rgm@gnu.org>
3709
3710 * calendar/calendar.el (calendar-generate-month):
3711 Fix for calendar-column-width != 1 + calendar-day-digit-width.
3712 (calendar-generate-month, calendar-font-lock-keywords):
3713 Fix for calendar-day-header-width > length of any day name.
3714
3715 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3716
3717 * desktop.el (desktop-clear): Use new name of sort predicate.
3718
3719 * frameset.el (frameset): Add docstring. Move :version property to its
3720 own `version' slot.
3721 (frameset-copy): Rename from copy-frameset.
3722 (frameset-p): Check more thoroughly.
3723 (frameset-prop): Do not check for :version, which is no longer a prop.
3724 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3725 Use new :never value instead of t.
3726 (frameset-filter-alist): Expand and clarify docstring.
3727 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3728 (frameset-filter-minibuffer, frameset-filter-save-param)
3729 (frameset-filter-restore-param, frameset-filter-iconified):
3730 Add pointer to docstring of frameset-filter-alist.
3731 (frameset-filter-params): Rename filter values to be more meaningful:
3732 :never instead of t, and reverse the meanings of :save and :restore.
3733 (frameset--process-minibuffer-frames): Clarify error message.
3734 (frameset-save): Avoid unnecessary and confusing call to framep.
3735 Use new BOA constructor for framesets.
3736 (frameset--reuse-list): Doc fix.
3737 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3738 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3739 (frameset-minibufferless-first-p): Doc fix.
3740 Rename from frameset-sort-frames-for-deletion.
3741 (frameset-restore): Doc fixes. Use new function names.
3742 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3743
3744 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3745
3746 * desktop.el (desktop-restore-forces-onscreen)
3747 (desktop-restore-reuses-frames): Document :keyword constant values.
3748 (desktop-filter-parameters-alist): Remove, now identical to
3749 frameset-filter-alist.
3750 (desktop--filter-tty*): Remove, moved to frameset.el.
3751 (desktop-save-frameset, desktop-restore-frameset):
3752 Do not pass :filters argument.
3753
3754 * frameset.el (frameset-live-filter-alist)
3755 (frameset-persistent-filter-alist): New variables.
3756 (frameset-filter-alist): Use them. Add autoload cookie.
3757 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3758 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3759 `frameset--id' (it's supposed to be internal to frameset.el).
3760 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3761 (frameset--initial-params): New function.
3762 (frameset--get-frame): Use it. Doc fix.
3763 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3764 Accept :all, not 'all.
3765 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3766 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3767 with fbound symbols. Fix frame id matching, and remove matching ids if
3768 the frame being restored is deleted. Obey :delete.
3769
3770 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3771
3772 * subr.el (macrop): New function.
3773 (text-clone--maintaining): New var.
3774 (text-clone--maintain): Rename from text-clone-maintain. Use it
3775 instead of inhibit-modification-hooks.
3776
3777 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3778 a proxy, so as handle autoloads and redefinitions of the target.
3779 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3780
3781 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3782 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3783 (pcase--mutually-exclusive-p): New function.
3784 (pcase--split-consp): Use it.
3785 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3786 mutually exclusive with the current predicate.
3787
3788 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3789 (edebug-macrop): Remove. Use `macrop' instead.
3790 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3791 (ad-macro-p):
3792 * eshell/esh-cmd.el (eshell-macrop):
3793 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3794
3795 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3796
3797 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3798 (advice-mapc): New function, using it.
3799 (advice-function-member-p): New function.
3800 (advice--normalize): Store the cdr in advice--saved-rewrite since
3801 that's the part that will be changed.
3802 (advice--symbol-function): New function.
3803 (advice-remove): Handle removal before the function is defined.
3804 Adjust to new advice--saved-rewrite.
3805 (advice-member-p): Use advice-function-member-p and
3806 advice--symbol-function.
3807
3808 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3809
3810 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3811 (frameset-filter-minibuffer): Doc fix.
3812 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
3813 (frameset--set-id, frameset--process-minibuffer-frames)
3814 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3815 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
3816
3817 * desktop.el (desktop-clear): Only delete frames when called
3818 interactively and desktop-restore-frames is non-nil. Doc fix.
3819 (desktop-read): Set desktop-saved-frameset to nil.
3820
3821 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3822
3823 * vc/vc.el (vc-ignore): Rewrite.
3824 (vc-default-ignore-completion-table):
3825 (vc--read-lines):
3826 (vc--add-line, vc--remove-regexp): New functions.
3827
3828 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3829 (vc-svn-ignore-completion-table): New function.
3830
3831 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3832 (vc-hg-ignore-completion-table):
3833 (vc-hg-find-ignore-file): New functions.
3834
3835 * vc/vc-git.el (vc-git-ignore): Rewrite.
3836 (vc-git-ignore-completion-table):
3837 (vc-git-find-ignore-file): New functions.
3838
3839 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3840
3841 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3842 (vc-bzr-ignore-completion-table):
3843 (vc-bzr-find-ignore-file): New functions.
3844
3845 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
3846
3847 * frameset.el (frameset-prop): New function and setter.
3848 (frameset-save): Do not modify frame list passed by the caller.
3849
3850 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3851
3852 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3853
3854 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3855
3856 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3857 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3858
3859 * custom.el (custom-initialize-default, custom-initialize-set)
3860 (custom-initialize-reset, custom-initialize-changed): Affect the
3861 toplevel-default-value (bug#6275, bug#14586).
3862 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3863 for bug#6275.
3864
3865 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3866
3867 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3868 Add cl-def* expressions.
3869
3870 * frameset.el (frameset-filter-params): Fix order of arguments.
3871
3872 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3873
3874 Move code related to saving frames to frameset.el.
3875 * desktop.el: Require frameset.
3876 (desktop-restore-frames): Doc fix.
3877 (desktop-restore-reuses-frames): Rename from
3878 desktop-restoring-reuses-frames.
3879 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3880 (desktop-clear): Clear frames too.
3881 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3882 (desktop--filter-tty*, desktop-save, desktop-read):
3883 Use frameset functions.
3884 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3885 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3886 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3887 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3888 (desktop--process-minibuffer-frames, desktop-save-frames)
3889 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3890 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3891 (desktop--sort-states, desktop-restoring-frames-p)
3892 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3893 (desktop-restoring-frameset-p, desktop-restore-frameset)
3894 (desktop--check-dont-save, desktop-save-frameset): New functions.
3895 (desktop--app-id): New constant.
3896 (desktop-first-buffer, desktop-buffer-ok-count)
3897 (desktop-buffer-fail-count): Move before first use.
3898 * frameset.el: New file.
3899
3900 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3901
3902 * files.el: Use lexical-binding.
3903 (dir-locals-read-from-file): Remove unused `err' variable.
3904 (hack-dir-local-variables--warned-coding): New var.
3905 (hack-dir-local-variables): Use it to avoid repeated warnings.
3906 (make-backup-file-name--default-function): New function.
3907 (make-backup-file-name-function): Use it as default.
3908 (buffer-stale--default-function): New function.
3909 (buffer-stale-function): Use it as default.
3910 (revert-buffer-insert-file-contents--default-function): New function.
3911 (revert-buffer-insert-file-contents-function): Use it as default.
3912 (insert-directory): Avoid add-to-list.
3913
3914 * autorevert.el (auto-revert-handler): Simplify.
3915 Use buffer-stale--default-function.
3916
3917 2013-08-01 Tassilo Horn <tsdh@gnu.org>
3918
3919 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3920
3921 * whitespace.el (whitespace-ensure-local-variables): New function.
3922 (whitespace-cleanup-region): Call it.
3923 (whitespace-turn-on): Call it.
3924
3925 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
3926
3927 Complete file name handlers.
3928
3929 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3930 (tramp-handle-verify-visited-file-modtime)
3931 (tramp-handle-file-notify-rm-watch): New functions.
3932 (tramp-call-process): Do not bind `default-directory'.
3933
3934 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3935 Order alphabetically.
3936 [access-file, add-name-to-file, dired-call-process]:
3937 [dired-compress-file, file-acl, file-notify-rm-watch]:
3938 [file-ownership-preserved-p, file-selinux-context]:
3939 [make-directory-internal, make-symbolic-link, set-file-acl]:
3940 [set-file-selinux-context, set-visited-file-modtime]:
3941 [verify-visited-file-modtime]: Add handler.
3942 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3943
3944 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3945 [file-notify-add-watch, file-notify-rm-watch]:
3946 [set-file-times, set-visited-file-modtime]:
3947 [verify-visited-file-modtime]: Add handler.
3948 (with-tramp-gvfs-error-message)
3949 (tramp-gvfs-handle-set-visited-file-modtime)
3950 (tramp-gvfs-fuse-file-name): Remove.
3951 (tramp-gvfs-handle-file-notify-add-watch)
3952 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3953 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3954
3955 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3956 Order alphabetically.
3957 [file-notify-rm-watch ]: Use default Tramp handler.
3958 [executable-find]: Remove private handler.
3959 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3960 `default-directory'.
3961 (tramp-sh-handle-executable-find)
3962 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3963 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3964 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3965 Do not use `format' in `tramp-message'.
3966
3967 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3968 [file-notify-rm-watch, set-visited-file-modtime]:
3969 [verify-visited-file-modtime]: Add handler.
3970 (tramp-smb-call-winexe): Do not bind `default-directory'.
3971
3972 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3973
3974 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
3975
3976 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
3977
3978 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
3979 use it.
3980 (log-view-diff-changeset): Same.
3981 (log-view-diff-common): Call backend command `previous-revision'
3982 to find out the previous revision, in both cases. Swap the
3983 variables `to' and `fr', so that `fr' usually refers to the
3984 earlier revision (Bug#14989).
3985
3986 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
3987
3988 * ibuf-ext.el (ibuffer-filter-by-filename):
3989 Make it work with dired buffers too.
3990
3991 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3992
3993 * emacs-lisp/re-builder.el (reb-color-display-p):
3994 * files.el (save-buffers-kill-terminal):
3995 * net/browse-url.el (browse-url):
3996 * server.el (server-save-buffers-kill-terminal):
3997 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3998 Prefer nil to selected-frame for the first arg of frame-parameter.
3999
4000 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
4001
4002 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
4003
4004 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
4005
4006 * minibuffer.el (completion--twq-all): Try and preserve each
4007 completion's case choice (bug#14907).
4008
4009 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4010
4011 * net/network-stream.el (open-network-stream): Mention the new
4012 :nogreeting parameter.
4013 (network-stream-open-starttls): Use the :nogreeting parameter
4014 (bug#14938).
4015
4016 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
4017
4018 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
4019 more natural than popping.
4020
4021 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
4022 (shr-urlify): Highlight under mouse.
4023
4024 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
4025
4026 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
4027
4028 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
4029
4030 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
4031 buffer for output.
4032
4033 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
4034 point-min==1. Fix search string. Fix parentheses missing.
4035
4036 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
4037 assume point-min==1. Fix search string. Fix parentheses missing.
4038
4039 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
4040
4041 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
4042 buffer for output.
4043
4044 2013-07-29 Eli Zaretskii <eliz@gnu.org>
4045
4046 * frame.el (frame-notice-user-settings): Avoid inflooping when the
4047 initial frame is minibuffer-less. (Bug#14841)
4048
4049 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
4050
4051 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
4052 option.
4053
4054 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
4055 (tramp-maybe-open-connection): Use it.
4056
4057 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
4058
4059 * desktop.el (desktop--make-frame): Include `minibuffer' in the
4060 minimal set of parameters passed when creating a frame, because
4061 the minibuffer status of a frame cannot be changed later.
4062
4063 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
4064
4065 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
4066 replace-regexp-in-string and inadvertent omissions in previous change.
4067 (todo-filter-items): Ensure only file names are comma-separated in
4068 name of filtered items buffer.
4069
4070 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
4071
4072 * desktop.el: Optionally force offscreen frames back onscreen.
4073 (desktop-restoring-reuses-frames): New option.
4074 (desktop--compute-pos, desktop--move-onscreen): New functions.
4075 (desktop--make-frame): Use desktop--move-onscreen.
4076
4077 2013-07-27 Alan Mackenzie <acm@muc.de>
4078
4079 Fontify a Java generic method as a function.
4080 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
4081 value to t.
4082
4083 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
4084
4085 * calendar/todo-mode.el: Add command to rename todo files.
4086 (todo-rename-file): New command.
4087 (todo-key-bindings-t): Add key binding for it. Change the
4088 bindings of todo-filter-regexp-items(-multifile) to use `x'
4089 instead of `r', since the latter is better suited to the new
4090 renaming command.
4091
4092 2013-07-27 Alan Mackenzie <acm@muc.de>
4093
4094 Make Java try-with-resources statement parse properly.
4095 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
4096 (c-block-stmt-1-2-key): New language constants/variables.
4097 * progmodes/cc-engine.el (c-beginning-of-statement-1)
4098 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
4099 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
4100 with c-block-stmt-1-2-key.
4101
4102 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
4103
4104 * desktop.el (desktop--make-frame): Apply most frame parameters after
4105 creating the frame to force (partially or totally) offscreen frames to
4106 be restored as such.
4107
4108 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
4109
4110 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
4111 (Bug#14948)
4112
4113 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4114
4115 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
4116 `base' arg of backtrace-frame.
4117
4118 2013-07-26 Eli Zaretskii <eliz@gnu.org>
4119
4120 * simple.el (list-processes): Doc fix.
4121
4122 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
4123
4124 * desktop.el (desktop--select-frame):
4125 Try harder to reuse existing frames.
4126
4127 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4128
4129 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
4130 (edebug-eval): Use backtrace-eval.
4131 (edebug--display, edebug--recursive-edit): Don't let-bind the
4132 edebug-outer-* vars that keep track of variables we locally let-bind.
4133 (edebug-outside-excursion): Don't restore outside values of locally
4134 let-bound vars.
4135 (edebug--display): Use user-error.
4136 (cl-lexical-debug, cl-debug-env): Remove.
4137
4138 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
4139
4140 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
4141 are restored to be sure that they are visible before deleting any
4142 remaining ones.
4143
4144 2013-07-26 Matthias Meulien <orontee@gmail.com>
4145
4146 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
4147 vc-print-root-log. (Bug#14948)
4148
4149 2013-07-26 Richard Stallman <rms@gnu.org>
4150
4151 Add aliases for encrypting mail.
4152 * epa.el (epa-mail-aliases): New option.
4153 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
4154 Bind inhibit-read-only so read-only text doesn't ruin everything.
4155 (epa-mail-default-recipients): New subroutine broken out.
4156 Handle epa-mail-aliases.
4157
4158 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4159
4160 Add support for lexical variables to the debugger's `e' command.
4161 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
4162 vars, except for debugger-outer-match-data.
4163 (debugger-frame-number): Move check for "on a function call" from
4164 callers into it. Add `skip-base' argument.
4165 (debugger-frame, debugger-frame-clear): Simplify accordingly.
4166 (debugger-env-macro): Only reset the state stored in non-variables,
4167 i.e. current-buffer and match-data.
4168 (debugger-eval-expression): Rewrite using backtrace-eval.
4169 * subr.el (internal--called-interactively-p--get-frame): Remove.
4170 (called-interactively-p):
4171 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
4172 `base' arg of backtrace-frame instead.
4173
4174 2013-07-26 Glenn Morris <rgm@gnu.org>
4175
4176 * align.el (align-regexp): Doc fix. (Bug#14857)
4177 (align-region): Explicit error if subexpression missing/does not match.
4178
4179 * simple.el (global-visual-line-mode):
4180 Do not duplicate the mode lighter. (Bug#14858)
4181
4182 2013-07-25 Martin Rudalics <rudalics@gmx.at>
4183
4184 * window.el (display-buffer): In display-buffer bind
4185 split-window-keep-point to t, bug#14829.
4186
4187 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
4188
4189 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
4190 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
4191 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
4192 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4193 Change accordingly.
4194 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4195 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
4196
4197 2013-07-25 Glenn Morris <rgm@gnu.org>
4198
4199 * dired-x.el (dired-mark-extension): Convert comment to doc string.
4200
4201 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
4202
4203 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
4204 parameter to modify-frame-parameters if the value has not changed;
4205 this is a workaround for bug#14949.
4206 (desktop--make-frame): On cl-delete-if call, check parameter name,
4207 not full parameter.
4208
4209 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
4210
4211 * vc/vc.el (vc-ignore): New function.
4212
4213 * vc/vc-svn.el (vc-svn-ignore): New function.
4214
4215 * vc/vc-hg.el (vc-hg-ignore): New function.
4216
4217 * vc/vc-git.el (vc-git-ignore): New function.
4218
4219 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
4220 (vc-dir-ignore): New function.
4221
4222 * vc/vc-cvs.el (vc-cvs-ignore): New function.
4223 (cvs-append-to-ignore): Move here from pcvs.el.
4224
4225 * vc/vc-bzr.el (vc-bzr-ignore): New function.
4226
4227 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
4228
4229 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
4230
4231 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
4232 (desktop-restore-frames): Warn when deleting an existing frame failed.
4233
4234 2013-07-24 Glenn Morris <rgm@gnu.org>
4235
4236 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
4237
4238 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
4239
4240 * filenotify.el (file-notify-supported-p):
4241 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4242 Remove functions.
4243
4244 * autorevert.el (auto-revert-use-notify):
4245 (auto-revert-notify-add-watch):
4246 * net/tramp.el (tramp-file-name-for-operation):
4247 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4248 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4249 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4250 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4251 Remove `file-notify-supported-p' entry.
4252
4253 2013-07-24 Glenn Morris <rgm@gnu.org>
4254
4255 * printing.el: Replace all uses of deleted ps-windows-system,
4256 ps-lp-system, ps-flatten-list with lpr- versions.
4257
4258 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4259
4260 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
4261 checked with memq (bug#14935).
4262
4263 * files.el (revert-buffer-function): Use a non-nil default.
4264 (revert-buffer-preserve-modes): Declare var to
4265 provide access to the `preserve-modes' argument.
4266 (revert-buffer): Let-bind it.
4267 (revert-buffer--default): New function, extracted from revert-buffer.
4268
4269 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4270
4271 * lpr.el: Signal print errors more prominently.
4272 (print-region-function): Don't default to nil.
4273 (lpr-print-region): New function, extracted from print-region-1.
4274 Check lpr's return value and signal an error in case of problem.
4275 (print-region-1): Use it.
4276 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
4277 versions instead.
4278 (ps-printer-name): Default to nil.
4279 (ps-printer-name-option): Default to lpr-printer-switch.
4280 (ps-print-region-function): Don't default to nil.
4281 (ps-postscript-code-directory): Simplify default.
4282 (ps-do-despool): Use lpr-print-region to properly check the outcome.
4283 (ps-string-list, ps-eval-switch, ps-flatten-list)
4284 (ps-flatten-list-1): Remove.
4285 (ps-multibyte-buffer): Avoid setq.
4286 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
4287 (print-region-function, ps-print-region-function): Don't set them here.
4288
4289 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
4290
4291 * ido.el (ido-fractionp):
4292 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
4293 (ido-max-file-prompt-width, ido-unc-hosts-cache)
4294 (ido-max-directory-size, ido-max-dir-file-cache)
4295 (ido-decorations): Doc fix.
4296
4297 * ansi-color.el: Fix old URL.
4298
4299 2013-07-23 Michael R. Mauger <michael@mauger.com>
4300
4301 * progmodes/sql.el: Version 3.3
4302 (sql-product-alist): Improve oracle :prompt-cont-regexp.
4303 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
4304 (sql-interactive-remove-continuation-prompt): Rewrite, use
4305 functions above. Fix continuation prompt and complete output line
4306 handling.
4307 (sql-redirect-one, sql-execute): Use `read-only-mode' on
4308 redirected output buffer.
4309 (sql-mode): Restore deleted code (Bug#13591).
4310
4311 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4312
4313 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
4314
4315 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
4316
4317 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
4318
4319 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4320 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4321 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
4322
4323 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4324
4325 * desktop.el (desktop-clear): Simplify; remove useless checks
4326 against invalid buffer names.
4327 (desktop-list*): Use cl-list*.
4328 (desktop-buffer-info, desktop-create-buffer): Simplify.
4329
4330 2013-07-23 Leo Liu <sdl.web@gmail.com>
4331
4332 * bookmark.el (bookmark-make-record): Restore NAME as a default
4333 value. (Bug#14933)
4334
4335 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4336
4337 * emacs-lisp/autoload.el (autoload--setup-output): New function,
4338 extracted from autoload--insert-text.
4339 (autoload--insert-text): Remove.
4340 (autoload--print-cookie-text): New function, extracted from
4341 autoload--insert-cookie-text.
4342 (autoload--insert-cookie-text): Remove.
4343 (autoload-generate-file-autoloads): Adjust calls accordingly.
4344
4345 * winner.el (winner-hook-installed-p): Remove.
4346 (winner-mode): Simplify accordingly.
4347
4348 * subr.el (add-to-list): Fix compiler-macro when `append' is
4349 not constant. Don't use `cl-member' for the base case.
4350
4351 * progmodes/subword.el: Fix boundary case (bug#13758).
4352 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
4353 own group.
4354 (subword-backward-regexp): Make it a constant.
4355 (subword-forward-internal): Don't treat a trailing capital as the
4356 beginning of a word.
4357
4358 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4359
4360 * emacs-lisp/package.el (package-menu-mode): Don't modify the
4361 global value of tabulated-list-revert-hook (bug#14930).
4362
4363 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
4364
4365 * desktop.el: Require 'cl-lib.
4366 (desktop-before-saving-frames-functions): New hook.
4367 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
4368 for frames being saved. Rename from desktop--save-minibuffer-frames.
4369 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
4370 Do not save frames with non-nil `desktop-dont-save' parameter.
4371 Filter out deleted frames.
4372 (desktop--find-frame): Use cl-find-if.
4373 (desktop--select-frame): Use cl-(first|second|third) to access values
4374 of desktop-mini.
4375 (desktop--make-frame): Use cl-delete-if.
4376 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
4377 (desktop-restore-frames): Use cl-(first|second|third) to access values
4378 of desktop-mini. Look for visible frame at the end, not while
4379 restoring frames.
4380
4381 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
4382 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
4383 Use string-match-p, looking-at-p (bug#14927).
4384
4385 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
4386
4387 * desktop.el (desktop-saved-frame-states):
4388 Rename from desktop--saved-states; all users changed.
4389 (desktop-save-frames): Rename from desktop--save-frames.
4390 Do not save state to desktop file.
4391 (desktop-save): Save desktop-saved-frame-states to desktop file
4392 and reset to nil.
4393 (desktop-restoring-frames-p): New function.
4394 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
4395 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
4396 buffer-lists when restoring frames. Suggested by Martin Rudalics.
4397
4398 * desktop.el: Correctly restore iconified frames.
4399 (desktop--filter-iconified-position): New function.
4400 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
4401
4402 2013-07-20 Glenn Morris <rgm@gnu.org>
4403
4404 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
4405 Let `message' do the formatting.
4406 (def-gdb-preempt-display-buffer): Add explicit format.
4407
4408 * image-dired.el (image-dired-track-original-file):
4409 Use with-current-buffer.
4410 (image-dired-track-thumbnail): Use with-current-buffer.
4411 Avoid changing point of wrong window.
4412
4413 * image-dired.el (image-dired-track-original-file):
4414 Avoid changing point of wrong window. (Bug#14909)
4415
4416 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
4417
4418 * progmodes/gdb-mi.el (gdb-done-or-error):
4419 Guard against "%" in gdb output. (Bug#14127)
4420
4421 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
4422
4423 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
4424 (Bug#14826)
4425
4426 * international/mule.el (coding-system-iso-2022-flags): Fix last
4427 change.
4428
4429 2013-07-20 Kenichi Handa <handa@gnu.org>
4430
4431 * international/mule.el (coding-system-iso-2022-flags):
4432 Add `8-bit-level-4'. (Bug#8522)
4433
4434 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4435
4436 * net/shr.el (shr-mouse-browse-url): New command and keystroke
4437 (bug#14815).
4438
4439 * net/eww.el (eww-process-text-input): Allow inputting when the
4440 point is at the start of the line, as the properties aren't
4441 front-sticky.
4442
4443 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
4444 degenerate widths.
4445
4446 2013-07-19 Richard Stallman <rms@gnu.org>
4447
4448 * epa.el (epa-popup-info-window): Doc fix.
4449
4450 * subr.el (split-string): New arg TRIM.
4451
4452 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
4453
4454 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
4455 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
4456
4457 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
4458
4459 * filenotify.el (file-notify--library): Rename from
4460 `file-notify-support'. Do not autoload. Adapt all uses.
4461 (file-notify-supported-p): New defun.
4462
4463 * autorevert.el (auto-revert-use-notify):
4464 Use `file-notify-supported-p' instead of `file-notify-support'.
4465 Adapt docstring.
4466 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
4467
4468 * net/tramp.el (tramp-file-name-for-operation):
4469 Add `file-notify-supported-p'.
4470
4471 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4472 New defun.
4473 (tramp-sh-file-name-handler-alist): Add it as handler for
4474 `file-notify-supported-p '.
4475
4476 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4477 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4478 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4479 Add `ignore' as handler for `file-notify-*' functions.
4480
4481 2013-07-17 Eli Zaretskii <eliz@gnu.org>
4482
4483 * simple.el (line-move-partial, line-move): Don't start vscroll or
4484 scroll-up if the current line is not taller than the window.
4485 (Bug#14881)
4486
4487 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
4488
4489 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
4490 highlight question marks in the method names as strings.
4491 (ruby-block-beg-keywords): Inline.
4492 (ruby-font-lock-keyword-beg-re): Extract from
4493 `ruby-font-lock-keywords'.
4494
4495 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
4496
4497 * frame.el (blink-cursor-blinks): New defcustom.
4498 (blink-cursor-blinks-done): New defvar.
4499 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
4500 (blink-cursor-timer-function): Check if number of blinks has been
4501 done on X and NS.
4502 (blink-cursor-suspend, blink-cursor-check): New defuns.
4503
4504 2013-07-15 Glenn Morris <rgm@gnu.org>
4505
4506 * edmacro.el (edmacro-format-keys): Fix previous change.
4507
4508 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
4509
4510 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
4511 The hack didn't work outside English locales anyway.
4512
4513 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
4514
4515 * simple.el (define-alternatives): Rename from alternatives-define,
4516 per RMS' suggestion.
4517
4518 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
4519
4520 * desktop.el (desktop-restore-frames): Change default to t.
4521 (desktop-restore-in-current-display): Now offer more options.
4522 (desktop-restoring-reuses-frames): New customization option.
4523 (desktop--saved-states): Doc fix.
4524 (desktop-filter-parameters-alist): New variable, renamed and expanded
4525 from desktop--excluded-frame-parameters.
4526 (desktop--target-display): New variable.
4527 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
4528 (desktop--filter-tty*, desktop--filter-*-color)
4529 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
4530 (desktop--filter-save-desktop-parm)
4531 (desktop-restore-in-original-display-p): New functions.
4532 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
4533 (desktop--save-minibuffer-frames): New function, inspired by a similar
4534 function from Martin Rudalics.
4535 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
4536 (desktop--restore-in-this-display-p): Remove.
4537 (desktop--find-frame): Rename from desktop--find-frame-in-display
4538 and add predicate argument.
4539 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
4540 (desktop--reuse-list): New variable.
4541 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
4542 New functions.
4543 (desktop--restore-frames): Add support for "minibuffer-special" frames.
4544
4545 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
4546
4547 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
4548
4549 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
4550
4551 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4552 Highlight conversion methods on Kernel.
4553
4554 2013-07-13 Alan Mackenzie <acm@muc.de>
4555
4556 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
4557 and comment it out. This out-commenting enables certain C++
4558 declarations to be parsed correctly.
4559
4560 2013-07-13 Eli Zaretskii <eliz@gnu.org>
4561
4562 * international/mule.el (define-coding-system): Doc fix.
4563
4564 * simple.el (default-font-height): Don't call font-info if the
4565 frame's default font didn't change since the frame was created.
4566 (Bug#14838)
4567
4568 2013-07-13 Leo Liu <sdl.web@gmail.com>
4569
4570 * ido.el (ido-read-file-name): Guard against non-symbol value.
4571
4572 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4573
4574 * progmodes/python.el (python-imenu--build-tree): Fix corner case
4575 in nested defuns.
4576
4577 2013-07-13 Leo Liu <sdl.web@gmail.com>
4578
4579 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
4580 ido-set-matches call. (Bug#6852)
4581
4582 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
4583
4584 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
4585 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
4586 Ruby 2.0.
4587 (ruby-font-lock-keywords): Distinguish calls to functions with
4588 module-like names from module references. Highlight character
4589 literals.
4590
4591 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4592
4593 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
4594 (gdb-send): Handle continued commands. (Bug#14847)
4595
4596 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4597
4598 * desktop.el (desktop--v2s): Remove unused local variable.
4599 (desktop-save-buffer): Make defvar-local; adjust docstring.
4600 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
4601 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
4602
4603 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
4604
4605 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
4606
4607 2013-07-12 Eli Zaretskii <eliz@gnu.org>
4608
4609 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
4610 (Bug#14842)
4611
4612 2013-07-12 Glenn Morris <rgm@gnu.org>
4613
4614 * doc-view.el: Require cl-lib at runtime too.
4615 (doc-view-remove-if): Remove.
4616 (doc-view-search-next-match, doc-view-search-previous-match):
4617 Use cl-remove-if.
4618
4619 * edmacro.el: Require cl-lib at runtime too.
4620 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
4621 (edmacro-mismatch, edmacro-subseq): Remove.
4622
4623 * shadowfile.el: Require cl-lib.
4624 (shadow-remove-if): Remove.
4625 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
4626 Use cl-remove-if.
4627
4628 * wid-edit.el: Require cl-lib.
4629 (widget-choose): Use cl-remove-if.
4630 (widget-remove-if): Remove.
4631
4632 * progmodes/ebrowse.el: Require cl-lib at runtime too.
4633 (ebrowse-delete-if-not): Remove.
4634 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
4635 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
4636 Use cl-delete-if-not.
4637
4638 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4639
4640 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
4641 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
4642
4643 2013-07-12 Leo Liu <sdl.web@gmail.com>
4644
4645 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
4646
4647 2013-07-11 Glenn Morris <rgm@gnu.org>
4648
4649 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
4650 (edebug-gensym-index, edebug-gensym):
4651 Remove reimplementation of cl-gensym.
4652 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
4653
4654 * thumbs.el: Require cl-lib at run-time too.
4655 (thumbs-gensym-counter, thumbs-gensym):
4656 Remove reimplementation of cl-gensym.
4657 (thumbs-temp-file): Use cl-gensym.
4658
4659 * emacs-lisp/ert.el: Require cl-lib at runtime too.
4660 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
4661 (ert--intersection, ert--set-difference, ert--set-difference-eq)
4662 (ert--union, ert--gensym-counter, ert--gensym-counter)
4663 (ert--coerce-to-vector, ert--remove*, ert--string-position)
4664 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
4665 (ert-make-test-unbound, ert--expand-should-1)
4666 (ert--expand-should, ert--should-error-handle-error)
4667 (should-error, ert--explain-equal-rec)
4668 (ert--plist-difference-explanation, ert-select-tests)
4669 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
4670 Use cl-lib functions rather than reimplementations.
4671
4672 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
4673
4674 * net/tramp.el (tramp-methods): Extend docstring.
4675 (tramp-connection-timeout): New defcustom.
4676 (tramp-error-with-buffer): Reset timestamp only when appropriate.
4677 (with-tramp-progress-reporter): Simplify.
4678 (tramp-process-actions): Improve messages.
4679
4680 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4681 * net/tramp-sh.el (tramp-maybe-open-connection):
4682 Use `tramp-connection-timeout'.
4683 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
4684 (Bug#14808)
4685
4686 2013-07-11 Leo Liu <sdl.web@gmail.com>
4687
4688 * ido.el (ido-read-file-name): Conform to the requirements of
4689 read-file-name. (Bug#11861)
4690 (ido-read-directory-name): Conform to the requirements of
4691 read-directory-name.
4692
4693 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
4694
4695 * subr.el (delay-warning): New function.
4696
4697 2013-07-10 Eli Zaretskii <eliz@gnu.org>
4698
4699 * simple.el (default-line-height): New function.
4700 (line-move-partial, line-move): Use it instead of computing the
4701 line height inline.
4702 (line-move-partial): Always compute ROWH. If the last line is
4703 partially-visible, but its text is completely visible, allow
4704 cursor to enter such a partially-visible line.
4705
4706 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
4707
4708 Improve error messages. (Bug#14808)
4709
4710 * net/tramp.el (tramp-current-connection): New defvar, moved from
4711 tramp-sh.el.
4712 (tramp-message-show-progress-reporter-message): Remove, not
4713 needed anymore.
4714 (tramp-error-with-buffer): Show message in minibuffer.
4715 Discard input before waiting. Reset connection timestamp.
4716 (with-tramp-progress-reporter): Improve messages.
4717 (tramp-process-actions): Use progress reporter. Delete process in
4718 case of error. Improve messages.
4719
4720 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4721 Call `tramp-error-with-buffer' with vector and buffer.
4722 (tramp-current-connection): Remove.
4723 (tramp-maybe-open-connection): The car of
4724 `tramp-current-connection' are the first 3 slots of the vector.
4725
4726 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4727
4728 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4729 inside continued strings.
4730
4731 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4732
4733 Timestamp fixes for undo (Bug#14824).
4734 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4735
4736 2013-07-10 Leo Liu <sdl.web@gmail.com>
4737
4738 * files.el (require-final-newline): Allow safe local value.
4739 (Bug#14834)
4740
4741 2013-07-09 Leo Liu <sdl.web@gmail.com>
4742
4743 * ido.el (ido-read-directory-name): Handle fallback.
4744 (ido-read-file-name): Update DIR to ido-current-directory.
4745 (Bug#1516)
4746 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
4747
4748 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4749
4750 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4751 "autoload". Remove "warn lower camel case" section, previously
4752 commented out. Highlight negation char. Do not highlight the
4753 target in singleton method definitions.
4754
4755 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4756
4757 * faces.el (tty-setup-hook): Declare the hook.
4758
4759 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4760 and detect when a guard/pred depends on local vars (bug#14773).
4761 (pcase--u1): Adjust caller.
4762
4763 2013-07-08 Eli Zaretskii <eliz@gnu.org>
4764
4765 * simple.el (line-move-partial, line-move): Account for
4766 line-spacing.
4767 (line-move-partial): Avoid setting vscroll when the last
4768 partially-visible line in window is of default height.
4769
4770 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4771
4772 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4773 been used a while.
4774
4775 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
4776
4777 * subr.el (read-quoted-char): Remove unused local variable `char'.
4778
4779 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4780
4781 * ediff.el (ediff-version): Version update.
4782 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4783 (ediff-merge-with-ancestor-command, ediff-directories-command)
4784 (ediff-directories3-command, ediff-merge-directories-command)
4785 (ediff-merge-directories-with-ancestor-command): New functions.
4786 All are command-line interfaces to ediff: to facilitate calling
4787 Emacs with the appropriate ediff functions invoked.
4788
4789 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4790 (viper-save-kill-buffer): Check if buffer is modified.
4791
4792 * viper.el (viper-version): Version update.
4793 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
4794
4795 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4796
4797 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4798 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4799 (viper-intercept-ESC-key): Simplify.
4800 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4801 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4802 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4803 (viper-setup-ESC-to-escape): New functions.
4804 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4805 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
4806
4807 2013-07-07 Eli Zaretskii <eliz@gnu.org>
4808
4809 * simple.el (default-font-height, window-screen-lines):
4810 New functions.
4811 (line-move, line-move-partial): Use them instead of
4812 frame-char-height and window-text-height. This makes scrolling
4813 text smoother when the buffer's default face uses a font that is
4814 different from the frame's default font.
4815
4816 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4817
4818 * files.el (write-file): Do not display confirm dialog for NS,
4819 it does its own dialog, which can't be cancelled (Bug#14578).
4820
4821 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4822
4823 * simple.el (line-move-partial): Adjust the row returned by
4824 posn-at-point for the current window-vscroll. (Bug#14567)
4825
4826 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
4827
4828 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4829 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4830 spaces.
4831
4832 2013-07-06 Martin Rudalics <rudalics@gmx.at>
4833
4834 * window.el (window-state-put-stale-windows): New variable.
4835 (window--state-put-2): Save list of windows without matching buffer.
4836 (window-state-put): Remove "bufferless" windows if possible.
4837
4838 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4839
4840 * simple.el (alternatives-define): Remove leftover :group keyword.
4841 Tweak docstring.
4842
4843 2013-07-06 Leo Liu <sdl.web@gmail.com>
4844
4845 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4846 (ido-enable-virtual-buffers): New variable.
4847 (ido-buffer-internal, ido-toggle-virtual-buffers)
4848 (ido-make-buffer-list): Use it.
4849 (ido-exhibit): Support turning on and off virtual buffers
4850 automatically.
4851
4852 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4853
4854 * simple.el (alternatives-define): New macro.
4855
4856 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4857
4858 * subr.el (read-quoted-char): Use read-key.
4859 (sit-for): Let read-event decode tty input (bug#14782).
4860
4861 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
4862
4863 * calendar/todo-mode.el: Add handling of file deletion, both by
4864 mode command and externally. Fix various related bugs.
4865 Clarify Commentary and improve some documentation strings and code.
4866 (todo-delete-file): New command.
4867 (todo-check-file): New function.
4868 (todo-show): Handle external deletion of the file we're trying to
4869 show (bug#14688). Replace called-interactively-p by an optional
4870 prefix argument to avoid problematic interaction with catch form
4871 when byte compiled (bug#14702).
4872 (todo-quit): Handle external deletion of the archive's todo file.
4873 Make sure the buffer that was visiting the archive file is still
4874 live before trying to bury it.
4875 (todo-category-completions): Handle external deletion of any
4876 category completion files.
4877 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4878 of todo files, in case of external deletion.
4879 (todo-add-file): Replace unnecessary setq by let-binding.
4880 (todo-find-archive): Check whether there are any archives.
4881 Replace unnecessary setq by let-binding.
4882 (todo-archive-done-item): Use find-file-noselect to get the
4883 archive buffer whether or not the archive already exists.
4884 Remove superfluous code. Use file size instead of buffer-file-name to
4885 check if the archive is new; if it is, update list of archives.
4886 (todo-default-todo-file): Allow nil to be a valid value for when
4887 there are no todo files.
4888 (todo-reevaluate-default-file-defcustom): Use corrected definition
4889 of todo-default-todo-file.
4890 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4891 (todo-delete-category, todo-show-categories-table)
4892 (todo-category-number): Clarify comment.
4893 (todo-filter-items): Clarify documentation string.
4894 (todo-show-current-file, todo-display-as-todo-file)
4895 (todo-reset-and-enable-done-separator): Tweak documentation string.
4896 (todo-done-separator): Make separator length window-width, since
4897 bug#2749 is now fixed.
4898
4899 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
4900
4901 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4902 Support both "gvfs-monitor-dir" and "inotifywait".
4903 (tramp-sh-file-inotifywait-process-filter): Rename from
4904 `tramp-sh-file-notify-process-filter'.
4905 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4906 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4907
4908 2013-07-05 Leo Liu <sdl.web@gmail.com>
4909
4910 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4911
4912 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4913
4914 * frame.el (display-pixel-height, display-pixel-width)
4915 (display-mm-height, display-mm-width): Mention behavior on
4916 multi-monitor setups in docstrings.
4917 (w32-display-monitor-attributes-list): Declare function.
4918 (display-monitor-attributes-list): Use it.
4919
4920 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
4921
4922 * filenotify.el: New package.
4923
4924 * autorevert.el (top): Require filenotify.el.
4925 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4926 instead.
4927 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4928 (auto-revert-notify-handler): Use `file-notify-*' functions.
4929
4930 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4931
4932 * net/tramp.el (tramp-file-name-for-operation):
4933 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
4934
4935 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4936 for `file-notify-add-watch' and `file-notify-rm-watch'.
4937 (tramp-process-sentinel): Improve trace.
4938 (tramp-sh-handle-file-notify-add-watch)
4939 (tramp-sh-file-notify-process-filter)
4940 (tramp-sh-handle-file-notify-rm-watch)
4941 (tramp-get-remote-inotifywait): New defuns.
4942
4943 2013-07-03 Juri Linkov <juri@jurta.org>
4944
4945 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4946 call of `occur-read-primary-args' to interactive spec.
4947
4948 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4949 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4950
4951 2013-07-03 Matthias Meulien <orontee@gmail.com>
4952
4953 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4954 `Buffer-menu-multi-occur'. Add it to the menu.
4955 (Buffer-menu-mode): Document it in docstring.
4956 (Buffer-menu-multi-occur): New command. (Bug#14673)
4957
4958 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4959
4960 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4961 keywords and built-ins.
4962
4963 2013-07-03 Glenn Morris <rgm@gnu.org>
4964
4965 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4966
4967 Make info-xref checks case-sensitive by default
4968 * info.el (Info-find-node, Info-find-in-tag-table)
4969 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4970 Add option for exact case matching of nodes.
4971 * info-xref.el (info-xref): New custom group.
4972 (info-xref-case-fold): New option.
4973 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
4974
4975 2013-07-03 Leo Liu <sdl.web@gmail.com>
4976
4977 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
4978
4979 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4980
4981 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4982 middle of block statement initially, lower the depth. Remove
4983 FIXME comment, not longer valid. Remove middle of block statement
4984 detection, no need to do that anymore since we've been using
4985 `ruby-parse-region' here.
4986
4987 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4988
4989 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4990
4991 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
4992
4993 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4994
4995 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
4996
4997 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4998 (desktop-restore-in-current-display): New customization option.
4999 (desktop--excluded-frame-parameters): Add `font'.
5000 (desktop--save-frames): Rename from desktop--save-windows.
5001 (desktop--restore-in-this-display-p): New function.
5002 (desktop--make-full-frame): Remove unwanted width/height from
5003 full(width|height) frames.
5004 (desktop--restore-frames): Rename from desktop--restore-windows.
5005 Obey desktop-restore-current-display. Do not delete old frames or
5006 select a new frame unless we were able to restore at least one frame.
5007
5008 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
5009
5010 * files.el (find-file-noselect): Simplify conditional expression.
5011
5012 * remember.el (remember-append-to-file):
5013 Don't mix `find-buffer-visiting' and `get-file-buffer'.
5014
5015 Add `remember-notes' function to store random notes across Emacs
5016 restarts.
5017 * remember.el (remember-data-file): Add :set callback to affect
5018 notes buffer (if any).
5019 (remember-notes): New command.
5020 (remember-notes-buffer-name, bury-remember-notes-on-kill):
5021 New defcustoms for the `remember-notes' function.
5022 (remember-notes-save-and-bury-buffer): New command.
5023 (remember-notes-mode-map): New variable.
5024 (remember-mode): New minor mode.
5025 (remember-notes--kill-buffer-query): New function.
5026 * startup.el (initial-buffer-choice): Add notes to custom type.
5027
5028 2013-06-30 Eli Zaretskii <eliz@gnu.org>
5029
5030 * bindings.el (right-char, left-char): Don't call sit-for, this is
5031 no longer needed. Use arithmetic comparison only for numerical
5032 arguments.
5033
5034 * international/mule-cmds.el (select-safe-coding-system):
5035 Handle the case of FROM being a string correctly. (Bug#14755)
5036
5037 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
5038
5039 * net/shr.el (shr-make-table-1): Add a sanity check that allows
5040 progression on degenerate tables.
5041 (shr-rescale-image): ImageMagick animated images currently don't work.
5042
5043 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
5044
5045 Some fixes and improvements for desktop frame restoration.
5046 It is still experimental and disabled by default.
5047 * desktop.el (desktop--save-windows): Put the selected frame at
5048 the head of the list.
5049 (desktop--make-full-frame): New function.
5050 (desktop--restore-windows): Try to re-select the frame that was
5051 selected upon saving. Do not abort if some frames fail to restore,
5052 just show an error message and continue. Set up maximized frames
5053 so they have default non-maximized dimensions.
5054
5055 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
5056
5057 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
5058 Don't start heredoc inside a string or comment.
5059
5060 2013-06-29 Eli Zaretskii <eliz@gnu.org>
5061
5062 * bindings.el (visual-order-cursor-movement): New defcustom.
5063 (right-char, left-char): Provide visual-order cursor motion by
5064 calling move-point-visually. Update the doc strings.
5065
5066 2013-06-28 Kenichi Handa <handa@gnu.org>
5067
5068 * international/mule.el (define-coding-system): New coding system
5069 properties :inhibit-null-byte-detection,
5070 :inhibit-iso-escape-detection, and :prefer-utf-8.
5071 (set-buffer-file-coding-system): If :charset-list property of
5072 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
5073 appropriate for setting.
5074
5075 * international/mule-cmds.el (select-safe-coding-system):
5076 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
5077 multibyte characters, return utf-8 (or one of its siblings).
5078
5079 * international/mule-conf.el (prefer-utf-8): New coding system.
5080 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
5081 files.
5082
5083 2013-06-28 Ivan Kanis <ivan@kanis.fr>
5084
5085 * net/shr.el (shr-render-region): New function.
5086
5087 * net/eww.el: Autoload `eww-browse-url'.
5088
5089 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
5090
5091 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5092 Adapt to `package-desc-version' being a list.
5093 Use `package--ac-desc-version' to retrieve version from a package
5094 archive element.
5095
5096 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
5097
5098 New experimental feature to save&restore window and frame setup.
5099 * desktop.el (desktop-save-windows): New defcustom.
5100 (desktop--saved-states): New var.
5101 (desktop--excluded-frame-parameters): New defconst.
5102 (desktop--filter-frame-parms, desktop--find-frame-in-display)
5103 (desktop--restore-windows, desktop--save-windows): New functions.
5104 (desktop-save): Call `desktop--save-windows'.
5105 (desktop-read): Call `desktop--restore-windows'.
5106
5107 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5108
5109 * net/shr.el (add-face-text-property): Remove compat definition.
5110
5111 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
5112
5113 * info.el (Info-try-follow-nearest-node): Move search for footnote
5114 above search for node name to prevent missing a footnote (bug#14717).
5115
5116 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
5117
5118 * obsolete/otodo-mode.el: Add obsolescence info to file header.
5119
5120 2013-06-27 Leo Liu <sdl.web@gmail.com>
5121
5122 * net/eww.el (eww-read-bookmarks): Check file size.
5123
5124 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5125
5126 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
5127 advice--pending if newdef is nil or an autoload (bug#13820).
5128 (advice-mapc): New function.
5129
5130 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5131
5132 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
5133 probably.
5134 (eww-mode-map): Add a menu bar.
5135 (eww-add-bookmark): New command.
5136 (eww-bookmark-mode): New mode and commands.
5137 (eww-add-bookmark): Remove newlines from the title.
5138 (eww-bookmark-browse): Don't bug out if it's the only window.
5139
5140 2013-06-26 Glenn Morris <rgm@gnu.org>
5141
5142 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
5143 (hfy-size): Handle ttys. (Bug#14668)
5144
5145 * info-xref.el: Update for Texinfo 5 change in *note format.
5146 (info-xref-node-re, info-xref-note-re): New constants.
5147 (info-xref-check-buffer): Use info-xref-note-re.
5148
5149 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5150
5151 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
5152
5153 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
5154 nil terminate the loop (bug#14718).
5155
5156 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5157
5158 * net/eww.el: Rework history traversal. When going forward/back,
5159 put these actions into the history, too, so that they can be
5160 replayed.
5161 (eww-render): Move the history reset to the correct buffer.
5162
5163 2013-06-25 Juri Linkov <juri@jurta.org>
5164
5165 * files-x.el (modify-dir-local-variable): Change the header comment
5166 in the file with directory local variables. (Bug#14692)
5167
5168 * files-x.el (read-file-local-variable-value): Add `default'.
5169 (Bug#14710)
5170
5171 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5172
5173 * net/eww.el (eww-make-unique-file-name): Create a unique file
5174 name before saving to entering `y' accidentally asynchronously.
5175
5176 2013-06-25 Ivan Kanis <ivan@kanis.fr>
5177
5178 * net/eww.el (eww-download): New command and keystroke.
5179
5180 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5181
5182 * net/eww.el (eww-copy-page-url): Change name of command.
5183
5184 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
5185 be more consistent with Info and dired.
5186
5187 * net/eww.el (eww-mode-map): Ditto.
5188
5189 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5190
5191 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
5192 packages from archives.
5193 (package-archive-contents): Change format; include obsolete packages.
5194 (package-desc): Use `dir' to mark builtin packages.
5195 (package--from-builtin): Set the `dir' field to `builtin'.
5196 (generated-autoload-file, version-control): Declare.
5197 (package-compute-transaction): Change first arg and return value to be
5198 lists of package-descs. Adjust to new package-archive-contents format.
5199 (package--add-to-archive-contents): Adjust to new
5200 package-archive-contents format.
5201 (package-download-transaction): Arg is now a list of package-descs.
5202 (package-install): If `pkg' is a package name, pass it as
5203 a requirement, so it is subject to the usual (e.g. disabled) checks.
5204 (describe-package): Accept package-desc as well.
5205 (describe-package-1): Describe a specific package-desc. Add links to
5206 other package-descs for the same package name.
5207 (package-menu-describe-package): Pass the actual package-desc.
5208 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
5209 works correctly.
5210 (package-desc-status): New function.
5211 (package-menu--refresh): New function, extracted
5212 from package-menu--generate.
5213 (package-menu--generate): Use it.
5214 (package-delete): Update package-alist.
5215 (package-menu-execute): Don't call package-initialize.
5216
5217 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
5218 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
5219 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
5220 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
5221 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
5222 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
5223
5224 2013-06-25 Martin Rudalics <rudalics@gmx.at>
5225
5226 * window.el (window--state-get-1): Workaround for bug#14527.
5227 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
5228
5229 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5230
5231 * net/eww.el (eww-back-url): Implement the history by stashing all
5232 the data into a list.
5233 (eww-forward-url): Allow going forward in the history, too.
5234
5235 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5236
5237 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
5238 for values and use read--expression for expressions (bug#14710).
5239 (read-file-local-variable): Avoid setq.
5240 (read-file-local-variable-mode): Use minor-mode-list.
5241
5242 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5243
5244 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
5245 for DOI URLs.
5246
5247 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5248
5249 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
5250 Update imenu-support when dialect changes.
5251
5252 2013-06-25 Leo Liu <sdl.web@gmail.com>
5253
5254 * ido.el (ido-read-internal): Allow forward slash on windows.
5255
5256 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5257
5258 * net/eww.el (eww): Start of strings is \\`, not ^.
5259
5260 2013-06-24 Ivan Kanis <ivan@kanis.fr>
5261
5262 * net/shr.el (shr-browse-url): Fix interactive spec.
5263
5264 * net/eww.el (eww): Add a trailing slash to domain names.
5265
5266 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
5267
5268 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
5269
5270 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5271
5272 * net/shr.el (shr-browse-url): Use an external browser if given a
5273 prefix.
5274
5275 * net/eww.el (eww-external-browser): Move to shr.
5276
5277 2013-06-24 Ivan Kanis <ivan@kanis.fr>
5278
5279 * net/eww.el (eww): Work more correctly for file: URLs.
5280 (eww-detect-charset): Allow quoted charsets.
5281 (eww-yank-page-url): New command and keystroke.
5282
5283 2013-06-24 Daiki Ueno <ueno@gnu.org>
5284
5285 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
5286 file name of gpg executable.
5287 (epg-context-program): New function.
5288 (epg-context-home-directory): New function.
5289 (epg-context-set-program): New function.
5290 (epg-context-set-home-directory): New function.
5291 (epg--start): Use `epg-context-program' instead of
5292 'epg-gpg-program'.
5293 (epg--list-keys-1): Likewise.
5294
5295 2013-06-24 Leo Liu <sdl.web@gmail.com>
5296
5297 * ido.el (ido-read-internal): Fix bug#14620.
5298
5299 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5300
5301 * faces.el (face-documentation): Simplify.
5302 (read-face-attribute, tty-find-type, x-resolve-font-name):
5303 Use `string-match-p'.
5304 (list-faces-display): Use `string-match-p'. Simplify.
5305 (face-spec-recalc): Check face to avoid face alias loops.
5306 (read-color): Use `string-match-p' and non-capturing parenthesis.
5307
5308 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5309
5310 * net/shr.el (shr-rescale-image): Use the new
5311 :max-width/:max-height functionality.
5312
5313 2013-06-23 Ivan Kanis <ivan@kanis.fr>
5314
5315 * net/eww.el (eww-search-prefix): New variable.
5316 (eww): Use it.
5317 (eww-external-browser): New variable.
5318 (eww-mode-map): New keystroke.
5319 (eww-browse-with-external-browser): New command.
5320
5321 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
5322
5323 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5324
5325 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
5326 Don't skip aligning the next header field when padding is 0;
5327 otherwise, field width is not respected unless the title is as
5328 wide as the field.
5329
5330 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5331
5332 * emacs-lisp/package.el (package-el-version): Remove.
5333 (package-process-define-package): Fix inf-loop.
5334 (package-install): Allow symbols as arguments again.
5335
5336 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5337
5338 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
5339 add some more keyword-like methods.
5340 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
5341
5342 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
5343
5344 * bs.el (bs-buffer-show-mark): Make defvar-local.
5345 (bs-mode): Use setq-local.
5346
5347 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
5348 (emacs-lock--try-unlocking): Make defvar-local.
5349
5350 2013-06-22 Glenn Morris <rgm@gnu.org>
5351
5352 * play/cookie1.el (cookie-apropos): Minor simplification.
5353
5354 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
5355
5356 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5357
5358 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
5359 `regexp-opt', it breaks the build during dumping.
5360
5361 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
5362
5363 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5364 Highlight keyword-like methods on Kernel and Module with
5365 font-lock-builtin-face.
5366 (auto-mode-alist): Consolidate different entries into one regexp
5367 and add more *file-s.
5368
5369 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
5370
5371 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
5372
5373 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
5374 (diary-entry): Use it in the action of this button type instead of
5375 diary-goto-entry.
5376
5377 * calendar/todo-mode.el: New version.
5378 (todo-add-category): Append new category to end of file and give
5379 it the highest number, instead of putting it at the beginning and
5380 giving it 0. Incorporate noninteractive functionality.
5381 (todo-forward-category): Adapt to 1-based category numbering.
5382 Allow skipping over archived categories.
5383 (todo-backward-category): Derive from todo-forward-category.
5384 (todo-backward-item, todo-forward-item): Make noninteractive and
5385 delegate interactive part to new commands. Make sensitive to done items.
5386 (todo-categories): Make value an alist of category names and
5387 vectors of item counts.
5388 (todo-category-beg): Make a defconst.
5389 (todo-category-number): Use 1 instead of 0 as initial value.
5390 (todo-category-select): Make sensitive to overlays, optional item
5391 highlighting and done items.
5392 (todo-delete-item): Make sensitive to overlays and marked and done items.
5393 (todo-edit-item): Make sensitive to overlays and editing of
5394 date/time header optional. Add format checks.
5395 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
5396 no-op if point is not on an item. Advertise using todo-edit-quit.
5397 (todo-edit-mode): Make sensitive to new format, font-locking, and
5398 multiple todo files.
5399 (todo-insert-item, todo-insert-item-here): Derive from
5400 todo-basic-insert-item and extend functionality.
5401 (todo-item-end, todo-item-start): Make sensitive to done items.
5402 (todo-item-string): Don't return text properties. Restore point.
5403 (todo-jump-to-category): Make sensitive to multiple todo files and
5404 todo archives. Use extended category completion.
5405 (todo-lower-item, todo-raise-item): Rename to *-priority and
5406 derive from todo-set-item-priority.
5407 (todo-mode): Derive from special-mode. Make sensitive to new
5408 format, font-locking and multiple todo files. Make read-only.
5409 (todo-mode-map): Don't suppress digit keys, so they can supply
5410 prefix arguments. Add many new key bindings.
5411 (todo-prefix): Insert as an overlay instead of file text.
5412 Change semantics from diary date expression to purely visual mark.
5413 (todo-print): Rename to todo-print-buffer. Make buffer display
5414 features printable. Remove option to restrict number of items
5415 printed. Add option to print to file.
5416 (todo-print-function): Rename to todo-print-buffer-function.
5417 (todo-quit): Extend to handle exiting new todo modes.
5418 (todo-remove-item): Make sensitive to overlays.
5419 (todo-save): Extend to buffers of filtered items.
5420 (todo-show): Make sensitive to done items, multiple todo files and
5421 new todo modes. Offer to convert legacy todo file before creating
5422 first new todo file.
5423 (todo-show-priorities): Rename to todo-top-priorities.
5424 Change semantics of value 0.
5425 (todo-top-priorities): Rename to todo-filter-top-priorities,
5426 derive from todo-filter-items and extend functionality.
5427 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
5428 and extend functionality to other types of filtered items.
5429 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
5430 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
5431 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
5432 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
5433 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
5434 (todo-edit-mode-hook, todo-entry-prefix-function)
5435 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
5436 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
5437 (todo-initials, todo-insert-threshold, todo-item-string-start)
5438 (todo-line-string, todo-menu, todo-mode-hook)
5439 (todo-more-important-p, todo-previous-answer, todo-previous-line)
5440 (todo-print-priorities, todo-remove-separator)
5441 (todo-save-top-priorities-too, todo-string-count-lines)
5442 (todo-string-multiline-p, todo-time-string-format)
5443 (todo-tmp-buffer-name): Remove.
5444 (todo-add-file, todo-archive-done-item, todo-choose-archive)
5445 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
5446 (todo-edit-category-diary-inclusion)
5447 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
5448 (todo-edit-file, todo-edit-item-date-day)
5449 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
5450 (todo-edit-item-date-month, todo-edit-item-date-to-today)
5451 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
5452 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
5453 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
5454 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
5455 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
5456 (todo-filter-top-priorities-multifile, todo-find-archive)
5457 (todo-find-filtered-items-file, todo-go-to-source-item)
5458 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
5459 (todo-jump-to-archive-category, todo-lower-category)
5460 (todo-mark-category, todo-marked-item-p, todo-merge-category)
5461 (todo-move-category, todo-move-item, todo-next-button)
5462 (todo-next-item, todo-padded-string, todo-powerset)
5463 (todo-previous-button, todo-previous-item)
5464 (todo-print-buffer-to-file, todo-raise-category)
5465 (todo-rename-category, todo-repair-categories-sexp, todo-search)
5466 (todo-set-category-number, todo-set-item-priority)
5467 (todo-set-top-priorities-in-category)
5468 (todo-set-top-priorities-in-file, todo-show-categories-table)
5469 (todo-sort-categories-alphabetically-or-numerically)
5470 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
5471 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
5472 (todo-toggle-item-header, todo-toggle-item-highlighting)
5473 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
5474 (todo-toggle-view-done-items, todo-toggle-view-done-only)
5475 (todo-unarchive-items, todo-unmark-category): New commands.
5476 (todo-absolute-file-name, todo-add-to-buffer-list)
5477 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
5478 (todo-basic-insert-item, todo-category-completions)
5479 (todo-category-number, todo-category-string-matcher-1)
5480 (todo-category-string-matcher-2, todo-check-filtered-items-file)
5481 (todo-check-format, todo-clear-matches)
5482 (todo-comment-string-matcher, todo-convert-legacy-date-time)
5483 (todo-current-category, todo-date-string-matcher)
5484 (todo-define-insertion-command, todo-diary-expired-matcher)
5485 (todo-diary-goto-entry, todo-diary-item-p)
5486 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
5487 (todo-display-categories, todo-display-sorted, todo-done-item-p)
5488 (todo-done-item-section-p, todo-done-separator)
5489 (todo-done-string-matcher, todo-files, todo-filter-items)
5490 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
5491 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
5492 (todo-insert-category-line, todo-insert-item-from-calendar)
5493 (todo-insert-sort-button, todo-insert-with-overlays)
5494 (todo-insertion-command-name, todo-insertion-key-bindings)
5495 (todo-label-to-key, todo-longest-category-name-length)
5496 (todo-make-categories-list, todo-mode-external-set)
5497 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
5498 (todo-modes-set-3, todo-multiple-filter-files)
5499 (todo-nondiary-marker-matcher, todo-prefix-overlays)
5500 (todo-read-category, todo-read-date, todo-read-dayname)
5501 (todo-read-file-name, todo-read-time)
5502 (todo-reevaluate-category-completions-files-defcustom)
5503 (todo-reevaluate-default-file-defcustom)
5504 (todo-reevaluate-filelist-defcustoms)
5505 (todo-reevaluate-filter-files-defcustom)
5506 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
5507 (todo-reset-done-separator, todo-reset-done-separator-string)
5508 (todo-reset-done-string, todo-reset-global-current-todo-file)
5509 (todo-reset-highlight-item, todo-reset-nondiary-marker)
5510 (todo-reset-prefix, todo-set-categories)
5511 (todo-set-date-from-calendar, todo-set-show-current-file)
5512 (todo-set-top-priorities, todo-short-file-name)
5513 (todo-show-current-file, todo-sort, todo-time-string-matcher)
5514 (todo-total-item-counts, todo-update-buffer-list)
5515 (todo-update-categories-display, todo-update-categories-sexp)
5516 (todo-update-count, todo-validate-name, todo-y-or-n-p):
5517 New functions.
5518 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
5519 New major modes.
5520 (todo-categories, todo-display, todo-edit, todo-faces)
5521 (todo-filtered): New defgroups.
5522 (todo-archived-only, todo-button, todo-category-string, todo-date)
5523 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
5524 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
5525 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
5526 (todo-add-item-if-new-category, todo-always-add-time-string)
5527 (todo-categories-align, todo-categories-archived-label)
5528 (todo-categories-category-label, todo-categories-diary-label)
5529 (todo-categories-done-label, todo-categories-number-separator)
5530 (todo-categories-todo-label, todo-categories-totals-label)
5531 (todo-category-completions-files, todo-completion-ignore-case)
5532 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
5533 (todo-done-separator-string, todo-done-string)
5534 (todo-files-function, todo-filter-done-items, todo-filter-files)
5535 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
5536 (todo-initial-category, todo-initial-file, todo-item-mark)
5537 (todo-legacy-date-time-regexp, todo-mode-line-function)
5538 (todo-nondiary-marker, todo-number-prefix)
5539 (todo-print-buffer-function, todo-show-current-file)
5540 (todo-show-done-only, todo-show-first, todo-show-with-done)
5541 (todo-skip-archived-categories, todo-top-priorities-overrides)
5542 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
5543 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
5544 New defcustoms.
5545 (todo-category-done, todo-date-pattern, todo-date-string-start)
5546 (todo-diary-items-buffer, todo-done-string-start)
5547 (todo-filtered-items-buffer, todo-item-start)
5548 (todo-month-abbrev-array, todo-month-name-array)
5549 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
5550 (todo-top-priorities-buffer): New defconsts.
5551 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
5552 (todo-categories-with-marks, todo-category-string-face)
5553 (todo-comment-face, todo-comment-string, todo-current-todo-file)
5554 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
5555 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
5556 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
5557 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
5558 (todo-font-lock-keywords, todo-global-current-todo-file)
5559 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
5560 (todo-insertion-commands-args)
5561 (todo-insertion-commands-args-genlist)
5562 (todo-insertion-commands-names, todo-insertion-map)
5563 (todo-key-bindings-t, todo-key-bindings-t+a)
5564 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
5565 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
5566 (todo-nondiary-face, todo-print-buffer, todo-time-face)
5567 (todo-visited): New variables.
5568
5569 2013-06-21 Glenn Morris <rgm@gnu.org>
5570
5571 * play/cookie1.el (cookie-apropos): Add optional display argument.
5572 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
5573 (psychoanalyze-pinhead): Use cookie-doctor.
5574
5575 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5576
5577 * emacs-lisp/package.el (tar-get-file-descriptor)
5578 (tar--extract): Declare.
5579
5580 2013-06-21 Eduard Wiebe <usenet@pusto.de>
5581
5582 Extend flymake's warning predicate to be a function (bug#14217).
5583 * progmodes/flymake.el (flymake-warning-predicate): New.
5584 (flymake-parse-line): Use it.
5585 (flymake-warning-re): Make obsolete alias to
5586 `flymake-warning-predicate'.
5587
5588 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5589
5590 * emacs-lisp/package.el (package-alist): Include obsolete packages.
5591 (package-obsolete-list): Remove.
5592 (package-activate): Remove min-version argument. Add `force' argument.
5593 Adjust to new package-alist format.
5594 (package-mark-obsolete): Remove.
5595 (package-unpack): Force reload of the package's autoloads.
5596 (package-installed-p): Check builtins if the installed package is not
5597 recent enough.
5598 (package-initialize): Don't reset package-obsolete-list.
5599 Don't specify which package version to activate.
5600 (package-process-define-package, describe-package-1)
5601 (package-menu--generate): Adjust to new package-alist format.
5602
5603 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5604
5605 * allout-widgets.el (allout-widgets-mode-off)
5606 (allout-widgets-mode-on, allout-widgets-pre-command-business)
5607 (allout-widgets-post-command-business)
5608 (allout-widgets-after-copy-or-kill-function)
5609 (allout-widgets-after-undo-function, allout-test-range-overlaps)
5610 (allout-decorate-item-and-context)
5611 (allout-graphics-modification-handler): Fix typos in docstrings.
5612 (allout-get-or-create-parent-widget): Use `looking-at-p'.
5613
5614 * cmuscheme.el (scheme-start-file): Doc fix.
5615 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
5616 (scheme-input-filter): Use `string-match-p'.
5617
5618 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
5619
5620 * dired-x.el: Use Dired consistently in docstrings.
5621
5622 * dired.el: Use Dired consistently in docstrings.
5623 (dired-readin, dired-mode): Use `setq-local'.
5624 (dired-switches-alist): Make defvar-local.
5625 (dired-buffers-for-dir): Use `zerop'.
5626 (dired-safe-switches-p, dired-switches-escape-p)
5627 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
5628 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
5629 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
5630 (dired-goto-next-nontrivial-file): Use `string-match-p'.
5631 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
5632 (dired-toggle-marks, dired-mark-files-containing-regexp)
5633 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
5634 (dired-flag-auto-save-files, dired-flag-backup-files):
5635 Use `looking-at-p'.
5636 (dired-mark-files-regexp, dired-build-subdir-alist):
5637 Use `string-match-p', `looking-at-p'.
5638
5639 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
5640 (direct-print-region-helper): Use `string-match-p'.
5641
5642 2013-06-21 Leo Liu <sdl.web@gmail.com>
5643
5644 * comint.el (comint-redirect-results-list-from-process):
5645 Fix infinite loop.
5646
5647 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5648
5649 * net/eww.el (eww-update-header-line-format): Quote % characters.
5650
5651 2013-06-21 Glenn Morris <rgm@gnu.org>
5652
5653 * play/cookie1.el (cookie): New custom group.
5654 (cookie-file): New option.
5655 (cookie-check-file): New function.
5656 (cookie): Make it interactive. Make start and end messages optional.
5657 Interactively, display the result. Default to cookie-file.
5658 (cookie-insert): Default to cookie-file.
5659 (cookie-snarf): Make start and end messages optional.
5660 Default to cookie-file. Use with-temp-buffer.
5661 (cookie-read): Rename from read-cookie.
5662 Make start and end messages optional. Default to cookie-file.
5663 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
5664 Do not autoload it.
5665 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
5666 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
5667
5668 2013-06-21 Leo Liu <sdl.web@gmail.com>
5669
5670 * progmodes/octave.el (octave-mode): Backward compatibility fix.
5671
5672 2013-06-21 Glenn Morris <rgm@gnu.org>
5673
5674 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
5675
5676 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5677 Daniel Hackney <dan@haxney.org>
5678
5679 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
5680 Consolidate the single-file vs tarball code.
5681 (package-desc-suffix): New function.
5682 (package-desc-full-name): Don't bother inlining it.
5683 (package-load-descriptor): Return the new package-desc.
5684 (package-mark-obsolete): Remove unused arg `package'.
5685 (package-unpack): Make it work for single files as well.
5686 Make it update package-alist.
5687 (package--make-autoloads-and-stuff): Rename from
5688 package--make-autoloads-and-compile. Don't compile any more.
5689 (package--compile): New function.
5690 (package-generate-description-file): New function, extracted from
5691 package-unpack-single.
5692 (package-unpack-single): Remove.
5693 (package--with-work-buffer): Add indentation and debugging info.
5694 (package-download-single): Remove.
5695 (package-install-from-archive): Rename from package-download-tar, make
5696 it take a pkg-desc, and make it work for single files as well.
5697 (package-download-transaction): Simplify.
5698 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
5699 external tar program.
5700 (package-install-from-buffer): Remove `pkg-desc' argument.
5701 Use package-tar-file-info for tar-mode buffers.
5702 (package-install-file): Simplify accordingly.
5703 (package-archive-base): Change to take a pkg-desc.
5704 * tar-mode.el (tar--check-descriptor): New function, extracted from
5705 tar-get-descriptor.
5706 (tar-get-descriptor): Use it.
5707 (tar-get-file-descriptor): New function.
5708 (tar--extract): New function, extracted from tar-extract.
5709 (tar--extract): Use it.
5710 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5711 case the summary uses non-ascii. Adjust to new calling convention of
5712 package-tar-file-info.
5713
5714 2013-06-21 Leo Liu <sdl.web@gmail.com>
5715
5716 * comint.el (comint-redirect-results-list-from-process):
5717 Fix random delay. (Bug#14681)
5718
5719 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5720
5721 * profiler.el (profiler-format-number): Use log, not log10.
5722
5723 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5724
5725 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5726
5727 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5728
5729 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5730 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5731 yet available.
5732 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5733 (AUTOGENEL): ... here.
5734 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5735 (cl--defsubst-expand): Use it.
5736
5737 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5738
5739 * subr.el (log10): Move here from C code, and declare as obsolete.
5740 All uses of (log10 X) replaced with (log X 10).
5741
5742 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5743
5744 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5745 Declare with `defvar-local'.
5746 (tabulated-list-use-header-line, tabulated-list-entries)
5747 (tabulated-list-padding, tabulated-list-printer)
5748 (tabulated-list-sort-key): Declare with `defvar-local'.
5749 (tabulated-list-init-header, tabulated-list-print-fake-header):
5750 Use `setq-local'.
5751
5752 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
5753
5754 * arc-mode.el (archive-mode): Add `archive-write-file' to
5755 `write-contents-functions' also for remote files. (Bug#14652)
5756
5757 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5758
5759 * cus-edit.el (custom-commands): Fix typos.
5760 (custom-display): Fix tooltip text.
5761 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5762 Fix typos in docstrings.
5763 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5764 (custom-unlispify-menu-entry, custom-magic-value-create)
5765 (custom-add-see-also, custom-group-value-create): Use ?\s.
5766 (custom-guess-type, customize-apropos, editable-field)
5767 (custom-face-value-create): Use `string-match-p'.
5768 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5769
5770 * custom.el (custom-load-symbol): Use `string-match-p'.
5771
5772 * ansi-color.el: Convert to lexical binding.
5773 (ansi-colors): Fix URL.
5774 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5775 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5776 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5777
5778 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5779
5780 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5781
5782 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5783
5784 2013-06-19 Tom Tromey <tromey@redhat.com>
5785
5786 * net/eww.el (eww-top-url): Remove.
5787 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5788 (eww-render): Set new variables. Don't set eww-top-url.
5789 (eww-handle-link): Handle "prev", "home", and "contents".
5790 Downcase the rel text.
5791 (eww-top-url): Choose best top URL.
5792
5793 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5794
5795 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5796 relying in widget.el. Using widget.el leads to too many
5797 user interface inconsistencies.
5798 (eww-self-insert): Implement entering commands in text fields.
5799 (eww-process-text-input): New function to make text input field editing
5800 work.
5801 (eww-submit): Rewrite to use the new-style form methods.
5802 (eww-select-display): Display the correct selected item.
5803 (eww-change-select): Implement changing the select value.
5804 (eww-toggle-checkbox): Implement radio/checkboxes.
5805 (eww-update-field): Fix compilation error.
5806 (eww-tag-textarea): Implement <textarea>.
5807
5808 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5809 we don't shadow mode-specific bindings.
5810
5811 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5812 nothing to push.
5813
5814 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5815
5816 2013-06-19 Glenn Morris <rgm@gnu.org>
5817
5818 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5819
5820 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5821
5822 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5823 not needed.
5824
5825 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5826
5827 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5828
5829 * net/browse-url.el (browse-url-browser-function):
5830 `eww-browse-url' has the right calling signature, `eww' does not.
5831
5832 2013-06-19 Glenn Morris <rgm@gnu.org>
5833
5834 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5835 Only eval autoloaded macros.
5836 (byte-compile-autoload): Only give the macro warning for macros.
5837
5838 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5839 (ps-underlined-faces): Declare.
5840
5841 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5842 (speedbar-add-supported-extension): Declare.
5843
5844 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5845 Don't include a date stamp in the header of the generated file;
5846 it leads to needless differences between output files.
5847
5848 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5849
5850 * net/secrets.el (secrets-struct-secret-content-type):
5851 Replace check of introspection data by a test call of "CreateItem".
5852 Some servers do not offer introspection.
5853
5854 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5855
5856 * electric.el (electric-pair-mode): Improve interaction with
5857 electric-layout-mode.
5858 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5859 (electric-pair-syntax): Use text-mode-syntax-table in comments
5860 and strings.
5861 (electric-pair--insert): New function.
5862 (electric-pair-post-self-insert-function): Use it and
5863 electric--after-char-pos.
5864
5865 2013-06-19 Leo Liu <sdl.web@gmail.com>
5866
5867 * progmodes/octave.el (octave-help): Fix regexp.
5868
5869 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5870
5871 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5872 (shr-table-horizontal-line): Allow nil as a value, and change the
5873 default.
5874 (shr-insert-table-ruler): Respect the nil value.
5875
5876 2013-06-18 Tom Tromey <tromey@barimba>
5877
5878 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5879 New defvars.
5880 (eww-open-file): New defun.
5881 (eww-render): Initialize new variables.
5882 (eww-display-html): Handle "link" and "a".
5883 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5884 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5885 (eww-back-url): Rename from eww-previous-url.
5886 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5887 New defuns.
5888
5889 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5890
5891 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5892 Distinguish ternary operator tokens from slash symbol and slash
5893 char literal.
5894
5895 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5896
5897 Convert symbol prettification into minor mode and global minor mode.
5898
5899 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5900 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5901 (prettify-symbols--keywords): Rename from
5902 `prog-prettify-symbols-alist' and make a local defvar.
5903 (prettify-symbols--compose-symbol): Rename from
5904 `prog--prettify-font-lock-compose-symbol'.
5905 (prettify-symbols--make-keywords): Rename from
5906 `prog-prettify-font-lock-symbols-keywords' and simplify.
5907 (prog-prettify-install): Remove.
5908 (prettify-symbols-mode): New minor mode, based on
5909 `prog-prettify-install'.
5910 (turn-on-prettify-symbols-mode): New function.
5911 (global-prettify-symbols-mode): New globalized minor mode.
5912
5913 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5914 * progmodes/cfengine.el (cfengine3-mode):
5915 * progmodes/perl-mode.el (perl-mode): Don't call
5916 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5917
5918 2013-06-18 Juri Linkov <juri@jurta.org>
5919
5920 * files-x.el (modify-file-local-variable-message): New function.
5921 (modify-file-local-variable)
5922 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5923 and call `modify-file-local-variable-message' when it's non-nil.
5924 (add-file-local-variable, delete-file-local-variable)
5925 (add-file-local-variable-prop-line)
5926 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5927 and use it. (Bug#9820)
5928
5929 2013-06-18 Juri Linkov <juri@jurta.org>
5930
5931 * emulation/vi.el (vi-shell-op):
5932 * emulation/vip.el (vip-execute-com, ex-command):
5933 * emulation/viper-cmd.el (viper-exec-bang):
5934 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5935 the call of `shell-command-on-region'. (Bug#14637)
5936
5937 * simple.el (shell-command-on-region): Doc fix.
5938
5939 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5940
5941 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5942 (bug#14633).
5943
5944 2013-06-18 Glenn Morris <rgm@gnu.org>
5945
5946 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5947
5948 * newcomment.el (comment-search-forward, comment-search-backward):
5949 Doc fix. (Bug#14376)
5950
5951 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5952
5953 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5954 (buffer-face-mode-invoke): Doc fix.
5955
5956 2013-06-18 Matthias Meulien <orontee@gmail.com>
5957
5958 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
5959 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
5960
5961 2013-06-18 Glenn Morris <rgm@gnu.org>
5962
5963 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5964 Replace obsolete function generic-make-keywords with its expansion.
5965
5966 * progmodes/python.el (ffap-alist): Declare.
5967
5968 * textmodes/reftex.el (bibtex-mode-map): Declare.
5969
5970 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5971
5972 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5973 (package-unpack, package-unpack-single): Return the pkg-dir.
5974 (package-download-transaction): Use it to update package-alist.
5975
5976 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5977
5978 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
5979 possible choice.
5980
5981 2013-06-17 Juri Linkov <juri@jurta.org>
5982
5983 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5984
5985 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5986
5987 * emacs-lisp/package.el (package-load-descriptor):
5988 Remove `with-syntax-table' call, `read' doesn't need it.
5989 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5990
5991 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5992
5993 * startup.el (command-line): Expand package name returned by
5994 `package--description-file' (bug#14639).
5995
5996 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5997
5998 * emacs-lisp/package.el (package-load-descriptor): Do not call
5999 `emacs-lisp-mode', just use its syntax table.
6000
6001 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
6002
6003 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
6004 `font-lock-extra-managed-props' if any prettifying keyword is added.
6005 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
6006 (prog-mode): Use `setq-local'.
6007
6008 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
6009
6010 * international/characters.el (standard-case-table): Set syntax of ?»
6011 and ?« to punctuation.
6012
6013 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
6014
6015 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
6016 Save relevant match data before calling `syntax-ppss' (bug#14595).
6017
6018 2013-06-15 Juri Linkov <juri@jurta.org>
6019
6020 * files-x.el (modify-file-local-variable-prop-line): Add local
6021 variables to the end of the existing comment on the first line.
6022 Use `file-auto-mode-skip' to skip interpreter magic line,
6023 and also skip XML declaration.
6024
6025 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6026
6027 * startup.el (package--builtin-versions): New var.
6028 (package-subdirectory-regexp): Remove.
6029 (package--description-file): Hard code its value instead.
6030
6031 * emacs-lisp/package.el: Don't activate packages older than builtin.
6032 (package-obsolete-list): Rename from package-obsolete-alist, and make
6033 it into a simple list of package-desc.
6034 (package-strip-version): Remove.
6035 (package-built-in-p): Use package--builtin-versions.
6036 (package-mark-obsolete): Simplify.
6037 (package-process-define-package): Mark it obsolete if older than the
6038 builtin version.
6039 (package-handle-response): Use line-end-position.
6040 (package-read-archive-contents, package--download-one-archive):
6041 Simplify.
6042 (package--add-to-archive-contents): Skip if older than the builtin or
6043 installed version.
6044 (package-menu-describe-package): Fix last change.
6045 (package-list-unversioned): New var.
6046 (package-menu--generate): Use it.
6047
6048 * emacs-lisp/autoload.el: Manage package--builtin-versions.
6049 (autoload--insert-text, autoload--insert-cookie-text): New functions.
6050 (autoload-builtin-package-versions): New variable.
6051 (autoload-generate-file-autoloads): Use them.
6052 Remove the list of autoloaded functions/macros from the
6053 (autoload...) comments.
6054
6055 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
6056
6057 2013-06-15 Eli Zaretskii <eliz@gnu.org>
6058
6059 * simple.el (line-move-partial): Don't jump to the next screen
6060 line as soon as it becomes visible. Instead, continue enlarging
6061 the vscroll until the portion of a tall screen line that's left on
6062 display is about the height of the frame's default font.
6063 (Bug#14567)
6064
6065 2013-06-15 Glenn Morris <rgm@gnu.org>
6066
6067 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
6068 compilation-error-regexp-alist void, or local while let-bound.
6069
6070 * progmodes/make-mode.el (makefile-mode-syntax-table):
6071 Treat "=" as punctuation. (Bug#14614)
6072
6073 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
6074
6075 * help-fns.el (describe-variable):
6076 Add extra line for permanent-local variables.
6077
6078 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
6079
6080 * progmodes/scheme.el (scheme-font-lock-keywords-2):
6081 Add export, import, library. (Bug#9164)
6082 (library): Set indent function.
6083
6084 2013-06-14 Glenn Morris <rgm@gnu.org>
6085
6086 * term/xterm.el (xterm--query):
6087 Stop after first matching handler. (Bug#14615)
6088
6089 2013-06-14 Ivan Kanis <ivan@kanis.fr>
6090
6091 Add support for dired in saveplace.
6092 * dired.el (dired-initial-position-hook): New variable.
6093 (dired-initial-position): Call hook to place cursor position.
6094 * saveplace.el (save-place-to-alist): Add dired position.
6095 (save-place-dired-hook): New function.
6096
6097 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
6098
6099 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
6100 through a symbol rather than letrec.
6101
6102 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
6103 (package-desc): Add `dir' field.
6104 (package-desc-full-name): New function.
6105 (package-load-descriptor): Combine the two arguments. Don't use `load'.
6106 (package-maybe-load-descriptor): Remove.
6107 (package-load-all-descriptors): Just call package-load-descriptor.
6108 (package--disabled-p): New function.
6109 (package-desc-vers, package-desc-doc): Remove aliases.
6110 (package--dir): Remove function.
6111 (package-activate): Check if a package is disabled.
6112 (package-process-define-package): New function, extracted from
6113 define-package.
6114 (define-package): Turn into a place holder.
6115 (package-unpack-single, package-tar-file-info):
6116 Use package--description-file.
6117 (package-compute-transaction): Use package--disabled-p.
6118 (package-download-transaction): Don't call
6119 package-maybe-load-descriptor since they're all loaded anyway.
6120 (package-install): Change argument to be a pkg-desc.
6121 (package-delete): Use a single pkg-desc argument.
6122 (describe-package-1): Use package-desc-dir instead of package--dir.
6123 Use package-desc property instead of package-symbol.
6124 (package-install-button-action): Adjust accordingly.
6125 (package--push): Rewrite.
6126 (package-menu--print-info): Adjust accordingly. Change the ID format
6127 to be a pkg-desc.
6128 (package-menu-describe-package, package-menu-get-status)
6129 (package-menu--find-upgrades, package-menu-mark-upgrades)
6130 (package-menu-execute, package-menu--name-predicate):
6131 Adjust accordingly.
6132 * startup.el (package--description-file): New function.
6133 (command-line): Use it.
6134 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6135 Use package-desc-version.
6136
6137 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
6138 (byte-compile-preprocess): Use it.
6139 (byte-compile-file-form-defalias): Try a bit harder to use macros we
6140 can't quite recognize.
6141 (byte-compile-add-to-list): Remove.
6142 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
6143 (cconv-closure-convert): Add assertion.
6144
6145 * emacs-lisp/map-ynp.el: Use lexical-binding.
6146 (map-y-or-n-p): Remove unused vars `tail' and `object'.
6147 Factor out some repeated code.
6148
6149 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6150
6151 * subr.el (with-eval-after-load): New macro.
6152 (eval-after-load): Allow form to be a function.
6153 take advantage of lexical-binding.
6154 (do-after-load-evaluation): Use dolist and adjust to new format.
6155 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
6156
6157 2013-06-13 Juri Linkov <juri@jurta.org>
6158
6159 * replace.el (perform-replace): Display "symbol " and other search
6160 modes from `isearch-message-prefix' in the *Help* buffer.
6161
6162 * isearch.el (isearch-query-replace): Add " symbol" and other
6163 possible search modes from `isearch-message-prefix' to the prompt.
6164 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
6165 when reading a regexp to collect.
6166
6167 2013-06-13 Juri Linkov <juri@jurta.org>
6168
6169 * isearch.el (word-search-regexp): Match whitespace if the search
6170 string begins or ends in whitespace. The LAX arg is applied to
6171 both ends of the search string. Use `regexp-quote' and explicit
6172 \< and \> instead of \b. Use \` and \' instead of ^ and $.
6173 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
6174 boundaries are replaced with symbol boundaries, and characters
6175 between symbols match non-word non-symbol syntax. (Bug#14602)
6176
6177 2013-06-13 Juri Linkov <juri@jurta.org>
6178
6179 * isearch.el (isearch-del-char): Don't exceed the length of
6180 `isearch-string' by the prefix arg. (Bug#14563)
6181
6182 2013-06-13 Juri Linkov <juri@jurta.org>
6183
6184 * isearch.el (isearch-yank-word, isearch-yank-line)
6185 (isearch-char-by-name, isearch-quote-char)
6186 (isearch-printing-char, isearch-process-search-char):
6187 Add optional count prefix arg. (Bug#14563)
6188
6189 * international/isearch-x.el
6190 (isearch-process-search-multibyte-characters):
6191 Add optional count prefix arg.
6192
6193 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6194
6195 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
6196 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
6197 lexical-binding.
6198
6199 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
6200
6201 * subr.el (set-temporary-overlay-map): Add on-exit argument.
6202
6203 2013-06-13 Glenn Morris <rgm@gnu.org>
6204
6205 * startup.el (tty-handle-args):
6206 Don't just discard "--" and anything after. (Bug#14608)
6207
6208 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
6209
6210 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
6211
6212 Implement changes in Secret Service API. Make it backward compatible.
6213 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
6214 (secrets-create-item): Use it. Prefix properties with interface.
6215
6216 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
6217
6218 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
6219 (term-emulate-terminal): Respect term-suppress-hard-newline.
6220
6221 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
6222
6223 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
6224 Only remove a `thumb-file' overlay. (Bug#14548)
6225
6226 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
6227
6228 * mail/reporter.el (reporter-submit-bug-report):
6229 Handle missing package-name. (Bug#14600)
6230
6231 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6232
6233 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
6234 (reftex-citation-prompt, reftex-default-bibliography)
6235 (reftex-bib-or-thebib, reftex-get-bibfile-list)
6236 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6237 (reftex-bib-sort-author, reftex-bib-sort-year)
6238 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
6239 (reftex-extract-bib-entries-from-thebibliography)
6240 (reftex-get-bibkey-default, reftex-get-bib-names)
6241 (reftex-parse-bibtex-entry, reftex-get-bib-field)
6242 (reftex-format-bib-entry, reftex-parse-bibitem)
6243 (reftex-format-bibitem, reftex-do-citation)
6244 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
6245 (reftex-restrict-bib-matches, reftex-extract-bib-file)
6246 (reftex-insert-bib-matches, reftex-format-citation)
6247 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
6248 (reftex-create-bibtex-file): Add docstrings, mostly by converting
6249 existing comments into docstrings.
6250
6251 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6252
6253 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
6254
6255 2013-06-12 Andreas Schwab <schwab@suse.de>
6256
6257 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
6258 for auto-save files.
6259
6260 2013-06-12 Glenn Morris <rgm@gnu.org>
6261
6262 * ido.el (ido-delete-ignored-files): Remove.
6263 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
6264 Go back to calling ido-ignore-item-p directly.
6265
6266 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
6267
6268 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
6269
6270 * ido.el (ido-delete-ignored-files): New function,
6271 split from ido-make-file-list-1.
6272 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
6273 (ido-make-file-list-1): Use ido-delete-ignored-files.
6274
6275 2013-06-12 Leo Liu <sdl.web@gmail.com>
6276
6277 * progmodes/octave.el (inferior-octave-startup)
6278 (inferior-octave-completion-table)
6279 (inferior-octave-track-window-width-change)
6280 (octave-eldoc-function-signatures, octave-help)
6281 (octave-find-definition): Use single quoted strings.
6282 (inferior-octave-startup-args): Change default value.
6283 (inferior-octave-startup): Do not hard code "-i" and
6284 "--no-line-editing".
6285 (inferior-octave-resync-dirs): Add optional arg NOERROR.
6286 (inferior-octave-directory-tracker): Use it.
6287 (octave-goto-function-definition): Robustify.
6288 (octave-help): Support highlighting operators in 'See also'.
6289 (octave-find-definition): Find subfunctions only in Octave mode.
6290
6291 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6292
6293 * help-fns.el (help-fns--compiler-macro): If the handler function is
6294 named, then put a link to it.
6295 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
6296 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
6297 (cl-typep): Use it.
6298 (cl-eval-when): Simplify debug spec.
6299 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
6300 compiler-macro function instead of setting `compiler-macro-file'.
6301
6302 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6303
6304 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
6305 * vc/vc-hooks.el (vc-stay-local): Doc fix.
6306
6307 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6308 Daniel Hackney <dan@haxney.org>
6309
6310 First part of Daniel Hackney's patch to package.el.
6311 * emacs-lisp/package.el: Use defstruct.
6312 (package-desc): New, main struct.
6313 (package--bi-desc, package--ac-desc): New structs, used to describe the
6314 format in external files.
6315 (package-desc-vers): Replace with package-desc-version accessor.
6316 (package-desc-doc): Replace with package-desc-summary accessor.
6317 (package-activate-1): Remove `package' arg since the pkg-vec now
6318 includes the name.
6319 (define-package): Use package-desc-from-define.
6320 (package-unpack-single): Change file-name arg to be a symbol.
6321 (package--add-to-archive-contents): Use package-desc-create and new
6322 accessor functions to package--ac-desc.
6323 (package-buffer-info, package-tar-file-info): Return a package-desc.
6324 (package-install-from-buffer): Remove `type' argument. Change pkg-info
6325 arg to be a package-desc.
6326 (package-install-file): Adjust accordingly. Use \' to match EOS.
6327 (package--from-builtin): New function.
6328 (describe-package-1, package-menu--generate): Use it.
6329 (package--make-autoloads-and-compile): Change name arg to be a symbol.
6330 (package-generate-autoloads): Idem and return the name of the file.
6331 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6332 Change pkg-info arg to be a package-desc.
6333 Use package-make-ac-desc.
6334 (package-upload-file): Use \' to match EOS.
6335 * finder.el (finder-compile-keywords): Use package-make-builtin.
6336
6337 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6338
6339 * vc/vc.el (vc-deduce-fileset): Change error message.
6340 (vc-read-backend): New function.
6341 (vc-next-action): Use it.
6342
6343 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
6344
6345 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
6346 (prolog-font-lock-keywords): Use regexp-opt instead.
6347 Don't manually highlight strings.
6348 (prolog-mode-variables): Simplify comment-start-skip.
6349 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
6350
6351 * emacs-lisp/generic.el (generic--normalise-comments)
6352 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
6353 (generic-mode-set-comments): Use them.
6354 (generic-bracket-support): Use setq-local.
6355 (generic-make-keywords-list): Declare obsolete.
6356
6357 2013-06-11 Glenn Morris <rgm@gnu.org>
6358
6359 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6360 Prettify after setting font-lock-defaults. (Bug#14574)
6361
6362 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
6363
6364 * replace.el (query-replace, occur-read-regexp-defaults-function)
6365 (replace-search):
6366 * subr.el (declare-function, number-sequence, local-set-key)
6367 (substitute-key-definition, locate-user-emacs-file)
6368 (with-silent-modifications, split-string, eval-after-load):
6369 Fix typos, remove unneeded backslashes and reflow some docstrings.
6370
6371 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6372
6373 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
6374 default for Elisp files.
6375
6376 2013-06-11 Glenn Morris <rgm@gnu.org>
6377
6378 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
6379 although define-derived-mode was doing this anyway. (Bug#14583)
6380
6381 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
6382
6383 * allout.el (allout-encryption-plaintext-sanitization-regexps):
6384 Fix make-variable-buffer-local call to refer to the correct variable.
6385
6386 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
6387
6388 * eshell/em-term.el (eshell-visual-commands)
6389 (eshell-visual-subcommands, eshell-visual-options):
6390 Add summary line to docstrings. Add cross-references.
6391
6392 2013-06-10 Glenn Morris <rgm@gnu.org>
6393
6394 * epa.el (epa-read-file-name): New function. (Bug#14510)
6395 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
6396
6397 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6398
6399 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
6400 output redirection to be ignored with visual commands.
6401
6402 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6403
6404 * eshell/em-term.el (eshell-visual-command-p): New function.
6405 (eshell-term-initialize): Move long lambda to separate function
6406 eshell-visual-command-p.
6407 * eshell/em-dirs.el (eshell-dirs-initialise):
6408 * eshell/em-script.el (eshell-script-initialize):
6409 Add missing #' to lambda.
6410
6411 2013-06-08 Leo Liu <sdl.web@gmail.com>
6412
6413 * progmodes/octave.el (octave-add-log-current-defun): New function.
6414 (octave-mode): Set add-log-current-defun-function.
6415 (octave-goto-function-definition): Do not move point if not found.
6416 (octave-find-definition): Enhance to try subfunctions first.
6417
6418 2013-06-08 Glenn Morris <rgm@gnu.org>
6419
6420 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6421 (byte-compile-backward-char, byte-compile-backward-word):
6422 Improve previous change, to handle non-explicit nil.
6423
6424 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6425
6426 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
6427 (smie--opener/closer-at-point): New function.
6428 (smie--matching-block-data): Use it. Don't match from right after an
6429 opener or right before a closer. Obey smie-blink-matching-inners.
6430 Don't signal a mismatch for repeated inners like "switch..case..case".
6431
6432 2013-06-07 Leo Liu <sdl.web@gmail.com>
6433
6434 * progmodes/octave.el (octave-mode): Set comment-use-global-state
6435 to t. (Bug#14303)
6436 (octave-function-header-regexp): Fix. (Bug#14570)
6437 (octave-help-mode-finish-hook, octave-help-mode-finish):
6438 Remove. Just use temp-buffer-show-hook.
6439
6440 * newcomment.el (comment-search-backward): Revert last change.
6441 (Bug#14434)
6442
6443 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
6444
6445 2013-06-07 Eli Zaretskii <eliz@gnu.org>
6446
6447 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
6448 through xargs, to avoid failure due to MS-Windows limitations on
6449 command-line length.
6450
6451 2013-06-06 Glenn Morris <rgm@gnu.org>
6452
6453 * font-lock.el (lisp-font-lock-keywords-2):
6454 Treat user-error like error.
6455
6456 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6457 (byte-compile-backward-char, byte-compile-backward-word):
6458 Handle explicit nil arguments. (Bug#14565)
6459
6460 2013-06-05 Alan Mackenzie <acm@muc.de>
6461
6462 * isearch.el (isearch-allow-prefix): New user option.
6463 (isearch-other-meta-char): Don't exit isearch when a prefix
6464 argument is typed whilst `isearch-allow-prefix' is non-nil.
6465 (Bug#9706)
6466
6467 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6468
6469 * autorevert.el (auto-revert-notify-handler): Use memq.
6470 Hide assertion failure.
6471
6472 * skeleton.el: Use cl-lib.
6473 (skeleton-further-elements): Use defvar-local.
6474 (skeleton-insert): Use cl-progv.
6475
6476 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6477
6478 * progmodes/prog-mode.el (prog-prettify-symbols)
6479 (prog-prettify-install): Update docstrings.
6480
6481 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6482
6483 * simple.el: Move all the prog-mode code to prog-mode.el.
6484 * progmodes/prog-mode.el: New file.
6485 * loadup.el: Add prog-mode.el.
6486
6487 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6488
6489 * simple.el (prog-prettify-symbols): Add version.
6490 (prog-prettify-install): Add convenience function to prettify symbols.
6491
6492 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
6493 (perl--augmented-font-lock-keywords-1)
6494 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
6495 variables and use it.
6496
6497 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6498 (cfengine3-mode): Remove unneeded variable and use it.
6499
6500 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6501 (lisp--augmented-font-lock-keywords-1)
6502 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
6503 Remove unneeded variables and use it.
6504
6505 2013-06-05 João Távora <joaotavora@gmail.com>
6506
6507 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
6508 to point when opening the connection. (Bug#14380)
6509
6510 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6511
6512 * subr.el (load-history-regexp, load-history-filename-element)
6513 (eval-after-load, after-load-functions, do-after-load-evaluation)
6514 (eval-next-after-load, display-delayed-warnings)
6515 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
6516 definition of save-match-data.
6517 (overriding-local-map): Remove accidental obsolescence declaration.
6518
6519 * emacs-lisp/edebug.el (edebug-result): Move before first use.
6520
6521 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6522
6523 Generalize symbol prettify support to prog-mode and implement it
6524 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
6525 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
6526 (prog--prettify-font-lock-compose-symbol)
6527 (prog-prettify-font-lock-symbols-keywords): New variables and
6528 functions to support symbol prettification.
6529 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6530 (lisp--augmented-font-lock-keywords-1)
6531 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
6532 (lisp--prettify-symbols-alist): Implement prettify of lambda.
6533 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6534 (cfengine3--prettify-symbols-alist, cfengine3-mode):
6535 Implement prettify of -> => :: strings.
6536 * progmodes/perl-mode.el (perl-prettify-symbols)
6537 (perl--font-lock-compose-symbol)
6538 (perl--font-lock-symbols-keywords): Move to prog-mode.
6539 (perl--prettify-symbols-alist): Prettify -> => :: strings.
6540 (perl-font-lock-keywords-1)
6541 (perl-font-lock-keywords-2): Remove explicit prettify support.
6542 (perl--augmented-font-lock-keywords)
6543 (perl--augmented-font-lock-keywords-1)
6544 (perl--augmented-font-lock-keywords-2, perl-mode):
6545 Implement prettify support.
6546
6547 2013-06-05 Leo Liu <sdl.web@gmail.com>
6548
6549 Re-implement smie matching block highlight using
6550 show-paren-data-function. (Bug#14395)
6551 * emacs-lisp/smie.el (smie-matching-block-highlight)
6552 (smie--highlight-matching-block-overlay)
6553 (smie--highlight-matching-block-lastpos)
6554 (smie-highlight-matching-block)
6555 (smie-highlight-matching-block-mode): Remove.
6556 (smie--matching-block-data-cache): New variable.
6557 (smie--matching-block-data): New function.
6558 (smie-setup): Use smie--matching-block-data for
6559 show-paren-data-function.
6560
6561 * progmodes/octave.el (octave-mode-menu): Fix.
6562 (octave-find-definition): Skip garbage lines.
6563
6564 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6565
6566 Fix compilation error with simultaneous dynamic+lexical scoping.
6567 Add warning when a defvar appears after the first let-binding.
6568 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
6569 (byte-compile-close-variables): Initialize it.
6570 (byte-compile--declare-var): New function.
6571 (byte-compile-file-form-defvar)
6572 (byte-compile-file-form-define-abbrev-table)
6573 (byte-compile-file-form-custom-declare-variable): Use it.
6574 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
6575 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
6576 (byte-compile-bind): Handle dynamic bindings that shadow
6577 lexical bindings.
6578 (byte-compile-unbind): Make arg non-optional.
6579 (byte-compile-let): Simplify.
6580 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
6581 (cconv--analyse-function, cconv-analyse-form): Populate it.
6582 Protect byte-compile-bound-variables to limit the scope of defvars.
6583 (cconv-analyse-form): Add missing rule for (defvar <foo>).
6584 Remove unneeded rule for `declare'.
6585
6586 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
6587 so as to avoid depending on cl-adjoin at run-time.
6588 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
6589
6590 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
6591 (macroexp--warn-and-return): Use it.
6592
6593 2013-06-05 Leo Liu <sdl.web@gmail.com>
6594
6595 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
6596
6597 2013-06-04 Leo Liu <sdl.web@gmail.com>
6598
6599 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
6600 (compilation-auto-jump): Suppress the "Mark set" message to give
6601 way to exit message.
6602
6603 2013-06-04 Alan Mackenzie <acm@muc.de>
6604
6605 Remove faulty optimisation from indentation calculation.
6606 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
6607 search limit based on 2000 characters back from indent-point.
6608
6609 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6610
6611 * eshell/em-term.el (cl-lib): Require `cl-lib'.
6612
6613 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6614
6615 * emacs-lisp/lisp.el: Use lexical-binding.
6616 (lisp--local-variables-1, lisp--local-variables): New functions.
6617 (lisp--local-variables-completion-table): New var.
6618 (lisp-completion-at-point): Use it complete let-bound vars.
6619
6620 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
6621 eagerly (bug#14422).
6622
6623 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
6624
6625 * autorevert.el (auto-revert-notify-enabled)
6626 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
6627 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
6628 (auto-revert-notify-handler): Handle also gfilenotify.
6629
6630 * subr.el (file-notify-handle-event): New defun. Replacing ...
6631 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
6632 Remove.
6633
6634 2013-06-03 Juri Linkov <juri@jurta.org>
6635
6636 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
6637 `M-s h .'. (Bug#14427)
6638
6639 * hi-lock.el (highlight-symbol-at-point): New alias for the new
6640 command `hi-lock-face-symbol-at-point'.
6641 (hi-lock-face-symbol-at-point): New command.
6642 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
6643 (hi-lock-menu): Add `highlight-symbol-at-point'.
6644 (hi-lock-mode): Doc fix.
6645
6646 * isearch.el (isearch-forward-symbol-at-point): New command.
6647 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
6648 (isearch-highlight-regexp): Add a regexp which matches
6649 words/symbols for word/symbol mode.
6650
6651 * subr.el (find-tag-default-bounds): New function with the body
6652 mostly moved from `find-tag-default'.
6653 (find-tag-default): Move most code to `find-tag-default-bounds',
6654 call it and apply `buffer-substring-no-properties' afterwards.
6655
6656 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6657
6658 * eshell/em-term.el (eshell-term-initialize):
6659 Use `cl-intersection' rather than `intersection'.
6660
6661 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
6662
6663 * vc/log-view.el: Doc fix.
6664 (log-view-mode-map): Copy keymap from `special-mode-map'.
6665
6666 2013-06-02 Eric Ludlam <zappo@gnu.org>
6667
6668 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
6669 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
6670 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
6671 (eieio-unbound, eieio-default-superclass)
6672 (eieio--define-field-accessors, method-static, method-before)
6673 (method-primary, method-after, method-num-lists)
6674 (method-generic-before, method-generic-primary)
6675 (method-generic-after, method-num-slots)
6676 (eieio-specialized-key-to-generic-key)
6677 (eieio--check-type, class-v, class-p)
6678 (eieio-class-name, define-obsolete-function-alias)
6679 (eieio-class-parents-fast, eieio-class-children-fast)
6680 (same-class-fast-p, class-constructor, generic-p)
6681 (generic-primary-only-p, generic-primary-only-one-p)
6682 (class-option-assoc, class-option, eieio-object-p)
6683 (class-abstract-p, class-method-invocation-order)
6684 (eieio-defclass-autoload-map, eieio-defclass-autoload)
6685 (eieio-class-un-autoload, eieio-defclass)
6686 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
6687 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
6688 (eieio--defgeneric-init-form, eieio-defgeneric-form)
6689 (eieio-defgeneric-reset-generic-form)
6690 (eieio-defgeneric-form-primary-only)
6691 (eieio-defgeneric-reset-generic-form-primary-only)
6692 (eieio-defgeneric-form-primary-only-one)
6693 (eieio-defgeneric-reset-generic-form-primary-only-one)
6694 (eieio-unbind-method-implementations)
6695 (eieio--defmethod, eieio--typep)
6696 (eieio-perform-slot-validation, eieio-validate-slot-value)
6697 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
6698 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
6699 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
6700 (eieio-slot-name-index, eieio-class-slot-name-index)
6701 (eieio-set-defaults, eieio-initarg-to-attribute)
6702 (eieio-attribute-to-initarg, eieio-c3-candidate)
6703 (eieio-c3-merge-lists, eieio-class-precedence-c3)
6704 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
6705 (eieio-class-precedence-list, eieio-generic-call-methodname)
6706 (eieio-generic-call-arglst, eieio-generic-call-key)
6707 (eieio-generic-call-next-method-list)
6708 (eieio-pre-method-execution-functions, eieio-generic-call)
6709 (eieio-generic-call-primary-only, eieiomt-method-list)
6710 (eieiomt-optimizing-obarray, eieiomt-install)
6711 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6712 (eieio-generic-form, eieio-defmethod, make-obsolete)
6713 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
6714 (defclass): Remove `eval-and-compile' from macro.
6715 (call-next-method, shared-initialize): Instead of using
6716 `scoped-class' variable, use new eieio--scoped-class, and
6717 eieio--with-scoped-class.
6718 (initialize-instance): Rename local variable 'scoped-class' to
6719 'this-class' to remove ambiguitity from old global.
6720
6721 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6722 eieio.el.
6723 (eieio--scoped-class-stack): New variable.
6724 (eieio--scoped-class): New fcn.
6725 (eieio--with-scoped-class): New scoping macro.
6726 (eieio-defclass): Use pushnew instead of add-to-list.
6727 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6728 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6729 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6730 `scoped-class' variable, use new eieio--scoped-class, and
6731 eieio--with-scoped-class.
6732
6733 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6734
6735 2013-06-02 Tassilo Horn <tsdh@gnu.org>
6736
6737 * eshell/esh-ext.el (eshell-external-command): Pass args to
6738 `eshell-find-interpreter'.
6739 (eshell-find-interpreter): Add new second parameter ARGS.
6740
6741 * eshell/em-script.el (eshell-script-initialize): Add second arg
6742 to the function added as MATCH to `eshell-interpreter-alist'.
6743
6744 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
6745 the function added as MATCH to `eshell-interpreter-alist'.
6746
6747 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6748 (eshell-visual-options): New defcustom.
6749 (eshell-escape-control-x): Adapt docstring.
6750 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6751 `eshell-visual-options' in addition to `eshell-visual-commands'.
6752 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6753
6754 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
6755
6756 * progmodes/python.el (python-indent-block-enders): Add break,
6757 continue and raise keywords.
6758
6759 2013-06-01 Glenn Morris <rgm@gnu.org>
6760
6761 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6762
6763 Plain (f)boundp silences compilation warnings since Emacs 22.1.
6764 * progmodes/cc-cmds.el (delete-forward-p):
6765 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6766 * progmodes/cc-engine.el (buffer-syntactic-context):
6767 * progmodes/cc-fonts.el (face-property-instance):
6768 * progmodes/cc-mode.el (set-keymap-parents):
6769 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6770 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6771 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
6772 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6773 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
6774
6775 * progmodes/cc-vars.el (other): Emacs has this widget since
6776 at least 21.1, so don't (re)define it.
6777
6778 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6779 Replace the obsolete alias pcomplete-arg-quote-list.
6780
6781 2013-06-01 Leo Liu <sdl.web@gmail.com>
6782
6783 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6784 punctuation syntax.
6785 (inferior-octave-minimal-columns)
6786 (inferior-octave-last-column-width): New variables.
6787 (inferior-octave-track-window-width-change): New function.
6788 (inferior-octave-mode): Adjust column width so that Octave output,
6789 for example from 'ls', can fit into the window nicely.
6790
6791 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6792
6793 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6794 Highlight expansions inside regexp literals.
6795
6796 2013-05-31 Glenn Morris <rgm@gnu.org>
6797
6798 * obsolete/sym-comp.el (symbol-complete):
6799 Replace obsolete completion-annotate-function.
6800
6801 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6802
6803 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6804
6805 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6806 New function, checks if point is inside a literal that allows
6807 expression expansion.
6808 (ruby-syntax-propertize-expansion): Use it.
6809 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6810 around the body.
6811
6812 2013-05-30 Juri Linkov <juri@jurta.org>
6813
6814 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6815 to "\M-si".
6816 (isearch-invisible): New variable.
6817 (isearch-forward): Doc fix.
6818 (isearch-mode): Set `isearch-invisible'
6819 to the value of `search-invisible'.
6820 (isearch-toggle-case-fold): Doc fix.
6821 (isearch-toggle-invisible): New command.
6822 (isearch-query-replace): Let-bind `search-invisible'
6823 to the value of `isearch-invisible'.
6824 (isearch-search): Use `isearch-invisible' instead of
6825 `search-invisible'. Let-bind `search-invisible'
6826 to the value of `isearch-invisible'. (Bug#11378)
6827
6828 2013-05-30 Juri Linkov <juri@jurta.org>
6829
6830 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6831 call when `query-flag' is nil and `search-invisible' is non-nil.
6832 (Bug#11746)
6833
6834 2013-05-30 Glenn Morris <rgm@gnu.org>
6835
6836 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6837
6838 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6839 (cc-require): Suppress spurious "noruntime" warnings.
6840 (cc-require-when-compile): Use fboundp, for sake of compiler.
6841
6842 * progmodes/cc-mode.el: Move load of cc-vars before that of
6843 cc-langs (which in turn loads cc-vars), to quieten compiler.
6844
6845 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6846
6847 * paren.el: Simplify the code.
6848 (show-paren-mode): Always start the timer.
6849 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6850 (show-paren--overlay, show-paren--overlay-1): Rename from
6851 show-paren-overlay and show-paren-overlay-1, and initialize to an
6852 overlay rather than to nil.
6853 (show-paren-function): Misc cleanup and simplifications.
6854
6855 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6856
6857 * paren.el (show-paren-data-function): New hook.
6858 (show-paren--default): New function, extracted from show-paren-function.
6859 (show-paren-function): Use show-paren-data-function.
6860
6861 2013-05-30 Glenn Morris <rgm@gnu.org>
6862
6863 * ielm.el (ielm-map, ielm-complete-symbol):
6864 Use completion-at-point rather than obsolete functions.
6865 (inferior-emacs-lisp-mode): Doc fix.
6866 Set completion-at-point-functions, rather than
6867 comint-dynamic-complete-functions.
6868
6869 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6870 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6871 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6872
6873 * image.el (image-animated-p): Tweak definition.
6874
6875 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6876 (rlogin-process-connection-type): Tweak default. Add set-after.
6877 (rlogin-host): Doc fix.
6878 (rlogin): Tweak prompt.
6879 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6880
6881 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6882 * progmodes/tcl.el (inferior-tcl-mode-map):
6883 Use completion-at-point rather than obsolete alias.
6884
6885 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6886
6887 * minibuffer.el (read-file-name-completion-ignore-case):
6888 Move before completion--in-region, for eager macro expansion.
6889
6890 2013-05-29 Juri Linkov <juri@jurta.org>
6891
6892 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6893 for total count of matching lines. Add `global-matches' for total
6894 count of matches. Rename `matches' to `lines' for count of
6895 matching lines. Add `matches' for count of matches.
6896 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6897 to `prev-line' for line number of prev match endpt.
6898 Increment `matches' for every match. Print the number of
6899 matching lines in the header.
6900 (occur-context-lines): Rename `lines' to `curr-line'.
6901 Rename `prev-lines' to `prev-line'. (Bug#14017)
6902
6903 2013-05-29 Juri Linkov <juri@jurta.org>
6904
6905 * replace.el (perform-replace): Add `skip-read-only-count',
6906 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6907 Increment them for corresponding conditions and report the number
6908 of skipped occurrences in the final message. (Bug#11746)
6909 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6910 (replace-string, replace-regexp): Doc fix.
6911
6912 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6913
6914 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6915
6916 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
6917 prog-mode-map (bug#14504).
6918
6919 2013-05-29 Leo Liu <sdl.web@gmail.com>
6920
6921 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6922 (octave-help): Small simplification.
6923
6924 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6925 off the highlight first.
6926
6927 2013-05-29 Glenn Morris <rgm@gnu.org>
6928
6929 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6930 Handle idlwave-last-system-routine-info-cons-cell being nil.
6931
6932 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6933 (idlwave-write-paths): Simplify via with-temp-buffer.
6934
6935 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6936 * emulation/cua-rect.el: Also load cua-base at run time.
6937
6938 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6939 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6940 (cperl-imenu-on-info): Require imenu.
6941
6942 2013-05-28 Alan Mackenzie <acm@muc.de>
6943
6944 Handle "capitalised keywords" correctly.
6945 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
6946
6947 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
6948
6949 * eshell/em-unix.el: Add -r option to cp.
6950
6951 2013-05-28 Glenn Morris <rgm@gnu.org>
6952
6953 * vc/vc-arch.el (vc-exec-after): Declare.
6954 (vc-switches): Autoload.
6955 * vc/vc-bzr.el: No need to require vc when compiling.
6956 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6957 (vc-resynch-buffer, vc-dir-refresh): Declare.
6958 (vc-setup-buffer, vc-switches): Autoload.
6959 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6960 (vc-resynch-buffer): Declare.
6961 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
6962 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
6963 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6964 (grep-read-regexp, grep-read-files, grep-expand-template)
6965 (vc-dir-refresh): Declare.
6966 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6967 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6968 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
6969 * vc/vc-mtn.el (vc-exec-after): Declare.
6970 (vc-switches): Autoload.
6971 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6972 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6973 (vc-file-tree-walk): Declare.
6974 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
6975 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
6976 (vc-tag-precondition, vc-rename-master): Autoload.
6977 * vc/vc-svn.el (vc-exec-after): Declare.
6978 (vc-switches, vc-setup-buffer): Autoload.
6979 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6980 Autoload.
6981 (vc-resynch-buffer): Declare.
6982
6983 * obsolete/fast-lock.el (byte-compile-warnings):
6984 Don't warn about obsolete features in this obsolete file.
6985
6986 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6987 Move definition before use.
6988
6989 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6990 (dun-unix-verbs): Remove dun-zippy.
6991 (dun-zippy): Remove function.
6992
6993 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6994
6995 2013-05-27 Juri Linkov <juri@jurta.org>
6996
6997 * replace.el (replace-search): New function with code moved out
6998 from `perform-replace'.
6999 (replace-highlight, replace-dehighlight): Move function definitions
7000 up closer to `replace-search'. (Bug#11746)
7001
7002 2013-05-27 Juri Linkov <juri@jurta.org>
7003
7004 * replace.el (perform-replace): Ignore invisible matches.
7005 In addition to checking `query-replace-skip-read-only', also
7006 filter out matches by calling `run-hook-with-args-until-failure'
7007 on `isearch-filter-predicates', and also check `search-invisible'
7008 for t or call `isearch-range-invisible'.
7009 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
7010
7011 2013-05-27 Juri Linkov <juri@jurta.org>
7012
7013 * isearch.el (isearch-filter-predicates): Rename from
7014 `isearch-filter-predicate'. Doc fix. (Bug#11378)
7015 (isearch-message-prefix): Display text from the property
7016 `isearch-message-prefix' of the currently active filters.
7017 (isearch-search): Don't compare `isearch-filter-predicate' with
7018 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
7019 on `isearch-filter-predicates'. Also check `search-invisible' for t
7020 or call `isearch-range-invisible'.
7021 (isearch-filter-visible): Make obsolete.
7022 (isearch-lazy-highlight-search):
7023 Call `run-hook-with-args-until-failure' on
7024 `isearch-filter-predicates' and use `isearch-range-invisible'.
7025
7026 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
7027 `isearch-filter-predicates' instead of `funcall'ing
7028 `isearch-filter-predicate'.
7029 (Info-mode): Set `Info-isearch-filter' to
7030 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
7031
7032 * dired-aux.el (dired-isearch-filter-predicate-orig):
7033 Remove variable.
7034 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
7035 (dired-isearch-filenames-end): Add and remove
7036 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
7037 instead of changing the value of `isearch-filter-predicate'.
7038 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
7039 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
7040 Put property `isearch-message-prefix' to "filename " on
7041 `dired-isearch-filter-filenames'.
7042
7043 * wdired.el (wdired-change-to-wdired-mode):
7044 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
7045 locally instead of changing `isearch-filter-predicate'.
7046 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
7047
7048 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
7049
7050 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
7051 return the commit hash (Bug#14459). Also set the
7052 `vc-git-detached' property.
7053 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
7054 (vc-git-mode-line-string): Use the same help-echo format whether
7055 in detached mode or not, because we know the actual revision now.
7056 When in detached mode, shorten the revision to 7 chars.
7057
7058 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7059
7060 * emacs-lisp/easy-mmode.el (define-minor-mode):
7061 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
7062 mode hook and provide a docstring.
7063
7064 2013-05-27 Alan Mackenzie <acm@muc.de>
7065
7066 Remove spurious syntax-table text properties inserted by C-y.
7067 * progmodes/cc-mode.el (c-after-change): Also clear hard
7068 syntax-table property with value nil.
7069
7070 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
7071
7072 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
7073 when reading the events; the buffer layout shall not be changed.
7074
7075 2013-05-27 Leo Liu <sdl.web@gmail.com>
7076
7077 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
7078 New variable.
7079 (inferior-octave-directory-tracker): Automatically re-sync
7080 default-directory.
7081 (octave-help): Improve handling of 'See also'.
7082
7083 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7084
7085 * doc-view.el: Minor naming convention tweaks.
7086 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
7087
7088 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
7089 even if there's no `display' property yet (bug#14435).
7090
7091 2013-05-25 Eli Zaretskii <eliz@gnu.org>
7092
7093 * subr.el (unmsys--file-name): Rename from reveal-filename.
7094
7095 * Makefile.in (custom-deps, finder-data, autoloads)
7096 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7097 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7098 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
7099
7100 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7101
7102 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
7103 error-completion on the first 2 args of condition-case (bug#14446).
7104 Don't burp at EOB.
7105
7106 2013-05-25 Leo Liu <sdl.web@gmail.com>
7107
7108 * comint.el (comint-previous-matching-input): Do not flood the
7109 *Messages* buffer with trivial messages.
7110
7111 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7112
7113 * progmodes/flymake.el (flymake-nop): Don't return a string.
7114 (flymake-set-at): Fix typo.
7115
7116 * simple.el (read--expression): New function, extracted from
7117 eval-expression. Set completion-at-point-functions (bug#14465).
7118 (eval-expression, eval-minibuffer): Use it.
7119
7120 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
7121
7122 * progmodes/flymake.el (flymake-save-buffer-in-file)
7123 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
7124 (flymake-selected-frame, flymake-log, flymake-ins-after)
7125 (flymake-set-at, flymake-get-buildfile-from-cache)
7126 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
7127 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
7128 Refine the doc string.
7129 (flymake-get-file-name-mode-and-masks): Reformat.
7130 (flymake-get-real-file-name-function): Fix a minor bug.
7131
7132 2013-05-24 Juri Linkov <juri@jurta.org>
7133
7134 * progmodes/grep.el (grep-mode-font-lock-keywords):
7135 Support =linenumber= format used by git-grep for lines with
7136 function names. (Bug#13549)
7137
7138 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7139
7140 * progmodes/octave.el (octave-smie-rules): Return nil rather than
7141 0 after a semi-colon; it works better for smie-auto-fill.
7142 (octave--indent-new-comment-line): New function.
7143 (octave-indent-new-comment-line): Use it (indirectly).
7144 (octave-mode): Don't disable smie-auto-fill. Use add-function to
7145 modify comment-line-break-function.
7146
7147 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
7148 (smie-setup): Use add-function to set it.
7149
7150 2013-05-24 Sam Steingold <sds@gnu.org>
7151
7152 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
7153 argument (before the `interactive' argument).
7154
7155 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7156
7157 * image-mode.el (image-mode-winprops): Add winprops to
7158 image-mode-winprops-alist before running
7159 image-mode-new-window-functions.
7160 * doc-view.el (doc-view-new-window-function): Don't delay
7161 doc-view-goto-page via timers (bug#14435).
7162
7163 2013-05-24 Tassilo Horn <tsdh@gnu.org>
7164
7165 * doc-view.el: Integrate with desktop.el. (Bug#14435)
7166 (doc-view-desktop-save-buffer): New function.
7167 (doc-view-restore-desktop-buffer): New function.
7168 (desktop-buffer-mode-handlers):
7169 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
7170 handler.
7171 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
7172 `desktop-save-buffer' function.
7173
7174 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
7175
7176 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
7177 (tramp-gvfs-file-name-handler): Raise a user error when
7178 `tramp-gvfs-enabled' is nil.
7179 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
7180 Do not raise a user error when loading package. (Bug#14447)
7181
7182 * net/xesam.el: Move to obsolete/.
7183
7184 2013-05-24 Glenn Morris <rgm@gnu.org>
7185
7186 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
7187
7188 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
7189
7190 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
7191 (Info-find-node, Man-getpage-in-background): Declare.
7192
7193 * mail/unrmail.el (unrmail):
7194 Replace obsolete detect-coding-with-priority.
7195
7196 * net/socks.el (socks-split-string): Use this rather than split-string.
7197 (socks-nslookup-host): Update for above change.
7198 (dynamic-choice, s5-dynamic-choice-match)
7199 (s5-dynamic-choice-match-inline, s5-widget-value-create):
7200 Comment out unused code.
7201
7202 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
7203 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
7204 (gud-tooltip-echo-area): Make obsolete.
7205 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
7206
7207 * progmodes/js.el (js--optimize-arglist): Declare.
7208
7209 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
7210
7211 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
7212 (ediff-window-C): Declare.
7213
7214 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
7215 Tweak requires to silence compiler.
7216
7217 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
7218 (he-search-string, he-tried-table, he-expand-list)
7219 (he-init-string, he-string-member, he-substitute-string)
7220 (he-reset-string): Declare.
7221
7222 * obsolete/options.el (list-options): Use custom-variable-p,
7223 rather than obsolete alias.
7224
7225 2013-05-23 Sam Steingold <sds@gnu.org>
7226
7227 * simple.el (shell-command-on-region): Pass the `replace' argument
7228 down to `call-process-region' to comply with the doc as reported on
7229 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
7230
7231 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7232
7233 * emacs-lisp/smie.el (smie-indent-forward-token)
7234 (smie-indent-backward-token): Handle string tokens (bug#14381).
7235
7236 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7237
7238 * ielm.el (ielm-menu): New menu.
7239 (inferior-emacs-lisp-mode): Set comment-start.
7240
7241 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7242
7243 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
7244 Fix deactivate action.
7245
7246 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
7247 Add cleveref macros.
7248
7249 * lisp/textmodes/reftex-parse.el
7250 (reftex-locate-bibliography-files): Accept options for
7251 bibliography commands.
7252 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
7253 Add addbibresource. Basic Biblatex support.
7254
7255 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
7256
7257 * net/tramp-gvfs.el (top):
7258 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
7259 when loading package. (Bug#14447)
7260
7261 2013-05-23 Glenn Morris <rgm@gnu.org>
7262
7263 * progmodes/js.el: No need to load comint when compiling.
7264 (ring-insert, comint-send-string, comint-send-input)
7265 (comint-last-input-end, ido-chop): Declare.
7266
7267 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
7268 * vc/ediff-mult.el: Adjust requires.
7269 (ediff-directories-internal, ediff-directory-revisions-internal)
7270 (ediff-patch-file-internal): Declare.
7271 * vc/ediff-ptch.el: Adjust requires.
7272 (ediff-use-last-dir, ediff-buffers-internal): Declare.
7273 (ediff-find-file): Autoload.
7274 * vc/ediff-util.el: No need to load ediff when compiling.
7275 (ediff-regions-internal): Declare.
7276 * vc/ediff-wind.el: Adjust requires.
7277 (ediff-compute-toolbar-width): Define when compiling.
7278 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
7279 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
7280 (dired-get-filename, dired-get-marked-files)
7281 (ediff-last-dir-patch, ediff-patch-default-directory)
7282 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
7283 (ediff-patch-buffer-internal): Declare.
7284
7285 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
7286 (ispell-process, ispell-buffer-local-words, lm-summary)
7287 (lm-section-start, lm-section-end): Declare.
7288 (checkdoc-ispell-init): Simplify.
7289
7290 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
7291 (he-string-member, he-reset-string, he-substitute-string): Declare.
7292
7293 * eshell/em-ls.el: Adjust requires.
7294 (eshell-glob-regexp): Declare.
7295 * eshell/em-tramp.el: Adjust requires.
7296 (eshell-parse-command): Autoload.
7297 * eshell/em-xtra.el: Adjust requires.
7298 (eshell-parse-command): Autoload.
7299 * eshell/esh-ext.el: Adjust requires.
7300 (eshell-parse-command, eshell-close-handles): Autoload.
7301 * eshell/esh-io.el: Adjust requires.
7302 (eshell-output-filter): Autoload.
7303 * eshell/esh-util.el: No need to load tramp when compiling.
7304 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
7305 Declare.
7306 (eshell-parse-ange-ls): Require ange-ftp and tramp.
7307 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7308 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
7309 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
7310 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
7311 * eshell/esh-opt.el, eshell/esh-proc.el:
7312 * eshell/esh-var.el: Adjust requires.
7313 * eshell/eshell.el: Do not require esh-util twice.
7314 (eshell-add-input-to-history): Declare.
7315 (eshell-command): Check history module is active before using it.
7316
7317 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
7318
7319 2013-05-22 Leo Liu <sdl.web@gmail.com>
7320
7321 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
7322
7323 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
7324
7325 * autorevert.el (auto-revert-notify-add-watch)
7326 (auto-revert-notify-handler): Add `attrib' for the inotify case,
7327 it indicates changes in file modification time.
7328
7329 2013-05-22 Glenn Morris <rgm@gnu.org>
7330
7331 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7332 Always delete the autoloaded function from the noruntime and
7333 unresolved functions lists.
7334
7335 * allout.el: No need to load epa, epg, overlay when compiling.
7336 (epg-context-set-passphrase-callback, epg-list-keys)
7337 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
7338 (epg-key-user-id-list): Declare.
7339
7340 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7341 (viper-set-parsing-style-toggling-macro)
7342 (viper-set-emacs-state-searchstyle-macros):
7343 Use called-interactively-p on Emacs.
7344 (viper-looking-back): Make it an obsolete alias. Update callers.
7345 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
7346 Use looking-back rather than viper-looking-back.
7347 (viper-tmp-insert-at-eob, viper-enlarge-region)
7348 (viper-read-string-with-history, viper-register-to-point)
7349 (viper-append-to-register, viper-change-state-to-vi)
7350 (viper-backward-char-carefully, viper-forward-char-carefully)
7351 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
7352 (viper-change-state-to-emacs): Declare.
7353 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
7354 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
7355 * emulation/viper-mous.el: Do not load viper-cmd.
7356 (viper-backward-char-carefully, viper-forward-char-carefully)
7357 (viper-forward-word, viper-adjust-window): Declare.
7358
7359 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
7360
7361 * progmodes/idlw-help.el (idlwave-help-fontify):
7362 Use called-interactively-p.
7363
7364 * term/w32console.el (w32-get-console-codepage)
7365 (w32-get-console-output-codepage): Declare.
7366
7367 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
7368 Remove unnecessary declarations.
7369 (dframe-message): Doc fix.
7370
7371 * info.el (dframe-select-attached-frame, dframe-current-frame):
7372 Declare.
7373
7374 * speedbar.el (speedbar-message): Make it an obsolete alias.
7375 Update all callers.
7376 (speedbar-with-attached-buffer)
7377 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
7378 (speedbar-with-writable): Use backquote.
7379 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
7380 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
7381 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
7382 rather than speedbar- aliases.
7383 * mail/rmail.el: Load dframe rather than speedbar when compiling.
7384 (speedbar-make-specialized-keymap, speedbar-insert-button)
7385 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
7386 (speedbar-do-function-pointer): Declare.
7387 (rmail-speedbar-button, rmail-speedbar-find-file)
7388 (rmail-speedbar-move-message):
7389 Use dframe-with-attached-buffer rather than speedbar- alias.
7390 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
7391 (dframe-message, speedbar-make-specialized-keymap)
7392 (speedbar-add-expansion-list, speedbar-mode-functions-list)
7393 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
7394 (speedbar-insert-button, dframe-select-attached-frame)
7395 (dframe-maybee-jump-to-attached-frame)
7396 (speedbar-change-initial-expansion-list)
7397 (speedbar-previously-used-expansion-list-name): Declare.
7398 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
7399 Use dframe-message, dframe-with-attached-buffer rather than
7400 speedbar- aliases.
7401 (gud-sentinel): Silence compiler.
7402 * progmodes/vhdl-mode.el (speedbar-refresh)
7403 (speedbar-do-function-pointer, speedbar-add-supported-extension)
7404 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
7405 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
7406 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
7407 (speedbar-file-lists, speedbar-make-tag-line)
7408 (speedbar-line-directory, speedbar-goto-this-file)
7409 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
7410 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
7411 (speedbar-make-button, speedbar-reset-scanners)
7412 (speedbar-files-item-info, speedbar-line-text)
7413 (speedbar-find-file-in-frame, speedbar-set-timer)
7414 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
7415 (speedbar-with-writable): Do not (re)define it.
7416 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
7417 rather than speedbar- alias.
7418
7419 2013-05-21 Leo Liu <sdl.web@gmail.com>
7420
7421 * progmodes/octave.el (octave-mode-menu): Update and re-organize
7422 menu items.
7423 (octave-mode): Tweak fill-nobreak-predicate.
7424 (inferior-octave-startup): Check process to avoid infinite loop.
7425 (inferior-octave): Pop to buffer first to show abornmal process
7426 exit information.
7427
7428 2013-05-21 Glenn Morris <rgm@gnu.org>
7429
7430 * printing.el (pr-menu-bar): Define when compiling.
7431
7432 2013-05-21 Leo Liu <sdl.web@gmail.com>
7433
7434 * progmodes/octave.el (octave-auto-fill): Remove.
7435 (octave-indent-new-comment-line): Improve.
7436 (octave-mode): Use auto fill mode through
7437 comment-line-break-function and fill-nobreak-predicate.
7438 (octave-goto-function-definition): Support DEFUN_DLD.
7439 (octave-beginning-of-defun): Small tweak.
7440 (octave-help): Show parent directory.
7441
7442 2013-05-21 Glenn Morris <rgm@gnu.org>
7443
7444 * files.el (dired-unmark):
7445 * progmodes/gud.el (gdb-input): Update declarations.
7446
7447 * calculator.el (electric, ehelp): No need to load when compiling.
7448 (Electric-command-loop, electric-describe-mode): Declare.
7449
7450 * doc-view.el (doc-view-current-converter-processes): Move before use.
7451
7452 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7453 Move MODE-set-explicitly definition before use.
7454
7455 * international/mule-diag.el (mule-diag):
7456 Don't use obsolete window-system-version.
7457
7458 * mail/feedmail.el (smtpmail): No need to load when compiling.
7459 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
7460
7461 * mail/mail-utils.el (rfc822): No need to load when compiling.
7462 (rfc822-addresses): Autoload it.
7463 (mail-strip-quoted-names): Trivial simplification.
7464
7465 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
7466 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
7467
7468 * net/snmp-mode.el (tempo): Don't duplicate requires.
7469
7470 * progmodes/prolog.el (info): No need to load when compiling.
7471 (comint): Require before shell requires it.
7472 (Info-goto-node): Autoload it.
7473 (Info-follow-nearest-node): Declare.
7474 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
7475
7476 * textmodes/artist.el (picture-mode-exit): Declare.
7477
7478 * textmodes/reftex-parse.el (reftex-parse-from-file):
7479 Trivial rewrite so the compiler can parse it better.
7480
7481 2013-05-20 Leo Liu <sdl.web@gmail.com>
7482
7483 * progmodes/octave.el (octave-help-mode-map)
7484 (octave-help-mode-finish-hook): New variables.
7485 (octave-help-mode, octave-help-mode-finish): New functions.
7486 (octave-help): Use octave-help-mode.
7487
7488 2013-05-20 Glenn Morris <rgm@gnu.org>
7489
7490 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
7491
7492 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
7493
7494 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
7495 start at point, so that expansion starting right after opening
7496 slash in a regexp is recognized.
7497 (ruby-syntax-before-regexp-re): New defvar, extracted from
7498 ruby-syntax-propertize-function. Since the value of this regexp
7499 is looked up at runtime now, we should be able to turn
7500 `ruby-syntax-methods-before-regexp' into a defcustom later.
7501 (ruby-syntax-propertize-function): Split regexp matching into two
7502 parts, for opening and closing slashes. That allows us to skip
7503 over string interpolations and support multiline regexps.
7504 Don't call `ruby-syntax-propertize-expansions', instead use another rule
7505 for them, which calls `ruby-syntax-propertize-expansion'.
7506 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
7507 call to `ruby-syntax-propertize-function'.
7508 (ruby-syntax-propertize-expansion): Extracted from
7509 `ruby-syntax-propertize-expansions'. Handles one expansion.
7510 (ruby-syntax-propertize-percent-literal): Leave point right after
7511 the percent symbol, so that the expression expansion rule can
7512 propertize the contents.
7513 (ruby-syntax-propertize-heredoc): Leave point at bol following the
7514 heredoc openers.
7515 (ruby-syntax-propertize-expansions): Remove.
7516
7517 2013-05-18 Juri Linkov <juri@jurta.org>
7518
7519 * man.el (Man-default-man-entry): Remove `-' from the end
7520 of the default value. (Bug#14400)
7521
7522 2013-05-18 Glenn Morris <rgm@gnu.org>
7523
7524 * comint.el (comint-password-prompt-regexp):
7525 Allow "password for XXX" where XXX contains colons (eg https://...).
7526
7527 2013-05-18 Leo Liu <sdl.web@gmail.com>
7528
7529 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
7530 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
7531 (octave-source-directories): Don't check process.
7532 (octave-source-directories, octave-find-definition): Doc fix.
7533
7534 2013-05-18 Glenn Morris <rgm@gnu.org>
7535
7536 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
7537 Remove backspace/delete bindings. (Bug#14392)
7538
7539 * cus-dep.el (custom-make-dependencies): Sort the output.
7540 (custom-versions-load-alist): Convert comment to doc.
7541
7542 2013-05-17 Leo Liu <sdl.web@gmail.com>
7543
7544 * newcomment.el (comment-search-backward): Stricter in finding
7545 comment start. (Bug#14303)
7546
7547 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
7548 (octave-comment-start-skip): Properly anchored.
7549
7550 2013-05-17 Leo Liu <sdl.web@gmail.com>
7551
7552 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
7553 Clean up when turned off. (Bug#14395)
7554 (smie--highlight-matching-block-overlay): No longer buffer-local.
7555 (smie-highlight-matching-block): Adjust.
7556
7557 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
7558
7559 Doc string fix for "nanoseconds" (Bug#14406).
7560 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
7561 Fix doc string typo that had "nanoseconds" instead of "microseconds".
7562
7563 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
7564
7565 * calc/calc-units.el (math-extract-units): Preserve powers
7566 of units.
7567
7568 2013-05-17 Leo Liu <sdl.web@gmail.com>
7569
7570 * subr.el (delete-consecutive-dups): New function.
7571 * ido.el (ido-set-matches-1): Use it.
7572 * progmodes/octave.el (inferior-octave-completion-table): Use it.
7573 * ido.el (ido-remove-consecutive-dups): Remove.
7574
7575 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7576
7577 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
7578 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
7579 regexp-opt's `words'.
7580
7581 2013-05-16 Leo Liu <sdl.web@gmail.com>
7582
7583 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
7584 (smie--highlight-matching-block-overlay)
7585 (smie--highlight-matching-block-lastpos)
7586 (smie--highlight-matching-block-timer): New variables.
7587 (smie-highlight-matching-block): New function.
7588 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
7589 (smie-setup): Conditionally enable smie-blink-matching-open.
7590
7591 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
7592
7593 Sync with upstream verilog-mode r840.
7594 * progmodes/verilog-mode.el (verilog-mode-version)
7595 (verilog-mode-release-date): Update.
7596 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
7597 (verilog-sig-tieoff): Fix string error on
7598 AUTORESET with colon define, bug594. Reported by Andrew Hou.
7599 (verilog-read-decls): Fix parameters confusing
7600 AUTOINST interfaces, bug565. Reported by Leith Johnson.
7601
7602 2013-05-16 Eli Zaretskii <eliz@gnu.org>
7603
7604 * subr.el (reveal-filename): New function.
7605
7606 * loadup.el: Compute Emacs executable versions on MS-Windows,
7607 where executables have the .exe extension. Add a hard link
7608 emacs-XX.YY.ZZ.exe on MS-Windows.
7609
7610 * Makefile.in (XARGS_LIMIT): New variable.
7611 (custom-deps, finder-data, autoloads)
7612 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7613 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7614 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
7615 (compile-main): Limit xargs according to $(XARGS_LIMIT).
7616
7617 2013-05-16 Leo Liu <sdl.web@gmail.com>
7618
7619 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
7620 (octave-mode-menu, octave-mode-map): Remove its uses.
7621
7622 2013-05-16 Reto Zimmermann <reto@gnu.org>
7623
7624 Sync with upstream vhdl mode v3.34.2.
7625 * progmodes/vhdl-mode.el: Use `push' throughout.
7626 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
7627 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
7628 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
7629 (vhdl-actual-generic-name): New option to derive actual generic name.
7630 (vhdl-port-paste-signals): Replace formal by actual generics.
7631 (vhdl-beautify): New name for old group vhdl-align. Update users.
7632 (vhdl-beautify-options): New option.
7633 (vhdl-last-input-event): New compat alias. Use throughout.
7634 (vhdl-goto-line): Replace user level function `goto-line'.
7635 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
7636 vhdl-fix-statement-buffer.
7637 (vhdl-create-mode-menu): Add some entries.
7638 (vhdl-align-region-groups): Respect vhdl-beautify-options.
7639 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
7640 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
7641 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
7642 to force statements on one line.
7643 (vhdl-remove-trailing-spaces-region):
7644 New, split from vhdl-remove-trailing-spaces.
7645 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
7646 Respect vhdl-beautify-options.
7647 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
7648 (vhdl-update-sensitivity-list): Not add with index if exists without.
7649 Not include array index with signal. Ignore keywords in comments.
7650 (vhdl-get-visible-signals): Regexp tweaks.
7651 (vhdl-template-component-inst): Handle empty library.
7652 (vhdl-template-type): Add template for 'enum' type.
7653 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
7654 Use vhdl-replace-string.
7655 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
7656 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
7657 (vhdl-speedbar-initialize): Update for above name change.
7658 (vhdl-compose-wire-components): Fix in handling of constants.
7659 (vhdl-error-regexp-emacs-alist): New variable.
7660 (vhdl-error-regexp-add-emacs): New function;
7661 adds support for new compile.el (Emacs 22+)
7662 (vhdl-generate-makefile-1): Change target order for single lib. units.
7663 Allow use of absolute file names.
7664
7665 2013-05-16 Leo Liu <sdl.web@gmail.com>
7666
7667 * simple.el (prog-indent-sexp): Indent enclosing defun.
7668
7669 2013-05-15 Glenn Morris <rgm@gnu.org>
7670
7671 * cus-start.el (show-trailing-whitespace): Move to editing basics.
7672 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
7673 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
7674 (whitespace-highlight): Move to whitespace group.
7675
7676 * comint.el (comint-source):
7677 * pcmpl-linux.el (pcmpl-linux):
7678 * shell.el (shell-faces):
7679 * eshell/esh-opt.el (eshell-opt):
7680 * international/ccl.el (ccl): Remove empty custom groups.
7681
7682 * completion.el (dynamic-completion-mode):
7683 * jit-lock.el (jit-lock-debug-mode):
7684 * minibuffer.el (completion-in-region-mode):
7685 * type-break.el (type-break-mode-line-message-mode)
7686 (type-break-query-mode):
7687 * emulation/tpu-edt.el (tpu-edt-mode):
7688 * progmodes/subword.el (global-subword-mode, global-superword-mode):
7689 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7690 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
7691
7692 * term/xterm.el (xterm): Change parent group to terminals.
7693
7694 * master.el (master): Remove empty custom group.
7695 (master-mode): Remove unused :group argument.
7696 * textmodes/refill.el (refill): Remove empty custom group.
7697 (refill-mode): Remove unused :group argument.
7698
7699 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
7700
7701 * cus-dep.el: Provide a feature.
7702 (custom-make-dependencies): Ignore dotfiles (dir-locals).
7703 Don't mistakenly ignore files whose basenames match a basename
7704 from preloaded-file-list (eg cedet/ede/simple.el).
7705 Add a fallback method for getting :group.
7706
7707 2013-05-15 Juri Linkov <juri@jurta.org>
7708
7709 * isearch.el (isearch-char-by-name): Rename from
7710 `isearch-insert-char-by-name'. Doc fix.
7711 (isearch-forward): Mention `isearch-char-by-name' in
7712 the docstring. (Bug#13348)
7713
7714 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7715 `exit-minibuffer' instead of
7716 `isearch-nonincremental-exit-minibuffer'.
7717 (isearch-edit-string): Remove mention of
7718 `isearch-nonincremental-exit-minibuffer' from docstring.
7719 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7720 (isearch-forward-exit-minibuffer)
7721 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7722
7723 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7724
7725 * loadup.el: Just use unversioned DOC.
7726
7727 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7728 literals as extending to EOB.
7729 (nxml-last-fontify-end): Remove unused variable.
7730 (nxml-after-change1): Use with-silent-modifications.
7731 (nxml-extend-after-change-region): Simplify.
7732 (nxml-extend-after-change-region1): Remove function.
7733 (nxml-after-change1): Don't adjust for dependent regions.
7734 (nxml-fontify-matcher): Simplify.
7735 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7736 (xmltok-add-dependent): Remove function.
7737 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7738 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7739 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7740 unclosed <[[, <?, comment, and other literals as extending to EOB.
7741 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7742 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7743 Remove functions.
7744 (rng-do-some-validation-1): Don't mark dependent regions.
7745 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7746 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7747 (nxml-clear-dependent-regions): Remove functions.
7748 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7749 (nxml-ensure-scan-up-to-date):
7750 Don't clear&mark dependent regions.
7751
7752 2013-05-15 Leo Liu <sdl.web@gmail.com>
7753
7754 * progmodes/octave.el (octave-goto-function-definition):
7755 Improve and fix callers.
7756
7757 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7758
7759 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7760 the setter (bug#14387).
7761
7762 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7763 surrounding group (bug#14402).
7764
7765 2013-05-14 Juri Linkov <juri@jurta.org>
7766
7767 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7768 (Bug#14390)
7769
7770 2013-05-14 Glenn Morris <rgm@gnu.org>
7771
7772 * progmodes/f90.el (f90-imenu-generic-expression):
7773 Fix typo in 2013-05-08 change. (Bug#14402)
7774
7775 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7776
7777 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7778 Remove signals for which replies are never received.
7779
7780 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7781
7782 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7783 (gdb-handler-alist, gdb-handler-number): Remove variables.
7784 (gdb-handler-list): New variable.
7785 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7786 (gdb-pending-handler-p, gdb-handle-reply)
7787 (gdb-remove-all-pending-triggers): New functions.
7788 (gdb-discard-unordered-replies): New defcustom.
7789 (gdb-handler): New defstruct.
7790 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7791 instead of gdb-pending-triggers. Update docstring.
7792 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7793 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7794 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7795 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7796 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7797 (gdb-frame-handler): Pending triggers are now automatically managed.
7798 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7799 Remove argument.
7800 (gdb-input): Automatically handles pending triggers. Update docstring.
7801 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7802 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7803 Update comments.
7804 (gdb-done-or-error): Now use gdb-handle-reply.
7805
7806 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7807
7808 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7809 gdb-debug-log.
7810
7811 2013-05-14 Glenn Morris <rgm@gnu.org>
7812
7813 * subr.el (user-emacs-directory-warning): New option.
7814 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7815
7816 2013-05-14 Leo Liu <sdl.web@gmail.com>
7817
7818 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7819 during redisplay.
7820 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
7821 (octave-font-lock-texinfo-comment): Fix invalid search bound
7822 error: wrong side of point.
7823
7824 2013-05-14 Glenn Morris <rgm@gnu.org>
7825
7826 * progmodes/flymake.el (flymake-xml-program): New option.
7827 (flymake-xml-init): Use it.
7828
7829 * term/xterm.el: Provide a feature.
7830
7831 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
7832
7833 2013-05-13 Glenn Morris <rgm@gnu.org>
7834
7835 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7836 Add compat aliases as a hack workaround. (Bug#14384)
7837
7838 2013-05-13 Leo Liu <sdl.web@gmail.com>
7839
7840 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7841 ###, and %!.
7842 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7843 C-M-q.
7844 (octave-comment-start-skip): Include %!.
7845 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
7846
7847 2013-05-12 Leo Liu <sdl.web@gmail.com>
7848
7849 * progmodes/octave.el (inferior-octave-startup): Store the value
7850 of __octave_srcdir__ for octave-source-directories.
7851 (inferior-octave-check-process): New function refactored out of
7852 inferior-octave-send-list-and-digest.
7853 (octave-source-directories)
7854 (octave-find-definition-filename-function): New variables.
7855 (octave-source-directories)
7856 (octave-find-definition-default-filename): New functions.
7857 (octave-find-definition): Improve to find functions implemented in C++.
7858
7859 2013-05-12 Glenn Morris <rgm@gnu.org>
7860
7861 * calendar/diary-lib.el (diary-outlook-format-1):
7862 Don't include dayname in the output. (Bug#14349)
7863
7864 2013-05-11 Glenn Morris <rgm@gnu.org>
7865
7866 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7867
7868 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7869 Treat cc-provide like provide.
7870
7871 2013-05-11 Kevin Ryde <user42@zip.com.au>
7872
7873 * cus-dep.el (custom-make-dependencies):
7874 Use generated-autoload-load-name for the sake of files such
7875 such cedet/semantic/bovine/c.el, where the base file name
7876 is not in load-path. (Bug#5277)
7877
7878 2013-05-11 Glenn Morris <rgm@gnu.org>
7879
7880 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7881 Provide features.
7882
7883 2013-05-11 Leo Liu <sdl.web@gmail.com>
7884
7885 * progmodes/octave.el (octave-indent-comment): Improve.
7886 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
7887 (octave-eldoc-function-signatures, octave-eldoc-function):
7888 New functions.
7889 (octave-mode, inferior-octave-mode): Add eldoc support.
7890
7891 2013-05-11 Richard Stallman <rms@gnu.org>
7892
7893 * epa.el (epa-decrypt-file): Take output file name as argument
7894 and read it using `interactive'.
7895
7896 2013-05-11 Leo Liu <sdl.web@gmail.com>
7897
7898 * progmodes/octave.el (octave-beginning-of-line)
7899 (octave-end-of-line): Check before using up-list because it jumps
7900 out of more syntactic contructs since moving to smie.
7901 (octave-indent-comment): New function.
7902 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
7903 (octave-begin-keywords, octave-end-keywords)
7904 (octave-reserved-words, octave-smie-bnf-table)
7905 (octave-smie-rules): Add new keywords from Octave 3.6.4.
7906
7907 2013-05-11 Glenn Morris <rgm@gnu.org>
7908
7909 * faces.el (internal-face-x-get-resource):
7910 * frame.el (ns-display-monitor-attributes-list):
7911 * calc/calc-aent.el (math-to-radians-2):
7912 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
7913 Fix declarations.
7914
7915 * calc/calc-menu.el: Make it loadable in isolation.
7916
7917 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7918 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7919 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7920 (eudc-bbdb-query-internal): Require 'bbdb.
7921
7922 * lpr.el (lpr-headers-switches):
7923 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7924
7925 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7926
7927 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7928
7929 * term.el (term-set-escape-char): Make it idempotent.
7930
7931 2013-05-10 Leo Liu <sdl.web@gmail.com>
7932
7933 * progmodes/octave.el (inferior-octave-completion-table):
7934 No longer a function and all uses changed. Use cache to speed up
7935 completion due to bug#11906.
7936 (octave-beginning-of-defun): Re-write to be more general.
7937
7938 2013-05-10 Glenn Morris <rgm@gnu.org>
7939
7940 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7941
7942 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7943
7944 * comint.el (comint-redirect-send-command-to-process): Use :around
7945 rather than :override for comint-redirect-filter.
7946 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7947 Call it instead of comint-redirect-original-filter-function (which
7948 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7949
7950 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7951
7952 * frame.el (display-monitor-attributes-list): Add NS case.
7953 (ns-display-monitor-attributes-list): Declare.
7954
7955 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
7956
7957 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7958
7959 2013-05-09 Glenn Morris <rgm@gnu.org>
7960
7961 * international/fontset.el (vertical-centering-font-regexp):
7962 Set standard-value.
7963
7964 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7965
7966 * bookmark.el (bookmark-search-delay):
7967 * cus-start.el (vertical-centering-font-regexp):
7968 * ps-mule.el (ps-mule-font-info-database-default):
7969 * ps-print.el (ps-default-fg, ps-default-bg):
7970 * type-break.el (type-break-good-break-interval):
7971 * whitespace.el (whitespace-indentation-regexp)
7972 (whitespace-space-after-tab-regexp):
7973 * emacs-lisp/testcover.el (testcover-1value-functions)
7974 (testcover-noreturn-functions, testcover-progn-functions)
7975 (testcover-prog1-functions):
7976 * emulation/viper-init.el (viper-emacs-state-cursor-color):
7977 * eshell/em-glob.el (eshell-glob-translate-alist):
7978 * play/tetris.el (tetris-tty-colors):
7979 * progmodes/cpp.el (cpp-face-default-list):
7980 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7981 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7982 (idlwave-help-browser-generic-args):
7983 * progmodes/make-mode.el (makefile-special-targets-list):
7984 * progmodes/python.el (python-shell-virtualenv-path):
7985 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7986 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7987 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7988 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7989 * textmodes/reftex-vars.el (reftex-format-label-function):
7990 * textmodes/remember.el (remember-diary-file): Fix custom types.
7991
7992 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7993 Add :version.
7994
7995 2013-05-09 Leo Liu <sdl.web@gmail.com>
7996
7997 * progmodes/octave.el (inferior-octave-completion-at-point):
7998 Restore file completion. (Bug#14300)
7999 (inferior-octave-startup): Fix incorrect highlighting for the
8000 first prompt.
8001
8002 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8003
8004 * progmodes/ruby-mode.el: First cut at SMIE support.
8005 (ruby-use-smie): New var.
8006 (ruby-smie-grammar): New constant.
8007 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
8008 (ruby-smie--forward-token, ruby-smie--backward-token)
8009 (ruby-smie-rules): New functions.
8010 (ruby-mode-variables): Setup SMIE if applicable.
8011
8012 2013-05-08 Eli Zaretskii <eliz@gnu.org>
8013
8014 * simple.el (line-move-visual): Signal beginning/end of buffer
8015 only if vertical-motion moved less than it was requested. Avoids
8016 silly incorrect error messages when there are display strings with
8017 multiple newlines at EOL.
8018
8019 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8020
8021 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
8022 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
8023 (prolog-char-quote-workaround):
8024 * progmodes/cperl-mode.el (cperl-under-as-char):
8025 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
8026 Mark as obsolete.
8027 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
8028 their declaration.
8029 (vhdl-mode-syntax-table-init): Remove.
8030
8031 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
8032 last change.
8033
8034 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
8035 syntax for "_".
8036 (ld-script-font-lock-keywords):
8037 Change regexps to use things like \_< and \_>.
8038
8039 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
8040 Change all regexps to use things like \_< and \_>.
8041
8042 * progmodes/autoconf.el (autoconf-definition-regexp)
8043 (autoconf-font-lock-keywords, autoconf-current-defun-function):
8044 Handle a _ with symbol syntax.
8045 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
8046
8047 * progmodes/ada-mode.el (ada-mode-abbrev-table):
8048 Consolidate declaration.
8049 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
8050 the declaration.
8051 (ada-create-syntax-table): Remove.
8052 (ada-capitalize-word): Don't mess with the syntax of "_" since it
8053 already has the right syntax nowadays.
8054 (ada-goto-next-word): Don't change the syntax of "_".
8055
8056 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
8057 with-wrapper-hook.
8058
8059 2013-05-08 Sam Steingold <sds@gnu.org>
8060
8061 * thingatpt.el (thing-at-point): Accept optional second argument
8062 NO-PROPERTIES to strip the text properties from the return value.
8063 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
8064 to `thing-at-point' instead of stripping the properties ourselves.
8065 Also, when `thing-at-point' fails to find a url, prepend "http://"
8066 to the filename at point on the assumption that the user is
8067 pointing at something like gnu.org/gnu.
8068
8069 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
8070
8071 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8072 * faces.el (crm-separator):
8073 Silence byte-compiler.
8074
8075 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
8076 (tool-bar-map): Remove unneeded defvars.
8077
8078 2013-05-08 Leo Liu <sdl.web@gmail.com>
8079
8080 Re-work a fix for bug#10994 based on Le Wang's patch.
8081 * ido.el (ido-remove-consecutive-dups): New helper.
8082 (ido-completing-read): Use it.
8083 (ido-chop): Revert fix for bug#10994.
8084
8085 2013-05-08 Adam Spiers <emacs@adamspiers.org>
8086
8087 * cus-edit.el (custom-save-variables):
8088 Pretty-print long values. (Bug#14187)
8089
8090 2013-05-08 Glenn Morris <rgm@gnu.org>
8091
8092 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
8093 (m4-mode-syntax-table): Init in the defvar.
8094 (m4-mode-abbrev-table): Let define-derived-mode define it.
8095
8096 2013-05-08 Tom Tromey <tromey@redhat.com>
8097
8098 * progmodes/m4-mode.el (m4-mode-syntax-table):
8099 Do not treat "_" as word constituent. (Bug#14167)
8100
8101 2013-05-07 Glenn Morris <rgm@gnu.org>
8102
8103 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
8104 Remove explicit eshell-isearch-cancel-map.
8105
8106 * progmodes/f90.el (f90-smart-end-names): New option.
8107 (f90-smart-end): Doc fix.
8108 (f90-end-block-optional-name): New constant.
8109 (f90-block-match): Respect f90-smart-end-names.
8110
8111 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8112
8113 * progmodes/octave.el (octave-smie-forward-token): Be more careful
8114 about implicit semi-colons (bug#14218).
8115
8116 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8117
8118 * frame.el (display-monitor-attributes-list)
8119 (frame-monitor-attributes): New functions.
8120
8121 2013-05-06 Leo Liu <sdl.web@gmail.com>
8122
8123 * progmodes/octave.el (octave-syntax-propertize-function): Change
8124 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
8125 (octave-font-lock-keywords): Use octave-operator-regexp.
8126 (octave-completion-at-point): Rename from
8127 octave-completion-at-point-function.
8128 (inferior-octave-directory-tracker): Robustify.
8129 (octave-text-functions): Remove and fix its uses. No such things
8130 any more.
8131
8132 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8133
8134 * emacs-lisp/trace.el (trace--display-buffer): New function.
8135 (trace-make-advice): Use it.
8136
8137 2013-05-06 Juri Linkov <juri@jurta.org>
8138
8139 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
8140 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
8141 Doc fix.
8142 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
8143 in the help string. (Bug#12985)
8144
8145 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
8146
8147 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
8148
8149 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8150
8151 * progmodes/perl-mode.el: Add support for here documents.
8152 (perl-syntax-propertize-function): Match here-doc markers.
8153 (perl-syntax-propertize-special-constructs): Find their end.
8154 (perl-imenu-generic-expression): Use [:alnum:].
8155
8156 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
8157 (advice--add-function): Refresh the advice if already present
8158 (bug#14317).
8159
8160 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
8161
8162 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
8163
8164 2013-05-06 Glenn Morris <rgm@gnu.org>
8165
8166 * w32-fns.el (w32-charset-info-alist): Declare.
8167
8168 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
8169 of its defcustom properties.
8170 (eshell-cmpl-initialize): No need to load pcomplete.
8171
8172 * generic-x.el: No need to require comint when compiling.
8173
8174 * net/eudc-export.el: Make it loadable without bbdb.
8175 (top-level): Use require rather than load-library.
8176 (eudc-create-bbdb-record, eudc-bbdbify-phone)
8177 (eudc-batch-export-records-to-bbdb)
8178 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
8179 Require bbdb.
8180
8181 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8182
8183 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
8184 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
8185 some tweaks, instead.
8186
8187 2013-05-05 Leo Liu <sdl.web@gmail.com>
8188
8189 * progmodes/octave.el (octave-font-lock-keywords)
8190 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
8191 (inferior-octave-send-list-and-digest): Improve error message.
8192 (octave-mode, inferior-octave-mode): Use setq-local.
8193 (octave-help): Set info-lookup-mode.
8194
8195 2013-05-05 Richard Stallman <rms@gnu.org>
8196
8197 * vc/compare-w.el (compare-windows-whitespace):
8198 Treat no-break space as whitespace.
8199
8200 * mail/rmailsum.el (rmail-summary-rmail-update):
8201 Detect empty summary and don't change selected message.
8202 (rmail-summary-goto-msg): Likewise.
8203
8204 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
8205 Doc fixes, rename args.
8206
8207 2013-05-05 Alan Mackenzie <acm@muc.de>
8208
8209 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
8210
8211 2013-05-05 Juri Linkov <juri@jurta.org>
8212
8213 * info.el (Info-read-subfile): Use (point-min) instead of (point)
8214 to not add the length of the summary segment to the return value.
8215 (Bug#14125)
8216
8217 2013-05-05 Leo Liu <sdl.web@gmail.com>
8218
8219 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
8220 (inferior-octave-output-filter): Remove.
8221 (octave-send-region, inferior-octave-startup): Fix callers.
8222 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
8223 (octave-binary-file-extensions): New user variable.
8224 (octave-find-definition): Confirm if opening binary files.
8225 (octave-help-file): Use octave-find-definition to get the binary
8226 confirmation.
8227 (octave-help): Adjust for octave-help-file change.
8228
8229 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8230
8231 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
8232 Merge the two entries that handle function definitions.
8233 (pascal--syntax-propertize): New const.
8234 (pascal-mode): Use it. Use setq-local.
8235
8236 2013-05-04 Glenn Morris <rgm@gnu.org>
8237
8238 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
8239 (diary-from-outlook): Respect diary-from-outlook-function.
8240
8241 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8242
8243 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
8244 Move the declaration from C.
8245 (read-minibuffer, eval-minibuffer): Move from C.
8246 (completion-setup-function): Avoid minibuffer-completion-contents.
8247
8248 2013-05-03 Leo Liu <sdl.web@gmail.com>
8249
8250 * progmodes/octave.el (octave-font-lock-keywords): Do not
8251 dehighlight 'end' in comments or strings.
8252 (octave-completing-read, octave-goto-function-definition):
8253 New helpers.
8254 (octave-help-buffer): New user variable.
8255 (octave-help-file, octave-help-function): New button types.
8256 (octave-help): New command and bind it to C-h ;.
8257 (octave-find-definition): New command and bind it to M-.
8258 (user-error): Alias to error if not defined.
8259
8260 2013-05-02 Leo Liu <sdl.web@gmail.com>
8261
8262 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
8263 for \. (bug#14332)
8264 (octave-font-lock-keywords): Include [ and {.
8265
8266 2013-05-02 Leo Liu <sdl.web@gmail.com>
8267
8268 * progmodes/octave.el (inferior-octave-startup-file): Change default.
8269 (inferior-octave): Remove calling comint-mode and return the buffer.
8270 (inferior-octave-startup): Cosmetic changes.
8271
8272 2013-05-02 Leo Liu <sdl.web@gmail.com>
8273
8274 * progmodes/octave.el (octave-syntax-propertize-function):
8275 Include the case when ' is at line beginning. (Bug#14336)
8276
8277 2013-05-02 Glenn Morris <rgm@gnu.org>
8278
8279 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
8280 * desktop.el (vc-dir-mode): Just autoload it here.
8281
8282 2013-05-02 Alan Mackenzie <acm@muc.de>
8283
8284 Eliminate variable c-standard-font-lock-fontify-region-function.
8285 * progmodes/cc-mode.el
8286 (c-standard-font-lock-fontify-region-function): Remove.
8287 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
8288
8289 2013-05-01 Leo Liu <sdl.web@gmail.com>
8290
8291 * progmodes/octave.el: Compatible with older emacs-24 releases.
8292 (inferior-octave-has-built-in-variables): Remove. Built-in
8293 variables were removed from Octave in 2007.
8294 (inferior-octave-startup): Fix uses.
8295 (comint-line-beginning-position): Remove compatibility code for
8296 emacs 21.
8297
8298 2013-05-01 Juri Linkov <juri@jurta.org>
8299
8300 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
8301
8302 2013-05-01 Juri Linkov <juri@jurta.org>
8303
8304 * comint.el (comint-previous-matching-input): Don't print message
8305 "History item: %d" when `isearch-mode' is active.
8306 (comint-history-isearch-message): Print message "History item: %d"
8307 when `comint-input-ring-index' is not empty and this function is
8308 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
8309
8310 2013-05-01 Leo Liu <sdl.web@gmail.com>
8311
8312 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
8313 definitions. Use completion-at-point to insert keywords.
8314 (octave-abbrev-start): Remove.
8315 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
8316
8317 2013-04-30 Leo Liu <sdl.web@gmail.com>
8318
8319 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
8320 change.
8321
8322 2013-04-30 Alan Mackenzie <acm@muc.de>
8323
8324 Handle arbitrarily long C++ member initialisation lists.
8325 * progmodes/cc-engine.el (c-back-over-member-initializers):
8326 new function.
8327 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
8328 (most) member init lists.
8329
8330 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8331
8332 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
8333 variable.
8334
8335 2013-04-30 Leo Liu <sdl.web@gmail.com>
8336
8337 * progmodes/octave.el (octave-variables): Remove. No builtin
8338 variables any more. All converted to functions.
8339 (octave-font-lock-keywords, octave-completion-at-point-function):
8340 Fix uses.
8341 (octave-font-lock-texinfo-comment): New user variable.
8342 (octave-texinfo-font-lock-keywords): New variable for texinfo
8343 comment block.
8344 (octave-function-comment-block): New face.
8345 (octave-font-lock-texinfo-comment): New function.
8346 (octave-mode): Font lock texinfo comment block.
8347
8348 2013-04-29 Leo Liu <sdl.web@gmail.com>
8349
8350 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
8351 indexing expression.
8352 (octave-continuation-string): Do not use \.
8353 (inferior-octave-complete-impossible): Remove.
8354 (inferior-octave-completion-table)
8355 (inferior-octave-completion-at-point): Remove its uses.
8356 (inferior-octave-startup): completion_matches was introduced to
8357 Octave in 1996 so safe to assume it.
8358 (octave-function-file-comment): Improve to follow how Octave does it.
8359 (octave-update-function-file-comment): Tweak.
8360
8361 2013-04-29 Leo Liu <sdl.web@gmail.com>
8362
8363 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
8364 (inferior-octave-startup): Remove inferior-octave-startup-hook.
8365 (octave-function-file-comment): Fix typo.
8366 (octave-sync-function-file-names): Use read-char-choice.
8367
8368 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
8369
8370 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
8371 to t for the less important warnings.
8372
8373 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
8374
8375 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
8376
8377 2013-04-27 Glenn Morris <rgm@gnu.org>
8378
8379 * vc/log-view.el (log-view-current-entry):
8380 Treat "---" separator lines as part of the following rev. (Bug#14169)
8381
8382 2013-04-27 Juri Linkov <juri@jurta.org>
8383
8384 * subr.el (read-number): Doc fix about using it by interactive
8385 code letter `n'. (Bug#14254)
8386
8387 2013-04-27 Juri Linkov <juri@jurta.org>
8388
8389 * desktop.el (desktop-auto-save-timeout): New option.
8390 (desktop-file-checksum): New variable.
8391 (desktop-save): Add optional arg `auto-save' and don't auto-save
8392 if nothing changed.
8393 (desktop-auto-save-timer): New variable.
8394 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
8395 (after-init-hook): Call `desktop-auto-save-set-timer'.
8396 Suggested by Reuben Thomas <rrt@sc3d.org> in
8397 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
8398
8399 2013-04-27 Leo Liu <sdl.web@gmail.com>
8400
8401 * progmodes/octave.el (octave-function-file-p)
8402 (octave-skip-comment-forward, octave-function-file-comment)
8403 (octave-update-function-file-comment): New functions.
8404 (octave-mode-map): Bind C-c ; to
8405 octave-update-function-file-comment.
8406 (octave-mode-menu): Add octave-update-function-file-comment.
8407 (octave-mode, inferior-octave-mode): Fix doc-string.
8408 (octave-insert-defun): Conform to Octave's coding convention.
8409 (Bug#14285)
8410
8411 * files.el (basic-save-buffer): Don't let errors in
8412 before-save-hook prevent saving buffer.
8413
8414 2013-04-20 Roland Winkler <winkler@gnu.org>
8415
8416 * faces.el (read-face-name): Use completing-read if arg multiple
8417 is nil.
8418
8419 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
8420
8421 * ls-lisp.el (ls-lisp-insert-directory): If no files are
8422 displayed, move point to after the totals line.
8423 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
8424 for the details.
8425
8426 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8427
8428 * emacs-lisp/package.el (package-autoload-ensure-default-file):
8429 Add current dir to the load-path.
8430 (package-generate-autoloads): Don't rely on
8431 autoload-ensure-default-file.
8432
8433 2013-04-26 Reuben Thomas <rrt@sc3d.org>
8434
8435 * textmodes/remember.el (remember-store-in-files): Document that
8436 the file name format is passed to `format-time-string'.
8437
8438 2013-04-26 Leo Liu <sdl.web@gmail.com>
8439
8440 * progmodes/octave.el (octave-sync-function-file-names): New function.
8441 (octave-mode): Use it in before-save-hook.
8442
8443 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8444
8445 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
8446 (bug#14274).
8447
8448 * progmodes/octave.el (octave-smie-forward-token): Properly skip
8449 \n and comment, even if it's not an implicit ; (bug#14218).
8450
8451 2013-04-26 Glenn Morris <rgm@gnu.org>
8452
8453 * subr.el (read-number): Once more use `read' rather than
8454 `string-to-number', to trap non-numeric input. (Bug#14254)
8455
8456 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
8457
8458 * emacs-lisp/syntax.el (syntax-propertize-multiline):
8459 Use `syntax-multiline' text property consistently instead of
8460 `font-lock-multiline'. (Bug#14237)
8461
8462 2013-04-26 Glenn Morris <rgm@gnu.org>
8463
8464 * emacs-lisp/shadow.el (list-load-path-shadows):
8465 No longer necessary to check for duplicate simple.el, since
8466 2012-07-07 change to init_lread to not include installation lisp
8467 directories in load-path when running uninstalled. (Bug#14270)
8468
8469 2013-04-26 Leo Liu <sdl.web@gmail.com>
8470
8471 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
8472 (octave-mode, inferior-octave-mode): Use setq-local.
8473 (octave-not-in-string-or-comment-p): Rename to
8474 octave-in-string-or-comment-p.
8475 (octave-in-comment-p, octave-in-string-p)
8476 (octave-in-string-or-comment-p): Replace defsubst with defun.
8477
8478 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
8479
8480 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
8481
8482 2013-04-25 Bastien Guerry <bzg@gnu.org>
8483
8484 * textmodes/remember.el (remember-data-directory)
8485 (remember-directory-file-name-format): Fix custom types.
8486
8487 2013-04-25 Leo Liu <sdl.web@gmail.com>
8488
8489 * progmodes/octave.el (octave-completion-at-point-function):
8490 Make use of inferior octave process.
8491 (octave-initialize-completions): Remove.
8492 (inferior-octave-completion-table): New function.
8493 (inferior-octave-completion-at-point): Use it.
8494 (octave-completion-alist): Remove.
8495
8496 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8497
8498 * progmodes/opascal.el: Use font-lock and syntax-propertize.
8499 (opascal-mode-syntax-table): New var.
8500 (opascal-literal-kind, opascal-is-literal-end)
8501 (opascal-literal-token-at): Rewrite.
8502 (opascal--literal-start-re, opascal-font-lock-keywords)
8503 (opascal--syntax-propertize): New constants.
8504 (opascal-font-lock-defaults): Adjust.
8505 (opascal-mode): Use them. Set comment-<foo> variables as well.
8506 (delphi-comment-face, opascal-comment-face, delphi-string-face)
8507 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
8508 (delphi-other-face, opascal-other-face): Remove face variables.
8509 (opascal-save-state): Remove macro.
8510 (opascal-fontifying-progress-step): Remove constant.
8511 (opascal--ignore-changes): Remove var.
8512 (opascal-set-token-property, opascal-parse-next-literal)
8513 (opascal-is-stable-literal, opascal-complete-literal)
8514 (opascal-is-literal-start, opascal-face-of)
8515 (opascal-parse-region, opascal-parse-region-until-stable)
8516 (opascal-fontify-region, opascal-after-change)
8517 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
8518 (opascal-debug-parse-region, opascal-debug-parse-window)
8519 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
8520 (opascal-debug-fontify-buffer): Remove.
8521 (opascal-debug-mode-map): Adjust accordingly.
8522
8523 2013-04-25 Leo Liu <sdl.web@gmail.com>
8524
8525 Merge octave-mod.el and octave-inf.el into octave.el with some
8526 cleanups.
8527 * progmodes/octave.el: New file renamed from octave-mod.el.
8528 * progmodes/octave-inf.el: Merged into octave.el.
8529 * progmodes/octave-mod.el: Renamed to octave.el.
8530
8531 2013-04-25 Tassilo Horn <tsdh@gnu.org>
8532
8533 * textmodes/reftex-vars.el
8534 (reftex-label-ignored-macros-and-environments): New defcustom.
8535
8536 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
8537
8538 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8539
8540 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
8541 (smie-indent-keyword): Improve the check to ensure that the next
8542 comment is really on the same line.
8543 (smie-indent-comment): Don't align with a subsequent closer (or eob).
8544
8545 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
8546 semi-colons if the line is not otherwise empty (bug#14218).
8547
8548 2013-04-25 Glenn Morris <rgm@gnu.org>
8549
8550 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
8551
8552 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8553
8554 * progmodes/opascal.el (opascal-set-token-property): Rename from
8555 opascal-set-text-properties and only set `token' (bug#14134).
8556 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
8557 (opascal-literal-text-properties): Remove.
8558 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
8559 Adjust callers.
8560
8561 2013-04-24 Reuben Thomas <rrt@sc3d.org>
8562
8563 * textmodes/remember.el (remember-handler-functions): Add an
8564 option for a new handler `remember-store-in-files'.
8565 (remember-data-directory, remember-directory-file-name-format):
8566 New options.
8567 (remember-store-in-files): New function to store remember notes
8568 as separate files within a directory.
8569
8570 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
8571
8572 * progmodes/compile.el (compilation-next-error-function):
8573 Pass "formats" to compilation-find-file (bug#11777).
8574
8575 2013-04-24 Glenn Morris <rgm@gnu.org>
8576
8577 * vc/vc-bzr.el (vc-bzr-print-log):
8578 * vc/vc-hg.el (vc-hg-print-log):
8579 * vc/vc-svn.el (vc-svn-print-log):
8580 Fix START-REVISION with LIMIT != 1. (Bug#14168)
8581
8582 * vc/vc-bzr.el (vc-bzr-print-log):
8583 * vc/vc-cvs.el (vc-cvs-print-log):
8584 * vc/vc-git.el (vc-git-print-log):
8585 * vc/vc-hg.el (vc-hg-print-log):
8586 * vc/vc-mtn.el (vc-mtn-print-log):
8587 * vc/vc-rcs.el (vc-rcs-print-log):
8588 * vc/vc-sccs.el (vc-sccs-print-log):
8589 * vc/vc-svn.el (vc-svn-print-log):
8590 * vc/vc.el (vc-print-log-internal): Doc fixes.
8591
8592 2013-04-23 Glenn Morris <rgm@gnu.org>
8593
8594 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
8595 Remove venerable code attempting to avoid substitute-command-keys.
8596
8597 2013-04-23 Tassilo Horn <tsdh@gnu.org>
8598
8599 * textmodes/reftex-vars.el (reftex-label-regexps):
8600 Call `reftex-compile-variables' after changes to this variable.
8601
8602 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8603
8604 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
8605 Use lexical-binding.
8606 (jit-lock-force-redisplay): Use markers, check buffer's continued
8607 existence and beware narrowed buffers.
8608 (jit-lock-fontify-now): Adjust call accordingly.
8609
8610 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8611
8612 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
8613 to avoid misleading the user.
8614
8615 2013-04-22 Leo Liu <sdl.web@gmail.com>
8616
8617 * info-look.el: Prefer latex2e.info. (Bug#14240)
8618
8619 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
8620
8621 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
8622
8623 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
8624 * net/tramp.el (tramp-call-process): ... here.
8625 (tramp-set-completion-function, tramp-parse-putty):
8626 * net/tramp-adb.el (tramp-adb-execute-adb-command):
8627 * net/tramp-gvfs.el (tramp-gvfs-send-command):
8628 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8629 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
8630 (tramp-call-local-coding-command): Use `tramp-call-process'
8631 instead of `tramp-compat-call-process'.
8632
8633 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
8634 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
8635 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
8636 (tramp-find-inline-compress): Improve traces.
8637 (tramp-maybe-send-script): Check for Perl binary.
8638 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
8639
8640 2013-04-22 Daiki Ueno <ueno@gnu.org>
8641
8642 * epg.el (epg-context-pinentry-mode): New function.
8643 (epg-context-set-pinentry-mode): New function.
8644 (epg--start): Pass --pinentry-mode option to gpg command.
8645
8646 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
8647
8648 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
8649 `comint-dynamic-complete' is obsolete since 24.1, replaced by
8650 `completion-at-point'. (Bug#13774)
8651
8652 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
8653 default key binding for `describe-distribution' has been moved to
8654 `C-h C-o'. (Bug#13970)
8655
8656 2013-04-21 Glenn Morris <rgm@gnu.org>
8657
8658 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
8659 Add doc strings.
8660 (vc-print-log): Clarify interactive prompt.
8661
8662 2013-04-20 Glenn Morris <rgm@gnu.org>
8663
8664 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8665 No longer include timestamp etc information.
8666
8667 2013-04-20 Roland Winkler <winkler@gnu.org>
8668
8669 * faces.el (read-face-name): Bug fix, return just one face if arg
8670 multiple is nil. (Bug#14209)
8671
8672 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8673
8674 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
8675 (remove-function): Autoload.
8676
8677 * comint.el (comint-redirect-original-filter-function): Remove.
8678 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
8679 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
8680 (vc-cvs-annotate-command):
8681 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
8682 * progmodes/prolog.el (prolog-consult-compile):
8683 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
8684 Use add/remove-function instead.
8685 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
8686 (gud-tooltip-process-output, gud-tooltip-tips):
8687 Use add/remove-function instead.
8688 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
8689 (scheme-interaction-mode, exit-scheme-interaction-mode):
8690 Use add/remove-function instead.
8691
8692 * vc/vc-dispatcher.el: Use lexical-binding.
8693 (vc--process-sentinel): Rename from vc-process-sentinel.
8694 Change last arg to be the code to run. Don't use vc-previous-sentinel
8695 and vc-sentinel-commands any more.
8696 (vc-exec-after): Allow code to be a function. Use add/remove-function.
8697 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
8698
8699 2013-04-19 Masatake YAMATO <yamato@redhat.com>
8700
8701 * progmodes/sh-script.el (sh-imenu-generic-expression):
8702 Handle function names with a single character. (Bug#14111)
8703
8704 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
8705
8706 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
8707 for subroutines defined in an eval (bug#14182).
8708
8709 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8710
8711 * bookmark.el (bookmark-completing-read): Improve handling of empty
8712 string (bug#14176).
8713
8714 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8715
8716 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8717
8718 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8719
8720 New faster Imenu implementation (bug#14058).
8721 * progmodes/python.el:
8722 (python-imenu-prev-index-position):
8723 (python-imenu-format-item-label-function)
8724 (python-imenu-format-parent-item-label-function)
8725 (python-imenu-format-parent-item-jump-label-function):
8726 New vars.
8727 (python-imenu-format-item-label)
8728 (python-imenu-format-parent-item-label)
8729 (python-imenu-format-parent-item-jump-label)
8730 (python-imenu--put-parent, python-imenu--build-tree)
8731 (python-imenu-create-index, python-imenu-create-flat-index)
8732 (python-util-popn): New functions.
8733 (python-mode): Set imenu-create-index-function to
8734 python-imenu-create-index.
8735
8736 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8737
8738 * winner.el (winner-active-region): Use region-active-p, activate-mark
8739 and deactivate-mark (bug#14225).
8740
8741 * simple.el (deactivate-mark): Don't inline it.
8742
8743 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
8744
8745 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8746
8747 2013-04-18 Tassilo Horn <tsdh@gnu.org>
8748
8749 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8750 file extensions from the archive-mode entry in order to prefer
8751 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8752
8753 2013-04-18 Leo Liu <sdl.web@gmail.com>
8754
8755 * bindings.el (help-event-list): Add ?\?.
8756
8757 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8758
8759 * subr.el (with-wrapper-hook): Declare obsolete.
8760 * simple.el (filter-buffer-substring-function): New hook.
8761 (filter-buffer-substring): Use it.
8762 (filter-buffer-substring-functions): Mark obsolete.
8763 * minibuffer.el (completion-in-region-function): New hook.
8764 (completion-in-region): Use it.
8765 (completion-in-region-functions): Mark obsolete.
8766 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8767 * abbrev.el (abbrev-expand-function): New hook.
8768 (expand-abbrev): Use it.
8769 (abbrev-expand-functions): Mark obsolete.
8770 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8771 and :filter-return.
8772
8773 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8774
8775 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8776 and do not care about match data.
8777
8778 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8779
8780 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8781 completion tables when completing error conditions and
8782 `declare' arguments.
8783 (lisp-complete-symbol, field-complete): Mark as obsolete.
8784 (check-parens): Unmatched parens are user errors.
8785 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8786
8787 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
8788
8789 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8790 command changed buffer (ie. `flyspell-pre-buffer' is not current
8791 buffer), which prevents making decisions based on invalid value of
8792 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8793 cause an error when `flyspell-pre-point' was nil after switching
8794 buffers.
8795 (flyspell-post-command-hook): No longer needs to change buffers when
8796 checking pre-word. While at it remove unnecessary progn.
8797
8798 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8799
8800 * textmodes/ispell.el (ispell-add-per-file-word-list):
8801 Fix `flyspell-correct-word-before-point' error when accepting
8802 words and `coment-padding' is an integer by using
8803 `comment-normalize-vars' (Bug #14214).
8804
8805 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8806
8807 New defun movement commands.
8808 * progmodes/python.el (python-nav--syntactically)
8809 (python-nav--forward-defun, python-nav-backward-defun)
8810 (python-nav-forward-defun): New functions.
8811
8812 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8813
8814 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8815 (python-syntax-context): Use named compiler-macro for backwards
8816 compatibility with Emacs 24.x.
8817
8818 2013-04-17 Leo Liu <sdl.web@gmail.com>
8819
8820 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8821 octave-hide-process-buffer.
8822
8823 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8824
8825 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8826 (bug#14216).
8827
8828 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8829
8830 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8831 Fix adjustment of offset when receiving incomplete responses from GDB
8832 (bug#14129).
8833
8834 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8835
8836 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8837 python-mode-abbrev-table.
8838 (python-skeleton-define): Adjust accordingly.
8839 (python-mode-abbrev-table): New table that inherits from it so that
8840 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8841
8842 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8843 (abbrev-symbol): Use it.
8844 (abbrev--before-point): Use it since we already handle inheritance.
8845
8846 2013-04-16 Leo Liu <sdl.web@gmail.com>
8847
8848 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8849 binding to info-lookup-symbol.
8850
8851 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
8852
8853 * minibuffer.el (completion--twq-all):
8854 * term/ns-win.el (ns-initialize-window-system):
8855 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8856
8857 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8858
8859 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8860 global bindings.
8861
8862 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8863
8864 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8865
8866 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8867 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8868 to nil.
8869 (ruby-end-of-defun): Remove the unused arg, change the docstring
8870 to reflect that this function is only used as the value of
8871 `end-of-defun-function'.
8872 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8873 to reflect an earlier change that beginning/end-of-defun functions
8874 jump between methods in a class definition, as well as top-level
8875 functions.
8876
8877 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8878
8879 * minibuffer.el (minibuffer-complete): Don't just scroll
8880 a *Completions* that's been iconified.
8881 (minibuffer-force-complete): Make sure repetitions do cycle when going
8882 through completion-in-region -> minibuffer-complete.
8883
8884 2013-04-15 Alan Mackenzie <acm@muc.de>
8885
8886 Correct the placement of c-cpp-delimiters when there're #s not at
8887 col 0.
8888
8889 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8890 place a submatch around the #.
8891 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8892 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
8893 on the #, not BOL.
8894
8895 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8896
8897 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8898 (advice--member-p): New arg `name'.
8899 (advice--add-function, advice-member-p): Use it (bug#14202).
8900
8901 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8902
8903 Reformulate java imenu-generic-expression.
8904 The old expression contained ill formed regexps.
8905
8906 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8907 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8908 (cc-imenu-java-method-arg-regexp): New defconsts.
8909 (cc-imenu-java-build-type-args-regex): New defun.
8910 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
8911 handling of spaces in the regexp.
8912
8913 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8914
8915 * textmodes/ispell.el (ispell-command-loop): Remove
8916 flyspell highlight of a word when ispell accepts it (bug #14178).
8917
8918 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
8919
8920 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8921 uses code from the previous `ange-ftp-run-real-handler'.
8922 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8923 only in case that function exist. This is needed for proper
8924 unloading of Tramp.
8925
8926 2013-04-15 Tassilo Horn <tsdh@gnu.org>
8927
8928 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8929
8930 * textmodes/reftex.el (reftex-compile-variables): Use it.
8931
8932 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8933
8934 * files.el (normal-mode): Only use default major-mode if no other mode
8935 was specified.
8936
8937 * emacs-lisp/trace.el (trace-values): New function.
8938
8939 * files.el: Allow : in local variables (bug#14089).
8940 (hack-local-variable-regexp): New var.
8941 (hack-local-variables-prop-line, hack-local-variables): Use it.
8942
8943 2013-04-13 Roland Winkler <winkler@gnu.org>
8944
8945 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8946 data before it gets modified by bibtex-beginning-of-entry.
8947
8948 2013-04-13 Roland Winkler <winkler@gnu.org>
8949
8950 * textmodes/bibtex.el (bibtex-url): Doc fix.
8951
8952 2013-04-13 Roland Winkler <winkler@gnu.org>
8953
8954 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8955 does not visit a BibTeX file, exclude it from the list of buffers
8956 returned by bibtex-initialize.
8957
8958 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
8959
8960 * window.el (split-window): Remove interactive form, since as a
8961 command this function is a special case of split-window-below.
8962 Correct doc string.
8963
8964 2013-04-12 Roland Winkler <winkler@gnu.org>
8965
8966 * faces.el (read-face-name): Do not override value of arg default.
8967 Allow single faces and strings as default values. Remove those
8968 elements from return value that are not faces.
8969 (describe-face): Simplify.
8970 (face-at-point): New optional args thing and multiple so that this
8971 function can provide the same functionality previously provided by
8972 read-face-name.
8973 (make-face-bold, make-face-unbold, make-face-italic)
8974 (make-face-unitalic, make-face-bold-italic, invert-face)
8975 (modify-face, read-face-and-attribute): Use face-at-point.
8976
8977 * cus-edit.el (customize-face, customize-face-other-window)
8978 * cus-theme.el (custom-theme-add-face)
8979 * face-remap.el (buffer-face-set)
8980 * facemenu.el (facemenu-set-face): Use face-at-point.
8981
8982 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
8983
8984 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8985
8986 2013-04-10 Tassilo Horn <tsdh@gnu.org>
8987
8988 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8989 off leading { and trailing } from field values.
8990
8991 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8992
8993 * emacs-lisp/timer.el (timer--check): New function.
8994 (timer--time, timer-set-function, timer-event-handler): Use it.
8995 (timer-set-idle-time): Simplify.
8996 (timer--activate): CSE.
8997 (timer-event-handler): Give more info in error message.
8998 (internal-timer-start-idle): New function, moved from C.
8999
9000 * mpc.el (mpc-proc): Add `restart' argument.
9001 (mpc-proc-cmd): Use it.
9002 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
9003 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
9004 less often.
9005
9006 2013-04-10 Masatake YAMATO <yamato@redhat.com>
9007
9008 * progmodes/sh-script.el: Implement `sh-mode' own
9009 `add-log-current-defun-function' (bug#14112).
9010 (sh-current-defun-name): New function.
9011 (sh-mode): Use the function.
9012
9013 2013-04-09 Bastien Guerry <bzg@gnu.org>
9014
9015 * simple.el (choose-completion-string): Fix docstring (bug#14163).
9016
9017 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
9018
9019 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
9020
9021 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
9022 timer (bug#14156).
9023
9024 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
9025
9026 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
9027 declaration.
9028
9029 2013-04-07 Leo Liu <sdl.web@gmail.com>
9030
9031 * pcmpl-x.el: New file.
9032
9033 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
9034
9035 Do not set x-display-name until X connection is established.
9036 This is needed to prevent from weird situation described at
9037 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
9038 * frame.el (make-frame): Set x-display-name after call to
9039 window system initialization function, not before.
9040 * term/x-win.el (x-initialize-window-system): Add optional
9041 display argument and use it.
9042 * term/w32-win.el (w32-initialize-window-system):
9043 * term/ns-win.el (ns-initialize-window-system):
9044 * term/pc-win.el (msdos-initialize-window-system):
9045 Add compatible optional display argument.
9046
9047 2013-04-06 Eli Zaretskii <eliz@gnu.org>
9048
9049 * files.el (normal-backup-enable-predicate): On MS-Windows and
9050 MS-DOS compare truenames of temporary-file-directory and of the
9051 file, so that 8+3 aliases (usually found in $TEMP on Windows)
9052 don't fail comparison by compare-strings. Also, compare file
9053 names case-insensitively on MS-Windows and MS-DOS.
9054
9055 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
9056
9057 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
9058 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
9059
9060 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
9061
9062 * whitespace.el (whitespace-color-on, whitespace-color-off):
9063 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
9064
9065 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
9066
9067 * ispell.el (ispell-set-spellchecker-params):
9068 Really set `ispell-args' for all equivs.
9069
9070 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
9071
9072 * ido.el (ido-completions): Use extra elements of ido-decorations
9073 (bug#14143).
9074 (ido-decorations): Update docstring.
9075
9076 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
9077
9078 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
9079 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
9080 nil during initialization, in order not to miss changes since the
9081 file was opened. (Bug#14140)
9082
9083 2013-04-05 Leo Liu <sdl.web@gmail.com>
9084
9085 * kmacro.el (kmacro-call-macro): Fix bug#14135.
9086
9087 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
9088
9089 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
9090
9091 2013-04-04 Glenn Morris <rgm@gnu.org>
9092
9093 * electric.el (electric-pair-inhibit-predicate): Add :version.
9094
9095 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9096
9097 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
9098 when a package is required several times (bug#14082).
9099
9100 2013-04-04 Roland Winkler <winkler@gnu.org>
9101
9102 * faces.el (read-face-name): Behave as promised by the docstring.
9103 Assume that arg default is a list of faces.
9104 (describe-face): Call read-face-name with list of default faces.
9105
9106 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9107
9108 * bookmark.el: Fix deletion of bookmarks (bug#13972).
9109 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
9110 (bookmark-bmenu-execute-deletions): Only skip first line if it's
9111 the header.
9112 (bookmark-exit-hook-internal): Save even if list is empty.
9113
9114 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
9115
9116 * emacs-lisp/package.el (package-pinned-packages): New var.
9117 (package--add-to-archive-contents): Obey it (bug#14118).
9118
9119 2013-04-03 Alan Mackenzie <acm@muc.de>
9120
9121 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
9122 Also adapt to the new values of element 7 of a parse state.
9123
9124 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
9125 parameter `not-in-delimiter'. Handle being inside comment opener.
9126 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
9127 character in case we're typing a '*' after a '/'.
9128 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
9129 instead by passing the parameter to c-state-pp-to-literal.
9130
9131 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
9132 for elt. 7 of a parse state.
9133
9134 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
9135
9136 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
9137 * international/latin1-disp.el, international/mule-util.el:
9138 * language/cyril-util.el, language/european.el, language/ind-util.el:
9139 * language/lao-util.el, language/thai.el, language/tibet-util.el:
9140 * language/tibetan.el, language/viet-util.el:
9141 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
9142
9143 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
9144
9145 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
9146 (electric-pair-post-self-insert-function): Use it.
9147 (electric-pair-default-inhibit): New function, extracted from
9148 electric-pair-post-self-insert-function.
9149
9150 2013-03-31 Roland Winkler <winkler@gnu.org>
9151
9152 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
9153
9154 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9155
9156 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
9157
9158 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
9159
9160 Un-indent after "pass" and "return" statements (Bug#13888)
9161 * progmodes/python.el (python-indent-block-enders): New var.
9162 (python-indent-calculate-indentation): Use it.
9163
9164 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
9165
9166 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
9167 defun. Defining it as defalias could introduce too eager
9168 byte-compiler optimization. (Bug#14030)
9169
9170 2013-03-30 Chong Yidong <cyd@gnu.org>
9171
9172 * iswitchb.el (iswitchb-read-buffer): Fix typo.
9173
9174 2013-03-30 Leo Liu <sdl.web@gmail.com>
9175
9176 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
9177 (kmacro-execute-from-register): Pass the keyboard macro to
9178 kmacro-call-macro or repeating won't work correctly.
9179
9180 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
9181
9182 * progmodes/subword.el: Back to using `forward-symbol'.
9183
9184 * subr.el (forward-whitespace, forward-symbol)
9185 (forward-same-syntax): Move from thingatpt.el.
9186
9187 2013-03-29 Leo Liu <sdl.web@gmail.com>
9188
9189 * kmacro.el (kmacro-to-register): New command.
9190 (kmacro-execute-from-register): New function.
9191 (kmacro-keymap): Bind to 'x'. (Bug#14071)
9192
9193 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
9194
9195 * mpc.el: Use defvar-local and setq-local.
9196 (mpc--proc-connect): Connection failures are not bugs.
9197 (mpc-mode-map): `follow-link' only applies to the buffer's content.
9198 (mpc-volume-map): Bind to the up-events.
9199
9200 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
9201
9202 * progmodes/subword.el (superword-mode): Use `forward-sexp'
9203 instead of `forward-symbol'.
9204
9205 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9206
9207 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
9208 (edebug--recursive-edit): Use it.
9209 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
9210 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
9211
9212 2013-03-28 Leo Liu <sdl.web@gmail.com>
9213
9214 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
9215
9216 2013-03-27 Eli Zaretskii <eliz@gnu.org>
9217
9218 * facemenu.el (list-colors-callback): New defvar.
9219 (list-colors-redisplay): New function.
9220 (list-colors-display): Install list-colors-redisplay as the
9221 revert-buffer-function. (Bug#14063)
9222
9223 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9224
9225 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
9226 and suffixes don't overlap (bug#14061).
9227
9228 * case-table.el: Use lexical-binding.
9229 (case-table-get-table): New function.
9230 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
9231
9232 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
9233
9234 * progmodes/subword.el: Add `superword-mode' to do word motion
9235 over symbol_words (parallels and leverages `subword-mode' which
9236 does word motion inside MixedCaseWords).
9237
9238 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
9239
9240 * eshell/em-unix.el: Move su and sudo to...
9241 * eshell/em-tramp.el: ...Eshell tramp module.
9242
9243 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9244
9245 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
9246 Change return value to be a sexp. Delay `get-buffer' to after
9247 restoring the desktop (bug#13951).
9248
9249 2013-03-26 Leo Liu <sdl.web@gmail.com>
9250
9251 * register.el: Move semantic tag handling back to
9252 cedet/semantic/senator.el. (Bug#14052)
9253
9254 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9255
9256 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
9257 into the prompt either (bug#13963).
9258
9259 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
9260
9261 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
9262 part of "(error-foo)".
9263
9264 2013-03-24 Juri Linkov <juri@jurta.org>
9265
9266 * replace.el (list-matching-lines-prefix-face): New defcustom.
9267 (occur-1): Pass `list-matching-lines-prefix-face' to the function
9268 `occur-engine' if `face-differs-from-default-p' returns t.
9269 (occur-engine): Add `,' inside backquote construct to evaluate
9270 `prefix-face'. Propertize the prefix with the `prefix-face' face.
9271 Pass `prefix-face' to the functions `occur-context-lines' and
9272 `occur-engine-add-prefix'.
9273 (occur-engine-add-prefix, occur-context-lines): Add optional arg
9274 `prefix-face' and propertize the prefix with `prefix-face'.
9275 (Bug#14017)
9276
9277 2013-03-24 Leo Liu <sdl.web@gmail.com>
9278
9279 * nxml/rng-valid.el (rng-validate-while-idle)
9280 (rng-validate-quick-while-idle): Guard against deleted buffer.
9281 (Bug#13999)
9282
9283 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
9284 is the last entry in kill-buffer-hook.
9285
9286 * files.el (kill-buffer-hook): Doc fix.
9287
9288 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
9289
9290 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
9291 Make it safe-local.
9292
9293 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
9294
9295 2013-03-23 Leo Liu <sdl.web@gmail.com>
9296
9297 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
9298 Remove.
9299
9300 * nxml/rng-valid.el (rng-validate-mode)
9301 (rng-after-change-function, rng-do-some-validation):
9302 * nxml/rng-maint.el (rng-validate-buffer):
9303 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
9304 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
9305 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
9306 (nxml-extend-after-change-region): Use with-silent-modifications.
9307
9308 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
9309 timer-idle-list.
9310
9311 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
9312 (rng-next-error-1, rng-previous-error-1): Do not let-bind
9313 timer-idle-list. (Bug#13999)
9314
9315 2013-03-23 Juri Linkov <juri@jurta.org>
9316
9317 * info.el (info-index-match): New face.
9318 (Info-index, Info-apropos-matches): Add a nested subgroup to the
9319 main pattern and add text properties with the new face to matches
9320 in index entries relative to the beginning of the index entry.
9321 (Bug#14015)
9322
9323 2013-03-21 Eric Ludlam <zappo@gnu.org>
9324
9325 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
9326 Inhibit read only while inserting objects.
9327
9328 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
9329
9330 * progmodes/cfengine.el: Update docs to mention
9331 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
9332 symbol motion. Remove "_" from the word syntax.
9333
9334 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
9335
9336 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
9337 syntax for both `cfengine2-mode' and `cfengine3-mode'.
9338
9339 2013-03-20 Juri Linkov <juri@jurta.org>
9340
9341 * info.el (Info-next-reference-or-link)
9342 (Info-prev-reference-or-link): New functions.
9343 (Info-next-reference, Info-prev-reference): Use them.
9344 (Info-try-follow-nearest-node): Handle footnote navigation.
9345 (Info-fontify-node): Fontify footnotes. (Bug#13989)
9346
9347 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9348
9349 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
9350 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
9351
9352 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
9353
9354 Suppress unnecessary non-ASCII chatter during build process.
9355 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
9356 (batch-skkdic-convert): Suppress most of the chatter.
9357 It's not needed so much now that machines are faster,
9358 and its non-ASCII component was confusing; see Dmitry Gutov in
9359 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
9360
9361 2013-03-20 Leo Liu <sdl.web@gmail.com>
9362
9363 * ido.el (ido-chop): Fix bug#10994.
9364
9365 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9366
9367 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
9368 Remove vars.
9369 (whitespace-color-on, whitespace-color-off):
9370 Use `font-lock-fontify-buffer' (Bug#13817).
9371
9372 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
9373
9374 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
9375 remapping in mode-line.
9376 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
9377
9378 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9379
9380 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
9381 value for `whitespace-line' face (Bug#13875).
9382 (whitespace-font-lock-keywords): Change description.
9383 (whitespace-color-on): Don't save `font-lock-keywords' value, save
9384 the constructed keywords instead.
9385 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
9386
9387 2013-03-19 Leo Liu <sdl.web@gmail.com>
9388
9389 * progmodes/compile.el (compilation-display-error): New command.
9390 (compilation-mode-map, compilation-minor-mode-map): Bind it to
9391 C-o. (Bug#13992)
9392
9393 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9394
9395 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
9396
9397 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
9398
9399 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
9400
9401 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
9402
9403 * net/tramp-compat.el (tramp-compat-user-error): New defun.
9404
9405 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9406 * net/tramp-gvfs.el (top):
9407 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
9408 (tramp-handle-shell-command): Use it.
9409 (tramp-dissect-file-name): Raise an error when hostname is a
9410 method name, and neither method nor user is specified.
9411
9412 * net/trampver.el: Update release number.
9413
9414 2013-03-18 Leo Liu <sdl.web@gmail.com>
9415
9416 Make sure eldoc can be turned off properly.
9417 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
9418 eldoc-mode.
9419 (eldoc-display-message-p): Revert last change.
9420 (eldoc-display-message-no-interference-p)
9421 (eldoc-print-current-symbol-info): Tweak.
9422
9423 2013-03-18 Tassilo Horn <tsdh@gnu.org>
9424
9425 * doc-view.el (doc-view-new-window-function): Check the new window
9426 overlay's display property instead the char property of the
9427 buffer's first char. Use `with-selected-window' instead of
9428 `save-window-excursion' with `select-window'.
9429 (doc-view-document->bitmap): Check the current doc-view overlay's
9430 display property instead the char property of the buffer's first char.
9431
9432 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9433
9434 Automate the build of ja-dic.el (Bug#13984).
9435 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
9436 from the input, rather than assume that it's been done for us by the
9437 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
9438 the current date into a ja-dic.el comment, as that complicates
9439 regression testing.
9440
9441 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9442
9443 * whitespace.el: Fix double evaluation.
9444 (whitespace-space, whitespace-hspace, whitespace-tab)
9445 (whitespace-newline, whitespace-trailing, whitespace-line)
9446 (whitespace-space-before-tab, whitespace-indentation)
9447 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
9448 obsolete defvars.
9449 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
9450 (whitespace-color-on): Use a single font-lock-add-keywords call.
9451 Fix double-evaluation of face variables.
9452
9453 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
9454
9455 * net/tramp-adb.el (tramp-adb-parse-device-names):
9456 Use `start-process' instead of `call-process'. Otherwise, the
9457 function might be blocked under MS Windows. (Bug#13299)
9458
9459 2013-03-17 Leo Liu <sdl.web@gmail.com>
9460
9461 Extend eldoc to display info in the mode-line. (Bug#13978)
9462 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
9463 (eldoc-mode-line-string): New variable.
9464 (eldoc-minibuffer-message): New function.
9465 (eldoc-message-function): New variable.
9466 (eldoc-message): Use it.
9467 (eldoc-display-message-p)
9468 (eldoc-display-message-no-interference-p):
9469 Support eldoc-post-insert-mode.
9470
9471 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
9472 (eval-expression): Run it.
9473
9474 2013-03-17 Roland Winkler <winkler@gnu.org>
9475
9476 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
9477 strings in the list of return values.
9478
9479 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9480
9481 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
9482 radix before checking for HMS forms.
9483
9484 2013-03-16 Leo Liu <sdl.web@gmail.com>
9485
9486 * progmodes/scheme.el: Add indentation and font-locking for λ.
9487 (Bug#13975)
9488
9489 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
9490
9491 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
9492 token before point (bug#13942).
9493
9494 2013-03-16 Leo Liu <sdl.web@gmail.com>
9495
9496 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
9497
9498 2013-03-16 Eli Zaretskii <eliz@gnu.org>
9499
9500 * startup.el (command-line-normalize-file-name): Fix handling of
9501 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
9502 <xfq.free@gmail.com> in
9503 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
9504
9505 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
9506
9507 Sync with Tramp 2.2.7.
9508
9509 * net/trampver.el: Update release number.
9510
9511 2013-03-14 Tassilo Horn <tsdh@gnu.org>
9512
9513 * doc-view.el: Fix bug#13887.
9514 (doc-view-insert-image): Don't modify overlay associated to
9515 non-live windows, and implement horizontal centering of image in
9516 case it's smaller than the window.
9517 (doc-view-new-window-function): Force redisplay of new windows on
9518 doc-view buffers.
9519
9520 2013-03-13 Karl Fogel <kfogel@red-bean.com>
9521
9522 * saveplace.el (save-place-alist-to-file): Don't sort
9523 `save-place-alist', just pretty-print it (bug#13882).
9524
9525 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
9526
9527 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9528 Check whether `default-file-name-coding-system' is bound.
9529 It isn't in XEmacs.
9530
9531 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
9532
9533 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
9534 backquotes for `obsolete' (bug#13929).
9535
9536 * international/mule.el (find-auto-coding): Include file name in
9537 obsolescence warning (bug#13922).
9538
9539 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
9540
9541 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
9542 for CFEngine 3-specific indentation.
9543 (cfengine3-indent-line): Use it. Fix up category regex.
9544 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
9545
9546 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9547
9548 * type-break.el (type-break-file-name):
9549 * textmodes/remember.el (remember-data-file):
9550 * strokes.el (strokes-file):
9551 * shadowfile.el (shadow-initialize):
9552 * saveplace.el (save-place-file):
9553 * ps-bdf.el (bdf-cache-file):
9554 * progmodes/idlwave.el (idlwave-config-directory):
9555 * net/quickurl.el (quickurl-url-file):
9556 * international/kkc.el (kkc-init-file-name):
9557 * ido.el (ido-save-directory-list-file):
9558 * emulation/viper.el (viper-custom-file-name):
9559 * emulation/vip.el (vip-startup-file):
9560 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9561 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
9562
9563 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
9564
9565 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
9566 * language/thai-word.el: Switch to UTF-8.
9567
9568 See ChangeLog.16 for earlier changes.
9569
9570 ;; Local Variables:
9571 ;; coding: utf-8
9572 ;; End:
9573
9574 Copyright (C) 2011-2013 Free Software Foundation, Inc.
9575
9576 This file is part of GNU Emacs.
9577
9578 GNU Emacs is free software: you can redistribute it and/or modify
9579 it under the terms of the GNU General Public License as published by
9580 the Free Software Foundation, either version 3 of the License, or
9581 (at your option) any later version.
9582
9583 GNU Emacs is distributed in the hope that it will be useful,
9584 but WITHOUT ANY WARRANTY; without even the implied warranty of
9585 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9586 GNU General Public License for more details.
9587
9588 You should have received a copy of the GNU General Public License
9589 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.