* lisp/progmodes/python.el (python-mode): Remove incorrect text from docstring.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-11-05 Bozhidar Batsov <bozhidar@batsov.com>
2
3 * progmodes/python.el (python-mode): Remove incorrect text from docstring.
4 * progmodes/scheme.el (scheme-mode): Remove incorrect text from docstring.
5 * progmodes/prolog.el (prolog-mode): Remove incorrect text from docstring.
6 * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode, emacs-lisp-mode):
7 Remove incorrect text from docstring.
8
9 * progmodes/ruby-mode.el (ruby-mode): Remove incorrect text from docstring.
10
11 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
12
13 * rect.el (rectangle--highlight-for-redisplay):
14 * emacs-lisp/smie.el (smie--next-indent-change):
15 Use buffer-chars-modified-tick.
16
17 * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
18
19 * electric.el (electric-indent-post-self-insert-function):
20 Only delete trailing whitepsace if it is indeed trailing (bug#15767).
21
22 2013-11-04 Helmut Eller <eller.helmut@gmail.com>
23
24 * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
25
26 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
27
28 * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
29 (bug#15786).
30
31 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
32
33 * emacs-lisp/helpers.el: Move from helpers.el. Use lexical-binding.
34
35 * progmodes/python.el: Fix up last change.
36 (python-shell--save-temp-file): New function.
37 (python-shell-send-string): Use it. Remove `msg' arg. Don't assume
38 `string' comes from the current buffer.
39 (python-shell-send-string-no-output): Remove `msg' arg.
40 (python--use-fake-loc): New var.
41 (python-shell-buffer-substring): Obey it. Try to compensate for the
42 extra coding line added by python-shell--save-temp-file.
43 (python-shell-send-region): Use python-shell--save-temp-file and
44 python-shell-send-file directly. Add `nomain' argument.
45 (python-shell-send-buffer): Use python-shell-send-region.
46 (python-electric-pair-string-delimiter): New function.
47 (python-mode): Use it.
48
49 2013-11-04 Eli Zaretskii <eliz@gnu.org>
50
51 * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
52 eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
53 environment and decoding all of the default-directory's to here
54 from command-line.
55 (command-line): Decode also argv[0].
56
57 * loadup.el: Error out if default-directory is a multibyte string
58 when we are dumping.
59
60 * Makefile.in (emacs): Don't set LC_ALL=C. (Bug#15260)
61
62 2013-11-04 Teodor Zlatanov <tzz@lifelogs.com>
63
64 * emacs-lisp/package.el (package-menu-mode)
65 (package-menu--print-info, package-menu--archive-predicate):
66 Add Archive column to package list.
67
68 2013-11-04 Michael Albinus <michael.albinus@gmx.de>
69
70 Fix problems found while writing a test suite.
71
72 * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
73 (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
74 (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
75 to nil when running original file name handler. Otherwise,
76 there are problems with constructs like "$$FOO".
77
78 * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
79 for `localname'.
80
81 2013-11-04 Bozhidar Batsov <bozhidar@batsov.com>
82
83 * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
84
85 * subr.el (version<, version<=, version=):
86 Update docstrings with information for snapshot versions.
87
88 * helpers.el: New library for misc helper functions.
89 (hash-table-keys): New function returning a list of hash keys.
90 (hash-table-values): New function returning a list of hash values.
91
92 2013-11-04 Dmitry Gutov <dgutov@yandex.ru>
93
94 * progmodes/ruby-mode.el (ruby-smie--forward-token)
95 (ruby-smie--backward-token): Tokenize heredocs as semicolons.
96
97 2013-11-04 Michal Nazarewicz <mina86@mina86.com>
98
99 * textmodes/fill.el (fill-single-char-nobreak-p): New function
100 checking whether point is after a 1-letter word.
101
102 2013-11-04 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
103
104 * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
105 Don't infloop when expanding region over `multiline' syntax-type that
106 begins a line (bug#15778).
107
108 2013-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
109
110 * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
111 Make it into a proper minor mode.
112 (rectangle--region): (implicitly) rename to rectangle-mark-mode.
113 (rectangle-mark-mode-map): New keymap.
114 (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
115
116 2013-11-04 Glenn Morris <rgm@gnu.org>
117
118 * startup.el (command-line-1): Allow `-L :...' to append to load-path.
119
120 2013-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
121
122 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
123 (ruby-smie-rules): Use smie-rule-parent instead.
124
125 * emacs-lisp/smie.el (smie-rule-parent): Always call
126 smie-indent-virtual rather than only for hanging tokens.
127 (smie--next-indent-change): New helper command.
128
129 2013-11-03 Glenn Morris <rgm@gnu.org>
130
131 * Makefile.in (abs_srcdir): Remove.
132 (emacs): Unset EMACSLOADPATH.
133
134 2013-11-02 Glenn Morris <rgm@gnu.org>
135
136 * Makefile.in (EMACS): Use a relative filename.
137 (abs_top_builddir): Remove.
138 (custom-deps, finder-data, autoloads): Use --chdir.
139
140 * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
141
142 Use relative filenames in TAGS files.
143 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
144 (lisptagsfiles4, TAGS): Use relative file names.
145 (TAGS-LISP): Remove.
146 (maintainer-clean): No more TAGS-LISP file.
147
148 * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
149 (lisptagsfiles4): Use absolute filenames again.
150 (TAGS, TAGS-LISP): Not everything needs to run in one line.
151 Remove all *loaddefs files, not just the first. Remove esh-groups.
152 (maintainer-clean): Delete TAGS, TAGS-LISP.
153
154 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
155
156 * emacs-lisp/package.el (package-version-join):
157 Recognize snapshot versions.
158
159 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
160
161 * subr.el (version-regexp-alist): Add support for snapshot versions.
162
163 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
164
165 * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
166 New function, replacement for `smie-rule-parent' for when we want to
167 skip over our direct parent if it's an assignment token..
168 (ruby-smie-rules): Use it.
169
170 2013-11-02 Dmitry Gutov <dgutov@yandex.ru>
171
172 * progmodes/ruby-mode.el Use `syntax-propertize-function'
173 unconditionally. Remove now unnecessary forward declarations.
174 Remove XEmacs-specific setup.
175 (ruby-here-doc-end-re, ruby-here-doc-beg-match)
176 (ruby-font-lock-syntactic-keywords)
177 (ruby-comment-beg-syntax, ruby-in-here-doc-p)
178 (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
179 (ruby-here-doc-end-syntax): Remove.
180 (ruby-mode): Don't check whether `syntax-propertize-rules' is
181 defined as function.
182
183 2013-11-02 Bozhidar Batsov <bozhidar@batsov.com>
184
185 * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
186
187 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
188
189 * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
190 table and abbrev table, `define-derived-mode' does that for us
191 anyway.
192
193 2013-11-01 Glenn Morris <rgm@gnu.org>
194
195 * Makefile.in: Remove manual mh-e dependencies (writing .elc
196 files is atomic for some time, so no parallel compilation issues).
197
198 2013-11-01 Jan Djärv <jan.h.d@swipnet.se>
199
200 * faces.el (face-x-resources): Add :distant-foreground.
201 (region): Use :distant-foreground for gtk and ns.
202
203 2013-11-01 Tassilo Horn <tsdh@gnu.org>
204
205 Allow multiple bibliographies when BibLaTeX is used rather than
206 BibTeX.
207 * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
208 (reftex-locate-bibliography-files): Us it.
209
210 2013-11-01 Claudio Bley <claudio.bley@googlemail.com>
211
212 * image.el (image-type-header-regexps): Fix the 'pbm' part to
213 allow comments in pbm files.
214
215 * term/w32-win.el (dynamic-library-alist): Support newer versions
216 of libjpeg starting with v7: look only for the DLL from the
217 version against which Emacs was built.
218 Support versions of libpng beyond 1.4.x.
219 Support libtiff v4.x.
220
221 2013-11-01 Bozhidar Batsov <bozhidar@batsov.com>
222
223 * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
224 (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
225 Add property :safe.
226 (ruby-deep-arglist): Add property :type.
227
228 2013-10-31 Glenn Morris <rgm@gnu.org>
229
230 * Makefile.in (custom-deps, finder-data): No need to setq the target
231 variables, we are in the right directory and the defaults work fine.
232
233 2013-10-30 Glenn Morris <rgm@gnu.org>
234
235 * Makefile.in (autoloads): Do not use abs_lisp.
236
237 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
238 `newline' does not respect `standard-output', so use `princ'.
239
240 2013-10-30 Alp Aker <alp.tekin.aker@gmail.com>
241
242 Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761)
243 * buff-menu.el (Buffer-menu--unmark): New function.
244 (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
245
246 2013-10-30 Glenn Morris <rgm@gnu.org>
247
248 * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
249
250 * emacs-lisp/package.el (lm-homepage): Declare.
251
252 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
253 Fix doc typos.
254
255 * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
256
257 * Makefile.in (finder-data, autoloads, update-subdirs)
258 (compile-main, compile-clean, compile-always, bootstrap-clean):
259 Check return value of cd.
260 (compile-calc): Remove.
261
262 2013-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * simple.el (copy-region-as-kill): Fix call to region-extract-function.
265
266 * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
267 (byte-compile-and-folded): New function.
268 (=, <, >, <=, >=): Use it.
269
270 * dos-w32.el (minibuffer-history-case-insensitive-variables)
271 (path-separator, null-device, buffer-file-coding-system)
272 (lpr-headers-switches): Check system-type before modifying them.
273 (find-buffer-file-type-coding-system): Mark obsolete.
274 (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
275 find-file-not-found-set-buffer-file-coding-system.
276 (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
277 (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
278 (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
279 (w32-direct-print-region-helper, w32-direct-print-region-function)
280 (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
281 * startup.el (normal-top-level-add-subdirs-to-load-path):
282 * ps-print.el (ps-print-region-function):
283 * lpr.el (print-region-function): Use new name.
284
285 * subr.el (custom-declare-variable-early): Remove function.
286 (custom-declare-variable-list): Remove var.
287 (error, user-error): Remove `while' loop.
288 (read-quoted-char-radix, read-quoted-char): Move to simple.el.
289 (user-emacs-directory-warning, locate-user-emacs-file):
290 Move to files.el.
291 * simple.el (read-quoted-char-radix, read-quoted-char):
292 * files.el (user-emacs-directory-warning, locate-user-emacs-file):
293 Move from subr.el.
294 * custom.el (custom-declare-variable-list): Don't process
295 custom-declare-variable-list.
296
297 * progmodes/python.el (python-shell-get-buffer): New function.
298 (python-shell-get-process): Use it.
299 (python-shell-send-string): Always use utf-8 and add a cookie to tell
300 Python which encoding was used. Don't split-string since we only care
301 about the first line. Return the temp-file, if applicable.
302 (python-shell-send-region): Tell compile.el how to turn locations in
303 the temp-file into locations in the source buffer.
304
305 2013-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
306
307 * subr.el (undefined): Add missing behavior from the C code for
308 unbound keys.
309
310 * rect.el: Use lexical-binding. Add new rectangular region support.
311 (rectangle-mark): New command.
312 (rectangle--region): New var.
313 (deactivate-mark-hook): Reset rectangle--region.
314 (rectangle--extract-region, rectangle--insert-for-yank)
315 (rectangle--highlight-for-redisplay)
316 (rectangle--unhighlight-for-redisplay): New functions.
317 (region-extract-function, redisplay-unhighlight-region-function)
318 (redisplay-highlight-region-function): Use them to handle
319 rectangular region.
320 * simple.el (region-extract-function): New var.
321 (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
322 (kill-new, kill-append): Remove obsolete `yank-handler' argument.
323 (kill-region): Replace obsolete `yank-handler' arg with `region'.
324 (copy-region-as-kill, kill-ring-save): Add `region' argument.
325 (redisplay-unhighlight-region-function)
326 (redisplay-highlight-region-function): New vars.
327 (redisplay--update-region-highlight): New function.
328 (pre-redisplay-function): Use it.
329 (exchange-point-and-mark): Don't deactivate the mark before
330 reactivate-it anyway.
331 * comint.el (comint-kill-region): Remove yank-handler argument.
332 * delsel.el (delete-backward-char, backward-delete-char-untabify)
333 (delete-char): Remove property, since it's now part of their
334 default behavior.
335 (self-insert-iso): Remove property since this command doesn't exist.
336
337 * emacs-lisp/package.el (package--download-one-archive)
338 (describe-package-1): Don't query the user about final newline.
339
340 2013-10-29 Daniel Colascione <dancol@dancol.org>
341
342 * net/tramp.el (tramp-methods): Document new functionality.
343 * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
344 tramp-hostname-checker if method provides one instead of scanning
345 argument list for "%h" to decide hostname acceptability.
346
347 2013-10-28 Michael Albinus <michael.albinus@gmx.de>
348
349 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
350 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
351 Handle COPY-CONTENTS. (Bug#15737)
352
353 2013-10-28 Daiki Ueno <ueno@gnu.org>
354
355 * epa-file.el
356 (epa-file-cache-passphrase-for-symmetric-encryption):
357 Document that this option has no effect with GnuPG 2.0 (bug#15552).
358
359 2013-10-27 Xue Fuqiao <xfq.free@gmail.com>
360
361 * image.el (defimage):
362 (image-load-path): Doc fixes.
363
364 2013-10-27 Alan Mackenzie <acm@muc.de>
365
366 Indent statements in macros following "##" correctly.
367 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
368 Modify the "#" arm of a cond form to handle "#" and "##" operators.
369
370 2013-10-27 Nathan Trapuzzano <nbtrap@nbtrap.com> (tiny change)
371
372 * linum.el (linum-update-window): Fix boundary test (bug#13446).
373
374 2013-10-27 Dmitry Gutov <dgutov@yandex.ru>
375
376 * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
377 after `=' is probably a new expression.
378
379 2013-10-27 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
380
381 * man.el (man-imenu-title): New option.
382 (Man-mode-map): Add menu. (Bug#15722)
383 (Man-mode): Add imenu to menu.
384
385 2013-10-26 Dmitry Gutov <dgutov@yandex.ru>
386
387 * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
388 specific in what the first arg can be: a non-keyword word,
389 string/regexp/percent literal opener, opening paren, or unary
390 operator followed directly by word.
391
392 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
393
394 * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
395 (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
396 (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
397 (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
398 Remove vars, they do not apply any more.
399 (prolog-mode-abbrev-table): Remove redundant declaration.
400 (prolog-upper-case-string, prolog-lower-case-string): Remove.
401 (prolog-use-smie): Remove.
402 (prolog-smie-rules): Add indentation rule for the if-then-else layout
403 supported by prolog-electric-if-then-else-flag.
404 (prolog-mode-variables, prolog-menu): Use setq-local.
405 (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
406 Remove binding to `Backspace' since this key doesn't exist anyway.
407 Remove bindings for electric self-inserting keys.
408 (prog-mode): Assume it's defined.
409 (prolog-post-self-insert): New function.
410 (prolog-mode): Use it.
411 (prolog-indent-line, prolog-indent-level)
412 (prolog-find-indent-of-matching-paren)
413 (prolog-indentation-level-of-line, prolog-goto-comment-column)
414 (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
415 (prolog-goto-next-paren, prolog-in-string-or-comment)
416 (prolog-tokenize, prolog-inside-mline-comment)
417 (prolog-find-start-of-mline-comment): Remove functions.
418 (prolog-find-unmatched-paren, prolog-clause-end)
419 (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
420 (prolog-electric--if-then-else): Rename from
421 prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
422 (prolog-tokenize-searchkey): Remove const.
423 (prolog-clause-info): Use forward-sexp.
424 (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
425 (prolog-electric-if-then-else): Remove commands.
426 (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
427 for use in post-self-insert-hook.
428 (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
429 for use in post-self-insert-hook.
430 (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
431 for use in post-self-insert-hook.
432 (prolog-electric--underscore): Rename from prolog-electric--underscore;
433 adapt it for use in post-self-insert-hook.
434
435 2013-10-25 Michael Albinus <michael.albinus@gmx.de>
436
437 * emacs-lisp/ert.el (ert-run-tests-interactively):
438 Use `completing-read'. (Bug#9756)
439
440 2013-10-25 Eli Zaretskii <eliz@gnu.org>
441
442 * simple.el (line-move): Call line-move-1 instead of
443 line-move-visual when the current window hscroll is zero, but
444 temporary-goal-column indicates we will need to hscroll as result
445 of the movement. (Bug#15712)
446
447 2013-10-25 Dmitry Gutov <dgutov@yandex.ru>
448
449 * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
450 capitalization. Use :visible instead of :active.
451 Fix `ruby-indent-exp' reference. Add menu items for the generic
452 commands that are used with SMIE.
453 (ruby-do-end-to-brace): Insert space after `{'.
454
455 2013-10-25 John Anthony <john@jo.hnanthony.com>
456
457 * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu. (Bug#15600)
458
459 * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu. (Bug#15599)
460
461 2013-10-25 Glenn Morris <rgm@gnu.org>
462
463 * vc/vc.el (vc-print-log): Don't use a working revision unless
464 one was explicitly specified. (Bug#15322)
465
466 2013-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
467
468 * subr.el (add-to-list): Preserve return value in compiler-macro
469 (bug#15692).
470
471 2013-10-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
472
473 * progmodes/octave.el (octave-lookfor): Handle empty lookfor
474 result. Ask user to retry using '-all' flag. (Bug#15701)
475
476 2013-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
477
478 * emacs-lisp/smie.el: New smie-config system.
479 (smie-config): New defcustom.
480 (smie-edebug, smie-config-show-indent, smie-config-set-indent)
481 (smie-config-guess, smie-config-save): New commands.
482 (smie-config--mode-local, smie-config--buffer-local)
483 (smie-config--trace, smie-config--modefuns): New vars.
484 (smie-config--advice, smie-config--mode-hook)
485 (smie-config--setter, smie-config-local, smie-config--get-trace)
486 (smie-config--guess-value, smie-config--guess): New functions.
487 (smie-indent-forward-token, smie-indent-backward-token): Don't copy
488 text properties. Treat "string fence" syntax like string syntax.
489
490 * progmodes/sh-script.el (sh-use-smie): Change default.
491 (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
492 (sh-var-value): Simplify by CSE.
493 (sh-show-indent, sh-set-indent, sh-learn-line-indent)
494 (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
495 is used.
496 (sh-guess-basic-offset): Use cl-incf.
497 (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
498
499 2013-10-24 Helmut Eller <eller.helmut@gmail.com>
500
501 * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
502 (bug#15699).
503
504 2013-10-24 Glenn Morris <rgm@gnu.org>
505
506 * Makefile.in (abs_top_srcdir): Remove.
507 (update-subdirs): Use relative path to update-subdirs.
508
509 2013-10-24 Eli Zaretskii <eliz@gnu.org>
510
511 * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
512 ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
513 ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
514 Call unmsys--file-name before expand-file-name, not after it.
515
516 2013-10-24 Michael Albinus <michael.albinus@gmx.de>
517
518 * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
519 (ert-test-skipped): New error.
520 (ert-skip, ert-stats-skipped): New defuns.
521 (ert--skip-unless): New macro.
522 (ert-test-skipped): New struct.
523 (ert--run-test-debugger, ert-test-result-type-p)
524 (ert-test-result-expected-p, ert--stats, ert-stats-completed)
525 (ert--stats-set-test-and-result, ert-char-for-test-result)
526 (ert-string-for-test-result, ert-run-tests-batch)
527 (ert--results-update-ewoc-hf, ert-run-tests-interactively):
528 Handle skipped tests. (Bug#9803)
529
530 2013-10-24 Glenn Morris <rgm@gnu.org>
531
532 * Makefile.in (check-declare): Remove unnecessary path in -l argument.
533
534 * Makefile.in (abs_top_srcdir): New, set by configure.
535 (update-subdirs): Correct build-aux location.
536
537 2013-10-24 Dmitry Gutov <dgutov@yandex.ru>
538
539 * vc/vc.el (vc-print-root-log): Always set `default-directory'
540 value, whether we could auto-deduce `backend', or not.
541
542 * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
543 with parameters" example. Simplify the "is it block or is it
544 hash" check, but also make it more thorough.
545
546 2013-10-23 Masashi Fujimoto <masfj.dev@gmail.com> (tiny change)
547
548 * battery.el (battery-pmset): Handle OS X Mavericks. (Bug#15694)
549
550 2013-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
551
552 * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
553 { if it is hanging.
554
555 * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
556 :before ";".
557
558 2013-10-23 Jed Brown <jed@59A2.org> (tiny change)
559
560 * progmodes/compile.el (compilation-directory-matcher)
561 (compilation-page-delimiter):
562 Support GNU Make-4.0 directory quoting. (Bug#15678)
563
564 2013-10-23 Leo Liu <sdl.web@gmail.com>
565
566 * ido.el (ido-tidy): Handle read-only text.
567
568 2013-10-23 Glenn Morris <rgm@gnu.org>
569
570 * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
571 (emacs, compile, compile-always):
572 Quote entities that might contain whitespace.
573 (custom-deps, finder-data, autoloads): Use abs_lisp.
574 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
575 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
576 ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
577
578 2013-10-23 Dmitry Gutov <dgutov@yandex.ru>
579
580 * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
581 Use `following-char'.
582
583 2013-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
584
585 * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
586 * progmodes/ruby-mode.el (ruby-smie-rules):
587 Remove corresponding workaround. Fix indentation rule of ";" so it
588 also applies when ";" is the parent.
589
590 2013-10-22 Xue Fuqiao <xfq.free@gmail.com>
591
592 * frame.el (display-screens, display-pixel-height)
593 (display-pixel-width, display-mm-width, display-backing-store)
594 (display-save-under, display-planes, display-color-cells)
595 (display-visual-class, display-monitor-attributes-list):
596 Mention the optional ‘display’ argument in doc strings.
597
598 2013-10-22 Michael Gauland <mikelygee@amuri.net>
599
600 * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
601 viewers such as evince when ebnf-production-name-p is nil. (Bug#15625)
602
603 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
604
605 * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
606 TODO. Add "." after " @ ".
607 (ruby-smie--at-dot-call): New function. Checks if point at method
608 call with explicit target.
609 (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
610 to the method name tokens when it precedes them.
611 (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
612 (ruby-smie-rules): Add rule for indentation before and after "."
613 token.
614
615 2013-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
616
617 * textmodes/remember.el (remember-diary-extract-entries):
618 Avoid add-to-list.
619
620 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
621 an instruction.
622
623 2013-10-21 Dmitry Gutov <dgutov@yandex.ru>
624
625 * progmodes/ruby-mode.el (ruby-smie-grammar): Add (almost) all infix operators.
626 (ruby-smie--implicit-semi-p): Add new operator chars.
627
628 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
629 `smie-down-list'.
630 (ruby-smie--args-separator-p): Check that there's no newline
631 between method call and its arguments.
632
633 2013-10-20 Alan Mackenzie <acm@muc.de>
634
635 Allow comma separated lists after Java "implements".
636
637 * progmodes/cc-engine.el (c-backward-over-enum-header):
638 Parse commas.
639 * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
640 from a "disallowed" list in enum fontification.
641
642 2013-10-20 Johan Bockgård <bojohan@gnu.org>
643
644 * startup.el (default-frame-background-mode): Remove unused defvar.
645
646 * progmodes/verilog-mode.el (verilog-mode): Don't set
647 comment-indent-function globally.
648
649 2013-10-20 Jan Djärv <jan.h.d@swipnet.se>
650
651 * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
652 Move Info menu item creation to ns-win.el.
653
654 * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
655 in menu bar.
656
657 * menu-bar.el: Move GNUStep specific menus...
658
659 * term/ns-win.el (ns-initialize-window-system): ... to here.
660
661 2013-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
662
663 * simple.el (newline): Only run post-self-insert-hook when
664 called interactively.
665
666 2013-10-19 Johan Bockgård <bojohan@gnu.org>
667
668 * icomplete.el (icomplete-with-completion-tables): Add :version.
669
670 2013-10-19 Alan Mackenzie <acm@muc.de>
671
672 Fix fontification bugs with constructors and const.
673
674 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
675 CASE 2) Remove the check for the absence of a suffix construct
676 after a function declaration with only types (no identifiers) in
677 the parentheses. Also, accept a function declaration with just a
678 type inside the parentheses, if this type can be positively
679 recognised as such, or if a prefix keyword like "explicit" nails
680 down the construct as a declaration.
681
682 2013-10-19 Eli Zaretskii <eliz@gnu.org>
683
684 * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
685 TTY menu actions and down-mouse-N to tty-menu-ignore. This solves
686 the problem whereby selecting a menu item that leads to a
687 minibuffer prompt moves the cursor out of the minibuffer window,
688 making it hard to type at the prompt. Suggested by Stefan Monnier
689 <monnier@iro.umontreal.ca>.
690
691 2013-10-19 Jan Djärv <jan.h.d@swipnet.se>
692
693 * menu-bar.el: Don't make Services menu.
694
695 2013-10-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
696
697 * ffap.el: Handle "/usr/include/c++/<version>" directories.
698 (ffap-alist): Use ffap-c++-mode for c++-mode.
699 (ffap-c++-path): New variable.
700 (ffap-c++-mode): New function.
701
702 2013-10-19 Joe Vornehm Jr. <joe.vornehm@gmail.com> (tiny change)
703
704 * ido.el (dired-other-frame): Only list directories. (Bug#15638)
705
706 2013-10-18 Michael Albinus <michael.albinus@gmx.de>
707
708 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
709 introduced on 2013-09-08, which results in an infinite loop
710 requesting a password.
711
712 2013-10-18 Glenn Morris <rgm@gnu.org>
713
714 * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
715
716 2013-10-18 Wilson Snyder <wsnyder@wsnyder.org>
717
718 Sync with upstream verilog-mode revision 1a6ecec7.
719 * progmodes/verilog-mode.el (verilog-mode-version): Update.
720 (verilog-mode-release-date): Remove.
721 (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
722 (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
723 (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
724 (verilog-auto-tieoff-ignore-regexp)
725 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
726 (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
727 (verilog-signals-with, verilog-dir-cache-preserving)
728 (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
729 Doc fixes.
730 (verilog-case-fold): New option, to control case folding in
731 regexp searches, bug597.
732 (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
733 (verilog-string-match-fold, verilog-in-paren-count)
734 (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
735 (verilog-at-close-struct-p): New functions.
736 (verilog-beg-block-re-ordered, verilog-extended-case-re)
737 (verilog-forward-sexp, verilog-set-auto-endcomments):
738 (verilog-leap-to-case-head): Handle "unique0" case.
739 (verilog-in-constraint-re): New constant.
740 (verilog-keywords, verilog-type-font-keywords):
741 Add some SystemVerilog 1800-2012 keywords.
742 (verilog-label-be): Remove unimplemented argument, bug669.
743 (verilog-batch-execute-func): When batch expanding clear
744 create-lockfiles to prevent spurious user locks when a file ends
745 up not changing.
746 (verilog-calculate-indent, verilog-calc-1)
747 (verilog-at-close-constraint-p, verilog-at-constraint-p)
748 (verilog-do-indent): Fix indentation of nested constraints
749 and structures.
750 (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
751 (verilog-auto-inst-param): Use verilog-string-match-fold.
752 (verilog-read-inst-module-matcher):
753 Fix AUTOINST on gate primitives with #1.
754 (verilog-read-decls): Fix double-declaring user-defined typed signals.
755 Reads all user-defined typed variables.
756 (verilog-read-defines): Fix reading definitions inside comments, bug647.
757 (verilog-signals-matching-regexp)
758 (verilog-signals-not-matching-regexp, verilog-auto):
759 Respect verilog-case-fold.
760 (verilog-diff-report): Fix line count.
761 (verilog-auto-assign-modport): Remove unused local `modi'.
762 (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
763 better handle multidimensional arrays.
764 Fix packed array ports misadding bit index in AUTOINST, bug637.
765 (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
766 to not double-declare existing outputs and inputs, respectively.
767 (verilog-template-map): Bind U to verilog-sk-uvm-component.
768 (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
769 (verilog-sk-uvm-component): New skeleton.
770 (verilog-submit-bug-report): Add verilog-case-fold,
771 remove verilog-mode-release-date.
772
773 2013-10-17 Barry O'Reilly <gundaetiapo@gmail.com>
774
775 * lisp/subr.el (sit-for): Call (input-pending-p t) so as to behave
776 as before.
777
778 2013-10-18 Reuben Thomas <rrt@sc3d.org>
779
780 * textmodes/remember.el (remember): set buffer-offer-save in
781 remember buffers (bug#13566).
782
783 2013-10-18 Daniel Colascione <dancol@dancol.org>
784
785 When evaluating forms in ielm, direct standard output to ielm
786 buffer. Add new ielm-return-for-effect command. Remove trailing
787 whitespace throughout.
788
789 * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
790 (ielm-return-for-effect): New command.
791 (ielm-send-input): Accept optional `for-effect' parameter.
792 (ielm-eval-input): Accept optional `for-effect' parameter.
793 Bind `standard-output' to stream we create using
794 `ielm-standard-output-impl'. Suppress printing result when
795 `for-effect'.
796 (ielm-standard-output-impl): New function.
797 (inferior-emacs-lisp-mode): Explain new features in documentation.
798
799 2013-10-17 Michael Albinus <michael.albinus@gmx.de>
800
801 Code cleanup.
802
803 * net/tramp.el (tramp-debug-message): Do not check for connection
804 buffer.
805 (tramp-message): Use "vector" connection property.
806
807 * net/tramp.el (tramp-rfn-eshadow-update-overlay)
808 (tramp-equal-remote, tramp-eshell-directory-change)
809 * net/tramp-adb.el (tramp-adb-handle-copy-file)
810 (tramp-adb-handle-rename-file)
811 * net/tramp-cmds.el (tramp-list-remote-buffers)
812 (tramp-cleanup-connection, tramp-cleanup-this-connection)
813 * net/tramp-compat.el (tramp-compat-process-running-p)
814 * net/tramp-ftp.el (tramp-ftp-file-name-handler)
815 * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
816 (tramp-gvfs-handle-rename-file)
817 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
818 (tramp-set-file-uid-gid)
819 * net/tramp-smb.el (tramp-smb-handle-copy-file)
820 (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
821 of `file-remote-p'.
822
823 * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
824 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
825 (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
826 (tramp-gw-open-network-stream): Suppress unrelated traces.
827
828 * net/tramp-adb.el (tramp-adb-maybe-open-connection)
829 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
830 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
831 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
832 connection property.
833
834 * net/tramp-cache.el (top): Suppress traces when reading
835 persistency file.
836
837 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
838 Refactor common code. Improve debug message.
839 (tramp-maybe-open-connection)
840 * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
841 connection buffer too early.
842
843 * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
844 from `tramp-smb-actions-with-acl'.
845 (tramp-smb-actions-set-acl): New defconst.
846 (tramp-smb-handle-copy-directory)
847 (tramp-smb-action-get-acl): New defun, renamed from
848 `tramp-smb-action-with-acl'.
849 (tramp-smb-action-set-acl): New defun.
850 (tramp-smb-handle-set-file-acl): Rewrite.
851
852 2013-10-17 Glenn Morris <rgm@gnu.org>
853
854 * indent.el (indent-rigidly): Fix 2013-10-08 change. (Bug#15635)
855
856 2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
857
858 * skeleton.el (skeleton-newline): Remove.
859 (skeleton-internal-1): Use (insert "\n") instead.
860
861 * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
862 let-bindings.
863
864 * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
865 forward-sexp-function while we redo its job (bug#15613).
866
867 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
868
869 * calc/calc-comb.el (math-prime-test): Don't assume large integers are
870 represented by lists.
871
872 2013-10-16 Glenn Morris <rgm@gnu.org>
873
874 * tmm.el (tmm--history): New dynamic variable.
875 (tmm-prompt): Use tmm--history in place of `history'. (Bug#15623)
876
877 2013-10-16 Michael Albinus <michael.albinus@gmx.de>
878
879 * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
880 (tramp-smb-errors): Add error messages.
881 (tramp-smb-actions-with-acl): New defconst.
882 (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
883 (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
884 (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
885 (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
886 (tramp-smb-get-stat-capability): Fix tests.
887
888 2013-10-16 Dima Kogan <dima@secretsauce.net> (tiny change)
889
890 * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
891 (bug#15580).
892
893 2013-10-16 Glenn Morris <rgm@gnu.org>
894
895 * ansi-color.el (ansi-color-drop-regexp):
896 Add 1J, 1K, 2K. (Bug#15617)
897
898 * files.el (hack-local-variables--warned-lexical): New.
899 (hack-local-variables):
900 Warn about misplaced lexical-binding. (Bug#15616)
901
902 * net/eww.el (eww-render): Always set eww-current-url,
903 and update header line. (Bug#15622)
904 (eww-display-html): ... Rather than just doing it here.
905
906 2013-10-15 Eli Zaretskii <eliz@gnu.org>
907
908 * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
909 menu navigations commands.
910
911 2013-10-14 Dima Kogan <dima@secretsauce.net> (tiny change)
912
913 * progmodes/subword.el (subword-capitalize): Be careful when
914 the search for [[:alpha:]] fails (bug#15580).
915
916 2013-10-14 Eli Zaretskii <eliz@gnu.org>
917
918 * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
919 to commands that scroll the menu.
920
921 2013-10-14 Dmitry Gutov <dgutov@yandex.ru>
922
923 * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
924 Handle methods ending with `?' and `!'.
925
926 2013-10-14 Akinori MUSHA <knu@iDaemons.org>
927
928 * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
929 `japanese-cp932' to `cp932' to fix the problem where saving a
930 source file written in Shift_JIS twice would end up having
931 `coding: japanese-cp932' which Ruby could not recognize.
932 (ruby-mode-set-encoding): Add support for encodings mapped to nil
933 in `ruby-encoding-map'.
934 (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
935 doesn't need to be explicitly declared in magic comment.
936 (ruby-encoding-map): Add type declaration for better customize UI.
937
938 2013-10-13 Glenn Morris <rgm@gnu.org>
939
940 * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
941 Occur buffers are read-only. http://bugs.debian.org/720775
942
943 * emacs-lisp/authors.el (authors-fixed-entries):
944 Comment out old alpha stuff.
945
946 2013-10-13 Dmitry Gutov <dgutov@yandex.ru>
947
948 * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
949 to `after-save-hook' instead of `before-save-hook'.
950 (ruby-mode-set-encoding): Use the value of coding system used to
951 write the file. Call `basic-save-buffer-1' after modifying the
952 buffer.
953
954 2013-10-13 Alan Mackenzie <acm@muc.de>
955
956 Fix indentation/fontification of Java enum with
957 "implements"/generic.
958
959 * progmodes/cc-engine.el (c-backward-over-enum-header):
960 Extracted from the three other places and enhanced to handle generics.
961 (c-inside-bracelist-p): Uses new function above.
962 * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
963 function above.
964 (c-font-lock-enum-tail): Uses new function above.
965
966 2013-10-13 Kenichi Handa <handa@gnu.org>
967
968 * international/mule-cmds.el (select-safe-coding-system): Remove a
969 superfluous condition in chekcing whether a coding system is safe
970 or not.
971
972 2013-10-13 Oleh Krehel <ohwoeowho@gmail.com>
973
974 * replace.el (how-many): Fix rstart and !rend case. (Bug#15589)
975
976 2013-10-13 Andreas Politz <politza@hochschule-trier.de>
977
978 * progmodes/sql.el (sql-add-product): Fix paren typo. (Bug#15435)
979
980 2013-10-13 Glenn Morris <rgm@gnu.org>
981
982 * menu-bar.el (menu-bar-update-buffers):
983 Unify Buffers menu prompt string. (Bug#15576)
984
985 * face-remap.el (text-scale-adjust): Doc fix. (Bug#15434)
986
987 * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
988 Add some entries.
989 (authors-fixed-entries): Use accented form of name.
990
991 2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
992
993 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
994 method calls (bug#15594).
995 (ruby-smie--args-separator-p): New function.
996 (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
997 recognize paren-free method calls.
998
999 * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
1000 internals of universal-argument.
1001
1002 2013-10-11 Eli Zaretskii <eliz@gnu.org>
1003
1004 * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
1005 Bind all menu-bar sequences to tty-menu-exit -- this pops down a
1006 dropped menu on second mouse click on the menu bar.
1007
1008 2013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1009
1010 * progmodes/sh-script.el: Provide simpl(e|istic) completion.
1011 (explicit-shell-file-name): Declare.
1012 (sh--vars-before-point, sh--cmd-completion-table): New functions.
1013 (sh-completion-at-point-function): New function.
1014 (sh-mode): Use it.
1015 (sh-smie--keyword-p): Remove unused argument.
1016 (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
1017 vars.
1018 (sh-set-shell): Always setup SMIE, even if we use the
1019 old indentation code.
1020
1021 2013-10-11 Dmitry Gutov <dgutov@yandex.ru>
1022
1023 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
1024 cases of ? and =.
1025 (ruby-smie-rules): Simplify the "do" rule. The cases when the
1026 predicate would return nil are almost non-existent.
1027 (ruby-smie--redundant-do-p): Include "until" and "for" statements.
1028
1029 * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
1030 cache also after commands that modify the buffer but don't move
1031 point.
1032
1033 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1034
1035 * env.el (substitute-env-in-file-name): New function.
1036 (substitute-env-vars): Extend the meaning of the optional arg.
1037
1038 2013-10-10 Eli Zaretskii <eliz@gnu.org>
1039
1040 * term/w32-win.el (dynamic-library-alist): Define separate lists
1041 of GIF DLLs for versions before and after 5.0.0 of giflib.
1042 (Bug#15531)
1043
1044 2013-10-10 João Távora <joaotavora@gmail.com>
1045
1046 * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
1047 not locked, use last revision and current source as
1048 defaults. (Bug#15569)
1049
1050 2013-10-10 Masatake YAMATO <yamato@redhat.com>
1051
1052 * menu-bar.el (menu-bar-open): Don't use popup-menu if
1053 menu-bar is hidden.
1054
1055 2013-10-10 Martin Rudalics <rudalics@gmx.at>
1056
1057 * window.el (pop-to-buffer-same-window): Fix doc-string.
1058 (Bug#15492)
1059
1060 2013-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
1061
1062 * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
1063
1064 2013-10-10 Andrei Chițu <andrei.chitu1@gmail.com> (tiny change)
1065
1066 * calendar/icalendar.el (icalendar-import-file):
1067 Fix interactive spec. (Bug#15482)
1068
1069 2013-10-10 Glenn Morris <rgm@gnu.org>
1070
1071 * desktop.el (desktop-save): Default to saving in .emacs.d,
1072 since PWD is no longer in desktop-path by default. (Bug#15319)
1073
1074 * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
1075 now that text mode has a menu with the same entry.
1076 (menu-bar-text-mode-auto-fill): Remove now unused func.
1077 * textmodes/text-mode.el (text-mode-map):
1078 Use auto-fill help text from menu-bar.el.
1079
1080 2013-10-10 John Anthony <john@jo.hnanthony.com>
1081
1082 * textmodes/text-mode.el (text-mode-map): Add a menu. (Bug#15562)
1083
1084 2013-10-09 Juri Linkov <juri@jurta.org>
1085
1086 * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
1087 instead of this-command-keys. Add universal-argument-more and
1088 universal-argument-minus to the list of prefix commands. (Bug#15568)
1089
1090 2013-10-09 Glenn Morris <rgm@gnu.org>
1091
1092 * vc/vc-svn.el (vc-svn-create-repo):
1093 Expand paths in file://... url. (Bug#15446)
1094
1095 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
1096 Add some entries.
1097 (authors): Remove unused local variables.
1098
1099 2013-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1100
1101 * profiler.el: Create a more coherent calltree from partial backtraces.
1102 (profiler-format): Hide the tail with `invisible' so that C-s can still
1103 find the hidden elements.
1104 (profiler-calltree-depth): Don't recurse so enthusiastically.
1105 (profiler-function-equal): New hash-table-test.
1106 (profiler-calltree-build-unified): New function.
1107 (profiler-calltree-build): Use it.
1108 (profiler-report-make-name-part): Indent the calltree less.
1109 (profiler-report-mode): Add visibility specs for profiler-format.
1110 (profiler-report-expand-entry, profiler-report-toggle-entry):
1111 Expand the whole subtree when provided with a prefix arg.
1112
1113 2013-10-09 Dmitry Gutov <dgutov@yandex.ru>
1114
1115 * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
1116 iuwu-mod token.
1117 (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
1118 hanging iuwu-mod token.
1119 (ruby-smie--forward-token): Do not include a dot after a token in
1120 that token.
1121 (ruby-smie--backward-token): Likewise.
1122
1123 2013-10-08 Juri Linkov <juri@jurta.org>
1124
1125 * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
1126 to isearch-other-control-char.
1127 (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
1128 and isearch-post-command-hook to post-command-hook.
1129 (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
1130 and isearch-post-command-hook from post-command-hook.
1131 (isearch-unread-key-sequence)
1132 (isearch-reread-key-sequence-naturally)
1133 (isearch-lookup-scroll-key, isearch-other-control-char)
1134 (isearch-other-meta-char): Remove functions.
1135 (isearch-pre-command-hook, isearch-post-command-hook):
1136 New functions based on isearch-other-meta-char rewritten
1137 relying on the new behavior of overriding-terminal-local-map
1138 that does not replace the local keymaps any more. (Bug#15200)
1139
1140 2013-10-08 Eli Zaretskii <eliz@gnu.org>
1141
1142 Support menus on text-mode terminals.
1143 * tmm.el (tmm-menubar): Adapt doc string to TTY menus
1144 functionality.
1145
1146 * tooltip.el (tooltip-mode): Don't error out on TTYs.
1147
1148 * menu-bar.el (popup-menu, popup-menu-normalize-position):
1149 Move here from mouse.el.
1150 (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
1151 and arrow keys.
1152 (tty-menu-navigation-map): New map for TTY menu navigation.
1153
1154 * loadup.el ("tooltip"): Load even if x-show-tip is not available.
1155
1156 * frame.el (display-mouse-p): Report text-mode mouse as available
1157 on w32.
1158 (display-popup-menus-p): Report availability if mouse is
1159 available; don't condition on window-system.
1160
1161 * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
1162 (tty-menu-selected-face): New faces.
1163
1164 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1165
1166 * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
1167 (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
1168 (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
1169 (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
1170 New constants.
1171 (lisp-mode-variables): New `elisp' argument.
1172 (emacs-lisp-mode): Use it.
1173 * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
1174 (lisp-font-lock-keywords-2): Move to lisp-mode.el.
1175
1176 * indent.el: Use lexical-binding.
1177 (indent-region): Add progress reporter.
1178 (tab-stop-list): Make it implicitly extend to infinity by repeating the
1179 last step.
1180 (indent--next-tab-stop): New function to implement this behavior.
1181 (tab-to-tab-stop, move-to-tab-stop): Use it.
1182
1183 2013-10-08 Teemu Likonen <tlikonen@iki.fi>
1184
1185 * indent.el (indent-rigidly--current-indentation): New function.
1186 (indent-rigidly-map): New var.
1187 (indent-rigidly): Use it to provide interactive mode (bug#8196).
1188
1189 2013-10-08 Bastien Guerry <bzg@gnu.org>
1190
1191 * register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
1192
1193 2013-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1194
1195 * progmodes/perl-mode.el: Use lexical-binding.
1196 Remove redundant :group args.
1197 (perl-nochange): Change default to be closer to other major modes's
1198 standard behavior.
1199 (perl-indent-line): Don't consider text on current line as a
1200 valid beginning of function from which to indent.
1201
1202 * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
1203 with more than one argument (bug#15538).
1204
1205 * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
1206
1207 * vc/pcvs.el: Use lexical-binding.
1208 (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
1209 environment of `eval'.
1210 (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
1211 than a list of expressions. Adjust callers.
1212 * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
1213
1214 2013-10-07 Dmitry Gutov <dgutov@yandex.ru>
1215
1216 * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
1217 case of the dot in a chained method call being on the following line.
1218
1219 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1220
1221 * electric.el (electric-indent-inhibit): New var.
1222 (electric-indent-post-self-insert-function): Use it.
1223 * progmodes/python.el (python-mode): Set it.
1224
1225 * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
1226 open braces.
1227
1228 * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
1229
1230 * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
1231 (css-mode): Use electric-indent-chars.
1232
1233 * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
1234 (font-lock-beg, font-lock-end): Move before first use.
1235 (nxml-mode): Use syntax-propertize-function.
1236 (nxml-after-change, nxml-after-change1): Adjust accordingly.
1237 (nxml-extend-after-change-region): Remove.
1238 * nxml/xmltok.el: Use lexical-binding.
1239 (xmltok-save): Use `declare'.
1240 (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
1241 * nxml/nxml-util.el: Use lexical-binding.
1242 (nxml-with-degradation-on-error, nxml-with-invisible-motion):
1243 Use `declare'.
1244 * nxml/nxml-ns.el: Use lexical-binding.
1245 (nxml-ns-save): Use `declare'.
1246 (nxml-ns-prefixes-for): Avoid add-to-list.
1247 * nxml/rng-match.el: Use lexical-binding.
1248 (rng--ipattern): Use cl-defstruct.
1249 (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
1250 (rng-cons-group-after, rng-subst-group-after)
1251 (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
1252 Use closures instead of `(lambda...).
1253
1254 2013-10-07 Michael Albinus <michael.albinus@gmx.de>
1255
1256 * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
1257 of BEG and END.
1258
1259 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
1260 Use `tramp-handle-insert-file-contents'.
1261 (tramp-gvfs-handle-insert-file-contents): Remove function.
1262
1263 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1264 Use `save-restriction' in order to keep markers.
1265
1266 * net/trampver.el: Update release number.
1267
1268 2013-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1269
1270 * progmodes/compile.el (compilation-parse-errors):
1271 Use compilation--put-prop.
1272 (compilation--ensure-parse): Check compilation-multiline.
1273
1274 * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
1275
1276 * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
1277 lexical-binding.
1278
1279 * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
1280
1281 * progmodes/ruby-mode.el: Fix recently added tests.
1282 (ruby-smie-grammar): Add - and +.
1283 (ruby-smie--redundant-do-p, ruby-smie--forward-id)
1284 (ruby-smie--backward-id): New functions.
1285 (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
1286 (ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
1287 any more.
1288
1289 2013-10-07 Leo Liu <sdl.web@gmail.com>
1290
1291 * register.el (register-preview-delay)
1292 (register-preview-functions): New variables.
1293 (register-read-with-preview, register-preview)
1294 (register-describe-oneline): New functions.
1295 (point-to-register, window-configuration-to-register)
1296 (frame-configuration-to-register, jump-to-register)
1297 (number-to-register, view-register, insert-register)
1298 (copy-to-register, append-to-register, prepend-to-register)
1299 (copy-rectangle-to-register): Use register-read-with-preview to
1300 read register. (Bug#15525)
1301
1302 2013-10-06 Dato Simó <dato@net.com.org.es> (tiny change)
1303
1304 * net/network-stream.el (network-stream-open-starttls): Don't add
1305 --insecure if it's already present, because that gnutls-cli
1306 rejects getting that parameter twice.
1307
1308 2013-10-06 Dmitry Gutov <dgutov@yandex.ru>
1309
1310 * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
1311 keyword, too.
1312
1313 2013-10-05 Dmitry Gutov <dgutov@yandex.ru>
1314
1315 * newcomment.el (comment-use-global-state): Change default value
1316 to t, mark obsolete (Bug#15251).
1317 (comment-beginning): In addition to `comment-to-syntax', check the
1318 value of `comment-use-global-state'.
1319
1320 2013-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
1321
1322 * progmodes/ruby-mode.el (ruby-use-smie): Change default.
1323 (ruby-comment-column): Follow the global default, by default.
1324 (ruby-smie-grammar): Add assignment syntax.
1325 (ruby-smie--implicit-semi-p): No implicit semi-colon after an
1326 open-paren, a comma, or a \.
1327 (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
1328 and line continuations.
1329 (ruby-smie-rules): Adjust handling of open-paren, now that it's never
1330 followed by implicit semi-colons. Add rule for string concatenation
1331 and for indentation at BOB.
1332 (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
1333
1334 * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
1335 calling next-sexp, since next-token may have skipped chars which
1336 next-sexp doesn't know should be skipped!
1337
1338 2013-10-05 Leo Liu <sdl.web@gmail.com>
1339
1340 * progmodes/octave.el (octave-send-region):
1341 Call compilation-forget-errors.
1342
1343 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1344
1345 * vc/vc-svn.el (vc-svn-find-admin-dir):
1346 * vc/vc-rcs.el (vc-rcs-find-admin-dir):
1347 * vc/vc-mtn.el (vc-mtn-find-admin-dir):
1348 * vc/vc-cvs.el (vc-cvs-find-admin-dir):
1349 * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
1350
1351 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1352
1353 * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
1354
1355 2013-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
1356
1357 * subr.el (read-passwd): Hide chars even when called within a context
1358 where after-change-functions is disabled (bug#15501).
1359 (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
1360 until we removed ourself from overriding-terminal-local-map.
1361
1362 2013-10-04 Leo Liu <sdl.web@gmail.com>
1363
1364 * progmodes/octave.el (inferior-octave-mode):
1365 Call compilation-forget-errors.
1366
1367 2013-10-04 Xue Fuqiao <xfq.free@gmail.com>
1368
1369 * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
1370
1371 2013-10-04 Michael Albinus <michael.albinus@gmx.de>
1372
1373 * net/secrets.el (secrets-create-collection): Add optional
1374 argument ALIAS. Use proper Label keyword. Append ALIAS as
1375 dbus-call-method argument. (Bug#15516)
1376
1377 2013-10-04 Leo Liu <sdl.web@gmail.com>
1378
1379 * progmodes/octave.el (inferior-octave-error-regexp-alist)
1380 (inferior-octave-compilation-font-lock-keywords): New variables.
1381 (compilation-error-regexp-alist)
1382 (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
1383 (inferior-octave-mode): Use compilation-shell-minor-mode.
1384
1385 2013-10-04 Jorgen Schaefer <forcer@forcix.cx>
1386
1387 * minibuffer.el (completion--replace): Be careful that `end' might be
1388 a marker.
1389
1390 2013-10-03 Daiki Ueno <ueno@gnu.org>
1391
1392 Add support for package signature checking.
1393 * emacs-lisp/package.el (url-http-file-exists-p)
1394 (epg-make-context, epg-context-set-home-directory)
1395 (epg-verify-string, epg-context-result-for)
1396 (epg-signature-status, epg-signature-to-string)
1397 (epg-check-configuration, epg-configuration)
1398 (epg-import-keys-from-file): Declare.
1399 (package-check-signature): New user option.
1400 (package-unsigned-archives): New user option.
1401 (package-desc): Add `signed' field.
1402 (package-load-descriptor): Set `signed' field if .signed file exists.
1403 (package--archive-file-exists-p): New function.
1404 (package--check-signature): New function.
1405 (package-install-from-archive): Check package signature.
1406 (package--download-one-archive): Check archive signature.
1407 (package-delete): Remove .signed file.
1408 (package-import-keyring): New command.
1409 (package-refresh-contents): Import default keyring.
1410 (package-desc-status): Add "unsigned" status.
1411 (describe-package-1, package-menu--print-info)
1412 (package-menu-mark-delete, package-menu--find-upgrades)
1413 (package-menu--status-predicate): Support "unsigned" status.
1414
1415 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1416
1417 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
1418 the new compilation scheme using the new byte-codes.
1419
1420 * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
1421 (byte-pophandler): New byte codes.
1422 (byte-goto-ops): Adjust accordingly.
1423 (byte-compile--use-old-handlers): New var.
1424 (byte-compile-catch): Use new byte codes depending on
1425 byte-compile--use-old-handlers.
1426 (byte-compile-condition-case--old): Rename from
1427 byte-compile-condition-case.
1428 (byte-compile-condition-case--new): New function.
1429 (byte-compile-condition-case): New function that dispatches depending
1430 on byte-compile--use-old-handlers.
1431 (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
1432 when we can.
1433
1434 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1435 Optimize under `condition-case' and `catch' if
1436 byte-compile--use-old-handlers is nil.
1437 (disassemble-offset): Handle new bytecodes.
1438
1439 2013-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
1440
1441 * subr.el (error): Use `declare'.
1442 (decode-char, encode-char): Use advertised-calling-convention instead
1443 of the docstring to discourage use of the `restriction' arg.
1444
1445 2013-10-03 Daiki Ueno <ueno@gnu.org>
1446
1447 * epg.el (epg-verify-file): Add a comment saying that it does not
1448 notify verification error as a return value nor a signal.
1449 (epg-verify-string): Ditto.
1450
1451 2013-10-02 Kevin Rodgers <kevin.d.rodgers@gmail.com>
1452
1453 * progmodes/compile.el (compilation-start): Try globbing the arg to
1454 `cd' (bug#15417).
1455
1456 2013-10-02 Michael Albinus <michael.albinus@gmx.de>
1457
1458 Sync with Tramp 2.2.8.
1459
1460 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
1461 * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
1462 * net/trampver.el: Update release number.
1463
1464 2013-10-01 Jan Djärv <jan.h.d@swipnet.se>
1465
1466 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1467 and default-process-coding-system for darwin only.
1468
1469 2013-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1470
1471 * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
1472
1473 2013-10-01 Mitchel Humpherys <mitch.special@gmail.com> (tiny change)
1474
1475 * vc/vc-git.el (vc-git-grep): Disable pager.
1476
1477 2013-10-01 Dmitry Gutov <dgutov@yandex.ru>
1478
1479 * emacs-lisp/package.el (package-buffer-info, describe-package-1):
1480 Use :url instead of :homepage, as per
1481 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
1482
1483 * newcomment.el (comment-beginning): When `comment-use-syntax' is
1484 non-nil, use `syntax-ppss' (Bug#15251).
1485
1486 2013-09-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1487
1488 * progmodes/octave.el (inferior-octave-startup-file):
1489 Prefer ~/.emacs.d/init_octave.m.
1490
1491 2013-09-29 Dmitry Gutov <dgutov@yandex.ru>
1492
1493 * emacs-lisp/package.el (package-desc-from-define):
1494 Accept additional arguments as plist, convert them to an alist and store
1495 them in the `extras' slot.
1496 (package-generate-description-file): Convert extras alist back to
1497 plist and append to the `define-package' form arguments.
1498 (package--alist-to-plist): New function.
1499 (package--ac-desc): Add `extras' slot.
1500 (package--add-to-archive-contents): Check if the archive-contents
1501 vector is long enough, and if it is, pass its `extras' slot value
1502 to `package-desc-create'.
1503 (package-buffer-info): Call `lm-homepage', pass the returned value
1504 to `package-desc-from-define'.
1505 (describe-package-1): Render the homepage button (Bug#13291).
1506
1507 * emacs-lisp/package-x.el (package-upload-buffer-internal):
1508 Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
1509
1510 2013-09-29 Jan Djärv <jan.h.d@swipnet.se>
1511
1512 * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
1513 and default-process-coding-system to utf-8-unix (Bug#15402).
1514
1515 2013-09-29 Xue Fuqiao <xfq.free@gmail.com>
1516
1517 * subr.el (looking-back): Do not recommend using looking-back.
1518
1519 2013-09-28 Alan Mackenzie <acm@muc.de>
1520
1521 Fix indentation/fontification of Java enum with "implements".
1522
1523 * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
1524 regexp which matches "implements", etc., in Java.
1525 * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
1526 specifier clauses coming after "enum".
1527 * progmodes/cc-fonts.el (c-font-lock-declarations)
1528 (c-font-lock-enum-tail): Check for extra specifier clauses coming
1529 after "enum".
1530
1531 2013-09-28 Jan Djärv <jan.h.d@swipnet.se>
1532
1533 * faces.el (region): Change ns_selection_color to
1534 ns_selection_fg_color, add ns_selection_bg_color.
1535
1536 2013-09-28 Leo Liu <sdl.web@gmail.com>
1537
1538 * progmodes/octave.el (inferior-octave-completion-table)
1539 (inferior-octave-completion-at-point): Minor tweaks.
1540
1541 * textmodes/ispell.el (ispell-lookup-words): Rename from
1542 lookup-words. (Bug#15460)
1543 (lookup-words): Obsolete.
1544 (ispell-complete-word, ispell-command-loop): All uses changed.
1545
1546 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1547
1548 * lisp/progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
1549 (octave-mode-menu): Add octave-send-buffer.
1550 (octave-send-buffer): New function.
1551
1552 2013-09-28 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1553
1554 * lisp/progmodes/octave.el (octave-mode-map): Add key binding for
1555 octave-lookfor.
1556 (octave-mode-menu): Add octave-lookfor.
1557 (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
1558 octave-lookfor.
1559 (octave-lookfor): New function.
1560
1561 2013-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1562
1563 * emacs-lisp/cl-macs.el:
1564 (cl--loop-destr-temps): Remove.
1565 (cl--loop-iterator-function): Rename from cl--loop-map-form and change
1566 its convention.
1567 (cl--loop-set-iterator-function): New function.
1568 (cl-loop): Adjust accordingly, so as not to use cl-subst.
1569 (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
1570 Bind `it' with `let' instead of substituting it with `cl-subst'.
1571 (cl--unused-var-p): New function.
1572 (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
1573 Eliminate some unused variable warnings (bug#15326).
1574
1575 2013-09-27 Tassilo Horn <tsdh@gnu.org>
1576
1577 * doc-view.el (doc-view-scale-reset): Rename from
1578 `doc-view-reset-zoom-level'.
1579 (doc-view-scale-adjust): New command.
1580 (doc-view-mode-map): Remap `text-scale-adjust' bindings to
1581 `doc-view-scale-adjust'.
1582
1583 2013-09-26 Tassilo Horn <tsdh@gnu.org>
1584
1585 * doc-view.el (doc-view-reset-zoom-level): New command.
1586 (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
1587 zoom commands (bug#15466).
1588
1589 2013-09-26 Kenichi Handa <handa@gnu.org>
1590
1591 * international/quail.el (quail-help): Make it not a command.
1592
1593 2013-09-26 Leo Liu <sdl.web@gmail.com>
1594
1595 * minibuffer.el (completion-all-sorted-completions): Make args
1596 optional as they are.
1597
1598 2013-09-25 Daniel Colascione <dancol@dancol.org>
1599
1600 * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
1601 specs are and that they're not evaluated.
1602
1603 2013-09-24 Sam Steingold <sds@gnu.org>
1604
1605 * midnight.el (clean-buffer-list-kill-regexps)
1606 (clean-buffer-list-kill-buffer-names): Update for the new Man
1607 buffer naming which includes the object name.
1608
1609 2013-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
1610
1611 * eshell/esh-cmd.el (eshell--sep-terms): New var.
1612 (eshell-parse-command, eshell-parse-pipeline): Use it since
1613 eshell-separate-commands requires a dynamic scoped var.
1614 Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
1615
1616 2013-09-23 Leo Liu <sdl.web@gmail.com>
1617
1618 * autoinsert.el (auto-insert-alist): Make the value of
1619 lexical-binding match its file setting.
1620
1621 2013-09-23 Juanma Barranquero <lekktu@gmail.com>
1622
1623 * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
1624
1625 * autoarg.el (autoarg-kp-digit-argument):
1626 * electric.el (Electric-command-loop):
1627 * kmacro.el (kmacro-step-edit-insert):
1628 Do not set universal-argument-num-events.
1629
1630 2013-09-22 Leo Liu <sdl.web@gmail.com>
1631
1632 * files.el (interpreter-mode-alist): Add octave.
1633
1634 2013-09-21 Alan Mackenzie <acm@muc.de>
1635
1636 C++: fontify identifier in declaration following "public:" correctly.
1637 * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
1638 to match "public", etc.
1639 (c-decl-prefix-re): Add ":" into the C++ value.
1640 * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
1641 bit. Add a check for a ":" preceded by "public", etc.
1642
1643 2013-09-21 Eli Zaretskii <eliz@gnu.org>
1644
1645 * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
1646 recognized by GDB 7.5 and later.
1647
1648 2013-09-21 Xue Fuqiao <xfq.free@gmail.com>
1649
1650 * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
1651
1652 2013-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1653
1654 * subr.el (internal--call-interactively): New const.
1655 (called-interactively-p): Use it (bug#3984).
1656
1657 2013-09-20 Xue Fuqiao <xfq.free@gmail.com>
1658
1659 * vc/pcvs.el (cvs-mode-ignore):
1660 * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
1661 Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
1662
1663 2013-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
1664
1665 * eshell/em-ls.el: Use advice. Remove redundant :group keywords.
1666 (eshell-ls-orig-insert-directory): Remove.
1667 (eshell-ls-unload-hook): Not a defcustom any more. Use advice-remove.
1668 (eshell-ls-use-in-dired): Use advice-add/remove.
1669 (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
1670 Add `orig-fun' arg for use in :around advice.
1671 Make it check (redundantly) eshell-ls-use-in-dired.
1672
1673 2013-09-19 Glenn Morris <rgm@gnu.org>
1674
1675 * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
1676
1677 * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
1678
1679 * emacs-lisp/eieio.el (class-parent): Undo previous change.
1680
1681 2013-09-19 Michael Albinus <michael.albinus@gmx.de>
1682
1683 * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
1684 (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
1685 (tramp-get-remote-python): New defuns.
1686 (tramp-get-remote-uid-with-perl)
1687 (tramp-get-remote-gid-with-perl): New defuns. Perl code
1688 contributed by yary <not.com@gmail.com> (tiny change).
1689 (tramp-get-remote-uid-with-python)
1690 (tramp-get-remote-gid-with-python): New defuns. Python code
1691 contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
1692 (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
1693
1694 2013-09-19 Glenn Morris <rgm@gnu.org>
1695
1696 * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
1697
1698 * eshell/em-unix.el (eshell-remove-entries):
1699 Rename argument to avoid name-clash with global `top-level'.
1700
1701 * eshell/esh-proc.el (eshell-kill-process-function):
1702 Remove eshell-reset-after-proc from eshell-kill-hook if present.
1703 (eshell-reset-after-proc): Remove unused arg `proc'.
1704
1705 * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
1706 (directory-files-and-attributes): Mark unused arg.
1707
1708 * eshell/em-unix.el (eshell-remove-entries):
1709 Remove unused arg `path'. Update callers.
1710
1711 * eshell/em-hist.el (eshell-hist-parse-arguments):
1712 Remove unused arg `silent'. Update callers.
1713
1714 * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
1715 Fix (f)boundp mix-up.
1716
1717 * eshell/em-smart.el (eshell-smart-scroll-window)
1718 (eshell-disable-after-change):
1719 * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
1720
1721 2013-09-18 Alan Mackenzie <acm@muc.de>
1722
1723 Fix fontification of type when followed by "const".
1724 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
1725 "known" types from fontification.
1726
1727 2013-09-18 Glenn Morris <rgm@gnu.org>
1728
1729 * emacs-lisp/chart.el (x-display-color-cells): Declare.
1730 (chart-face-list): Drop Emacsen without display-color-p.
1731
1732 * net/eww.el (libxml-parse-html-region): Declare.
1733 (eww-display-html): Explicit error if no libxml2 support.
1734
1735 * doc-view.el (doc-view-mode): Silence --without-x compilation.
1736
1737 * image.el (image-type-from-buffer, image-multi-frame-p):
1738 Remove --without-x warning/error.
1739
1740 * mouse.el (mouse-yank-primary):
1741 * term.el (term-mouse-paste):
1742 Reorder to silence --without-x compilation.
1743
1744 * mpc.el (doc-view-mode): Silence --without-x compilation.
1745
1746 * mail/rmailmm.el (rmail-mime-set-bulk-data):
1747 Silence --without-x compilation.
1748
1749 * progmodes/gud.el (gud-find-file, gud-mode):
1750 Silence --without-x compilation.
1751 (tooltip-mode): Declare.
1752
1753 * wdired.el (dired-backup-overwrite): Remove declaration.
1754 (wdired-mode-map): Add doc string.
1755
1756 * custom.el (x-get-resource): Declare.
1757
1758 * eshell/em-glob.el (ange-cache):
1759 * eshell/em-unix.el (ange-cache): Declare.
1760
1761 * faces.el (x-display-list, x-open-connection, x-get-resource):
1762 Declare.
1763
1764 * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
1765 (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
1766 Declare.
1767
1768 * frame.el (x-display-grayscale-p, x-display-name): Declare.
1769
1770 * net/gnutls.el (gnutls-log-level): Declare.
1771
1772 * net/shr.el (image-size, image-animate): Declare.
1773
1774 * simple.el (font-info): Declare.
1775
1776 * subr.el (x-popup-dialog): Declare.
1777
1778 * term/common-win.el (x-select-enable-primary)
1779 (x-last-selected-text-primary, x-last-selected-text-clipboard):
1780 Declare.
1781
1782 * term/ns-win.el (x-handle-args): Declare.
1783
1784 * term/x-win.el (x-select-enable-clipboard): Declare.
1785
1786 * term/w32-win.el (create-default-fontset): Declare.
1787
1788 * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
1789 Declare.
1790
1791 * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
1792 (fit-frame-to-buffer): Explicit error if --without-x.
1793 (mouse-autoselect-window-select): Silence compiler.
1794
1795 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
1796
1797 * eshell/em-cmpl.el (eshell-complete-parse-arguments):
1798 * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
1799 * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
1800 * eshell/esh-util.el (eshell-sublist):
1801 Remove unused local variables.
1802
1803 * eshell/esh-io.el (x-select-enable-clipboard): Declare.
1804
1805 * textmodes/two-column.el: Make 2C-split work for --without-x.
1806 (scroll-bar-columns): Autoload.
1807 (top-level): Require fringe when compiling.
1808
1809 2013-09-18 Leo Liu <sdl.web@gmail.com>
1810
1811 * subr.el (add-hook): Robustify to handle closure as well.
1812
1813 2013-09-17 Glenn Morris <rgm@gnu.org>
1814
1815 * simple.el (messages-buffer-mode-map): Unbind "g".
1816
1817 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1818
1819 * help-mode.el (help-mode-finish): Use derived-mode-p.
1820 Remove obsolete highlighting.
1821
1822 * play/life.el (life-mode): Use define-derived-mode. Derive from
1823 special-mode.
1824 (life): Let-bind inhibit-read-only.
1825 (life-setup): Avoid `setq'. Use `life-mode'.
1826
1827 * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
1828 which should not be needed any more.
1829 (package-menu-refresh, package-menu-describe-package): Use user-error.
1830
1831 * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
1832 (eshell-post-rewrite-command-hook): Make obsolete.
1833 (eshell-parse-command): Simplify.
1834 (eshell-structure-basic-command): Remove unused arg `vocal-test'.
1835 (eshell--cmd): Declare.
1836 (eshell-parse-pipeline): Remove unused var `final-p'.
1837 Pass a dynvar to eshell-post-rewrite-command-hook.
1838 Implement the new eshell-post-rewrite-command-function.
1839 (eshell-invoke-directly): Remove unused arg `input'.
1840 * eshell/esh-io.el (eshell-io-initialize):
1841 Use eshell-post-rewrite-command-function (bug#15399).
1842 (eshell--apply-redirections): Rename from eshell-apply-redirections;
1843 adjust to new calling convention.
1844 (eshell-create-handles): Rename args to avoid clashing with dynvar
1845 `standard-output'.
1846
1847 2013-09-17 Glenn Morris <rgm@gnu.org>
1848
1849 * simple.el (messages-buffer-mode): New major mode.
1850 (messages-buffer): New function.
1851 * startup.el (normal-top-level): Switch mode of *Messages* buffer.
1852 * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
1853 (ert-run-test): Use `messages-buffer' function.
1854 (ert--force-message-log-buffer-truncation): Ignore read-only.
1855 * help.el (view-echo-area-messages): Use `messages-buffer' function.
1856 * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
1857
1858 2013-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
1859
1860 * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
1861
1862 * abbrev.el (abbrev--check-chars): Fix thinko (bug#15329).
1863
1864 2013-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
1865
1866 * icomplete.el (icomplete-in-buffer): New var.
1867 (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
1868 vars and replace them with functions.
1869 (icomplete-minibuffer-setup): Adjust accordingly.
1870 (icomplete--completion-table, icomplete--completion-predicate)
1871 (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
1872 New functions.
1873 (icomplete-forward-completions, icomplete-backward-completions)
1874 (icomplete-simple-completing-p, icomplete-exhibit)
1875 (icomplete-completions): Use them.
1876 (icomplete--in-region-buffer): New var.
1877 (icomplete--in-region-setup): New function.
1878 (icomplete-mode): Use it.
1879
1880 * eshell/esh-opt.el: Fix last change to set lexical-vars properly
1881 (bug#15379).
1882 (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
1883 return args and options.
1884 (eshell-eval-using-options): Use the new return value of
1885 eshell--do-opts to set the options's vars in their scope.
1886 (eshell--set-option): Rename from eshell-set-option.
1887 Add arg `opt-vals'.
1888 (eshell--process-option): Rename from eshell-process-option.
1889 Add arg `opt-vals'.
1890 (eshell--process-args): Use an `opt-vals' alist to store the options's
1891 values during their processing and return them additionally to the
1892 remaining args.
1893
1894 2013-09-15 Dmitry Gutov <dgutov@yandex.ru>
1895
1896 * progmodes/ruby-mode.el (ruby-operator-re): Consider line
1897 continuation character an operator, as far as indentation is
1898 concerned (Bug#15369).
1899
1900 2013-09-15 Martin Rudalics <rudalics@gmx.at>
1901
1902 * window.el (window--state-put-2): Don't process buffer state
1903 when buffer doesn't exist any more (Bug#15382).
1904
1905 2013-09-15 Glenn Morris <rgm@gnu.org>
1906
1907 * eshell/em-unix.el (eshell/rm):
1908 Make -f ignore missing files. (Bug#15373)
1909
1910 * eshell/esh-cmd.el (eshell--local-vars): New variable. (Bug#15372)
1911 (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
1912 * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
1913
1914 2013-09-14 Glenn Morris <rgm@gnu.org>
1915
1916 * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
1917
1918 2013-09-13 Glenn Morris <rgm@gnu.org>
1919
1920 * dired-x.el (dired-guess-shell-alist-user): Doc fix.
1921 (dired-guess-default): Make `file' available in the env. (Bug#15363)
1922
1923 2013-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1924
1925 * frame.el (x-focus-frame): Mark as declared in frame.c.
1926
1927 2013-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
1928
1929 * ls-lisp.el: Use advice-add.
1930 (original-insert-directory): Remove.
1931 (ls-lisp--insert-directory): Rename from insert-directory; add
1932 `orig-fun' argument.
1933 (insert-directory): Advise.
1934
1935 2013-09-13 Eli Zaretskii <eliz@gnu.org>
1936
1937 * term.el (term-emulate-terminal): Decode the command string
1938 before passing it to term-command-hook. (Bug#15337)
1939
1940 2013-09-13 Glenn Morris <rgm@gnu.org>
1941
1942 * eshell/esh-util.el (ange-cache): Move declaration earlier.
1943
1944 * eshell/esh-ext.el (eshell-search-path): Declare.
1945
1946 * eshell/em-prompt.el (eshell/pwd): Autoload it.
1947 Otherwise an error occurs if eshell-dirs module not loaded.
1948
1949 * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
1950
1951 2013-09-13 Michael Albinus <michael.albinus@gmx.de>
1952
1953 * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
1954 `tramp-check-proper-host'. Check for a valid method name.
1955
1956 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
1957 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
1958 * net/tramp-sh.el (tramp-maybe-open-connection):
1959 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
1960
1961 * net/tramp-cache.el (tramp-cache-print): Don't print text properties
1962 also for hash values.
1963
1964 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1965
1966 * term/ns-win.el (parameters): Don't declare as dynamic.
1967 (before-make-frame-hook): Don't add ineffective function.
1968
1969 * eshell/*.el: Use lexical-binding (bug#15231).
1970
1971 2013-09-12 Kenichi Handa <handa@gnu.org>
1972
1973 * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
1974
1975 2013-09-12 Glenn Morris <rgm@gnu.org>
1976
1977 * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
1978 (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
1979
1980 * subr.el (do-after-load-evaluation): Also give compiler warnings
1981 when obsolete files are used (except by obsolete files).
1982
1983 * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
1984 in the status output, assume `filename' is the first. (Bug#15322)
1985
1986 * vc/vc.el (vc-deduce-fileset): Doc fix.
1987
1988 * calc/calc-help.el (Info-goto-node):
1989 * progmodes/cperl-mode.el (Info-find-node):
1990 * vc/ediff.el (Info-goto-node): Update declarations.
1991
1992 * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
1993
1994 * vc/vc-bzr.el (vc-compilation-mode): Declare.
1995 (vc-bzr-pull): Require vc-dispatcher.
1996 * vc/vc-git.el (vc-compilation-mode): Declare.
1997 (vc-git-pull): Require vc-dispatcher.
1998
1999 * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
2000
2001 * progmodes/octave.el (help-button-action): Declare.
2002
2003 * shell.el (shell-directory-tracker): Output error as a message
2004 rather than just returning it as a string.
2005 (shell-process-pushd): Remove useless use of message.
2006
2007 * dframe.el (dframe-timer-fn):
2008 * files.el (dir-locals-read-from-file):
2009 * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
2010 (mpc-format):
2011 * reveal.el (reveal-post-command):
2012 * saveplace.el (load-save-place-alist-from-file):
2013 * shell.el (shell-resync-dirs):
2014 * w32-common-fns.el (x-get-selection-value):
2015 * emacs-lisp/copyright.el (copyright-find-copyright):
2016 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2017 * emulation/tpu-edt.el (tpu-copy-keyfile):
2018 * play/bubbles.el (bubbles--mark-neighbourhood):
2019 * progmodes/executable.el
2020 (executable-make-buffer-file-executable-if-script-p):
2021 * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
2022
2023 2013-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2024
2025 Cleanup Eshell to rely less on dynamic scoping.
2026 * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
2027 last-value, and ext-command here. Bind `args' closer to `body'.
2028 (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
2029 (eshell--args): Declare new dynamic var.
2030 (eshell-do-opt): Add argument `args'. Bind our own usage-msg,
2031 last-value, and ext-command. Pass `args' to `body'.
2032 (eshell-process-args): Bind eshell--args.
2033 (eshell-set-option): Use eshell--args.
2034 * eshell/eshell.el (eshell): Use derived-mode-p.
2035 * eshell/esh-var.el (eshell-parse-variable): Use backquote.
2036 (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
2037 (eshell-glob-function): Declare.
2038 * eshell/esh-util.el: Require cl-lib.
2039 (eshell-read-hosts-file): Avoid add-to-list.
2040 * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
2041 `err'.
2042 * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
2043 Declare.
2044 (eshell/diff): Remove unused var `err'.
2045 * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
2046 `killflag'.
2047 * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
2048 * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
2049 first use.
2050 * eshell/em-glob.el (eshell-glob-matches, message-shown):
2051 Move declaration before first use.
2052 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
2053 * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
2054 rely on cl-return.
2055
2056 2013-09-12 Glenn Morris <rgm@gnu.org>
2057
2058 * term/ns-win.el (global-map): Remove binding for ispell-next,
2059 deleted 1999-05-29. (Bug#15357)
2060
2061 2013-09-11 Glenn Morris <rgm@gnu.org>
2062
2063 * echistory.el (electric-command-history): Remove call to deleted func.
2064
2065 * play/landmark.el (landmark-mode): Fix typos.
2066
2067 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
2068 Check cvs-sort-ignore-file is bound.
2069
2070 * savehist.el: No need for cl when compiling on Emacs.
2071
2072 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2073
2074 * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
2075 (bug#15338).
2076 (eshell-self-insert-command, eshell-send-invisible):
2077 Remove unused argument.
2078 (eshell-handle-control-codes): Remove unused var `orig'.
2079 Avoid delete-backward-char.
2080
2081 * files.el (set-auto-mode): Simplify a bit further.
2082
2083 2013-09-11 Glenn Morris <rgm@gnu.org>
2084
2085 * files.el (interpreter-mode-alist): Remove \\` \\' parts.
2086 (set-auto-mode): Don't regexp-quote elements.
2087 * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
2088 * progmodes/cc-mode.el (interpreter-mode-alist):
2089 * progmodes/ruby-mode.el (interpreter-mode-alist):
2090 Revert previous change.
2091
2092 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2093
2094 * play/snake.el (snake-mode):
2095 * play/mpuz.el (mpuz-mode):
2096 * play/landmark.el (lm-mode):
2097 * play/blackbox.el (blackbox-mode):
2098 * play/5x5.el (5x5-mode):
2099 * obsolete/options.el (Edit-options-mode):
2100 * net/quickurl.el (quickurl-list-mode):
2101 * net/newst-treeview.el (newsticker-treeview-mode):
2102 * mail/rmailsum.el (rmail-summary-mode):
2103 * mail/mspools.el (mspools-mode):
2104 * locate.el (locate-mode):
2105 * ibuffer.el (ibuffer-mode):
2106 * emulation/ws-mode.el (wordstar-mode):
2107 * emacs-lisp/debug.el (debugger-mode):
2108 * array.el (array-mode):
2109 * net/eudc.el (eudc-mode): Use define-derived-mode.
2110 * net/mairix.el (mairix-searches-mode-font-lock-keywords):
2111 Move initialization into declaration.
2112 (mairix-searches-mode): Use define-derived-mode.
2113 * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
2114 (eudc-edit-hotlist): Use dolist.
2115 * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
2116 (Man-mode): Use define-derived-mode.
2117 * info.el (Info-edit-mode-map): Rename from Info-edit-map.
2118 (Info-edit-mode): Use define-derived-mode.
2119 (Info-cease-edit): Use Info-mode.
2120 * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
2121 into declaration.
2122 (eshell-mode): Use define-derived-mode.
2123 * chistory.el (command-history-mode-map): Rename from
2124 command-history-map.
2125 (command-history-mode): Use define-derived-mode.
2126 (Command-history-setup): Remove function.
2127 * calc/calc.el (calc-trail-mode-map): New var.
2128 (calc-trail-mode): Use define-derived-mode.
2129 (calc-trail-buffer): Set calc-main-buffer manually.
2130 * bookmark.el (bookmark-insert-annotation): New function.
2131 (bookmark-edit-annotation): Use it.
2132 (bookmark-edit-annotation-mode): Make it a proper major mode.
2133 (bookmark-send-edited-annotation): Use derived-mode-p.
2134 * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
2135 closer to its ideal place. Use \' to match EOS.
2136
2137 * profiler.el (profiler-calltree-find): Use function-equal.
2138
2139 2013-09-10 Glenn Morris <rgm@gnu.org>
2140
2141 * files.el (interpreter-mode-alist): Convert to regexps.
2142 (set-auto-mode): Adapt for this. (Bug#15306)
2143 * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
2144 Comment out unused variable.
2145 * progmodes/cc-mode.el (interpreter-mode-alist):
2146 * progmodes/python.el (interpreter-mode-alist):
2147 * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
2148 * progmodes/sh-script.el (sh-set-shell):
2149 No longer use interpreter-mode-alist to get list of shells.
2150
2151 * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
2152
2153 2013-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2154
2155 * simple.el: Use set-temporary-overlay-map for universal-argument.
2156 (universal-argument-map): Don't use default-bindings (bug#15317).
2157 Bind switch-frame explicitly. Replace universal-argument-minus with
2158 a conditional binding.
2159 (universal-argument-num-events, saved-overriding-map): Remove.
2160 (restore-overriding-map): Remove.
2161 (universal-argument--mode): Rename from save&set-overriding-map,
2162 and rewrite.
2163 (universal-argument, universal-argument-more, negative-argument)
2164 (digit-argument): Adjust accordingly.
2165 (universal-argument-minus): Remove.
2166 (universal-argument-other-key): Remove.
2167
2168 * subr.el (with-demoted-errors): Add `format' argument.
2169
2170 2013-09-10 Michael Albinus <michael.albinus@gmx.de>
2171
2172 * net/tramp.el (tramp-cleanup): Remove. Functionality added to
2173 `tramp-cleanup-connection'.
2174
2175 * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
2176 parameters KEEP-DEBUG and KEEP-PASSWORD.
2177
2178 * net/tramp.el (tramp-file-name-handler):
2179 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2180 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
2181 (tramp-maybe-open-connection):
2182 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2183 Use `tramp-cleanup-connection'.
2184
2185 * net/tramp-sh.el (tramp-maybe-open-connection):
2186 Catch 'uname-changed inside the progress reporter.
2187
2188 2013-09-10 Glenn Morris <rgm@gnu.org>
2189
2190 * simple.el (read-minibuffer): Unbreak it. (Bug#15318)
2191
2192 * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
2193 returns "alternate access method" in mode (eg "-rw-r--r--.").
2194
2195 2013-09-08 Glenn Morris <rgm@gnu.org>
2196
2197 * saveplace.el (load-save-place-alist-from-file):
2198 Demote errors. (Bug#15305)
2199
2200 2013-09-08 Michael Albinus <michael.albinus@gmx.de>
2201
2202 Improve compatibility with older Emacsen, and XEmacs.
2203
2204 * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
2205 only if it is bound. It isn't for XEmacs.
2206 (with-tramp-progress-reporter): Do not let-bind `result'.
2207 This yields to scoping errors in XEmacs.
2208 (tramp-handle-make-auto-save-file-name): New function, moved from
2209 tramp-sh.el.
2210
2211 * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
2212 for `make-auto-save-file-name'.
2213 (tramp-adb--gnu-switches-to-ash):
2214 Use `tramp-compat-replace-regexp-in-string'.
2215
2216 * net/tramp-cache.el (tramp-cache-print): Call
2217 `substring-no-properties' only if it is bound. It isn't for XEmacs.
2218
2219 * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
2220 bound. It isn't for XEmacs.
2221
2222 * net/tramp-compat.el (tramp-compat-copy-file):
2223 Catch `wrong-number-of-arguments' error.
2224 (tramp-compat-replace-regexp-in-string): New defun.
2225
2226 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
2227 for `make-auto-save-file-name'.
2228 (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
2229 `copy-file'.
2230 (tramp-gvfs-file-gvfs-monitor-file-process-filter)
2231 (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
2232 (tramp-synce-list-devices): Use `push' instead of `pushnew'.
2233
2234 * net/tramp-gw.el (tramp-gw-open-network-stream):
2235 Use `tramp-compat-replace-regexp-in-string'.
2236
2237 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
2238 Call `tramp-handle-make-auto-save-file-name'.
2239 (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
2240 (tramp-sh-file-gvfs-monitor-dir-process-filter)
2241 (tramp-sh-file-inotifywait-process-filter):
2242 Use `tramp-compat-replace-regexp-in-string'.
2243 (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
2244
2245 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
2246 for `make-auto-save-file-name'.
2247 (tramp-smb-handle-copy-directory):
2248 Call `tramp-compat-replace-regexp-in-string'.
2249 (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
2250 (tramp-smb-handle-copy-file): Improve error message.
2251 (tramp-smb-handle-rename-file): Rename directly only in case
2252 `newname' does not exist yet. This is a restriction of smbclient.
2253 (tramp-smb-maybe-open-connection): Rerun the function only when
2254 `auth-sources' is non-nil.
2255
2256 2013-09-08 Kenichi Handa <handa@gnu.org>
2257
2258 * international/characters.el: Set category "^" (Combining) for
2259 more characters.
2260
2261 2013-09-07 Alan Mackenzie <acm@muc.de>
2262
2263 Correctly fontify Java class constructors.
2264 * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
2265 in Java Mode.
2266 (c-recognize-typeless-decls): Set the Java value to t.
2267 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
2268 While handling a "(", add a check for, effectively, Java, and handle a
2269 "typeless" declaration there.
2270
2271 2013-09-07 Roland Winkler <winkler@gnu.org>
2272
2273 * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
2274 field subtitle for entry type book.
2275
2276 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2277
2278 * minibuffer.el: Make minibuffer-complete call completion-in-region
2279 rather than other way around.
2280 (completion--some, completion-pcm--find-all-completions):
2281 Don't delay signals when debugging.
2282 (minibuffer-completion-contents): Beware fields within the
2283 minibuffer contents.
2284 (completion-all-sorted-completions): Use defvar-local.
2285 (completion--do-completion, completion--cache-all-sorted-completions)
2286 (completion-all-sorted-completions, minibuffer-force-complete):
2287 Add args `beg' and `end'.
2288 (completion--in-region-1): New fun, extracted from minibuffer-complete.
2289 (minibuffer-complete): Use completion-in-region.
2290 (completion-complete-and-exit): New fun, extracted from
2291 minibuffer-complete-and-exit.
2292 (minibuffer-complete-and-exit): Use it.
2293 (completion--complete-and-exit): Rename from
2294 minibuffer--complete-and-exit.
2295 (completion-in-region--single-word): New function, extracted from
2296 minibuffer-complete-word.
2297 (minibuffer-complete-word): Use it.
2298 (display-completion-list): Make `common-substring' argument obsolete.
2299 (completion--in-region): Call completion--in-region-1 instead of
2300 minibuffer-complete.
2301 (completion-help-at-point): Pass boundaries to
2302 minibuffer-completion-help as args rather than via an overlay.
2303 (completion-pcm--string->pattern): Use `any-delim'.
2304 (completion-pcm--optimize-pattern): New function.
2305 (completion-pcm--pattern->regex): Handle `any-delim'.
2306 * icomplete.el (icomplete-forward-completions)
2307 (icomplete-backward-completions, icomplete-completions):
2308 Adjust calls to completion-all-sorted-completions and
2309 completion--cache-all-sorted-completions.
2310 (icomplete-with-completion-tables): Default to t.
2311 * emacs-lisp/crm.el (crm--current-element): Rename from
2312 crm--select-current-element. Don't put an overlay but return the
2313 boundaries instead.
2314 (crm--completion-command): Take two new args to bind to the boundaries.
2315 (crm-completion-help): Adjust accordingly.
2316 (crm-complete): Use completion-in-region.
2317 (crm-complete-word): Use completion-in-region--single-word.
2318 (crm-complete-and-exit): Use completion-complete-and-exit.
2319
2320 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2321
2322 * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
2323 than dynamically.
2324
2325 2013-09-06 Juri Linkov <juri@jurta.org>
2326
2327 * info.el (Info-display-images-node): When image file doesn't exist
2328 display text version of the image if it's provided in the Info file.
2329 Otherwise, display the location of missing image from SRC attribute.
2330 Add help-echo text property from ALT attribute. (Bug#15279)
2331
2332 2013-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
2333
2334 * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
2335 (edit-abbrevs-mode): Use define-derived-mode.
2336
2337 * epa.el (epa--encode-coding-string, epa--decode-coding-string)
2338 (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
2339 that it's defined.
2340 (epa-key-list-mode, epa-key-mode, epa-info-mode):
2341 Use define-derived-mode.
2342
2343 * epg.el (epg-start-encrypt): Minor CSE simplification.
2344
2345 2013-09-06 William Xu <william.xwl@gmail.com>
2346
2347 * arc-mode.el: Add support for 7za (bug#15264).
2348 (archive-7z-program): New var.
2349 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
2350 (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
2351 (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
2352
2353 2013-09-06 Michael Albinus <michael.albinus@gmx.de>
2354
2355 Remove URL syntax.
2356
2357 * net/tramp.el (tramp-syntax, tramp-prefix-format)
2358 (tramp-postfix-method-format, tramp-prefix-ipv6-format)
2359 (tramp-postfix-ipv6-format, tramp-prefix-port-format)
2360 (tramp-postfix-host-format, tramp-file-name-regexp)
2361 (tramp-completion-file-name-regexp)
2362 (tramp-completion-dissect-file-name)
2363 (tramp-handle-substitute-in-file-name): Remove 'url case.
2364 (tramp-file-name-regexp-url)
2365 (tramp-completion-file-name-regexp-url): Remove constants.
2366
2367 2013-09-06 Glenn Morris <rgm@gnu.org>
2368
2369 * replace.el (replace-string): Doc fix re start/end. (Bug#15275)
2370
2371 2013-09-05 Dmitry Gutov <dgutov@yandex.ru>
2372
2373 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
2374 keywords" below "here-doc beginnings" (Bug#15270).
2375
2376 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2377
2378 * subr.el (pop): Use `car-safe'.
2379 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
2380 to detect unused `pop' return value.
2381
2382 * progmodes/python.el (python-nav-beginning-of-block): Remove unused
2383 var `block-regexp'.
2384 (python-nav--forward-sexp): Remove unused var `re-search-fn'.
2385 (python-fill-string): Remove unused var `marker'.
2386 (python-skeleton-add-menu-items): Remove unused var `items'.
2387
2388 * international/mule-cmds.el: Require CL.
2389 (find-coding-systems-for-charsets): Avoid add-to-list.
2390 (sanitize-coding-system-list): New function, extracted from
2391 select-safe-coding-system-interactively.
2392 (select-safe-coding-system-interactively): Use it.
2393 (read-input-method-name): Accept symbols for `default'.
2394
2395 * emacs-lisp/advice.el (defadvice): Add indent rule.
2396
2397 2013-09-05 Daniel Hackney <dan@haxney.org>
2398
2399 * dired-x.el:
2400 * net/ange-ftp.el:
2401 * net/browse-url.el:
2402 * net/dbus.el:
2403 * net/eudc.el:
2404 * net/eudcb-ldap.el:
2405 * net/eww.el:
2406 * net/imap.el:
2407 * printing.el:
2408 * vc/ediff-diff.el:
2409 * vc/ediff-init.el:
2410 * vc/ediff-merg.el:
2411 * vc/ediff-mult.el:
2412 * vc/ediff-util.el:
2413 * vc/ediff-wind.el:
2414 * vc/ediff.el:
2415 * vc/emerge.el:
2416 * vc/pcvs.el:
2417 * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
2418 byte compiler. Remove some unused let-bound variables.
2419
2420 2013-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
2421
2422 * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
2423 a "ref-cell", since it gets better optimized (bug#14883).
2424
2425 2013-09-05 Glenn Morris <rgm@gnu.org>
2426
2427 * progmodes/cc-awk.el (c-forward-sws): Declare.
2428
2429 2013-09-04 Glenn Morris <rgm@gnu.org>
2430
2431 * generic-x.el [rul-generic-mode]: Require cc-mode.
2432 (c++-mode-syntax-table): Declare.
2433 (rul-generic-mode-syntax-table): Init in the defvar.
2434
2435 2013-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2436
2437 * vc/vc-dispatcher.el (vc-run-delayed): New macro.
2438 (vc-do-command, vc-set-async-update):
2439 * vc/vc-mtn.el (vc-mtn-dir-status):
2440 * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
2441 (vc-hg-pull, vc-hg-merge-branch):
2442 * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
2443 (vc-git-merge-branch):
2444 * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
2445 (vc-cvs-dir-status-files):
2446 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
2447 (vc-bzr-dir-status-files):
2448 * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
2449 * vc/vc-annotate.el: Use lexical-binding.
2450 (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
2451 (vc-sentinel-movepoint): Declare.
2452 (vc-annotate): Don't use `goto-line'.
2453 * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
2454 (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
2455 (vc-sentinel-movepoint): Declare.
2456 * vc/vc-svn.el: Use lexical-binding.
2457 (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
2458 * vc/vc-sccs.el:
2459 * vc/vc-rcs.el: Use lexical-binding.
2460
2461 * autorevert.el (auto-revert-notify-handler): Explicitly ignore
2462 `deleted'. Don't drop errors silently.
2463
2464 * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
2465
2466 2013-09-04 Xue Fuqiao <xfq.free@gmail.com>
2467
2468 * vc/vc.el (vc-ignore): Rewrite.
2469 (vc-default-ignore): New function.
2470 (vc-default-ignore-completion-table): Use find-ignore-file.
2471
2472 * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
2473 * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
2474 * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
2475 Remove. Most code moved to vc.el.
2476
2477 2013-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2478
2479 * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
2480 * net/tramp-smb.el (tramp-smb-get-file-entries):
2481 * net/tramp-sh.el (tramp-sh-handle-insert-directory)
2482 (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
2483
2484 * net/eww.el (eww-display-raw): Remove unused argument `charset'.
2485 Update call to it.
2486 (eww-change-select): Remove unused var `properties'.
2487 (eww-make-unique-file-name): Remove unused var `base'.
2488
2489 * finder.el (finder-compile-keywords): Don't mess with windows.
2490
2491 * calculator.el (calculator-funcall): Fix typo in last change.
2492
2493 * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
2494
2495 * emacs-lisp/package.el (package-activate-1): Don't let a missing
2496 <pkg>-autoloads.el file stop us.
2497
2498 * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
2499 warnings, and factor out common code.
2500
2501 2013-09-03 Dmitry Gutov <dgutov@yandex.ru>
2502
2503 * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
2504 two-character operators and whether the character preceding them
2505 changes their meaning (Bug#15208).
2506
2507 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2508
2509 Format code sent to Python shell for robustness.
2510 * progmodes/python.el (python-shell-buffer-substring):
2511 New function.
2512 (python-shell-send-region, python-shell-send-buffer): Use it.
2513
2514 2013-09-02 Michael Albinus <michael.albinus@gmx.de>
2515
2516 * net/tramp-compat.el (tramp-compat-user-error): Move it ...
2517 * net/tramp.el (tramp-user-error): ... here.
2518 (tramp-find-method, tramp-check-proper-host)
2519 (tramp-dissect-file-name, tramp-debug-message)
2520 (tramp-handle-shell-command):
2521 * net/tramp-adb.el (tramp-adb-handle-shell-command):
2522 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
2523
2524 * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
2525
2526 2013-09-02 Martin Rudalics <rudalics@gmx.at>
2527
2528 * avoid.el (mouse-avoidance-point-position)
2529 (mouse-avoidance-too-close-p): Handle case where posn-at-point
2530 returns nil.
2531
2532 2013-09-02 Fabián Ezequiel Gallina <fgallina@gnu.org>
2533
2534 * progmodes/python.el (python-shell-completion-get-completions):
2535 Drop use of deleted `comint-last-prompt-overlay'.
2536 (python-nav-if-name-main): New command.
2537
2538 2013-09-01 Glenn Morris <rgm@gnu.org>
2539
2540 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2541 Avoid leading space in $wins. Otherwise the sed command used by
2542 eg compile-main ends up containing "/*.el". (Bug#15170)
2543
2544 * frame.el (frame-background-mode): Doc fix. (Bug#15226)
2545
2546 2013-08-30 Glenn Morris <rgm@gnu.org>
2547
2548 * emacs-lisp/bytecomp.el (byte-recompile-directory):
2549 Fix is-this-a-directory logic. (Bug#15220)
2550
2551 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2552
2553 * textmodes/css-mode.el: Use SMIE.
2554 (css-smie-grammar): New var.
2555 (css-smie--forward-token, css-smie--backward-token)
2556 (css-smie-rules): New functions.
2557 (css-mode): Use them.
2558 (css-navigation-syntax-table): Remove var.
2559 (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
2560 (css-indent-calculate, css-indent-line): Remove functions.
2561
2562 Misc changes to reduce use of `(lambda...); and other cleanups.
2563 * cus-edit.el: Use lexical-binding.
2564 (customize-push-and-save, customize-apropos)
2565 (custom-buffer-create-internal): Use closures.
2566 * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
2567 * progmodes/ada-xref.el: Use setq.
2568 * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
2569 * dframe.el: Use lexical-binding.
2570 (dframe-frame-mode): Fix calling convention for hooks. Use a closure.
2571 * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
2572 * descr-text.el: Use lexical-binding.
2573 (describe-text-widget, describe-text-sexp, describe-property-list):
2574 Use closures.
2575 * comint.el (comint-history-isearch-push-state): Use a closure.
2576 * calculator.el: Use lexical-binding.
2577 (calculator-number-to-string): Make it work with lexical-binding.
2578 (calculator-funcall): Same and use cl-letf.
2579
2580 * emacs-lisp/lisp.el (lisp--company-doc-buffer)
2581 (lisp--company-doc-string, lisp--company-location): New functions.
2582 (lisp-completion-at-point): Use them to improve Company support.
2583
2584 * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
2585 params of lambda expressions.
2586 (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
2587 (ruby-smie--opening-pipe-p): New function.
2588 (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
2589 symbols and matched |...| for formal params.
2590 (ruby-smie-rules): Don't let the formal params of a "do" prevent it
2591 from being treated as hanging. Handle "rescue".
2592
2593 2013-08-29 Glenn Morris <rgm@gnu.org>
2594
2595 * progmodes/cc-engine.el (c-pull-open-brace):
2596 Move definition before use.
2597
2598 2013-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2599
2600 * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
2601 are immutable. Don't use `unsafe' any more.
2602 (cl--defsubst-expand): Don't substitute at the same time as keeping
2603 a residual unused let-binding. Don't use `unsafe' any more.
2604
2605 2013-08-29 Glenn Morris <rgm@gnu.org>
2606
2607 * calendar/cal-china.el (calendar-chinese-year-cache):
2608 Recenter on 2015.
2609
2610 * nxml/nxml-util.el (nxml-debug-clear-inside):
2611 Use cl-loop rather than loop.
2612
2613 * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
2614
2615 * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
2616
2617 2013-08-28 Glenn Morris <rgm@gnu.org>
2618
2619 * progmodes/antlr-mode.el: No need to require cc-mode twice.
2620
2621 * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
2622
2623 * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
2624
2625 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2626
2627 * simple.el (repeat-complex-command--called-interactively-skip):
2628 New function.
2629 (repeat-complex-command): Use it (bug#14136).
2630
2631 * progmodes/cc-mode.el: Minor cleanup of var declarations.
2632 (c-define-abbrev-table): Add `doc' argument.
2633 (c-mode-abbrev-table, c++-mode-abbrev-table)
2634 (objc-mode-abbrev-table, java-mode-abbrev-table)
2635 (idl-mode-abbrev-table, pike-mode-abbrev-table)
2636 (awk-mode-abbrev-table): Use it.
2637 (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
2638 (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
2639 (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
2640 (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
2641 Move initialization into the declaration; and remove any
2642 autoload cookie.
2643
2644 * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
2645 and dynamic let binding.
2646
2647 * vc/smerge-mode.el: Remove redundant :group args.
2648
2649 * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
2650 to load-path.
2651
2652 2013-08-28 Juri Linkov <juri@jurta.org>
2653
2654 * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
2655 arg DONT-DOWNCASE-LAST of `read-key-sequence'.
2656 (isearch-other-meta-char): Handle an undefined shifted printing
2657 character by downshifting it. (Bug#15200)
2658
2659 2013-08-28 Juri Linkov <juri@jurta.org>
2660
2661 * isearch.el (isearch-search): Change regexp error message for
2662 non-regexp searches. (Bug#15166)
2663
2664 2013-08-28 Paul Eggert <eggert@cs.ucla.edu>
2665
2666 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
2667 for portability to hosts where /bin/sh has problems.
2668
2669 2013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
2670
2671 * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
2672
2673 2013-08-27 Juri Linkov <juri@jurta.org>
2674
2675 * isearch.el (isearch-other-meta-char): Don't store kmacro commands
2676 in the keyboard macro. (Bug#15126)
2677
2678 2013-08-27 Juri Linkov <juri@jurta.org>
2679
2680 * isearch.el (isearch-quote-char): Comment out converting unibyte
2681 to multibyte, thus syncing with its `quoted-insert' counterpart.
2682 (Bug#15166)
2683
2684 2013-08-27 Martin Rudalics <rudalics@gmx.at>
2685
2686 * window.el (display-buffer-use-some-window): Add missing
2687 argument in call of get-largest-window (Bug#15185).
2688 Reported by Stephen Leake.
2689
2690 2013-08-27 Glenn Morris <rgm@gnu.org>
2691
2692 * emacs-lisp/package.el (package-buffer-info): Fix message typo.
2693
2694 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2695
2696 * progmodes/python.el (python-font-lock-keywords): Don't return nil
2697 from a matcher-function unless there's no more matches (bug#15161).
2698
2699 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2700
2701 * minibuffer.el: Revert change from 2013-08-20.
2702
2703 * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
2704 with text property `tramp-default', if appropriate.
2705 (tramp-check-proper-host): New defun.
2706 (tramp-dissect-file-name): Do not check hostname. Revert change
2707 of 2013-03-18.
2708 (tramp-backtrace): Make VEC-OR-PROC optional.
2709
2710 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
2711 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2712 * net/tramp-sh.el (tramp-maybe-open-connection):
2713 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
2714 Apply `tramp-check-proper-host'.
2715
2716 2013-08-26 Tassilo Horn <tsdh@gnu.org>
2717
2718 * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
2719 lambda expression in order to have `describe-variable' display it.
2720
2721 2013-08-26 Michael Albinus <michael.albinus@gmx.de>
2722
2723 * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
2724 BUF can be optional. (Bug#15186)
2725
2726 2013-08-25 Xue Fuqiao <xfq.free@gmail.com>
2727
2728 * progmodes/flymake.el (flymake-get-real-file-name-function):
2729 Fix broken customization. (Bug#15184)
2730
2731 2013-08-25 Alan Mackenzie <acm@muc.de>
2732
2733 Improve indentation of bracelists defined by macros (without "=").
2734
2735 * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
2736 expansion begins with "{", regard it as bracelist when it doesn't
2737 contain a ";".
2738
2739 Parse C++ inher-intro when there's a template split over 2 lines.
2740
2741 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
2742 rigorously the search for "class" etc. followed by ":".
2743
2744 * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
2745 random languages a regexp which never matches rather than nil.
2746
2747 Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
2748
2749 * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
2750 (c-awk-regexp-one-line-possibly-open-char-list-re)
2751 (c-awk-one-line-possibly-open-regexp-re)
2752 (c-awk-one-line-non-syn-ws*-re): Remove.
2753 (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
2754 (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
2755 (c-awk-space*-unclosed-regexp-/-re): New constants.
2756 (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
2757 aren't regexp delimiters.
2758
2759 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
2760 handling for a rare situation in AWK Mode involving unterminated
2761 strings/regexps.
2762
2763 2013-08-23 Glenn Morris <rgm@gnu.org>
2764
2765 * files.el (auto-mode-alist): Use sh-mode for .bash_history.
2766
2767 * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
2768
2769 * files.el (create-file-buffer): If the result would begin with
2770 spaces, prepend a "|" instead of removing them. (Bug#15162)
2771
2772 2013-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2773
2774 * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
2775 text-properties (bug#15155).
2776
2777 * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
2778 exist any more.
2779 (calc-keypad-redraw): Remove unused var `pad'.
2780 (calc-keypad-press): Remove unused var `menu'.
2781
2782 2013-08-23 Martin Rudalics <rudalics@gmx.at>
2783
2784 * window.el (display-buffer-pop-up-frame):
2785 Call pop-up-frame-function with BUFFER current so `make-frame' will
2786 use it as the new frame's buffer (Bug#15133).
2787
2788 2013-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2789
2790 * calendar/timeclock.el: Minor cleanups.
2791 (timeclock-ask-before-exiting, timeclock-use-display-time):
2792 Use `symbol'.
2793 (timeclock-modeline-display): Define as alias before the
2794 actual definition.
2795 (timeclock-mode-line-display): Use define-minor-mode.
2796 (timeclock-day-list-template): Make it a function, add an argument.
2797 (timeclock-day-list-required, timeclock-day-list-length)
2798 (timeclock-day-list-debt, timeclock-day-list-span)
2799 (timeclock-day-list-break): Adjust calls accordingly.
2800
2801 2013-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2802
2803 * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
2804 Use read--expression so that completion works again.
2805
2806 2013-08-21 Sam Steingold <sds@gnu.org>
2807
2808 Add rudimentary inferior shell interaction
2809 * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
2810 (sh-set-shell): Reset it.
2811 (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
2812 New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
2813
2814 2013-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
2815
2816 * align.el: Use lexical-binding.
2817 (align-region): Simplify accordingly.
2818
2819 2013-08-20 Michael Albinus <michael.albinus@gmx.de>
2820
2821 * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
2822
2823 * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
2824 `non-essential' up.
2825
2826 2013-08-17 Michael Albinus <michael.albinus@gmx.de>
2827
2828 * net/tramp.el:
2829 * net/tramp-adb.el:
2830 * net/tramp-cmds.el:
2831 * net/tramp-ftp.el:
2832 * net/tramp-gvfs.el:
2833 * net/tramp-gw.el:
2834 * net/tramp-sh.el: Don't wrap external variable declarations by
2835 `eval-when-compile'.
2836
2837 2013-08-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
2838
2839 * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
2840 now that Emacs supports ImageMagick animations.
2841
2842 2013-08-16 Michael Albinus <michael.albinus@gmx.de>
2843
2844 * net/tramp-cmds.el (top): Don't declare `buffer-name'.
2845 (tramp-append-tramp-buffers): Rewrite buffer local variables part.
2846
2847 2013-08-16 Martin Rudalics <rudalics@gmx.at>
2848
2849 * window.el (mouse-autoselect-window-select): Do autoselect when
2850 mouse pointer is on margin.
2851
2852 2013-08-16 William Parsons <wbparsons@alum.mit.edu> (tiny change)
2853
2854 * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV. (Bug#1972)
2855
2856 2013-08-16 Glenn Morris <rgm@gnu.org>
2857
2858 * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
2859 Handle "Remote Directory" response of some clients. (Bug#15058)
2860
2861 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
2862 Tweak warning. (Bug#14926)
2863
2864 * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
2865 (menu-bar-tools-menu): Simplify news and mail items. (Bug#15095)
2866
2867 * image-mode.el (image-mode-map): Add menu items to reverse,
2868 increase, decrease, reset animation speed.
2869 (image--set-speed, image-increase-speed, image-decrease-speed)
2870 (image-reverse-speed, image-reset-speed): New functions.
2871 (image-mode-map): Add bindings for speed commands.
2872
2873 * image.el (image-animate-get-speed, image-animate-set-speed):
2874 New functions.
2875 (image-animate-timeout): Respect image :speed property.
2876
2877 2013-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2878
2879 * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
2880 previous line (bug#15101).
2881 (debugger-eval-expression, debugger-record-expression):
2882 Use read--expression (bug#15102).
2883
2884 2013-08-15 Michael Albinus <michael.albinus@gmx.de>
2885
2886 Remove byte compiler warnings, visible when compiling with
2887 `byte-compile-force-lexical-warnings' set to t.
2888
2889 * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
2890 (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
2891 (tramp-handle-unhandled-file-name-directory)
2892 (tramp-handle-file-notify-add-watch, tramp-action-login)
2893 (tramp-action-succeed, tramp-action-permission-denied)
2894 (tramp-action-terminal, tramp-action-process-alive): Prefix unused
2895 arguments with "_".
2896
2897 * net/tramp-adb.el (tramp-adb-parse-device-names)
2898 (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
2899 (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
2900 (tramp-adb-handle-file-truename): Remove unused arguments.
2901
2902 * net/tramp-cache.el (tramp-flush-directory-property)
2903 (tramp-flush-connection-property, tramp-list-connections)
2904 (tramp-parse-connection-properties): Prefix unused arguments with "_".
2905
2906 * net/tramp-compat.el (tramp-compat-make-temp-file):
2907 Rename FILENAME to F.
2908
2909 * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
2910 (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
2911 (tramp-zeroconf-parse-workstation-device-names)
2912 (tramp-zeroconf-parse-webdav-device-names)
2913 (tramp-synce-parse-device-names): Prefix unused arguments with "_".
2914
2915 * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
2916 (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
2917
2918 * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
2919 arguments.
2920 (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
2921 (tramp-sh-handle-insert-file-contents-literally)
2922 (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
2923 with "_".
2924 (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
2925 Remove unused variables.
2926
2927 * net/tramp-smb.el (tramp-smb-handle-copy-directory)
2928 (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
2929 (tramp-smb-read-file-entry): Prefix unused arguments with "_".
2930
2931 * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
2932 Make them a defconst.
2933 (tramp-uuencode-region): Remove unused variable.
2934
2935 2013-08-14 Juanma Barranquero <lekktu@gmail.com>
2936
2937 * frameset.el (frameset--prop-setter): New function.
2938 (frameset-prop): Add gv-setter declaration.
2939 (frameset-filter-minibuffer): Deal with the case that the minibuffer
2940 parameter was already set in FILTERED. Doc fix.
2941 (frameset--record-minibuffer-relationships): Allow saving a
2942 minibufferless frame without its corresponding minibuffer frame.
2943 (frameset--reuse-frame): Accept a match from an orphaned minibufferless
2944 frame, if the frame id matches.
2945 (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
2946 frames before orphaned ones.
2947 (frameset-restore): Warn about orphaned windows, instead of error out.
2948
2949 2013-08-14 Martin Rudalics <rudalics@gmx.at>
2950
2951 * window.el (window-make-atom): Don't overwrite parameter
2952 already present.
2953 (display-buffer-in-atom-window): Handle special case where we
2954 split an already atomic window.
2955 (window--major-non-side-window, display-buffer-in-side-window)
2956 (window--side-check): Ignore minibuffer window when walking
2957 window tree.
2958 (window-deletable-p): Return 'frame only if no other frame uses
2959 our minibuffer window.
2960 (record-window-buffer): Run buffer-list-update-hook.
2961 (split-window): Make sure window--check-frame won't destroy an
2962 existing atomic window in case the new window gets nested
2963 inside.
2964 (display-buffer-at-bottom): Ignore minibuffer window when
2965 walking window tree. Don't split a side window.
2966 (pop-to-buffer): Don't set-buffer here, the select-window call
2967 should do that.
2968 (mouse-autoselect-window-select): Autoselect only if we are in the
2969 text portion of the window.
2970
2971 2013-08-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2972
2973 * net/shr.el (shr-parse-image-data): New function to grab both the
2974 data itself and the Content-Type.
2975 (shr-put-image): Use it.
2976
2977 * net/eww.el (eww-display-image): Ditto.
2978
2979 * image.el (image-content-type-suffixes): New variable.
2980
2981 2013-08-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
2982
2983 * progmodes/python.el (python-imenu--build-tree)
2984 (python-imenu--put-parent): Simplify and Fix (GH bug 146).
2985
2986 2013-08-13 Xue Fuqiao <xfq.free@gmail.com>
2987
2988 * simple.el (backward-word): Mention the optional argument.
2989
2990 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
2991
2992 * frameset.el (frameset--make): Rename constructor from make-frameset.
2993 (frameset-p, frameset-valid-p): Don't autoload.
2994 (frameset-valid-p): Use normal accessors.
2995
2996 2013-08-13 Glenn Morris <rgm@gnu.org>
2997
2998 * progmodes/compile.el (compile-command): Tweak example in doc.
2999 * obsolete/scribe.el (scribe-mode):
3000 * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. (Bug#15053)
3001
3002 * mail/feedmail.el (feedmail-confirm-outgoing)
3003 (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
3004
3005 * cus-start.el (truncate-partial-width-windows): Fix type.
3006
3007 * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
3008
3009 * net/shr.el (shr-table-horizontal-line): Fix custom type.
3010
3011 2013-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
3012
3013 * emacs-lisp/timer.el (timer--time-setter): New function.
3014 (timer--time): Use it as gv-setter.
3015
3016 * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
3017 setter is not a symbol.
3018
3019 2013-08-12 Grégoire Jadi <daimrod@gmail.com>
3020
3021 * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
3022 if sending fails. This makes debugging easier.
3023
3024 2013-08-12 Juanma Barranquero <lekktu@gmail.com>
3025
3026 * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
3027 2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
3028 https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
3029
3030 2013-08-12 Eli Zaretskii <eliz@gnu.org>
3031
3032 * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
3033
3034 2013-08-12 Glenn Morris <rgm@gnu.org>
3035
3036 * format.el (format-annotate-function):
3037 Handle read-only text properties in the source. (Bug#14887)
3038
3039 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3040
3041 * net/eww.el (eww-display-html): Ignore coding system errors.
3042 One web site uses "utf-8lias" as the coding system.
3043
3044 2013-08-11 Juanma Barranquero <lekktu@gmail.com>
3045
3046 * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
3047
3048 2013-08-10 Juanma Barranquero <lekktu@gmail.com>
3049
3050 * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
3051 (tutorial--detailed-help): Remove unused local variables.
3052 (tutorial--save-tutorial-to): Use ignore-errors.
3053 (help-with-tutorial): Use looking-at-p.
3054
3055 * view.el (view-buffer-other-window, view-buffer-other-frame):
3056 Mark unused arguments.
3057
3058 * woman.el (woman-parse-colon-path, woman-parse-colon-path)
3059 (woman-select-symbol-fonts, woman, woman-find-file)
3060 (woman-insert-file-contents, woman-non-underline-faces):
3061 Use string-match-p.
3062 (woman1-unquote): Move declaration.
3063
3064 * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
3065 (xml-parse-dtd): Use looking-at-p, string-match-p. Mark unused
3066 argument. Remove unused local variable.
3067 (xml-parse-elem-type): Use string-match-p.
3068 (xml-substitute-numeric-entities): Use ignore-errors.
3069
3070 * calculator.el (calculator): Mark unused argument.
3071 (calculator-paste, calculator-quit, calculator-integer-p):
3072 Use ignore-errors.
3073 (calculator-string-to-number, calculator-decimal, calculator-exp)
3074 (calculator-op-or-exp): Use string-match-p.
3075
3076 * dired.el (dired-buffer-more-recently-used-p): Declare.
3077 (dired-insert-set-properties, dired-insert-old-subdirs):
3078 Use ignore-errors.
3079
3080 * dired-aux.el (dired-compress): Use ignore-errors.
3081 (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
3082 (dired-do-async-shell-command, dired-do-shell-command)
3083 (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
3084 (dired-insert-subdir-validate): Use string-match-p.
3085 (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
3086 (dired-add-entry): Use string-match-p, looking-at-p.
3087 (dired-insert-subdir-newpos): Remove unused local variable.
3088
3089 * filenotify.el (file-notify-callback): Remove unused local variable.
3090
3091 * filesets.el (filesets-error): Mark unused argument.
3092 (filesets-which-command-p, filesets-filter-dir-names)
3093 (filesets-directory-files, filesets-get-external-viewer)
3094 (filesets-ingroup-get-data): Use string-match-p.
3095
3096 * find-file.el (ff-other-file-name, ff-other-file-name)
3097 (ff-find-the-other-file, ff-cc-hh-converter):
3098 Remove unused local variables.
3099 (ff-get-file-name): Use string-match-p.
3100 (ff-all-dirs-under): Use ignore-errors.
3101
3102 * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
3103 (follow-select-if-visible): Remove unused local variable.
3104
3105 * forms.el (read-file-filter): Move declaration.
3106 (forms--make-format, forms--make-parser, forms-insert-record):
3107 Quote function with #'.
3108 (forms--update): Use string-match-p. Quote function with #'.
3109
3110 * help-mode.el (help-dir-local-var-def): Mark unused argument.
3111 (help-make-xrefs): Use looking-at-p.
3112 (help-xref-on-pp): Use looking-at-p, ignore-errors.
3113
3114 * ibuffer.el (ibuffer-ext-visible-p): Declare.
3115 (ibuffer-confirm-operation-on): Use string-match-p.
3116
3117 * msb.el (msb-item-handler, msb-dired-item-handler):
3118 Mark unused arguments.
3119
3120 * ses.el (ses-decode-cell-symbol)
3121 (ses-kill-override): Remove unused local variable.
3122 (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
3123 (ses-load): Use ignore-errors, looking-at-p.
3124 (ses-jump-safe): Use ignore-errors.
3125 (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
3126
3127 * tabify.el (untabify, tabify): Mark unused arguments.
3128
3129 * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
3130 Mark unused argument.
3131 (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
3132 (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
3133
3134 * emacs-lisp/timer.el (timer--time): Define setter with
3135 gv-define-setter to avoid deprecation warning.
3136
3137 * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
3138 (*record-cmpl-statistics-p*): Remove (was commented out).
3139 (cmpl-statistics-block): Remove (body was commented out).
3140 All callers changed.
3141 (add-completions-from-buffer, load-completions-from-file):
3142 Remove unused variables.
3143
3144 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
3145
3146 * filecache.el (file-cache-delete-file-list):
3147 Print message only when told so.
3148 (file-cache-files-matching): Use #' in mapconcat argument.
3149
3150 * ffap.el (ffap-url-at-point): Fix reference to variable
3151 thing-at-point-default-mail-uri-scheme.
3152
3153 2013-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
3154
3155 * subr.el (define-error): New function.
3156 * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
3157 error-file-not-found and define with define-error.
3158 * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
3159 and define with define-error.
3160 * userlock.el (file-locked, file-supersession):
3161 * simple.el (mark-inactive):
3162 * progmodes/js.el (js-moz-bad-rpc, js-js-error):
3163 * progmodes/ada-mode.el (ada-mode-errors):
3164 * play/life.el (life-extinct):
3165 * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
3166 * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
3167 * nxml/rng-util.el (rng-error):
3168 * nxml/rng-uri.el (rng-uri-error):
3169 * nxml/rng-match.el (rng-compile-error):
3170 * nxml/rng-cmpct.el (rng-c-incorrect-schema):
3171 * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
3172 * nxml/nxml-rap.el (nxml-scan-error):
3173 * nxml/nxml-outln.el (nxml-outline-error):
3174 * net/soap-client.el (soap-error):
3175 * net/gnutls.el (gnutls-error):
3176 * net/ange-ftp.el (ftp-error):
3177 * mpc.el (mpc-proc-error):
3178 * json.el (json-error, json-readtable-error, json-unknown-keyword)
3179 (json-number-format, json-string-escape, json-string-format)
3180 (json-key-format, json-object-format):
3181 * jka-compr.el (compression-error):
3182 * international/quail.el (quail-error):
3183 * international/kkc.el (kkc-error):
3184 * emacs-lisp/ert.el (ert-test-failed):
3185 * calc/calc.el (calc-error, inexact-result, math-overflow)
3186 (math-underflow):
3187 * bookmark.el (bookmark-error-no-filename):
3188 * epg.el (epg-error): Define with define-error.
3189
3190 * time.el (display-time-event-handler)
3191 (display-time-next-load-average): Don't call sit-for since it seems
3192 unnecessary (bug#15045).
3193
3194 * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
3195 Use #' instead of ' to quote functions.
3196 (checkdoc-output-mode): Use setq-local.
3197 (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
3198 (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
3199 (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
3200 (checkdoc-ispell, checkdoc-ispell-current-buffer)
3201 (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
3202 (checkdoc-ispell-message-text, checkdoc-ispell-start)
3203 (checkdoc-ispell-continue, checkdoc-ispell-comments)
3204 (checkdoc-ispell-defun): Remove unused arg `take-notes'.
3205
3206 * ido.el (ido-completion-help): Fix up compiler warning.
3207
3208 2013-08-09 Juanma Barranquero <lekktu@gmail.com>
3209
3210 * frameset.el (frameset-p): Add autoload cookie.
3211 (frameset--jump-to-register): New function, based on code moved from
3212 register.el.
3213 (frameset-to-register): Move from register.el. Adapt to `registerv'.
3214
3215 * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
3216 (frameset-restore, frameset-save, frameset-session-filter-alist):
3217 Remove declarations.
3218 (register-alist): Doc fix.
3219 (frameset-to-register): Move to frameset.el.
3220 (jump-to-register, describe-register-1): Remove frameset-specific code.
3221
3222 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3223
3224 * allout-widgets.el (allout-widgets-pre-command-business)
3225 (allout-widgets-post-command-business)
3226 (allout-widgets-after-change-handler)
3227 (allout-decorate-item-and-context, allout-set-boundary-marker)
3228 (allout-body-modification-handler)
3229 (allout-graphics-modification-handler): Mark ignored arguments.
3230 (allout-widgets-post-command-business)
3231 (allout-widgets-exposure-change-processor)
3232 (allout-widgets-exposure-undo-processor)
3233 (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
3234 (allout-parse-item-at-point, allout-decorate-item-guides)
3235 (allout-decorate-item-cue, allout-item-span): Remove unused variables.
3236 * allout.el (epa-passphrase-callback-function): Declare.
3237 (allout-overlay-insert-in-front-handler)
3238 (allout-overlay-interior-modification-handler)
3239 (allout-isearch-end-handler, allout-chart-siblings)
3240 (allout-up-current-level, allout-end-of-level, allout-reindent-body)
3241 (allout-yank-processing, allout-process-exposed)
3242 (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
3243 (allout-latex-verbatim-quote-curr-line): Remove unused variables.
3244 * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
3245 (lisp-indent-defform): Mark ignored arguments.
3246 (lisp-indent-line): Mark ignored arguments. Remove unused variables.
3247 (calculate-lisp-indent): Remove unused variables.
3248 * international/characters.el (indian-2-column, arabic-2-column)
3249 (tibetan): Mark ignored arguments.
3250 (use-cjk-char-width-table): Mark ignored arguments.
3251 Remove unused variables.
3252 * international/fontset.el (build-default-fontset-data)
3253 (x-compose-font-name, create-fontset-from-fontset-spec):
3254 Mark ignored arguments.
3255 (fontset-plain-name): Remove unused variables.
3256 * international/mule.el (charset-id, charset-bytes, generic-char-p)
3257 (keyboard-coding-system): Mark ignored arguments.
3258 (find-auto-coding): Remove unused variables. Use `ignore-errors'.
3259 * help.el (resize-temp-buffer-window):
3260 * window.el (display-buffer-in-major-side-window)
3261 (display-buffer-in-side-window, display-buffer-in-previous-window):
3262 Remove unused variables.
3263 * isearch.el (isearch-forward-symbol):
3264 * version.el (emacs-bzr-version-bzr):
3265 * international/mule-cmds.el (current-language-environment):
3266 * term/common-win.el (x-handle-iconic, x-handle-geometry)
3267 (x-handle-display):
3268 * term/pc-win.el (x-list-fonts, x-display-planes)
3269 (x-display-color-cells, x-server-max-request-size, x-server-vendor)
3270 (x-server-version, x-display-screens, x-display-mm-height)
3271 (x-display-mm-width, x-display-backing-store, x-display-visual-class)
3272 (x-selection-owner-p, x-own-selection-internal)
3273 (x-disown-selection-internal, x-get-selection-internal)
3274 (msdos-initialize-window-system):
3275 * term/tty-colors.el (tty-color-alist, tty-color-clear):
3276 * term/x-win.el (x-handle-no-bitmap-icon):
3277 * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
3278 (vc-default-find-file-hook, vc-default-extra-menu):
3279 Mark ignored arguments.
3280
3281 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3282
3283 * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
3284 break-condition in the context of the debugged code (bug#12685).
3285
3286 2013-08-08 Christopher Schmidt <christopher@ch.ristopher.com>
3287
3288 * comint.el:
3289 Do not use an overlay to highlight the last prompt. (Bug#14744)
3290 (comint-mode): Make comint-last-prompt buffer local.
3291 (comint-last-prompt): New variable.
3292 (comint-last-prompt-overlay): Remove. Superseded by
3293 comint-last-prompt.
3294 (comint-snapshot-last-prompt, comint-output-filter):
3295 Use comint-last-prompt.
3296
3297 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3298
3299 * frameset.el (frameset-valid-p): Check vector length. Doc fix.
3300 (frameset-save): Check validity of the resulting frameset.
3301
3302 2013-08-08 Xue Fuqiao <xfq.free@gmail.com>
3303
3304 * ido.el (ido-record-command): Add doc string.
3305
3306 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3307
3308 * frameset.el (frameset): Do not disable creation of the default
3309 frameset-p predicate. Doc fix.
3310 (frameset-valid-p): New function, copied from the old predicate-p.
3311 Add additional checks.
3312 (frameset-restore): Check with frameset-valid-p.
3313 (frameset-p, frameset-version, frameset-timestamp, frameset-app)
3314 (frameset-name, frameset-description, frameset-properties)
3315 (frameset-states): Add docstring.
3316 (frameset-session-filter-alist, frameset-persistent-filter-alist)
3317 (frameset-filter-alist): Doc fixes.
3318
3319 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3320
3321 * frameset.el (frameset-p, frameset-prop): Doc fixes.
3322
3323 2013-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3324
3325 * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
3326 extracted from byte-compile-callargs-warn and byte-compile-normal-call.
3327 (byte-compile-callargs-warn, byte-compile-function-form): Use it.
3328 (byte-compile-normal-call): Remove obsolescence check.
3329
3330 2013-08-08 Juanma Barranquero <lekktu@gmail.com>
3331
3332 * frameset.el (frameset-restore): Doc fix.
3333
3334 * register.el (frameset-frame-id, frameset-frame-with-id)
3335 (frameset-p, frameset-restore, frameset-save): Declare.
3336 (register-alist): Document framesets.
3337 (frameset-session-filter-alist): Declare.
3338 (frameset-to-register): New function.
3339 (jump-to-register): Implement jumping to framesets. Doc fix.
3340 (describe-register-1): Describe framesets.
3341
3342 * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
3343
3344 2013-08-07 Juanma Barranquero <lekktu@gmail.com>
3345
3346 * desktop.el (desktop-save-frameset): Use new frameset-save args.
3347 Use lexical-binding.
3348
3349 * frameset.el (frameset): Use type vector, not list (incompatible
3350 change). Do not declare a new constructor, use the default one.
3351 Upgrade suggested properties `app', `name' and `desc' to slots `app',
3352 `name' and `description', respectively, and add read-only slot
3353 `timestamp'. Doc fixes.
3354 (frameset-copy, frameset-persistent-filter-alist)
3355 (frameset-filter-alist, frameset-switch-to-gui-p)
3356 (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
3357 (frameset-filter-sanitize-color, frameset-filter-minibuffer)
3358 (frameset-filter-iconified, frameset-keep-original-display-p):
3359 Doc fixes.
3360 (frameset-filter-shelve-param, frameset-filter-unshelve-param):
3361 Rename from frameset-filter-(save|restore)-param. All callers changed.
3362 Doc fix.
3363 (frameset-p): Adapt to change to vector and be more thorough.
3364 Change arg name to OBJECT. Doc fix.
3365 (frameset-prop): Rename arg PROP to PROPERTY. Doc fix.
3366 (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
3367 All callers changed.
3368 (frameset-frame-with-id): Rename from frameset-locate-frame-id.
3369 All callers changed.
3370 (frameset--record-minibuffer-relationships): Rename from
3371 frameset--process-minibuffer-frames. All callers changed.
3372 (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
3373 Use new default constructor (again). Doc fix.
3374 (frameset--find-frame-if): Rename from `frameset--find-frame.
3375 All callers changed.
3376 (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
3377 (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
3378 Doc fix.
3379 (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
3380 PARAMETERS and WINDOW-STATE, respectively.
3381 (frameset-restore): Add new keyword argument PREDICATE.
3382 Reset frameset--target-display to nil. Doc fix.
3383
3384 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3385
3386 * progmodes/bat-mode.el (bat--syntax-propertize): New var.
3387 (bat-mode): Use it.
3388 (bat-mode-syntax-table): Mark \n as end-of-comment.
3389 (bat-font-lock-keywords): Remove comment rule.
3390
3391 * progmodes/bat-mode.el: Rename from dos.el. Use "bat-" prefix.
3392 (dos-mode-help): Remove. Use describe-mode (C-h m) instead.
3393
3394 * emacs-lisp/bytecomp.el: Check existence of f in #'f.
3395 (byte-compile-callargs-warn): Use `push'.
3396 (byte-compile-arglist-warn): Ignore higher-order "calls".
3397 (byte-compile-file-form-autoload): Use `pcase'.
3398 (byte-compile-function-form): If quoting a symbol, check that it exists.
3399
3400 2013-08-07 Eli Zaretskii <eliz@gnu.org>
3401
3402 * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
3403 and add a few popular commands found in batch files.
3404 (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
3405 (dos-mode): Doc fixes.
3406
3407 2013-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3408
3409 * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
3410 (dos-mode): Use setq-local. Add space after "rem".
3411 (dos-mode-syntax-table): Don't use "w" for symbol chars.
3412 (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
3413
3414 2013-08-07 Arni Magnusson <arnima@hafro.is>
3415
3416 * progmodes/dos.el: New file.
3417 * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
3418 dos-mode.
3419
3420 2013-08-06 Glenn Morris <rgm@gnu.org>
3421
3422 * calendar/calendar.el: Add new faces, and day-header-array.
3423 (calendar-weekday-header, calendar-weekend-header)
3424 (calendar-month-header): New faces.
3425 (calendar-day-header-construct): New function.
3426 (calendar-day-header-width): Also :set calendar-day-header-array.
3427 (calendar-american-month-header, calendar-european-month-header)
3428 (calendar-iso-month-header): Use calendar- faces.
3429 (calendar-generate-month):
3430 Use calendar-day-header-array for day headers; apply faces to them.
3431 (calendar-mode): Check calendar-font-lock-keywords non-nil.
3432 (calendar-abbrev-construct): Add optional maxlen argument.
3433 (calendar-day-name-array): Doc fix.
3434 (calendar-day-name-array, calendar-abbrev-length)
3435 (calendar-day-abbrev-array):
3436 Also :set calendar-day-header-array, and maybe redraw.
3437 (calendar-day-header-array): New option. (Bug#15007)
3438 (calendar-font-lock-keywords): Set to nil and make obsolete.
3439 (calendar-day-name): Add option to use header array.
3440
3441 2013-08-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
3442
3443 * net/shr.el (shr-render-td): Remove debugging.
3444 (shr-render-td): Make width computation consistent by defaulting
3445 all zero-width columns to 10 characters. This may not be optimal,
3446 but it's at least consistent.
3447 (shr-make-table-1): Redo last change to fix the real problem in
3448 colspan handling.
3449
3450 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3451
3452 * files.el (cache-long-line-scans):
3453 Make obsolete alias to `cache-long-scans'.
3454
3455 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3456
3457 * frameset.el (frameset, frameset-filter-alist)
3458 (frameset-filter-params, frameset-save, frameset--reuse-frame)
3459 (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
3460 (frameset-compute-pos): Rename from frameset--compute-pos,
3461 and add docstring.
3462 (frameset-move-onscreen): Use frameset-compute-pos.
3463 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3464
3465 * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
3466 Fix typos in docstrings.
3467
3468 2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3469
3470 * frame.el (get-other-frame): Tiny cleanup.
3471
3472 2013-08-06 Juanma Barranquero <lekktu@gmail.com>
3473
3474 * vc/vc.el (vc-default-ignore-completion-table):
3475 Silence byte-compiler warning.
3476
3477 * frameset.el (frameset-p): Don't check non-nullness of the `properties'
3478 slot , which can indeed be nil.
3479 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3480 Move entry for `left' from persistent to live filter alist.
3481 (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
3482 Doc fixes.
3483 (frameset-filter-params): When restoring a frame, copy items added to
3484 `filtered', to avoid unwittingly modifying the original parameters.
3485 (frameset-move-onscreen): Rename from frameset--move-onscreen. Doc fix.
3486 (frameset--restore-frame): Fix reference to frameset-move-onscreen.
3487
3488 * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
3489 to use looking-at-p instead of looking-at. (Bug#15028)
3490
3491 2013-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 Revert introduction of isearch-filter-predicates (bug#14714).
3494 Rely on add-function instead.
3495 * isearch.el (isearch-filter-predicates): Rename it back to
3496 isearch-filter-predicate.
3497 (isearch-message-prefix): Use advice-function-mapc and advice
3498 properties to get the isearch-message-prefix.
3499 (isearch-search, isearch-lazy-highlight-search): Revert to funcall
3500 instead of run-hook-with-args-until-failure.
3501 (isearch-filter-visible): Not obsolete any more.
3502 * loadup.el: Preload nadvice.
3503 * replace.el (perform-replace): Revert to funcall
3504 instead of run-hook-with-args-until-failure.
3505 * wdired.el (wdired-change-to-wdired-mode): Use add-function.
3506 * dired-aux.el (dired-isearch-filenames-mode): Rename from
3507 dired-isearch-filenames-toggle; make it into a proper minor mode.
3508 Use add/remove-function.
3509 (dired-isearch-filenames-setup, dired-isearch-filenames-end):
3510 Call the minor-mode rather than add/remove-hook.
3511 (dired-isearch-filter-filenames):
3512 Remove isearch-message-prefix property.
3513 * info.el (Info--search-loop): New function, extracted from Info-search.
3514 Funcall isearch-filter-predicate instead of
3515 run-hook-with-args-until-failure isearch-filter-predicates.
3516 (Info-search): Use it.
3517 (Info-mode): Use isearch-filter-predicate instead of
3518 isearch-filter-predicates.
3519
3520 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3521
3522 Do not call to `selected-window' where it is assumed by default.
3523 Affected functions are `window-minibuffer-p', `window-dedicated-p',
3524 `window-hscroll', `window-width', `window-height', `window-buffer',
3525 `window-frame', `window-start', `window-point', `next-window'
3526 and `window-display-table'.
3527 * abbrev.el (abbrev--default-expand):
3528 * bs.el (bs--show-with-configuration):
3529 * buff-menu.el (Buffer-menu-mouse-select):
3530 * calc/calc.el (calc):
3531 * calendar/calendar.el (calendar-generate-window):
3532 * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
3533 (diary-make-entry):
3534 * comint.el (send-invisible, comint-dynamic-complete-filename)
3535 (comint-dynamic-simple-complete, comint-dynamic-list-completions):
3536 * completion.el (complete):
3537 * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
3538 * disp-table.el (describe-current-display-table):
3539 * doc-view.el (doc-view-insert-image):
3540 * ebuff-menu.el (Electric-buffer-menu-mouse-select):
3541 * ehelp.el (with-electric-help):
3542 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3543 * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
3544 * emacs-lisp/helper.el (Helper-help-scroller):
3545 * emulation/cua-base.el (cua--post-command-handler-1):
3546 * eshell/esh-mode.el (eshell-output-filter):
3547 * ffap.el (ffap-gnus-wrapper):
3548 * help-macro.el (make-help-screen):
3549 * hilit-chg.el (highlight-compare-buffers):
3550 * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
3551 * hl-line.el (global-hl-line-highlight):
3552 * icomplete.el (icomplete-simple-completing-p):
3553 * isearch.el (isearch-done):
3554 * jit-lock.el (jit-lock-stealth-fontify):
3555 * mail/rmailsum.el (rmail-summary-scroll-msg-up):
3556 * lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
3557 * mpc.el (mpc-tagbrowser, mpc):
3558 * net/rcirc.el (rcirc-any-buffer):
3559 * play/gomoku.el (gomoku-max-width, gomoku-max-height):
3560 * play/landmark.el (landmark-max-width, landmark-max-height):
3561 * play/zone.el (zone):
3562 * progmodes/compile.el (compilation-goto-locus):
3563 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
3564 * progmodes/etags.el (find-tag-other-window):
3565 * progmodes/fortran.el (fortran-column-ruler):
3566 * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
3567 * progmodes/verilog-mode.el (verilog-point-text):
3568 * reposition.el (reposition-window):
3569 * rot13.el (toggle-rot13-mode):
3570 * server.el (server-switch-buffer):
3571 * shell.el (shell-dynamic-complete-command)
3572 (shell-dynamic-complete-environment-variable):
3573 * simple.el (insert-buffer, set-selective-display)
3574 (delete-completion-window):
3575 * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
3576 (speedbar-recenter):
3577 * startup.el (fancy-splash-head):
3578 * textmodes/ispell.el (ispell-command-loop):
3579 * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
3580 * tutorial.el (help-with-tutorial):
3581 * vc/add-log.el (add-change-log-entry):
3582 * vc/compare-w.el (compare-windows):
3583 * vc/ediff-help.el (ediff-indent-help-message):
3584 * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
3585 * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
3586 (ediff-setup-control-frame):
3587 * vc/emerge.el (emerge-position-region):
3588 * vc/pcvs-util.el (cvs-bury-buffer):
3589 * window.el (walk-windows, mouse-autoselect-window-select):
3590 * winner.el (winner-set-conf, winner-undo): Related users changed.
3591
3592 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3593
3594 * frameset.el (frameset--set-id): Doc fix.
3595 (frameset-frame-id, frameset-frame-id-equal-p)
3596 (frameset-locate-frame-id): New functions.
3597 (frameset--process-minibuffer-frames, frameset--reuse-frame)
3598 (frameset-restore): Use them.
3599
3600 2013-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3601
3602 Do not call to `selected-frame' where it is assumed by default.
3603 Affected functions are `raise-frame', `redraw-frame',
3604 `frame-first-window', `frame-terminal' and `delete-frame'.
3605 * calendar/appt.el (appt-disp-window):
3606 * epg.el (epg-wait-for-completion):
3607 * follow.el (follow-delete-other-windows-and-split)
3608 (follow-avoid-tail-recenter):
3609 * international/mule.el (set-terminal-coding-system):
3610 * mail/rmail.el (rmail-mail-return):
3611 * net/newst-plainview.el (newsticker--buffer-set-uptodate):
3612 * progmodes/f90.el (f90-add-imenu-menu):
3613 * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
3614 * server.el (server-switch-buffer):
3615 * simple.el (delete-completion-window):
3616 * talk.el (talk):
3617 * term/xterm.el (terminal-init-xterm-modify-other-keys)
3618 (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
3619 * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
3620 * vc/ediff.el (ediff-documentation): Related users changed.
3621 * frame.el (selected-terminal): Remove the leftover.
3622
3623 2013-08-05 Glenn Morris <rgm@gnu.org>
3624
3625 * calendar/calendar.el (calendar-generate-month):
3626 Fix for calendar-column-width != 1 + calendar-day-digit-width.
3627 (calendar-generate-month, calendar-font-lock-keywords):
3628 Fix for calendar-day-header-width > length of any day name.
3629
3630 2013-08-05 Juanma Barranquero <lekktu@gmail.com>
3631
3632 * desktop.el (desktop-clear): Use new name of sort predicate.
3633
3634 * frameset.el (frameset): Add docstring. Move :version property to its
3635 own `version' slot.
3636 (frameset-copy): Rename from copy-frameset.
3637 (frameset-p): Check more thoroughly.
3638 (frameset-prop): Do not check for :version, which is no longer a prop.
3639 (frameset-live-filter-alist, frameset-persistent-filter-alist):
3640 Use new :never value instead of t.
3641 (frameset-filter-alist): Expand and clarify docstring.
3642 (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
3643 (frameset-filter-minibuffer, frameset-filter-save-param)
3644 (frameset-filter-restore-param, frameset-filter-iconified):
3645 Add pointer to docstring of frameset-filter-alist.
3646 (frameset-filter-params): Rename filter values to be more meaningful:
3647 :never instead of t, and reverse the meanings of :save and :restore.
3648 (frameset--process-minibuffer-frames): Clarify error message.
3649 (frameset-save): Avoid unnecessary and confusing call to framep.
3650 Use new BOA constructor for framesets.
3651 (frameset--reuse-list): Doc fix.
3652 (frameset--restore-frame): Rename from frameset--get-frame. Doc fix.
3653 (frameset--minibufferless-last-p): Rename from frameset--sort-states.
3654 (frameset-minibufferless-first-p): Doc fix.
3655 Rename from frameset-sort-frames-for-deletion.
3656 (frameset-restore): Doc fixes. Use new function names.
3657 Most changes suggested by Drew Adams <drew.adams@oracle.com>.
3658
3659 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3660
3661 * desktop.el (desktop-restore-forces-onscreen)
3662 (desktop-restore-reuses-frames): Document :keyword constant values.
3663 (desktop-filter-parameters-alist): Remove, now identical to
3664 frameset-filter-alist.
3665 (desktop--filter-tty*): Remove, moved to frameset.el.
3666 (desktop-save-frameset, desktop-restore-frameset):
3667 Do not pass :filters argument.
3668
3669 * frameset.el (frameset-live-filter-alist)
3670 (frameset-persistent-filter-alist): New variables.
3671 (frameset-filter-alist): Use them. Add autoload cookie.
3672 (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
3673 (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
3674 `frameset--id' (it's supposed to be internal to frameset.el).
3675 (frameset--process-minibuffer-frames): Ditto. Doc fix.
3676 (frameset--initial-params): New function.
3677 (frameset--get-frame): Use it. Doc fix.
3678 (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
3679 Accept :all, not 'all.
3680 (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
3681 FORCE-DISPLAY. Use :keywords for constant arguments to avoid collision
3682 with fbound symbols. Fix frame id matching, and remove matching ids if
3683 the frame being restored is deleted. Obey :delete.
3684
3685 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3686
3687 * subr.el (macrop): New function.
3688 (text-clone--maintaining): New var.
3689 (text-clone--maintain): Rename from text-clone-maintain. Use it
3690 instead of inhibit-modification-hooks.
3691
3692 * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
3693 a proxy, so as handle autoloads and redefinitions of the target.
3694 (advice--defalias-fset, advice-remove): Use advice--symbol-function.
3695
3696 * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
3697 Remove bogus (arrayp . stringp) pair. Add entries for `vectorp'.
3698 (pcase--mutually-exclusive-p): New function.
3699 (pcase--split-consp): Use it.
3700 (pcase--split-pred): Use it. Optimize the case where `pat' is a qpat
3701 mutually exclusive with the current predicate.
3702
3703 * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
3704 (edebug-macrop): Remove. Use `macrop' instead.
3705 * emacs-lisp/advice.el (ad-subr-p): Remove. Use `subrp' instead.
3706 (ad-macro-p):
3707 * eshell/esh-cmd.el (eshell-macrop):
3708 * apropos.el (apropos-macrop): Remove. Use `macrop' instead.
3709
3710 2013-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
3711
3712 * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
3713 (advice-mapc): New function, using it.
3714 (advice-function-member-p): New function.
3715 (advice--normalize): Store the cdr in advice--saved-rewrite since
3716 that's the part that will be changed.
3717 (advice--symbol-function): New function.
3718 (advice-remove): Handle removal before the function is defined.
3719 Adjust to new advice--saved-rewrite.
3720 (advice-member-p): Use advice-function-member-p and
3721 advice--symbol-function.
3722
3723 2013-08-04 Juanma Barranquero <lekktu@gmail.com>
3724
3725 * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
3726 (frameset-filter-minibuffer): Doc fix.
3727 (frameset-restore): Fix autoload cookie. Fix typo in docstring.
3728 (frameset--set-id, frameset--process-minibuffer-frames)
3729 (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
3730 (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
3731
3732 * desktop.el (desktop-clear): Only delete frames when called
3733 interactively and desktop-restore-frames is non-nil. Doc fix.
3734 (desktop-read): Set desktop-saved-frameset to nil.
3735
3736 2013-08-04 Xue Fuqiao <xfq.free@gmail.com>
3737
3738 * vc/vc.el (vc-ignore): Rewrite.
3739 (vc-default-ignore-completion-table):
3740 (vc--read-lines):
3741 (vc--add-line, vc--remove-regexp): New functions.
3742
3743 * vc/vc-svn.el (vc-svn-ignore): Doc fix.
3744 (vc-svn-ignore-completion-table): New function.
3745
3746 * vc/vc-hg.el (vc-hg-ignore): Rewrite.
3747 (vc-hg-ignore-completion-table):
3748 (vc-hg-find-ignore-file): New functions.
3749
3750 * vc/vc-git.el (vc-git-ignore): Rewrite.
3751 (vc-git-ignore-completion-table):
3752 (vc-git-find-ignore-file): New functions.
3753
3754 * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
3755
3756 * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
3757 (vc-bzr-ignore-completion-table):
3758 (vc-bzr-find-ignore-file): New functions.
3759
3760 2013-08-03 Juanma Barranquero <lekktu@gmail.com>
3761
3762 * frameset.el (frameset-prop): New function and setter.
3763 (frameset-save): Do not modify frame list passed by the caller.
3764
3765 2013-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
3766
3767 * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
3768
3769 2013-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
3770
3771 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
3772 (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
3773
3774 * custom.el (custom-initialize-default, custom-initialize-set)
3775 (custom-initialize-reset, custom-initialize-changed): Affect the
3776 toplevel-default-value (bug#6275, bug#14586).
3777 * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
3778 for bug#6275.
3779
3780 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3781
3782 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3783 Add cl-def* expressions.
3784
3785 * frameset.el (frameset-filter-params): Fix order of arguments.
3786
3787 2013-08-02 Juanma Barranquero <lekktu@gmail.com>
3788
3789 Move code related to saving frames to frameset.el.
3790 * desktop.el: Require frameset.
3791 (desktop-restore-frames): Doc fix.
3792 (desktop-restore-reuses-frames): Rename from
3793 desktop-restoring-reuses-frames.
3794 (desktop-saved-frameset): Rename from desktop-saved-frame-states.
3795 (desktop-clear): Clear frames too.
3796 (desktop-filter-parameters-alist): Set from frameset-filter-alist.
3797 (desktop--filter-tty*, desktop-save, desktop-read):
3798 Use frameset functions.
3799 (desktop-before-saving-frames-functions, desktop--filter-*-color)
3800 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
3801 (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
3802 (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
3803 (desktop--process-minibuffer-frames, desktop-save-frames)
3804 (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
3805 (desktop--find-frame, desktop--select-frame, desktop--make-frame)
3806 (desktop--sort-states, desktop-restoring-frames-p)
3807 (desktop-restore-frames): Remove. Most code moved to frameset.el.
3808 (desktop-restoring-frameset-p, desktop-restore-frameset)
3809 (desktop--check-dont-save, desktop-save-frameset): New functions.
3810 (desktop--app-id): New constant.
3811 (desktop-first-buffer, desktop-buffer-ok-count)
3812 (desktop-buffer-fail-count): Move before first use.
3813 * frameset.el: New file.
3814
3815 2013-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
3816
3817 * files.el: Use lexical-binding.
3818 (dir-locals-read-from-file): Remove unused `err' variable.
3819 (hack-dir-local-variables--warned-coding): New var.
3820 (hack-dir-local-variables): Use it to avoid repeated warnings.
3821 (make-backup-file-name--default-function): New function.
3822 (make-backup-file-name-function): Use it as default.
3823 (buffer-stale--default-function): New function.
3824 (buffer-stale-function): Use it as default.
3825 (revert-buffer-insert-file-contents--default-function): New function.
3826 (revert-buffer-insert-file-contents-function): Use it as default.
3827 (insert-directory): Avoid add-to-list.
3828
3829 * autorevert.el (auto-revert-handler): Simplify.
3830 Use buffer-stale--default-function.
3831
3832 2013-08-01 Tassilo Horn <tsdh@gnu.org>
3833
3834 * speedbar.el (speedbar-query-confirmation-method): Doc fix.
3835
3836 * whitespace.el (whitespace-ensure-local-variables): New function.
3837 (whitespace-cleanup-region): Call it.
3838 (whitespace-turn-on): Call it.
3839
3840 2013-08-01 Michael Albinus <michael.albinus@gmx.de>
3841
3842 Complete file name handlers.
3843
3844 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3845 (tramp-handle-verify-visited-file-modtime)
3846 (tramp-handle-file-notify-rm-watch): New functions.
3847 (tramp-call-process): Do not bind `default-directory'.
3848
3849 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3850 Order alphabetically.
3851 [access-file, add-name-to-file, dired-call-process]:
3852 [dired-compress-file, file-acl, file-notify-rm-watch]:
3853 [file-ownership-preserved-p, file-selinux-context]:
3854 [make-directory-internal, make-symbolic-link, set-file-acl]:
3855 [set-file-selinux-context, set-visited-file-modtime]:
3856 [verify-visited-file-modtime]: Add handler.
3857 (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
3858
3859 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
3860 [file-notify-add-watch, file-notify-rm-watch]:
3861 [set-file-times, set-visited-file-modtime]:
3862 [verify-visited-file-modtime]: Add handler.
3863 (with-tramp-gvfs-error-message)
3864 (tramp-gvfs-handle-set-visited-file-modtime)
3865 (tramp-gvfs-fuse-file-name): Remove.
3866 (tramp-gvfs-handle-file-notify-add-watch)
3867 (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
3868 (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
3869
3870 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3871 Order alphabetically.
3872 [file-notify-rm-watch ]: Use default Tramp handler.
3873 [executable-find]: Remove private handler.
3874 (tramp-do-copy-or-rename-file-out-of-band): Do not bind
3875 `default-directory'.
3876 (tramp-sh-handle-executable-find)
3877 (tramp-sh-handle-file-notify-rm-watch): Remove functions.
3878 (tramp-sh-file-gvfs-monitor-dir-process-filter)
3879 (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
3880 Do not use `format' in `tramp-message'.
3881
3882 * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
3883 [file-notify-rm-watch, set-visited-file-modtime]:
3884 [verify-visited-file-modtime]: Add handler.
3885 (tramp-smb-call-winexe): Do not bind `default-directory'.
3886
3887 2013-08-01 Xue Fuqiao <xfq.free@gmail.com>
3888
3889 * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
3890
3891 2013-07-31 Dmitry Gutov <dgutov@yandex.ru>
3892
3893 * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
3894 use it.
3895 (log-view-diff-changeset): Same.
3896 (log-view-diff-common): Call backend command `previous-revision'
3897 to find out the previous revision, in both cases. Swap the
3898 variables `to' and `fr', so that `fr' usually refers to the
3899 earlier revision (Bug#14989).
3900
3901 2013-07-31 Kan-Ru Chen <kanru@kanru.info>
3902
3903 * ibuf-ext.el (ibuffer-filter-by-filename):
3904 Make it work with dired buffers too.
3905
3906 2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3907
3908 * emacs-lisp/re-builder.el (reb-color-display-p):
3909 * files.el (save-buffers-kill-terminal):
3910 * net/browse-url.el (browse-url):
3911 * server.el (server-save-buffers-kill-terminal):
3912 * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
3913 Prefer nil to selected-frame for the first arg of frame-parameter.
3914
3915 2013-07-31 Xue Fuqiao <xfq.free@gmail.com>
3916
3917 * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
3918
3919 2013-07-30 Stephen Berman <stephen.berman@gmx.net>
3920
3921 * minibuffer.el (completion--twq-all): Try and preserve each
3922 completion's case choice (bug#14907).
3923
3924 2013-07-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3925
3926 * net/network-stream.el (open-network-stream): Mention the new
3927 :nogreeting parameter.
3928 (network-stream-open-starttls): Use the :nogreeting parameter
3929 (bug#14938).
3930
3931 * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
3932
3933 * net/eww.el (eww-setup-buffer): Switching to the buffer seems
3934 more natural than popping.
3935
3936 * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
3937 (shr-urlify): Highlight under mouse.
3938
3939 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
3940
3941 * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
3942
3943 * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
3944
3945 * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'. Use `*vc*'
3946 buffer for output.
3947
3948 * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'. Do not assume
3949 point-min==1. Fix search string. Fix parentheses missing.
3950
3951 * vc/vc-git.el (vc-git-ignore): Remove `interactive'. Do not
3952 assume point-min==1. Fix search string. Fix parentheses missing.
3953
3954 * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
3955
3956 * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'. Use `*vc*'
3957 buffer for output.
3958
3959 2013-07-29 Eli Zaretskii <eliz@gnu.org>
3960
3961 * frame.el (frame-notice-user-settings): Avoid inflooping when the
3962 initial frame is minibuffer-less. (Bug#14841)
3963
3964 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
3965
3966 * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
3967 option.
3968
3969 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
3970 (tramp-maybe-open-connection): Use it.
3971
3972 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3973
3974 * desktop.el (desktop--make-frame): Include `minibuffer' in the
3975 minimal set of parameters passed when creating a frame, because
3976 the minibuffer status of a frame cannot be changed later.
3977
3978 2013-07-28 Stephen Berman <stephen.berman@gmx.net>
3979
3980 * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
3981 replace-regexp-in-string and inadvertent omissions in previous change.
3982 (todo-filter-items): Ensure only file names are comma-separated in
3983 name of filtered items buffer.
3984
3985 2013-07-28 Juanma Barranquero <lekktu@gmail.com>
3986
3987 * desktop.el: Optionally force offscreen frames back onscreen.
3988 (desktop-restoring-reuses-frames): New option.
3989 (desktop--compute-pos, desktop--move-onscreen): New functions.
3990 (desktop--make-frame): Use desktop--move-onscreen.
3991
3992 2013-07-27 Alan Mackenzie <acm@muc.de>
3993
3994 Fontify a Java generic method as a function.
3995 * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
3996 value to t.
3997
3998 2013-07-27 Stephen Berman <stephen.berman@gmx.net>
3999
4000 * calendar/todo-mode.el: Add command to rename todo files.
4001 (todo-rename-file): New command.
4002 (todo-key-bindings-t): Add key binding for it. Change the
4003 bindings of todo-filter-regexp-items(-multifile) to use `x'
4004 instead of `r', since the latter is better suited to the new
4005 renaming command.
4006
4007 2013-07-27 Alan Mackenzie <acm@muc.de>
4008
4009 Make Java try-with-resources statement parse properly.
4010 * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
4011 (c-block-stmt-1-2-key): New language constants/variables.
4012 * progmodes/cc-engine.el (c-beginning-of-statement-1)
4013 (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
4014 * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
4015 with c-block-stmt-1-2-key.
4016
4017 2013-07-27 Juanma Barranquero <lekktu@gmail.com>
4018
4019 * desktop.el (desktop--make-frame): Apply most frame parameters after
4020 creating the frame to force (partially or totally) offscreen frames to
4021 be restored as such.
4022
4023 2013-07-26 Xue Fuqiao <xfq.free@gmail.com>
4024
4025 * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
4026 (Bug#14948)
4027
4028 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4029
4030 * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
4031 `base' arg of backtrace-frame.
4032
4033 2013-07-26 Eli Zaretskii <eliz@gnu.org>
4034
4035 * simple.el (list-processes): Doc fix.
4036
4037 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
4038
4039 * desktop.el (desktop--select-frame):
4040 Try harder to reuse existing frames.
4041
4042 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4043
4044 * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
4045 (edebug-eval): Use backtrace-eval.
4046 (edebug--display, edebug--recursive-edit): Don't let-bind the
4047 edebug-outer-* vars that keep track of variables we locally let-bind.
4048 (edebug-outside-excursion): Don't restore outside values of locally
4049 let-bound vars.
4050 (edebug--display): Use user-error.
4051 (cl-lexical-debug, cl-debug-env): Remove.
4052
4053 2013-07-26 Juanma Barranquero <lekktu@gmail.com>
4054
4055 * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
4056 are restored to be sure that they are visible before deleting any
4057 remaining ones.
4058
4059 2013-07-26 Matthias Meulien <orontee@gmail.com>
4060
4061 * vc/vc-dir.el (vc-dir-mode-map): Add binding for
4062 vc-print-root-log. (Bug#14948)
4063
4064 2013-07-26 Richard Stallman <rms@gnu.org>
4065
4066 Add aliases for encrypting mail.
4067 * epa.el (epa-mail-aliases): New option.
4068 * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
4069 Bind inhibit-read-only so read-only text doesn't ruin everything.
4070 (epa-mail-default-recipients): New subroutine broken out.
4071 Handle epa-mail-aliases.
4072
4073 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4074
4075 Add support for lexical variables to the debugger's `e' command.
4076 * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
4077 vars, except for debugger-outer-match-data.
4078 (debugger-frame-number): Move check for "on a function call" from
4079 callers into it. Add `skip-base' argument.
4080 (debugger-frame, debugger-frame-clear): Simplify accordingly.
4081 (debugger-env-macro): Only reset the state stored in non-variables,
4082 i.e. current-buffer and match-data.
4083 (debugger-eval-expression): Rewrite using backtrace-eval.
4084 * subr.el (internal--called-interactively-p--get-frame): Remove.
4085 (called-interactively-p):
4086 * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
4087 `base' arg of backtrace-frame instead.
4088
4089 2013-07-26 Glenn Morris <rgm@gnu.org>
4090
4091 * align.el (align-regexp): Doc fix. (Bug#14857)
4092 (align-region): Explicit error if subexpression missing/does not match.
4093
4094 * simple.el (global-visual-line-mode):
4095 Do not duplicate the mode lighter. (Bug#14858)
4096
4097 2013-07-25 Martin Rudalics <rudalics@gmx.at>
4098
4099 * window.el (display-buffer): In display-buffer bind
4100 split-window-keep-point to t, bug#14829.
4101
4102 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
4103
4104 * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
4105 (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
4106 (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
4107 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4108 Change accordingly.
4109 (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
4110 Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
4111
4112 2013-07-25 Glenn Morris <rgm@gnu.org>
4113
4114 * dired-x.el (dired-mark-extension): Convert comment to doc string.
4115
4116 2013-07-25 Juanma Barranquero <lekktu@gmail.com>
4117
4118 * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
4119 parameter to modify-frame-parameters if the value has not changed;
4120 this is a workaround for bug#14949.
4121 (desktop--make-frame): On cl-delete-if call, check parameter name,
4122 not full parameter.
4123
4124 2013-07-30 Xue Fuqiao <xfq.free@gmail.com>
4125
4126 * vc/vc.el (vc-ignore): New function.
4127
4128 * vc/vc-svn.el (vc-svn-ignore): New function.
4129
4130 * vc/vc-hg.el (vc-hg-ignore): New function.
4131
4132 * vc/vc-git.el (vc-git-ignore): New function.
4133
4134 * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
4135 (vc-dir-ignore): New function.
4136
4137 * vc/vc-cvs.el (vc-cvs-ignore): New function.
4138 (cvs-append-to-ignore): Move here from pcvs.el.
4139
4140 * vc/vc-bzr.el (vc-bzr-ignore): New function.
4141
4142 * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
4143
4144 2013-07-24 Juanma Barranquero <lekktu@gmail.com>
4145
4146 * desktop.el (desktop-restoring-frames-p): Return a true boolean.
4147 (desktop-restore-frames): Warn when deleting an existing frame failed.
4148
4149 2013-07-24 Glenn Morris <rgm@gnu.org>
4150
4151 * ffap.el (ffap-machine-p): Handle "not known" response. (Bug#14929)
4152
4153 2013-07-24 Michael Albinus <michael.albinus@gmx.de>
4154
4155 * filenotify.el (file-notify-supported-p):
4156 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4157 Remove functions.
4158
4159 * autorevert.el (auto-revert-use-notify):
4160 (auto-revert-notify-add-watch):
4161 * net/tramp.el (tramp-file-name-for-operation):
4162 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4163 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4164 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
4165 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4166 Remove `file-notify-supported-p' entry.
4167
4168 2013-07-24 Glenn Morris <rgm@gnu.org>
4169
4170 * printing.el: Replace all uses of deleted ps-windows-system,
4171 ps-lp-system, ps-flatten-list with lpr- versions.
4172
4173 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4174
4175 * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
4176 checked with memq (bug#14935).
4177
4178 * files.el (revert-buffer-function): Use a non-nil default.
4179 (revert-buffer-preserve-modes): Declare var to
4180 provide access to the `preserve-modes' argument.
4181 (revert-buffer): Let-bind it.
4182 (revert-buffer--default): New function, extracted from revert-buffer.
4183
4184 2013-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4185
4186 * lpr.el: Signal print errors more prominently.
4187 (print-region-function): Don't default to nil.
4188 (lpr-print-region): New function, extracted from print-region-1.
4189 Check lpr's return value and signal an error in case of problem.
4190 (print-region-1): Use it.
4191 * ps-print.el (ps-windows-system, ps-lp-system): Remove. Use the lpr-*
4192 versions instead.
4193 (ps-printer-name): Default to nil.
4194 (ps-printer-name-option): Default to lpr-printer-switch.
4195 (ps-print-region-function): Don't default to nil.
4196 (ps-postscript-code-directory): Simplify default.
4197 (ps-do-despool): Use lpr-print-region to properly check the outcome.
4198 (ps-string-list, ps-eval-switch, ps-flatten-list)
4199 (ps-flatten-list-1): Remove.
4200 (ps-multibyte-buffer): Avoid setq.
4201 * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
4202 (print-region-function, ps-print-region-function): Don't set them here.
4203
4204 2013-07-24 Xue Fuqiao <xfq.free@gmail.com>
4205
4206 * ido.el (ido-fractionp):
4207 (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
4208 (ido-max-file-prompt-width, ido-unc-hosts-cache)
4209 (ido-max-directory-size, ido-max-dir-file-cache)
4210 (ido-decorations): Doc fix.
4211
4212 * ansi-color.el: Fix old URL.
4213
4214 2013-07-23 Michael R. Mauger <michael@mauger.com>
4215
4216 * progmodes/sql.el: Version 3.3
4217 (sql-product-alist): Improve oracle :prompt-cont-regexp.
4218 (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
4219 (sql-interactive-remove-continuation-prompt): Rewrite, use
4220 functions above. Fix continuation prompt and complete output line
4221 handling.
4222 (sql-redirect-one, sql-execute): Use `read-only-mode' on
4223 redirected output buffer.
4224 (sql-mode): Restore deleted code (Bug#13591).
4225
4226 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4227
4228 * desktop.el (desktop-clear, desktop-list*): Fix previous change.
4229
4230 2013-07-23 Michael Albinus <michael.albinus@gmx.de>
4231
4232 * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
4233
4234 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4235 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4236 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
4237
4238 2013-07-23 Juanma Barranquero <lekktu@gmail.com>
4239
4240 * desktop.el (desktop-clear): Simplify; remove useless checks
4241 against invalid buffer names.
4242 (desktop-list*): Use cl-list*.
4243 (desktop-buffer-info, desktop-create-buffer): Simplify.
4244
4245 2013-07-23 Leo Liu <sdl.web@gmail.com>
4246
4247 * bookmark.el (bookmark-make-record): Restore NAME as a default
4248 value. (Bug#14933)
4249
4250 2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4251
4252 * emacs-lisp/autoload.el (autoload--setup-output): New function,
4253 extracted from autoload--insert-text.
4254 (autoload--insert-text): Remove.
4255 (autoload--print-cookie-text): New function, extracted from
4256 autoload--insert-cookie-text.
4257 (autoload--insert-cookie-text): Remove.
4258 (autoload-generate-file-autoloads): Adjust calls accordingly.
4259
4260 * winner.el (winner-hook-installed-p): Remove.
4261 (winner-mode): Simplify accordingly.
4262
4263 * subr.el (add-to-list): Fix compiler-macro when `append' is
4264 not constant. Don't use `cl-member' for the base case.
4265
4266 * progmodes/subword.el: Fix boundary case (bug#13758).
4267 (subword-forward-regexp): Make it a constant. Wrap optional \\W in its
4268 own group.
4269 (subword-backward-regexp): Make it a constant.
4270 (subword-forward-internal): Don't treat a trailing capital as the
4271 beginning of a word.
4272
4273 2013-07-22 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4274
4275 * emacs-lisp/package.el (package-menu-mode): Don't modify the
4276 global value of tabulated-list-revert-hook (bug#14930).
4277
4278 2013-07-22 Juanma Barranquero <lekktu@gmail.com>
4279
4280 * desktop.el: Require 'cl-lib.
4281 (desktop-before-saving-frames-functions): New hook.
4282 (desktop--process-minibuffer-frames): Set desktop-mini parameter only
4283 for frames being saved. Rename from desktop--save-minibuffer-frames.
4284 (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
4285 Do not save frames with non-nil `desktop-dont-save' parameter.
4286 Filter out deleted frames.
4287 (desktop--find-frame): Use cl-find-if.
4288 (desktop--select-frame): Use cl-(first|second|third) to access values
4289 of desktop-mini.
4290 (desktop--make-frame): Use cl-delete-if.
4291 (desktop--sort-states): Fix sorting of minibuffer-owning frames.
4292 (desktop-restore-frames): Use cl-(first|second|third) to access values
4293 of desktop-mini. Look for visible frame at the end, not while
4294 restoring frames.
4295
4296 * dired-x.el (dired-mark-unmarked-files, dired-virtual)
4297 (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
4298 Use string-match-p, looking-at-p (bug#14927).
4299
4300 2013-07-21 Juanma Barranquero <lekktu@gmail.com>
4301
4302 * desktop.el (desktop-saved-frame-states):
4303 Rename from desktop--saved-states; all users changed.
4304 (desktop-save-frames): Rename from desktop--save-frames.
4305 Do not save state to desktop file.
4306 (desktop-save): Save desktop-saved-frame-states to desktop file
4307 and reset to nil.
4308 (desktop-restoring-frames-p): New function.
4309 (desktop-restore-frames): Use it. Rename from desktop--restore-frames.
4310 (desktop-read): Use desktop-restoring-frames-p. Do not try to fix
4311 buffer-lists when restoring frames. Suggested by Martin Rudalics.
4312
4313 * desktop.el: Correctly restore iconified frames.
4314 (desktop--filter-iconified-position): New function.
4315 (desktop-filter-parameters-alist): Add entries for `top' and `left'.
4316
4317 2013-07-20 Glenn Morris <rgm@gnu.org>
4318
4319 * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
4320 Let `message' do the formatting.
4321 (def-gdb-preempt-display-buffer): Add explicit format.
4322
4323 * image-dired.el (image-dired-track-original-file):
4324 Use with-current-buffer.
4325 (image-dired-track-thumbnail): Use with-current-buffer.
4326 Avoid changing point of wrong window.
4327
4328 * image-dired.el (image-dired-track-original-file):
4329 Avoid changing point of wrong window. (Bug#14909)
4330
4331 2013-07-20 Richard Copley <rcopley@gmail.com> (tiny change)
4332
4333 * progmodes/gdb-mi.el (gdb-done-or-error):
4334 Guard against "%" in gdb output. (Bug#14127)
4335
4336 2013-07-20 Andreas Schwab <schwab@linux-m68k.org>
4337
4338 * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
4339 (Bug#14826)
4340
4341 * international/mule.el (coding-system-iso-2022-flags): Fix last
4342 change.
4343
4344 2013-07-20 Kenichi Handa <handa@gnu.org>
4345
4346 * international/mule.el (coding-system-iso-2022-flags):
4347 Add `8-bit-level-4'. (Bug#8522)
4348
4349 2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
4350
4351 * net/shr.el (shr-mouse-browse-url): New command and keystroke
4352 (bug#14815).
4353
4354 * net/eww.el (eww-process-text-input): Allow inputting when the
4355 point is at the start of the line, as the properties aren't
4356 front-sticky.
4357
4358 * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
4359 degenerate widths.
4360
4361 2013-07-19 Richard Stallman <rms@gnu.org>
4362
4363 * epa.el (epa-popup-info-window): Doc fix.
4364
4365 * subr.el (split-string): New arg TRIM.
4366
4367 2013-07-18 Juanma Barranquero <lekktu@gmail.com>
4368
4369 * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
4370 Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
4371
4372 2013-07-18 Michael Albinus <michael.albinus@gmx.de>
4373
4374 * filenotify.el (file-notify--library): Rename from
4375 `file-notify-support'. Do not autoload. Adapt all uses.
4376 (file-notify-supported-p): New defun.
4377
4378 * autorevert.el (auto-revert-use-notify):
4379 Use `file-notify-supported-p' instead of `file-notify-support'.
4380 Adapt docstring.
4381 (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
4382
4383 * net/tramp.el (tramp-file-name-for-operation):
4384 Add `file-notify-supported-p'.
4385
4386 * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
4387 New defun.
4388 (tramp-sh-file-name-handler-alist): Add it as handler for
4389 `file-notify-supported-p '.
4390
4391 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
4392 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4393 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
4394 Add `ignore' as handler for `file-notify-*' functions.
4395
4396 2013-07-17 Eli Zaretskii <eliz@gnu.org>
4397
4398 * simple.el (line-move-partial, line-move): Don't start vscroll or
4399 scroll-up if the current line is not taller than the window.
4400 (Bug#14881)
4401
4402 2013-07-16 Dmitry Gutov <dgutov@yandex.ru>
4403
4404 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
4405 highlight question marks in the method names as strings.
4406 (ruby-block-beg-keywords): Inline.
4407 (ruby-font-lock-keyword-beg-re): Extract from
4408 `ruby-font-lock-keywords'.
4409
4410 2013-07-16 Jan Djärv <jan.h.d@swipnet.se>
4411
4412 * frame.el (blink-cursor-blinks): New defcustom.
4413 (blink-cursor-blinks-done): New defvar.
4414 (blink-cursor-start): Set blink-cursor-blinks-done to 1.
4415 (blink-cursor-timer-function): Check if number of blinks has been
4416 done on X and NS.
4417 (blink-cursor-suspend, blink-cursor-check): New defuns.
4418
4419 2013-07-15 Glenn Morris <rgm@gnu.org>
4420
4421 * edmacro.el (edmacro-format-keys): Fix previous change.
4422
4423 2013-07-15 Paul Eggert <eggert@cs.ucla.edu>
4424
4425 * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
4426 The hack didn't work outside English locales anyway.
4427
4428 2013-07-15 Juanma Barranquero <lekktu@gmail.com>
4429
4430 * simple.el (define-alternatives): Rename from alternatives-define,
4431 per RMS' suggestion.
4432
4433 2013-07-14 Juanma Barranquero <lekktu@gmail.com>
4434
4435 * desktop.el (desktop-restore-frames): Change default to t.
4436 (desktop-restore-in-current-display): Now offer more options.
4437 (desktop-restoring-reuses-frames): New customization option.
4438 (desktop--saved-states): Doc fix.
4439 (desktop-filter-parameters-alist): New variable, renamed and expanded
4440 from desktop--excluded-frame-parameters.
4441 (desktop--target-display): New variable.
4442 (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
4443 (desktop--filter-tty*, desktop--filter-*-color)
4444 (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
4445 (desktop--filter-save-desktop-parm)
4446 (desktop-restore-in-original-display-p): New functions.
4447 (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
4448 (desktop--save-minibuffer-frames): New function, inspired by a similar
4449 function from Martin Rudalics.
4450 (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
4451 (desktop--restore-in-this-display-p): Remove.
4452 (desktop--find-frame): Rename from desktop--find-frame-in-display
4453 and add predicate argument.
4454 (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
4455 (desktop--reuse-list): New variable.
4456 (desktop--select-frame, desktop--make-frame, desktop--sort-states):
4457 New functions.
4458 (desktop--restore-frames): Add support for "minibuffer-special" frames.
4459
4460 2013-07-14 Michael Albinus <michael.albinus@gmx.de>
4461
4462 * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
4463
4464 2013-07-13 Dmitry Gutov <dgutov@yandex.ru>
4465
4466 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4467 Highlight conversion methods on Kernel.
4468
4469 2013-07-13 Alan Mackenzie <acm@muc.de>
4470
4471 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
4472 and comment it out. This out-commenting enables certain C++
4473 declarations to be parsed correctly.
4474
4475 2013-07-13 Eli Zaretskii <eliz@gnu.org>
4476
4477 * international/mule.el (define-coding-system): Doc fix.
4478
4479 * simple.el (default-font-height): Don't call font-info if the
4480 frame's default font didn't change since the frame was created.
4481 (Bug#14838)
4482
4483 2013-07-13 Leo Liu <sdl.web@gmail.com>
4484
4485 * ido.el (ido-read-file-name): Guard against non-symbol value.
4486
4487 2013-07-13 Fabián Ezequiel Gallina <fgallina@gnu.org>
4488
4489 * progmodes/python.el (python-imenu--build-tree): Fix corner case
4490 in nested defuns.
4491
4492 2013-07-13 Leo Liu <sdl.web@gmail.com>
4493
4494 * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
4495 ido-set-matches call. (Bug#6852)
4496
4497 2013-07-12 Dmitry Gutov <dgutov@yandex.ru>
4498
4499 * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
4500 (ruby-syntax-expansion-allowed-p): Support array of symbols, for
4501 Ruby 2.0.
4502 (ruby-font-lock-keywords): Distinguish calls to functions with
4503 module-like names from module references. Highlight character
4504 literals.
4505
4506 2013-07-12 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
4507
4508 * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
4509 (gdb-send): Handle continued commands. (Bug#14847)
4510
4511 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4512
4513 * desktop.el (desktop--v2s): Remove unused local variable.
4514 (desktop-save-buffer): Make defvar-local; adjust docstring.
4515 (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
4516 (desktop-clear, desktop-save-buffer-p): Use string-match-p.
4517
4518 2013-07-12 Andreas Schwab <schwab@linux-m68k.org>
4519
4520 * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
4521
4522 2013-07-12 Eli Zaretskii <eliz@gnu.org>
4523
4524 * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
4525 (Bug#14842)
4526
4527 2013-07-12 Glenn Morris <rgm@gnu.org>
4528
4529 * doc-view.el: Require cl-lib at runtime too.
4530 (doc-view-remove-if): Remove.
4531 (doc-view-search-next-match, doc-view-search-previous-match):
4532 Use cl-remove-if.
4533
4534 * edmacro.el: Require cl-lib at runtime too.
4535 (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
4536 (edmacro-mismatch, edmacro-subseq): Remove.
4537
4538 * shadowfile.el: Require cl-lib.
4539 (shadow-remove-if): Remove.
4540 (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
4541 Use cl-remove-if.
4542
4543 * wid-edit.el: Require cl-lib.
4544 (widget-choose): Use cl-remove-if.
4545 (widget-remove-if): Remove.
4546
4547 * progmodes/ebrowse.el: Require cl-lib at runtime too.
4548 (ebrowse-delete-if-not): Remove.
4549 (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
4550 (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
4551 Use cl-delete-if-not.
4552
4553 2013-07-12 Juanma Barranquero <lekktu@gmail.com>
4554
4555 * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
4556 (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
4557
4558 2013-07-12 Leo Liu <sdl.web@gmail.com>
4559
4560 * ido.el (dired-do-copy, dired): Set 'ido property. (Bug#11954)
4561
4562 2013-07-11 Glenn Morris <rgm@gnu.org>
4563
4564 * emacs-lisp/edebug.el: Require cl-lib at run-time too.
4565 (edebug-gensym-index, edebug-gensym):
4566 Remove reimplementation of cl-gensym.
4567 (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
4568
4569 * thumbs.el: Require cl-lib at run-time too.
4570 (thumbs-gensym-counter, thumbs-gensym):
4571 Remove reimplementation of cl-gensym.
4572 (thumbs-temp-file): Use cl-gensym.
4573
4574 * emacs-lisp/ert.el: Require cl-lib at runtime too.
4575 (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
4576 (ert--intersection, ert--set-difference, ert--set-difference-eq)
4577 (ert--union, ert--gensym-counter, ert--gensym-counter)
4578 (ert--coerce-to-vector, ert--remove*, ert--string-position)
4579 (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
4580 (ert-make-test-unbound, ert--expand-should-1)
4581 (ert--expand-should, ert--should-error-handle-error)
4582 (should-error, ert--explain-equal-rec)
4583 (ert--plist-difference-explanation, ert-select-tests)
4584 (ert--make-stats, ert--remove-from-list, ert--string-first-line):
4585 Use cl-lib functions rather than reimplementations.
4586
4587 2013-07-11 Michael Albinus <michael.albinus@gmx.de>
4588
4589 * net/tramp.el (tramp-methods): Extend docstring.
4590 (tramp-connection-timeout): New defcustom.
4591 (tramp-error-with-buffer): Reset timestamp only when appropriate.
4592 (with-tramp-progress-reporter): Simplify.
4593 (tramp-process-actions): Improve messages.
4594
4595 * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4596 * net/tramp-sh.el (tramp-maybe-open-connection):
4597 Use `tramp-connection-timeout'.
4598 (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
4599 (Bug#14808)
4600
4601 2013-07-11 Leo Liu <sdl.web@gmail.com>
4602
4603 * ido.el (ido-read-file-name): Conform to the requirements of
4604 read-file-name. (Bug#11861)
4605 (ido-read-directory-name): Conform to the requirements of
4606 read-directory-name.
4607
4608 2013-07-11 Juanma Barranquero <lekktu@gmail.com>
4609
4610 * subr.el (delay-warning): New function.
4611
4612 2013-07-10 Eli Zaretskii <eliz@gnu.org>
4613
4614 * simple.el (default-line-height): New function.
4615 (line-move-partial, line-move): Use it instead of computing the
4616 line height inline.
4617 (line-move-partial): Always compute ROWH. If the last line is
4618 partially-visible, but its text is completely visible, allow
4619 cursor to enter such a partially-visible line.
4620
4621 2013-07-10 Michael Albinus <michael.albinus@gmx.de>
4622
4623 Improve error messages. (Bug#14808)
4624
4625 * net/tramp.el (tramp-current-connection): New defvar, moved from
4626 tramp-sh.el.
4627 (tramp-message-show-progress-reporter-message): Remove, not
4628 needed anymore.
4629 (tramp-error-with-buffer): Show message in minibuffer.
4630 Discard input before waiting. Reset connection timestamp.
4631 (with-tramp-progress-reporter): Improve messages.
4632 (tramp-process-actions): Use progress reporter. Delete process in
4633 case of error. Improve messages.
4634
4635 * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
4636 Call `tramp-error-with-buffer' with vector and buffer.
4637 (tramp-current-connection): Remove.
4638 (tramp-maybe-open-connection): The car of
4639 `tramp-current-connection' are the first 3 slots of the vector.
4640
4641 2013-07-10 Teodor Zlatanov <tzz@lifelogs.com>
4642
4643 * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
4644 inside continued strings.
4645
4646 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
4647
4648 Timestamp fixes for undo (Bug#14824).
4649 * files.el (clear-visited-file-modtime): Move here from fileio.c.
4650
4651 2013-07-10 Leo Liu <sdl.web@gmail.com>
4652
4653 * files.el (require-final-newline): Allow safe local value.
4654 (Bug#14834)
4655
4656 2013-07-09 Leo Liu <sdl.web@gmail.com>
4657
4658 * ido.el (ido-read-directory-name): Handle fallback.
4659 (ido-read-file-name): Update DIR to ido-current-directory.
4660 (Bug#1516)
4661 (ido-add-virtual-buffers-to-list): Robustify. (Bug#14552)
4662
4663 2013-07-09 Dmitry Gutov <dgutov@yandex.ru>
4664
4665 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
4666 "autoload". Remove "warn lower camel case" section, previously
4667 commented out. Highlight negation char. Do not highlight the
4668 target in singleton method definitions.
4669
4670 2013-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
4671
4672 * faces.el (tty-setup-hook): Declare the hook.
4673
4674 * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
4675 and detect when a guard/pred depends on local vars (bug#14773).
4676 (pcase--u1): Adjust caller.
4677
4678 2013-07-08 Eli Zaretskii <eliz@gnu.org>
4679
4680 * simple.el (line-move-partial, line-move): Account for
4681 line-spacing.
4682 (line-move-partial): Avoid setting vscroll when the last
4683 partially-visible line in window is of default height.
4684
4685 2013-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4686
4687 * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
4688 been used a while.
4689
4690 2013-07-07 Juanma Barranquero <lekktu@gmail.com>
4691
4692 * subr.el (read-quoted-char): Remove unused local variable `char'.
4693
4694 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu>
4695
4696 * ediff.el (ediff-version): Version update.
4697 (ediff-files-command, ediff3-files-command, ediff-merge-command)
4698 (ediff-merge-with-ancestor-command, ediff-directories-command)
4699 (ediff-directories3-command, ediff-merge-directories-command)
4700 (ediff-merge-directories-with-ancestor-command): New functions.
4701 All are command-line interfaces to ediff: to facilitate calling
4702 Emacs with the appropriate ediff functions invoked.
4703
4704 * viper-cmd.el (viper-del-forward-char-in-insert): New function.
4705 (viper-save-kill-buffer): Check if buffer is modified.
4706
4707 * viper.el (viper-version): Version update.
4708 (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
4709
4710 2013-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
4711
4712 * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
4713 * viper-cmd.el (viper-envelop-ESC-key): Remove function.
4714 (viper-intercept-ESC-key): Simplify.
4715 * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
4716 * viper.el (viper--tty-ESC-filter, viper--lookup-key)
4717 (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
4718 (viper-setup-ESC-to-escape): New functions.
4719 (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
4720 (viper-set-hooks): Do not modify flyspell-mode-hook. (Bug#13793)
4721
4722 2013-07-07 Eli Zaretskii <eliz@gnu.org>
4723
4724 * simple.el (default-font-height, window-screen-lines):
4725 New functions.
4726 (line-move, line-move-partial): Use them instead of
4727 frame-char-height and window-text-height. This makes scrolling
4728 text smoother when the buffer's default face uses a font that is
4729 different from the frame's default font.
4730
4731 2013-07-06 Jan Djärv <jan.h.d@swipnet.se>
4732
4733 * files.el (write-file): Do not display confirm dialog for NS,
4734 it does its own dialog, which can't be cancelled (Bug#14578).
4735
4736 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4737
4738 * simple.el (line-move-partial): Adjust the row returned by
4739 posn-at-point for the current window-vscroll. (Bug#14567)
4740
4741 2013-07-06 Michael Albinus <michael.albinus@gmx.de>
4742
4743 * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
4744 (tramp-sh-file-inotifywait-process-filter): Handle file names with
4745 spaces.
4746
4747 2013-07-06 Martin Rudalics <rudalics@gmx.at>
4748
4749 * window.el (window-state-put-stale-windows): New variable.
4750 (window--state-put-2): Save list of windows without matching buffer.
4751 (window-state-put): Remove "bufferless" windows if possible.
4752
4753 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4754
4755 * simple.el (alternatives-define): Remove leftover :group keyword.
4756 Tweak docstring.
4757
4758 2013-07-06 Leo Liu <sdl.web@gmail.com>
4759
4760 * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
4761 (ido-enable-virtual-buffers): New variable.
4762 (ido-buffer-internal, ido-toggle-virtual-buffers)
4763 (ido-make-buffer-list): Use it.
4764 (ido-exhibit): Support turning on and off virtual buffers
4765 automatically.
4766
4767 2013-07-06 Juanma Barranquero <lekktu@gmail.com>
4768
4769 * simple.el (alternatives-define): New macro.
4770
4771 2013-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
4772
4773 * subr.el (read-quoted-char): Use read-key.
4774 (sit-for): Let read-event decode tty input (bug#14782).
4775
4776 2013-07-05 Stephen Berman <stephen.berman@gmx.net>
4777
4778 * calendar/todo-mode.el: Add handling of file deletion, both by
4779 mode command and externally. Fix various related bugs.
4780 Clarify Commentary and improve some documentation strings and code.
4781 (todo-delete-file): New command.
4782 (todo-check-file): New function.
4783 (todo-show): Handle external deletion of the file we're trying to
4784 show (bug#14688). Replace called-interactively-p by an optional
4785 prefix argument to avoid problematic interaction with catch form
4786 when byte compiled (bug#14702).
4787 (todo-quit): Handle external deletion of the archive's todo file.
4788 Make sure the buffer that was visiting the archive file is still
4789 live before trying to bury it.
4790 (todo-category-completions): Handle external deletion of any
4791 category completion files.
4792 (todo-jump-to-category, todo-basic-insert-item): Recalculate list
4793 of todo files, in case of external deletion.
4794 (todo-add-file): Replace unnecessary setq by let-binding.
4795 (todo-find-archive): Check whether there are any archives.
4796 Replace unnecessary setq by let-binding.
4797 (todo-archive-done-item): Use find-file-noselect to get the
4798 archive buffer whether or not the archive already exists.
4799 Remove superfluous code. Use file size instead of buffer-file-name to
4800 check if the archive is new; if it is, update list of archives.
4801 (todo-default-todo-file): Allow nil to be a valid value for when
4802 there are no todo files.
4803 (todo-reevaluate-default-file-defcustom): Use corrected definition
4804 of todo-default-todo-file.
4805 (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
4806 (todo-delete-category, todo-show-categories-table)
4807 (todo-category-number): Clarify comment.
4808 (todo-filter-items): Clarify documentation string.
4809 (todo-show-current-file, todo-display-as-todo-file)
4810 (todo-reset-and-enable-done-separator): Tweak documentation string.
4811 (todo-done-separator): Make separator length window-width, since
4812 bug#2749 is now fixed.
4813
4814 2013-07-05 Michael Albinus <michael.albinus@gmx.de>
4815
4816 * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4817 Support both "gvfs-monitor-dir" and "inotifywait".
4818 (tramp-sh-file-inotifywait-process-filter): Rename from
4819 `tramp-sh-file-notify-process-filter'.
4820 (tramp-sh-file-gvfs-monitor-dir-process-filter)
4821 (tramp-get-remote-gvfs-monitor-dir): New defuns.
4822
4823 2013-07-05 Leo Liu <sdl.web@gmail.com>
4824
4825 * autoinsert.el (auto-insert-alist): Default to lexical-binding.
4826
4827 2013-07-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4828
4829 * frame.el (display-pixel-height, display-pixel-width)
4830 (display-mm-height, display-mm-width): Mention behavior on
4831 multi-monitor setups in docstrings.
4832 (w32-display-monitor-attributes-list): Declare function.
4833 (display-monitor-attributes-list): Use it.
4834
4835 2013-07-04 Michael Albinus <michael.albinus@gmx.de>
4836
4837 * filenotify.el: New package.
4838
4839 * autorevert.el (top): Require filenotify.el.
4840 (auto-revert-notify-enabled): Remove. Use `file-notify-support'
4841 instead.
4842 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
4843 (auto-revert-notify-handler): Use `file-notify-*' functions.
4844
4845 * subr.el (file-notify-handle-event): Move function to filenotify.el.
4846
4847 * net/tramp.el (tramp-file-name-for-operation):
4848 Handle `file-notify-add-watch' and `file-notify-rm-watch'.
4849
4850 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
4851 for `file-notify-add-watch' and `file-notify-rm-watch'.
4852 (tramp-process-sentinel): Improve trace.
4853 (tramp-sh-handle-file-notify-add-watch)
4854 (tramp-sh-file-notify-process-filter)
4855 (tramp-sh-handle-file-notify-rm-watch)
4856 (tramp-get-remote-inotifywait): New defuns.
4857
4858 2013-07-03 Juri Linkov <juri@jurta.org>
4859
4860 * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
4861 call of `occur-read-primary-args' to interactive spec.
4862
4863 * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
4864 `ibuffer-do-occur' like in buff-menu.el. (Bug#14673)
4865
4866 2013-07-03 Matthias Meulien <orontee@gmail.com>
4867
4868 * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
4869 `Buffer-menu-multi-occur'. Add it to the menu.
4870 (Buffer-menu-mode): Document it in docstring.
4871 (Buffer-menu-multi-occur): New command. (Bug#14673)
4872
4873 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4874
4875 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
4876 keywords and built-ins.
4877
4878 2013-07-03 Glenn Morris <rgm@gnu.org>
4879
4880 * subr.el (y-or-n-p): Handle empty prompts. (Bug#14770)
4881
4882 Make info-xref checks case-sensitive by default
4883 * info.el (Info-find-node, Info-find-in-tag-table)
4884 (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
4885 Add option for exact case matching of nodes.
4886 * info-xref.el (info-xref): New custom group.
4887 (info-xref-case-fold): New option.
4888 (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
4889
4890 2013-07-03 Leo Liu <sdl.web@gmail.com>
4891
4892 * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
4893
4894 2013-07-03 Dmitry Gutov <dgutov@yandex.ru>
4895
4896 * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
4897 middle of block statement initially, lower the depth. Remove
4898 FIXME comment, not longer valid. Remove middle of block statement
4899 detection, no need to do that anymore since we've been using
4900 `ruby-parse-region' here.
4901
4902 2013-07-02 Jan Djärv <jan.h.d@swipnet.se>
4903
4904 * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
4905
4906 2013-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
4907
4908 * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
4909
4910 2013-07-01 Juanma Barranquero <lekktu@gmail.com>
4911
4912 * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
4913 (desktop-restore-in-current-display): New customization option.
4914 (desktop--excluded-frame-parameters): Add `font'.
4915 (desktop--save-frames): Rename from desktop--save-windows.
4916 (desktop--restore-in-this-display-p): New function.
4917 (desktop--make-full-frame): Remove unwanted width/height from
4918 full(width|height) frames.
4919 (desktop--restore-frames): Rename from desktop--restore-windows.
4920 Obey desktop-restore-current-display. Do not delete old frames or
4921 select a new frame unless we were able to restore at least one frame.
4922
4923 2013-06-30 Michal Nazarewicz <mina86@mina86.com>
4924
4925 * files.el (find-file-noselect): Simplify conditional expression.
4926
4927 * remember.el (remember-append-to-file):
4928 Don't mix `find-buffer-visiting' and `get-file-buffer'.
4929
4930 Add `remember-notes' function to store random notes across Emacs
4931 restarts.
4932 * remember.el (remember-data-file): Add :set callback to affect
4933 notes buffer (if any).
4934 (remember-notes): New command.
4935 (remember-notes-buffer-name, bury-remember-notes-on-kill):
4936 New defcustoms for the `remember-notes' function.
4937 (remember-notes-save-and-bury-buffer): New command.
4938 (remember-notes-mode-map): New variable.
4939 (remember-mode): New minor mode.
4940 (remember-notes--kill-buffer-query): New function.
4941 * startup.el (initial-buffer-choice): Add notes to custom type.
4942
4943 2013-06-30 Eli Zaretskii <eliz@gnu.org>
4944
4945 * bindings.el (right-char, left-char): Don't call sit-for, this is
4946 no longer needed. Use arithmetic comparison only for numerical
4947 arguments.
4948
4949 * international/mule-cmds.el (select-safe-coding-system):
4950 Handle the case of FROM being a string correctly. (Bug#14755)
4951
4952 2013-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4953
4954 * net/shr.el (shr-make-table-1): Add a sanity check that allows
4955 progression on degenerate tables.
4956 (shr-rescale-image): ImageMagick animated images currently don't work.
4957
4958 2013-06-30 Juanma Barranquero <lekktu@gmail.com>
4959
4960 Some fixes and improvements for desktop frame restoration.
4961 It is still experimental and disabled by default.
4962 * desktop.el (desktop--save-windows): Put the selected frame at
4963 the head of the list.
4964 (desktop--make-full-frame): New function.
4965 (desktop--restore-windows): Try to re-select the frame that was
4966 selected upon saving. Do not abort if some frames fail to restore,
4967 just show an error message and continue. Set up maximized frames
4968 so they have default non-maximized dimensions.
4969
4970 2013-06-30 Dmitry Gutov <dgutov@yandex.ru>
4971
4972 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
4973 Don't start heredoc inside a string or comment.
4974
4975 2013-06-29 Eli Zaretskii <eliz@gnu.org>
4976
4977 * bindings.el (visual-order-cursor-movement): New defcustom.
4978 (right-char, left-char): Provide visual-order cursor motion by
4979 calling move-point-visually. Update the doc strings.
4980
4981 2013-06-28 Kenichi Handa <handa@gnu.org>
4982
4983 * international/mule.el (define-coding-system): New coding system
4984 properties :inhibit-null-byte-detection,
4985 :inhibit-iso-escape-detection, and :prefer-utf-8.
4986 (set-buffer-file-coding-system): If :charset-list property of
4987 CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
4988 appropriate for setting.
4989
4990 * international/mule-cmds.el (select-safe-coding-system):
4991 If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
4992 multibyte characters, return utf-8 (or one of its siblings).
4993
4994 * international/mule-conf.el (prefer-utf-8): New coding system.
4995 (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
4996 files.
4997
4998 2013-06-28 Ivan Kanis <ivan@kanis.fr>
4999
5000 * net/shr.el (shr-render-region): New function.
5001
5002 * net/eww.el: Autoload `eww-browse-url'.
5003
5004 2013-06-27 Dmitry Gutov <dgutov@yandex.ru>
5005
5006 * emacs-lisp/package-x.el (package-upload-buffer-internal):
5007 Adapt to `package-desc-version' being a list.
5008 Use `package--ac-desc-version' to retrieve version from a package
5009 archive element.
5010
5011 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
5012
5013 New experimental feature to save&restore window and frame setup.
5014 * desktop.el (desktop-save-windows): New defcustom.
5015 (desktop--saved-states): New var.
5016 (desktop--excluded-frame-parameters): New defconst.
5017 (desktop--filter-frame-parms, desktop--find-frame-in-display)
5018 (desktop--restore-windows, desktop--save-windows): New functions.
5019 (desktop-save): Call `desktop--save-windows'.
5020 (desktop-read): Call `desktop--restore-windows'.
5021
5022 2013-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
5023
5024 * net/shr.el (add-face-text-property): Remove compat definition.
5025
5026 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
5027
5028 * info.el (Info-try-follow-nearest-node): Move search for footnote
5029 above search for node name to prevent missing a footnote (bug#14717).
5030
5031 2013-06-27 Stephen Berman <stephen.berman@gmx.net>
5032
5033 * obsolete/otodo-mode.el: Add obsolescence info to file header.
5034
5035 2013-06-27 Leo Liu <sdl.web@gmail.com>
5036
5037 * net/eww.el (eww-read-bookmarks): Check file size.
5038
5039 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5040
5041 * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
5042 advice--pending if newdef is nil or an autoload (bug#13820).
5043 (advice-mapc): New function.
5044
5045 2013-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
5046
5047 * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
5048 probably.
5049 (eww-mode-map): Add a menu bar.
5050 (eww-add-bookmark): New command.
5051 (eww-bookmark-mode): New mode and commands.
5052 (eww-add-bookmark): Remove newlines from the title.
5053 (eww-bookmark-browse): Don't bug out if it's the only window.
5054
5055 2013-06-26 Glenn Morris <rgm@gnu.org>
5056
5057 * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
5058 (hfy-size): Handle ttys. (Bug#14668)
5059
5060 * info-xref.el: Update for Texinfo 5 change in *note format.
5061 (info-xref-node-re, info-xref-note-re): New constants.
5062 (info-xref-check-buffer): Use info-xref-note-re.
5063
5064 2013-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5065
5066 * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
5067
5068 * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
5069 nil terminate the loop (bug#14718).
5070
5071 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5072
5073 * net/eww.el: Rework history traversal. When going forward/back,
5074 put these actions into the history, too, so that they can be
5075 replayed.
5076 (eww-render): Move the history reset to the correct buffer.
5077
5078 2013-06-25 Juri Linkov <juri@jurta.org>
5079
5080 * files-x.el (modify-dir-local-variable): Change the header comment
5081 in the file with directory local variables. (Bug#14692)
5082
5083 * files-x.el (read-file-local-variable-value): Add `default'.
5084 (Bug#14710)
5085
5086 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5087
5088 * net/eww.el (eww-make-unique-file-name): Create a unique file
5089 name before saving to entering `y' accidentally asynchronously.
5090
5091 2013-06-25 Ivan Kanis <ivan@kanis.fr>
5092
5093 * net/eww.el (eww-download): New command and keystroke.
5094
5095 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5096
5097 * net/eww.el (eww-copy-page-url): Change name of command.
5098
5099 * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
5100 be more consistent with Info and dired.
5101
5102 * net/eww.el (eww-mode-map): Ditto.
5103
5104 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5105
5106 * emacs-lisp/package.el: Use lexical-binding. Include obsolete
5107 packages from archives.
5108 (package-archive-contents): Change format; include obsolete packages.
5109 (package-desc): Use `dir' to mark builtin packages.
5110 (package--from-builtin): Set the `dir' field to `builtin'.
5111 (generated-autoload-file, version-control): Declare.
5112 (package-compute-transaction): Change first arg and return value to be
5113 lists of package-descs. Adjust to new package-archive-contents format.
5114 (package--add-to-archive-contents): Adjust to new
5115 package-archive-contents format.
5116 (package-download-transaction): Arg is now a list of package-descs.
5117 (package-install): If `pkg' is a package name, pass it as
5118 a requirement, so it is subject to the usual (e.g. disabled) checks.
5119 (describe-package): Accept package-desc as well.
5120 (describe-package-1): Describe a specific package-desc. Add links to
5121 other package-descs for the same package name.
5122 (package-menu-describe-package): Pass the actual package-desc.
5123 (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
5124 works correctly.
5125 (package-desc-status): New function.
5126 (package-menu--refresh): New function, extracted
5127 from package-menu--generate.
5128 (package-menu--generate): Use it.
5129 (package-delete): Update package-alist.
5130 (package-menu-execute): Don't call package-initialize.
5131
5132 * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
5133 progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
5134 progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
5135 progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
5136 progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
5137 emacs-lisp/cl-macs.el: Neuter the "Version:" header.
5138
5139 2013-06-25 Martin Rudalics <rudalics@gmx.at>
5140
5141 * window.el (window--state-get-1): Workaround for bug#14527.
5142 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
5143
5144 2013-06-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
5145
5146 * net/eww.el (eww-back-url): Implement the history by stashing all
5147 the data into a list.
5148 (eww-forward-url): Allow going forward in the history, too.
5149
5150 2013-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5151
5152 * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
5153 for values and use read--expression for expressions (bug#14710).
5154 (read-file-local-variable): Avoid setq.
5155 (read-file-local-variable-mode): Use minor-mode-list.
5156
5157 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5158
5159 * textmodes/bibtex.el (bibtex-generate-url-list): Add support
5160 for DOI URLs.
5161
5162 2013-06-25 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
5163
5164 * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
5165 Update imenu-support when dialect changes.
5166
5167 2013-06-25 Leo Liu <sdl.web@gmail.com>
5168
5169 * ido.el (ido-read-internal): Allow forward slash on windows.
5170
5171 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5172
5173 * net/eww.el (eww): Start of strings is \\`, not ^.
5174
5175 2013-06-24 Ivan Kanis <ivan@kanis.fr>
5176
5177 * net/shr.el (shr-browse-url): Fix interactive spec.
5178
5179 * net/eww.el (eww): Add a trailing slash to domain names.
5180
5181 2013-06-24 Juanma Barranquero <lekktu@gmail.com>
5182
5183 * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
5184
5185 2013-06-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5186
5187 * net/shr.el (shr-browse-url): Use an external browser if given a
5188 prefix.
5189
5190 * net/eww.el (eww-external-browser): Move to shr.
5191
5192 2013-06-24 Ivan Kanis <ivan@kanis.fr>
5193
5194 * net/eww.el (eww): Work more correctly for file: URLs.
5195 (eww-detect-charset): Allow quoted charsets.
5196 (eww-yank-page-url): New command and keystroke.
5197
5198 2013-06-24 Daiki Ueno <ueno@gnu.org>
5199
5200 * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
5201 file name of gpg executable.
5202 (epg-context-program): New function.
5203 (epg-context-home-directory): New function.
5204 (epg-context-set-program): New function.
5205 (epg-context-set-home-directory): New function.
5206 (epg--start): Use `epg-context-program' instead of
5207 'epg-gpg-program'.
5208 (epg--list-keys-1): Likewise.
5209
5210 2013-06-24 Leo Liu <sdl.web@gmail.com>
5211
5212 * ido.el (ido-read-internal): Fix bug#14620.
5213
5214 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5215
5216 * faces.el (face-documentation): Simplify.
5217 (read-face-attribute, tty-find-type, x-resolve-font-name):
5218 Use `string-match-p'.
5219 (list-faces-display): Use `string-match-p'. Simplify.
5220 (face-spec-recalc): Check face to avoid face alias loops.
5221 (read-color): Use `string-match-p' and non-capturing parenthesis.
5222
5223 2013-06-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
5224
5225 * net/shr.el (shr-rescale-image): Use the new
5226 :max-width/:max-height functionality.
5227
5228 2013-06-23 Ivan Kanis <ivan@kanis.fr>
5229
5230 * net/eww.el (eww-search-prefix): New variable.
5231 (eww): Use it.
5232 (eww-external-browser): New variable.
5233 (eww-mode-map): New keystroke.
5234 (eww-browse-with-external-browser): New command.
5235
5236 * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
5237
5238 2013-06-23 Juanma Barranquero <lekktu@gmail.com>
5239
5240 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
5241 Don't skip aligning the next header field when padding is 0;
5242 otherwise, field width is not respected unless the title is as
5243 wide as the field.
5244
5245 2013-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5246
5247 * emacs-lisp/package.el (package-el-version): Remove.
5248 (package-process-define-package): Fix inf-loop.
5249 (package-install): Allow symbols as arguments again.
5250
5251 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5252
5253 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
5254 add some more keyword-like methods.
5255 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
5256
5257 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
5258
5259 * bs.el (bs-buffer-show-mark): Make defvar-local.
5260 (bs-mode): Use setq-local.
5261
5262 * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
5263 (emacs-lock--try-unlocking): Make defvar-local.
5264
5265 2013-06-22 Glenn Morris <rgm@gnu.org>
5266
5267 * play/cookie1.el (cookie-apropos): Minor simplification.
5268
5269 * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
5270
5271 2013-06-22 Dmitry Gutov <dgutov@yandex.ru>
5272
5273 * progmodes/ruby-mode.el (auto-mode-alist): Do not use
5274 `regexp-opt', it breaks the build during dumping.
5275
5276 2013-06-21 Dmitry Gutov <dgutov@yandex.ru>
5277
5278 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5279 Highlight keyword-like methods on Kernel and Module with
5280 font-lock-builtin-face.
5281 (auto-mode-alist): Consolidate different entries into one regexp
5282 and add more *file-s.
5283
5284 2013-06-21 Stephen Berman <stephen.berman@gmx.net>
5285
5286 * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
5287
5288 * calendar/diary-lib.el (diary-goto-entry-function): New variable.
5289 (diary-entry): Use it in the action of this button type instead of
5290 diary-goto-entry.
5291
5292 * calendar/todo-mode.el: New version.
5293 (todo-add-category): Append new category to end of file and give
5294 it the highest number, instead of putting it at the beginning and
5295 giving it 0. Incorporate noninteractive functionality.
5296 (todo-forward-category): Adapt to 1-based category numbering.
5297 Allow skipping over archived categories.
5298 (todo-backward-category): Derive from todo-forward-category.
5299 (todo-backward-item, todo-forward-item): Make noninteractive and
5300 delegate interactive part to new commands. Make sensitive to done items.
5301 (todo-categories): Make value an alist of category names and
5302 vectors of item counts.
5303 (todo-category-beg): Make a defconst.
5304 (todo-category-number): Use 1 instead of 0 as initial value.
5305 (todo-category-select): Make sensitive to overlays, optional item
5306 highlighting and done items.
5307 (todo-delete-item): Make sensitive to overlays and marked and done items.
5308 (todo-edit-item): Make sensitive to overlays and editing of
5309 date/time header optional. Add format checks.
5310 (todo-edit-multiline): Rename to todo-edit-multiline-item. Make a
5311 no-op if point is not on an item. Advertise using todo-edit-quit.
5312 (todo-edit-mode): Make sensitive to new format, font-locking, and
5313 multiple todo files.
5314 (todo-insert-item, todo-insert-item-here): Derive from
5315 todo-basic-insert-item and extend functionality.
5316 (todo-item-end, todo-item-start): Make sensitive to done items.
5317 (todo-item-string): Don't return text properties. Restore point.
5318 (todo-jump-to-category): Make sensitive to multiple todo files and
5319 todo archives. Use extended category completion.
5320 (todo-lower-item, todo-raise-item): Rename to *-priority and
5321 derive from todo-set-item-priority.
5322 (todo-mode): Derive from special-mode. Make sensitive to new
5323 format, font-locking and multiple todo files. Make read-only.
5324 (todo-mode-map): Don't suppress digit keys, so they can supply
5325 prefix arguments. Add many new key bindings.
5326 (todo-prefix): Insert as an overlay instead of file text.
5327 Change semantics from diary date expression to purely visual mark.
5328 (todo-print): Rename to todo-print-buffer. Make buffer display
5329 features printable. Remove option to restrict number of items
5330 printed. Add option to print to file.
5331 (todo-print-function): Rename to todo-print-buffer-function.
5332 (todo-quit): Extend to handle exiting new todo modes.
5333 (todo-remove-item): Make sensitive to overlays.
5334 (todo-save): Extend to buffers of filtered items.
5335 (todo-show): Make sensitive to done items, multiple todo files and
5336 new todo modes. Offer to convert legacy todo file before creating
5337 first new todo file.
5338 (todo-show-priorities): Rename to todo-top-priorities.
5339 Change semantics of value 0.
5340 (todo-top-priorities): Rename to todo-filter-top-priorities,
5341 derive from todo-filter-items and extend functionality.
5342 (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
5343 and extend functionality to other types of filtered items.
5344 (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
5345 (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
5346 (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
5347 (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
5348 (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
5349 (todo-edit-mode-hook, todo-entry-prefix-function)
5350 (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
5351 (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
5352 (todo-initials, todo-insert-threshold, todo-item-string-start)
5353 (todo-line-string, todo-menu, todo-mode-hook)
5354 (todo-more-important-p, todo-previous-answer, todo-previous-line)
5355 (todo-print-priorities, todo-remove-separator)
5356 (todo-save-top-priorities-too, todo-string-count-lines)
5357 (todo-string-multiline-p, todo-time-string-format)
5358 (todo-tmp-buffer-name): Remove.
5359 (todo-add-file, todo-archive-done-item, todo-choose-archive)
5360 (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
5361 (todo-edit-category-diary-inclusion)
5362 (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
5363 (todo-edit-file, todo-edit-item-date-day)
5364 (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
5365 (todo-edit-item-date-month, todo-edit-item-date-to-today)
5366 (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
5367 (todo-edit-item-diary-nonmarking, todo-edit-item-header)
5368 (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
5369 (todo-filter-diary-items-multifile, todo-filter-regexp-items)
5370 (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
5371 (todo-filter-top-priorities-multifile, todo-find-archive)
5372 (todo-find-filtered-items-file, todo-go-to-source-item)
5373 (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
5374 (todo-jump-to-archive-category, todo-lower-category)
5375 (todo-mark-category, todo-marked-item-p, todo-merge-category)
5376 (todo-move-category, todo-move-item, todo-next-button)
5377 (todo-next-item, todo-padded-string, todo-powerset)
5378 (todo-previous-button, todo-previous-item)
5379 (todo-print-buffer-to-file, todo-raise-category)
5380 (todo-rename-category, todo-repair-categories-sexp, todo-search)
5381 (todo-set-category-number, todo-set-item-priority)
5382 (todo-set-top-priorities-in-category)
5383 (todo-set-top-priorities-in-file, todo-show-categories-table)
5384 (todo-sort-categories-alphabetically-or-numerically)
5385 (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
5386 (todo-sort-categories-by-done, todo-sort-categories-by-todo)
5387 (todo-toggle-item-header, todo-toggle-item-highlighting)
5388 (todo-toggle-mark-item, todo-toggle-prefix-numbers)
5389 (todo-toggle-view-done-items, todo-toggle-view-done-only)
5390 (todo-unarchive-items, todo-unmark-category): New commands.
5391 (todo-absolute-file-name, todo-add-to-buffer-list)
5392 (todo-adjusted-category-label-length, todo-basic-edit-item-header)
5393 (todo-basic-insert-item, todo-category-completions)
5394 (todo-category-number, todo-category-string-matcher-1)
5395 (todo-category-string-matcher-2, todo-check-filtered-items-file)
5396 (todo-check-format, todo-clear-matches)
5397 (todo-comment-string-matcher, todo-convert-legacy-date-time)
5398 (todo-current-category, todo-date-string-matcher)
5399 (todo-define-insertion-command, todo-diary-expired-matcher)
5400 (todo-diary-goto-entry, todo-diary-item-p)
5401 (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
5402 (todo-display-categories, todo-display-sorted, todo-done-item-p)
5403 (todo-done-item-section-p, todo-done-separator)
5404 (todo-done-string-matcher, todo-files, todo-filter-items)
5405 (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
5406 (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
5407 (todo-insert-category-line, todo-insert-item-from-calendar)
5408 (todo-insert-sort-button, todo-insert-with-overlays)
5409 (todo-insertion-command-name, todo-insertion-key-bindings)
5410 (todo-label-to-key, todo-longest-category-name-length)
5411 (todo-make-categories-list, todo-mode-external-set)
5412 (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
5413 (todo-modes-set-3, todo-multiple-filter-files)
5414 (todo-nondiary-marker-matcher, todo-prefix-overlays)
5415 (todo-read-category, todo-read-date, todo-read-dayname)
5416 (todo-read-file-name, todo-read-time)
5417 (todo-reevaluate-category-completions-files-defcustom)
5418 (todo-reevaluate-default-file-defcustom)
5419 (todo-reevaluate-filelist-defcustoms)
5420 (todo-reevaluate-filter-files-defcustom)
5421 (todo-reset-and-enable-done-separator, todo-reset-comment-string)
5422 (todo-reset-done-separator, todo-reset-done-separator-string)
5423 (todo-reset-done-string, todo-reset-global-current-todo-file)
5424 (todo-reset-highlight-item, todo-reset-nondiary-marker)
5425 (todo-reset-prefix, todo-set-categories)
5426 (todo-set-date-from-calendar, todo-set-show-current-file)
5427 (todo-set-top-priorities, todo-short-file-name)
5428 (todo-show-current-file, todo-sort, todo-time-string-matcher)
5429 (todo-total-item-counts, todo-update-buffer-list)
5430 (todo-update-categories-display, todo-update-categories-sexp)
5431 (todo-update-count, todo-validate-name, todo-y-or-n-p):
5432 New functions.
5433 (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
5434 New major modes.
5435 (todo-categories, todo-display, todo-edit, todo-faces)
5436 (todo-filtered): New defgroups.
5437 (todo-archived-only, todo-button, todo-category-string, todo-date)
5438 (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
5439 (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
5440 (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
5441 (todo-add-item-if-new-category, todo-always-add-time-string)
5442 (todo-categories-align, todo-categories-archived-label)
5443 (todo-categories-category-label, todo-categories-diary-label)
5444 (todo-categories-done-label, todo-categories-number-separator)
5445 (todo-categories-todo-label, todo-categories-totals-label)
5446 (todo-category-completions-files, todo-completion-ignore-case)
5447 (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
5448 (todo-done-separator-string, todo-done-string)
5449 (todo-files-function, todo-filter-done-items, todo-filter-files)
5450 (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
5451 (todo-initial-category, todo-initial-file, todo-item-mark)
5452 (todo-legacy-date-time-regexp, todo-mode-line-function)
5453 (todo-nondiary-marker, todo-number-prefix)
5454 (todo-print-buffer-function, todo-show-current-file)
5455 (todo-show-done-only, todo-show-first, todo-show-with-done)
5456 (todo-skip-archived-categories, todo-top-priorities-overrides)
5457 (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
5458 (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
5459 New defcustoms.
5460 (todo-category-done, todo-date-pattern, todo-date-string-start)
5461 (todo-diary-items-buffer, todo-done-string-start)
5462 (todo-filtered-items-buffer, todo-item-start)
5463 (todo-month-abbrev-array, todo-month-name-array)
5464 (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
5465 (todo-top-priorities-buffer): New defconsts.
5466 (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
5467 (todo-categories-with-marks, todo-category-string-face)
5468 (todo-comment-face, todo-comment-string, todo-current-todo-file)
5469 (todo-date-face, todo-date-from-calendar, todo-descending-counts)
5470 (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
5471 (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
5472 (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
5473 (todo-font-lock-keywords, todo-global-current-todo-file)
5474 (todo-insertion-commands, todo-insertion-commands-arg-key-list)
5475 (todo-insertion-commands-args)
5476 (todo-insertion-commands-args-genlist)
5477 (todo-insertion-commands-names, todo-insertion-map)
5478 (todo-key-bindings-t, todo-key-bindings-t+a)
5479 (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
5480 (todo-multiple-filter-files, todo-multiple-filter-files-widget)
5481 (todo-nondiary-face, todo-print-buffer, todo-time-face)
5482 (todo-visited): New variables.
5483
5484 2013-06-21 Glenn Morris <rgm@gnu.org>
5485
5486 * play/cookie1.el (cookie-apropos): Add optional display argument.
5487 * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
5488 (psychoanalyze-pinhead): Use cookie-doctor.
5489
5490 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5491
5492 * emacs-lisp/package.el (tar-get-file-descriptor)
5493 (tar--extract): Declare.
5494
5495 2013-06-21 Eduard Wiebe <usenet@pusto.de>
5496
5497 Extend flymake's warning predicate to be a function (bug#14217).
5498 * progmodes/flymake.el (flymake-warning-predicate): New.
5499 (flymake-parse-line): Use it.
5500 (flymake-warning-re): Make obsolete alias to
5501 `flymake-warning-predicate'.
5502
5503 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5504
5505 * emacs-lisp/package.el (package-alist): Include obsolete packages.
5506 (package-obsolete-list): Remove.
5507 (package-activate): Remove min-version argument. Add `force' argument.
5508 Adjust to new package-alist format.
5509 (package-mark-obsolete): Remove.
5510 (package-unpack): Force reload of the package's autoloads.
5511 (package-installed-p): Check builtins if the installed package is not
5512 recent enough.
5513 (package-initialize): Don't reset package-obsolete-list.
5514 Don't specify which package version to activate.
5515 (package-process-define-package, describe-package-1)
5516 (package-menu--generate): Adjust to new package-alist format.
5517
5518 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5519
5520 * allout-widgets.el (allout-widgets-mode-off)
5521 (allout-widgets-mode-on, allout-widgets-pre-command-business)
5522 (allout-widgets-post-command-business)
5523 (allout-widgets-after-copy-or-kill-function)
5524 (allout-widgets-after-undo-function, allout-test-range-overlaps)
5525 (allout-decorate-item-and-context)
5526 (allout-graphics-modification-handler): Fix typos in docstrings.
5527 (allout-get-or-create-parent-widget): Use `looking-at-p'.
5528
5529 * cmuscheme.el (scheme-start-file): Doc fix.
5530 (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
5531 (scheme-input-filter): Use `string-match-p'.
5532
5533 * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
5534
5535 * dired-x.el: Use Dired consistently in docstrings.
5536
5537 * dired.el: Use Dired consistently in docstrings.
5538 (dired-readin, dired-mode): Use `setq-local'.
5539 (dired-switches-alist): Make defvar-local.
5540 (dired-buffers-for-dir): Use `zerop'.
5541 (dired-safe-switches-p, dired-switches-escape-p)
5542 (dired-insert-old-subdirs, dired-move-to-end-of-filename)
5543 (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
5544 (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
5545 (dired-goto-next-nontrivial-file): Use `string-match-p'.
5546 (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
5547 (dired-toggle-marks, dired-mark-files-containing-regexp)
5548 (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
5549 (dired-flag-auto-save-files, dired-flag-backup-files):
5550 Use `looking-at-p'.
5551 (dired-mark-files-regexp, dired-build-subdir-alist):
5552 Use `string-match-p', `looking-at-p'.
5553
5554 * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
5555 (direct-print-region-helper): Use `string-match-p'.
5556
5557 2013-06-21 Leo Liu <sdl.web@gmail.com>
5558
5559 * comint.el (comint-redirect-results-list-from-process):
5560 Fix infinite loop.
5561
5562 2013-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5563
5564 * net/eww.el (eww-update-header-line-format): Quote % characters.
5565
5566 2013-06-21 Glenn Morris <rgm@gnu.org>
5567
5568 * play/cookie1.el (cookie): New custom group.
5569 (cookie-file): New option.
5570 (cookie-check-file): New function.
5571 (cookie): Make it interactive. Make start and end messages optional.
5572 Interactively, display the result. Default to cookie-file.
5573 (cookie-insert): Default to cookie-file.
5574 (cookie-snarf): Make start and end messages optional.
5575 Default to cookie-file. Use with-temp-buffer.
5576 (cookie-read): Rename from read-cookie.
5577 Make start and end messages optional. Default to cookie-file.
5578 (cookie-shuffle-vector): Rename from shuffle-vector. Use dotimes.
5579 Do not autoload it.
5580 (cookie-apropos, cookie-doctor): New functions, copied from yow.el
5581 * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
5582
5583 2013-06-21 Leo Liu <sdl.web@gmail.com>
5584
5585 * progmodes/octave.el (octave-mode): Backward compatibility fix.
5586
5587 2013-06-21 Glenn Morris <rgm@gnu.org>
5588
5589 * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
5590
5591 2013-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5592 Daniel Hackney <dan@haxney.org>
5593
5594 * emacs-lisp/package.el: Use tar-mode rather than tar executable.
5595 Consolidate the single-file vs tarball code.
5596 (package-desc-suffix): New function.
5597 (package-desc-full-name): Don't bother inlining it.
5598 (package-load-descriptor): Return the new package-desc.
5599 (package-mark-obsolete): Remove unused arg `package'.
5600 (package-unpack): Make it work for single files as well.
5601 Make it update package-alist.
5602 (package--make-autoloads-and-stuff): Rename from
5603 package--make-autoloads-and-compile. Don't compile any more.
5604 (package--compile): New function.
5605 (package-generate-description-file): New function, extracted from
5606 package-unpack-single.
5607 (package-unpack-single): Remove.
5608 (package--with-work-buffer): Add indentation and debugging info.
5609 (package-download-single): Remove.
5610 (package-install-from-archive): Rename from package-download-tar, make
5611 it take a pkg-desc, and make it work for single files as well.
5612 (package-download-transaction): Simplify.
5613 (package-tar-file-info): Remove `file' arg. Rewrite not to use an
5614 external tar program.
5615 (package-install-from-buffer): Remove `pkg-desc' argument.
5616 Use package-tar-file-info for tar-mode buffers.
5617 (package-install-file): Simplify accordingly.
5618 (package-archive-base): Change to take a pkg-desc.
5619 * tar-mode.el (tar--check-descriptor): New function, extracted from
5620 tar-get-descriptor.
5621 (tar-get-descriptor): Use it.
5622 (tar-get-file-descriptor): New function.
5623 (tar--extract): New function, extracted from tar-extract.
5624 (tar--extract): Use it.
5625 * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
5626 case the summary uses non-ascii. Adjust to new calling convention of
5627 package-tar-file-info.
5628
5629 2013-06-21 Leo Liu <sdl.web@gmail.com>
5630
5631 * comint.el (comint-redirect-results-list-from-process):
5632 Fix random delay. (Bug#14681)
5633
5634 2013-06-21 Juanma Barranquero <lekktu@gmail.com>
5635
5636 * profiler.el (profiler-format-number): Use log, not log10.
5637
5638 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5639
5640 * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
5641
5642 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5643
5644 * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
5645 * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
5646 yet available.
5647 * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
5648 (AUTOGENEL): ... here.
5649 * emacs-lisp/cl-macs.el (cl--sublis): New function.
5650 (cl--defsubst-expand): Use it.
5651
5652 2013-06-20 Paul Eggert <eggert@cs.ucla.edu>
5653
5654 * subr.el (log10): Move here from C code, and declare as obsolete.
5655 All uses of (log10 X) replaced with (log X 10).
5656
5657 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5658
5659 * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
5660 Declare with `defvar-local'.
5661 (tabulated-list-use-header-line, tabulated-list-entries)
5662 (tabulated-list-padding, tabulated-list-printer)
5663 (tabulated-list-sort-key): Declare with `defvar-local'.
5664 (tabulated-list-init-header, tabulated-list-print-fake-header):
5665 Use `setq-local'.
5666
5667 2013-06-20 Michael Albinus <michael.albinus@gmx.de>
5668
5669 * arc-mode.el (archive-mode): Add `archive-write-file' to
5670 `write-contents-functions' also for remote files. (Bug#14652)
5671
5672 2013-06-20 Juanma Barranquero <lekktu@gmail.com>
5673
5674 * cus-edit.el (custom-commands): Fix typos.
5675 (custom-display): Fix tooltip text.
5676 (custom-magic-alist, custom-filter-face-spec, custom-group-members):
5677 Fix typos in docstrings.
5678 (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
5679 (custom-unlispify-menu-entry, custom-magic-value-create)
5680 (custom-add-see-also, custom-group-value-create): Use ?\s.
5681 (custom-guess-type, customize-apropos, editable-field)
5682 (custom-face-value-create): Use `string-match-p'.
5683 (custom-save-variables, custom-save-faces): Use `looking-at-p'.
5684
5685 * custom.el (custom-load-symbol): Use `string-match-p'.
5686
5687 * ansi-color.el: Convert to lexical binding.
5688 (ansi-colors): Fix URL.
5689 (ansi-color-context, ansi-color-context-region): Use defvar-local.
5690 (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
5691 (ansi-color-make-color-map): Rename local var ansi-color-map to map.
5692
5693 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5694
5695 * net/eww.el (eww-process-text-input): Display passwords as asterisks.
5696
5697 * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
5698
5699 2013-06-19 Tom Tromey <tromey@redhat.com>
5700
5701 * net/eww.el (eww-top-url): Remove.
5702 (eww-home-url, eww-start-url, eww-contents-url): New defvars.
5703 (eww-render): Set new variables. Don't set eww-top-url.
5704 (eww-handle-link): Handle "prev", "home", and "contents".
5705 Downcase the rel text.
5706 (eww-top-url): Choose best top URL.
5707
5708 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5709
5710 * net/eww.el: Rewrite to implement form elements "by hand" instead of
5711 relying in widget.el. Using widget.el leads to too many
5712 user interface inconsistencies.
5713 (eww-self-insert): Implement entering commands in text fields.
5714 (eww-process-text-input): New function to make text input field editing
5715 work.
5716 (eww-submit): Rewrite to use the new-style form methods.
5717 (eww-select-display): Display the correct selected item.
5718 (eww-change-select): Implement changing the select value.
5719 (eww-toggle-checkbox): Implement radio/checkboxes.
5720 (eww-update-field): Fix compilation error.
5721 (eww-tag-textarea): Implement <textarea>.
5722
5723 * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
5724 we don't shadow mode-specific bindings.
5725
5726 * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
5727 nothing to push.
5728
5729 * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
5730
5731 2013-06-19 Glenn Morris <rgm@gnu.org>
5732
5733 * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
5734
5735 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5736
5737 * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
5738 not needed.
5739
5740 * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
5741
5742 2013-06-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
5743
5744 * net/browse-url.el (browse-url-browser-function):
5745 `eww-browse-url' has the right calling signature, `eww' does not.
5746
5747 2013-06-19 Glenn Morris <rgm@gnu.org>
5748
5749 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
5750 Only eval autoloaded macros.
5751 (byte-compile-autoload): Only give the macro warning for macros.
5752
5753 * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
5754 (ps-underlined-faces): Declare.
5755
5756 * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
5757 (speedbar-add-supported-extension): Declare.
5758
5759 * international/titdic-cnv.el (tit-process-header, miscdic-convert):
5760 Don't include a date stamp in the header of the generated file;
5761 it leads to needless differences between output files.
5762
5763 2013-06-19 Michael Albinus <michael.albinus@gmx.de>
5764
5765 * net/secrets.el (secrets-struct-secret-content-type):
5766 Replace check of introspection data by a test call of "CreateItem".
5767 Some servers do not offer introspection.
5768
5769 2013-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5770
5771 * electric.el (electric-pair-mode): Improve interaction with
5772 electric-layout-mode.
5773 (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
5774 (electric-pair-syntax): Use text-mode-syntax-table in comments
5775 and strings.
5776 (electric-pair--insert): New function.
5777 (electric-pair-post-self-insert-function): Use it and
5778 electric--after-char-pos.
5779
5780 2013-06-19 Leo Liu <sdl.web@gmail.com>
5781
5782 * progmodes/octave.el (octave-help): Fix regexp.
5783
5784 2013-06-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
5785
5786 * net/shr.el (shr-make-table-1): Implement <td rowspan>.
5787 (shr-table-horizontal-line): Allow nil as a value, and change the
5788 default.
5789 (shr-insert-table-ruler): Respect the nil value.
5790
5791 2013-06-18 Tom Tromey <tromey@barimba>
5792
5793 * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5794 New defvars.
5795 (eww-open-file): New defun.
5796 (eww-render): Initialize new variables.
5797 (eww-display-html): Handle "link" and "a".
5798 (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
5799 (eww-mode-map): Move "p" to "l". Bind "p", "n", "t", and "u".
5800 (eww-back-url): Rename from eww-previous-url.
5801 (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
5802 New defuns.
5803
5804 2013-06-18 Dmitry Gutov <dgutov@yandex.ru>
5805
5806 * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
5807 Distinguish ternary operator tokens from slash symbol and slash
5808 char literal.
5809
5810 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5811
5812 Convert symbol prettification into minor mode and global minor mode.
5813
5814 * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
5815 `prog-prettify-symbols', and make a local defvar instead of defcustom.
5816 (prettify-symbols--keywords): Rename from
5817 `prog-prettify-symbols-alist' and make a local defvar.
5818 (prettify-symbols--compose-symbol): Rename from
5819 `prog--prettify-font-lock-compose-symbol'.
5820 (prettify-symbols--make-keywords): Rename from
5821 `prog-prettify-font-lock-symbols-keywords' and simplify.
5822 (prog-prettify-install): Remove.
5823 (prettify-symbols-mode): New minor mode, based on
5824 `prog-prettify-install'.
5825 (turn-on-prettify-symbols-mode): New function.
5826 (global-prettify-symbols-mode): New globalized minor mode.
5827
5828 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5829 * progmodes/cfengine.el (cfengine3-mode):
5830 * progmodes/perl-mode.el (perl-mode): Don't call
5831 `prog-prettify-install'; set `prettify-symbols-alist' instead.
5832
5833 2013-06-18 Juri Linkov <juri@jurta.org>
5834
5835 * files-x.el (modify-file-local-variable-message): New function.
5836 (modify-file-local-variable)
5837 (modify-file-local-variable-prop-line): Add arg INTERACTIVE
5838 and call `modify-file-local-variable-message' when it's non-nil.
5839 (add-file-local-variable, delete-file-local-variable)
5840 (add-file-local-variable-prop-line)
5841 (delete-file-local-variable-prop-line): Add arg INTERACTIVE
5842 and use it. (Bug#9820)
5843
5844 2013-06-18 Juri Linkov <juri@jurta.org>
5845
5846 * emulation/vi.el (vi-shell-op):
5847 * emulation/vip.el (vip-execute-com, ex-command):
5848 * emulation/viper-cmd.el (viper-exec-bang):
5849 * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
5850 the call of `shell-command-on-region'. (Bug#14637)
5851
5852 * simple.el (shell-command-on-region): Doc fix.
5853
5854 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5855
5856 * emacs-lisp/eieio-custom.el: Remove misleading Version: header
5857 (bug#14633).
5858
5859 2013-06-18 Glenn Morris <rgm@gnu.org>
5860
5861 * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
5862
5863 * newcomment.el (comment-search-forward, comment-search-backward):
5864 Doc fix. (Bug#14376)
5865
5866 2013-06-18 Juanma Barranquero <lekktu@gmail.com>
5867
5868 * face-remap.el (buffer-face-toggle): Fix typo in docstring.
5869 (buffer-face-mode-invoke): Doc fix.
5870
5871 2013-06-18 Matthias Meulien <orontee@gmail.com>
5872
5873 * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
5874 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
5875
5876 2013-06-18 Glenn Morris <rgm@gnu.org>
5877
5878 * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
5879 Replace obsolete function generic-make-keywords with its expansion.
5880
5881 * progmodes/python.el (ffap-alist): Declare.
5882
5883 * textmodes/reftex.el (bibtex-mode-map): Declare.
5884
5885 2013-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5886
5887 * emacs-lisp/package.el: Update package-alist after install (bug#14632).
5888 (package-unpack, package-unpack-single): Return the pkg-dir.
5889 (package-download-transaction): Use it to update package-alist.
5890
5891 2013-06-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5892
5893 * net/browse-url.el (browse-url-browser-function): Add `eww' as a
5894 possible choice.
5895
5896 2013-06-17 Juri Linkov <juri@jurta.org>
5897
5898 * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
5899
5900 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5901
5902 * emacs-lisp/package.el (package-load-descriptor):
5903 Remove `with-syntax-table' call, `read' doesn't need it.
5904 http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
5905
5906 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5907
5908 * startup.el (command-line): Expand package name returned by
5909 `package--description-file' (bug#14639).
5910
5911 2013-06-17 Dmitry Gutov <dgutov@yandex.ru>
5912
5913 * emacs-lisp/package.el (package-load-descriptor): Do not call
5914 `emacs-lisp-mode', just use its syntax table.
5915
5916 2013-06-17 Juanma Barranquero <lekktu@gmail.com>
5917
5918 * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
5919 `font-lock-extra-managed-props' if any prettifying keyword is added.
5920 (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
5921 (prog-mode): Use `setq-local'.
5922
5923 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
5924
5925 * international/characters.el (standard-case-table): Set syntax of ?»
5926 and ?« to punctuation.
5927
5928 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
5929
5930 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
5931 Save relevant match data before calling `syntax-ppss' (bug#14595).
5932
5933 2013-06-15 Juri Linkov <juri@jurta.org>
5934
5935 * files-x.el (modify-file-local-variable-prop-line): Add local
5936 variables to the end of the existing comment on the first line.
5937 Use `file-auto-mode-skip' to skip interpreter magic line,
5938 and also skip XML declaration.
5939
5940 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
5941
5942 * startup.el (package--builtin-versions): New var.
5943 (package-subdirectory-regexp): Remove.
5944 (package--description-file): Hard code its value instead.
5945
5946 * emacs-lisp/package.el: Don't activate packages older than builtin.
5947 (package-obsolete-list): Rename from package-obsolete-alist, and make
5948 it into a simple list of package-desc.
5949 (package-strip-version): Remove.
5950 (package-built-in-p): Use package--builtin-versions.
5951 (package-mark-obsolete): Simplify.
5952 (package-process-define-package): Mark it obsolete if older than the
5953 builtin version.
5954 (package-handle-response): Use line-end-position.
5955 (package-read-archive-contents, package--download-one-archive):
5956 Simplify.
5957 (package--add-to-archive-contents): Skip if older than the builtin or
5958 installed version.
5959 (package-menu-describe-package): Fix last change.
5960 (package-list-unversioned): New var.
5961 (package-menu--generate): Use it.
5962
5963 * emacs-lisp/autoload.el: Manage package--builtin-versions.
5964 (autoload--insert-text, autoload--insert-cookie-text): New functions.
5965 (autoload-builtin-package-versions): New variable.
5966 (autoload-generate-file-autoloads): Use them.
5967 Remove the list of autoloaded functions/macros from the
5968 (autoload...) comments.
5969
5970 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
5971
5972 2013-06-15 Eli Zaretskii <eliz@gnu.org>
5973
5974 * simple.el (line-move-partial): Don't jump to the next screen
5975 line as soon as it becomes visible. Instead, continue enlarging
5976 the vscroll until the portion of a tall screen line that's left on
5977 display is about the height of the frame's default font.
5978 (Bug#14567)
5979
5980 2013-06-15 Glenn Morris <rgm@gnu.org>
5981
5982 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
5983 compilation-error-regexp-alist void, or local while let-bound.
5984
5985 * progmodes/make-mode.el (makefile-mode-syntax-table):
5986 Treat "=" as punctuation. (Bug#14614)
5987
5988 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
5989
5990 * help-fns.el (describe-variable):
5991 Add extra line for permanent-local variables.
5992
5993 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
5994
5995 * progmodes/scheme.el (scheme-font-lock-keywords-2):
5996 Add export, import, library. (Bug#9164)
5997 (library): Set indent function.
5998
5999 2013-06-14 Glenn Morris <rgm@gnu.org>
6000
6001 * term/xterm.el (xterm--query):
6002 Stop after first matching handler. (Bug#14615)
6003
6004 2013-06-14 Ivan Kanis <ivan@kanis.fr>
6005
6006 Add support for dired in saveplace.
6007 * dired.el (dired-initial-position-hook): New variable.
6008 (dired-initial-position): Call hook to place cursor position.
6009 * saveplace.el (save-place-to-alist): Add dired position.
6010 (save-place-dired-hook): New function.
6011
6012 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
6013
6014 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
6015 through a symbol rather than letrec.
6016
6017 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
6018 (package-desc): Add `dir' field.
6019 (package-desc-full-name): New function.
6020 (package-load-descriptor): Combine the two arguments. Don't use `load'.
6021 (package-maybe-load-descriptor): Remove.
6022 (package-load-all-descriptors): Just call package-load-descriptor.
6023 (package--disabled-p): New function.
6024 (package-desc-vers, package-desc-doc): Remove aliases.
6025 (package--dir): Remove function.
6026 (package-activate): Check if a package is disabled.
6027 (package-process-define-package): New function, extracted from
6028 define-package.
6029 (define-package): Turn into a place holder.
6030 (package-unpack-single, package-tar-file-info):
6031 Use package--description-file.
6032 (package-compute-transaction): Use package--disabled-p.
6033 (package-download-transaction): Don't call
6034 package-maybe-load-descriptor since they're all loaded anyway.
6035 (package-install): Change argument to be a pkg-desc.
6036 (package-delete): Use a single pkg-desc argument.
6037 (describe-package-1): Use package-desc-dir instead of package--dir.
6038 Use package-desc property instead of package-symbol.
6039 (package-install-button-action): Adjust accordingly.
6040 (package--push): Rewrite.
6041 (package-menu--print-info): Adjust accordingly. Change the ID format
6042 to be a pkg-desc.
6043 (package-menu-describe-package, package-menu-get-status)
6044 (package-menu--find-upgrades, package-menu-mark-upgrades)
6045 (package-menu-execute, package-menu--name-predicate):
6046 Adjust accordingly.
6047 * startup.el (package--description-file): New function.
6048 (command-line): Use it.
6049 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6050 Use package-desc-version.
6051
6052 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
6053 (byte-compile-preprocess): Use it.
6054 (byte-compile-file-form-defalias): Try a bit harder to use macros we
6055 can't quite recognize.
6056 (byte-compile-add-to-list): Remove.
6057 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
6058 (cconv-closure-convert): Add assertion.
6059
6060 * emacs-lisp/map-ynp.el: Use lexical-binding.
6061 (map-y-or-n-p): Remove unused vars `tail' and `object'.
6062 Factor out some repeated code.
6063
6064 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6065
6066 * subr.el (with-eval-after-load): New macro.
6067 (eval-after-load): Allow form to be a function.
6068 take advantage of lexical-binding.
6069 (do-after-load-evaluation): Use dolist and adjust to new format.
6070 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
6071
6072 2013-06-13 Juri Linkov <juri@jurta.org>
6073
6074 * replace.el (perform-replace): Display "symbol " and other search
6075 modes from `isearch-message-prefix' in the *Help* buffer.
6076
6077 * isearch.el (isearch-query-replace): Add " symbol" and other
6078 possible search modes from `isearch-message-prefix' to the prompt.
6079 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
6080 when reading a regexp to collect.
6081
6082 2013-06-13 Juri Linkov <juri@jurta.org>
6083
6084 * isearch.el (word-search-regexp): Match whitespace if the search
6085 string begins or ends in whitespace. The LAX arg is applied to
6086 both ends of the search string. Use `regexp-quote' and explicit
6087 \< and \> instead of \b. Use \` and \' instead of ^ and $.
6088 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
6089 boundaries are replaced with symbol boundaries, and characters
6090 between symbols match non-word non-symbol syntax. (Bug#14602)
6091
6092 2013-06-13 Juri Linkov <juri@jurta.org>
6093
6094 * isearch.el (isearch-del-char): Don't exceed the length of
6095 `isearch-string' by the prefix arg. (Bug#14563)
6096
6097 2013-06-13 Juri Linkov <juri@jurta.org>
6098
6099 * isearch.el (isearch-yank-word, isearch-yank-line)
6100 (isearch-char-by-name, isearch-quote-char)
6101 (isearch-printing-char, isearch-process-search-char):
6102 Add optional count prefix arg. (Bug#14563)
6103
6104 * international/isearch-x.el
6105 (isearch-process-search-multibyte-characters):
6106 Add optional count prefix arg.
6107
6108 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6109
6110 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
6111 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
6112 lexical-binding.
6113
6114 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
6115
6116 * subr.el (set-temporary-overlay-map): Add on-exit argument.
6117
6118 2013-06-13 Glenn Morris <rgm@gnu.org>
6119
6120 * startup.el (tty-handle-args):
6121 Don't just discard "--" and anything after. (Bug#14608)
6122
6123 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
6124
6125 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
6126
6127 Implement changes in Secret Service API. Make it backward compatible.
6128 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
6129 (secrets-create-item): Use it. Prefix properties with interface.
6130
6131 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
6132
6133 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
6134 (term-emulate-terminal): Respect term-suppress-hard-newline.
6135
6136 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
6137
6138 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
6139 Only remove a `thumb-file' overlay. (Bug#14548)
6140
6141 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
6142
6143 * mail/reporter.el (reporter-submit-bug-report):
6144 Handle missing package-name. (Bug#14600)
6145
6146 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6147
6148 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
6149 (reftex-citation-prompt, reftex-default-bibliography)
6150 (reftex-bib-or-thebib, reftex-get-bibfile-list)
6151 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6152 (reftex-bib-sort-author, reftex-bib-sort-year)
6153 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
6154 (reftex-extract-bib-entries-from-thebibliography)
6155 (reftex-get-bibkey-default, reftex-get-bib-names)
6156 (reftex-parse-bibtex-entry, reftex-get-bib-field)
6157 (reftex-format-bib-entry, reftex-parse-bibitem)
6158 (reftex-format-bibitem, reftex-do-citation)
6159 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
6160 (reftex-restrict-bib-matches, reftex-extract-bib-file)
6161 (reftex-insert-bib-matches, reftex-format-citation)
6162 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
6163 (reftex-create-bibtex-file): Add docstrings, mostly by converting
6164 existing comments into docstrings.
6165
6166 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6167
6168 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
6169
6170 2013-06-12 Andreas Schwab <schwab@suse.de>
6171
6172 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
6173 for auto-save files.
6174
6175 2013-06-12 Glenn Morris <rgm@gnu.org>
6176
6177 * ido.el (ido-delete-ignored-files): Remove.
6178 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
6179 Go back to calling ido-ignore-item-p directly.
6180
6181 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
6182
6183 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
6184
6185 * ido.el (ido-delete-ignored-files): New function,
6186 split from ido-make-file-list-1.
6187 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
6188 (ido-make-file-list-1): Use ido-delete-ignored-files.
6189
6190 2013-06-12 Leo Liu <sdl.web@gmail.com>
6191
6192 * progmodes/octave.el (inferior-octave-startup)
6193 (inferior-octave-completion-table)
6194 (inferior-octave-track-window-width-change)
6195 (octave-eldoc-function-signatures, octave-help)
6196 (octave-find-definition): Use single quoted strings.
6197 (inferior-octave-startup-args): Change default value.
6198 (inferior-octave-startup): Do not hard code "-i" and
6199 "--no-line-editing".
6200 (inferior-octave-resync-dirs): Add optional arg NOERROR.
6201 (inferior-octave-directory-tracker): Use it.
6202 (octave-goto-function-definition): Robustify.
6203 (octave-help): Support highlighting operators in 'See also'.
6204 (octave-find-definition): Find subfunctions only in Octave mode.
6205
6206 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6207
6208 * help-fns.el (help-fns--compiler-macro): If the handler function is
6209 named, then put a link to it.
6210 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
6211 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
6212 (cl-typep): Use it.
6213 (cl-eval-when): Simplify debug spec.
6214 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
6215 compiler-macro function instead of setting `compiler-macro-file'.
6216
6217 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
6218
6219 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
6220 * vc/vc-hooks.el (vc-stay-local): Doc fix.
6221
6222 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6223 Daniel Hackney <dan@haxney.org>
6224
6225 First part of Daniel Hackney's patch to package.el.
6226 * emacs-lisp/package.el: Use defstruct.
6227 (package-desc): New, main struct.
6228 (package--bi-desc, package--ac-desc): New structs, used to describe the
6229 format in external files.
6230 (package-desc-vers): Replace with package-desc-version accessor.
6231 (package-desc-doc): Replace with package-desc-summary accessor.
6232 (package-activate-1): Remove `package' arg since the pkg-vec now
6233 includes the name.
6234 (define-package): Use package-desc-from-define.
6235 (package-unpack-single): Change file-name arg to be a symbol.
6236 (package--add-to-archive-contents): Use package-desc-create and new
6237 accessor functions to package--ac-desc.
6238 (package-buffer-info, package-tar-file-info): Return a package-desc.
6239 (package-install-from-buffer): Remove `type' argument. Change pkg-info
6240 arg to be a package-desc.
6241 (package-install-file): Adjust accordingly. Use \' to match EOS.
6242 (package--from-builtin): New function.
6243 (describe-package-1, package-menu--generate): Use it.
6244 (package--make-autoloads-and-compile): Change name arg to be a symbol.
6245 (package-generate-autoloads): Idem and return the name of the file.
6246 * emacs-lisp/package-x.el (package-upload-buffer-internal):
6247 Change pkg-info arg to be a package-desc.
6248 Use package-make-ac-desc.
6249 (package-upload-file): Use \' to match EOS.
6250 * finder.el (finder-compile-keywords): Use package-make-builtin.
6251
6252 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6253
6254 * vc/vc.el (vc-deduce-fileset): Change error message.
6255 (vc-read-backend): New function.
6256 (vc-next-action): Use it.
6257
6258 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
6259
6260 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
6261 (prolog-font-lock-keywords): Use regexp-opt instead.
6262 Don't manually highlight strings.
6263 (prolog-mode-variables): Simplify comment-start-skip.
6264 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
6265
6266 * emacs-lisp/generic.el (generic--normalise-comments)
6267 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
6268 (generic-mode-set-comments): Use them.
6269 (generic-bracket-support): Use setq-local.
6270 (generic-make-keywords-list): Declare obsolete.
6271
6272 2013-06-11 Glenn Morris <rgm@gnu.org>
6273
6274 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
6275 Prettify after setting font-lock-defaults. (Bug#14574)
6276
6277 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
6278
6279 * replace.el (query-replace, occur-read-regexp-defaults-function)
6280 (replace-search):
6281 * subr.el (declare-function, number-sequence, local-set-key)
6282 (substitute-key-definition, locate-user-emacs-file)
6283 (with-silent-modifications, split-string, eval-after-load):
6284 Fix typos, remove unneeded backslashes and reflow some docstrings.
6285
6286 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6287
6288 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
6289 default for Elisp files.
6290
6291 2013-06-11 Glenn Morris <rgm@gnu.org>
6292
6293 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
6294 although define-derived-mode was doing this anyway. (Bug#14583)
6295
6296 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
6297
6298 * allout.el (allout-encryption-plaintext-sanitization-regexps):
6299 Fix make-variable-buffer-local call to refer to the correct variable.
6300
6301 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
6302
6303 * eshell/em-term.el (eshell-visual-commands)
6304 (eshell-visual-subcommands, eshell-visual-options):
6305 Add summary line to docstrings. Add cross-references.
6306
6307 2013-06-10 Glenn Morris <rgm@gnu.org>
6308
6309 * epa.el (epa-read-file-name): New function. (Bug#14510)
6310 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
6311
6312 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6313
6314 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
6315 output redirection to be ignored with visual commands.
6316
6317 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
6318
6319 * eshell/em-term.el (eshell-visual-command-p): New function.
6320 (eshell-term-initialize): Move long lambda to separate function
6321 eshell-visual-command-p.
6322 * eshell/em-dirs.el (eshell-dirs-initialise):
6323 * eshell/em-script.el (eshell-script-initialize):
6324 Add missing #' to lambda.
6325
6326 2013-06-08 Leo Liu <sdl.web@gmail.com>
6327
6328 * progmodes/octave.el (octave-add-log-current-defun): New function.
6329 (octave-mode): Set add-log-current-defun-function.
6330 (octave-goto-function-definition): Do not move point if not found.
6331 (octave-find-definition): Enhance to try subfunctions first.
6332
6333 2013-06-08 Glenn Morris <rgm@gnu.org>
6334
6335 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6336 (byte-compile-backward-char, byte-compile-backward-word):
6337 Improve previous change, to handle non-explicit nil.
6338
6339 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6340
6341 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
6342 (smie--opener/closer-at-point): New function.
6343 (smie--matching-block-data): Use it. Don't match from right after an
6344 opener or right before a closer. Obey smie-blink-matching-inners.
6345 Don't signal a mismatch for repeated inners like "switch..case..case".
6346
6347 2013-06-07 Leo Liu <sdl.web@gmail.com>
6348
6349 * progmodes/octave.el (octave-mode): Set comment-use-global-state
6350 to t. (Bug#14303)
6351 (octave-function-header-regexp): Fix. (Bug#14570)
6352 (octave-help-mode-finish-hook, octave-help-mode-finish):
6353 Remove. Just use temp-buffer-show-hook.
6354
6355 * newcomment.el (comment-search-backward): Revert last change.
6356 (Bug#14434)
6357
6358 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
6359
6360 2013-06-07 Eli Zaretskii <eliz@gnu.org>
6361
6362 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
6363 through xargs, to avoid failure due to MS-Windows limitations on
6364 command-line length.
6365
6366 2013-06-06 Glenn Morris <rgm@gnu.org>
6367
6368 * font-lock.el (lisp-font-lock-keywords-2):
6369 Treat user-error like error.
6370
6371 * emacs-lisp/bytecomp.el (byte-compile-char-before)
6372 (byte-compile-backward-char, byte-compile-backward-word):
6373 Handle explicit nil arguments. (Bug#14565)
6374
6375 2013-06-05 Alan Mackenzie <acm@muc.de>
6376
6377 * isearch.el (isearch-allow-prefix): New user option.
6378 (isearch-other-meta-char): Don't exit isearch when a prefix
6379 argument is typed whilst `isearch-allow-prefix' is non-nil.
6380 (Bug#9706)
6381
6382 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6383
6384 * autorevert.el (auto-revert-notify-handler): Use memq.
6385 Hide assertion failure.
6386
6387 * skeleton.el: Use cl-lib.
6388 (skeleton-further-elements): Use defvar-local.
6389 (skeleton-insert): Use cl-progv.
6390
6391 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6392
6393 * progmodes/prog-mode.el (prog-prettify-symbols)
6394 (prog-prettify-install): Update docstrings.
6395
6396 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6397
6398 * simple.el: Move all the prog-mode code to prog-mode.el.
6399 * progmodes/prog-mode.el: New file.
6400 * loadup.el: Add prog-mode.el.
6401
6402 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6403
6404 * simple.el (prog-prettify-symbols): Add version.
6405 (prog-prettify-install): Add convenience function to prettify symbols.
6406
6407 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
6408 (perl--augmented-font-lock-keywords-1)
6409 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
6410 variables and use it.
6411
6412 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6413 (cfengine3-mode): Remove unneeded variable and use it.
6414
6415 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6416 (lisp--augmented-font-lock-keywords-1)
6417 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
6418 Remove unneeded variables and use it.
6419
6420 2013-06-05 João Távora <joaotavora@gmail.com>
6421
6422 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
6423 to point when opening the connection. (Bug#14380)
6424
6425 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6426
6427 * subr.el (load-history-regexp, load-history-filename-element)
6428 (eval-after-load, after-load-functions, do-after-load-evaluation)
6429 (eval-next-after-load, display-delayed-warnings)
6430 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
6431 definition of save-match-data.
6432 (overriding-local-map): Remove accidental obsolescence declaration.
6433
6434 * emacs-lisp/edebug.el (edebug-result): Move before first use.
6435
6436 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
6437
6438 Generalize symbol prettify support to prog-mode and implement it
6439 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
6440 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
6441 (prog--prettify-font-lock-compose-symbol)
6442 (prog-prettify-font-lock-symbols-keywords): New variables and
6443 functions to support symbol prettification.
6444 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
6445 (lisp--augmented-font-lock-keywords-1)
6446 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
6447 (lisp--prettify-symbols-alist): Implement prettify of lambda.
6448 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
6449 (cfengine3--prettify-symbols-alist, cfengine3-mode):
6450 Implement prettify of -> => :: strings.
6451 * progmodes/perl-mode.el (perl-prettify-symbols)
6452 (perl--font-lock-compose-symbol)
6453 (perl--font-lock-symbols-keywords): Move to prog-mode.
6454 (perl--prettify-symbols-alist): Prettify -> => :: strings.
6455 (perl-font-lock-keywords-1)
6456 (perl-font-lock-keywords-2): Remove explicit prettify support.
6457 (perl--augmented-font-lock-keywords)
6458 (perl--augmented-font-lock-keywords-1)
6459 (perl--augmented-font-lock-keywords-2, perl-mode):
6460 Implement prettify support.
6461
6462 2013-06-05 Leo Liu <sdl.web@gmail.com>
6463
6464 Re-implement smie matching block highlight using
6465 show-paren-data-function. (Bug#14395)
6466 * emacs-lisp/smie.el (smie-matching-block-highlight)
6467 (smie--highlight-matching-block-overlay)
6468 (smie--highlight-matching-block-lastpos)
6469 (smie-highlight-matching-block)
6470 (smie-highlight-matching-block-mode): Remove.
6471 (smie--matching-block-data-cache): New variable.
6472 (smie--matching-block-data): New function.
6473 (smie-setup): Use smie--matching-block-data for
6474 show-paren-data-function.
6475
6476 * progmodes/octave.el (octave-mode-menu): Fix.
6477 (octave-find-definition): Skip garbage lines.
6478
6479 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6480
6481 Fix compilation error with simultaneous dynamic+lexical scoping.
6482 Add warning when a defvar appears after the first let-binding.
6483 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
6484 (byte-compile-close-variables): Initialize it.
6485 (byte-compile--declare-var): New function.
6486 (byte-compile-file-form-defvar)
6487 (byte-compile-file-form-define-abbrev-table)
6488 (byte-compile-file-form-custom-declare-variable): Use it.
6489 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
6490 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
6491 (byte-compile-bind): Handle dynamic bindings that shadow
6492 lexical bindings.
6493 (byte-compile-unbind): Make arg non-optional.
6494 (byte-compile-let): Simplify.
6495 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
6496 (cconv--analyse-function, cconv-analyse-form): Populate it.
6497 Protect byte-compile-bound-variables to limit the scope of defvars.
6498 (cconv-analyse-form): Add missing rule for (defvar <foo>).
6499 Remove unneeded rule for `declare'.
6500
6501 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
6502 so as to avoid depending on cl-adjoin at run-time.
6503 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
6504
6505 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
6506 (macroexp--warn-and-return): Use it.
6507
6508 2013-06-05 Leo Liu <sdl.web@gmail.com>
6509
6510 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
6511
6512 2013-06-04 Leo Liu <sdl.web@gmail.com>
6513
6514 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
6515 (compilation-auto-jump): Suppress the "Mark set" message to give
6516 way to exit message.
6517
6518 2013-06-04 Alan Mackenzie <acm@muc.de>
6519
6520 Remove faulty optimisation from indentation calculation.
6521 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
6522 search limit based on 2000 characters back from indent-point.
6523
6524 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6525
6526 * eshell/em-term.el (cl-lib): Require `cl-lib'.
6527
6528 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6529
6530 * emacs-lisp/lisp.el: Use lexical-binding.
6531 (lisp--local-variables-1, lisp--local-variables): New functions.
6532 (lisp--local-variables-completion-table): New var.
6533 (lisp-completion-at-point): Use it complete let-bound vars.
6534
6535 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
6536 eagerly (bug#14422).
6537
6538 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
6539
6540 * autorevert.el (auto-revert-notify-enabled)
6541 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
6542 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
6543 (auto-revert-notify-handler): Handle also gfilenotify.
6544
6545 * subr.el (file-notify-handle-event): New defun. Replacing ...
6546 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
6547 Remove.
6548
6549 2013-06-03 Juri Linkov <juri@jurta.org>
6550
6551 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
6552 `M-s h .'. (Bug#14427)
6553
6554 * hi-lock.el (highlight-symbol-at-point): New alias for the new
6555 command `hi-lock-face-symbol-at-point'.
6556 (hi-lock-face-symbol-at-point): New command.
6557 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
6558 (hi-lock-menu): Add `highlight-symbol-at-point'.
6559 (hi-lock-mode): Doc fix.
6560
6561 * isearch.el (isearch-forward-symbol-at-point): New command.
6562 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
6563 (isearch-highlight-regexp): Add a regexp which matches
6564 words/symbols for word/symbol mode.
6565
6566 * subr.el (find-tag-default-bounds): New function with the body
6567 mostly moved from `find-tag-default'.
6568 (find-tag-default): Move most code to `find-tag-default-bounds',
6569 call it and apply `buffer-substring-no-properties' afterwards.
6570
6571 2013-06-03 Tassilo Horn <tsdh@gnu.org>
6572
6573 * eshell/em-term.el (eshell-term-initialize):
6574 Use `cl-intersection' rather than `intersection'.
6575
6576 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
6577
6578 * vc/log-view.el: Doc fix.
6579 (log-view-mode-map): Copy keymap from `special-mode-map'.
6580
6581 2013-06-02 Eric Ludlam <zappo@gnu.org>
6582
6583 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
6584 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
6585 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
6586 (eieio-unbound, eieio-default-superclass)
6587 (eieio--define-field-accessors, method-static, method-before)
6588 (method-primary, method-after, method-num-lists)
6589 (method-generic-before, method-generic-primary)
6590 (method-generic-after, method-num-slots)
6591 (eieio-specialized-key-to-generic-key)
6592 (eieio--check-type, class-v, class-p)
6593 (eieio-class-name, define-obsolete-function-alias)
6594 (eieio-class-parents-fast, eieio-class-children-fast)
6595 (same-class-fast-p, class-constructor, generic-p)
6596 (generic-primary-only-p, generic-primary-only-one-p)
6597 (class-option-assoc, class-option, eieio-object-p)
6598 (class-abstract-p, class-method-invocation-order)
6599 (eieio-defclass-autoload-map, eieio-defclass-autoload)
6600 (eieio-class-un-autoload, eieio-defclass)
6601 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
6602 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
6603 (eieio--defgeneric-init-form, eieio-defgeneric-form)
6604 (eieio-defgeneric-reset-generic-form)
6605 (eieio-defgeneric-form-primary-only)
6606 (eieio-defgeneric-reset-generic-form-primary-only)
6607 (eieio-defgeneric-form-primary-only-one)
6608 (eieio-defgeneric-reset-generic-form-primary-only-one)
6609 (eieio-unbind-method-implementations)
6610 (eieio--defmethod, eieio--typep)
6611 (eieio-perform-slot-validation, eieio-validate-slot-value)
6612 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
6613 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
6614 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
6615 (eieio-slot-name-index, eieio-class-slot-name-index)
6616 (eieio-set-defaults, eieio-initarg-to-attribute)
6617 (eieio-attribute-to-initarg, eieio-c3-candidate)
6618 (eieio-c3-merge-lists, eieio-class-precedence-c3)
6619 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
6620 (eieio-class-precedence-list, eieio-generic-call-methodname)
6621 (eieio-generic-call-arglst, eieio-generic-call-key)
6622 (eieio-generic-call-next-method-list)
6623 (eieio-pre-method-execution-functions, eieio-generic-call)
6624 (eieio-generic-call-primary-only, eieiomt-method-list)
6625 (eieiomt-optimizing-obarray, eieiomt-install)
6626 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
6627 (eieio-generic-form, eieio-defmethod, make-obsolete)
6628 (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
6629 (defclass): Remove `eval-and-compile' from macro.
6630 (call-next-method, shared-initialize): Instead of using
6631 `scoped-class' variable, use new eieio--scoped-class, and
6632 eieio--with-scoped-class.
6633 (initialize-instance): Rename local variable 'scoped-class' to
6634 'this-class' to remove ambiguitity from old global.
6635
6636 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
6637 eieio.el.
6638 (eieio--scoped-class-stack): New variable.
6639 (eieio--scoped-class): New fcn.
6640 (eieio--with-scoped-class): New scoping macro.
6641 (eieio-defclass): Use pushnew instead of add-to-list.
6642 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
6643 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
6644 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
6645 `scoped-class' variable, use new eieio--scoped-class, and
6646 eieio--with-scoped-class.
6647
6648 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
6649
6650 2013-06-02 Tassilo Horn <tsdh@gnu.org>
6651
6652 * eshell/esh-ext.el (eshell-external-command): Pass args to
6653 `eshell-find-interpreter'.
6654 (eshell-find-interpreter): Add new second parameter ARGS.
6655
6656 * eshell/em-script.el (eshell-script-initialize): Add second arg
6657 to the function added as MATCH to `eshell-interpreter-alist'.
6658
6659 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
6660 the function added as MATCH to `eshell-interpreter-alist'.
6661
6662 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
6663 (eshell-visual-options): New defcustom.
6664 (eshell-escape-control-x): Adapt docstring.
6665 (eshell-term-initialize): Test `eshell-visual-subcommands' and
6666 `eshell-visual-options' in addition to `eshell-visual-commands'.
6667 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
6668
6669 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
6670
6671 * progmodes/python.el (python-indent-block-enders): Add break,
6672 continue and raise keywords.
6673
6674 2013-06-01 Glenn Morris <rgm@gnu.org>
6675
6676 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
6677
6678 Plain (f)boundp silences compilation warnings since Emacs 22.1.
6679 * progmodes/cc-cmds.el (delete-forward-p):
6680 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
6681 * progmodes/cc-engine.el (buffer-syntactic-context):
6682 * progmodes/cc-fonts.el (face-property-instance):
6683 * progmodes/cc-mode.el (set-keymap-parents):
6684 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
6685 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
6686 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
6687 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
6688 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
6689
6690 * progmodes/cc-vars.el (other): Emacs has this widget since
6691 at least 21.1, so don't (re)define it.
6692
6693 * eshell/em-cmpl.el (eshell-cmpl-initialize):
6694 Replace the obsolete alias pcomplete-arg-quote-list.
6695
6696 2013-06-01 Leo Liu <sdl.web@gmail.com>
6697
6698 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
6699 punctuation syntax.
6700 (inferior-octave-minimal-columns)
6701 (inferior-octave-last-column-width): New variables.
6702 (inferior-octave-track-window-width-change): New function.
6703 (inferior-octave-mode): Adjust column width so that Octave output,
6704 for example from 'ls', can fit into the window nicely.
6705
6706 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6707
6708 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6709 Highlight expansions inside regexp literals.
6710
6711 2013-05-31 Glenn Morris <rgm@gnu.org>
6712
6713 * obsolete/sym-comp.el (symbol-complete):
6714 Replace obsolete completion-annotate-function.
6715
6716 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
6717
6718 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
6719
6720 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
6721 New function, checks if point is inside a literal that allows
6722 expression expansion.
6723 (ruby-syntax-propertize-expansion): Use it.
6724 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
6725 around the body.
6726
6727 2013-05-30 Juri Linkov <juri@jurta.org>
6728
6729 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
6730 to "\M-si".
6731 (isearch-invisible): New variable.
6732 (isearch-forward): Doc fix.
6733 (isearch-mode): Set `isearch-invisible'
6734 to the value of `search-invisible'.
6735 (isearch-toggle-case-fold): Doc fix.
6736 (isearch-toggle-invisible): New command.
6737 (isearch-query-replace): Let-bind `search-invisible'
6738 to the value of `isearch-invisible'.
6739 (isearch-search): Use `isearch-invisible' instead of
6740 `search-invisible'. Let-bind `search-invisible'
6741 to the value of `isearch-invisible'. (Bug#11378)
6742
6743 2013-05-30 Juri Linkov <juri@jurta.org>
6744
6745 * replace.el (perform-replace): Avoid `isearch-range-invisible'
6746 call when `query-flag' is nil and `search-invisible' is non-nil.
6747 (Bug#11746)
6748
6749 2013-05-30 Glenn Morris <rgm@gnu.org>
6750
6751 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
6752
6753 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
6754 (cc-require): Suppress spurious "noruntime" warnings.
6755 (cc-require-when-compile): Use fboundp, for sake of compiler.
6756
6757 * progmodes/cc-mode.el: Move load of cc-vars before that of
6758 cc-langs (which in turn loads cc-vars), to quieten compiler.
6759
6760 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6761
6762 * paren.el: Simplify the code.
6763 (show-paren-mode): Always start the timer.
6764 (show-paren--idle-timer): Rename from show-paren-idle-timer.
6765 (show-paren--overlay, show-paren--overlay-1): Rename from
6766 show-paren-overlay and show-paren-overlay-1, and initialize to an
6767 overlay rather than to nil.
6768 (show-paren-function): Misc cleanup and simplifications.
6769
6770 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6771
6772 * paren.el (show-paren-data-function): New hook.
6773 (show-paren--default): New function, extracted from show-paren-function.
6774 (show-paren-function): Use show-paren-data-function.
6775
6776 2013-05-30 Glenn Morris <rgm@gnu.org>
6777
6778 * ielm.el (ielm-map, ielm-complete-symbol):
6779 Use completion-at-point rather than obsolete functions.
6780 (inferior-emacs-lisp-mode): Doc fix.
6781 Set completion-at-point-functions, rather than
6782 comint-dynamic-complete-functions.
6783
6784 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
6785 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
6786 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
6787
6788 * image.el (image-animated-p): Tweak definition.
6789
6790 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
6791 (rlogin-process-connection-type): Tweak default. Add set-after.
6792 (rlogin-host): Doc fix.
6793 (rlogin): Tweak prompt.
6794 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
6795
6796 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
6797 * progmodes/tcl.el (inferior-tcl-mode-map):
6798 Use completion-at-point rather than obsolete alias.
6799
6800 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
6801
6802 * minibuffer.el (read-file-name-completion-ignore-case):
6803 Move before completion--in-region, for eager macro expansion.
6804
6805 2013-05-29 Juri Linkov <juri@jurta.org>
6806
6807 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
6808 for total count of matching lines. Add `global-matches' for total
6809 count of matches. Rename `matches' to `lines' for count of
6810 matching lines. Add `matches' for count of matches.
6811 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
6812 to `prev-line' for line number of prev match endpt.
6813 Increment `matches' for every match. Print the number of
6814 matching lines in the header.
6815 (occur-context-lines): Rename `lines' to `curr-line'.
6816 Rename `prev-lines' to `prev-line'. (Bug#14017)
6817
6818 2013-05-29 Juri Linkov <juri@jurta.org>
6819
6820 * replace.el (perform-replace): Add `skip-read-only-count',
6821 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
6822 Increment them for corresponding conditions and report the number
6823 of skipped occurrences in the final message. (Bug#11746)
6824 (query-replace, query-replace-regexp, query-replace-regexp-eval)
6825 (replace-string, replace-regexp): Doc fix.
6826
6827 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6828
6829 * emacs-lisp/trace.el (trace--read-args): Provide a default.
6830
6831 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
6832 prog-mode-map (bug#14504).
6833
6834 2013-05-29 Leo Liu <sdl.web@gmail.com>
6835
6836 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
6837 (octave-help): Small simplification.
6838
6839 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
6840 off the highlight first.
6841
6842 2013-05-29 Glenn Morris <rgm@gnu.org>
6843
6844 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
6845 Handle idlwave-last-system-routine-info-cons-cell being nil.
6846
6847 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6848 (idlwave-write-paths): Simplify via with-temp-buffer.
6849
6850 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
6851 * emulation/cua-rect.el: Also load cua-base at run time.
6852
6853 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
6854 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
6855 (cperl-imenu-on-info): Require imenu.
6856
6857 2013-05-28 Alan Mackenzie <acm@muc.de>
6858
6859 Handle "capitalised keywords" correctly.
6860 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
6861
6862 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
6863
6864 * eshell/em-unix.el: Add -r option to cp.
6865
6866 2013-05-28 Glenn Morris <rgm@gnu.org>
6867
6868 * vc/vc-arch.el (vc-exec-after): Declare.
6869 (vc-switches): Autoload.
6870 * vc/vc-bzr.el: No need to require vc when compiling.
6871 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
6872 (vc-resynch-buffer, vc-dir-refresh): Declare.
6873 (vc-setup-buffer, vc-switches): Autoload.
6874 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
6875 (vc-resynch-buffer): Declare.
6876 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
6877 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
6878 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
6879 (grep-read-regexp, grep-read-files, grep-expand-template)
6880 (vc-dir-refresh): Declare.
6881 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
6882 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
6883 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
6884 * vc/vc-mtn.el (vc-exec-after): Declare.
6885 (vc-switches): Autoload.
6886 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
6887 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
6888 (vc-file-tree-walk): Declare.
6889 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
6890 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
6891 (vc-tag-precondition, vc-rename-master): Autoload.
6892 * vc/vc-svn.el (vc-exec-after): Declare.
6893 (vc-switches, vc-setup-buffer): Autoload.
6894 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
6895 Autoload.
6896 (vc-resynch-buffer): Declare.
6897
6898 * obsolete/fast-lock.el (byte-compile-warnings):
6899 Don't warn about obsolete features in this obsolete file.
6900
6901 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
6902 Move definition before use.
6903
6904 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
6905 (dun-unix-verbs): Remove dun-zippy.
6906 (dun-zippy): Remove function.
6907
6908 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
6909
6910 2013-05-27 Juri Linkov <juri@jurta.org>
6911
6912 * replace.el (replace-search): New function with code moved out
6913 from `perform-replace'.
6914 (replace-highlight, replace-dehighlight): Move function definitions
6915 up closer to `replace-search'. (Bug#11746)
6916
6917 2013-05-27 Juri Linkov <juri@jurta.org>
6918
6919 * replace.el (perform-replace): Ignore invisible matches.
6920 In addition to checking `query-replace-skip-read-only', also
6921 filter out matches by calling `run-hook-with-args-until-failure'
6922 on `isearch-filter-predicates', and also check `search-invisible'
6923 for t or call `isearch-range-invisible'.
6924 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
6925
6926 2013-05-27 Juri Linkov <juri@jurta.org>
6927
6928 * isearch.el (isearch-filter-predicates): Rename from
6929 `isearch-filter-predicate'. Doc fix. (Bug#11378)
6930 (isearch-message-prefix): Display text from the property
6931 `isearch-message-prefix' of the currently active filters.
6932 (isearch-search): Don't compare `isearch-filter-predicate' with
6933 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
6934 on `isearch-filter-predicates'. Also check `search-invisible' for t
6935 or call `isearch-range-invisible'.
6936 (isearch-filter-visible): Make obsolete.
6937 (isearch-lazy-highlight-search):
6938 Call `run-hook-with-args-until-failure' on
6939 `isearch-filter-predicates' and use `isearch-range-invisible'.
6940
6941 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
6942 `isearch-filter-predicates' instead of `funcall'ing
6943 `isearch-filter-predicate'.
6944 (Info-mode): Set `Info-isearch-filter' to
6945 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
6946
6947 * dired-aux.el (dired-isearch-filter-predicate-orig):
6948 Remove variable.
6949 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
6950 (dired-isearch-filenames-end): Add and remove
6951 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
6952 instead of changing the value of `isearch-filter-predicate'.
6953 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
6954 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
6955 Put property `isearch-message-prefix' to "filename " on
6956 `dired-isearch-filter-filenames'.
6957
6958 * wdired.el (wdired-change-to-wdired-mode):
6959 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
6960 locally instead of changing `isearch-filter-predicate'.
6961 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
6962
6963 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
6964
6965 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
6966 return the commit hash (Bug#14459). Also set the
6967 `vc-git-detached' property.
6968 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
6969 (vc-git-mode-line-string): Use the same help-echo format whether
6970 in detached mode or not, because we know the actual revision now.
6971 When in detached mode, shorten the revision to 7 chars.
6972
6973 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6974
6975 * emacs-lisp/easy-mmode.el (define-minor-mode):
6976 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
6977 mode hook and provide a docstring.
6978
6979 2013-05-27 Alan Mackenzie <acm@muc.de>
6980
6981 Remove spurious syntax-table text properties inserted by C-y.
6982 * progmodes/cc-mode.el (c-after-change): Also clear hard
6983 syntax-table property with value nil.
6984
6985 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
6986
6987 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
6988 when reading the events; the buffer layout shall not be changed.
6989
6990 2013-05-27 Leo Liu <sdl.web@gmail.com>
6991
6992 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
6993 New variable.
6994 (inferior-octave-directory-tracker): Automatically re-sync
6995 default-directory.
6996 (octave-help): Improve handling of 'See also'.
6997
6998 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
6999
7000 * doc-view.el: Minor naming convention tweaks.
7001 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
7002
7003 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
7004 even if there's no `display' property yet (bug#14435).
7005
7006 2013-05-25 Eli Zaretskii <eliz@gnu.org>
7007
7008 * subr.el (unmsys--file-name): Rename from reveal-filename.
7009
7010 * Makefile.in (custom-deps, finder-data, autoloads)
7011 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7012 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7013 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
7014
7015 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7016
7017 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
7018 error-completion on the first 2 args of condition-case (bug#14446).
7019 Don't burp at EOB.
7020
7021 2013-05-25 Leo Liu <sdl.web@gmail.com>
7022
7023 * comint.el (comint-previous-matching-input): Do not flood the
7024 *Messages* buffer with trivial messages.
7025
7026 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7027
7028 * progmodes/flymake.el (flymake-nop): Don't return a string.
7029 (flymake-set-at): Fix typo.
7030
7031 * simple.el (read--expression): New function, extracted from
7032 eval-expression. Set completion-at-point-functions (bug#14465).
7033 (eval-expression, eval-minibuffer): Use it.
7034
7035 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
7036
7037 * progmodes/flymake.el (flymake-save-buffer-in-file)
7038 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
7039 (flymake-selected-frame, flymake-log, flymake-ins-after)
7040 (flymake-set-at, flymake-get-buildfile-from-cache)
7041 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
7042 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
7043 Refine the doc string.
7044 (flymake-get-file-name-mode-and-masks): Reformat.
7045 (flymake-get-real-file-name-function): Fix a minor bug.
7046
7047 2013-05-24 Juri Linkov <juri@jurta.org>
7048
7049 * progmodes/grep.el (grep-mode-font-lock-keywords):
7050 Support =linenumber= format used by git-grep for lines with
7051 function names. (Bug#13549)
7052
7053 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7054
7055 * progmodes/octave.el (octave-smie-rules): Return nil rather than
7056 0 after a semi-colon; it works better for smie-auto-fill.
7057 (octave--indent-new-comment-line): New function.
7058 (octave-indent-new-comment-line): Use it (indirectly).
7059 (octave-mode): Don't disable smie-auto-fill. Use add-function to
7060 modify comment-line-break-function.
7061
7062 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
7063 (smie-setup): Use add-function to set it.
7064
7065 2013-05-24 Sam Steingold <sds@gnu.org>
7066
7067 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
7068 argument (before the `interactive' argument).
7069
7070 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
7071
7072 * image-mode.el (image-mode-winprops): Add winprops to
7073 image-mode-winprops-alist before running
7074 image-mode-new-window-functions.
7075 * doc-view.el (doc-view-new-window-function): Don't delay
7076 doc-view-goto-page via timers (bug#14435).
7077
7078 2013-05-24 Tassilo Horn <tsdh@gnu.org>
7079
7080 * doc-view.el: Integrate with desktop.el. (Bug#14435)
7081 (doc-view-desktop-save-buffer): New function.
7082 (doc-view-restore-desktop-buffer): New function.
7083 (desktop-buffer-mode-handlers):
7084 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
7085 handler.
7086 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
7087 `desktop-save-buffer' function.
7088
7089 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
7090
7091 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
7092 (tramp-gvfs-file-name-handler): Raise a user error when
7093 `tramp-gvfs-enabled' is nil.
7094 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
7095 Do not raise a user error when loading package. (Bug#14447)
7096
7097 * net/xesam.el: Move to obsolete/.
7098
7099 2013-05-24 Glenn Morris <rgm@gnu.org>
7100
7101 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
7102
7103 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
7104
7105 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
7106 (Info-find-node, Man-getpage-in-background): Declare.
7107
7108 * mail/unrmail.el (unrmail):
7109 Replace obsolete detect-coding-with-priority.
7110
7111 * net/socks.el (socks-split-string): Use this rather than split-string.
7112 (socks-nslookup-host): Update for above change.
7113 (dynamic-choice, s5-dynamic-choice-match)
7114 (s5-dynamic-choice-match-inline, s5-widget-value-create):
7115 Comment out unused code.
7116
7117 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
7118 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
7119 (gud-tooltip-echo-area): Make obsolete.
7120 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
7121
7122 * progmodes/js.el (js--optimize-arglist): Declare.
7123
7124 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
7125
7126 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
7127 (ediff-window-C): Declare.
7128
7129 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
7130 Tweak requires to silence compiler.
7131
7132 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
7133 (he-search-string, he-tried-table, he-expand-list)
7134 (he-init-string, he-string-member, he-substitute-string)
7135 (he-reset-string): Declare.
7136
7137 * obsolete/options.el (list-options): Use custom-variable-p,
7138 rather than obsolete alias.
7139
7140 2013-05-23 Sam Steingold <sds@gnu.org>
7141
7142 * simple.el (shell-command-on-region): Pass the `replace' argument
7143 down to `call-process-region' to comply with the doc as reported on
7144 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
7145
7146 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
7147
7148 * emacs-lisp/smie.el (smie-indent-forward-token)
7149 (smie-indent-backward-token): Handle string tokens (bug#14381).
7150
7151 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7152
7153 * ielm.el (ielm-menu): New menu.
7154 (inferior-emacs-lisp-mode): Set comment-start.
7155
7156 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7157
7158 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
7159 Fix deactivate action.
7160
7161 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
7162 Add cleveref macros.
7163
7164 * lisp/textmodes/reftex-parse.el
7165 (reftex-locate-bibliography-files): Accept options for
7166 bibliography commands.
7167 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
7168 Add addbibresource. Basic Biblatex support.
7169
7170 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
7171
7172 * net/tramp-gvfs.el (top):
7173 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
7174 when loading package. (Bug#14447)
7175
7176 2013-05-23 Glenn Morris <rgm@gnu.org>
7177
7178 * progmodes/js.el: No need to load comint when compiling.
7179 (ring-insert, comint-send-string, comint-send-input)
7180 (comint-last-input-end, ido-chop): Declare.
7181
7182 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
7183 * vc/ediff-mult.el: Adjust requires.
7184 (ediff-directories-internal, ediff-directory-revisions-internal)
7185 (ediff-patch-file-internal): Declare.
7186 * vc/ediff-ptch.el: Adjust requires.
7187 (ediff-use-last-dir, ediff-buffers-internal): Declare.
7188 (ediff-find-file): Autoload.
7189 * vc/ediff-util.el: No need to load ediff when compiling.
7190 (ediff-regions-internal): Declare.
7191 * vc/ediff-wind.el: Adjust requires.
7192 (ediff-compute-toolbar-width): Define when compiling.
7193 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
7194 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
7195 (dired-get-filename, dired-get-marked-files)
7196 (ediff-last-dir-patch, ediff-patch-default-directory)
7197 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
7198 (ediff-patch-buffer-internal): Declare.
7199
7200 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
7201 (ispell-process, ispell-buffer-local-words, lm-summary)
7202 (lm-section-start, lm-section-end): Declare.
7203 (checkdoc-ispell-init): Simplify.
7204
7205 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
7206 (he-string-member, he-reset-string, he-substitute-string): Declare.
7207
7208 * eshell/em-ls.el: Adjust requires.
7209 (eshell-glob-regexp): Declare.
7210 * eshell/em-tramp.el: Adjust requires.
7211 (eshell-parse-command): Autoload.
7212 * eshell/em-xtra.el: Adjust requires.
7213 (eshell-parse-command): Autoload.
7214 * eshell/esh-ext.el: Adjust requires.
7215 (eshell-parse-command, eshell-close-handles): Autoload.
7216 * eshell/esh-io.el: Adjust requires.
7217 (eshell-output-filter): Autoload.
7218 * eshell/esh-util.el: No need to load tramp when compiling.
7219 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
7220 Declare.
7221 (eshell-parse-ange-ls): Require ange-ftp and tramp.
7222 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
7223 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
7224 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
7225 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
7226 * eshell/esh-opt.el, eshell/esh-proc.el:
7227 * eshell/esh-var.el: Adjust requires.
7228 * eshell/eshell.el: Do not require esh-util twice.
7229 (eshell-add-input-to-history): Declare.
7230 (eshell-command): Check history module is active before using it.
7231
7232 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
7233
7234 2013-05-22 Leo Liu <sdl.web@gmail.com>
7235
7236 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
7237
7238 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
7239
7240 * autorevert.el (auto-revert-notify-add-watch)
7241 (auto-revert-notify-handler): Add `attrib' for the inotify case,
7242 it indicates changes in file modification time.
7243
7244 2013-05-22 Glenn Morris <rgm@gnu.org>
7245
7246 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
7247 Always delete the autoloaded function from the noruntime and
7248 unresolved functions lists.
7249
7250 * allout.el: No need to load epa, epg, overlay when compiling.
7251 (epg-context-set-passphrase-callback, epg-list-keys)
7252 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
7253 (epg-key-user-id-list): Declare.
7254
7255 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7256 (viper-set-parsing-style-toggling-macro)
7257 (viper-set-emacs-state-searchstyle-macros):
7258 Use called-interactively-p on Emacs.
7259 (viper-looking-back): Make it an obsolete alias. Update callers.
7260 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
7261 Use looking-back rather than viper-looking-back.
7262 (viper-tmp-insert-at-eob, viper-enlarge-region)
7263 (viper-read-string-with-history, viper-register-to-point)
7264 (viper-append-to-register, viper-change-state-to-vi)
7265 (viper-backward-char-carefully, viper-forward-char-carefully)
7266 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
7267 (viper-change-state-to-emacs): Declare.
7268 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
7269 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
7270 * emulation/viper-mous.el: Do not load viper-cmd.
7271 (viper-backward-char-carefully, viper-forward-char-carefully)
7272 (viper-forward-word, viper-adjust-window): Declare.
7273
7274 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
7275
7276 * progmodes/idlw-help.el (idlwave-help-fontify):
7277 Use called-interactively-p.
7278
7279 * term/w32console.el (w32-get-console-codepage)
7280 (w32-get-console-output-codepage): Declare.
7281
7282 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
7283 Remove unnecessary declarations.
7284 (dframe-message): Doc fix.
7285
7286 * info.el (dframe-select-attached-frame, dframe-current-frame):
7287 Declare.
7288
7289 * speedbar.el (speedbar-message): Make it an obsolete alias.
7290 Update all callers.
7291 (speedbar-with-attached-buffer)
7292 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
7293 (speedbar-with-writable): Use backquote.
7294 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
7295 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
7296 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
7297 rather than speedbar- aliases.
7298 * mail/rmail.el: Load dframe rather than speedbar when compiling.
7299 (speedbar-make-specialized-keymap, speedbar-insert-button)
7300 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
7301 (speedbar-do-function-pointer): Declare.
7302 (rmail-speedbar-button, rmail-speedbar-find-file)
7303 (rmail-speedbar-move-message):
7304 Use dframe-with-attached-buffer rather than speedbar- alias.
7305 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
7306 (dframe-message, speedbar-make-specialized-keymap)
7307 (speedbar-add-expansion-list, speedbar-mode-functions-list)
7308 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
7309 (speedbar-insert-button, dframe-select-attached-frame)
7310 (dframe-maybee-jump-to-attached-frame)
7311 (speedbar-change-initial-expansion-list)
7312 (speedbar-previously-used-expansion-list-name): Declare.
7313 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
7314 Use dframe-message, dframe-with-attached-buffer rather than
7315 speedbar- aliases.
7316 (gud-sentinel): Silence compiler.
7317 * progmodes/vhdl-mode.el (speedbar-refresh)
7318 (speedbar-do-function-pointer, speedbar-add-supported-extension)
7319 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
7320 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
7321 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
7322 (speedbar-file-lists, speedbar-make-tag-line)
7323 (speedbar-line-directory, speedbar-goto-this-file)
7324 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
7325 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
7326 (speedbar-make-button, speedbar-reset-scanners)
7327 (speedbar-files-item-info, speedbar-line-text)
7328 (speedbar-find-file-in-frame, speedbar-set-timer)
7329 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
7330 (speedbar-with-writable): Do not (re)define it.
7331 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
7332 rather than speedbar- alias.
7333
7334 2013-05-21 Leo Liu <sdl.web@gmail.com>
7335
7336 * progmodes/octave.el (octave-mode-menu): Update and re-organize
7337 menu items.
7338 (octave-mode): Tweak fill-nobreak-predicate.
7339 (inferior-octave-startup): Check process to avoid infinite loop.
7340 (inferior-octave): Pop to buffer first to show abornmal process
7341 exit information.
7342
7343 2013-05-21 Glenn Morris <rgm@gnu.org>
7344
7345 * printing.el (pr-menu-bar): Define when compiling.
7346
7347 2013-05-21 Leo Liu <sdl.web@gmail.com>
7348
7349 * progmodes/octave.el (octave-auto-fill): Remove.
7350 (octave-indent-new-comment-line): Improve.
7351 (octave-mode): Use auto fill mode through
7352 comment-line-break-function and fill-nobreak-predicate.
7353 (octave-goto-function-definition): Support DEFUN_DLD.
7354 (octave-beginning-of-defun): Small tweak.
7355 (octave-help): Show parent directory.
7356
7357 2013-05-21 Glenn Morris <rgm@gnu.org>
7358
7359 * files.el (dired-unmark):
7360 * progmodes/gud.el (gdb-input): Update declarations.
7361
7362 * calculator.el (electric, ehelp): No need to load when compiling.
7363 (Electric-command-loop, electric-describe-mode): Declare.
7364
7365 * doc-view.el (doc-view-current-converter-processes): Move before use.
7366
7367 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7368 Move MODE-set-explicitly definition before use.
7369
7370 * international/mule-diag.el (mule-diag):
7371 Don't use obsolete window-system-version.
7372
7373 * mail/feedmail.el (smtpmail): No need to load when compiling.
7374 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
7375
7376 * mail/mail-utils.el (rfc822): No need to load when compiling.
7377 (rfc822-addresses): Autoload it.
7378 (mail-strip-quoted-names): Trivial simplification.
7379
7380 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
7381 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
7382
7383 * net/snmp-mode.el (tempo): Don't duplicate requires.
7384
7385 * progmodes/prolog.el (info): No need to load when compiling.
7386 (comint): Require before shell requires it.
7387 (Info-goto-node): Autoload it.
7388 (Info-follow-nearest-node): Declare.
7389 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
7390
7391 * textmodes/artist.el (picture-mode-exit): Declare.
7392
7393 * textmodes/reftex-parse.el (reftex-parse-from-file):
7394 Trivial rewrite so the compiler can parse it better.
7395
7396 2013-05-20 Leo Liu <sdl.web@gmail.com>
7397
7398 * progmodes/octave.el (octave-help-mode-map)
7399 (octave-help-mode-finish-hook): New variables.
7400 (octave-help-mode, octave-help-mode-finish): New functions.
7401 (octave-help): Use octave-help-mode.
7402
7403 2013-05-20 Glenn Morris <rgm@gnu.org>
7404
7405 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
7406
7407 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
7408
7409 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
7410 start at point, so that expansion starting right after opening
7411 slash in a regexp is recognized.
7412 (ruby-syntax-before-regexp-re): New defvar, extracted from
7413 ruby-syntax-propertize-function. Since the value of this regexp
7414 is looked up at runtime now, we should be able to turn
7415 `ruby-syntax-methods-before-regexp' into a defcustom later.
7416 (ruby-syntax-propertize-function): Split regexp matching into two
7417 parts, for opening and closing slashes. That allows us to skip
7418 over string interpolations and support multiline regexps.
7419 Don't call `ruby-syntax-propertize-expansions', instead use another rule
7420 for them, which calls `ruby-syntax-propertize-expansion'.
7421 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
7422 call to `ruby-syntax-propertize-function'.
7423 (ruby-syntax-propertize-expansion): Extracted from
7424 `ruby-syntax-propertize-expansions'. Handles one expansion.
7425 (ruby-syntax-propertize-percent-literal): Leave point right after
7426 the percent symbol, so that the expression expansion rule can
7427 propertize the contents.
7428 (ruby-syntax-propertize-heredoc): Leave point at bol following the
7429 heredoc openers.
7430 (ruby-syntax-propertize-expansions): Remove.
7431
7432 2013-05-18 Juri Linkov <juri@jurta.org>
7433
7434 * man.el (Man-default-man-entry): Remove `-' from the end
7435 of the default value. (Bug#14400)
7436
7437 2013-05-18 Glenn Morris <rgm@gnu.org>
7438
7439 * comint.el (comint-password-prompt-regexp):
7440 Allow "password for XXX" where XXX contains colons (eg https://...).
7441
7442 2013-05-18 Leo Liu <sdl.web@gmail.com>
7443
7444 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
7445 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
7446 (octave-source-directories): Don't check process.
7447 (octave-source-directories, octave-find-definition): Doc fix.
7448
7449 2013-05-18 Glenn Morris <rgm@gnu.org>
7450
7451 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
7452 Remove backspace/delete bindings. (Bug#14392)
7453
7454 * cus-dep.el (custom-make-dependencies): Sort the output.
7455 (custom-versions-load-alist): Convert comment to doc.
7456
7457 2013-05-17 Leo Liu <sdl.web@gmail.com>
7458
7459 * newcomment.el (comment-search-backward): Stricter in finding
7460 comment start. (Bug#14303)
7461
7462 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
7463 (octave-comment-start-skip): Properly anchored.
7464
7465 2013-05-17 Leo Liu <sdl.web@gmail.com>
7466
7467 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
7468 Clean up when turned off. (Bug#14395)
7469 (smie--highlight-matching-block-overlay): No longer buffer-local.
7470 (smie-highlight-matching-block): Adjust.
7471
7472 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
7473
7474 Doc string fix for "nanoseconds" (Bug#14406).
7475 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
7476 Fix doc string typo that had "nanoseconds" instead of "microseconds".
7477
7478 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
7479
7480 * calc/calc-units.el (math-extract-units): Preserve powers
7481 of units.
7482
7483 2013-05-17 Leo Liu <sdl.web@gmail.com>
7484
7485 * subr.el (delete-consecutive-dups): New function.
7486 * ido.el (ido-set-matches-1): Use it.
7487 * progmodes/octave.el (inferior-octave-completion-table): Use it.
7488 * ido.el (ido-remove-consecutive-dups): Remove.
7489
7490 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7491
7492 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
7493 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
7494 regexp-opt's `words'.
7495
7496 2013-05-16 Leo Liu <sdl.web@gmail.com>
7497
7498 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
7499 (smie--highlight-matching-block-overlay)
7500 (smie--highlight-matching-block-lastpos)
7501 (smie--highlight-matching-block-timer): New variables.
7502 (smie-highlight-matching-block): New function.
7503 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
7504 (smie-setup): Conditionally enable smie-blink-matching-open.
7505
7506 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
7507
7508 Sync with upstream verilog-mode r840.
7509 * progmodes/verilog-mode.el (verilog-mode-version)
7510 (verilog-mode-release-date): Update.
7511 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
7512 (verilog-sig-tieoff): Fix string error on
7513 AUTORESET with colon define, bug594. Reported by Andrew Hou.
7514 (verilog-read-decls): Fix parameters confusing
7515 AUTOINST interfaces, bug565. Reported by Leith Johnson.
7516
7517 2013-05-16 Eli Zaretskii <eliz@gnu.org>
7518
7519 * subr.el (reveal-filename): New function.
7520
7521 * loadup.el: Compute Emacs executable versions on MS-Windows,
7522 where executables have the .exe extension. Add a hard link
7523 emacs-XX.YY.ZZ.exe on MS-Windows.
7524
7525 * Makefile.in (XARGS_LIMIT): New variable.
7526 (custom-deps, finder-data, autoloads)
7527 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
7528 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
7529 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
7530 (compile-main): Limit xargs according to $(XARGS_LIMIT).
7531
7532 2013-05-16 Leo Liu <sdl.web@gmail.com>
7533
7534 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
7535 (octave-mode-menu, octave-mode-map): Remove its uses.
7536
7537 2013-05-16 Reto Zimmermann <reto@gnu.org>
7538
7539 Sync with upstream vhdl mode v3.34.2.
7540 * progmodes/vhdl-mode.el: Use `push' throughout.
7541 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
7542 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
7543 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
7544 (vhdl-actual-generic-name): New option to derive actual generic name.
7545 (vhdl-port-paste-signals): Replace formal by actual generics.
7546 (vhdl-beautify): New name for old group vhdl-align. Update users.
7547 (vhdl-beautify-options): New option.
7548 (vhdl-last-input-event): New compat alias. Use throughout.
7549 (vhdl-goto-line): Replace user level function `goto-line'.
7550 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
7551 vhdl-fix-statement-buffer.
7552 (vhdl-create-mode-menu): Add some entries.
7553 (vhdl-align-region-groups): Respect vhdl-beautify-options.
7554 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
7555 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
7556 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
7557 to force statements on one line.
7558 (vhdl-remove-trailing-spaces-region):
7559 New, split from vhdl-remove-trailing-spaces.
7560 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
7561 Respect vhdl-beautify-options.
7562 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
7563 (vhdl-update-sensitivity-list): Not add with index if exists without.
7564 Not include array index with signal. Ignore keywords in comments.
7565 (vhdl-get-visible-signals): Regexp tweaks.
7566 (vhdl-template-component-inst): Handle empty library.
7567 (vhdl-template-type): Add template for 'enum' type.
7568 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
7569 Use vhdl-replace-string.
7570 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
7571 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
7572 (vhdl-speedbar-initialize): Update for above name change.
7573 (vhdl-compose-wire-components): Fix in handling of constants.
7574 (vhdl-error-regexp-emacs-alist): New variable.
7575 (vhdl-error-regexp-add-emacs): New function;
7576 adds support for new compile.el (Emacs 22+)
7577 (vhdl-generate-makefile-1): Change target order for single lib. units.
7578 Allow use of absolute file names.
7579
7580 2013-05-16 Leo Liu <sdl.web@gmail.com>
7581
7582 * simple.el (prog-indent-sexp): Indent enclosing defun.
7583
7584 2013-05-15 Glenn Morris <rgm@gnu.org>
7585
7586 * cus-start.el (show-trailing-whitespace): Move to editing basics.
7587 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
7588 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
7589 (whitespace-highlight): Move to whitespace group.
7590
7591 * comint.el (comint-source):
7592 * pcmpl-linux.el (pcmpl-linux):
7593 * shell.el (shell-faces):
7594 * eshell/esh-opt.el (eshell-opt):
7595 * international/ccl.el (ccl): Remove empty custom groups.
7596
7597 * completion.el (dynamic-completion-mode):
7598 * jit-lock.el (jit-lock-debug-mode):
7599 * minibuffer.el (completion-in-region-mode):
7600 * type-break.el (type-break-mode-line-message-mode)
7601 (type-break-query-mode):
7602 * emulation/tpu-edt.el (tpu-edt-mode):
7603 * progmodes/subword.el (global-subword-mode, global-superword-mode):
7604 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7605 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
7606
7607 * term/xterm.el (xterm): Change parent group to terminals.
7608
7609 * master.el (master): Remove empty custom group.
7610 (master-mode): Remove unused :group argument.
7611 * textmodes/refill.el (refill): Remove empty custom group.
7612 (refill-mode): Remove unused :group argument.
7613
7614 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
7615
7616 * cus-dep.el: Provide a feature.
7617 (custom-make-dependencies): Ignore dotfiles (dir-locals).
7618 Don't mistakenly ignore files whose basenames match a basename
7619 from preloaded-file-list (eg cedet/ede/simple.el).
7620 Add a fallback method for getting :group.
7621
7622 2013-05-15 Juri Linkov <juri@jurta.org>
7623
7624 * isearch.el (isearch-char-by-name): Rename from
7625 `isearch-insert-char-by-name'. Doc fix.
7626 (isearch-forward): Mention `isearch-char-by-name' in
7627 the docstring. (Bug#13348)
7628
7629 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
7630 `exit-minibuffer' instead of
7631 `isearch-nonincremental-exit-minibuffer'.
7632 (isearch-edit-string): Remove mention of
7633 `isearch-nonincremental-exit-minibuffer' from docstring.
7634 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
7635 (isearch-forward-exit-minibuffer)
7636 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
7637
7638 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7639
7640 * loadup.el: Just use unversioned DOC.
7641
7642 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
7643 literals as extending to EOB.
7644 (nxml-last-fontify-end): Remove unused variable.
7645 (nxml-after-change1): Use with-silent-modifications.
7646 (nxml-extend-after-change-region): Simplify.
7647 (nxml-extend-after-change-region1): Remove function.
7648 (nxml-after-change1): Don't adjust for dependent regions.
7649 (nxml-fontify-matcher): Simplify.
7650 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
7651 (xmltok-add-dependent): Remove function.
7652 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
7653 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
7654 (xmltok-scan-prolog-after-processing-instruction-open): Treat
7655 unclosed <[[, <?, comment, and other literals as extending to EOB.
7656 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
7657 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
7658 Remove functions.
7659 (rng-do-some-validation-1): Don't mark dependent regions.
7660 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
7661 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
7662 (nxml-clear-dependent-regions): Remove functions.
7663 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
7664 (nxml-ensure-scan-up-to-date):
7665 Don't clear&mark dependent regions.
7666
7667 2013-05-15 Leo Liu <sdl.web@gmail.com>
7668
7669 * progmodes/octave.el (octave-goto-function-definition):
7670 Improve and fix callers.
7671
7672 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7673
7674 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
7675 the setter (bug#14387).
7676
7677 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
7678 surrounding group (bug#14402).
7679
7680 2013-05-14 Juri Linkov <juri@jurta.org>
7681
7682 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
7683 (Bug#14390)
7684
7685 2013-05-14 Glenn Morris <rgm@gnu.org>
7686
7687 * progmodes/f90.el (f90-imenu-generic-expression):
7688 Fix typo in 2013-05-08 change. (Bug#14402)
7689
7690 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7691
7692 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
7693 Remove signals for which replies are never received.
7694
7695 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7696
7697 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
7698 (gdb-handler-alist, gdb-handler-number): Remove variables.
7699 (gdb-handler-list): New variable.
7700 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
7701 (gdb-pending-handler-p, gdb-handle-reply)
7702 (gdb-remove-all-pending-triggers): New functions.
7703 (gdb-discard-unordered-replies): New defcustom.
7704 (gdb-handler): New defstruct.
7705 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
7706 instead of gdb-pending-triggers. Update docstring.
7707 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
7708 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
7709 (gdb-var-update-handler, def-gdb-auto-update-trigger)
7710 (def-gdb-auto-update-handler, gdb-get-changed-registers)
7711 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
7712 (gdb-frame-handler): Pending triggers are now automatically managed.
7713 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
7714 Remove argument.
7715 (gdb-input): Automatically handles pending triggers. Update docstring.
7716 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
7717 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
7718 Update comments.
7719 (gdb-done-or-error): Now use gdb-handle-reply.
7720
7721 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
7722
7723 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
7724 gdb-debug-log.
7725
7726 2013-05-14 Glenn Morris <rgm@gnu.org>
7727
7728 * subr.el (user-emacs-directory-warning): New option.
7729 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
7730
7731 2013-05-14 Leo Liu <sdl.web@gmail.com>
7732
7733 * progmodes/octave.el (octave-font-lock-keywords): Fix error
7734 during redisplay.
7735 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
7736 (octave-font-lock-texinfo-comment): Fix invalid search bound
7737 error: wrong side of point.
7738
7739 2013-05-14 Glenn Morris <rgm@gnu.org>
7740
7741 * progmodes/flymake.el (flymake-xml-program): New option.
7742 (flymake-xml-init): Use it.
7743
7744 * term/xterm.el: Provide a feature.
7745
7746 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
7747
7748 2013-05-13 Glenn Morris <rgm@gnu.org>
7749
7750 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
7751 Add compat aliases as a hack workaround. (Bug#14384)
7752
7753 2013-05-13 Leo Liu <sdl.web@gmail.com>
7754
7755 * progmodes/octave.el (octave-indent-comment): Fix indentation for
7756 ###, and %!.
7757 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
7758 C-M-q.
7759 (octave-comment-start-skip): Include %!.
7760 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
7761
7762 2013-05-12 Leo Liu <sdl.web@gmail.com>
7763
7764 * progmodes/octave.el (inferior-octave-startup): Store the value
7765 of __octave_srcdir__ for octave-source-directories.
7766 (inferior-octave-check-process): New function refactored out of
7767 inferior-octave-send-list-and-digest.
7768 (octave-source-directories)
7769 (octave-find-definition-filename-function): New variables.
7770 (octave-source-directories)
7771 (octave-find-definition-default-filename): New functions.
7772 (octave-find-definition): Improve to find functions implemented in C++.
7773
7774 2013-05-12 Glenn Morris <rgm@gnu.org>
7775
7776 * calendar/diary-lib.el (diary-outlook-format-1):
7777 Don't include dayname in the output. (Bug#14349)
7778
7779 2013-05-11 Glenn Morris <rgm@gnu.org>
7780
7781 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
7782
7783 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
7784 Treat cc-provide like provide.
7785
7786 2013-05-11 Kevin Ryde <user42@zip.com.au>
7787
7788 * cus-dep.el (custom-make-dependencies):
7789 Use generated-autoload-load-name for the sake of files such
7790 such cedet/semantic/bovine/c.el, where the base file name
7791 is not in load-path. (Bug#5277)
7792
7793 2013-05-11 Glenn Morris <rgm@gnu.org>
7794
7795 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
7796 Provide features.
7797
7798 2013-05-11 Leo Liu <sdl.web@gmail.com>
7799
7800 * progmodes/octave.el (octave-indent-comment): Improve.
7801 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
7802 (octave-eldoc-function-signatures, octave-eldoc-function):
7803 New functions.
7804 (octave-mode, inferior-octave-mode): Add eldoc support.
7805
7806 2013-05-11 Richard Stallman <rms@gnu.org>
7807
7808 * epa.el (epa-decrypt-file): Take output file name as argument
7809 and read it using `interactive'.
7810
7811 2013-05-11 Leo Liu <sdl.web@gmail.com>
7812
7813 * progmodes/octave.el (octave-beginning-of-line)
7814 (octave-end-of-line): Check before using up-list because it jumps
7815 out of more syntactic contructs since moving to smie.
7816 (octave-indent-comment): New function.
7817 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
7818 (octave-begin-keywords, octave-end-keywords)
7819 (octave-reserved-words, octave-smie-bnf-table)
7820 (octave-smie-rules): Add new keywords from Octave 3.6.4.
7821
7822 2013-05-11 Glenn Morris <rgm@gnu.org>
7823
7824 * faces.el (internal-face-x-get-resource):
7825 * frame.el (ns-display-monitor-attributes-list):
7826 * calc/calc-aent.el (math-to-radians-2):
7827 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
7828 Fix declarations.
7829
7830 * calc/calc-menu.el: Make it loadable in isolation.
7831
7832 * net/eudcb-bbdb.el: Make it loadable without bbdb.
7833 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
7834 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
7835 (eudc-bbdb-query-internal): Require 'bbdb.
7836
7837 * lpr.el (lpr-headers-switches):
7838 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
7839
7840 * progmodes/sql.el (sql-login-params): Fix and improve :type.
7841
7842 * emulation/edt-mapper.el: In batch mode, error rather than hang.
7843
7844 * term.el (term-set-escape-char): Make it idempotent.
7845
7846 2013-05-10 Leo Liu <sdl.web@gmail.com>
7847
7848 * progmodes/octave.el (inferior-octave-completion-table):
7849 No longer a function and all uses changed. Use cache to speed up
7850 completion due to bug#11906.
7851 (octave-beginning-of-defun): Re-write to be more general.
7852
7853 2013-05-10 Glenn Morris <rgm@gnu.org>
7854
7855 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
7856
7857 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7858
7859 * comint.el (comint-redirect-send-command-to-process): Use :around
7860 rather than :override for comint-redirect-filter.
7861 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
7862 Call it instead of comint-redirect-original-filter-function (which
7863 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
7864
7865 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
7866
7867 * frame.el (display-monitor-attributes-list): Add NS case.
7868 (ns-display-monitor-attributes-list): Declare.
7869
7870 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
7871
7872 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
7873
7874 2013-05-09 Glenn Morris <rgm@gnu.org>
7875
7876 * international/fontset.el (vertical-centering-font-regexp):
7877 Set standard-value.
7878
7879 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
7880
7881 * bookmark.el (bookmark-search-delay):
7882 * cus-start.el (vertical-centering-font-regexp):
7883 * ps-mule.el (ps-mule-font-info-database-default):
7884 * ps-print.el (ps-default-fg, ps-default-bg):
7885 * type-break.el (type-break-good-break-interval):
7886 * whitespace.el (whitespace-indentation-regexp)
7887 (whitespace-space-after-tab-regexp):
7888 * emacs-lisp/testcover.el (testcover-1value-functions)
7889 (testcover-noreturn-functions, testcover-progn-functions)
7890 (testcover-prog1-functions):
7891 * emulation/viper-init.el (viper-emacs-state-cursor-color):
7892 * eshell/em-glob.el (eshell-glob-translate-alist):
7893 * play/tetris.el (tetris-tty-colors):
7894 * progmodes/cpp.el (cpp-face-default-list):
7895 * progmodes/flymake.el (flymake-allowed-file-name-masks):
7896 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
7897 (idlwave-help-browser-generic-args):
7898 * progmodes/make-mode.el (makefile-special-targets-list):
7899 * progmodes/python.el (python-shell-virtualenv-path):
7900 * progmodes/verilog-mode.el (verilog-active-low-regexp)
7901 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
7902 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
7903 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
7904 * textmodes/reftex-vars.el (reftex-format-label-function):
7905 * textmodes/remember.el (remember-diary-file): Fix custom types.
7906
7907 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
7908 Add :version.
7909
7910 2013-05-09 Leo Liu <sdl.web@gmail.com>
7911
7912 * progmodes/octave.el (inferior-octave-completion-at-point):
7913 Restore file completion. (Bug#14300)
7914 (inferior-octave-startup): Fix incorrect highlighting for the
7915 first prompt.
7916
7917 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7918
7919 * progmodes/ruby-mode.el: First cut at SMIE support.
7920 (ruby-use-smie): New var.
7921 (ruby-smie-grammar): New constant.
7922 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
7923 (ruby-smie--forward-token, ruby-smie--backward-token)
7924 (ruby-smie-rules): New functions.
7925 (ruby-mode-variables): Setup SMIE if applicable.
7926
7927 2013-05-08 Eli Zaretskii <eliz@gnu.org>
7928
7929 * simple.el (line-move-visual): Signal beginning/end of buffer
7930 only if vertical-motion moved less than it was requested. Avoids
7931 silly incorrect error messages when there are display strings with
7932 multiple newlines at EOL.
7933
7934 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7935
7936 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
7937 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
7938 (prolog-char-quote-workaround):
7939 * progmodes/cperl-mode.el (cperl-under-as-char):
7940 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
7941 Mark as obsolete.
7942 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
7943 their declaration.
7944 (vhdl-mode-syntax-table-init): Remove.
7945
7946 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
7947 last change.
7948
7949 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
7950 syntax for "_".
7951 (ld-script-font-lock-keywords):
7952 Change regexps to use things like \_< and \_>.
7953
7954 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
7955 Change all regexps to use things like \_< and \_>.
7956
7957 * progmodes/autoconf.el (autoconf-definition-regexp)
7958 (autoconf-font-lock-keywords, autoconf-current-defun-function):
7959 Handle a _ with symbol syntax.
7960 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
7961
7962 * progmodes/ada-mode.el (ada-mode-abbrev-table):
7963 Consolidate declaration.
7964 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
7965 the declaration.
7966 (ada-create-syntax-table): Remove.
7967 (ada-capitalize-word): Don't mess with the syntax of "_" since it
7968 already has the right syntax nowadays.
7969 (ada-goto-next-word): Don't change the syntax of "_".
7970
7971 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
7972 with-wrapper-hook.
7973
7974 2013-05-08 Sam Steingold <sds@gnu.org>
7975
7976 * thingatpt.el (thing-at-point): Accept optional second argument
7977 NO-PROPERTIES to strip the text properties from the return value.
7978 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
7979 to `thing-at-point' instead of stripping the properties ourselves.
7980 Also, when `thing-at-point' fails to find a url, prepend "http://"
7981 to the filename at point on the assumption that the user is
7982 pointing at something like gnu.org/gnu.
7983
7984 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
7985
7986 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
7987 * faces.el (crm-separator):
7988 Silence byte-compiler.
7989
7990 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
7991 (tool-bar-map): Remove unneeded defvars.
7992
7993 2013-05-08 Leo Liu <sdl.web@gmail.com>
7994
7995 Re-work a fix for bug#10994 based on Le Wang's patch.
7996 * ido.el (ido-remove-consecutive-dups): New helper.
7997 (ido-completing-read): Use it.
7998 (ido-chop): Revert fix for bug#10994.
7999
8000 2013-05-08 Adam Spiers <emacs@adamspiers.org>
8001
8002 * cus-edit.el (custom-save-variables):
8003 Pretty-print long values. (Bug#14187)
8004
8005 2013-05-08 Glenn Morris <rgm@gnu.org>
8006
8007 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
8008 (m4-mode-syntax-table): Init in the defvar.
8009 (m4-mode-abbrev-table): Let define-derived-mode define it.
8010
8011 2013-05-08 Tom Tromey <tromey@redhat.com>
8012
8013 * progmodes/m4-mode.el (m4-mode-syntax-table):
8014 Do not treat "_" as word constituent. (Bug#14167)
8015
8016 2013-05-07 Glenn Morris <rgm@gnu.org>
8017
8018 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
8019 Remove explicit eshell-isearch-cancel-map.
8020
8021 * progmodes/f90.el (f90-smart-end-names): New option.
8022 (f90-smart-end): Doc fix.
8023 (f90-end-block-optional-name): New constant.
8024 (f90-block-match): Respect f90-smart-end-names.
8025
8026 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8027
8028 * progmodes/octave.el (octave-smie-forward-token): Be more careful
8029 about implicit semi-colons (bug#14218).
8030
8031 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8032
8033 * frame.el (display-monitor-attributes-list)
8034 (frame-monitor-attributes): New functions.
8035
8036 2013-05-06 Leo Liu <sdl.web@gmail.com>
8037
8038 * progmodes/octave.el (octave-syntax-propertize-function): Change
8039 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
8040 (octave-font-lock-keywords): Use octave-operator-regexp.
8041 (octave-completion-at-point): Rename from
8042 octave-completion-at-point-function.
8043 (inferior-octave-directory-tracker): Robustify.
8044 (octave-text-functions): Remove and fix its uses. No such things
8045 any more.
8046
8047 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8048
8049 * emacs-lisp/trace.el (trace--display-buffer): New function.
8050 (trace-make-advice): Use it.
8051
8052 2013-05-06 Juri Linkov <juri@jurta.org>
8053
8054 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
8055 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
8056 Doc fix.
8057 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
8058 in the help string. (Bug#12985)
8059
8060 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
8061
8062 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
8063
8064 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8065
8066 * progmodes/perl-mode.el: Add support for here documents.
8067 (perl-syntax-propertize-function): Match here-doc markers.
8068 (perl-syntax-propertize-special-constructs): Find their end.
8069 (perl-imenu-generic-expression): Use [:alnum:].
8070
8071 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
8072 (advice--add-function): Refresh the advice if already present
8073 (bug#14317).
8074
8075 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
8076
8077 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
8078
8079 2013-05-06 Glenn Morris <rgm@gnu.org>
8080
8081 * w32-fns.el (w32-charset-info-alist): Declare.
8082
8083 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
8084 of its defcustom properties.
8085 (eshell-cmpl-initialize): No need to load pcomplete.
8086
8087 * generic-x.el: No need to require comint when compiling.
8088
8089 * net/eudc-export.el: Make it loadable without bbdb.
8090 (top-level): Use require rather than load-library.
8091 (eudc-create-bbdb-record, eudc-bbdbify-phone)
8092 (eudc-batch-export-records-to-bbdb)
8093 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
8094 Require bbdb.
8095
8096 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
8097
8098 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
8099 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
8100 some tweaks, instead.
8101
8102 2013-05-05 Leo Liu <sdl.web@gmail.com>
8103
8104 * progmodes/octave.el (octave-font-lock-keywords)
8105 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
8106 (inferior-octave-send-list-and-digest): Improve error message.
8107 (octave-mode, inferior-octave-mode): Use setq-local.
8108 (octave-help): Set info-lookup-mode.
8109
8110 2013-05-05 Richard Stallman <rms@gnu.org>
8111
8112 * vc/compare-w.el (compare-windows-whitespace):
8113 Treat no-break space as whitespace.
8114
8115 * mail/rmailsum.el (rmail-summary-rmail-update):
8116 Detect empty summary and don't change selected message.
8117 (rmail-summary-goto-msg): Likewise.
8118
8119 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
8120 Doc fixes, rename args.
8121
8122 2013-05-05 Alan Mackenzie <acm@muc.de>
8123
8124 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
8125
8126 2013-05-05 Juri Linkov <juri@jurta.org>
8127
8128 * info.el (Info-read-subfile): Use (point-min) instead of (point)
8129 to not add the length of the summary segment to the return value.
8130 (Bug#14125)
8131
8132 2013-05-05 Leo Liu <sdl.web@gmail.com>
8133
8134 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
8135 (inferior-octave-output-filter): Remove.
8136 (octave-send-region, inferior-octave-startup): Fix callers.
8137 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
8138 (octave-binary-file-extensions): New user variable.
8139 (octave-find-definition): Confirm if opening binary files.
8140 (octave-help-file): Use octave-find-definition to get the binary
8141 confirmation.
8142 (octave-help): Adjust for octave-help-file change.
8143
8144 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8145
8146 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
8147 Merge the two entries that handle function definitions.
8148 (pascal--syntax-propertize): New const.
8149 (pascal-mode): Use it. Use setq-local.
8150
8151 2013-05-04 Glenn Morris <rgm@gnu.org>
8152
8153 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
8154 (diary-from-outlook): Respect diary-from-outlook-function.
8155
8156 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8157
8158 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
8159 Move the declaration from C.
8160 (read-minibuffer, eval-minibuffer): Move from C.
8161 (completion-setup-function): Avoid minibuffer-completion-contents.
8162
8163 2013-05-03 Leo Liu <sdl.web@gmail.com>
8164
8165 * progmodes/octave.el (octave-font-lock-keywords): Do not
8166 dehighlight 'end' in comments or strings.
8167 (octave-completing-read, octave-goto-function-definition):
8168 New helpers.
8169 (octave-help-buffer): New user variable.
8170 (octave-help-file, octave-help-function): New button types.
8171 (octave-help): New command and bind it to C-h ;.
8172 (octave-find-definition): New command and bind it to M-.
8173 (user-error): Alias to error if not defined.
8174
8175 2013-05-02 Leo Liu <sdl.web@gmail.com>
8176
8177 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
8178 for \. (bug#14332)
8179 (octave-font-lock-keywords): Include [ and {.
8180
8181 2013-05-02 Leo Liu <sdl.web@gmail.com>
8182
8183 * progmodes/octave.el (inferior-octave-startup-file): Change default.
8184 (inferior-octave): Remove calling comint-mode and return the buffer.
8185 (inferior-octave-startup): Cosmetic changes.
8186
8187 2013-05-02 Leo Liu <sdl.web@gmail.com>
8188
8189 * progmodes/octave.el (octave-syntax-propertize-function):
8190 Include the case when ' is at line beginning. (Bug#14336)
8191
8192 2013-05-02 Glenn Morris <rgm@gnu.org>
8193
8194 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
8195 * desktop.el (vc-dir-mode): Just autoload it here.
8196
8197 2013-05-02 Alan Mackenzie <acm@muc.de>
8198
8199 Eliminate variable c-standard-font-lock-fontify-region-function.
8200 * progmodes/cc-mode.el
8201 (c-standard-font-lock-fontify-region-function): Remove.
8202 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
8203
8204 2013-05-01 Leo Liu <sdl.web@gmail.com>
8205
8206 * progmodes/octave.el: Compatible with older emacs-24 releases.
8207 (inferior-octave-has-built-in-variables): Remove. Built-in
8208 variables were removed from Octave in 2007.
8209 (inferior-octave-startup): Fix uses.
8210 (comint-line-beginning-position): Remove compatibility code for
8211 emacs 21.
8212
8213 2013-05-01 Juri Linkov <juri@jurta.org>
8214
8215 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
8216
8217 2013-05-01 Juri Linkov <juri@jurta.org>
8218
8219 * comint.el (comint-previous-matching-input): Don't print message
8220 "History item: %d" when `isearch-mode' is active.
8221 (comint-history-isearch-message): Print message "History item: %d"
8222 when `comint-input-ring-index' is not empty and this function is
8223 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
8224
8225 2013-05-01 Leo Liu <sdl.web@gmail.com>
8226
8227 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
8228 definitions. Use completion-at-point to insert keywords.
8229 (octave-abbrev-start): Remove.
8230 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
8231
8232 2013-04-30 Leo Liu <sdl.web@gmail.com>
8233
8234 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
8235 change.
8236
8237 2013-04-30 Alan Mackenzie <acm@muc.de>
8238
8239 Handle arbitrarily long C++ member initialisation lists.
8240 * progmodes/cc-engine.el (c-back-over-member-initializers):
8241 new function.
8242 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
8243 (most) member init lists.
8244
8245 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
8246
8247 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
8248 variable.
8249
8250 2013-04-30 Leo Liu <sdl.web@gmail.com>
8251
8252 * progmodes/octave.el (octave-variables): Remove. No builtin
8253 variables any more. All converted to functions.
8254 (octave-font-lock-keywords, octave-completion-at-point-function):
8255 Fix uses.
8256 (octave-font-lock-texinfo-comment): New user variable.
8257 (octave-texinfo-font-lock-keywords): New variable for texinfo
8258 comment block.
8259 (octave-function-comment-block): New face.
8260 (octave-font-lock-texinfo-comment): New function.
8261 (octave-mode): Font lock texinfo comment block.
8262
8263 2013-04-29 Leo Liu <sdl.web@gmail.com>
8264
8265 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
8266 indexing expression.
8267 (octave-continuation-string): Do not use \.
8268 (inferior-octave-complete-impossible): Remove.
8269 (inferior-octave-completion-table)
8270 (inferior-octave-completion-at-point): Remove its uses.
8271 (inferior-octave-startup): completion_matches was introduced to
8272 Octave in 1996 so safe to assume it.
8273 (octave-function-file-comment): Improve to follow how Octave does it.
8274 (octave-update-function-file-comment): Tweak.
8275
8276 2013-04-29 Leo Liu <sdl.web@gmail.com>
8277
8278 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
8279 (inferior-octave-startup): Remove inferior-octave-startup-hook.
8280 (octave-function-file-comment): Fix typo.
8281 (octave-sync-function-file-names): Use read-char-choice.
8282
8283 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
8284
8285 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
8286 to t for the less important warnings.
8287
8288 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
8289
8290 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
8291
8292 2013-04-27 Glenn Morris <rgm@gnu.org>
8293
8294 * vc/log-view.el (log-view-current-entry):
8295 Treat "---" separator lines as part of the following rev. (Bug#14169)
8296
8297 2013-04-27 Juri Linkov <juri@jurta.org>
8298
8299 * subr.el (read-number): Doc fix about using it by interactive
8300 code letter `n'. (Bug#14254)
8301
8302 2013-04-27 Juri Linkov <juri@jurta.org>
8303
8304 * desktop.el (desktop-auto-save-timeout): New option.
8305 (desktop-file-checksum): New variable.
8306 (desktop-save): Add optional arg `auto-save' and don't auto-save
8307 if nothing changed.
8308 (desktop-auto-save-timer): New variable.
8309 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
8310 (after-init-hook): Call `desktop-auto-save-set-timer'.
8311 Suggested by Reuben Thomas <rrt@sc3d.org> in
8312 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
8313
8314 2013-04-27 Leo Liu <sdl.web@gmail.com>
8315
8316 * progmodes/octave.el (octave-function-file-p)
8317 (octave-skip-comment-forward, octave-function-file-comment)
8318 (octave-update-function-file-comment): New functions.
8319 (octave-mode-map): Bind C-c ; to
8320 octave-update-function-file-comment.
8321 (octave-mode-menu): Add octave-update-function-file-comment.
8322 (octave-mode, inferior-octave-mode): Fix doc-string.
8323 (octave-insert-defun): Conform to Octave's coding convention.
8324 (Bug#14285)
8325
8326 * files.el (basic-save-buffer): Don't let errors in
8327 before-save-hook prevent saving buffer.
8328
8329 2013-04-20 Roland Winkler <winkler@gnu.org>
8330
8331 * faces.el (read-face-name): Use completing-read if arg multiple
8332 is nil.
8333
8334 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
8335
8336 * ls-lisp.el (ls-lisp-insert-directory): If no files are
8337 displayed, move point to after the totals line.
8338 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
8339 for the details.
8340
8341 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8342
8343 * emacs-lisp/package.el (package-autoload-ensure-default-file):
8344 Add current dir to the load-path.
8345 (package-generate-autoloads): Don't rely on
8346 autoload-ensure-default-file.
8347
8348 2013-04-26 Reuben Thomas <rrt@sc3d.org>
8349
8350 * textmodes/remember.el (remember-store-in-files): Document that
8351 the file name format is passed to `format-time-string'.
8352
8353 2013-04-26 Leo Liu <sdl.web@gmail.com>
8354
8355 * progmodes/octave.el (octave-sync-function-file-names): New function.
8356 (octave-mode): Use it in before-save-hook.
8357
8358 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8359
8360 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
8361 (bug#14274).
8362
8363 * progmodes/octave.el (octave-smie-forward-token): Properly skip
8364 \n and comment, even if it's not an implicit ; (bug#14218).
8365
8366 2013-04-26 Glenn Morris <rgm@gnu.org>
8367
8368 * subr.el (read-number): Once more use `read' rather than
8369 `string-to-number', to trap non-numeric input. (Bug#14254)
8370
8371 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
8372
8373 * emacs-lisp/syntax.el (syntax-propertize-multiline):
8374 Use `syntax-multiline' text property consistently instead of
8375 `font-lock-multiline'. (Bug#14237)
8376
8377 2013-04-26 Glenn Morris <rgm@gnu.org>
8378
8379 * emacs-lisp/shadow.el (list-load-path-shadows):
8380 No longer necessary to check for duplicate simple.el, since
8381 2012-07-07 change to init_lread to not include installation lisp
8382 directories in load-path when running uninstalled. (Bug#14270)
8383
8384 2013-04-26 Leo Liu <sdl.web@gmail.com>
8385
8386 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
8387 (octave-mode, inferior-octave-mode): Use setq-local.
8388 (octave-not-in-string-or-comment-p): Rename to
8389 octave-in-string-or-comment-p.
8390 (octave-in-comment-p, octave-in-string-p)
8391 (octave-in-string-or-comment-p): Replace defsubst with defun.
8392
8393 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
8394
8395 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
8396
8397 2013-04-25 Bastien Guerry <bzg@gnu.org>
8398
8399 * textmodes/remember.el (remember-data-directory)
8400 (remember-directory-file-name-format): Fix custom types.
8401
8402 2013-04-25 Leo Liu <sdl.web@gmail.com>
8403
8404 * progmodes/octave.el (octave-completion-at-point-function):
8405 Make use of inferior octave process.
8406 (octave-initialize-completions): Remove.
8407 (inferior-octave-completion-table): New function.
8408 (inferior-octave-completion-at-point): Use it.
8409 (octave-completion-alist): Remove.
8410
8411 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8412
8413 * progmodes/opascal.el: Use font-lock and syntax-propertize.
8414 (opascal-mode-syntax-table): New var.
8415 (opascal-literal-kind, opascal-is-literal-end)
8416 (opascal-literal-token-at): Rewrite.
8417 (opascal--literal-start-re, opascal-font-lock-keywords)
8418 (opascal--syntax-propertize): New constants.
8419 (opascal-font-lock-defaults): Adjust.
8420 (opascal-mode): Use them. Set comment-<foo> variables as well.
8421 (delphi-comment-face, opascal-comment-face, delphi-string-face)
8422 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
8423 (delphi-other-face, opascal-other-face): Remove face variables.
8424 (opascal-save-state): Remove macro.
8425 (opascal-fontifying-progress-step): Remove constant.
8426 (opascal--ignore-changes): Remove var.
8427 (opascal-set-token-property, opascal-parse-next-literal)
8428 (opascal-is-stable-literal, opascal-complete-literal)
8429 (opascal-is-literal-start, opascal-face-of)
8430 (opascal-parse-region, opascal-parse-region-until-stable)
8431 (opascal-fontify-region, opascal-after-change)
8432 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
8433 (opascal-debug-parse-region, opascal-debug-parse-window)
8434 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
8435 (opascal-debug-fontify-buffer): Remove.
8436 (opascal-debug-mode-map): Adjust accordingly.
8437
8438 2013-04-25 Leo Liu <sdl.web@gmail.com>
8439
8440 Merge octave-mod.el and octave-inf.el into octave.el with some
8441 cleanups.
8442 * progmodes/octave.el: New file renamed from octave-mod.el.
8443 * progmodes/octave-inf.el: Merged into octave.el.
8444 * progmodes/octave-mod.el: Renamed to octave.el.
8445
8446 2013-04-25 Tassilo Horn <tsdh@gnu.org>
8447
8448 * textmodes/reftex-vars.el
8449 (reftex-label-ignored-macros-and-environments): New defcustom.
8450
8451 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
8452
8453 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8454
8455 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
8456 (smie-indent-keyword): Improve the check to ensure that the next
8457 comment is really on the same line.
8458 (smie-indent-comment): Don't align with a subsequent closer (or eob).
8459
8460 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
8461 semi-colons if the line is not otherwise empty (bug#14218).
8462
8463 2013-04-25 Glenn Morris <rgm@gnu.org>
8464
8465 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
8466
8467 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8468
8469 * progmodes/opascal.el (opascal-set-token-property): Rename from
8470 opascal-set-text-properties and only set `token' (bug#14134).
8471 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
8472 (opascal-literal-text-properties): Remove.
8473 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
8474 Adjust callers.
8475
8476 2013-04-24 Reuben Thomas <rrt@sc3d.org>
8477
8478 * textmodes/remember.el (remember-handler-functions): Add an
8479 option for a new handler `remember-store-in-files'.
8480 (remember-data-directory, remember-directory-file-name-format):
8481 New options.
8482 (remember-store-in-files): New function to store remember notes
8483 as separate files within a directory.
8484
8485 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
8486
8487 * progmodes/compile.el (compilation-next-error-function):
8488 Pass "formats" to compilation-find-file (bug#11777).
8489
8490 2013-04-24 Glenn Morris <rgm@gnu.org>
8491
8492 * vc/vc-bzr.el (vc-bzr-print-log):
8493 * vc/vc-hg.el (vc-hg-print-log):
8494 * vc/vc-svn.el (vc-svn-print-log):
8495 Fix START-REVISION with LIMIT != 1. (Bug#14168)
8496
8497 * vc/vc-bzr.el (vc-bzr-print-log):
8498 * vc/vc-cvs.el (vc-cvs-print-log):
8499 * vc/vc-git.el (vc-git-print-log):
8500 * vc/vc-hg.el (vc-hg-print-log):
8501 * vc/vc-mtn.el (vc-mtn-print-log):
8502 * vc/vc-rcs.el (vc-rcs-print-log):
8503 * vc/vc-sccs.el (vc-sccs-print-log):
8504 * vc/vc-svn.el (vc-svn-print-log):
8505 * vc/vc.el (vc-print-log-internal): Doc fixes.
8506
8507 2013-04-23 Glenn Morris <rgm@gnu.org>
8508
8509 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
8510 Remove venerable code attempting to avoid substitute-command-keys.
8511
8512 2013-04-23 Tassilo Horn <tsdh@gnu.org>
8513
8514 * textmodes/reftex-vars.el (reftex-label-regexps):
8515 Call `reftex-compile-variables' after changes to this variable.
8516
8517 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8518
8519 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
8520 Use lexical-binding.
8521 (jit-lock-force-redisplay): Use markers, check buffer's continued
8522 existence and beware narrowed buffers.
8523 (jit-lock-fontify-now): Adjust call accordingly.
8524
8525 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
8526
8527 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
8528 to avoid misleading the user.
8529
8530 2013-04-22 Leo Liu <sdl.web@gmail.com>
8531
8532 * info-look.el: Prefer latex2e.info. (Bug#14240)
8533
8534 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
8535
8536 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
8537
8538 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
8539 * net/tramp.el (tramp-call-process): ... here.
8540 (tramp-set-completion-function, tramp-parse-putty):
8541 * net/tramp-adb.el (tramp-adb-execute-adb-command):
8542 * net/tramp-gvfs.el (tramp-gvfs-send-command):
8543 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
8544 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
8545 (tramp-call-local-coding-command): Use `tramp-call-process'
8546 instead of `tramp-compat-call-process'.
8547
8548 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
8549 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
8550 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
8551 (tramp-find-inline-compress): Improve traces.
8552 (tramp-maybe-send-script): Check for Perl binary.
8553 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
8554
8555 2013-04-22 Daiki Ueno <ueno@gnu.org>
8556
8557 * epg.el (epg-context-pinentry-mode): New function.
8558 (epg-context-set-pinentry-mode): New function.
8559 (epg--start): Pass --pinentry-mode option to gpg command.
8560
8561 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
8562
8563 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
8564 `comint-dynamic-complete' is obsolete since 24.1, replaced by
8565 `completion-at-point'. (Bug#13774)
8566
8567 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
8568 default key binding for `describe-distribution' has been moved to
8569 `C-h C-o'. (Bug#13970)
8570
8571 2013-04-21 Glenn Morris <rgm@gnu.org>
8572
8573 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
8574 Add doc strings.
8575 (vc-print-log): Clarify interactive prompt.
8576
8577 2013-04-20 Glenn Morris <rgm@gnu.org>
8578
8579 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
8580 No longer include timestamp etc information.
8581
8582 2013-04-20 Roland Winkler <winkler@gnu.org>
8583
8584 * faces.el (read-face-name): Bug fix, return just one face if arg
8585 multiple is nil. (Bug#14209)
8586
8587 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8588
8589 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
8590 (remove-function): Autoload.
8591
8592 * comint.el (comint-redirect-original-filter-function): Remove.
8593 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
8594 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
8595 (vc-cvs-annotate-command):
8596 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
8597 * progmodes/prolog.el (prolog-consult-compile):
8598 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
8599 Use add/remove-function instead.
8600 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
8601 (gud-tooltip-process-output, gud-tooltip-tips):
8602 Use add/remove-function instead.
8603 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
8604 (scheme-interaction-mode, exit-scheme-interaction-mode):
8605 Use add/remove-function instead.
8606
8607 * vc/vc-dispatcher.el: Use lexical-binding.
8608 (vc--process-sentinel): Rename from vc-process-sentinel.
8609 Change last arg to be the code to run. Don't use vc-previous-sentinel
8610 and vc-sentinel-commands any more.
8611 (vc-exec-after): Allow code to be a function. Use add/remove-function.
8612 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
8613
8614 2013-04-19 Masatake YAMATO <yamato@redhat.com>
8615
8616 * progmodes/sh-script.el (sh-imenu-generic-expression):
8617 Handle function names with a single character. (Bug#14111)
8618
8619 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
8620
8621 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
8622 for subroutines defined in an eval (bug#14182).
8623
8624 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8625
8626 * bookmark.el (bookmark-completing-read): Improve handling of empty
8627 string (bug#14176).
8628
8629 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8630
8631 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
8632
8633 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
8634
8635 New faster Imenu implementation (bug#14058).
8636 * progmodes/python.el:
8637 (python-imenu-prev-index-position):
8638 (python-imenu-format-item-label-function)
8639 (python-imenu-format-parent-item-label-function)
8640 (python-imenu-format-parent-item-jump-label-function):
8641 New vars.
8642 (python-imenu-format-item-label)
8643 (python-imenu-format-parent-item-label)
8644 (python-imenu-format-parent-item-jump-label)
8645 (python-imenu--put-parent, python-imenu--build-tree)
8646 (python-imenu-create-index, python-imenu-create-flat-index)
8647 (python-util-popn): New functions.
8648 (python-mode): Set imenu-create-index-function to
8649 python-imenu-create-index.
8650
8651 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8652
8653 * winner.el (winner-active-region): Use region-active-p, activate-mark
8654 and deactivate-mark (bug#14225).
8655
8656 * simple.el (deactivate-mark): Don't inline it.
8657
8658 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
8659
8660 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
8661
8662 2013-04-18 Tassilo Horn <tsdh@gnu.org>
8663
8664 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
8665 file extensions from the archive-mode entry in order to prefer
8666 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
8667
8668 2013-04-18 Leo Liu <sdl.web@gmail.com>
8669
8670 * bindings.el (help-event-list): Add ?\?.
8671
8672 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8673
8674 * subr.el (with-wrapper-hook): Declare obsolete.
8675 * simple.el (filter-buffer-substring-function): New hook.
8676 (filter-buffer-substring): Use it.
8677 (filter-buffer-substring-functions): Mark obsolete.
8678 * minibuffer.el (completion-in-region-function): New hook.
8679 (completion-in-region): Use it.
8680 (completion-in-region-functions): Mark obsolete.
8681 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
8682 * abbrev.el (abbrev-expand-function): New hook.
8683 (expand-abbrev): Use it.
8684 (abbrev-expand-functions): Mark obsolete.
8685 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
8686 and :filter-return.
8687
8688 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8689
8690 * progmodes/python.el (python-nav--syntactically): Fix cornercases
8691 and do not care about match data.
8692
8693 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8694
8695 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
8696 completion tables when completing error conditions and
8697 `declare' arguments.
8698 (lisp-complete-symbol, field-complete): Mark as obsolete.
8699 (check-parens): Unmatched parens are user errors.
8700 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
8701
8702 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
8703
8704 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
8705 command changed buffer (ie. `flyspell-pre-buffer' is not current
8706 buffer), which prevents making decisions based on invalid value of
8707 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
8708 cause an error when `flyspell-pre-point' was nil after switching
8709 buffers.
8710 (flyspell-post-command-hook): No longer needs to change buffers when
8711 checking pre-word. While at it remove unnecessary progn.
8712
8713 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
8714
8715 * textmodes/ispell.el (ispell-add-per-file-word-list):
8716 Fix `flyspell-correct-word-before-point' error when accepting
8717 words and `coment-padding' is an integer by using
8718 `comment-normalize-vars' (Bug #14214).
8719
8720 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8721
8722 New defun movement commands.
8723 * progmodes/python.el (python-nav--syntactically)
8724 (python-nav--forward-defun, python-nav-backward-defun)
8725 (python-nav-forward-defun): New functions.
8726
8727 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
8728
8729 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
8730 (python-syntax-context): Use named compiler-macro for backwards
8731 compatibility with Emacs 24.x.
8732
8733 2013-04-17 Leo Liu <sdl.web@gmail.com>
8734
8735 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
8736 octave-hide-process-buffer.
8737
8738 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
8739
8740 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
8741 (bug#14216).
8742
8743 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
8744
8745 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
8746 Fix adjustment of offset when receiving incomplete responses from GDB
8747 (bug#14129).
8748
8749 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8750
8751 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
8752 python-mode-abbrev-table.
8753 (python-skeleton-define): Adjust accordingly.
8754 (python-mode-abbrev-table): New table that inherits from it so that
8755 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
8756
8757 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
8758 (abbrev-symbol): Use it.
8759 (abbrev--before-point): Use it since we already handle inheritance.
8760
8761 2013-04-16 Leo Liu <sdl.web@gmail.com>
8762
8763 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
8764 binding to info-lookup-symbol.
8765
8766 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
8767
8768 * minibuffer.el (completion--twq-all):
8769 * term/ns-win.el (ns-initialize-window-system):
8770 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
8771
8772 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8773
8774 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
8775 global bindings.
8776
8777 * doc-view.el (doc-view-start-process): Handle url-handler directories.
8778
8779 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
8780
8781 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
8782 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
8783 to nil.
8784 (ruby-end-of-defun): Remove the unused arg, change the docstring
8785 to reflect that this function is only used as the value of
8786 `end-of-defun-function'.
8787 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
8788 to reflect an earlier change that beginning/end-of-defun functions
8789 jump between methods in a class definition, as well as top-level
8790 functions.
8791
8792 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8793
8794 * minibuffer.el (minibuffer-complete): Don't just scroll
8795 a *Completions* that's been iconified.
8796 (minibuffer-force-complete): Make sure repetitions do cycle when going
8797 through completion-in-region -> minibuffer-complete.
8798
8799 2013-04-15 Alan Mackenzie <acm@muc.de>
8800
8801 Correct the placement of c-cpp-delimiters when there're #s not at
8802 col 0.
8803
8804 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
8805 place a submatch around the #.
8806 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
8807 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
8808 on the #, not BOL.
8809
8810 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
8811
8812 * emacs-lisp/nadvice.el: Properly test names when adding advice.
8813 (advice--member-p): New arg `name'.
8814 (advice--add-function, advice-member-p): Use it (bug#14202).
8815
8816 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
8817
8818 Reformulate java imenu-generic-expression.
8819 The old expression contained ill formed regexps.
8820
8821 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
8822 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
8823 (cc-imenu-java-method-arg-regexp): New defconsts.
8824 (cc-imenu-java-build-type-args-regex): New defun.
8825 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
8826 handling of spaces in the regexp.
8827
8828 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8829
8830 * textmodes/ispell.el (ispell-command-loop): Remove
8831 flyspell highlight of a word when ispell accepts it (bug #14178).
8832
8833 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
8834
8835 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
8836 uses code from the previous `ange-ftp-run-real-handler'.
8837 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
8838 only in case that function exist. This is needed for proper
8839 unloading of Tramp.
8840
8841 2013-04-15 Tassilo Horn <tsdh@gnu.org>
8842
8843 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
8844
8845 * textmodes/reftex.el (reftex-compile-variables): Use it.
8846
8847 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
8848
8849 * files.el (normal-mode): Only use default major-mode if no other mode
8850 was specified.
8851
8852 * emacs-lisp/trace.el (trace-values): New function.
8853
8854 * files.el: Allow : in local variables (bug#14089).
8855 (hack-local-variable-regexp): New var.
8856 (hack-local-variables-prop-line, hack-local-variables): Use it.
8857
8858 2013-04-13 Roland Winkler <winkler@gnu.org>
8859
8860 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
8861 data before it gets modified by bibtex-beginning-of-entry.
8862
8863 2013-04-13 Roland Winkler <winkler@gnu.org>
8864
8865 * textmodes/bibtex.el (bibtex-url): Doc fix.
8866
8867 2013-04-13 Roland Winkler <winkler@gnu.org>
8868
8869 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
8870 does not visit a BibTeX file, exclude it from the list of buffers
8871 returned by bibtex-initialize.
8872
8873 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
8874
8875 * window.el (split-window): Remove interactive form, since as a
8876 command this function is a special case of split-window-below.
8877 Correct doc string.
8878
8879 2013-04-12 Roland Winkler <winkler@gnu.org>
8880
8881 * faces.el (read-face-name): Do not override value of arg default.
8882 Allow single faces and strings as default values. Remove those
8883 elements from return value that are not faces.
8884 (describe-face): Simplify.
8885 (face-at-point): New optional args thing and multiple so that this
8886 function can provide the same functionality previously provided by
8887 read-face-name.
8888 (make-face-bold, make-face-unbold, make-face-italic)
8889 (make-face-unitalic, make-face-bold-italic, invert-face)
8890 (modify-face, read-face-and-attribute): Use face-at-point.
8891
8892 * cus-edit.el (customize-face, customize-face-other-window)
8893 * cus-theme.el (custom-theme-add-face)
8894 * face-remap.el (buffer-face-set)
8895 * facemenu.el (facemenu-set-face): Use face-at-point.
8896
8897 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
8898
8899 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
8900
8901 2013-04-10 Tassilo Horn <tsdh@gnu.org>
8902
8903 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
8904 off leading { and trailing } from field values.
8905
8906 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8907
8908 * emacs-lisp/timer.el (timer--check): New function.
8909 (timer--time, timer-set-function, timer-event-handler): Use it.
8910 (timer-set-idle-time): Simplify.
8911 (timer--activate): CSE.
8912 (timer-event-handler): Give more info in error message.
8913 (internal-timer-start-idle): New function, moved from C.
8914
8915 * mpc.el (mpc-proc): Add `restart' argument.
8916 (mpc-proc-cmd): Use it.
8917 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
8918 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
8919 less often.
8920
8921 2013-04-10 Masatake YAMATO <yamato@redhat.com>
8922
8923 * progmodes/sh-script.el: Implement `sh-mode' own
8924 `add-log-current-defun-function' (bug#14112).
8925 (sh-current-defun-name): New function.
8926 (sh-mode): Use the function.
8927
8928 2013-04-09 Bastien Guerry <bzg@gnu.org>
8929
8930 * simple.el (choose-completion-string): Fix docstring (bug#14163).
8931
8932 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8933
8934 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
8935
8936 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
8937 timer (bug#14156).
8938
8939 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
8940
8941 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
8942 declaration.
8943
8944 2013-04-07 Leo Liu <sdl.web@gmail.com>
8945
8946 * pcmpl-x.el: New file.
8947
8948 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
8949
8950 Do not set x-display-name until X connection is established.
8951 This is needed to prevent from weird situation described at
8952 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
8953 * frame.el (make-frame): Set x-display-name after call to
8954 window system initialization function, not before.
8955 * term/x-win.el (x-initialize-window-system): Add optional
8956 display argument and use it.
8957 * term/w32-win.el (w32-initialize-window-system):
8958 * term/ns-win.el (ns-initialize-window-system):
8959 * term/pc-win.el (msdos-initialize-window-system):
8960 Add compatible optional display argument.
8961
8962 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8963
8964 * files.el (normal-backup-enable-predicate): On MS-Windows and
8965 MS-DOS compare truenames of temporary-file-directory and of the
8966 file, so that 8+3 aliases (usually found in $TEMP on Windows)
8967 don't fail comparison by compare-strings. Also, compare file
8968 names case-insensitively on MS-Windows and MS-DOS.
8969
8970 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8971
8972 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
8973 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
8974
8975 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
8976
8977 * whitespace.el (whitespace-color-on, whitespace-color-off):
8978 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
8979
8980 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
8981
8982 * ispell.el (ispell-set-spellchecker-params):
8983 Really set `ispell-args' for all equivs.
8984
8985 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
8986
8987 * ido.el (ido-completions): Use extra elements of ido-decorations
8988 (bug#14143).
8989 (ido-decorations): Update docstring.
8990
8991 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
8992
8993 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8994 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
8995 nil during initialization, in order not to miss changes since the
8996 file was opened. (Bug#14140)
8997
8998 2013-04-05 Leo Liu <sdl.web@gmail.com>
8999
9000 * kmacro.el (kmacro-call-macro): Fix bug#14135.
9001
9002 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
9003
9004 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
9005
9006 2013-04-04 Glenn Morris <rgm@gnu.org>
9007
9008 * electric.el (electric-pair-inhibit-predicate): Add :version.
9009
9010 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9011
9012 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
9013 when a package is required several times (bug#14082).
9014
9015 2013-04-04 Roland Winkler <winkler@gnu.org>
9016
9017 * faces.el (read-face-name): Behave as promised by the docstring.
9018 Assume that arg default is a list of faces.
9019 (describe-face): Call read-face-name with list of default faces.
9020
9021 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9022
9023 * bookmark.el: Fix deletion of bookmarks (bug#13972).
9024 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
9025 (bookmark-bmenu-execute-deletions): Only skip first line if it's
9026 the header.
9027 (bookmark-exit-hook-internal): Save even if list is empty.
9028
9029 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
9030
9031 * emacs-lisp/package.el (package-pinned-packages): New var.
9032 (package--add-to-archive-contents): Obey it (bug#14118).
9033
9034 2013-04-03 Alan Mackenzie <acm@muc.de>
9035
9036 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
9037 Also adapt to the new values of element 7 of a parse state.
9038
9039 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
9040 parameter `not-in-delimiter'. Handle being inside comment opener.
9041 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
9042 character in case we're typing a '*' after a '/'.
9043 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
9044 instead by passing the parameter to c-state-pp-to-literal.
9045
9046 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
9047 for elt. 7 of a parse state.
9048
9049 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
9050
9051 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
9052 * international/latin1-disp.el, international/mule-util.el:
9053 * language/cyril-util.el, language/european.el, language/ind-util.el:
9054 * language/lao-util.el, language/thai.el, language/tibet-util.el:
9055 * language/tibetan.el, language/viet-util.el:
9056 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
9057
9058 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
9059
9060 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
9061 (electric-pair-post-self-insert-function): Use it.
9062 (electric-pair-default-inhibit): New function, extracted from
9063 electric-pair-post-self-insert-function.
9064
9065 2013-03-31 Roland Winkler <winkler@gnu.org>
9066
9067 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
9068
9069 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9070
9071 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
9072
9073 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
9074
9075 Un-indent after "pass" and "return" statements (Bug#13888)
9076 * progmodes/python.el (python-indent-block-enders): New var.
9077 (python-indent-calculate-indentation): Use it.
9078
9079 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
9080
9081 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
9082 defun. Defining it as defalias could introduce too eager
9083 byte-compiler optimization. (Bug#14030)
9084
9085 2013-03-30 Chong Yidong <cyd@gnu.org>
9086
9087 * iswitchb.el (iswitchb-read-buffer): Fix typo.
9088
9089 2013-03-30 Leo Liu <sdl.web@gmail.com>
9090
9091 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
9092 (kmacro-execute-from-register): Pass the keyboard macro to
9093 kmacro-call-macro or repeating won't work correctly.
9094
9095 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
9096
9097 * progmodes/subword.el: Back to using `forward-symbol'.
9098
9099 * subr.el (forward-whitespace, forward-symbol)
9100 (forward-same-syntax): Move from thingatpt.el.
9101
9102 2013-03-29 Leo Liu <sdl.web@gmail.com>
9103
9104 * kmacro.el (kmacro-to-register): New command.
9105 (kmacro-execute-from-register): New function.
9106 (kmacro-keymap): Bind to 'x'. (Bug#14071)
9107
9108 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
9109
9110 * mpc.el: Use defvar-local and setq-local.
9111 (mpc--proc-connect): Connection failures are not bugs.
9112 (mpc-mode-map): `follow-link' only applies to the buffer's content.
9113 (mpc-volume-map): Bind to the up-events.
9114
9115 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
9116
9117 * progmodes/subword.el (superword-mode): Use `forward-sexp'
9118 instead of `forward-symbol'.
9119
9120 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9121
9122 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
9123 (edebug--recursive-edit): Use it.
9124 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
9125 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
9126
9127 2013-03-28 Leo Liu <sdl.web@gmail.com>
9128
9129 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
9130
9131 2013-03-27 Eli Zaretskii <eliz@gnu.org>
9132
9133 * facemenu.el (list-colors-callback): New defvar.
9134 (list-colors-redisplay): New function.
9135 (list-colors-display): Install list-colors-redisplay as the
9136 revert-buffer-function. (Bug#14063)
9137
9138 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9139
9140 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
9141 and suffixes don't overlap (bug#14061).
9142
9143 * case-table.el: Use lexical-binding.
9144 (case-table-get-table): New function.
9145 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
9146
9147 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
9148
9149 * progmodes/subword.el: Add `superword-mode' to do word motion
9150 over symbol_words (parallels and leverages `subword-mode' which
9151 does word motion inside MixedCaseWords).
9152
9153 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
9154
9155 * eshell/em-unix.el: Move su and sudo to...
9156 * eshell/em-tramp.el: ...Eshell tramp module.
9157
9158 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9159
9160 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
9161 Change return value to be a sexp. Delay `get-buffer' to after
9162 restoring the desktop (bug#13951).
9163
9164 2013-03-26 Leo Liu <sdl.web@gmail.com>
9165
9166 * register.el: Move semantic tag handling back to
9167 cedet/semantic/senator.el. (Bug#14052)
9168
9169 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9170
9171 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
9172 into the prompt either (bug#13963).
9173
9174 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
9175
9176 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
9177 part of "(error-foo)".
9178
9179 2013-03-24 Juri Linkov <juri@jurta.org>
9180
9181 * replace.el (list-matching-lines-prefix-face): New defcustom.
9182 (occur-1): Pass `list-matching-lines-prefix-face' to the function
9183 `occur-engine' if `face-differs-from-default-p' returns t.
9184 (occur-engine): Add `,' inside backquote construct to evaluate
9185 `prefix-face'. Propertize the prefix with the `prefix-face' face.
9186 Pass `prefix-face' to the functions `occur-context-lines' and
9187 `occur-engine-add-prefix'.
9188 (occur-engine-add-prefix, occur-context-lines): Add optional arg
9189 `prefix-face' and propertize the prefix with `prefix-face'.
9190 (Bug#14017)
9191
9192 2013-03-24 Leo Liu <sdl.web@gmail.com>
9193
9194 * nxml/rng-valid.el (rng-validate-while-idle)
9195 (rng-validate-quick-while-idle): Guard against deleted buffer.
9196 (Bug#13999)
9197
9198 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
9199 is the last entry in kill-buffer-hook.
9200
9201 * files.el (kill-buffer-hook): Doc fix.
9202
9203 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
9204
9205 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
9206 Make it safe-local.
9207
9208 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
9209
9210 2013-03-23 Leo Liu <sdl.web@gmail.com>
9211
9212 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
9213 Remove.
9214
9215 * nxml/rng-valid.el (rng-validate-mode)
9216 (rng-after-change-function, rng-do-some-validation):
9217 * nxml/rng-maint.el (rng-validate-buffer):
9218 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
9219 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
9220 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
9221 (nxml-extend-after-change-region): Use with-silent-modifications.
9222
9223 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
9224 timer-idle-list.
9225
9226 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
9227 (rng-next-error-1, rng-previous-error-1): Do not let-bind
9228 timer-idle-list. (Bug#13999)
9229
9230 2013-03-23 Juri Linkov <juri@jurta.org>
9231
9232 * info.el (info-index-match): New face.
9233 (Info-index, Info-apropos-matches): Add a nested subgroup to the
9234 main pattern and add text properties with the new face to matches
9235 in index entries relative to the beginning of the index entry.
9236 (Bug#14015)
9237
9238 2013-03-21 Eric Ludlam <zappo@gnu.org>
9239
9240 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
9241 Inhibit read only while inserting objects.
9242
9243 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
9244
9245 * progmodes/cfengine.el: Update docs to mention
9246 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
9247 symbol motion. Remove "_" from the word syntax.
9248
9249 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
9250
9251 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
9252 syntax for both `cfengine2-mode' and `cfengine3-mode'.
9253
9254 2013-03-20 Juri Linkov <juri@jurta.org>
9255
9256 * info.el (Info-next-reference-or-link)
9257 (Info-prev-reference-or-link): New functions.
9258 (Info-next-reference, Info-prev-reference): Use them.
9259 (Info-try-follow-nearest-node): Handle footnote navigation.
9260 (Info-fontify-node): Fontify footnotes. (Bug#13989)
9261
9262 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9263
9264 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
9265 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
9266
9267 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
9268
9269 Suppress unnecessary non-ASCII chatter during build process.
9270 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
9271 (batch-skkdic-convert): Suppress most of the chatter.
9272 It's not needed so much now that machines are faster,
9273 and its non-ASCII component was confusing; see Dmitry Gutov in
9274 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
9275
9276 2013-03-20 Leo Liu <sdl.web@gmail.com>
9277
9278 * ido.el (ido-chop): Fix bug#10994.
9279
9280 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9281
9282 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
9283 Remove vars.
9284 (whitespace-color-on, whitespace-color-off):
9285 Use `font-lock-fontify-buffer' (Bug#13817).
9286
9287 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
9288
9289 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
9290 remapping in mode-line.
9291 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
9292
9293 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
9294
9295 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
9296 value for `whitespace-line' face (Bug#13875).
9297 (whitespace-font-lock-keywords): Change description.
9298 (whitespace-color-on): Don't save `font-lock-keywords' value, save
9299 the constructed keywords instead.
9300 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
9301
9302 2013-03-19 Leo Liu <sdl.web@gmail.com>
9303
9304 * progmodes/compile.el (compilation-display-error): New command.
9305 (compilation-mode-map, compilation-minor-mode-map): Bind it to
9306 C-o. (Bug#13992)
9307
9308 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9309
9310 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
9311
9312 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
9313
9314 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
9315
9316 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
9317
9318 * net/tramp-compat.el (tramp-compat-user-error): New defun.
9319
9320 * net/tramp-adb.el (tramp-adb-handle-shell-command):
9321 * net/tramp-gvfs.el (top):
9322 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
9323 (tramp-handle-shell-command): Use it.
9324 (tramp-dissect-file-name): Raise an error when hostname is a
9325 method name, and neither method nor user is specified.
9326
9327 * net/trampver.el: Update release number.
9328
9329 2013-03-18 Leo Liu <sdl.web@gmail.com>
9330
9331 Make sure eldoc can be turned off properly.
9332 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
9333 eldoc-mode.
9334 (eldoc-display-message-p): Revert last change.
9335 (eldoc-display-message-no-interference-p)
9336 (eldoc-print-current-symbol-info): Tweak.
9337
9338 2013-03-18 Tassilo Horn <tsdh@gnu.org>
9339
9340 * doc-view.el (doc-view-new-window-function): Check the new window
9341 overlay's display property instead the char property of the
9342 buffer's first char. Use `with-selected-window' instead of
9343 `save-window-excursion' with `select-window'.
9344 (doc-view-document->bitmap): Check the current doc-view overlay's
9345 display property instead the char property of the buffer's first char.
9346
9347 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
9348
9349 Automate the build of ja-dic.el (Bug#13984).
9350 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
9351 from the input, rather than assume that it's been done for us by the
9352 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
9353 the current date into a ja-dic.el comment, as that complicates
9354 regression testing.
9355
9356 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
9357
9358 * whitespace.el: Fix double evaluation.
9359 (whitespace-space, whitespace-hspace, whitespace-tab)
9360 (whitespace-newline, whitespace-trailing, whitespace-line)
9361 (whitespace-space-before-tab, whitespace-indentation)
9362 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
9363 obsolete defvars.
9364 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
9365 (whitespace-color-on): Use a single font-lock-add-keywords call.
9366 Fix double-evaluation of face variables.
9367
9368 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
9369
9370 * net/tramp-adb.el (tramp-adb-parse-device-names):
9371 Use `start-process' instead of `call-process'. Otherwise, the
9372 function might be blocked under MS Windows. (Bug#13299)
9373
9374 2013-03-17 Leo Liu <sdl.web@gmail.com>
9375
9376 Extend eldoc to display info in the mode-line. (Bug#13978)
9377 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
9378 (eldoc-mode-line-string): New variable.
9379 (eldoc-minibuffer-message): New function.
9380 (eldoc-message-function): New variable.
9381 (eldoc-message): Use it.
9382 (eldoc-display-message-p)
9383 (eldoc-display-message-no-interference-p):
9384 Support eldoc-post-insert-mode.
9385
9386 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
9387 (eval-expression): Run it.
9388
9389 2013-03-17 Roland Winkler <winkler@gnu.org>
9390
9391 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
9392 strings in the list of return values.
9393
9394 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
9395
9396 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
9397 radix before checking for HMS forms.
9398
9399 2013-03-16 Leo Liu <sdl.web@gmail.com>
9400
9401 * progmodes/scheme.el: Add indentation and font-locking for λ.
9402 (Bug#13975)
9403
9404 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
9405
9406 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
9407 token before point (bug#13942).
9408
9409 2013-03-16 Leo Liu <sdl.web@gmail.com>
9410
9411 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
9412
9413 2013-03-16 Eli Zaretskii <eliz@gnu.org>
9414
9415 * startup.el (command-line-normalize-file-name): Fix handling of
9416 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
9417 <xfq.free@gmail.com> in
9418 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
9419
9420 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
9421
9422 Sync with Tramp 2.2.7.
9423
9424 * net/trampver.el: Update release number.
9425
9426 2013-03-14 Tassilo Horn <tsdh@gnu.org>
9427
9428 * doc-view.el: Fix bug#13887.
9429 (doc-view-insert-image): Don't modify overlay associated to
9430 non-live windows, and implement horizontal centering of image in
9431 case it's smaller than the window.
9432 (doc-view-new-window-function): Force redisplay of new windows on
9433 doc-view buffers.
9434
9435 2013-03-13 Karl Fogel <kfogel@red-bean.com>
9436
9437 * saveplace.el (save-place-alist-to-file): Don't sort
9438 `save-place-alist', just pretty-print it (bug#13882).
9439
9440 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
9441
9442 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
9443 Check whether `default-file-name-coding-system' is bound.
9444 It isn't in XEmacs.
9445
9446 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
9447
9448 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
9449 backquotes for `obsolete' (bug#13929).
9450
9451 * international/mule.el (find-auto-coding): Include file name in
9452 obsolescence warning (bug#13922).
9453
9454 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
9455
9456 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
9457 for CFEngine 3-specific indentation.
9458 (cfengine3-indent-line): Use it. Fix up category regex.
9459 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
9460
9461 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9462
9463 * type-break.el (type-break-file-name):
9464 * textmodes/remember.el (remember-data-file):
9465 * strokes.el (strokes-file):
9466 * shadowfile.el (shadow-initialize):
9467 * saveplace.el (save-place-file):
9468 * ps-bdf.el (bdf-cache-file):
9469 * progmodes/idlwave.el (idlwave-config-directory):
9470 * net/quickurl.el (quickurl-url-file):
9471 * international/kkc.el (kkc-init-file-name):
9472 * ido.el (ido-save-directory-list-file):
9473 * emulation/viper.el (viper-custom-file-name):
9474 * emulation/vip.el (vip-startup-file):
9475 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9476 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
9477
9478 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
9479
9480 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
9481 * language/thai-word.el: Switch to UTF-8.
9482
9483 See ChangeLog.16 for earlier changes.
9484
9485 ;; Local Variables:
9486 ;; coding: utf-8
9487 ;; End:
9488
9489 Copyright (C) 2011-2013 Free Software Foundation, Inc.
9490
9491 This file is part of GNU Emacs.
9492
9493 GNU Emacs is free software: you can redistribute it and/or modify
9494 it under the terms of the GNU General Public License as published by
9495 the Free Software Foundation, either version 3 of the License, or
9496 (at your option) any later version.
9497
9498 GNU Emacs is distributed in the hope that it will be useful,
9499 but WITHOUT ANY WARRANTY; without even the implied warranty of
9500 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9501 GNU General Public License for more details.
9502
9503 You should have received a copy of the GNU General Public License
9504 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.